mirror of
https://gitlab.com/2009scape/09launcher.git
synced 2025-12-09 16:45:54 -07:00
19 lines
No EOL
328 B
Kotlin
19 lines
No EOL
328 B
Kotlin
class Checkbox : ImgButton("/toggleOn.png","toggleOff.png", false) {
|
|
|
|
var isToggled = false
|
|
set(value) {
|
|
field = value
|
|
isEnabled = value
|
|
}
|
|
|
|
init {
|
|
isEnabled = false
|
|
|
|
onClick {
|
|
isToggled = !isToggled
|
|
}
|
|
|
|
onMouseEnter { }
|
|
onMouseExit { }
|
|
}
|
|
} |