Package-level declarations

Types

Link copied to clipboard
open class BasicTreeColumnRowGenerator<T>(    focusManager: FocusManager?,     selectionColor: Color? = Green.lighter(),     selectionBlurredColor: Color? = Lightgray,     iconFactory: () -> TreeColumnRowIcon = { SimpleTreeColumnRowIcon() }) : TreeColumnsBehavior.CellGenerator<T>

Created by Nicholas Eddy on 7/25/20.

Link copied to clipboard
class BasicTreeColumnsBehavior<T>(    val generator: TreeColumnsBehavior.CellGenerator<T>,     columnSeparatorColor: Color? = Lightgray.lighter().lighter(),     backgroundColor: Color? = Lightgray,     rowHeight: Double = 20.0) : TreeColumnsBehavior<T> , KeyListener
Link copied to clipboard
class SimpleTreeColumnRowIcon(color: Color = Black, selectedColor: Color = White) : TreeColumnRowIcon
Link copied to clipboard
class TreeColumnRow<T>(    treeColumns: TreeColumns<T, *>,     node: T,     var path: Path<Int>,     index: Int,     itemVisualizer: ItemVisualizer<T, IndexedItem>,     selectionColor: Color? = Color.Green,     selectionBlurredColor: Color? = selectionColor,     iconFactory: () -> TreeColumnRowIcon) : View
Link copied to clipboard
abstract class TreeColumnRowIcon : View

Created by Nicholas Eddy on 7/25/20.