2011-11-18 18:28:17 +00:00
|
|
|
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
2012-05-21 11:12:37 +00:00
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-11-18 18:28:17 +00:00
|
|
|
|
|
|
|
package org.mozilla.gecko;
|
|
|
|
|
2012-07-28 00:53:54 +00:00
|
|
|
import org.mozilla.gecko.gfx.InputConnectionHandler;
|
|
|
|
|
2012-02-28 00:29:35 +00:00
|
|
|
import android.R;
|
2012-07-19 18:00:07 +00:00
|
|
|
import android.content.Context;
|
2012-06-08 17:57:16 +00:00
|
|
|
import android.os.Build;
|
2012-02-28 00:29:35 +00:00
|
|
|
import android.text.Editable;
|
|
|
|
import android.text.InputType;
|
|
|
|
import android.text.Selection;
|
|
|
|
import android.text.method.KeyListener;
|
|
|
|
import android.text.method.TextKeyListener;
|
2012-05-24 01:53:42 +00:00
|
|
|
import android.util.DisplayMetrics;
|
2012-02-28 00:29:35 +00:00
|
|
|
import android.util.Log;
|
|
|
|
import android.view.KeyEvent;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.inputmethod.BaseInputConnection;
|
|
|
|
import android.view.inputmethod.EditorInfo;
|
|
|
|
import android.view.inputmethod.ExtractedText;
|
|
|
|
import android.view.inputmethod.ExtractedTextRequest;
|
|
|
|
import android.view.inputmethod.InputConnection;
|
|
|
|
import android.view.inputmethod.InputMethodManager;
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-11-01 20:11:03 +00:00
|
|
|
import java.lang.reflect.InvocationHandler;
|
|
|
|
import java.lang.reflect.Method;
|
|
|
|
import java.lang.reflect.Proxy;
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-08-02 18:56:52 +00:00
|
|
|
class GeckoInputConnection
|
2011-11-18 18:28:17 +00:00
|
|
|
extends BaseInputConnection
|
2012-11-01 20:11:02 +00:00
|
|
|
implements InputConnectionHandler, GeckoEditableListener {
|
2012-02-28 00:29:22 +00:00
|
|
|
|
2011-12-15 21:35:45 +00:00
|
|
|
private static final boolean DEBUG = false;
|
|
|
|
protected static final String LOGTAG = "GeckoInputConnection";
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-05-24 01:53:42 +00:00
|
|
|
private static final int INLINE_IME_MIN_DISPLAY_SIZE = 480;
|
|
|
|
|
2012-02-28 00:29:44 +00:00
|
|
|
private static int mIMEState;
|
2012-08-14 15:21:19 +00:00
|
|
|
private static String mIMETypeHint = "";
|
2012-08-27 02:16:22 +00:00
|
|
|
private static String mIMEModeHint = "";
|
2012-08-14 15:21:19 +00:00
|
|
|
private static String mIMEActionHint = "";
|
2012-02-28 00:29:44 +00:00
|
|
|
|
2012-07-19 18:00:07 +00:00
|
|
|
private String mCurrentInputMethod;
|
|
|
|
|
2012-11-01 20:11:02 +00:00
|
|
|
private final GeckoEditableClient mEditableClient;
|
2012-08-09 22:38:10 +00:00
|
|
|
protected int mBatchEditCount;
|
2012-02-28 00:29:44 +00:00
|
|
|
private ExtractedTextRequest mUpdateRequest;
|
|
|
|
private final ExtractedText mUpdateExtract = new ExtractedText();
|
2012-11-13 22:26:18 +00:00
|
|
|
private boolean mBatchSelectionChanged;
|
|
|
|
private boolean mBatchTextChanged;
|
2012-02-28 00:29:44 +00:00
|
|
|
|
2012-12-10 19:07:26 +00:00
|
|
|
public static GeckoEditableListener create(View targetView,
|
|
|
|
GeckoEditableClient editable) {
|
2011-12-15 21:35:45 +00:00
|
|
|
if (DEBUG)
|
2012-11-01 20:11:02 +00:00
|
|
|
return DebugGeckoInputConnection.create(targetView, editable);
|
2011-12-15 21:35:45 +00:00
|
|
|
else
|
2012-11-01 20:11:02 +00:00
|
|
|
return new GeckoInputConnection(targetView, editable);
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
2012-11-01 20:11:02 +00:00
|
|
|
protected GeckoInputConnection(View targetView,
|
|
|
|
GeckoEditableClient editable) {
|
2011-11-18 18:28:17 +00:00
|
|
|
super(targetView, true);
|
2012-11-01 20:11:02 +00:00
|
|
|
mEditableClient = editable;
|
2011-11-18 18:28:17 +00:00
|
|
|
mIMEState = IME_STATE_DISABLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2012-11-01 20:11:03 +00:00
|
|
|
public synchronized boolean beginBatchEdit() {
|
2012-08-09 22:38:10 +00:00
|
|
|
mBatchEditCount++;
|
2012-11-01 20:11:03 +00:00
|
|
|
mEditableClient.setUpdateGecko(false);
|
2011-11-18 18:28:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2012-11-01 20:11:03 +00:00
|
|
|
public synchronized boolean endBatchEdit() {
|
2012-08-09 22:38:10 +00:00
|
|
|
if (mBatchEditCount > 0) {
|
|
|
|
mBatchEditCount--;
|
2012-11-01 20:11:03 +00:00
|
|
|
if (mBatchEditCount == 0) {
|
2012-11-13 22:26:18 +00:00
|
|
|
if (mBatchTextChanged) {
|
|
|
|
notifyTextChange();
|
|
|
|
mBatchTextChanged = false;
|
|
|
|
}
|
|
|
|
if (mBatchSelectionChanged) {
|
|
|
|
Editable editable = getEditable();
|
|
|
|
notifySelectionChange(Selection.getSelectionStart(editable),
|
|
|
|
Selection.getSelectionEnd(editable));
|
|
|
|
mBatchSelectionChanged = false;
|
|
|
|
}
|
2012-11-01 20:11:03 +00:00
|
|
|
mEditableClient.setUpdateGecko(true);
|
|
|
|
}
|
2012-08-09 22:38:10 +00:00
|
|
|
} else {
|
|
|
|
Log.w(LOGTAG, "endBatchEdit() called, but mBatchEditCount == 0?!");
|
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Editable getEditable() {
|
2012-11-01 20:11:02 +00:00
|
|
|
return mEditableClient.getEditable();
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean performContextMenuAction(int id) {
|
2012-11-01 20:11:03 +00:00
|
|
|
Editable editable = getEditable();
|
|
|
|
int selStart = Selection.getSelectionStart(editable);
|
|
|
|
int selEnd = Selection.getSelectionEnd(editable);
|
2011-11-18 18:28:17 +00:00
|
|
|
|
|
|
|
switch (id) {
|
|
|
|
case R.id.selectAll:
|
2012-11-01 20:11:03 +00:00
|
|
|
setSelection(0, editable.length());
|
2011-11-18 18:28:17 +00:00
|
|
|
break;
|
|
|
|
case R.id.cut:
|
2011-12-15 21:35:45 +00:00
|
|
|
// If selection is empty, we'll select everything
|
2012-11-01 20:11:03 +00:00
|
|
|
if (selStart == selEnd) {
|
|
|
|
// Fill the clipboard
|
|
|
|
GeckoAppShell.setClipboardText(editable.toString());
|
|
|
|
editable.clear();
|
|
|
|
} else {
|
|
|
|
GeckoAppShell.setClipboardText(
|
|
|
|
editable.toString().substring(
|
|
|
|
Math.min(selStart, selEnd),
|
|
|
|
Math.max(selStart, selEnd)));
|
|
|
|
editable.delete(selStart, selEnd);
|
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
break;
|
|
|
|
case R.id.paste:
|
|
|
|
commitText(GeckoAppShell.getClipboardText(), 1);
|
|
|
|
break;
|
|
|
|
case R.id.copy:
|
2012-06-19 19:13:41 +00:00
|
|
|
// Copy the current selection or the empty string if nothing is selected.
|
2012-11-01 20:11:03 +00:00
|
|
|
String copiedText = selStart == selEnd ? "" :
|
|
|
|
editable.toString().substring(
|
|
|
|
Math.min(selStart, selEnd),
|
|
|
|
Math.max(selStart, selEnd));
|
|
|
|
GeckoAppShell.setClipboardText(copiedText);
|
2011-11-18 18:28:17 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ExtractedText getExtractedText(ExtractedTextRequest req, int flags) {
|
|
|
|
if (req == null)
|
|
|
|
return null;
|
|
|
|
|
2012-01-07 02:27:09 +00:00
|
|
|
if ((flags & GET_EXTRACTED_TEXT_MONITOR) != 0)
|
|
|
|
mUpdateRequest = req;
|
|
|
|
|
2012-11-01 20:11:03 +00:00
|
|
|
Editable editable = getEditable();
|
|
|
|
int selStart = Selection.getSelectionStart(editable);
|
|
|
|
int selEnd = Selection.getSelectionEnd(editable);
|
2012-06-19 19:13:41 +00:00
|
|
|
|
2011-11-18 18:28:17 +00:00
|
|
|
ExtractedText extract = new ExtractedText();
|
|
|
|
extract.flags = 0;
|
|
|
|
extract.partialStartOffset = -1;
|
|
|
|
extract.partialEndOffset = -1;
|
2012-11-01 20:11:03 +00:00
|
|
|
extract.selectionStart = selStart;
|
|
|
|
extract.selectionEnd = selEnd;
|
2011-12-15 21:35:45 +00:00
|
|
|
extract.startOffset = 0;
|
2012-11-01 20:11:03 +00:00
|
|
|
extract.text = editable;
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2011-12-15 21:35:45 +00:00
|
|
|
return extract;
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
2012-07-23 18:52:55 +00:00
|
|
|
private static View getView() {
|
2012-08-20 19:43:53 +00:00
|
|
|
return GeckoApp.mAppContext.getLayerView();
|
2012-07-23 18:52:55 +00:00
|
|
|
}
|
|
|
|
|
2012-02-28 00:29:55 +00:00
|
|
|
private static InputMethodManager getInputMethodManager() {
|
2012-07-26 17:53:51 +00:00
|
|
|
View view = getView();
|
|
|
|
if (view == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
Context context = view.getContext();
|
2012-07-22 07:18:14 +00:00
|
|
|
return InputMethods.getInputMethodManager(context);
|
2012-02-28 00:29:55 +00:00
|
|
|
}
|
|
|
|
|
2012-12-05 16:10:33 +00:00
|
|
|
private static void showSoftInput() {
|
|
|
|
final InputMethodManager imm = getInputMethodManager();
|
|
|
|
if (imm != null) {
|
|
|
|
final View v = getView();
|
|
|
|
imm.showSoftInput(v, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void hideSoftInput() {
|
|
|
|
final InputMethodManager imm = getInputMethodManager();
|
|
|
|
if (imm != null) {
|
|
|
|
final View v = getView();
|
|
|
|
imm.hideSoftInputFromWindow(v.getWindowToken(), 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void restartInput() {
|
|
|
|
final InputMethodManager imm = getInputMethodManager();
|
|
|
|
if (imm != null) {
|
|
|
|
final View v = getView();
|
|
|
|
final Editable editable = getEditable();
|
|
|
|
// Fake a selection change, so that when we restart the input,
|
|
|
|
// the IME will make sure that any old composition string is cleared
|
|
|
|
notifySelectionChange(Selection.getSelectionStart(editable),
|
|
|
|
Selection.getSelectionEnd(editable));
|
|
|
|
imm.restartInput(v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-01 20:11:02 +00:00
|
|
|
public void onTextChange(String text, int start, int oldEnd, int newEnd) {
|
2012-07-18 22:26:15 +00:00
|
|
|
|
2012-11-13 22:26:18 +00:00
|
|
|
if (mUpdateRequest == null) {
|
Backout 533faa3c50ed, 718abc1bd4ad, af2d5272c06b, ad5554e1345d, c9ef1b41b829, d3a825311d11, 0a51bcb3eb9e, a01a327e8ec4, 973b0ed30b8b, 39851bbcfaa1 & a92d2d2a3b0e (bug 805162), d4884aab5ce6, 06fcbaf40cb4, daccc3fe7c70, 881eb2a2906e, 76232441ae06, 01ae34fa1b3f & 5f405fc4e323 (bug 783092), a03d8d4db1c2, 49beb3801192, 174634554a97, 0bd27e755a83, 19e8f151ca67, a6604e038bc0, ed3b8237e76e & 082cf8d72554 (bug 785945) for bustage or conflicting with backout of said bustage on a CLOSED TREE
2012-11-01 00:16:35 +00:00
|
|
|
return;
|
2012-11-01 20:11:02 +00:00
|
|
|
}
|
Backout 533faa3c50ed, 718abc1bd4ad, af2d5272c06b, ad5554e1345d, c9ef1b41b829, d3a825311d11, 0a51bcb3eb9e, a01a327e8ec4, 973b0ed30b8b, 39851bbcfaa1 & a92d2d2a3b0e (bug 805162), d4884aab5ce6, 06fcbaf40cb4, daccc3fe7c70, 881eb2a2906e, 76232441ae06, 01ae34fa1b3f & 5f405fc4e323 (bug 783092), a03d8d4db1c2, 49beb3801192, 174634554a97, 0bd27e755a83, 19e8f151ca67, a6604e038bc0, ed3b8237e76e & 082cf8d72554 (bug 785945) for bustage or conflicting with backout of said bustage on a CLOSED TREE
2012-11-01 00:16:35 +00:00
|
|
|
|
2012-11-13 22:26:18 +00:00
|
|
|
if (mBatchEditCount > 0) {
|
|
|
|
// Delay notification until after the batch edit
|
|
|
|
mBatchTextChanged = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
notifyTextChange();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void notifyTextChange() {
|
|
|
|
|
2012-11-01 20:11:02 +00:00
|
|
|
final InputMethodManager imm = getInputMethodManager();
|
|
|
|
if (imm == null) {
|
2012-09-20 00:47:39 +00:00
|
|
|
return;
|
2012-11-01 20:11:02 +00:00
|
|
|
}
|
|
|
|
final View v = getView();
|
|
|
|
final Editable editable = getEditable();
|
2012-01-07 02:27:09 +00:00
|
|
|
|
|
|
|
mUpdateExtract.flags = 0;
|
2012-11-13 22:26:18 +00:00
|
|
|
// Update the entire Editable range
|
|
|
|
mUpdateExtract.partialStartOffset = -1;
|
|
|
|
mUpdateExtract.partialEndOffset = -1;
|
2012-11-01 20:11:02 +00:00
|
|
|
mUpdateExtract.selectionStart =
|
|
|
|
Selection.getSelectionStart(editable);
|
|
|
|
mUpdateExtract.selectionEnd =
|
|
|
|
Selection.getSelectionEnd(editable);
|
2012-01-07 02:27:09 +00:00
|
|
|
mUpdateExtract.startOffset = 0;
|
2012-11-01 20:11:02 +00:00
|
|
|
mUpdateExtract.text = editable;
|
2012-01-07 02:27:09 +00:00
|
|
|
|
2012-11-01 20:11:02 +00:00
|
|
|
imm.updateExtractedText(v, mUpdateRequest.token,
|
|
|
|
mUpdateExtract);
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
2012-11-01 20:11:02 +00:00
|
|
|
public void onSelectionChange(int start, int end) {
|
Backout 533faa3c50ed, 718abc1bd4ad, af2d5272c06b, ad5554e1345d, c9ef1b41b829, d3a825311d11, 0a51bcb3eb9e, a01a327e8ec4, 973b0ed30b8b, 39851bbcfaa1 & a92d2d2a3b0e (bug 805162), d4884aab5ce6, 06fcbaf40cb4, daccc3fe7c70, 881eb2a2906e, 76232441ae06, 01ae34fa1b3f & 5f405fc4e323 (bug 783092), a03d8d4db1c2, 49beb3801192, 174634554a97, 0bd27e755a83, 19e8f151ca67, a6604e038bc0, ed3b8237e76e & 082cf8d72554 (bug 785945) for bustage or conflicting with backout of said bustage on a CLOSED TREE
2012-11-01 00:16:35 +00:00
|
|
|
|
2012-11-01 20:11:02 +00:00
|
|
|
if (mBatchEditCount > 0) {
|
2012-11-13 22:26:18 +00:00
|
|
|
// Delay notification until after the batch edit
|
|
|
|
mBatchSelectionChanged = true;
|
2012-11-01 20:11:02 +00:00
|
|
|
return;
|
2012-10-31 21:35:31 +00:00
|
|
|
}
|
2012-11-13 22:26:18 +00:00
|
|
|
notifySelectionChange(start, end);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void notifySelectionChange(int start, int end) {
|
|
|
|
|
2012-11-01 20:11:02 +00:00
|
|
|
final InputMethodManager imm = getInputMethodManager();
|
|
|
|
if (imm == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
final View v = getView();
|
|
|
|
final Editable editable = getEditable();
|
|
|
|
imm.updateSelection(v, start, end, getComposingSpanStart(editable),
|
|
|
|
getComposingSpanEnd(editable));
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
2012-02-28 00:29:22 +00:00
|
|
|
public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
|
2011-11-18 18:28:17 +00:00
|
|
|
outAttrs.inputType = InputType.TYPE_CLASS_TEXT;
|
|
|
|
outAttrs.imeOptions = EditorInfo.IME_ACTION_NONE;
|
|
|
|
outAttrs.actionLabel = null;
|
|
|
|
|
|
|
|
if (mIMEState == IME_STATE_PASSWORD)
|
|
|
|
outAttrs.inputType |= InputType.TYPE_TEXT_VARIATION_PASSWORD;
|
|
|
|
else if (mIMETypeHint.equalsIgnoreCase("url"))
|
|
|
|
outAttrs.inputType |= InputType.TYPE_TEXT_VARIATION_URI;
|
|
|
|
else if (mIMETypeHint.equalsIgnoreCase("email"))
|
|
|
|
outAttrs.inputType |= InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS;
|
|
|
|
else if (mIMETypeHint.equalsIgnoreCase("search"))
|
|
|
|
outAttrs.imeOptions = EditorInfo.IME_ACTION_SEARCH;
|
|
|
|
else if (mIMETypeHint.equalsIgnoreCase("tel"))
|
|
|
|
outAttrs.inputType = InputType.TYPE_CLASS_PHONE;
|
|
|
|
else if (mIMETypeHint.equalsIgnoreCase("number") ||
|
|
|
|
mIMETypeHint.equalsIgnoreCase("range"))
|
2012-06-29 22:49:48 +00:00
|
|
|
outAttrs.inputType = InputType.TYPE_CLASS_NUMBER
|
|
|
|
| InputType.TYPE_NUMBER_FLAG_SIGNED
|
|
|
|
| InputType.TYPE_NUMBER_FLAG_DECIMAL;
|
2012-08-08 07:42:00 +00:00
|
|
|
else if (mIMETypeHint.equalsIgnoreCase("week") ||
|
|
|
|
mIMETypeHint.equalsIgnoreCase("month"))
|
|
|
|
outAttrs.inputType = InputType.TYPE_CLASS_DATETIME
|
|
|
|
| InputType.TYPE_DATETIME_VARIATION_DATE;
|
2012-08-27 02:16:22 +00:00
|
|
|
else if (mIMEModeHint.equalsIgnoreCase("numeric"))
|
|
|
|
outAttrs.inputType = InputType.TYPE_CLASS_NUMBER |
|
|
|
|
InputType.TYPE_NUMBER_FLAG_SIGNED |
|
|
|
|
InputType.TYPE_NUMBER_FLAG_DECIMAL;
|
|
|
|
else if (mIMEModeHint.equalsIgnoreCase("digit"))
|
|
|
|
outAttrs.inputType = InputType.TYPE_CLASS_NUMBER;
|
2012-10-27 01:24:42 +00:00
|
|
|
else {
|
|
|
|
outAttrs.inputType |= InputType.TYPE_TEXT_FLAG_AUTO_CORRECT;
|
|
|
|
if (mIMEModeHint.equalsIgnoreCase("uppercase"))
|
|
|
|
outAttrs.inputType |= InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS;
|
|
|
|
else if (mIMEModeHint.equalsIgnoreCase("titlecase"))
|
|
|
|
outAttrs.inputType |= InputType.TYPE_TEXT_FLAG_CAP_WORDS;
|
|
|
|
else if (mIMEModeHint.equalsIgnoreCase("autocapitalized"))
|
|
|
|
outAttrs.inputType |= InputType.TYPE_TEXT_FLAG_CAP_SENTENCES;
|
|
|
|
// lowercase mode is the default
|
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
|
|
|
|
if (mIMEActionHint.equalsIgnoreCase("go"))
|
|
|
|
outAttrs.imeOptions = EditorInfo.IME_ACTION_GO;
|
|
|
|
else if (mIMEActionHint.equalsIgnoreCase("done"))
|
|
|
|
outAttrs.imeOptions = EditorInfo.IME_ACTION_DONE;
|
|
|
|
else if (mIMEActionHint.equalsIgnoreCase("next"))
|
|
|
|
outAttrs.imeOptions = EditorInfo.IME_ACTION_NEXT;
|
|
|
|
else if (mIMEActionHint.equalsIgnoreCase("search"))
|
|
|
|
outAttrs.imeOptions = EditorInfo.IME_ACTION_SEARCH;
|
|
|
|
else if (mIMEActionHint.equalsIgnoreCase("send"))
|
|
|
|
outAttrs.imeOptions = EditorInfo.IME_ACTION_SEND;
|
2012-08-14 15:21:19 +00:00
|
|
|
else if (mIMEActionHint.length() > 0) {
|
|
|
|
if (DEBUG)
|
|
|
|
Log.w(LOGTAG, "Unexpected mIMEActionHint=\"" + mIMEActionHint + "\"");
|
2011-11-18 18:28:17 +00:00
|
|
|
outAttrs.actionLabel = mIMEActionHint;
|
2012-08-14 15:21:19 +00:00
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-08-01 21:42:11 +00:00
|
|
|
GeckoApp app = GeckoApp.mAppContext;
|
2012-08-01 21:56:26 +00:00
|
|
|
DisplayMetrics metrics = app.getResources().getDisplayMetrics();
|
2012-05-24 01:53:42 +00:00
|
|
|
if (Math.min(metrics.widthPixels, metrics.heightPixels) > INLINE_IME_MIN_DISPLAY_SIZE) {
|
|
|
|
// prevent showing full-screen keyboard only when the screen is tall enough
|
|
|
|
// to show some reasonable amount of the page (see bug 752709)
|
|
|
|
outAttrs.imeOptions |= EditorInfo.IME_FLAG_NO_EXTRACT_UI
|
|
|
|
| EditorInfo.IME_FLAG_NO_FULLSCREEN;
|
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-07-19 18:00:07 +00:00
|
|
|
String prevInputMethod = mCurrentInputMethod;
|
2012-08-01 21:42:11 +00:00
|
|
|
mCurrentInputMethod = InputMethods.getCurrentInputMethod(app);
|
2012-10-26 06:49:08 +00:00
|
|
|
if (DEBUG) {
|
|
|
|
Log.d(LOGTAG, "IME: CurrentInputMethod=" + mCurrentInputMethod);
|
|
|
|
}
|
2012-07-19 18:00:07 +00:00
|
|
|
|
2012-07-22 07:18:14 +00:00
|
|
|
// If the user has changed IMEs, then notify input method observers.
|
2012-07-19 18:00:07 +00:00
|
|
|
if (mCurrentInputMethod != prevInputMethod) {
|
2012-08-01 21:42:11 +00:00
|
|
|
FormAssistPopup popup = app.mFormAssistPopup;
|
2012-07-19 18:00:07 +00:00
|
|
|
if (popup != null) {
|
2012-07-22 07:18:14 +00:00
|
|
|
popup.onInputMethodChanged(mCurrentInputMethod);
|
2012-07-19 18:00:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-05 16:10:33 +00:00
|
|
|
// We don't know the selection
|
|
|
|
outAttrs.initialSelStart = -1;
|
|
|
|
outAttrs.initialSelEnd = -1;
|
2011-11-18 18:28:17 +00:00
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean onKeyPreIme(int keyCode, KeyEvent event) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean onKeyDown(int keyCode, KeyEvent event) {
|
2012-08-16 19:12:05 +00:00
|
|
|
return processKeyDown(keyCode, event);
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
2012-08-16 19:12:05 +00:00
|
|
|
private boolean processKeyDown(int keyCode, KeyEvent event) {
|
2012-06-28 18:03:53 +00:00
|
|
|
if (keyCode > KeyEvent.getMaxKeyCode())
|
|
|
|
return false;
|
|
|
|
|
2011-11-18 18:28:17 +00:00
|
|
|
switch (keyCode) {
|
|
|
|
case KeyEvent.KEYCODE_MENU:
|
|
|
|
case KeyEvent.KEYCODE_BACK:
|
|
|
|
case KeyEvent.KEYCODE_VOLUME_UP:
|
|
|
|
case KeyEvent.KEYCODE_VOLUME_DOWN:
|
|
|
|
case KeyEvent.KEYCODE_SEARCH:
|
|
|
|
return false;
|
|
|
|
case KeyEvent.KEYCODE_ENTER:
|
|
|
|
if ((event.getFlags() & KeyEvent.FLAG_EDITOR_ACTION) != 0 &&
|
|
|
|
mIMEActionHint.equalsIgnoreCase("next"))
|
|
|
|
event = new KeyEvent(event.getAction(), KeyEvent.KEYCODE_TAB);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-07-23 18:52:55 +00:00
|
|
|
View view = getView();
|
2012-03-12 23:02:06 +00:00
|
|
|
KeyListener keyListener = TextKeyListener.getInstance();
|
2011-11-18 18:28:17 +00:00
|
|
|
|
|
|
|
// KeyListener returns true if it handled the event for us.
|
|
|
|
if (mIMEState == IME_STATE_DISABLED ||
|
2012-01-07 02:27:09 +00:00
|
|
|
keyCode == KeyEvent.KEYCODE_ENTER ||
|
|
|
|
keyCode == KeyEvent.KEYCODE_DEL ||
|
|
|
|
keyCode == KeyEvent.KEYCODE_TAB ||
|
|
|
|
(event.getFlags() & KeyEvent.FLAG_SOFT_KEYBOARD) != 0 ||
|
2012-11-01 20:11:03 +00:00
|
|
|
!keyListener.onKeyDown(view, getEditable(), keyCode, event)) {
|
|
|
|
mEditableClient.sendEvent(GeckoEvent.createKeyEvent(event));
|
2012-01-07 02:27:09 +00:00
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean onKeyUp(int keyCode, KeyEvent event) {
|
2012-08-16 19:12:05 +00:00
|
|
|
return processKeyUp(keyCode, event);
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
|
|
|
|
2012-08-16 19:12:05 +00:00
|
|
|
private boolean processKeyUp(int keyCode, KeyEvent event) {
|
2012-06-28 18:03:53 +00:00
|
|
|
if (keyCode > KeyEvent.getMaxKeyCode())
|
|
|
|
return false;
|
|
|
|
|
2011-11-18 18:28:17 +00:00
|
|
|
switch (keyCode) {
|
|
|
|
case KeyEvent.KEYCODE_BACK:
|
|
|
|
case KeyEvent.KEYCODE_SEARCH:
|
|
|
|
case KeyEvent.KEYCODE_MENU:
|
|
|
|
return false;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-07-23 18:52:55 +00:00
|
|
|
View view = getView();
|
2012-03-12 23:02:06 +00:00
|
|
|
KeyListener keyListener = TextKeyListener.getInstance();
|
2011-11-18 18:28:17 +00:00
|
|
|
|
|
|
|
if (mIMEState == IME_STATE_DISABLED ||
|
|
|
|
keyCode == KeyEvent.KEYCODE_ENTER ||
|
|
|
|
keyCode == KeyEvent.KEYCODE_DEL ||
|
|
|
|
(event.getFlags() & KeyEvent.FLAG_SOFT_KEYBOARD) != 0 ||
|
2012-11-01 20:11:03 +00:00
|
|
|
!keyListener.onKeyUp(view, getEditable(), keyCode, event)) {
|
|
|
|
mEditableClient.sendEvent(GeckoEvent.createKeyEvent(event));
|
2012-03-12 23:02:06 +00:00
|
|
|
}
|
|
|
|
|
2011-11-18 18:28:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean onKeyMultiple(int keyCode, int repeatCount, KeyEvent event) {
|
2012-11-01 20:11:03 +00:00
|
|
|
while ((repeatCount--) != 0) {
|
|
|
|
if (!processKeyDown(keyCode, event) ||
|
|
|
|
!processKeyUp(keyCode, event)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean onKeyLongPress(int keyCode, KeyEvent event) {
|
2012-07-23 18:52:55 +00:00
|
|
|
View v = getView();
|
2011-11-18 18:28:17 +00:00
|
|
|
switch (keyCode) {
|
|
|
|
case KeyEvent.KEYCODE_MENU:
|
2012-02-28 00:29:55 +00:00
|
|
|
InputMethodManager imm = getInputMethodManager();
|
2011-11-18 18:28:17 +00:00
|
|
|
imm.toggleSoftInputFromWindow(v.getWindowToken(),
|
2012-02-14 20:28:27 +00:00
|
|
|
InputMethodManager.SHOW_FORCED, 0);
|
2011-11-18 18:28:17 +00:00
|
|
|
return true;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-12-04 03:59:27 +00:00
|
|
|
public boolean isIMEEnabled() {
|
|
|
|
// make sure this picks up PASSWORD and PLUGIN states as well
|
|
|
|
return mIMEState != IME_STATE_DISABLED;
|
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-09-19 18:08:39 +00:00
|
|
|
public void notifyIME(final int type, final int state) {
|
2012-11-01 20:11:02 +00:00
|
|
|
switch (type) {
|
|
|
|
|
|
|
|
case NOTIFY_IME_CANCELCOMPOSITION:
|
2012-12-05 16:10:33 +00:00
|
|
|
// Set composition to empty and end composition
|
|
|
|
setComposingText("", 0);
|
|
|
|
// Fall through
|
|
|
|
|
|
|
|
case NOTIFY_IME_RESETINPUTSTATE:
|
|
|
|
// Commit and end composition
|
|
|
|
finishComposingText();
|
|
|
|
restartInput();
|
2012-11-01 20:11:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case NOTIFY_IME_FOCUSCHANGE:
|
2012-12-05 16:10:33 +00:00
|
|
|
// Showing/hiding vkb is done in notifyIMEEnabled
|
|
|
|
mBatchEditCount = 0;
|
|
|
|
mUpdateRequest = null;
|
2012-11-01 20:11:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (DEBUG) {
|
|
|
|
throw new IllegalArgumentException("Unexpected NOTIFY_IME=" + type);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-07-09 18:00:09 +00:00
|
|
|
}
|
|
|
|
|
2012-11-01 20:11:02 +00:00
|
|
|
public void notifyIMEEnabled(final int state, final String typeHint,
|
|
|
|
final String modeHint, final String actionHint) {
|
2012-12-05 16:10:33 +00:00
|
|
|
// For some input type we will use a widget to display the ui, for those we must not
|
2012-08-07 15:09:15 +00:00
|
|
|
// display the ime. We can display a widget for date and time types and, if the sdk version
|
|
|
|
// is greater than 11, for datetime/month/week as well.
|
|
|
|
if (typeHint.equals("date") || typeHint.equals("time") ||
|
|
|
|
(Build.VERSION.SDK_INT > 10 &&
|
|
|
|
(typeHint.equals("datetime") || typeHint.equals("month") ||
|
|
|
|
typeHint.equals("week") || typeHint.equals("datetime-local")))) {
|
2012-12-05 16:10:33 +00:00
|
|
|
mIMEState = IME_STATE_DISABLED;
|
2012-08-07 15:09:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-01 20:11:02 +00:00
|
|
|
/* When IME is 'disabled', IME processing is disabled.
|
|
|
|
In addition, the IME UI is hidden */
|
|
|
|
mIMEState = state;
|
|
|
|
mIMETypeHint = (typeHint == null) ? "" : typeHint;
|
|
|
|
mIMEModeHint = (modeHint == null) ? "" : modeHint;
|
|
|
|
mIMEActionHint = (actionHint == null) ? "" : actionHint;
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-12-05 16:10:33 +00:00
|
|
|
restartInput();
|
|
|
|
GeckoApp.mAppContext.mMainHandler.postDelayed(new Runnable() {
|
|
|
|
public void run() {
|
|
|
|
if (mIMEState == IME_STATE_DISABLED) {
|
|
|
|
hideSoftInput();
|
|
|
|
} else {
|
|
|
|
showSoftInput();
|
2012-09-19 18:08:39 +00:00
|
|
|
}
|
2012-12-05 16:10:33 +00:00
|
|
|
}
|
|
|
|
}, 200); // Delay 200ms to prevent repeated IME showing/hiding
|
2011-11-18 18:28:17 +00:00
|
|
|
}
|
2012-11-01 20:11:03 +00:00
|
|
|
}
|
2011-11-18 18:28:17 +00:00
|
|
|
|
2012-11-01 20:11:03 +00:00
|
|
|
final class DebugGeckoInputConnection
|
|
|
|
extends GeckoInputConnection
|
|
|
|
implements InvocationHandler {
|
Backout 533faa3c50ed, 718abc1bd4ad, af2d5272c06b, ad5554e1345d, c9ef1b41b829, d3a825311d11, 0a51bcb3eb9e, a01a327e8ec4, 973b0ed30b8b, 39851bbcfaa1 & a92d2d2a3b0e (bug 805162), d4884aab5ce6, 06fcbaf40cb4, daccc3fe7c70, 881eb2a2906e, 76232441ae06, 01ae34fa1b3f & 5f405fc4e323 (bug 783092), a03d8d4db1c2, 49beb3801192, 174634554a97, 0bd27e755a83, 19e8f151ca67, a6604e038bc0, ed3b8237e76e & 082cf8d72554 (bug 785945) for bustage or conflicting with backout of said bustage on a CLOSED TREE
2012-11-01 00:16:35 +00:00
|
|
|
|
2012-11-01 20:11:03 +00:00
|
|
|
private InputConnection mProxy;
|
Backout 533faa3c50ed, 718abc1bd4ad, af2d5272c06b, ad5554e1345d, c9ef1b41b829, d3a825311d11, 0a51bcb3eb9e, a01a327e8ec4, 973b0ed30b8b, 39851bbcfaa1 & a92d2d2a3b0e (bug 805162), d4884aab5ce6, 06fcbaf40cb4, daccc3fe7c70, 881eb2a2906e, 76232441ae06, 01ae34fa1b3f & 5f405fc4e323 (bug 783092), a03d8d4db1c2, 49beb3801192, 174634554a97, 0bd27e755a83, 19e8f151ca67, a6604e038bc0, ed3b8237e76e & 082cf8d72554 (bug 785945) for bustage or conflicting with backout of said bustage on a CLOSED TREE
2012-11-01 00:16:35 +00:00
|
|
|
|
2012-11-01 20:11:03 +00:00
|
|
|
private DebugGeckoInputConnection(View targetView,
|
|
|
|
GeckoEditableClient editable) {
|
|
|
|
super(targetView, editable);
|
Backout 533faa3c50ed, 718abc1bd4ad, af2d5272c06b, ad5554e1345d, c9ef1b41b829, d3a825311d11, 0a51bcb3eb9e, a01a327e8ec4, 973b0ed30b8b, 39851bbcfaa1 & a92d2d2a3b0e (bug 805162), d4884aab5ce6, 06fcbaf40cb4, daccc3fe7c70, 881eb2a2906e, 76232441ae06, 01ae34fa1b3f & 5f405fc4e323 (bug 783092), a03d8d4db1c2, 49beb3801192, 174634554a97, 0bd27e755a83, 19e8f151ca67, a6604e038bc0, ed3b8237e76e & 082cf8d72554 (bug 785945) for bustage or conflicting with backout of said bustage on a CLOSED TREE
2012-11-01 00:16:35 +00:00
|
|
|
}
|
|
|
|
|
2012-12-10 19:07:26 +00:00
|
|
|
public static GeckoEditableListener create(View targetView,
|
|
|
|
GeckoEditableClient editable) {
|
2012-11-01 20:11:03 +00:00
|
|
|
final Class[] PROXY_INTERFACES = { InputConnection.class,
|
|
|
|
InputConnectionHandler.class,
|
|
|
|
GeckoEditableListener.class };
|
|
|
|
DebugGeckoInputConnection dgic =
|
|
|
|
new DebugGeckoInputConnection(targetView, editable);
|
|
|
|
dgic.mProxy = (InputConnection)Proxy.newProxyInstance(
|
|
|
|
GeckoInputConnection.class.getClassLoader(),
|
|
|
|
PROXY_INTERFACES, dgic);
|
2012-12-10 19:07:26 +00:00
|
|
|
return (GeckoEditableListener)dgic.mProxy;
|
2012-11-01 20:11:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static StringBuilder debugAppend(StringBuilder sb, Object obj) {
|
|
|
|
if (obj == null) {
|
|
|
|
sb.append("null");
|
|
|
|
} else if (obj instanceof GeckoEditable) {
|
|
|
|
sb.append("GeckoEditable");
|
|
|
|
} else if (Proxy.isProxyClass(obj.getClass())) {
|
|
|
|
debugAppend(sb, Proxy.getInvocationHandler(obj));
|
|
|
|
} else if (obj instanceof CharSequence) {
|
|
|
|
sb.append("\"").append(obj.toString().replace('\n', '\u21b2')).append("\"");
|
|
|
|
} else if (obj.getClass().isArray()) {
|
2012-11-02 14:21:19 +00:00
|
|
|
sb.append(obj.getClass().getComponentType().getSimpleName()).append("[")
|
2012-11-01 20:11:03 +00:00
|
|
|
.append(java.lang.reflect.Array.getLength(obj)).append("]");
|
|
|
|
} else {
|
|
|
|
sb.append(obj.toString());
|
Backout 533faa3c50ed, 718abc1bd4ad, af2d5272c06b, ad5554e1345d, c9ef1b41b829, d3a825311d11, 0a51bcb3eb9e, a01a327e8ec4, 973b0ed30b8b, 39851bbcfaa1 & a92d2d2a3b0e (bug 805162), d4884aab5ce6, 06fcbaf40cb4, daccc3fe7c70, 881eb2a2906e, 76232441ae06, 01ae34fa1b3f & 5f405fc4e323 (bug 783092), a03d8d4db1c2, 49beb3801192, 174634554a97, 0bd27e755a83, 19e8f151ca67, a6604e038bc0, ed3b8237e76e & 082cf8d72554 (bug 785945) for bustage or conflicting with backout of said bustage on a CLOSED TREE
2012-11-01 00:16:35 +00:00
|
|
|
}
|
2012-11-01 20:11:03 +00:00
|
|
|
return sb;
|
Backout 533faa3c50ed, 718abc1bd4ad, af2d5272c06b, ad5554e1345d, c9ef1b41b829, d3a825311d11, 0a51bcb3eb9e, a01a327e8ec4, 973b0ed30b8b, 39851bbcfaa1 & a92d2d2a3b0e (bug 805162), d4884aab5ce6, 06fcbaf40cb4, daccc3fe7c70, 881eb2a2906e, 76232441ae06, 01ae34fa1b3f & 5f405fc4e323 (bug 783092), a03d8d4db1c2, 49beb3801192, 174634554a97, 0bd27e755a83, 19e8f151ca67, a6604e038bc0, ed3b8237e76e & 082cf8d72554 (bug 785945) for bustage or conflicting with backout of said bustage on a CLOSED TREE
2012-11-01 00:16:35 +00:00
|
|
|
}
|
|
|
|
|
2012-11-01 20:11:03 +00:00
|
|
|
public Object invoke(Object proxy, Method method, Object[] args)
|
|
|
|
throws Throwable {
|
Backout 533faa3c50ed, 718abc1bd4ad, af2d5272c06b, ad5554e1345d, c9ef1b41b829, d3a825311d11, 0a51bcb3eb9e, a01a327e8ec4, 973b0ed30b8b, 39851bbcfaa1 & a92d2d2a3b0e (bug 805162), d4884aab5ce6, 06fcbaf40cb4, daccc3fe7c70, 881eb2a2906e, 76232441ae06, 01ae34fa1b3f & 5f405fc4e323 (bug 783092), a03d8d4db1c2, 49beb3801192, 174634554a97, 0bd27e755a83, 19e8f151ca67, a6604e038bc0, ed3b8237e76e & 082cf8d72554 (bug 785945) for bustage or conflicting with backout of said bustage on a CLOSED TREE
2012-11-01 00:16:35 +00:00
|
|
|
|
|
|
|
GeckoApp.assertOnUiThread();
|
2012-11-01 20:11:03 +00:00
|
|
|
Object ret = method.invoke(this, args);
|
|
|
|
if (ret == this) {
|
|
|
|
ret = mProxy;
|
2012-10-31 21:35:32 +00:00
|
|
|
}
|
Backout 533faa3c50ed, 718abc1bd4ad, af2d5272c06b, ad5554e1345d, c9ef1b41b829, d3a825311d11, 0a51bcb3eb9e, a01a327e8ec4, 973b0ed30b8b, 39851bbcfaa1 & a92d2d2a3b0e (bug 805162), d4884aab5ce6, 06fcbaf40cb4, daccc3fe7c70, 881eb2a2906e, 76232441ae06, 01ae34fa1b3f & 5f405fc4e323 (bug 783092), a03d8d4db1c2, 49beb3801192, 174634554a97, 0bd27e755a83, 19e8f151ca67, a6604e038bc0, ed3b8237e76e & 082cf8d72554 (bug 785945) for bustage or conflicting with backout of said bustage on a CLOSED TREE
2012-11-01 00:16:35 +00:00
|
|
|
|
2012-11-01 20:11:03 +00:00
|
|
|
StringBuilder log = new StringBuilder(method.getName());
|
|
|
|
log.append("(");
|
|
|
|
for (Object arg : args) {
|
|
|
|
debugAppend(log, arg).append(", ");
|
|
|
|
}
|
|
|
|
if (args.length > 0) {
|
|
|
|
log.setLength(log.length() - 2);
|
|
|
|
}
|
|
|
|
if (method.getReturnType().equals(Void.TYPE)) {
|
|
|
|
log.append(")");
|
|
|
|
} else {
|
|
|
|
debugAppend(log.append(") = "), ret);
|
|
|
|
}
|
|
|
|
Log.d(LOGTAG, log.toString());
|
2012-08-11 04:12:28 +00:00
|
|
|
|
2012-11-01 20:11:03 +00:00
|
|
|
return ret;
|
2012-08-11 04:12:28 +00:00
|
|
|
}
|
2012-06-01 18:09:29 +00:00
|
|
|
}
|
2011-12-15 21:35:45 +00:00
|
|
|
|