253 lines
9.8 KiB
Java
253 lines
9.8 KiB
Java
/*
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package com.android.inputmethod.keyboard;
|
|
|
|
import static com.android.inputmethod.latin.Constants.Subtype.ExtraValue.KEYBOARD_LAYOUT_SET;
|
|
|
|
import android.content.res.Configuration;
|
|
import android.text.InputType;
|
|
import android.text.TextUtils;
|
|
import android.view.inputmethod.EditorInfo;
|
|
import android.view.inputmethod.InputMethodSubtype;
|
|
|
|
import com.android.inputmethod.compat.EditorInfoCompatUtils;
|
|
import com.android.inputmethod.latin.InputTypeUtils;
|
|
import com.android.inputmethod.latin.SubtypeLocale;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.Locale;
|
|
|
|
/**
|
|
* Unique identifier for each keyboard type.
|
|
*/
|
|
public final class KeyboardId {
|
|
public static final int MODE_TEXT = 0;
|
|
public static final int MODE_URL = 1;
|
|
public static final int MODE_EMAIL = 2;
|
|
public static final int MODE_IM = 3;
|
|
public static final int MODE_PHONE = 4;
|
|
public static final int MODE_NUMBER = 5;
|
|
public static final int MODE_DATE = 6;
|
|
public static final int MODE_TIME = 7;
|
|
public static final int MODE_DATETIME = 8;
|
|
|
|
public static final int ELEMENT_ALPHABET = 0;
|
|
public static final int ELEMENT_ALPHABET_MANUAL_SHIFTED = 1;
|
|
public static final int ELEMENT_ALPHABET_AUTOMATIC_SHIFTED = 2;
|
|
public static final int ELEMENT_ALPHABET_SHIFT_LOCKED = 3;
|
|
public static final int ELEMENT_ALPHABET_SHIFT_LOCK_SHIFTED = 4;
|
|
public static final int ELEMENT_SYMBOLS = 5;
|
|
public static final int ELEMENT_SYMBOLS_SHIFTED = 6;
|
|
public static final int ELEMENT_PHONE = 7;
|
|
public static final int ELEMENT_PHONE_SYMBOLS = 8;
|
|
public static final int ELEMENT_NUMBER = 9;
|
|
|
|
public final InputMethodSubtype mSubtype;
|
|
public final Locale mLocale;
|
|
// TODO: Remove this member. It is used only for logging purpose.
|
|
public final int mOrientation;
|
|
public final int mWidth;
|
|
public final int mHeight;
|
|
public final int mMode;
|
|
public final int mElementId;
|
|
private final EditorInfo mEditorInfo;
|
|
public final boolean mClobberSettingsKey;
|
|
public final boolean mShortcutKeyEnabled;
|
|
public final boolean mShortcutKeyOnSymbols;
|
|
public final boolean mLanguageSwitchKeyEnabled;
|
|
public final String mCustomActionLabel;
|
|
public final boolean mHasShortcutKey;
|
|
|
|
private final int mHashCode;
|
|
|
|
public KeyboardId(final int elementId, final KeyboardLayoutSet.Params params) {
|
|
mSubtype = params.mSubtype;
|
|
mLocale = SubtypeLocale.getSubtypeLocale(mSubtype);
|
|
mOrientation = params.mOrientation;
|
|
mWidth = params.mKeyboardWidth;
|
|
mHeight = params.mKeyboardHeight;
|
|
mMode = params.mMode;
|
|
mElementId = elementId;
|
|
mEditorInfo = params.mEditorInfo;
|
|
mClobberSettingsKey = params.mNoSettingsKey;
|
|
mShortcutKeyEnabled = params.mVoiceKeyEnabled;
|
|
mShortcutKeyOnSymbols = mShortcutKeyEnabled && !params.mVoiceKeyOnMain;
|
|
mLanguageSwitchKeyEnabled = params.mLanguageSwitchKeyEnabled;
|
|
mCustomActionLabel = (mEditorInfo.actionLabel != null)
|
|
? mEditorInfo.actionLabel.toString() : null;
|
|
final boolean alphabetMayHaveShortcutKey = isAlphabetKeyboard(elementId)
|
|
&& !mShortcutKeyOnSymbols;
|
|
final boolean symbolsMayHaveShortcutKey = (elementId == KeyboardId.ELEMENT_SYMBOLS)
|
|
&& mShortcutKeyOnSymbols;
|
|
mHasShortcutKey = mShortcutKeyEnabled
|
|
&& (alphabetMayHaveShortcutKey || symbolsMayHaveShortcutKey);
|
|
|
|
mHashCode = computeHashCode(this);
|
|
}
|
|
|
|
private static int computeHashCode(final KeyboardId id) {
|
|
return Arrays.hashCode(new Object[] {
|
|
id.mOrientation,
|
|
id.mElementId,
|
|
id.mMode,
|
|
id.mWidth,
|
|
id.mHeight,
|
|
id.passwordInput(),
|
|
id.mClobberSettingsKey,
|
|
id.mShortcutKeyEnabled,
|
|
id.mShortcutKeyOnSymbols,
|
|
id.mLanguageSwitchKeyEnabled,
|
|
id.isMultiLine(),
|
|
id.imeAction(),
|
|
id.mCustomActionLabel,
|
|
id.navigateNext(),
|
|
id.navigatePrevious(),
|
|
id.mSubtype
|
|
});
|
|
}
|
|
|
|
private boolean equals(final KeyboardId other) {
|
|
if (other == this)
|
|
return true;
|
|
return other.mOrientation == mOrientation
|
|
&& other.mElementId == mElementId
|
|
&& other.mMode == mMode
|
|
&& other.mWidth == mWidth
|
|
&& other.mHeight == mHeight
|
|
&& other.passwordInput() == passwordInput()
|
|
&& other.mClobberSettingsKey == mClobberSettingsKey
|
|
&& other.mShortcutKeyEnabled == mShortcutKeyEnabled
|
|
&& other.mShortcutKeyOnSymbols == mShortcutKeyOnSymbols
|
|
&& other.mLanguageSwitchKeyEnabled == mLanguageSwitchKeyEnabled
|
|
&& other.isMultiLine() == isMultiLine()
|
|
&& other.imeAction() == imeAction()
|
|
&& TextUtils.equals(other.mCustomActionLabel, mCustomActionLabel)
|
|
&& other.navigateNext() == navigateNext()
|
|
&& other.navigatePrevious() == navigatePrevious()
|
|
&& other.mSubtype.equals(mSubtype);
|
|
}
|
|
|
|
private static boolean isAlphabetKeyboard(final int elementId) {
|
|
return elementId < ELEMENT_SYMBOLS;
|
|
}
|
|
|
|
public boolean isAlphabetKeyboard() {
|
|
return isAlphabetKeyboard(mElementId);
|
|
}
|
|
|
|
public boolean navigateNext() {
|
|
return (mEditorInfo.imeOptions & EditorInfo.IME_FLAG_NAVIGATE_NEXT) != 0
|
|
|| imeAction() == EditorInfo.IME_ACTION_NEXT;
|
|
}
|
|
|
|
public boolean navigatePrevious() {
|
|
return (mEditorInfo.imeOptions & EditorInfo.IME_FLAG_NAVIGATE_PREVIOUS) != 0
|
|
|| imeAction() == EditorInfo.IME_ACTION_PREVIOUS;
|
|
}
|
|
|
|
public boolean passwordInput() {
|
|
final int inputType = mEditorInfo.inputType;
|
|
return InputTypeUtils.isPasswordInputType(inputType)
|
|
|| InputTypeUtils.isVisiblePasswordInputType(inputType);
|
|
}
|
|
|
|
public boolean isMultiLine() {
|
|
return (mEditorInfo.inputType & InputType.TYPE_TEXT_FLAG_MULTI_LINE) != 0;
|
|
}
|
|
|
|
public int imeAction() {
|
|
return InputTypeUtils.getImeOptionsActionIdFromEditorInfo(mEditorInfo);
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(final Object other) {
|
|
return other instanceof KeyboardId && equals((KeyboardId) other);
|
|
}
|
|
|
|
@Override
|
|
public int hashCode() {
|
|
return mHashCode;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
final String orientation = (mOrientation == Configuration.ORIENTATION_PORTRAIT)
|
|
? "port" : "land";
|
|
return String.format("[%s %s:%s %s:%dx%d %s %s %s%s%s%s%s%s%s%s%s]",
|
|
elementIdToName(mElementId),
|
|
mLocale,
|
|
mSubtype.getExtraValueOf(KEYBOARD_LAYOUT_SET),
|
|
orientation, mWidth, mHeight,
|
|
modeName(mMode),
|
|
imeAction(),
|
|
(navigateNext() ? "navigateNext" : ""),
|
|
(navigatePrevious() ? "navigatePrevious" : ""),
|
|
(mClobberSettingsKey ? " clobberSettingsKey" : ""),
|
|
(passwordInput() ? " passwordInput" : ""),
|
|
(mShortcutKeyEnabled ? " shortcutKeyEnabled" : ""),
|
|
(mShortcutKeyOnSymbols ? " shortcutKeyOnSymbols" : ""),
|
|
(mHasShortcutKey ? " hasShortcutKey" : ""),
|
|
(mLanguageSwitchKeyEnabled ? " languageSwitchKeyEnabled" : ""),
|
|
(isMultiLine() ? "isMultiLine" : "")
|
|
);
|
|
}
|
|
|
|
public static boolean equivalentEditorInfoForKeyboard(final EditorInfo a, final EditorInfo b) {
|
|
if (a == null && b == null) return true;
|
|
if (a == null || b == null) return false;
|
|
return a.inputType == b.inputType
|
|
&& a.imeOptions == b.imeOptions
|
|
&& TextUtils.equals(a.privateImeOptions, b.privateImeOptions);
|
|
}
|
|
|
|
public static String elementIdToName(final int elementId) {
|
|
switch (elementId) {
|
|
case ELEMENT_ALPHABET: return "alphabet";
|
|
case ELEMENT_ALPHABET_MANUAL_SHIFTED: return "alphabetManualShifted";
|
|
case ELEMENT_ALPHABET_AUTOMATIC_SHIFTED: return "alphabetAutomaticShifted";
|
|
case ELEMENT_ALPHABET_SHIFT_LOCKED: return "alphabetShiftLocked";
|
|
case ELEMENT_ALPHABET_SHIFT_LOCK_SHIFTED: return "alphabetShiftLockShifted";
|
|
case ELEMENT_SYMBOLS: return "symbols";
|
|
case ELEMENT_SYMBOLS_SHIFTED: return "symbolsShifted";
|
|
case ELEMENT_PHONE: return "phone";
|
|
case ELEMENT_PHONE_SYMBOLS: return "phoneSymbols";
|
|
case ELEMENT_NUMBER: return "number";
|
|
default: return null;
|
|
}
|
|
}
|
|
|
|
public static String modeName(final int mode) {
|
|
switch (mode) {
|
|
case MODE_TEXT: return "text";
|
|
case MODE_URL: return "url";
|
|
case MODE_EMAIL: return "email";
|
|
case MODE_IM: return "im";
|
|
case MODE_PHONE: return "phone";
|
|
case MODE_NUMBER: return "number";
|
|
case MODE_DATE: return "date";
|
|
case MODE_TIME: return "time";
|
|
case MODE_DATETIME: return "datetime";
|
|
default: return null;
|
|
}
|
|
}
|
|
|
|
public static String actionName(final int actionId) {
|
|
return (actionId == InputTypeUtils.IME_ACTION_CUSTOM_LABEL) ? "actionCustomLabel"
|
|
: EditorInfoCompatUtils.imeActionName(actionId);
|
|
}
|
|
}
|