summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoEditableListener.java
blob: db594aaf777b306b5b9bb48d07593afe0ffa6653 (plain)
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
35
36
37
38
39
40
41
42
43
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil; -*-
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko;

import org.mozilla.gecko.annotation.WrapForJNI;

import android.graphics.RectF;
import android.view.KeyEvent;

/**
 * Interface for the Editable to listen on the Gecko thread, as well as for the IC thread to listen
 * to the Editable.
 */
interface GeckoEditableListener {
    // IME notification type for notifyIME(), corresponding to NotificationToIME enum in Gecko
    @WrapForJNI
    int NOTIFY_IME_OPEN_VKB = -2;
    @WrapForJNI
    int NOTIFY_IME_REPLY_EVENT = -1;
    @WrapForJNI
    int NOTIFY_IME_OF_FOCUS = 1;
    @WrapForJNI
    int NOTIFY_IME_OF_BLUR = 2;
    @WrapForJNI
    int NOTIFY_IME_TO_COMMIT_COMPOSITION = 8;
    @WrapForJNI
    int NOTIFY_IME_TO_CANCEL_COMPOSITION = 9;
    // IME enabled state for notifyIMEContext()
    int IME_STATE_DISABLED = 0;
    int IME_STATE_ENABLED = 1;
    int IME_STATE_PASSWORD = 2;
    int IME_STATE_PLUGIN = 3;

    void notifyIME(int type);
    void notifyIMEContext(int state, String typeHint, String modeHint, String actionHint);
    void onSelectionChange();
    void onTextChange();
    void onDefaultKeyEvent(KeyEvent event);
    void updateCompositionRects(final RectF[] aRects);
}