Skip to content

Commit

Permalink
refactor: add BarBoardWindow class
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiredPlanck committed Mar 31, 2024
1 parent 4a754f5 commit b27b1b6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/src/main/java/com/osfans/trime/ime/window/BoardWindow.kt
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,10 @@ sealed class BoardWindow {
abstract class NoBarBoardWindow : BoardWindow() {
override fun toString(): String = javaClass.name
}

abstract class BarBoardWindow : BoardWindow() {
open fun onCreateBarView(): View? = null

override fun toString(): String = javaClass.name
}
}

0 comments on commit b27b1b6

Please sign in to comment.