2009-03-13 22:11:42 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008-2009 Google Inc.
|
|
|
|
*
|
|
|
|
* 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.latin;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.res.Resources;
|
|
|
|
import android.content.res.XmlResourceParser;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import android.inputmethodservice.Keyboard;
|
|
|
|
import android.view.inputmethod.EditorInfo;
|
|
|
|
|
|
|
|
public class LatinKeyboard extends Keyboard {
|
|
|
|
|
|
|
|
private Drawable mShiftLockIcon;
|
|
|
|
private Drawable mShiftLockPreviewIcon;
|
|
|
|
private Drawable mOldShiftIcon;
|
|
|
|
private Drawable mOldShiftPreviewIcon;
|
|
|
|
private Key mShiftKey;
|
|
|
|
private Key mEnterKey;
|
|
|
|
|
|
|
|
private static final int SHIFT_OFF = 0;
|
|
|
|
private static final int SHIFT_ON = 1;
|
|
|
|
private static final int SHIFT_LOCKED = 2;
|
|
|
|
|
|
|
|
private int mShiftState = SHIFT_OFF;
|
2009-08-21 01:35:30 +00:00
|
|
|
|
|
|
|
static int sSpacebarVerticalCorrection;
|
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
public LatinKeyboard(Context context, int xmlLayoutResId) {
|
|
|
|
this(context, xmlLayoutResId, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
public LatinKeyboard(Context context, int xmlLayoutResId, int mode) {
|
|
|
|
super(context, xmlLayoutResId, mode);
|
2009-08-21 01:35:30 +00:00
|
|
|
Resources res = context.getResources();
|
|
|
|
mShiftLockIcon = res.getDrawable(R.drawable.sym_keyboard_shift_locked);
|
|
|
|
mShiftLockPreviewIcon = res.getDrawable(R.drawable.sym_keyboard_feedback_shift_locked);
|
2009-03-13 22:11:42 +00:00
|
|
|
mShiftLockPreviewIcon.setBounds(0, 0,
|
|
|
|
mShiftLockPreviewIcon.getIntrinsicWidth(),
|
|
|
|
mShiftLockPreviewIcon.getIntrinsicHeight());
|
2009-08-21 01:35:30 +00:00
|
|
|
sSpacebarVerticalCorrection = res.getDimensionPixelOffset(
|
|
|
|
R.dimen.spacebar_vertical_correction);
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public LatinKeyboard(Context context, int layoutTemplateResId,
|
|
|
|
CharSequence characters, int columns, int horizontalPadding) {
|
|
|
|
super(context, layoutTemplateResId, characters, columns, horizontalPadding);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Key createKeyFromXml(Resources res, Row parent, int x, int y,
|
|
|
|
XmlResourceParser parser) {
|
|
|
|
Key key = new LatinKey(res, parent, x, y, parser);
|
|
|
|
if (key.codes[0] == 10) {
|
|
|
|
mEnterKey = key;
|
|
|
|
}
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setImeOptions(Resources res, int mode, int options) {
|
|
|
|
if (mEnterKey != null) {
|
|
|
|
// Reset some of the rarely used attributes.
|
|
|
|
mEnterKey.popupCharacters = null;
|
|
|
|
mEnterKey.popupResId = 0;
|
|
|
|
mEnterKey.text = null;
|
|
|
|
switch (options&(EditorInfo.IME_MASK_ACTION|EditorInfo.IME_FLAG_NO_ENTER_ACTION)) {
|
|
|
|
case EditorInfo.IME_ACTION_GO:
|
|
|
|
mEnterKey.iconPreview = null;
|
|
|
|
mEnterKey.icon = null;
|
|
|
|
mEnterKey.label = res.getText(R.string.label_go_key);
|
|
|
|
break;
|
|
|
|
case EditorInfo.IME_ACTION_NEXT:
|
|
|
|
mEnterKey.iconPreview = null;
|
|
|
|
mEnterKey.icon = null;
|
|
|
|
mEnterKey.label = res.getText(R.string.label_next_key);
|
|
|
|
break;
|
|
|
|
case EditorInfo.IME_ACTION_DONE:
|
|
|
|
mEnterKey.iconPreview = null;
|
|
|
|
mEnterKey.icon = null;
|
|
|
|
mEnterKey.label = res.getText(R.string.label_done_key);
|
|
|
|
break;
|
|
|
|
case EditorInfo.IME_ACTION_SEARCH:
|
|
|
|
mEnterKey.iconPreview = res.getDrawable(
|
|
|
|
R.drawable.sym_keyboard_feedback_search);
|
|
|
|
mEnterKey.icon = res.getDrawable(
|
|
|
|
R.drawable.sym_keyboard_search);
|
|
|
|
mEnterKey.label = null;
|
|
|
|
break;
|
|
|
|
case EditorInfo.IME_ACTION_SEND:
|
|
|
|
mEnterKey.iconPreview = null;
|
|
|
|
mEnterKey.icon = null;
|
|
|
|
mEnterKey.label = res.getText(R.string.label_send_key);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (mode == KeyboardSwitcher.MODE_IM) {
|
|
|
|
mEnterKey.icon = null;
|
|
|
|
mEnterKey.iconPreview = null;
|
|
|
|
mEnterKey.label = ":-)";
|
|
|
|
mEnterKey.text = ":-) ";
|
|
|
|
mEnterKey.popupResId = R.xml.popup_smileys;
|
|
|
|
} else {
|
|
|
|
mEnterKey.iconPreview = res.getDrawable(
|
|
|
|
R.drawable.sym_keyboard_feedback_return);
|
|
|
|
mEnterKey.icon = res.getDrawable(
|
|
|
|
R.drawable.sym_keyboard_return);
|
|
|
|
mEnterKey.label = null;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Set the initial size of the preview icon
|
|
|
|
if (mEnterKey.iconPreview != null) {
|
|
|
|
mEnterKey.iconPreview.setBounds(0, 0,
|
|
|
|
mEnterKey.iconPreview.getIntrinsicWidth(),
|
|
|
|
mEnterKey.iconPreview.getIntrinsicHeight());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void enableShiftLock() {
|
|
|
|
int index = getShiftKeyIndex();
|
|
|
|
if (index >= 0) {
|
|
|
|
mShiftKey = getKeys().get(index);
|
|
|
|
if (mShiftKey instanceof LatinKey) {
|
|
|
|
((LatinKey)mShiftKey).enableShiftLock();
|
|
|
|
}
|
|
|
|
mOldShiftIcon = mShiftKey.icon;
|
|
|
|
mOldShiftPreviewIcon = mShiftKey.iconPreview;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void setShiftLocked(boolean shiftLocked) {
|
|
|
|
if (mShiftKey != null) {
|
|
|
|
if (shiftLocked) {
|
|
|
|
mShiftKey.on = true;
|
|
|
|
mShiftKey.icon = mShiftLockIcon;
|
|
|
|
mShiftState = SHIFT_LOCKED;
|
|
|
|
} else {
|
|
|
|
mShiftKey.on = false;
|
|
|
|
mShiftKey.icon = mShiftLockIcon;
|
|
|
|
mShiftState = SHIFT_ON;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean isShiftLocked() {
|
|
|
|
return mShiftState == SHIFT_LOCKED;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean setShifted(boolean shiftState) {
|
|
|
|
boolean shiftChanged = false;
|
|
|
|
if (mShiftKey != null) {
|
|
|
|
if (shiftState == false) {
|
|
|
|
shiftChanged = mShiftState != SHIFT_OFF;
|
|
|
|
mShiftState = SHIFT_OFF;
|
|
|
|
mShiftKey.on = false;
|
|
|
|
mShiftKey.icon = mOldShiftIcon;
|
|
|
|
} else {
|
|
|
|
if (mShiftState == SHIFT_OFF) {
|
|
|
|
shiftChanged = mShiftState == SHIFT_OFF;
|
|
|
|
mShiftState = SHIFT_ON;
|
|
|
|
mShiftKey.icon = mShiftLockIcon;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return super.setShifted(shiftState);
|
|
|
|
}
|
|
|
|
return shiftChanged;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isShifted() {
|
|
|
|
if (mShiftKey != null) {
|
|
|
|
return mShiftState != SHIFT_OFF;
|
|
|
|
} else {
|
|
|
|
return super.isShifted();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static class LatinKey extends Keyboard.Key {
|
|
|
|
|
|
|
|
private boolean mShiftLockEnabled;
|
|
|
|
|
|
|
|
public LatinKey(Resources res, Keyboard.Row parent, int x, int y,
|
|
|
|
XmlResourceParser parser) {
|
|
|
|
super(res, parent, x, y, parser);
|
2009-03-25 23:58:32 +00:00
|
|
|
if (popupCharacters != null && popupCharacters.length() == 0) {
|
|
|
|
// If there is a keyboard with no keys specified in popupCharacters
|
|
|
|
popupResId = 0;
|
|
|
|
}
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void enableShiftLock() {
|
|
|
|
mShiftLockEnabled = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onReleased(boolean inside) {
|
|
|
|
if (!mShiftLockEnabled) {
|
|
|
|
super.onReleased(inside);
|
|
|
|
} else {
|
|
|
|
pressed = !pressed;
|
|
|
|
}
|
|
|
|
}
|
2009-06-04 19:24:14 +00:00
|
|
|
|
2009-03-13 22:11:42 +00:00
|
|
|
/**
|
|
|
|
* Overriding this method so that we can reduce the target area for certain keys.
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public boolean isInside(int x, int y) {
|
2009-06-04 19:24:14 +00:00
|
|
|
final int code = codes[0];
|
|
|
|
if (code == KEYCODE_SHIFT ||
|
|
|
|
code == KEYCODE_DELETE) {
|
2009-03-13 22:11:42 +00:00
|
|
|
y -= height / 10;
|
2009-06-04 19:24:14 +00:00
|
|
|
if (code == KEYCODE_SHIFT) x += width / 6;
|
|
|
|
if (code == KEYCODE_DELETE) x -= width / 6;
|
2009-08-19 22:16:33 +00:00
|
|
|
} else if (code == LatinIME.KEYCODE_SPACE) {
|
2009-08-21 01:35:30 +00:00
|
|
|
y += LatinKeyboard.sSpacebarVerticalCorrection;
|
2009-03-13 22:11:42 +00:00
|
|
|
}
|
|
|
|
return super.isInside(x, y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|