2010-12-02 09:46:21 +00:00
|
|
|
/*
|
2011-05-20 03:09:57 +00:00
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
2010-12-02 09:46:21 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-06-23 12:23:44 +00:00
|
|
|
package com.android.inputmethod.keyboard;
|
2010-12-02 09:46:21 +00:00
|
|
|
|
|
|
|
import android.content.res.Resources;
|
|
|
|
import android.content.res.TypedArray;
|
|
|
|
import android.content.res.XmlResourceParser;
|
2011-06-25 10:38:55 +00:00
|
|
|
import android.graphics.Typeface;
|
2010-12-02 09:46:21 +00:00
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import android.text.TextUtils;
|
|
|
|
import android.util.Xml;
|
|
|
|
|
2011-06-23 12:23:44 +00:00
|
|
|
import com.android.inputmethod.keyboard.internal.KeyStyles;
|
2011-06-25 10:38:55 +00:00
|
|
|
import com.android.inputmethod.keyboard.internal.KeyStyles.KeyStyle;
|
2011-06-23 12:23:44 +00:00
|
|
|
import com.android.inputmethod.keyboard.internal.KeyboardIconsSet;
|
|
|
|
import com.android.inputmethod.keyboard.internal.KeyboardParser;
|
2011-06-25 10:38:55 +00:00
|
|
|
import com.android.inputmethod.keyboard.internal.KeyboardParser.ParseException;
|
2011-06-23 12:23:44 +00:00
|
|
|
import com.android.inputmethod.keyboard.internal.PopupCharactersParser;
|
|
|
|
import com.android.inputmethod.keyboard.internal.Row;
|
2011-06-21 14:38:42 +00:00
|
|
|
import com.android.inputmethod.latin.R;
|
|
|
|
|
2011-01-06 13:37:39 +00:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
/**
|
|
|
|
* Class for describing the position and characteristics of a single key in the keyboard.
|
|
|
|
*/
|
|
|
|
public class Key {
|
|
|
|
/**
|
2010-12-20 11:30:26 +00:00
|
|
|
* The key code (unicode or custom code) that this key generates.
|
2010-12-02 09:46:21 +00:00
|
|
|
*/
|
2010-12-20 11:30:26 +00:00
|
|
|
public final int mCode;
|
2010-12-02 09:46:21 +00:00
|
|
|
|
|
|
|
/** Label to display */
|
2010-12-03 04:17:26 +00:00
|
|
|
public final CharSequence mLabel;
|
2011-06-25 10:38:55 +00:00
|
|
|
/** Hint label to display on the key in conjunction with the label */
|
|
|
|
public final CharSequence mHintLabel;
|
2010-12-02 09:46:21 +00:00
|
|
|
/** Option of the label */
|
2010-12-03 04:17:26 +00:00
|
|
|
public final int mLabelOption;
|
2011-06-15 03:36:53 +00:00
|
|
|
public static final int LABEL_OPTION_ALIGN_LEFT = 0x01;
|
|
|
|
public static final int LABEL_OPTION_ALIGN_RIGHT = 0x02;
|
2011-06-25 10:38:55 +00:00
|
|
|
public static final int LABEL_OPTION_ALIGN_LEFT_OF_CENTER = 0x08;
|
|
|
|
private static final int LABEL_OPTION_LARGE_LETTER = 0x10;
|
|
|
|
private static final int LABEL_OPTION_FONT_NORMAL = 0x20;
|
|
|
|
private static final int LABEL_OPTION_FONT_MONO_SPACE = 0x40;
|
|
|
|
private static final int LABEL_OPTION_FOLLOW_KEY_LETTER_RATIO = 0x80;
|
|
|
|
private static final int LABEL_OPTION_FOLLOW_KEY_HINT_LABEL_RATIO = 0x100;
|
|
|
|
private static final int LABEL_OPTION_HAS_POPUP_HINT = 0x200;
|
|
|
|
private static final int LABEL_OPTION_HAS_UPPERCASE_LETTER = 0x400;
|
|
|
|
private static final int LABEL_OPTION_HAS_HINT_LABEL = 0x800;
|
2010-12-02 09:46:21 +00:00
|
|
|
|
|
|
|
/** Icon to display instead of a label. Icon takes precedence over a label */
|
2010-12-03 04:17:26 +00:00
|
|
|
private Drawable mIcon;
|
2010-12-02 09:46:21 +00:00
|
|
|
/** Preview version of the icon, for the preview popup */
|
2010-12-03 04:17:26 +00:00
|
|
|
private Drawable mPreviewIcon;
|
2010-12-02 09:46:21 +00:00
|
|
|
|
|
|
|
/** Width of the key, not including the gap */
|
2010-12-03 04:17:26 +00:00
|
|
|
public final int mWidth;
|
2010-12-02 09:46:21 +00:00
|
|
|
/** Height of the key, not including the gap */
|
2010-12-03 04:17:26 +00:00
|
|
|
public final int mHeight;
|
2011-04-11 02:30:15 +00:00
|
|
|
/** The horizontal gap around this key */
|
2010-12-03 04:17:26 +00:00
|
|
|
public final int mGap;
|
2011-04-11 02:30:15 +00:00
|
|
|
/** The visual insets */
|
|
|
|
public final int mVisualInsetsLeft;
|
|
|
|
public final int mVisualInsetsRight;
|
2010-12-02 09:46:21 +00:00
|
|
|
/** Whether this key is sticky, i.e., a toggle key */
|
2010-12-03 04:17:26 +00:00
|
|
|
public final boolean mSticky;
|
2010-12-02 09:46:21 +00:00
|
|
|
/** X coordinate of the key in the keyboard layout */
|
2010-12-03 04:17:26 +00:00
|
|
|
public final int mX;
|
2010-12-02 09:46:21 +00:00
|
|
|
/** Y coordinate of the key in the keyboard layout */
|
2010-12-03 04:17:26 +00:00
|
|
|
public final int mY;
|
2010-12-02 09:46:21 +00:00
|
|
|
/** Text to output when pressed. This can be multiple characters, like ".com" */
|
2010-12-03 04:17:26 +00:00
|
|
|
public final CharSequence mOutputText;
|
2010-12-02 09:46:21 +00:00
|
|
|
/** Popup characters */
|
2010-12-14 06:31:47 +00:00
|
|
|
public final CharSequence[] mPopupCharacters;
|
|
|
|
/** Popup keyboard maximum column number */
|
|
|
|
public final int mMaxPopupColumn;
|
2010-12-02 09:46:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Flags that specify the anchoring to edges of the keyboard for detecting touch events
|
|
|
|
* that are just out of the boundary of the key. This is a bit mask of
|
|
|
|
* {@link Keyboard#EDGE_LEFT}, {@link Keyboard#EDGE_RIGHT},
|
|
|
|
* {@link Keyboard#EDGE_TOP} and {@link Keyboard#EDGE_BOTTOM}.
|
|
|
|
*/
|
2010-12-03 04:17:26 +00:00
|
|
|
public final int mEdgeFlags;
|
2011-04-07 07:12:00 +00:00
|
|
|
/** Whether this is a functional key which has different key top than normal key */
|
|
|
|
public final boolean mFunctional;
|
2010-12-02 09:46:21 +00:00
|
|
|
/** Whether this key repeats itself when held down */
|
2010-12-03 04:17:26 +00:00
|
|
|
public final boolean mRepeatable;
|
2010-12-02 09:46:21 +00:00
|
|
|
|
2010-12-03 04:17:26 +00:00
|
|
|
/** The Keyboard that this key belongs to */
|
|
|
|
private final Keyboard mKeyboard;
|
|
|
|
|
|
|
|
/** The current pressed state of this key */
|
2011-06-23 12:23:44 +00:00
|
|
|
private boolean mPressed;
|
2011-04-07 07:12:00 +00:00
|
|
|
/** If this is a sticky key, is its highlight on? */
|
2011-06-23 12:23:44 +00:00
|
|
|
private boolean mHighlightOn;
|
2011-02-18 02:28:17 +00:00
|
|
|
/** Key is enabled and responds on press */
|
2011-06-23 12:23:44 +00:00
|
|
|
private boolean mEnabled = true;
|
2010-12-02 09:46:21 +00:00
|
|
|
|
2011-05-30 11:05:50 +00:00
|
|
|
// keyWidth constants
|
|
|
|
private static final int KEYWIDTH_FILL_RIGHT = 0;
|
|
|
|
private static final int KEYWIDTH_FILL_BOTH = -1;
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
private final static int[] KEY_STATE_NORMAL_ON = {
|
|
|
|
android.R.attr.state_checkable,
|
|
|
|
android.R.attr.state_checked
|
|
|
|
};
|
|
|
|
|
|
|
|
private final static int[] KEY_STATE_PRESSED_ON = {
|
|
|
|
android.R.attr.state_pressed,
|
|
|
|
android.R.attr.state_checkable,
|
|
|
|
android.R.attr.state_checked
|
|
|
|
};
|
|
|
|
|
|
|
|
private final static int[] KEY_STATE_NORMAL_OFF = {
|
|
|
|
android.R.attr.state_checkable
|
|
|
|
};
|
|
|
|
|
|
|
|
private final static int[] KEY_STATE_PRESSED_OFF = {
|
|
|
|
android.R.attr.state_pressed,
|
|
|
|
android.R.attr.state_checkable
|
|
|
|
};
|
|
|
|
|
|
|
|
private final static int[] KEY_STATE_NORMAL = {
|
|
|
|
};
|
|
|
|
|
|
|
|
private final static int[] KEY_STATE_PRESSED = {
|
|
|
|
android.R.attr.state_pressed
|
|
|
|
};
|
|
|
|
|
2010-12-02 11:54:32 +00:00
|
|
|
// functional normal state (with properties)
|
|
|
|
private static final int[] KEY_STATE_FUNCTIONAL_NORMAL = {
|
|
|
|
android.R.attr.state_single
|
|
|
|
};
|
|
|
|
|
|
|
|
// functional pressed state (with properties)
|
|
|
|
private static final int[] KEY_STATE_FUNCTIONAL_PRESSED = {
|
|
|
|
android.R.attr.state_single,
|
|
|
|
android.R.attr.state_pressed
|
|
|
|
};
|
|
|
|
|
2010-12-14 06:31:47 +00:00
|
|
|
/**
|
2011-05-30 11:05:50 +00:00
|
|
|
* This constructor is being used only for key in popup mini keyboard.
|
2010-12-14 06:31:47 +00:00
|
|
|
*/
|
2011-01-01 04:50:47 +00:00
|
|
|
public Key(Resources res, Keyboard keyboard, CharSequence popupCharacter, int x, int y,
|
2011-05-12 05:49:18 +00:00
|
|
|
int width, int height, int edgeFlags) {
|
2011-01-01 04:50:47 +00:00
|
|
|
mKeyboard = keyboard;
|
2011-05-12 05:49:18 +00:00
|
|
|
mHeight = height - keyboard.getVerticalGap();
|
2011-01-01 04:50:47 +00:00
|
|
|
mGap = keyboard.getHorizontalGap();
|
2011-04-11 02:30:15 +00:00
|
|
|
mVisualInsetsLeft = mVisualInsetsRight = 0;
|
2011-01-01 05:07:04 +00:00
|
|
|
mWidth = width - mGap;
|
2011-01-01 04:50:47 +00:00
|
|
|
mEdgeFlags = edgeFlags;
|
2011-06-25 10:38:55 +00:00
|
|
|
mHintLabel = null;
|
2010-12-03 04:17:26 +00:00
|
|
|
mLabelOption = 0;
|
2011-04-07 07:12:00 +00:00
|
|
|
mFunctional = false;
|
2010-12-03 04:17:26 +00:00
|
|
|
mSticky = false;
|
|
|
|
mRepeatable = false;
|
|
|
|
mPopupCharacters = null;
|
2010-12-14 06:31:47 +00:00
|
|
|
mMaxPopupColumn = 0;
|
|
|
|
final String popupSpecification = popupCharacter.toString();
|
|
|
|
mLabel = PopupCharactersParser.getLabel(popupSpecification);
|
|
|
|
mOutputText = PopupCharactersParser.getOutputText(popupSpecification);
|
2010-12-20 11:30:26 +00:00
|
|
|
mCode = PopupCharactersParser.getCode(res, popupSpecification);
|
2011-06-21 14:38:42 +00:00
|
|
|
mIcon = keyboard.mIconsSet.getIcon(PopupCharactersParser.getIconId(popupSpecification));
|
2010-12-03 04:17:26 +00:00
|
|
|
// Horizontal gap is divided equally to both sides of the key.
|
|
|
|
mX = x + mGap / 2;
|
|
|
|
mY = y;
|
2010-12-02 09:46:21 +00:00
|
|
|
}
|
|
|
|
|
2010-12-14 06:31:47 +00:00
|
|
|
/**
|
|
|
|
* Create a key with the given top-left coordinate and extract its attributes from the XML
|
|
|
|
* parser.
|
2010-12-02 09:46:21 +00:00
|
|
|
* @param res resources associated with the caller's context
|
2010-12-03 04:17:26 +00:00
|
|
|
* @param row the row that this key belongs to. The row must already be attached to
|
2010-12-02 09:46:21 +00:00
|
|
|
* a {@link Keyboard}.
|
|
|
|
* @param x the x coordinate of the top-left
|
|
|
|
* @param y the y coordinate of the top-left
|
|
|
|
* @param parser the XML parser containing the attributes for this key
|
2011-05-30 11:05:50 +00:00
|
|
|
* @param keyStyles active key styles set
|
2010-12-02 09:46:21 +00:00
|
|
|
*/
|
2010-12-03 04:17:26 +00:00
|
|
|
public Key(Resources res, Row row, int x, int y, XmlResourceParser parser,
|
2010-12-02 09:46:21 +00:00
|
|
|
KeyStyles keyStyles) {
|
2010-12-03 04:17:26 +00:00
|
|
|
mKeyboard = row.getKeyboard();
|
2010-12-02 09:46:21 +00:00
|
|
|
|
2010-12-14 06:31:47 +00:00
|
|
|
final TypedArray keyboardAttr = res.obtainAttributes(Xml.asAttributeSet(parser),
|
2010-12-02 09:46:21 +00:00
|
|
|
R.styleable.Keyboard);
|
2011-05-30 11:05:50 +00:00
|
|
|
int keyWidth;
|
2010-12-14 06:31:47 +00:00
|
|
|
try {
|
|
|
|
mHeight = KeyboardParser.getDimensionOrFraction(keyboardAttr,
|
|
|
|
R.styleable.Keyboard_rowHeight,
|
|
|
|
mKeyboard.getKeyboardHeight(), row.mDefaultHeight) - row.mVerticalGap;
|
|
|
|
mGap = KeyboardParser.getDimensionOrFraction(keyboardAttr,
|
|
|
|
R.styleable.Keyboard_horizontalGap,
|
|
|
|
mKeyboard.getDisplayWidth(), row.mDefaultHorizontalGap);
|
2011-05-30 11:05:50 +00:00
|
|
|
keyWidth = KeyboardParser.getDimensionOrFraction(keyboardAttr,
|
2010-12-14 06:31:47 +00:00
|
|
|
R.styleable.Keyboard_keyWidth,
|
2011-05-30 11:05:50 +00:00
|
|
|
mKeyboard.getDisplayWidth(), row.mDefaultWidth);
|
2010-12-14 06:31:47 +00:00
|
|
|
} finally {
|
|
|
|
keyboardAttr.recycle();
|
2010-12-02 09:46:21 +00:00
|
|
|
}
|
|
|
|
|
2010-12-14 06:31:47 +00:00
|
|
|
final TypedArray keyAttr = res.obtainAttributes(Xml.asAttributeSet(parser),
|
|
|
|
R.styleable.Keyboard_Key);
|
|
|
|
try {
|
|
|
|
final KeyStyle style;
|
|
|
|
if (keyAttr.hasValue(R.styleable.Keyboard_Key_keyStyle)) {
|
|
|
|
String styleName = keyAttr.getString(R.styleable.Keyboard_Key_keyStyle);
|
|
|
|
style = keyStyles.getKeyStyle(styleName);
|
|
|
|
if (style == null)
|
|
|
|
throw new ParseException("Unknown key style: " + styleName, parser);
|
|
|
|
} else {
|
|
|
|
style = keyStyles.getEmptyKeyStyle();
|
|
|
|
}
|
2010-12-08 08:07:25 +00:00
|
|
|
|
2011-05-30 11:05:50 +00:00
|
|
|
final int keyboardWidth = mKeyboard.getDisplayWidth();
|
|
|
|
int keyXPos = KeyboardParser.getDimensionOrFraction(keyAttr,
|
|
|
|
R.styleable.Keyboard_Key_keyXPos, keyboardWidth, x);
|
|
|
|
if (keyXPos < 0) {
|
|
|
|
// If keyXPos is negative, the actual x-coordinate will be k + keyXPos.
|
|
|
|
keyXPos += keyboardWidth;
|
|
|
|
if (keyXPos < x) {
|
|
|
|
// keyXPos shouldn't be less than x because drawable area for this key starts
|
|
|
|
// at x. Or, this key will overlaps the adjacent key on its left hand side.
|
|
|
|
keyXPos = x;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (keyWidth == KEYWIDTH_FILL_RIGHT) {
|
|
|
|
// If keyWidth is zero, the actual key width will be determined to fill out the
|
|
|
|
// area up to the right edge of the keyboard.
|
|
|
|
keyWidth = keyboardWidth - keyXPos;
|
|
|
|
} else if (keyWidth <= KEYWIDTH_FILL_BOTH) {
|
|
|
|
// If keyWidth is negative, the actual key width will be determined to fill out the
|
|
|
|
// area between the nearest key on the left hand side and the right edge of the
|
|
|
|
// keyboard.
|
|
|
|
keyXPos = x;
|
|
|
|
keyWidth = keyboardWidth - keyXPos;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Horizontal gap is divided equally to both sides of the key.
|
|
|
|
mX = keyXPos + mGap / 2;
|
|
|
|
mY = y;
|
|
|
|
mWidth = keyWidth - mGap;
|
|
|
|
|
2011-01-06 13:37:39 +00:00
|
|
|
final CharSequence[] popupCharacters = style.getTextArray(keyAttr,
|
2010-12-14 06:31:47 +00:00
|
|
|
R.styleable.Keyboard_Key_popupCharacters);
|
2011-01-06 13:37:39 +00:00
|
|
|
if (res.getBoolean(R.bool.config_digit_popup_characters_enabled)) {
|
|
|
|
mPopupCharacters = popupCharacters;
|
|
|
|
} else {
|
|
|
|
mPopupCharacters = filterOutDigitPopupCharacters(popupCharacters);
|
|
|
|
}
|
2010-12-14 06:31:47 +00:00
|
|
|
mMaxPopupColumn = style.getInt(keyboardAttr,
|
|
|
|
R.styleable.Keyboard_Key_maxPopupKeyboardColumn,
|
|
|
|
mKeyboard.getMaxPopupKeyboardColumn());
|
2010-12-07 02:05:14 +00:00
|
|
|
|
2010-12-14 06:31:47 +00:00
|
|
|
mRepeatable = style.getBoolean(keyAttr, R.styleable.Keyboard_Key_isRepeatable, false);
|
2011-04-07 07:12:00 +00:00
|
|
|
mFunctional = style.getBoolean(keyAttr, R.styleable.Keyboard_Key_isFunctional, false);
|
2010-12-14 06:31:47 +00:00
|
|
|
mSticky = style.getBoolean(keyAttr, R.styleable.Keyboard_Key_isSticky, false);
|
2011-02-18 02:28:17 +00:00
|
|
|
mEnabled = style.getBoolean(keyAttr, R.styleable.Keyboard_Key_enabled, true);
|
2010-12-14 06:31:47 +00:00
|
|
|
mEdgeFlags = style.getFlag(keyAttr, R.styleable.Keyboard_Key_keyEdgeFlags, 0)
|
|
|
|
| row.mRowEdgeFlags;
|
2010-12-02 09:46:21 +00:00
|
|
|
|
2011-06-21 14:38:42 +00:00
|
|
|
final KeyboardIconsSet iconsSet = mKeyboard.mIconsSet;
|
2011-04-11 02:30:15 +00:00
|
|
|
mVisualInsetsLeft = KeyboardParser.getDimensionOrFraction(keyAttr,
|
2011-06-28 07:32:39 +00:00
|
|
|
R.styleable.Keyboard_Key_visualInsetsLeft, keyboardWidth, 0);
|
2011-04-11 02:30:15 +00:00
|
|
|
mVisualInsetsRight = KeyboardParser.getDimensionOrFraction(keyAttr,
|
2011-06-28 07:32:39 +00:00
|
|
|
R.styleable.Keyboard_Key_visualInsetsRight, keyboardWidth, 0);
|
2011-06-21 14:38:42 +00:00
|
|
|
mPreviewIcon = iconsSet.getIcon(style.getInt(
|
|
|
|
keyAttr, R.styleable.Keyboard_Key_keyIconPreview,
|
|
|
|
KeyboardIconsSet.ICON_UNDEFINED));
|
2010-12-14 06:31:47 +00:00
|
|
|
Keyboard.setDefaultBounds(mPreviewIcon);
|
2011-06-21 14:38:42 +00:00
|
|
|
mIcon = iconsSet.getIcon(style.getInt(
|
|
|
|
keyAttr, R.styleable.Keyboard_Key_keyIcon,
|
|
|
|
KeyboardIconsSet.ICON_UNDEFINED));
|
2010-12-14 06:31:47 +00:00
|
|
|
Keyboard.setDefaultBounds(mIcon);
|
2011-06-25 10:38:55 +00:00
|
|
|
mHintLabel = style.getText(keyAttr, R.styleable.Keyboard_Key_keyHintLabel);
|
2010-12-14 06:31:47 +00:00
|
|
|
|
|
|
|
mLabel = style.getText(keyAttr, R.styleable.Keyboard_Key_keyLabel);
|
|
|
|
mLabelOption = style.getFlag(keyAttr, R.styleable.Keyboard_Key_keyLabelOption, 0);
|
|
|
|
mOutputText = style.getText(keyAttr, R.styleable.Keyboard_Key_keyOutputText);
|
|
|
|
// Choose the first letter of the label as primary code if not
|
|
|
|
// specified.
|
2010-12-20 11:30:26 +00:00
|
|
|
final int code = style.getInt(keyAttr, R.styleable.Keyboard_Key_code,
|
|
|
|
Keyboard.CODE_UNSPECIFIED);
|
|
|
|
if (code == Keyboard.CODE_UNSPECIFIED && !TextUtils.isEmpty(mLabel)) {
|
|
|
|
mCode = mLabel.charAt(0);
|
|
|
|
} else if (code != Keyboard.CODE_UNSPECIFIED) {
|
|
|
|
mCode = code;
|
2010-12-14 06:31:47 +00:00
|
|
|
} else {
|
2010-12-20 11:30:26 +00:00
|
|
|
mCode = Keyboard.CODE_DUMMY;
|
2010-12-14 06:31:47 +00:00
|
|
|
}
|
|
|
|
|
2011-06-21 14:38:42 +00:00
|
|
|
final Drawable shiftedIcon = iconsSet.getIcon(style.getInt(
|
|
|
|
keyAttr, R.styleable.Keyboard_Key_keyIconShifted,
|
|
|
|
KeyboardIconsSet.ICON_UNDEFINED));
|
2010-12-14 06:31:47 +00:00
|
|
|
if (shiftedIcon != null)
|
|
|
|
mKeyboard.getShiftedIcons().put(this, shiftedIcon);
|
|
|
|
} finally {
|
|
|
|
keyAttr.recycle();
|
|
|
|
}
|
2010-12-03 04:17:26 +00:00
|
|
|
}
|
|
|
|
|
2011-06-28 07:32:39 +00:00
|
|
|
public CharSequence getCaseAdjustedLabel() {
|
|
|
|
return mKeyboard.adjustLabelCase(mLabel);
|
|
|
|
}
|
|
|
|
|
2011-06-25 10:38:55 +00:00
|
|
|
public Typeface selectTypeface(Typeface defaultTypeface) {
|
|
|
|
// TODO: Handle "bold" here too?
|
|
|
|
if ((mLabelOption & LABEL_OPTION_FONT_NORMAL) != 0) {
|
|
|
|
return Typeface.DEFAULT;
|
|
|
|
} else if ((mLabelOption & LABEL_OPTION_FONT_MONO_SPACE) != 0) {
|
|
|
|
return Typeface.MONOSPACE;
|
|
|
|
} else {
|
|
|
|
return defaultTypeface;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public int selectTextSize(int letter, int largeLetter, int label, int hintLabel) {
|
|
|
|
if (mLabel.length() > 1
|
|
|
|
&& (mLabelOption & (LABEL_OPTION_FOLLOW_KEY_LETTER_RATIO
|
|
|
|
| LABEL_OPTION_FOLLOW_KEY_HINT_LABEL_RATIO)) == 0) {
|
|
|
|
return label;
|
|
|
|
} else if ((mLabelOption & LABEL_OPTION_FOLLOW_KEY_HINT_LABEL_RATIO) != 0) {
|
|
|
|
return hintLabel;
|
|
|
|
} else if ((mLabelOption & LABEL_OPTION_LARGE_LETTER) != 0) {
|
|
|
|
return largeLetter;
|
|
|
|
} else {
|
|
|
|
return letter;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-06-15 03:36:53 +00:00
|
|
|
public boolean hasPopupHint() {
|
2011-06-25 10:38:55 +00:00
|
|
|
return (mLabelOption & LABEL_OPTION_HAS_POPUP_HINT) != 0;
|
2011-06-15 03:36:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasUppercaseLetter() {
|
|
|
|
return (mLabelOption & LABEL_OPTION_HAS_UPPERCASE_LETTER) != 0;
|
|
|
|
}
|
|
|
|
|
2011-06-25 10:38:55 +00:00
|
|
|
public boolean hasHintLabel() {
|
|
|
|
return (mLabelOption & LABEL_OPTION_HAS_HINT_LABEL) != 0;
|
|
|
|
}
|
|
|
|
|
2011-01-06 13:37:39 +00:00
|
|
|
private static boolean isDigitPopupCharacter(CharSequence label) {
|
2011-05-19 05:32:33 +00:00
|
|
|
return label != null && label.length() == 1 && Character.isDigit(label.charAt(0));
|
2011-01-06 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private static CharSequence[] filterOutDigitPopupCharacters(CharSequence[] popupCharacters) {
|
|
|
|
if (popupCharacters == null || popupCharacters.length < 1)
|
|
|
|
return null;
|
|
|
|
if (popupCharacters.length == 1 && isDigitPopupCharacter(
|
|
|
|
PopupCharactersParser.getLabel(popupCharacters[0].toString())))
|
|
|
|
return null;
|
|
|
|
ArrayList<CharSequence> filtered = null;
|
|
|
|
for (int i = 0; i < popupCharacters.length; i++) {
|
|
|
|
final CharSequence popupSpec = popupCharacters[i];
|
|
|
|
if (isDigitPopupCharacter(PopupCharactersParser.getLabel(popupSpec.toString()))) {
|
|
|
|
if (filtered == null) {
|
|
|
|
filtered = new ArrayList<CharSequence>();
|
|
|
|
for (int j = 0; j < i; j++)
|
|
|
|
filtered.add(popupCharacters[j]);
|
|
|
|
}
|
|
|
|
} else if (filtered != null) {
|
|
|
|
filtered.add(popupSpec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (filtered == null)
|
|
|
|
return popupCharacters;
|
|
|
|
if (filtered.size() == 0)
|
|
|
|
return null;
|
|
|
|
return filtered.toArray(new CharSequence[filtered.size()]);
|
|
|
|
}
|
|
|
|
|
2010-12-03 04:17:26 +00:00
|
|
|
public Drawable getIcon() {
|
|
|
|
return mIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Drawable getPreviewIcon() {
|
|
|
|
return mPreviewIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setIcon(Drawable icon) {
|
|
|
|
mIcon = icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setPreviewIcon(Drawable icon) {
|
|
|
|
mPreviewIcon = icon;
|
2010-12-02 09:46:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Informs the key that it has been pressed, in case it needs to change its appearance or
|
|
|
|
* state.
|
2011-04-07 07:12:00 +00:00
|
|
|
* @see #onReleased()
|
2010-12-02 09:46:21 +00:00
|
|
|
*/
|
|
|
|
public void onPressed() {
|
2011-04-07 07:12:00 +00:00
|
|
|
mPressed = true;
|
2010-12-02 09:46:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-04-07 07:12:00 +00:00
|
|
|
* Informs the key that it has been released, in case it needs to change its appearance or
|
|
|
|
* state.
|
2010-12-02 09:46:21 +00:00
|
|
|
* @see #onPressed()
|
|
|
|
*/
|
2011-04-07 07:12:00 +00:00
|
|
|
public void onReleased() {
|
|
|
|
mPressed = false;
|
2010-12-02 09:46:21 +00:00
|
|
|
}
|
|
|
|
|
2011-06-23 12:23:44 +00:00
|
|
|
public void setHighlightOn(boolean highlightOn) {
|
|
|
|
mHighlightOn = highlightOn;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isEnabled() {
|
|
|
|
return mEnabled;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setEnabled(boolean enabled) {
|
|
|
|
mEnabled = enabled;
|
|
|
|
}
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
/**
|
2010-12-03 00:39:42 +00:00
|
|
|
* Detects if a point falls on this key.
|
2010-12-02 09:46:21 +00:00
|
|
|
* @param x the x-coordinate of the point
|
|
|
|
* @param y the y-coordinate of the point
|
2010-12-03 00:39:42 +00:00
|
|
|
* @return whether or not the point falls on the key. If the key is attached to an edge, it will
|
|
|
|
* assume that all points between the key and the edge are considered to be on the key.
|
2010-12-02 09:46:21 +00:00
|
|
|
*/
|
2010-12-03 00:39:42 +00:00
|
|
|
public boolean isOnKey(int x, int y) {
|
|
|
|
final int flags = mEdgeFlags;
|
|
|
|
final boolean leftEdge = (flags & Keyboard.EDGE_LEFT) != 0;
|
|
|
|
final boolean rightEdge = (flags & Keyboard.EDGE_RIGHT) != 0;
|
|
|
|
final boolean topEdge = (flags & Keyboard.EDGE_TOP) != 0;
|
|
|
|
final boolean bottomEdge = (flags & Keyboard.EDGE_BOTTOM) != 0;
|
2011-04-28 14:39:49 +00:00
|
|
|
final int left = mX - mGap / 2;
|
|
|
|
final int right = left + mWidth + mGap;
|
|
|
|
final int top = mY;
|
|
|
|
final int bottom = top + mHeight + mKeyboard.getVerticalGap();
|
|
|
|
// In order to mitigate rounding errors, we use (left <= x <= right) here.
|
|
|
|
return (x >= left || leftEdge) && (x <= right || rightEdge)
|
|
|
|
&& (y >= top || topEdge) && (y <= bottom || bottomEdge);
|
2010-12-02 09:46:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the square of the distance to the nearest edge of the key and the given point.
|
|
|
|
* @param x the x-coordinate of the point
|
|
|
|
* @param y the y-coordinate of the point
|
|
|
|
* @return the square of the distance of the point from the nearest edge of the key
|
|
|
|
*/
|
|
|
|
public int squaredDistanceToEdge(int x, int y) {
|
2011-04-28 14:39:49 +00:00
|
|
|
final int left = mX;
|
|
|
|
final int right = left + mWidth;
|
|
|
|
final int top = mY;
|
|
|
|
final int bottom = top + mHeight;
|
2010-12-02 09:46:21 +00:00
|
|
|
final int edgeX = x < left ? left : (x > right ? right : x);
|
|
|
|
final int edgeY = y < top ? top : (y > bottom ? bottom : y);
|
|
|
|
final int dx = x - edgeX;
|
|
|
|
final int dy = y - edgeY;
|
|
|
|
return dx * dx + dy * dy;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the drawable state for the key, based on the current state and type of the key.
|
|
|
|
* @return the drawable state of the key.
|
|
|
|
* @see android.graphics.drawable.StateListDrawable#setState(int[])
|
|
|
|
*/
|
|
|
|
public int[] getCurrentDrawableState() {
|
2011-04-08 08:14:12 +00:00
|
|
|
final boolean pressed = mPressed;
|
2011-04-07 07:12:00 +00:00
|
|
|
if (!mSticky && mFunctional) {
|
2011-01-25 03:13:35 +00:00
|
|
|
if (pressed) {
|
2010-12-02 11:54:32 +00:00
|
|
|
return KEY_STATE_FUNCTIONAL_PRESSED;
|
|
|
|
} else {
|
|
|
|
return KEY_STATE_FUNCTIONAL_NORMAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
int[] states = KEY_STATE_NORMAL;
|
|
|
|
|
2011-04-07 07:12:00 +00:00
|
|
|
if (mHighlightOn) {
|
2011-01-25 03:13:35 +00:00
|
|
|
if (pressed) {
|
2010-12-02 09:46:21 +00:00
|
|
|
states = KEY_STATE_PRESSED_ON;
|
|
|
|
} else {
|
|
|
|
states = KEY_STATE_NORMAL_ON;
|
|
|
|
}
|
|
|
|
} else {
|
2010-12-02 11:54:32 +00:00
|
|
|
if (mSticky) {
|
2011-01-25 03:13:35 +00:00
|
|
|
if (pressed) {
|
2010-12-02 09:46:21 +00:00
|
|
|
states = KEY_STATE_PRESSED_OFF;
|
|
|
|
} else {
|
|
|
|
states = KEY_STATE_NORMAL_OFF;
|
|
|
|
}
|
|
|
|
} else {
|
2011-01-25 03:13:35 +00:00
|
|
|
if (pressed) {
|
2010-12-02 09:46:21 +00:00
|
|
|
states = KEY_STATE_PRESSED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return states;
|
|
|
|
}
|
|
|
|
}
|