ExtractEditText.java revision e300be9c29b7915450ddb62f2957d312b52cfa32
1/*
2 * Copyright (C) 2008 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
17package android.inputmethodservice;
18
19import android.content.Context;
20import android.util.AttributeSet;
21import android.view.inputmethod.ExtractedText;
22import android.view.inputmethod.InputMethodManager;
23import android.widget.EditText;
24
25/***
26 * Specialization of {@link EditText} for showing and interacting with the
27 * extracted text in a full-screen input method.
28 */
29public class ExtractEditText extends EditText {
30    private InputMethodService mIME;
31    private int mSettingExtractedText;
32
33    public ExtractEditText(Context context) {
34        super(context, null);
35    }
36
37    public ExtractEditText(Context context, AttributeSet attrs) {
38        super(context, attrs, com.android.internal.R.attr.editTextStyle);
39    }
40
41    public ExtractEditText(Context context, AttributeSet attrs, int defStyle) {
42        super(context, attrs, defStyle);
43    }
44
45    void setIME(InputMethodService ime) {
46        mIME = ime;
47    }
48
49    /**
50     * Start making changes that will not be reported to the client.  That
51     * is, {@link #onSelectionChanged(int, int)} will not result in sending
52     * the new selection to the client
53     */
54    public void startInternalChanges() {
55        mSettingExtractedText += 1;
56    }
57
58    /**
59     * Finish making changes that will not be reported to the client.  That
60     * is, {@link #onSelectionChanged(int, int)} will not result in sending
61     * the new selection to the client
62     */
63    public void finishInternalChanges() {
64        mSettingExtractedText -= 1;
65    }
66
67    /**
68     * Implement just to keep track of when we are setting text from the
69     * client (vs. seeing changes in ourself from the user).
70     */
71    @Override public void setExtractedText(ExtractedText text) {
72        try {
73            mSettingExtractedText++;
74            super.setExtractedText(text);
75        } finally {
76            mSettingExtractedText--;
77        }
78    }
79
80    /**
81     * Report to the underlying text editor about selection changes.
82     */
83    @Override protected void onSelectionChanged(int selStart, int selEnd) {
84        if (mSettingExtractedText == 0 && mIME != null && selStart >= 0 && selEnd >= 0) {
85            mIME.onExtractedSelectionChanged(selStart, selEnd);
86        }
87    }
88
89    /**
90     * Redirect clicks to the IME for handling there.  First allows any
91     * on click handler to run, though.
92     */
93    @Override public boolean performClick() {
94        if (!super.performClick() && mIME != null) {
95            mIME.onExtractedTextClicked();
96            return true;
97        }
98        return false;
99    }
100
101    @Override public boolean onTextContextMenuItem(int id) {
102        if (mIME != null && mIME.onExtractTextContextMenuItem(id)) {
103            return true;
104        }
105        return super.onTextContextMenuItem(id);
106    }
107
108    /**
109     * We are always considered to be an input method target.
110     */
111    @Override
112    public boolean isInputMethodTarget() {
113        return true;
114    }
115
116    /**
117     * Return true if the edit text is currently showing a scroll bar.
118     */
119    public boolean hasVerticalScrollBar() {
120        return computeVerticalScrollRange() > computeVerticalScrollExtent();
121    }
122
123    /**
124     * Pretend like the window this view is in always has focus, so its
125     * highlight and cursor will be displayed.
126     */
127    @Override public boolean hasWindowFocus() {
128        return this.isEnabled();
129    }
130
131    /**
132     * Pretend like this view always has focus, so its
133     * highlight and cursor will be displayed.
134     */
135    @Override public boolean isFocused() {
136        return this.isEnabled();
137    }
138
139    /**
140     * Pretend like this view always has focus, so its
141     * highlight and cursor will be displayed.
142     */
143    @Override public boolean hasFocus() {
144        return this.isEnabled();
145    }
146
147    /**
148     * @hide
149     */
150    @Override protected void viewClicked(InputMethodManager imm) {
151        // As an instance of this class is supposed to be owned by IMS,
152        // and it has a reference to the IMS (the current IME),
153        // we just need to call back its onViewClicked() here.
154        // It should be good to avoid unnecessary IPCs by doing this as well.
155        if (mIME != null) {
156            mIME.onViewClicked(false);
157        }
158    }
159
160    /**
161     * {@inheritDoc}
162     * @hide
163     */
164    @Override
165    protected void deleteText_internal(int start, int end) {
166        // Do not call the super method.
167        // This will change the source TextView instead, which will update the ExtractTextView.
168        mIME.onExtractedDeleteText(start, end);
169    }
170
171    /**
172     * {@inheritDoc}
173     * @hide
174     */
175    @Override
176    protected void replaceText_internal(int start, int end, CharSequence text) {
177        // Do not call the super method.
178        // This will change the source TextView instead, which will update the ExtractTextView.
179        mIME.onExtractedReplaceText(start, end, text);
180    }
181
182    /**
183     * {@inheritDoc}
184     * @hide
185     */
186    @Override
187    protected void setSpan_internal(Object span, int start, int end, int flags) {
188        // Do not call the super method.
189        // This will change the source TextView instead, which will update the ExtractTextView.
190        mIME.onExtractedSetSpan(span, start, end, flags);
191    }
192
193    /**
194     * {@inheritDoc}
195     * @hide
196     */
197    @Override
198    protected void setCursorPosition_internal(int start, int end) {
199        // Do not call the super method.
200        // This will change the source TextView instead, which will update the ExtractTextView.
201        mIME.onExtractedSelectionChanged(start, end);
202    }
203}
204