summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoEditableClient.java
blob: 5e721b3af2216a81ada4755abc787f1314a5e91d (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
/* -*- 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 android.os.Handler;
import android.text.Editable;
import android.view.KeyEvent;

/**
 * Interface for the IC thread.
 */
interface GeckoEditableClient {
    void sendKeyEvent(KeyEvent event, int action, int metaState);
    Editable getEditable();
    void setBatchMode(boolean isBatchMode);
    void setSuppressKeyUp(boolean suppress);
    Handler setInputConnectionHandler(Handler handler);
    void postToInputConnection(Runnable runnable);

    // The following value is used by requestCursorUpdates

    // ONE_SHOT calls updateCompositionRects() after getting current composing character rects.
    public static final int ONE_SHOT = 1;
    // START_MONITOR start the monitor for composing character rects.  If is is updaed,  call updateCompositionRects()
    public static final int START_MONITOR = 2;
    // ENDT_MONITOR stops the monitor for composing character rects.
    public static final int END_MONITOR = 3;

    void requestCursorUpdates(int requestMode);
}