Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit 40dfe0e

Browse files
authored
Implement Korean keyboard (#1306)
1 parent 5431327 commit 40dfe0e

File tree

5 files changed

+535
-14
lines changed

5 files changed

+535
-14
lines changed

app/src/common/shared/org/mozilla/vrbrowser/ui/keyboards/KeyboardInterface.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,11 @@ public enum Action {
3232
float getAlphabeticKeyboardWidth();
3333
default @Nullable CustomKeyboard getSymbolsKeyboard() { return null; }
3434
default @Nullable CandidatesResult getCandidates(String aComposingText) { return null; }
35+
default @Nullable String overrideAddText(String aTextBeforeCursor, String aNextText) { return null; }
36+
default @Nullable String overrideBackspace(String aTextBeforeCursor) { return null; }
3537
default boolean supportsAutoCompletion() { return false; }
3638
default boolean usesComposingText() { return false; }
39+
default boolean usesTextOverride() { return false; }
3740
String getComposingText(String aComposing, String aCode);
3841
String getKeyboardTitle();
3942
Locale getLocale();

0 commit comments

Comments
 (0)