Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
open class BasicMutableTableBehavior<T>(focusManager: FocusManager?, rowHeight: Double = 20.0, headerColor: Color? = Lightgray, footerColor: Color? = headerColor, evenRowColor: Color? = White, oddRowColor: Color? = Lightgray.lighter().lighter(), selectionColor: Color? = Blue, selectionBlurredColor: Color? = Lightgray) : BasicTableBehavior<T>
Link copied to clipboard
open class BasicTableBehavior<T>(focusManager: FocusManager?, val rowHeight: Double = 20.0, val headerColor: Color? = Lightgray, val footerColor: Color? = headerColor, evenRowColor: Color? = White, oddRowColor: Color? = Lightgray.lighter().lighter(), val selectionColor: Color? = Blue, val selectionBlurredColor: Color? = Lightgray) : TableBehavior<T> , PointerListener, KeyListener, SelectableListKeyHandler
Link copied to clipboard
open class BasicTreeTableBehavior<T>(focusManager: FocusManager?, rowHeight: Double = 20.0, headerColor: Color? = Lightgray, footerColor: Color? = Lightgray, evenRowColor: Color? = White, oddRowColor: Color? = Lightgray.lighter().lighter(), iconFactory: () -> TreeRowIcon = { SimpleTreeRowIcon() }, selectionColor: Color? = Blue, selectionBlurredColor: Color? = Lightgray) : TreeTableBehavior<T> , PointerListener, KeyListener, SelectableTreeKeyHandler
Link copied to clipboard
open class BooleanEditOperation<T>(focusManager: FocusManager, table: MutableTable<T, *>, column: Column<*>, index: Int, value: Boolean, generator: (Boolean) -> T) : View, EditOperation<Boolean>
Link copied to clipboard
open class ColorEditOperation<T>(display: Display, focusManager: FocusManager, table: MutableTable<T, *>, index: Int, original: Color, generator: (Color) -> T, colorPicker: ColorPicker) : EditOperation<Color> , KeyListener
Link copied to clipboard
class TableFooterCell(column: Column<*>, fillColor: Color?) : View
Link copied to clipboard
class TableHeaderCell(column: Column<*>, fillColor: Color?) : View

Created by Nicholas Eddy on 5/10/19.

Link copied to clipboard
open class TextEditOperation<T>(focusManager: FocusManager?, encoder: Encoder<T, String>, table: MutableTable<*, *>, column: Column<*>, row: T, index: Int, current: View) : TextField, EditOperation<T>

Functions

Link copied to clipboard
fun TreeLike.map(mapper: (Int) -> Path<Int>, unmapper: (Path<Int>) -> Int): ListLike

Created by Nicholas Eddy on 4/8/19.