mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Refactor symbol key state into KeyboardSwitcher
Change-Id: Idce4e9bf070b08b8a930fd8e800df9c4d8829f8f
This commit is contained in:
parent
e3f0ca3848
commit
6c92ee127d
@ -75,6 +75,7 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha
|
||||
private final LatinIME mInputMethodService;
|
||||
private final LanguageSwitcher mLanguageSwitcher;
|
||||
|
||||
private ModifierKeyState mSymbolKeyState = new ModifierKeyState();
|
||||
private KeyboardId mSymbolsId;
|
||||
private KeyboardId mSymbolsShiftedId;
|
||||
|
||||
@ -382,6 +383,23 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha
|
||||
mInputView.setShiftLocked(shiftLocked);
|
||||
}
|
||||
|
||||
public void onPressSymbol() {
|
||||
mSymbolKeyState.onPress();
|
||||
}
|
||||
|
||||
public void onReleaseSymbol() {
|
||||
mSymbolKeyState.onRelease();
|
||||
}
|
||||
|
||||
public boolean isSymbolMomentary() {
|
||||
return mSymbolKeyState.isMomentary();
|
||||
}
|
||||
|
||||
public void onOtherKeyPressed() {
|
||||
// TODO: shift key state will be handled too.
|
||||
mSymbolKeyState.onOtherKeyPressed();
|
||||
}
|
||||
|
||||
public void toggleShift() {
|
||||
if (isAlphabetMode())
|
||||
return;
|
||||
|
@ -241,7 +241,6 @@ public class LatinIME extends InputMethodService
|
||||
|
||||
// Modifier keys state
|
||||
private final ModifierKeyState mShiftKeyState = new ModifierKeyState();
|
||||
private final ModifierKeyState mSymbolKeyState = new ModifierKeyState();
|
||||
|
||||
private Tutorial mTutorial;
|
||||
|
||||
@ -2323,11 +2322,11 @@ public class LatinIME extends InputMethodService
|
||||
handleShift();
|
||||
}
|
||||
} else if (distinctMultiTouch && primaryCode == BaseKeyboard.KEYCODE_MODE_CHANGE) {
|
||||
mSymbolKeyState.onPress();
|
||||
switcher.onPressSymbol();
|
||||
changeKeyboardMode();
|
||||
} else {
|
||||
mShiftKeyState.onOtherKeyPressed();
|
||||
mSymbolKeyState.onOtherKeyPressed();
|
||||
switcher.onOtherKeyPressed();
|
||||
}
|
||||
}
|
||||
|
||||
@ -2352,10 +2351,10 @@ public class LatinIME extends InputMethodService
|
||||
}
|
||||
mShiftKeyState.onRelease();
|
||||
} else if (distinctMultiTouch && primaryCode == BaseKeyboard.KEYCODE_MODE_CHANGE) {
|
||||
if (mSymbolKeyState.isMomentary()) {
|
||||
if (switcher.isSymbolMomentary()) {
|
||||
changeKeyboardMode();
|
||||
}
|
||||
mSymbolKeyState.onRelease();
|
||||
switcher.onReleaseSymbol();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user