Skip to content

Commit

Permalink
Implement Korean keyboard (#1306)
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro committed Jun 12, 2019
1 parent 5431327 commit 40dfe0e
Show file tree
Hide file tree
Showing 5 changed files with 535 additions and 14 deletions.
Expand Up @@ -32,8 +32,11 @@ public enum Action {
float getAlphabeticKeyboardWidth();
default @Nullable CustomKeyboard getSymbolsKeyboard() { return null; }
default @Nullable CandidatesResult getCandidates(String aComposingText) { return null; }
default @Nullable String overrideAddText(String aTextBeforeCursor, String aNextText) { return null; }
default @Nullable String overrideBackspace(String aTextBeforeCursor) { return null; }
default boolean supportsAutoCompletion() { return false; }
default boolean usesComposingText() { return false; }
default boolean usesTextOverride() { return false; }
String getComposingText(String aComposing, String aCode);
String getKeyboardTitle();
Locale getLocale();
Expand Down

0 comments on commit 40dfe0e

Please sign in to comment.