Package-level declarations

Types

Link copied to clipboard
class BasicMutableSelectBoxBehavior<T, M : MutableListModel<T>>(    display: Display,     textMetrics: TextMetrics,     backgroundColor: Color,     darkBackgroundColor: Color,     foregroundColor: Color,     cornerRadius: Double,     buttonWidth: Double,     focusManager: FocusManager? = null,     popupManager: PopupManager? = null,     buttonA11yLabel: String? = null,     inset: Double = 4.0) : MutableSelectBoxBehavior<T, M> , PointerListener
Link copied to clipboard
class BasicSelectBoxBehavior<T, M : ListModel<T>>(    display: Display,     textMetrics: TextMetrics,     backgroundColor: Color,     darkBackgroundColor: Color,     foregroundColor: Color,     cornerRadius: Double,     buttonWidth: Double = 20.0,     focusManager: FocusManager? = null,     popupManager: PopupManager? = null,     buttonA11yLabel: String? = null,     inset: Double = 4.0) : SelectBoxBehavior<T, M> , PointerListener, KeyListener

Created by Nicholas Eddy on 9/9/21.

Link copied to clipboard
open class SelectBoxTextEditOperation<T>(    focusManager: FocusManager?,     mapper: Encoder<T, String>,     selectBox: MutableSelectBox<T, *>,     value: T,     current: View) : GenericTextEditOperation<T, MutableSelectBox<T, *>>