TreeView

object TreeView
Companion
class
class Object
trait Matchable
class Any

Type members

Classlikes

object EditEvent
Companion
class
class EditEvent[T](val delegate: EditEvent[T]) extends Event with SFXDelegate[EditEvent[T]]
Companion
object

Value members

Concrete methods

def apply[T](layoutChildrenOp: () => Unit): TreeView[T]

Creates a new TreeView overriding layoutChildren method from JavaFX's TreeView.

Creates a new TreeView overriding layoutChildren method from JavaFX's TreeView.

def editAnyEvent: EventType[EditEvent[Nothing]]

An EventType that indicates some edit event has occurred.

An EventType that indicates some edit event has occurred.

def editCancelEvent: EventType[EditEvent[Nothing]]

An EventType used to indicate that an edit event has just been canceled within the TreeView upon which the event was fired.

An EventType used to indicate that an edit event has just been canceled within the TreeView upon which the event was fired.

def editCommitEvent: EventType[EditEvent[Nothing]]

An EventType that is used to indicate that an edit in a TreeView has been committed.

An EventType that is used to indicate that an edit in a TreeView has been committed.

def editStartEvent: EventType[EditEvent[Nothing]]

An EventType used to indicate that an edit event has started within the TreeView upon which the event was fired.

An EventType used to indicate that an edit event has started within the TreeView upon which the event was fired.

Deprecated methods

@deprecated("This method does not correctly calculate the distance from the given TreeItem to the root of the TreeView. ".+("As of JavaFX 8.0_20, the proper way to do this is via getTreeItemLevel(TreeItem)"), since = "8.0_20")
def nodeLevel(node: TreeItem[_]): Int

Returns the number of levels of 'indentation' of the given TreeItem, based on how many times getParent() can be recursively called.

Returns the number of levels of 'indentation' of the given TreeItem, based on how many times getParent() can be recursively called.

Deprecated
[Since version 8.0_20]

Implicits

Implicits

implicit def sfxTreeView2jfx[T](v: TreeView[T]): TreeView[T]