2010-11-19 22:57:24 +00:00
|
|
|
/*
|
2011-05-20 03:09:57 +00:00
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
2010-11-19 22:57:24 +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-22 02:53:02 +00:00
|
|
|
package com.android.inputmethod.keyboard.internal;
|
2010-11-19 22:57:24 +00:00
|
|
|
|
|
|
|
import android.content.res.TypedArray;
|
|
|
|
import android.util.Log;
|
2012-06-29 07:32:45 +00:00
|
|
|
import android.util.SparseArray;
|
2010-11-19 22:57:24 +00:00
|
|
|
|
2011-12-18 10:54:08 +00:00
|
|
|
import com.android.inputmethod.keyboard.Keyboard;
|
2011-06-21 14:38:42 +00:00
|
|
|
import com.android.inputmethod.latin.R;
|
2011-12-18 10:54:08 +00:00
|
|
|
import com.android.inputmethod.latin.XmlParseUtils;
|
2011-06-21 14:38:42 +00:00
|
|
|
|
2011-10-06 09:40:32 +00:00
|
|
|
import org.xmlpull.v1.XmlPullParser;
|
2011-12-14 09:11:27 +00:00
|
|
|
import org.xmlpull.v1.XmlPullParserException;
|
2011-10-06 09:40:32 +00:00
|
|
|
|
2010-11-19 22:57:24 +00:00
|
|
|
import java.util.HashMap;
|
|
|
|
|
|
|
|
public class KeyStyles {
|
2012-01-20 07:19:51 +00:00
|
|
|
private static final String TAG = KeyStyles.class.getSimpleName();
|
2010-12-14 06:31:47 +00:00
|
|
|
private static final boolean DEBUG = false;
|
2010-11-19 22:57:24 +00:00
|
|
|
|
2012-05-01 07:51:38 +00:00
|
|
|
final HashMap<String, KeyStyle> mStyles = new HashMap<String, KeyStyle>();
|
2010-11-19 22:57:24 +00:00
|
|
|
|
2012-05-01 07:51:38 +00:00
|
|
|
final KeyboardTextsSet mTextsSet;
|
2012-04-05 05:59:55 +00:00
|
|
|
private final KeyStyle mEmptyKeyStyle;
|
2012-05-01 07:51:38 +00:00
|
|
|
private static final String EMPTY_STYLE_NAME = "<empty>";
|
2012-04-05 05:59:55 +00:00
|
|
|
|
2012-04-19 23:39:11 +00:00
|
|
|
public KeyStyles(KeyboardTextsSet textsSet) {
|
|
|
|
mTextsSet = textsSet;
|
2012-05-01 07:51:38 +00:00
|
|
|
mEmptyKeyStyle = new EmptyKeyStyle();
|
|
|
|
mStyles.put(EMPTY_STYLE_NAME, mEmptyKeyStyle);
|
2012-04-05 05:59:55 +00:00
|
|
|
}
|
|
|
|
|
2012-05-01 07:51:38 +00:00
|
|
|
public abstract class KeyStyle {
|
2012-04-05 05:59:55 +00:00
|
|
|
public abstract String[] getStringArray(TypedArray a, int index);
|
|
|
|
public abstract String getString(TypedArray a, int index);
|
|
|
|
public abstract int getInt(TypedArray a, int index, int defaultValue);
|
|
|
|
public abstract int getFlag(TypedArray a, int index);
|
|
|
|
|
|
|
|
protected String parseString(TypedArray a, int index) {
|
|
|
|
if (a.hasValue(index)) {
|
2012-04-19 23:39:11 +00:00
|
|
|
return KeySpecParser.resolveTextReference(a.getString(index), mTextsSet);
|
2012-04-05 05:59:55 +00:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected String[] parseStringArray(TypedArray a, int index) {
|
|
|
|
if (a.hasValue(index)) {
|
2012-04-19 23:39:11 +00:00
|
|
|
return KeySpecParser.parseCsvString(a.getString(index), mTextsSet);
|
2012-04-05 05:59:55 +00:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2010-11-19 22:57:24 +00:00
|
|
|
}
|
|
|
|
|
2012-05-01 07:51:38 +00:00
|
|
|
class EmptyKeyStyle extends KeyStyle {
|
2010-12-14 06:31:47 +00:00
|
|
|
@Override
|
2012-01-25 08:01:53 +00:00
|
|
|
public String[] getStringArray(TypedArray a, int index) {
|
2012-04-05 05:59:55 +00:00
|
|
|
return parseStringArray(a, index);
|
2010-12-14 06:31:47 +00:00
|
|
|
}
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
@Override
|
2012-01-25 08:01:53 +00:00
|
|
|
public String getString(TypedArray a, int index) {
|
2012-04-05 05:59:55 +00:00
|
|
|
return parseString(a, index);
|
2010-11-19 22:57:24 +00:00
|
|
|
}
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
@Override
|
2010-11-19 22:57:24 +00:00
|
|
|
public int getInt(TypedArray a, int index, int defaultValue) {
|
|
|
|
return a.getInt(index, defaultValue);
|
|
|
|
}
|
|
|
|
|
2010-12-02 09:46:21 +00:00
|
|
|
@Override
|
2012-02-07 08:30:54 +00:00
|
|
|
public int getFlag(TypedArray a, int index) {
|
|
|
|
return a.getInt(index, 0);
|
2010-12-14 06:31:47 +00:00
|
|
|
}
|
2010-11-19 22:57:24 +00:00
|
|
|
}
|
|
|
|
|
2012-05-01 07:51:38 +00:00
|
|
|
private class DeclaredKeyStyle extends KeyStyle {
|
|
|
|
private final String mParentStyleName;
|
2012-06-29 07:32:45 +00:00
|
|
|
private final SparseArray<Object> mStyleAttributes = new SparseArray<Object>();
|
2010-11-19 22:57:24 +00:00
|
|
|
|
2012-05-01 07:51:38 +00:00
|
|
|
public DeclaredKeyStyle(String parentStyleName) {
|
|
|
|
mParentStyleName = parentStyleName;
|
2012-04-05 05:59:55 +00:00
|
|
|
}
|
|
|
|
|
2010-12-14 06:31:47 +00:00
|
|
|
@Override
|
2012-01-25 08:01:53 +00:00
|
|
|
public String[] getStringArray(TypedArray a, int index) {
|
2012-02-07 08:30:54 +00:00
|
|
|
if (a.hasValue(index)) {
|
|
|
|
return parseStringArray(a, index);
|
|
|
|
}
|
2012-06-29 07:32:45 +00:00
|
|
|
final Object value = mStyleAttributes.get(index);
|
|
|
|
if (value != null) {
|
|
|
|
return (String[])value;
|
2012-05-01 07:51:38 +00:00
|
|
|
}
|
|
|
|
final KeyStyle parentStyle = mStyles.get(mParentStyleName);
|
|
|
|
return parentStyle.getStringArray(a, index);
|
2010-12-14 06:31:47 +00:00
|
|
|
}
|
|
|
|
|
2010-11-19 22:57:24 +00:00
|
|
|
@Override
|
2012-01-25 08:01:53 +00:00
|
|
|
public String getString(TypedArray a, int index) {
|
2012-02-07 08:30:54 +00:00
|
|
|
if (a.hasValue(index)) {
|
2012-04-05 05:59:55 +00:00
|
|
|
return parseString(a, index);
|
2012-02-07 08:30:54 +00:00
|
|
|
}
|
2012-06-29 07:32:45 +00:00
|
|
|
final Object value = mStyleAttributes.get(index);
|
|
|
|
if (value != null) {
|
|
|
|
return (String)value;
|
2012-05-01 07:51:38 +00:00
|
|
|
}
|
|
|
|
final KeyStyle parentStyle = mStyles.get(mParentStyleName);
|
|
|
|
return parentStyle.getString(a, index);
|
2010-11-19 22:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2010-12-14 06:31:47 +00:00
|
|
|
public int getInt(TypedArray a, int index, int defaultValue) {
|
2012-02-07 08:30:54 +00:00
|
|
|
if (a.hasValue(index)) {
|
|
|
|
return a.getInt(index, defaultValue);
|
|
|
|
}
|
2012-06-29 07:32:45 +00:00
|
|
|
final Object value = mStyleAttributes.get(index);
|
|
|
|
if (value != null) {
|
|
|
|
return (Integer)value;
|
2012-05-01 07:51:38 +00:00
|
|
|
}
|
|
|
|
final KeyStyle parentStyle = mStyles.get(mParentStyleName);
|
|
|
|
return parentStyle.getInt(a, index, defaultValue);
|
2010-11-19 22:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2012-02-07 08:30:54 +00:00
|
|
|
public int getFlag(TypedArray a, int index) {
|
2012-06-29 07:32:45 +00:00
|
|
|
int flags = a.getInt(index, 0);
|
|
|
|
final Object value = mStyleAttributes.get(index);
|
|
|
|
if (value != null) {
|
|
|
|
flags |= (Integer)value;
|
2012-05-01 07:51:38 +00:00
|
|
|
}
|
|
|
|
final KeyStyle parentStyle = mStyles.get(mParentStyleName);
|
2012-06-29 07:32:45 +00:00
|
|
|
return flags | parentStyle.getFlag(a, index);
|
2010-11-19 22:57:24 +00:00
|
|
|
}
|
|
|
|
|
2012-02-07 08:30:54 +00:00
|
|
|
void readKeyAttributes(TypedArray keyAttr) {
|
2010-11-19 22:57:24 +00:00
|
|
|
// TODO: Currently not all Key attributes can be declared as style.
|
2012-04-09 08:48:32 +00:00
|
|
|
readString(keyAttr, R.styleable.Keyboard_Key_code);
|
|
|
|
readString(keyAttr, R.styleable.Keyboard_Key_altCode);
|
2012-01-25 08:01:53 +00:00
|
|
|
readString(keyAttr, R.styleable.Keyboard_Key_keyLabel);
|
|
|
|
readString(keyAttr, R.styleable.Keyboard_Key_keyOutputText);
|
|
|
|
readString(keyAttr, R.styleable.Keyboard_Key_keyHintLabel);
|
|
|
|
readStringArray(keyAttr, R.styleable.Keyboard_Key_moreKeys);
|
2012-01-30 02:14:45 +00:00
|
|
|
readStringArray(keyAttr, R.styleable.Keyboard_Key_additionalMoreKeys);
|
2011-11-22 03:55:38 +00:00
|
|
|
readFlag(keyAttr, R.styleable.Keyboard_Key_keyLabelFlags);
|
2012-04-19 21:24:51 +00:00
|
|
|
readString(keyAttr, R.styleable.Keyboard_Key_keyIcon);
|
|
|
|
readString(keyAttr, R.styleable.Keyboard_Key_keyIconDisabled);
|
|
|
|
readString(keyAttr, R.styleable.Keyboard_Key_keyIconPreview);
|
2011-08-31 06:26:32 +00:00
|
|
|
readInt(keyAttr, R.styleable.Keyboard_Key_maxMoreKeysColumn);
|
2011-09-15 05:21:46 +00:00
|
|
|
readInt(keyAttr, R.styleable.Keyboard_Key_backgroundType);
|
2011-11-22 03:55:38 +00:00
|
|
|
readFlag(keyAttr, R.styleable.Keyboard_Key_keyActionFlags);
|
2010-11-19 22:57:24 +00:00
|
|
|
}
|
|
|
|
|
2012-01-25 08:01:53 +00:00
|
|
|
private void readString(TypedArray a, int index) {
|
2012-02-07 08:30:54 +00:00
|
|
|
if (a.hasValue(index)) {
|
2012-04-05 05:59:55 +00:00
|
|
|
mStyleAttributes.put(index, parseString(a, index));
|
2012-02-07 08:30:54 +00:00
|
|
|
}
|
2010-11-19 22:57:24 +00:00
|
|
|
}
|
|
|
|
|
2010-12-14 06:31:47 +00:00
|
|
|
private void readInt(TypedArray a, int index) {
|
2012-02-07 08:30:54 +00:00
|
|
|
if (a.hasValue(index)) {
|
|
|
|
mStyleAttributes.put(index, a.getInt(index, 0));
|
|
|
|
}
|
2010-11-19 22:57:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private void readFlag(TypedArray a, int index) {
|
2012-02-07 08:30:54 +00:00
|
|
|
if (a.hasValue(index)) {
|
2012-04-05 05:59:55 +00:00
|
|
|
final Integer value = (Integer)mStyleAttributes.get(index);
|
2012-02-07 08:30:54 +00:00
|
|
|
mStyleAttributes.put(index, a.getInt(index, 0) | (value != null ? value : 0));
|
|
|
|
}
|
2010-11-19 22:57:24 +00:00
|
|
|
}
|
|
|
|
|
2012-01-25 08:01:53 +00:00
|
|
|
private void readStringArray(TypedArray a, int index) {
|
2012-04-05 05:59:55 +00:00
|
|
|
if (a.hasValue(index)) {
|
|
|
|
mStyleAttributes.put(index, parseStringArray(a, index));
|
2012-02-07 08:30:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-11-19 22:57:24 +00:00
|
|
|
|
2010-12-14 06:31:47 +00:00
|
|
|
public void parseKeyStyleAttributes(TypedArray keyStyleAttr, TypedArray keyAttrs,
|
2011-12-14 09:11:27 +00:00
|
|
|
XmlPullParser parser) throws XmlPullParserException {
|
2011-08-01 01:23:39 +00:00
|
|
|
final String styleName = keyStyleAttr.getString(R.styleable.Keyboard_KeyStyle_styleName);
|
2012-02-07 08:30:54 +00:00
|
|
|
if (DEBUG) {
|
|
|
|
Log.d(TAG, String.format("<%s styleName=%s />",
|
|
|
|
Keyboard.Builder.TAG_KEY_STYLE, styleName));
|
2012-02-17 07:14:14 +00:00
|
|
|
if (mStyles.containsKey(styleName)) {
|
|
|
|
Log.d(TAG, "key-style " + styleName + " is overridden at "
|
|
|
|
+ parser.getPositionDescription());
|
|
|
|
}
|
2012-02-07 08:30:54 +00:00
|
|
|
}
|
2010-11-19 22:57:24 +00:00
|
|
|
|
2012-05-01 07:51:38 +00:00
|
|
|
String parentStyleName = EMPTY_STYLE_NAME;
|
2010-12-14 06:31:47 +00:00
|
|
|
if (keyStyleAttr.hasValue(R.styleable.Keyboard_KeyStyle_parentStyle)) {
|
2012-05-01 07:51:38 +00:00
|
|
|
parentStyleName = keyStyleAttr.getString(R.styleable.Keyboard_KeyStyle_parentStyle);
|
|
|
|
if (!mStyles.containsKey(parentStyleName)) {
|
2011-12-14 09:11:27 +00:00
|
|
|
throw new XmlParseUtils.ParseException(
|
2012-05-01 07:51:38 +00:00
|
|
|
"Unknown parentStyle " + parentStyleName, parser);
|
2012-02-07 08:30:54 +00:00
|
|
|
}
|
2010-11-19 22:57:24 +00:00
|
|
|
}
|
2012-05-01 07:51:38 +00:00
|
|
|
final DeclaredKeyStyle style = new DeclaredKeyStyle(parentStyleName);
|
2012-02-07 08:30:54 +00:00
|
|
|
style.readKeyAttributes(keyAttrs);
|
2010-11-19 22:57:24 +00:00
|
|
|
mStyles.put(styleName, style);
|
|
|
|
}
|
|
|
|
|
2012-05-01 07:51:38 +00:00
|
|
|
public KeyStyle getKeyStyle(TypedArray keyAttr, XmlPullParser parser)
|
|
|
|
throws XmlParseUtils.ParseException {
|
|
|
|
if (!keyAttr.hasValue(R.styleable.Keyboard_Key_keyStyle)) {
|
|
|
|
return mEmptyKeyStyle;
|
|
|
|
}
|
|
|
|
final String styleName = keyAttr.getString(R.styleable.Keyboard_Key_keyStyle);
|
|
|
|
if (!mStyles.containsKey(styleName)) {
|
|
|
|
throw new XmlParseUtils.ParseException("Unknown key style: " + styleName, parser);
|
|
|
|
}
|
2010-11-19 22:57:24 +00:00
|
|
|
return mStyles.get(styleName);
|
|
|
|
}
|
|
|
|
}
|