1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*-
const { Clutter, GObject} = imports.gi;
var InputMethod = GObject.registerClass(
class InputMethod extends Clutter.InputMethod {
_init() {
super._init();
}
vfunc_focus_in(focus) {
}
vfunc_focus_out() {
}
vfunc_reset() {
}
vfunc_set_cursor_location(rect) {
}
vfunc_set_surrounding(text, cursor, anchor) {
}
vfunc_update_content_hints(hints) {
}
vfunc_update_content_purpose(purpose) {
}
vfunc_filter_key_event(event) {
}
});
|