com.soywiz.korge.ui.Widget.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of korge-ext-ui-common Show documentation
Show all versions of korge-ext-ui-common Show documentation
Korge: Kotlin cORoutines Game Engine
package com.soywiz.korge.ui
import com.soywiz.korge.view.FixedSizeContainer
abstract class Widget(val factory: UIFactory, val skin: UISkin = factory.skin) : FixedSizeContainer(factory.views) {
override var width: Double = 100.0
set(value) {
field = value
updateSize()
}
override var height: Double = 32.0
set(value) {
field = value
updateSize()
}
protected open fun updateSize() {
}
}