1 /*
2  * Copyright (C) 2019 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package com.android.internal.inputmethod;
18 
19 import android.net.Uri;
20 import android.view.inputmethod.ImeTracker;
21 import android.view.inputmethod.InputMethodSubtype;
22 
23 import com.android.internal.infra.AndroidFuture;
24 
25 /**
26  * Defines priviledged operations that only the current IME is allowed to call.
27  * Actual operations are implemented and handled by InputMethodManagerService.
28  */
29 oneway interface IInputMethodPrivilegedOperations {
setImeWindowStatusAsync(int vis, int backDisposition)30     void setImeWindowStatusAsync(int vis, int backDisposition);
reportStartInputAsync(in IBinder startInputToken)31     void reportStartInputAsync(in IBinder startInputToken);
createInputContentUriToken(in Uri contentUri, in String packageName, in AndroidFuture future )32     void createInputContentUriToken(in Uri contentUri, in String packageName,
33             in AndroidFuture future /* T=IBinder */);
reportFullscreenModeAsync(boolean fullscreen)34     void reportFullscreenModeAsync(boolean fullscreen);
setInputMethod(String id, in AndroidFuture future )35     void setInputMethod(String id, in AndroidFuture future /* T=Void */);
setInputMethodAndSubtype(String id, in InputMethodSubtype subtype, in AndroidFuture future )36     void setInputMethodAndSubtype(String id, in InputMethodSubtype subtype,
37             in AndroidFuture future /* T=Void */);
hideMySoftInput(in ImeTracker.Token statsToken, int flags, int reason, in AndroidFuture future )38     void hideMySoftInput(in ImeTracker.Token statsToken, int flags, int reason,
39             in AndroidFuture future /* T=Void */);
showMySoftInput(in ImeTracker.Token statsToken, int flags, int reason, in AndroidFuture future )40     void showMySoftInput(in ImeTracker.Token statsToken, int flags, int reason,
41             in AndroidFuture future /* T=Void */);
updateStatusIconAsync(String packageName, int iconId)42     void updateStatusIconAsync(String packageName, int iconId);
switchToPreviousInputMethod(in AndroidFuture future )43     void switchToPreviousInputMethod(in AndroidFuture future /* T=Boolean */);
switchToNextInputMethod(boolean onlyCurrentIme, in AndroidFuture future )44     void switchToNextInputMethod(boolean onlyCurrentIme, in AndroidFuture future /* T=Boolean */);
shouldOfferSwitchingToNextInputMethod(in AndroidFuture future )45     void shouldOfferSwitchingToNextInputMethod(in AndroidFuture future /* T=Boolean */);
notifyUserActionAsync()46     void notifyUserActionAsync();
applyImeVisibilityAsync(IBinder showOrHideInputToken, boolean setVisible, in ImeTracker.Token statsToken)47     void applyImeVisibilityAsync(IBinder showOrHideInputToken, boolean setVisible,
48             in ImeTracker.Token statsToken);
onStylusHandwritingReady(int requestId, int pid)49     void onStylusHandwritingReady(int requestId, int pid);
resetStylusHandwriting(int requestId)50     void resetStylusHandwriting(int requestId);
switchKeyboardLayoutAsync(int direction)51     void switchKeyboardLayoutAsync(int direction);
setHandwritingSurfaceNotTouchable(boolean notTouchable)52     void setHandwritingSurfaceNotTouchable(boolean notTouchable);
53 }
54