summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/main/aidl/org/mozilla/gecko/IGeckoEditableChild.aidl
blob: 2f40a9ae9a1fb8c31d58731ed69102f9c57baf32 (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
44
/* 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.IGeckoEditableParent;

import android.view.KeyEvent;

// Interface for GeckoEditable calls from parent to child
interface IGeckoEditableChild {
    // Transfer this child to a new parent.
    void transferParent(in IGeckoEditableParent parent);

    // Process a key event.
    void onKeyEvent(int action, int keyCode, int scanCode, int metaState,
                    int keyPressMetaState, long time, int domPrintableKeyValue,
                    int repeatCount, int flags, boolean isSynthesizedImeKey,
                    in KeyEvent event);

    // Request a callback to parent after performing any pending operations.
    void onImeSynchronize();

    // Replace part of current text.
    void onImeReplaceText(int start, int end, String text);

    // Store a composition range.
    void onImeAddCompositionRange(int start, int end, int rangeType, int rangeStyles,
                                  int rangeLineStyle, boolean rangeBoldLine,
                                  int rangeForeColor, int rangeBackColor, int rangeLineColor);

    // Change to a new composition using previously added ranges.
    void onImeUpdateComposition(int start, int end, int flags);

    // Request cursor updates from the child.
    void onImeRequestCursorUpdates(int requestMode);

    // Commit current composition.
    void onImeRequestCommit();

    // Insert requested image.
    void onImeInsertImage(in byte[] data, in String mimeType);
}