This commit is contained in:
zb
2023-08-29 21:09:20 +02:00
parent e5f7caab0f
commit 65d278d907
4 changed files with 238 additions and 58 deletions

View File

@@ -1,5 +1,6 @@
package net.mezimmah.wkt9.keypad
import net.mezimmah.wkt9.inputmode.WKT9InputMode
import java.lang.StringBuilder
data class KeyEventResult(
@@ -18,5 +19,6 @@ data class KeyEventResult(
val transcribe: Boolean = false,
val updateInputStatus: Boolean = false,
val updateWordStatus: Boolean = false,
val focus: Boolean = false
val focus: Boolean = false,
val switchInputMode: WKT9InputMode? = null
)