am e466583d: Fix caps lock key behavior

* commit 'e466583ddc68278ad708094f8ac521be504bf342':
  Fix caps lock key behavior
main
Tadashi G. Takaoka 2011-12-06 03:26:45 -08:00 committed by Android Git Automerger
commit bd0615fc6a
2 changed files with 11 additions and 22 deletions

View File

@ -21,6 +21,7 @@ import android.text.TextUtils;
import com.android.inputmethod.keyboard.internal.KeyboardIconsSet; import com.android.inputmethod.keyboard.internal.KeyboardIconsSet;
import com.android.inputmethod.keyboard.internal.KeyboardParams; import com.android.inputmethod.keyboard.internal.KeyboardParams;
import com.android.inputmethod.keyboard.internal.KeyboardShiftState;
import java.util.Collections; import java.util.Collections;
import java.util.HashMap; import java.util.HashMap;
@ -114,13 +115,8 @@ public class Keyboard {
private final ProximityInfo mProximityInfo; private final ProximityInfo mProximityInfo;
// TODO: Remove these variables. // TODO: Remove this variable.
private static final int UNSHIFT = 0; private final KeyboardShiftState mShiftState = new KeyboardShiftState();
private static final int MANUAL_SHIFT = 1;
private static final int AUTOMATIC_SHIFT = 2;
private int mShiftMode;
private boolean mShifted;
private boolean mShiftLocked;
public Keyboard(KeyboardParams params) { public Keyboard(KeyboardParams params) {
mId = params.mId; mId = params.mId;
@ -181,44 +177,37 @@ public class Keyboard {
key.setHighlightOn(newShiftLockState); key.setHighlightOn(newShiftLockState);
key.setIcon(newShiftLockState ? mShiftedIcons.get(key) : mUnshiftedIcons.get(key)); key.setIcon(newShiftLockState ? mShiftedIcons.get(key) : mUnshiftedIcons.get(key));
} }
mShiftLocked = newShiftLockState; mShiftState.setShiftLocked(newShiftLockState);
} }
// TODO: Move this method to KeyboardId. // TODO: Move this method to KeyboardId.
public boolean isShiftLocked() { public boolean isShiftLocked() {
return mShiftLocked; return mShiftState.isShiftLocked();
} }
// TODO: Remove this method. // TODO: Remove this method.
public void setShifted(boolean newShiftState) { public void setShifted(boolean newShiftState) {
mShiftMode = (newShiftState ? MANUAL_SHIFT : UNSHIFT); if (!mShiftState.isShiftLocked()) {
setShiftedInternal(newShiftState);
}
// TODO: Remove this method
private void setShiftedInternal(boolean newShiftState) {
if (!mShiftLocked) {
for (final Key key : mShiftKeys) { for (final Key key : mShiftKeys) {
key.setIcon(newShiftState ? mShiftedIcons.get(key) : mUnshiftedIcons.get(key)); key.setIcon(newShiftState ? mShiftedIcons.get(key) : mUnshiftedIcons.get(key));
} }
} }
mShifted = newShiftState; mShiftState.setShifted(newShiftState);
} }
// TODO: Move this method to KeyboardId. // TODO: Move this method to KeyboardId.
public boolean isShiftedOrShiftLocked() { public boolean isShiftedOrShiftLocked() {
return mShifted || mShiftLocked; return mShiftState.isShiftedOrShiftLocked();
} }
// TODO: Remove this method // TODO: Remove this method
public void setAutomaticTemporaryUpperCase() { public void setAutomaticTemporaryUpperCase() {
mShiftMode = AUTOMATIC_SHIFT; mShiftState.setAutomaticTemporaryUpperCase();
setShiftedInternal(true);
} }
// TODO: Move this method to KeyboardId. // TODO: Move this method to KeyboardId.
public boolean isManualTemporaryUpperCase() { public boolean isManualTemporaryUpperCase() {
return mShiftMode == MANUAL_SHIFT; return mShiftState.isManualTemporaryUpperCase();
} }
// TODO: Remove this method. // TODO: Remove this method.

View File

@ -20,7 +20,7 @@ import android.util.Log;
import com.android.inputmethod.keyboard.KeyboardSwitcher; import com.android.inputmethod.keyboard.KeyboardSwitcher;
/* package */ class KeyboardShiftState { public class KeyboardShiftState {
private static final String TAG = KeyboardShiftState.class.getSimpleName(); private static final String TAG = KeyboardShiftState.class.getSimpleName();
private static final boolean DEBUG = KeyboardSwitcher.DEBUG_STATE; private static final boolean DEBUG = KeyboardSwitcher.DEBUG_STATE;