summaryrefslogtreecommitdiffstats
path: root/core/java/android/view/inputmethod/DefaultInputMethod.java
blob: 073b01c7b9ce6458beb9a95b4f0e163a2e37b81d (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
package android.view.inputmethod;

import android.graphics.Rect;
import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
import android.util.Log;
import android.view.KeyEvent;
import android.view.MotionEvent;

import com.android.internal.view.IInputContext;
import com.android.internal.view.IInputMethod;
import com.android.internal.view.IInputMethodCallback;
import com.android.internal.view.IInputMethodSession;
import com.android.internal.view.InputConnectionWrapper;

/**
 * This is the default input method that runs in the same context of the
 * application that requests text input. It does nothing but returns false for
 * any key events, so that all key events will be processed by the key listener
 * of the focused text box.
 * {@hide}
 */
public class DefaultInputMethod implements InputMethod, InputMethodSession {
    private static IInputMethod sInstance = new SimpleInputMethod(
            new DefaultInputMethod());

    private static InputMethodInfo sProperty = new InputMethodInfo(
            "android.text.inputmethod", DefaultInputMethod.class.getName(),
            "Default", "android.text.inputmethod.defaultImeSettings");

    private InputConnection mInputConnection;

    public static IInputMethod getInstance() {
        return sInstance;
    }

    public static InputMethodInfo getMetaInfo() {
        return sProperty;
    }

    public void bindInput(InputBinding binding) {
        mInputConnection = binding.getConnection();
    }

    public void unbindInput() {
    }

    public void createSession(SessionCallback callback) {
        callback.sessionCreated(this);
    }

    public void setSessionEnabled(InputMethodSession session, boolean enabled) {
    }

    public void revokeSession(InputMethodSession session) {
    }

    public void finishInput() {
        mInputConnection.hideStatusIcon();
    }

    public void displayCompletions(CompletionInfo[] completions) {
    }
    
    public void updateExtractedText(int token, ExtractedText text) {
    }
    
    public void updateSelection(int oldSelStart, int oldSelEnd,
            int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) {
    }

    public void updateCursor(Rect newCursor) {
    }

    public void dispatchKeyEvent(int seq, KeyEvent event, EventCallback callback) {
        callback.finishedEvent(seq, false);
    }

    public void dispatchTrackballEvent(int seq, MotionEvent event, EventCallback callback) {
        callback.finishedEvent(seq, false);
    }

    public void restartInput(EditorInfo attribute) {
    }

    public void attachToken(IBinder token) {
    }

    public void startInput(EditorInfo attribute) {
        mInputConnection
                .showStatusIcon("android", com.android.internal.R.drawable.ime_qwerty);
    }

    public void appPrivateCommand(String action, Bundle data) {
    }
    
    public void hideSoftInput() {
    }

    public void showSoftInput(int flags) {
    }
}

// ----------------------------------------------------------------------

class SimpleInputMethod extends IInputMethod.Stub {
    final InputMethod mInputMethod;

    static class Session extends IInputMethodSession.Stub {
        final InputMethodSession mSession;
        
        Session(InputMethodSession session) {
            mSession = session;
        }
        
        public void finishInput() {
            mSession.finishInput();
        }
        
        public void updateSelection(int oldSelStart, int oldSelEnd,
                int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd) {
            mSession.updateSelection(oldSelStart, oldSelEnd,
                    newSelStart, newSelEnd, candidatesStart, candidatesEnd);
        }

        public void updateCursor(Rect newCursor) {
            mSession.updateCursor(newCursor);
        }

        static class InputMethodEventCallbackWrapper implements InputMethodSession.EventCallback {
            final IInputMethodCallback mCb;
            InputMethodEventCallbackWrapper(IInputMethodCallback cb) {
                mCb = cb;
            }
            public void finishedEvent(int seq, boolean handled) {
                try {
                    mCb.finishedEvent(seq, handled);
                } catch (RemoteException e) {
                }
            }
        }
        
        public void dispatchKeyEvent(int seq, KeyEvent event, IInputMethodCallback callback) {
            mSession.dispatchKeyEvent(seq, event,
                    new InputMethodEventCallbackWrapper(callback));
        }

        public void dispatchTrackballEvent(int seq, MotionEvent event, IInputMethodCallback callback) {
            mSession.dispatchTrackballEvent(seq, event,
                    new InputMethodEventCallbackWrapper(callback));
        }
        
        public void displayCompletions(CompletionInfo[] completions) {
            mSession.displayCompletions(completions);
        }
        
        public void updateExtractedText(int token, ExtractedText text) {
            mSession.updateExtractedText(token, text);
        }
        
        public void appPrivateCommand(String action, Bundle data) {
            mSession.appPrivateCommand(action, data);
        }
    }
    
    public SimpleInputMethod(InputMethod inputMethod) {
        mInputMethod = inputMethod;
    }

    public InputMethod getInternalInputMethod() {
        return mInputMethod;
    }

    public void attachToken(IBinder token) {
        mInputMethod.attachToken(token);
    }
    
    public void bindInput(InputBinding binding) {
        InputConnectionWrapper ic = new InputConnectionWrapper(
                IInputContext.Stub.asInterface(binding.getConnectionToken()));
        InputBinding nu = new InputBinding(ic, binding);
        mInputMethod.bindInput(nu);
    }

    public void unbindInput() {
        mInputMethod.unbindInput();
    }

    public void restartInput(EditorInfo attribute) {
        mInputMethod.restartInput(attribute);
    }

    public void startInput(EditorInfo attribute) {
        mInputMethod.startInput(attribute);
    }

    static class InputMethodSessionCallbackWrapper implements InputMethod.SessionCallback {
        final IInputMethodCallback mCb;
        InputMethodSessionCallbackWrapper(IInputMethodCallback cb) {
            mCb = cb;
        }
        
        public void sessionCreated(InputMethodSession session) {
            try {
                mCb.sessionCreated(new Session(session));
            } catch (RemoteException e) {
            }
        }
    }
    
    public void createSession(IInputMethodCallback callback) throws RemoteException {
        mInputMethod.createSession(new InputMethodSessionCallbackWrapper(callback));
    }

    public void setSessionEnabled(IInputMethodSession session, boolean enabled) throws RemoteException {
        try {
            InputMethodSession ls = ((Session)session).mSession;
            mInputMethod.setSessionEnabled(ls, enabled);
        } catch (ClassCastException e) {
            Log.w("SimpleInputMethod", "Incoming session not of correct type: " + session, e);
        }
    }

    public void revokeSession(IInputMethodSession session) throws RemoteException {
        try {
            InputMethodSession ls = ((Session)session).mSession;
            mInputMethod.revokeSession(ls);
        } catch (ClassCastException e) {
            Log.w("SimpleInputMethod", "Incoming session not of correct type: " + session, e);
        }
    }

    public void showSoftInput(boolean blah) {
    }
    
    public void hideSoftInput() {
    }
}