summaryrefslogtreecommitdiffstats
path: root/core/java/android/service/gesture/IEdgeGestureHostCallback.aidl
blob: c2615503e4fc3999d17a13bbe8a329586904dd85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package android.service.gesture;

/** @hide */
interface IEdgeGestureHostCallback {

    /** After being activated, this allows to steal focus from the current
     * window
     */
    boolean gainTouchFocus(IBinder windowToken);

    /** Turns listening for activation gestures on again, after it was disabled during
     * the call to the listener.
     */
    oneway void restoreListenerState();

    /*
     * Tells filter to drop all events till touch up
     */
    boolean dropEventsUntilLift();
}