2009-03-13 22:11:42 +00:00
|
|
|
/*
|
2010-03-26 22:07:10 +00:00
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
2010-12-02 09:46:21 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +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
|
2010-12-02 09:46:21 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2010-12-02 09:46:21 +00:00
|
|
|
*
|
2009-03-13 22:11:42 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
package com.android.inputmethod.keyboard;
|
|
|
|
|
|
|
|
import com.android.inputmethod.latin.R;
|
|
|
|
import com.android.inputmethod.latin.SubtypeSwitcher;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.res.Resources;
|
2010-01-30 04:09:49 +00:00
|
|
|
import android.content.res.TypedArray;
|
2009-10-12 20:48:35 +00:00
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.Canvas;
|
|
|
|
import android.graphics.Paint;
|
2010-09-06 05:50:50 +00:00
|
|
|
import android.graphics.Paint.Align;
|
2009-10-12 20:48:35 +00:00
|
|
|
import android.graphics.PorterDuff;
|
2010-01-30 04:09:49 +00:00
|
|
|
import android.graphics.Rect;
|
2009-10-12 20:48:35 +00:00
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
2009-03-13 22:11:42 +00:00
|
|
|
import android.graphics.drawable.Drawable;
|
2010-02-05 22:07:04 +00:00
|
|
|
import android.util.Log;
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2010-09-06 05:50:50 +00:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.Locale;
|
|
|
|
|
2010-12-02 11:54:32 +00:00
|
|
|
// TODO: We should remove this class
|
2010-12-02 09:46:21 +00:00
|
|
|
public class LatinKeyboard extends Keyboard {
|
2009-03-13 22:11:42 +00:00
|
|
|
|
2010-02-05 22:07:04 +00:00
|
|
|
private static final boolean DEBUG_PREFERRED_LETTER = false;
|
|
|
|
private static final String TAG = "LatinKeyboard";
|
2010-12-02 09:46:21 +00:00
|
|
|
|
2010-12-02 11:54:32 +00:00
|
|
|
public static final int OPACITY_FULLY_OPAQUE = 255;
|
2010-09-03 10:05:23 +00:00
|
|
|
private static final int SPACE_LED_LENGTH_PERCENT = 80;
|
2010-02-05 22:07:04 +00:00
|
|
|
|
2010-12-14 06:31:47 +00:00
|
|
|
private final Drawable mSpaceAutoCorrectionIndicator;
|
2010-09-21 13:53:12 +00:00
|
|
|
private final Drawable mButtonArrowLeftIcon;
|
|
|
|
private final Drawable mButtonArrowRightIcon;
|
2010-11-22 00:40:38 +00:00
|
|
|
private final int mSpaceBarTextShadowColor;
|
2011-01-11 10:02:21 +00:00
|
|
|
private final int[] mSpaceKeyIndexArray;
|
2010-01-30 04:09:49 +00:00
|
|
|
private int mSpaceDragStartX;
|
|
|
|
private int mSpaceDragLastDiff;
|
2010-09-21 13:53:12 +00:00
|
|
|
private final Context mContext;
|
2010-01-30 04:09:49 +00:00
|
|
|
private boolean mCurrentlyInSpace;
|
|
|
|
private SlidingLocaleDrawable mSlidingLocaleIcon;
|
2010-02-05 22:07:04 +00:00
|
|
|
private int[] mPrefLetterFrequencies;
|
|
|
|
private int mPrefLetter;
|
|
|
|
private int mPrefLetterX;
|
|
|
|
private int mPrefLetterY;
|
|
|
|
private int mPrefDistance;
|
2009-10-22 21:51:39 +00:00
|
|
|
|
2010-01-30 04:09:49 +00:00
|
|
|
private static final float SPACEBAR_DRAG_THRESHOLD = 0.8f;
|
2010-02-05 22:07:04 +00:00
|
|
|
private static final float OVERLAP_PERCENTAGE_LOW_PROB = 0.70f;
|
|
|
|
private static final float OVERLAP_PERCENTAGE_HIGH_PROB = 0.85f;
|
2010-09-17 11:25:13 +00:00
|
|
|
// Minimum width of space key preview (proportional to keyboard width)
|
|
|
|
private static final float SPACEBAR_POPUP_MIN_RATIO = 0.4f;
|
|
|
|
// Height in space key the language name will be drawn. (proportional to space key height)
|
2010-12-02 09:46:21 +00:00
|
|
|
public static final float SPACEBAR_LANGUAGE_BASELINE = 0.6f;
|
2010-09-17 11:25:13 +00:00
|
|
|
// If the full language name needs to be smaller than this value to be drawn on space key,
|
|
|
|
// its short language name will be used instead.
|
|
|
|
private static final float MINIMUM_SCALE_OF_LANGUAGE_NAME = 0.8f;
|
2010-01-30 04:09:49 +00:00
|
|
|
|
2010-09-21 13:53:12 +00:00
|
|
|
private static int sSpacebarVerticalCorrection;
|
2009-08-21 01:35:30 +00:00
|
|
|
|
2010-12-16 07:52:00 +00:00
|
|
|
private static final String SMALL_TEXT_SIZE_OF_LANGUAGE_ON_SPACEBAR = "small";
|
|
|
|
private static final String MEDIUM_TEXT_SIZE_OF_LANGUAGE_ON_SPACEBAR = "medium";
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
public LatinKeyboard(Context context, KeyboardId id) {
|
2010-12-14 06:31:47 +00:00
|
|
|
super(context, id.getXmlId(), id);
|
2009-10-12 20:48:35 +00:00
|
|
|
final Resources res = context.getResources();
|
2010-01-30 04:09:49 +00:00
|
|
|
mContext = context;
|
2010-12-02 09:46:21 +00:00
|
|
|
if (id.mColorScheme == KeyboardView.COLOR_SCHEME_BLACK) {
|
2010-11-22 00:40:38 +00:00
|
|
|
mSpaceBarTextShadowColor = res.getColor(
|
|
|
|
R.color.latinkeyboard_bar_language_shadow_black);
|
2010-12-02 09:46:21 +00:00
|
|
|
} else { // default color scheme is KeyboardView.COLOR_SCHEME_WHITE
|
2010-11-22 00:40:38 +00:00
|
|
|
mSpaceBarTextShadowColor = res.getColor(
|
|
|
|
R.color.latinkeyboard_bar_language_shadow_white);
|
|
|
|
}
|
2010-12-11 08:06:24 +00:00
|
|
|
mSpaceAutoCorrectionIndicator = res.getDrawable(R.drawable.sym_keyboard_space_led);
|
2010-01-30 04:09:49 +00:00
|
|
|
mButtonArrowLeftIcon = res.getDrawable(R.drawable.sym_keyboard_language_arrows_left);
|
|
|
|
mButtonArrowRightIcon = res.getDrawable(R.drawable.sym_keyboard_language_arrows_right);
|
2009-08-21 01:35:30 +00:00
|
|
|
sSpacebarVerticalCorrection = res.getDimensionPixelOffset(
|
|
|
|
R.dimen.spacebar_vertical_correction);
|
2011-01-11 10:02:21 +00:00
|
|
|
// The index of space key is available only after Keyboard constructor has finished.
|
|
|
|
mSpaceKeyIndexArray = new int[] { indexOf(CODE_SPACE) };
|
2010-09-28 00:45:45 +00:00
|
|
|
}
|
|
|
|
|
2010-09-02 13:54:37 +00:00
|
|
|
/**
|
|
|
|
* @return a key which should be invalidated.
|
|
|
|
*/
|
2010-12-11 08:06:24 +00:00
|
|
|
public Key onAutoCorrectionStateChanged(boolean isAutoCorrection) {
|
|
|
|
updateSpaceBarForLocale(isAutoCorrection);
|
2010-09-02 13:54:37 +00:00
|
|
|
return mSpaceKey;
|
|
|
|
}
|
|
|
|
|
2010-12-11 08:06:24 +00:00
|
|
|
private void updateSpaceBarForLocale(boolean isAutoCorrection) {
|
2010-12-14 06:31:47 +00:00
|
|
|
final Resources res = mContext.getResources();
|
2010-09-03 10:05:23 +00:00
|
|
|
// If application locales are explicitly selected.
|
2010-11-17 22:58:14 +00:00
|
|
|
if (SubtypeSwitcher.getInstance().needsToDisplayLanguage()) {
|
2010-12-03 04:17:26 +00:00
|
|
|
mSpaceKey.setIcon(new BitmapDrawable(res,
|
2010-12-11 08:06:24 +00:00
|
|
|
drawSpaceBar(OPACITY_FULLY_OPAQUE, isAutoCorrection)));
|
2009-10-12 20:48:35 +00:00
|
|
|
} else {
|
2010-09-02 13:54:37 +00:00
|
|
|
// sym_keyboard_space_led can be shared with Black and White symbol themes.
|
2010-12-11 08:06:24 +00:00
|
|
|
if (isAutoCorrection) {
|
2010-12-03 04:17:26 +00:00
|
|
|
mSpaceKey.setIcon(new BitmapDrawable(res,
|
2010-12-11 08:06:24 +00:00
|
|
|
drawSpaceBar(OPACITY_FULLY_OPAQUE, isAutoCorrection)));
|
2010-09-03 10:05:23 +00:00
|
|
|
} else {
|
2010-12-03 04:17:26 +00:00
|
|
|
mSpaceKey.setIcon(mSpaceIcon);
|
2010-09-03 10:05:23 +00:00
|
|
|
}
|
2009-10-12 20:48:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-17 11:25:13 +00:00
|
|
|
// Compute width of text with specified text size using paint.
|
|
|
|
private static int getTextWidth(Paint paint, String text, float textSize, Rect bounds) {
|
|
|
|
paint.setTextSize(textSize);
|
|
|
|
paint.getTextBounds(text, 0, text.length(), bounds);
|
|
|
|
return bounds.width();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Layout local language name and left and right arrow on space bar.
|
|
|
|
private static String layoutSpaceBar(Paint paint, Locale locale, Drawable lArrow,
|
|
|
|
Drawable rArrow, int width, int height, float origTextSize,
|
|
|
|
boolean allowVariableTextSize) {
|
|
|
|
final float arrowWidth = lArrow.getIntrinsicWidth();
|
|
|
|
final float arrowHeight = lArrow.getIntrinsicHeight();
|
|
|
|
final float maxTextWidth = width - (arrowWidth + arrowWidth);
|
|
|
|
final Rect bounds = new Rect();
|
|
|
|
|
|
|
|
// Estimate appropriate language name text size to fit in maxTextWidth.
|
2010-11-18 00:55:23 +00:00
|
|
|
String language = SubtypeSwitcher.getDisplayLanguage(locale);
|
2010-09-17 11:25:13 +00:00
|
|
|
int textWidth = getTextWidth(paint, language, origTextSize, bounds);
|
|
|
|
// Assuming text width and text size are proportional to each other.
|
|
|
|
float textSize = origTextSize * Math.min(maxTextWidth / textWidth, 1.0f);
|
|
|
|
|
|
|
|
final boolean useShortName;
|
|
|
|
if (allowVariableTextSize) {
|
|
|
|
textWidth = getTextWidth(paint, language, textSize, bounds);
|
|
|
|
// If text size goes too small or text does not fit, use short name
|
|
|
|
useShortName = textSize / origTextSize < MINIMUM_SCALE_OF_LANGUAGE_NAME
|
|
|
|
|| textWidth > maxTextWidth;
|
|
|
|
} else {
|
|
|
|
useShortName = textWidth > maxTextWidth;
|
|
|
|
textSize = origTextSize;
|
|
|
|
}
|
|
|
|
if (useShortName) {
|
2010-11-18 00:55:23 +00:00
|
|
|
language = SubtypeSwitcher.getShortDisplayLanguage(locale);
|
2010-09-17 11:25:13 +00:00
|
|
|
textWidth = getTextWidth(paint, language, origTextSize, bounds);
|
|
|
|
textSize = origTextSize * Math.min(maxTextWidth / textWidth, 1.0f);
|
|
|
|
}
|
|
|
|
paint.setTextSize(textSize);
|
|
|
|
|
|
|
|
// Place left and right arrow just before and after language text.
|
|
|
|
final float baseline = height * SPACEBAR_LANGUAGE_BASELINE;
|
|
|
|
final int top = (int)(baseline - arrowHeight);
|
|
|
|
final float remains = (width - textWidth) / 2;
|
|
|
|
lArrow.setBounds((int)(remains - arrowWidth), top, (int)remains, (int)baseline);
|
|
|
|
rArrow.setBounds((int)(remains + textWidth), top, (int)(remains + textWidth + arrowWidth),
|
|
|
|
(int)baseline);
|
|
|
|
|
|
|
|
return language;
|
|
|
|
}
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
@SuppressWarnings("unused")
|
2010-12-11 08:06:24 +00:00
|
|
|
private Bitmap drawSpaceBar(int opacity, boolean isAutoCorrection) {
|
2010-12-02 11:54:32 +00:00
|
|
|
final int width = mSpaceKey.mWidth;
|
2011-01-07 12:08:34 +00:00
|
|
|
final int height = mSpaceIcon != null ? mSpaceIcon.getIntrinsicHeight() : mSpaceKey.mHeight;
|
2010-09-17 11:25:13 +00:00
|
|
|
final Bitmap buffer = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
|
|
|
|
final Canvas canvas = new Canvas(buffer);
|
2010-12-14 06:31:47 +00:00
|
|
|
final Resources res = mContext.getResources();
|
2010-10-22 13:18:40 +00:00
|
|
|
canvas.drawColor(res.getColor(R.color.latinkeyboard_transparent), PorterDuff.Mode.CLEAR);
|
2010-09-17 11:25:13 +00:00
|
|
|
|
2010-11-17 22:58:14 +00:00
|
|
|
SubtypeSwitcher subtypeSwitcher = SubtypeSwitcher.getInstance();
|
2010-09-03 10:05:23 +00:00
|
|
|
// If application locales are explicitly selected.
|
2010-11-17 22:58:14 +00:00
|
|
|
if (subtypeSwitcher.needsToDisplayLanguage()) {
|
2010-09-17 11:25:13 +00:00
|
|
|
final Paint paint = new Paint();
|
2010-09-03 10:05:23 +00:00
|
|
|
paint.setAlpha(opacity);
|
2010-09-17 11:25:13 +00:00
|
|
|
paint.setAntiAlias(true);
|
2010-09-03 10:05:23 +00:00
|
|
|
paint.setTextAlign(Align.CENTER);
|
2010-08-20 05:35:02 +00:00
|
|
|
|
2010-12-16 07:52:00 +00:00
|
|
|
final String textSizeOfLanguageOnSpacebar = res.getString(
|
|
|
|
R.string.config_text_size_of_language_on_spacebar,
|
|
|
|
SMALL_TEXT_SIZE_OF_LANGUAGE_ON_SPACEBAR);
|
|
|
|
final int textStyle;
|
|
|
|
final int defaultTextSize;
|
|
|
|
if (MEDIUM_TEXT_SIZE_OF_LANGUAGE_ON_SPACEBAR.equals(textSizeOfLanguageOnSpacebar)) {
|
|
|
|
textStyle = android.R.style.TextAppearance_Medium;
|
|
|
|
defaultTextSize = 18;
|
|
|
|
} else {
|
|
|
|
textStyle = android.R.style.TextAppearance_Small;
|
|
|
|
defaultTextSize = 14;
|
|
|
|
}
|
|
|
|
|
2010-09-17 11:25:13 +00:00
|
|
|
final boolean allowVariableTextSize = true;
|
2010-11-17 22:58:14 +00:00
|
|
|
final String language = layoutSpaceBar(paint, subtypeSwitcher.getInputLocale(),
|
2010-09-17 11:25:13 +00:00
|
|
|
mButtonArrowLeftIcon, mButtonArrowRightIcon, width, height,
|
2010-12-16 07:52:00 +00:00
|
|
|
getTextSizeFromTheme(textStyle, defaultTextSize),
|
2010-09-17 11:25:13 +00:00
|
|
|
allowVariableTextSize);
|
|
|
|
|
|
|
|
// Draw language text with shadow
|
|
|
|
final float baseline = height * SPACEBAR_LANGUAGE_BASELINE;
|
|
|
|
final float descent = paint.descent();
|
2010-11-22 00:40:38 +00:00
|
|
|
paint.setColor(mSpaceBarTextShadowColor);
|
2010-09-17 11:25:13 +00:00
|
|
|
canvas.drawText(language, width / 2, baseline - descent - 1, paint);
|
2010-10-22 13:18:40 +00:00
|
|
|
paint.setColor(res.getColor(R.color.latinkeyboard_bar_language_text));
|
2010-09-17 11:25:13 +00:00
|
|
|
canvas.drawText(language, width / 2, baseline - descent, paint);
|
|
|
|
|
|
|
|
// Put arrows that are already layed out on either side of the text
|
2010-11-17 22:58:14 +00:00
|
|
|
if (SubtypeSwitcher.USE_SPACEBAR_LANGUAGE_SWITCHER
|
|
|
|
&& subtypeSwitcher.getEnabledKeyboardLocaleCount() > 1) {
|
2010-09-17 11:25:13 +00:00
|
|
|
mButtonArrowLeftIcon.draw(canvas);
|
|
|
|
mButtonArrowRightIcon.draw(canvas);
|
2010-09-03 10:05:23 +00:00
|
|
|
}
|
2010-02-06 00:24:40 +00:00
|
|
|
}
|
2010-09-17 11:25:13 +00:00
|
|
|
|
2010-02-06 00:24:40 +00:00
|
|
|
// Draw the spacebar icon at the bottom
|
2010-12-11 08:06:24 +00:00
|
|
|
if (isAutoCorrection) {
|
2010-09-03 10:05:23 +00:00
|
|
|
final int iconWidth = width * SPACE_LED_LENGTH_PERCENT / 100;
|
2010-12-11 08:06:24 +00:00
|
|
|
final int iconHeight = mSpaceAutoCorrectionIndicator.getIntrinsicHeight();
|
2010-09-02 13:54:37 +00:00
|
|
|
int x = (width - iconWidth) / 2;
|
|
|
|
int y = height - iconHeight;
|
2010-12-11 08:06:24 +00:00
|
|
|
mSpaceAutoCorrectionIndicator.setBounds(x, y, x + iconWidth, y + iconHeight);
|
|
|
|
mSpaceAutoCorrectionIndicator.draw(canvas);
|
2011-01-07 12:08:34 +00:00
|
|
|
} else if (mSpaceIcon != null) {
|
2010-09-02 13:54:37 +00:00
|
|
|
final int iconWidth = mSpaceIcon.getIntrinsicWidth();
|
|
|
|
final int iconHeight = mSpaceIcon.getIntrinsicHeight();
|
|
|
|
int x = (width - iconWidth) / 2;
|
|
|
|
int y = height - iconHeight;
|
|
|
|
mSpaceIcon.setBounds(x, y, x + iconWidth, y + iconHeight);
|
|
|
|
mSpaceIcon.draw(canvas);
|
|
|
|
}
|
|
|
|
return buffer;
|
2010-02-06 00:24:40 +00:00
|
|
|
}
|
|
|
|
|
2010-01-30 04:09:49 +00:00
|
|
|
private void updateLocaleDrag(int diff) {
|
|
|
|
if (mSlidingLocaleIcon == null) {
|
2010-12-02 11:54:32 +00:00
|
|
|
final int width = Math.max(mSpaceKey.mWidth,
|
2010-09-17 11:25:13 +00:00
|
|
|
(int)(getMinWidth() * SPACEBAR_POPUP_MIN_RATIO));
|
|
|
|
final int height = mSpacePreviewIcon.getIntrinsicHeight();
|
2010-12-02 09:46:21 +00:00
|
|
|
mSlidingLocaleIcon =
|
|
|
|
new SlidingLocaleDrawable(mContext, mSpacePreviewIcon, width, height);
|
2010-09-17 11:25:13 +00:00
|
|
|
mSlidingLocaleIcon.setBounds(0, 0, width, height);
|
2010-12-03 04:17:26 +00:00
|
|
|
mSpaceKey.setPreviewIcon(mSlidingLocaleIcon);
|
2010-01-30 04:09:49 +00:00
|
|
|
}
|
|
|
|
mSlidingLocaleIcon.setDiff(diff);
|
|
|
|
if (Math.abs(diff) == Integer.MAX_VALUE) {
|
2010-12-03 04:17:26 +00:00
|
|
|
mSpaceKey.setPreviewIcon(mSpacePreviewIcon);
|
2010-01-30 04:09:49 +00:00
|
|
|
} else {
|
2010-12-03 04:17:26 +00:00
|
|
|
mSpaceKey.setPreviewIcon(mSlidingLocaleIcon);
|
2010-01-30 04:09:49 +00:00
|
|
|
}
|
2010-12-03 04:17:26 +00:00
|
|
|
mSpaceKey.getPreviewIcon().invalidateSelf();
|
2010-01-30 04:09:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getLanguageChangeDirection() {
|
2010-11-17 22:58:14 +00:00
|
|
|
if (mSpaceKey == null || SubtypeSwitcher.getInstance().getEnabledKeyboardLocaleCount() <= 1
|
2010-12-02 11:54:32 +00:00
|
|
|
|| Math.abs(mSpaceDragLastDiff) < mSpaceKey.mWidth * SPACEBAR_DRAG_THRESHOLD) {
|
2010-01-30 04:09:49 +00:00
|
|
|
return 0; // No change
|
|
|
|
}
|
|
|
|
return mSpaceDragLastDiff > 0 ? 1 : -1;
|
|
|
|
}
|
|
|
|
|
2010-10-17 11:46:01 +00:00
|
|
|
public void setPreferredLetters(int[] frequencies) {
|
2010-02-05 22:07:04 +00:00
|
|
|
mPrefLetterFrequencies = frequencies;
|
|
|
|
mPrefLetter = 0;
|
|
|
|
}
|
|
|
|
|
2010-10-17 11:46:01 +00:00
|
|
|
public void keyReleased() {
|
2010-01-30 04:09:49 +00:00
|
|
|
mCurrentlyInSpace = false;
|
|
|
|
mSpaceDragLastDiff = 0;
|
2010-02-05 22:07:04 +00:00
|
|
|
mPrefLetter = 0;
|
|
|
|
mPrefLetterX = 0;
|
|
|
|
mPrefLetterY = 0;
|
|
|
|
mPrefDistance = Integer.MAX_VALUE;
|
2010-01-30 04:09:49 +00:00
|
|
|
if (mSpaceKey != null) {
|
|
|
|
updateLocaleDrag(Integer.MAX_VALUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Does the magic of locking the touch gesture into the spacebar when
|
|
|
|
* switching input languages.
|
|
|
|
*/
|
2010-12-03 00:39:42 +00:00
|
|
|
@Override
|
|
|
|
@SuppressWarnings("unused") // SubtypeSwitcher.USE_SPACEBAR_LANGUAGE_SWITCHER is constant
|
2010-12-10 06:24:28 +00:00
|
|
|
public boolean isInside(Key key, int pointX, int pointY) {
|
|
|
|
int x = pointX;
|
|
|
|
int y = pointY;
|
2010-12-20 11:30:26 +00:00
|
|
|
final int code = key.mCode;
|
2010-12-02 11:54:32 +00:00
|
|
|
if (code == CODE_SHIFT || code == CODE_DELETE) {
|
|
|
|
y -= key.mHeight / 10;
|
|
|
|
if (code == CODE_SHIFT) x += key.mWidth / 6;
|
|
|
|
if (code == CODE_DELETE) x -= key.mWidth / 6;
|
|
|
|
} else if (code == CODE_SPACE) {
|
2010-01-30 04:09:49 +00:00
|
|
|
y += LatinKeyboard.sSpacebarVerticalCorrection;
|
2010-11-17 22:58:14 +00:00
|
|
|
if (SubtypeSwitcher.USE_SPACEBAR_LANGUAGE_SWITCHER
|
|
|
|
&& SubtypeSwitcher.getInstance().getEnabledKeyboardLocaleCount() > 1) {
|
2010-01-30 04:09:49 +00:00
|
|
|
if (mCurrentlyInSpace) {
|
|
|
|
int diff = x - mSpaceDragStartX;
|
|
|
|
if (Math.abs(diff - mSpaceDragLastDiff) > 0) {
|
|
|
|
updateLocaleDrag(diff);
|
|
|
|
}
|
|
|
|
mSpaceDragLastDiff = diff;
|
|
|
|
return true;
|
|
|
|
} else {
|
2010-12-03 00:39:42 +00:00
|
|
|
boolean isOnSpace = key.isOnKey(x, y);
|
|
|
|
if (isOnSpace) {
|
2010-01-30 04:09:49 +00:00
|
|
|
mCurrentlyInSpace = true;
|
|
|
|
mSpaceDragStartX = x;
|
|
|
|
updateLocaleDrag(0);
|
|
|
|
}
|
2010-12-03 00:39:42 +00:00
|
|
|
return isOnSpace;
|
2010-01-30 04:09:49 +00:00
|
|
|
}
|
|
|
|
}
|
2010-02-05 22:07:04 +00:00
|
|
|
} else if (mPrefLetterFrequencies != null) {
|
|
|
|
// New coordinate? Reset
|
|
|
|
if (mPrefLetterX != x || mPrefLetterY != y) {
|
|
|
|
mPrefLetter = 0;
|
|
|
|
mPrefDistance = Integer.MAX_VALUE;
|
|
|
|
}
|
|
|
|
// Handle preferred next letter
|
|
|
|
final int[] pref = mPrefLetterFrequencies;
|
|
|
|
if (mPrefLetter > 0) {
|
2010-08-20 05:35:02 +00:00
|
|
|
if (DEBUG_PREFERRED_LETTER) {
|
2010-12-03 00:39:42 +00:00
|
|
|
if (mPrefLetter == code && !key.isOnKey(x, y)) {
|
2010-08-20 05:35:02 +00:00
|
|
|
Log.d(TAG, "CORRECTED !!!!!!");
|
|
|
|
}
|
2010-02-05 22:07:04 +00:00
|
|
|
}
|
|
|
|
return mPrefLetter == code;
|
|
|
|
} else {
|
2010-12-03 00:39:42 +00:00
|
|
|
final boolean isOnKey = key.isOnKey(x, y);
|
2010-02-05 22:07:04 +00:00
|
|
|
int[] nearby = getNearestKeys(x, y);
|
|
|
|
List<Key> nearbyKeys = getKeys();
|
2010-12-03 00:39:42 +00:00
|
|
|
if (isOnKey) {
|
2010-02-05 22:07:04 +00:00
|
|
|
// If it's a preferred letter
|
|
|
|
if (inPrefList(code, pref)) {
|
|
|
|
// Check if its frequency is much lower than a nearby key
|
|
|
|
mPrefLetter = code;
|
|
|
|
mPrefLetterX = x;
|
|
|
|
mPrefLetterY = y;
|
|
|
|
for (int i = 0; i < nearby.length; i++) {
|
|
|
|
Key k = nearbyKeys.get(nearby[i]);
|
2010-12-20 11:30:26 +00:00
|
|
|
if (k != key && inPrefList(k.mCode, pref)) {
|
2010-02-05 22:07:04 +00:00
|
|
|
final int dist = distanceFrom(k, x, y);
|
2010-12-02 11:54:32 +00:00
|
|
|
if (dist < (int) (k.mWidth * OVERLAP_PERCENTAGE_LOW_PROB) &&
|
2010-12-20 11:30:26 +00:00
|
|
|
(pref[k.mCode] > pref[mPrefLetter] * 3)) {
|
|
|
|
mPrefLetter = k.mCode;
|
2010-02-05 22:07:04 +00:00
|
|
|
mPrefDistance = dist;
|
|
|
|
if (DEBUG_PREFERRED_LETTER) {
|
|
|
|
Log.d(TAG, "CORRECTED ALTHOUGH PREFERRED !!!!!!");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mPrefLetter == code;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the surrounding keys and intersect with the preferred list
|
|
|
|
// For all in the intersection
|
|
|
|
// if distance from touch point is within a reasonable distance
|
|
|
|
// make this the pref letter
|
|
|
|
// If no pref letter
|
|
|
|
// return inside;
|
|
|
|
// else return thiskey == prefletter;
|
|
|
|
|
|
|
|
for (int i = 0; i < nearby.length; i++) {
|
|
|
|
Key k = nearbyKeys.get(nearby[i]);
|
2010-12-20 11:30:26 +00:00
|
|
|
if (inPrefList(k.mCode, pref)) {
|
2010-02-05 22:07:04 +00:00
|
|
|
final int dist = distanceFrom(k, x, y);
|
2010-12-02 11:54:32 +00:00
|
|
|
if (dist < (int) (k.mWidth * OVERLAP_PERCENTAGE_HIGH_PROB)
|
2010-02-05 22:07:04 +00:00
|
|
|
&& dist < mPrefDistance) {
|
2010-12-20 11:30:26 +00:00
|
|
|
mPrefLetter = k.mCode;
|
2010-02-05 22:07:04 +00:00
|
|
|
mPrefLetterX = x;
|
|
|
|
mPrefLetterY = y;
|
|
|
|
mPrefDistance = dist;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Didn't find any
|
|
|
|
if (mPrefLetter == 0) {
|
2010-12-03 00:39:42 +00:00
|
|
|
return isOnKey;
|
2010-02-05 22:07:04 +00:00
|
|
|
} else {
|
|
|
|
return mPrefLetter == code;
|
|
|
|
}
|
|
|
|
}
|
2010-01-30 04:09:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Lock into the spacebar
|
|
|
|
if (mCurrentlyInSpace) return false;
|
|
|
|
|
2010-12-03 00:39:42 +00:00
|
|
|
return key.isOnKey(x, y);
|
2010-01-30 04:09:49 +00:00
|
|
|
}
|
|
|
|
|
2010-02-05 22:07:04 +00:00
|
|
|
private boolean inPrefList(int code, int[] pref) {
|
|
|
|
if (code < pref.length && code >= 0) return pref[code] > 0;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
private int distanceFrom(Key k, int x, int y) {
|
2010-12-02 11:54:32 +00:00
|
|
|
if (y > k.mY && y < k.mY + k.mHeight) {
|
|
|
|
return Math.abs(k.mX + k.mWidth / 2 - x);
|
2010-02-05 22:07:04 +00:00
|
|
|
} else {
|
|
|
|
return Integer.MAX_VALUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-30 04:09:49 +00:00
|
|
|
@Override
|
|
|
|
public int[] getNearestKeys(int x, int y) {
|
|
|
|
if (mCurrentlyInSpace) {
|
2011-01-11 10:02:21 +00:00
|
|
|
return mSpaceKeyIndexArray;
|
2010-01-30 04:09:49 +00:00
|
|
|
} else {
|
2010-10-29 09:59:37 +00:00
|
|
|
// Avoid dead pixels at edges of the keyboard
|
|
|
|
return super.getNearestKeys(Math.max(0, Math.min(x, getMinWidth() - 1)),
|
|
|
|
Math.max(0, Math.min(y, getHeight() - 1)));
|
2010-01-30 04:09:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private int indexOf(int code) {
|
|
|
|
List<Key> keys = getKeys();
|
|
|
|
int count = keys.size();
|
|
|
|
for (int i = 0; i < count; i++) {
|
2010-12-20 11:30:26 +00:00
|
|
|
if (keys.get(i).mCode == code) return i;
|
2010-01-30 04:09:49 +00:00
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
private int getTextSizeFromTheme(int style, int defValue) {
|
|
|
|
TypedArray array = mContext.getTheme().obtainStyledAttributes(
|
|
|
|
style, new int[] { android.R.attr.textSize });
|
|
|
|
int textSize = array.getDimensionPixelSize(array.getResourceId(0, 0), defValue);
|
|
|
|
return textSize;
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|