File: inputMethod.js

package info (click to toggle)
cinnamon 6.4.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,300 kB
  • sloc: javascript: 54,298; ansic: 51,499; python: 21,971; xml: 2,803; sh: 96; makefile: 27; perl: 13
file content (34 lines) | stat: -rw-r--r-- 577 bytes parent folder | download | duplicates (3)
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) {
    }
});