abouttreesummaryrefslogcommitdiff
path: root/srcs
diff options
context:
space:
mode:
authorJules Aguillon2022-09-19 22:06:22 +0200
committerJules Aguillon2022-09-24 18:53:37 +0200
commitc778b4e8a24896a779cb295fb59a22d9253a2bc5 (patch)
treeb77a6ddcc3995a2d8b7eeb8ffbb91d0f26e4e23a /srcs
parent65210fb14f9b6d9c31bfffe67ea87e2596147e3a (diff)
downloadunexpected-keyboard-c778b4e8a24896a779cb295fb59a22d9253a2bc5.tar.gz
unexpected-keyboard-c778b4e8a24896a779cb295fb59a22d9253a2bc5.zip
Fix autocapitalisation randomly not triggered
The autocapitalisation is asking the editor about whether to enable shift and must make sure to ask after the editor is done processing the events.
Diffstat (limited to 'srcs')
-rw-r--r--srcs/juloo.keyboard2/Autocapitalisation.java84
-rw-r--r--srcs/juloo.keyboard2/Keyboard2.java19
2 files changed, 67 insertions, 36 deletions
diff --git a/srcs/juloo.keyboard2/Autocapitalisation.java b/srcs/juloo.keyboard2/Autocapitalisation.java
index c23509c..1a339e0 100644
--- a/srcs/juloo.keyboard2/Autocapitalisation.java
+++ b/srcs/juloo.keyboard2/Autocapitalisation.java
@@ -1,5 +1,7 @@
package juloo.keyboard2;
+import android.os.Handler;
+import android.os.Looper;
import android.text.InputType;
import android.text.TextUtils;
import android.view.inputmethod.EditorInfo;
@@ -8,29 +10,54 @@ import android.view.KeyEvent;
final class Autocapitalisation
{
- private boolean _enabled = false;
- private boolean _should_enable_shift = false;
+ boolean _enabled = false;
+ boolean _should_enable_shift = false;
+ boolean _should_disable_shift = false;
+ boolean _should_update_caps_mode = false;
- private InputConnection _ic;
- private int _caps_mode;
+ Handler _handler;
+ InputConnection _ic;
+ Callback _callback;
+ int _caps_mode;
/** Keep track of the cursor to recognize cursor movements from typing. */
- private int _cursor;
+ int _cursor;
- static private int SUPPORTED_CAPS_MODES =
+ static int SUPPORTED_CAPS_MODES =
InputType.TYPE_TEXT_FLAG_CAP_SENTENCES |
InputType.TYPE_TEXT_FLAG_CAP_WORDS;
- public boolean should_enable_shift()
+ Runnable delayed_callback = new Runnable()
{
- return _should_enable_shift;
+ public void run()
+ {
+ if (_should_update_caps_mode)
+ {
+ _should_enable_shift = _enabled && (_ic.getCursorCapsMode(_caps_mode) != 0);
+ _should_update_caps_mode = false;
+ }
+ _callback.update_shift_state(_should_enable_shift, _should_disable_shift);
+ }
+ };
+
+ void callback(final boolean might_disable)
+ {
+ _should_disable_shift = might_disable;
+ // The callback must be delayed because [getCursorCapsMode] would sometimes
+ // be called before the editor finished handling the previous event.
+ _handler.postDelayed(delayed_callback, 1);
}
- /** Returns [true] if shift should be on initially. The input connection
- isn't stored. */
- public void started(EditorInfo info, InputConnection ic)
+ /**
+ * The events are: started, typed, event sent, selection updated
+ * [started] does initialisation work and must be called before any other
+ * event.
+ */
+ public void started(Looper looper, Callback cb, EditorInfo info, InputConnection ic)
{
+ _handler = new Handler(looper);
_ic = ic;
+ _callback = cb;
_caps_mode = info.inputType & TextUtils.CAP_MODE_SENTENCES;
if (!Config.globalConfig().autocapitalisation || _caps_mode == 0)
{
@@ -39,19 +66,27 @@ final class Autocapitalisation
}
_enabled = true;
_should_enable_shift = (info.initialCapsMode != 0);
+ _callback.update_shift_state(_should_enable_shift, true);
}
public void typed(CharSequence c)
{
for (int i = 0; i < c.length(); i++)
- typed(c.charAt(i));
+ type_one_char(c.charAt(i));
+ callback(false);
}
public void typed(char c)
{
+ type_one_char(c);
+ callback(false);
+ }
+
+ void type_one_char(char c)
+ {
_cursor++;
if (is_trigger_character(c))
- update_caps_mode();
+ _should_update_caps_mode = true;
else
_should_enable_shift = false;
}
@@ -61,28 +96,24 @@ final class Autocapitalisation
switch (code)
{
case KeyEvent.KEYCODE_DEL:
- _cursor--;
- update_caps_mode();
+ if (_cursor > 0) _cursor--;
+ _should_update_caps_mode = true;
break;
}
+ callback(true);
}
/** Returns [true] if shift might be disabled. */
- public boolean selection_updated(int old_cursor, int new_cursor)
+ public void selection_updated(int old_cursor, int new_cursor)
{
if (new_cursor == _cursor) // Just typing
- return false;
+ return;
_cursor = new_cursor;
_should_enable_shift = false;
- return true;
- }
-
- private void update_caps_mode()
- {
- _should_enable_shift = _enabled && (_ic.getCursorCapsMode(_caps_mode) != 0);
+ callback(true);
}
- private boolean is_trigger_character(char c)
+ boolean is_trigger_character(char c)
{
switch (c)
{
@@ -92,4 +123,9 @@ final class Autocapitalisation
return false;
}
}
+
+ public static interface Callback
+ {
+ public void update_shift_state(boolean should_enable, boolean should_disable);
+ }
}
diff --git a/srcs/juloo.keyboard2/Keyboard2.java b/srcs/juloo.keyboard2/Keyboard2.java
index 4140a45..ccc4be5 100644
--- a/srcs/juloo.keyboard2/Keyboard2.java
+++ b/srcs/juloo.keyboard2/Keyboard2.java
@@ -26,7 +26,8 @@ import java.util.HashSet;
import java.util.Set;
public class Keyboard2 extends InputMethodService
- implements SharedPreferences.OnSharedPreferenceChangeListener
+ implements SharedPreferences.OnSharedPreferenceChangeListener,
+ Autocapitalisation.Callback
{
static private final String TAG = "Keyboard2";
@@ -58,11 +59,11 @@ public class Keyboard2 extends InputMethodService
_debug_logs = getResources().getBoolean(R.bool.debug_logs);
}
- private void update_shift_state(boolean might_disable)
+ public void update_shift_state(boolean should_enable, boolean should_disable)
{
- if (_autocap.should_enable_shift())
+ if (should_enable)
_keyboardView.set_shift_state(true);
- else if (might_disable)
+ else if (should_disable)
_keyboardView.set_shift_state(false);
}
@@ -224,8 +225,7 @@ public class Keyboard2 extends InputMethodService
_keyboardView.setKeyboard(getLayout(R.xml.numeric));
else
_keyboardView.setKeyboard(getLayout(_currentTextLayout));
- _autocap.started(info, getCurrentInputConnection());
- update_shift_state(false);
+ _autocap.started(getMainLooper(), this, info, getCurrentInputConnection());
setInputView(_keyboardView);
if (_debug_logs)
log_editor_info(info);
@@ -251,7 +251,7 @@ public class Keyboard2 extends InputMethodService
public void onUpdateSelection(int oldSelStart, int oldSelEnd, int newSelStart, int newSelEnd, int candidatesStart, int candidatesEnd)
{
super.onUpdateSelection(oldSelStart, oldSelEnd, newSelStart, newSelEnd, candidatesStart, candidatesEnd);
- update_shift_state(_autocap.selection_updated(oldSelStart, newSelStart));
+ _autocap.selection_updated(oldSelStart, newSelStart);
}
@Override
@@ -337,10 +337,7 @@ public class Keyboard2 extends InputMethodService
return;
conn.sendKeyEvent(new KeyEvent(1, 1, eventAction, eventCode, 0, meta));
if (eventAction == KeyEvent.ACTION_UP)
- {
_autocap.event_sent(eventCode);
- update_shift_state(false);
- }
}
public void showKeyboardConfig()
@@ -354,14 +351,12 @@ public class Keyboard2 extends InputMethodService
{
getCurrentInputConnection().commitText(text, 1);
_autocap.typed(text);
- update_shift_state(false);
}
public void commitChar(char c)
{
sendKeyChar(c);
_autocap.typed(c);
- update_shift_state(false);
}
}