Slowly getting stable

This commit is contained in:
zb
2023-12-03 19:58:54 -05:00
parent 6c59ee4d82
commit 92a4ac541c
13 changed files with 278 additions and 144 deletions

View File

@@ -15,7 +15,7 @@ interface IME {
current: Int? = 0
)
fun onWords(words: List<Word>)
fun onWords(words: List<Word>, capMode: Int?)
fun onNextWord()
@@ -23,6 +23,8 @@ interface IME {
fun onWordSelected(word: Word)
fun onDeleteWord(word: Word)
fun onCommit(text: CharSequence = "", beforeCursor: Int = 0, afterCursor: Int = 0)
fun onCompose(text: CharSequence)