blob: 381df49d8a69262e53b2a645e071cfe4b1bee3af [file] [log] [blame]
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -07001/*
2 * Copyright (C) 2007-2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
5 * use this file except in compliance with the License. You may obtain a copy of
6 * 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, WITHOUT
12 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13 * License for the specific language governing permissions and limitations under
14 * the License.
15 */
16
17package android.view.inputmethod;
18
19import android.os.Bundle;
Yohei Yukawa612cce92016-02-11 17:47:33 -080020import android.os.Handler;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -070021import android.view.KeyEvent;
22
23/**
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -080024 * <p>Wrapper class for proxying calls to another InputConnection. Subclass and have fun!
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -070025 */
26public class InputConnectionWrapper implements InputConnection {
Dianne Hackborn51bf0772009-03-24 19:11:41 -070027 private InputConnection mTarget;
28 final boolean mMutable;
Yohei Yukawa19a80a12016-03-14 22:57:37 -070029 @InputConnectionInspector.MissingMethodFlags
30 private int mMissingMethodFlags;
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -080031
32 /**
33 * Initializes a wrapper.
34 *
35 * <p><b>Caveat:</b> Although the system can accept {@code (InputConnection) null} in some
36 * places, you cannot emulate such a behavior by non-null {@link InputConnectionWrapper} that
37 * has {@code null} in {@code target}.</p>
38 * @param target the {@link InputConnection} to be proxied.
39 * @param mutable set {@code true} to protect this object from being reconfigured to target
40 * another {@link InputConnection}. Note that this is ignored while the target is {@code null}.
41 */
Yohei Yukawaabc4b8f2016-02-29 13:35:59 -080042 public InputConnectionWrapper(InputConnection target, boolean mutable) {
Dianne Hackborn51bf0772009-03-24 19:11:41 -070043 mMutable = mutable;
44 mTarget = target;
Yohei Yukawa19a80a12016-03-14 22:57:37 -070045 mMissingMethodFlags = InputConnectionInspector.getMissingMethodFlags(target);
Dianne Hackborn51bf0772009-03-24 19:11:41 -070046 }
47
48 /**
49 * Change the target of the input connection.
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -080050 *
51 * <p><b>Caveat:</b> Although the system can accept {@code (InputConnection) null} in some
52 * places, you cannot emulate such a behavior by non-null {@link InputConnectionWrapper} that
53 * has {@code null} in {@code target}.</p>
54 * @param target the {@link InputConnection} to be proxied.
55 * @throws SecurityException when this wrapper has non-null target and is immutable.
Dianne Hackborn51bf0772009-03-24 19:11:41 -070056 */
Yohei Yukawaabc4b8f2016-02-29 13:35:59 -080057 public void setTarget(InputConnection target) {
Dianne Hackborn51bf0772009-03-24 19:11:41 -070058 if (mTarget != null && !mMutable) {
59 throw new SecurityException("not mutable");
60 }
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -070061 mTarget = target;
Yohei Yukawa19a80a12016-03-14 22:57:37 -070062 mMissingMethodFlags = InputConnectionInspector.getMissingMethodFlags(target);
63 }
64
65 /**
66 * @hide
67 */
68 @InputConnectionInspector.MissingMethodFlags
69 public int getMissingMethodFlags() {
70 return mMissingMethodFlags;
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -070071 }
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -080072
73 /**
74 * {@inheritDoc}
75 * @throws NullPointerException if the target is {@code null}.
76 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -070077 public CharSequence getTextBeforeCursor(int n, int flags) {
78 return mTarget.getTextBeforeCursor(n, flags);
79 }
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -080080
81 /**
82 * {@inheritDoc}
83 * @throws NullPointerException if the target is {@code null}.
84 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -070085 public CharSequence getTextAfterCursor(int n, int flags) {
86 return mTarget.getTextAfterCursor(n, flags);
87 }
88
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -080089 /**
90 * {@inheritDoc}
91 * @throws NullPointerException if the target is {@code null}.
92 */
Amith Yamasania90b7f02010-08-25 18:27:20 -070093 public CharSequence getSelectedText(int flags) {
94 return mTarget.getSelectedText(flags);
95 }
96
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -080097 /**
98 * {@inheritDoc}
99 * @throws NullPointerException if the target is {@code null}.
100 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700101 public int getCursorCapsMode(int reqModes) {
102 return mTarget.getCursorCapsMode(reqModes);
103 }
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800104
105 /**
106 * {@inheritDoc}
107 * @throws NullPointerException if the target is {@code null}.
108 */
satoke3797a12011-03-22 06:34:48 +0900109 public ExtractedText getExtractedText(ExtractedTextRequest request, int flags) {
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700110 return mTarget.getExtractedText(request, flags);
111 }
112
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800113 /**
114 * {@inheritDoc}
115 * @throws NullPointerException if the target is {@code null}.
116 */
Yohei Yukawac89e22a2016-01-13 22:48:14 -0800117 public boolean deleteSurroundingTextInCodePoints(int beforeLength, int afterLength) {
118 return mTarget.deleteSurroundingTextInCodePoints(beforeLength, afterLength);
119 }
120
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800121 /**
122 * {@inheritDoc}
123 * @throws NullPointerException if the target is {@code null}.
124 */
Fabrice Di Meglio0c95dd32012-01-23 15:06:42 -0800125 public boolean deleteSurroundingText(int beforeLength, int afterLength) {
126 return mTarget.deleteSurroundingText(beforeLength, afterLength);
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700127 }
128
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800129 /**
130 * {@inheritDoc}
131 * @throws NullPointerException if the target is {@code null}.
132 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700133 public boolean setComposingText(CharSequence text, int newCursorPosition) {
134 return mTarget.setComposingText(text, newCursorPosition);
135 }
136
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800137 /**
138 * {@inheritDoc}
139 * @throws NullPointerException if the target is {@code null}.
140 */
Amith Yamasania90b7f02010-08-25 18:27:20 -0700141 public boolean setComposingRegion(int start, int end) {
142 return mTarget.setComposingRegion(start, end);
143 }
144
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800145 /**
146 * {@inheritDoc}
147 * @throws NullPointerException if the target is {@code null}.
148 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700149 public boolean finishComposingText() {
150 return mTarget.finishComposingText();
151 }
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800152
153 /**
154 * {@inheritDoc}
155 * @throws NullPointerException if the target is {@code null}.
156 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700157 public boolean commitText(CharSequence text, int newCursorPosition) {
158 return mTarget.commitText(text, newCursorPosition);
159 }
160
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800161 /**
162 * {@inheritDoc}
163 * @throws NullPointerException if the target is {@code null}.
164 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700165 public boolean commitCompletion(CompletionInfo text) {
166 return mTarget.commitCompletion(text);
167 }
168
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800169 /**
170 * {@inheritDoc}
171 * @throws NullPointerException if the target is {@code null}.
172 */
Gilles Debunnecf9cf2f2010-12-08 17:43:58 -0800173 public boolean commitCorrection(CorrectionInfo correctionInfo) {
174 return mTarget.commitCorrection(correctionInfo);
175 }
176
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800177 /**
178 * {@inheritDoc}
179 * @throws NullPointerException if the target is {@code null}.
180 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700181 public boolean setSelection(int start, int end) {
182 return mTarget.setSelection(start, end);
183 }
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800184
185 /**
186 * {@inheritDoc}
187 * @throws NullPointerException if the target is {@code null}.
188 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700189 public boolean performEditorAction(int editorAction) {
190 return mTarget.performEditorAction(editorAction);
191 }
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800192
193 /**
194 * {@inheritDoc}
195 * @throws NullPointerException if the target is {@code null}.
196 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700197 public boolean performContextMenuAction(int id) {
198 return mTarget.performContextMenuAction(id);
199 }
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800200
201 /**
202 * {@inheritDoc}
203 * @throws NullPointerException if the target is {@code null}.
204 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700205 public boolean beginBatchEdit() {
206 return mTarget.beginBatchEdit();
207 }
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800208
209 /**
210 * {@inheritDoc}
211 * @throws NullPointerException if the target is {@code null}.
212 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700213 public boolean endBatchEdit() {
214 return mTarget.endBatchEdit();
215 }
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800216
217 /**
218 * {@inheritDoc}
219 * @throws NullPointerException if the target is {@code null}.
220 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700221 public boolean sendKeyEvent(KeyEvent event) {
222 return mTarget.sendKeyEvent(event);
223 }
224
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800225 /**
226 * {@inheritDoc}
227 * @throws NullPointerException if the target is {@code null}.
228 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700229 public boolean clearMetaKeyStates(int states) {
230 return mTarget.clearMetaKeyStates(states);
231 }
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800232
233 /**
234 * {@inheritDoc}
235 * @throws NullPointerException if the target is {@code null}.
236 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700237 public boolean reportFullscreenMode(boolean enabled) {
238 return mTarget.reportFullscreenMode(enabled);
239 }
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800240
241 /**
242 * {@inheritDoc}
243 * @throws NullPointerException if the target is {@code null}.
244 */
The Android Open Source Projectb2a3dd82009-03-09 11:52:12 -0700245 public boolean performPrivateCommand(String action, Bundle data) {
246 return mTarget.performPrivateCommand(action, data);
247 }
Yohei Yukawa0023d0e2014-07-11 04:13:03 +0900248
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800249 /**
250 * {@inheritDoc}
251 * @throws NullPointerException if the target is {@code null}.
252 */
Yohei Yukawad8636ea2014-09-02 22:03:30 -0700253 public boolean requestCursorUpdates(int cursorUpdateMode) {
254 return mTarget.requestCursorUpdates(cursorUpdateMode);
Yohei Yukawa0023d0e2014-07-11 04:13:03 +0900255 }
Yohei Yukawa612cce92016-02-11 17:47:33 -0800256
Yohei Yukawa1d1c21c2016-02-29 15:02:41 -0800257 /**
258 * {@inheritDoc}
259 * @throws NullPointerException if the target is {@code null}.
260 */
Yohei Yukawa612cce92016-02-11 17:47:33 -0800261 public Handler getHandler() {
262 return mTarget.getHandler();
263 }
Yohei Yukawad8636ea2014-09-02 22:03:30 -0700264}