Packages

object TreeTableView

Source
TreeTableView.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TreeTableView
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class EditEvent[T] extends Event with SFXDelegate[javafx.scene.control.TreeTableView.EditEvent[T]]

    An Event subclass used specifically in TreeTableView for representing edit-related events.

    An Event subclass used specifically in TreeTableView for representing edit-related events. It provides additional API to easily access the TreeItem that the edit event took place on, as well as the input provided by the end user.

    Wraps a JavaFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.EditEvent.html

  2. class ResizeFeatures[S] extends ResizeFeaturesBase[javafx.scene.control.TreeItem[S]] with SFXDelegate[javafx.scene.control.TreeTableView.ResizeFeatures[S]]

    An immutable wrapper class for use in the TableView column resize functionality.

    An immutable wrapper class for use in the TableView column resize functionality.

    Wraps a JavaFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.ResizeFeatures.html

  3. class TreeTableViewFocusModel[S] extends TableFocusModel[javafx.scene.control.TreeItem[S], javafx.scene.control.TreeTableColumn[S, _]] with SFXDelegate[javafx.scene.control.TreeTableView.TreeTableViewFocusModel[S]]

    A FocusModel with additional functionality to support the requirements of a TableView control.

    A FocusModel with additional functionality to support the requirements of a TableView control.

    Wraps a JavaFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.TreeTableViewFocusModel.html

  4. abstract class TreeTableViewSelectionModel[S] extends SFXDelegate[javafx.scene.control.TreeTableView.TreeTableViewSelectionModel[S]]

    A simple extension of the SelectionModel abstract class to allow for special support for TreeTableView controls.

    A simple extension of the SelectionModel abstract class to allow for special support for TreeTableView controls.

    Wraps a JavaFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.TreeTableViewSelectionModel.html

    Since

    8.0

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val ConstrainedResizePolicy: (ResizeFeatures[_]) => Boolean

    Simple policy that ensures the width of all visible leaf columns in this table sum up to equal the width of the table itself.

    Simple policy that ensures the width of all visible leaf columns in this table sum up to equal the width of the table itself.

    When the user resizes a column width with this policy, the table automatically adjusts the width of the right hand side columns. When the user increases a column width, the table decreases the width of the rightmost column until it reaches its minimum width. Then it decreases the width of the second rightmost column until it reaches minimum width and so on. When all right hand side columns reach minimum size, the user cannot increase the size of resized column any more.

  5. val DefaultSortPolicy: (TreeTableView[_]) => Boolean

    The default sort policy that this TreeTableView will use if no other policy is specified.

    The default sort policy that this TreeTableView will use if no other policy is specified. The sort policy is a simple Callback that accepts a TreeTableView as the sole argument and expects a Boolean response representing whether the sort succeeded or not. A Boolean response of true represents success, and a response of false (or null) will be considered to represent failure.

  6. val UnconstrainedResizePolicy: (ResizeFeatures[_]) => Boolean

    Very simple resize policy that just resizes the specified column by the provided delta and shifts all other columns (to the right of the given column) further to the right (when the delta is positive) or to the left (when the delta is negative).

    Very simple resize policy that just resizes the specified column by the provided delta and shifts all other columns (to the right of the given column) further to the right (when the delta is positive) or to the left (when the delta is negative).

    It also handles the case where we have nested columns by sharing the new space, or subtracting the removed space, evenly between all immediate children columns. Of course, the immediate children may themselves be nested, and they would then use this policy on their children.

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def classCssMetaData: Buffer[CssMetaData[_ <: Styleable, _]]

    The CssMetaData associated with this class, which may include the CssMetaData of its super classes.

    The CssMetaData associated with this class, which may include the CssMetaData of its super classes.

    Since

    8.0

  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  10. def editAnyEvent[T]: EventType[javafx.scene.control.TreeTableView.EditEvent[T]]

    An EventType that indicates some edit event has occurred.

  11. def editCancelEvent[T]: EventType[javafx.scene.control.TreeTableView.EditEvent[T]]

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

  12. def editCommitEvent[T]: EventType[javafx.scene.control.TreeTableView.EditEvent[T]]

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

  13. def editStartEvent[T]: EventType[javafx.scene.control.TreeTableView.EditEvent[T]]

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

  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. implicit def sfxTreeTableView2jfx[T](v: TreeTableView[T]): javafx.scene.control.TreeTableView[T]

    Converts a ScalaFX TreeTableView instance to its JavaFX counterpart.

    Converts a ScalaFX TreeTableView instance to its JavaFX counterpart.

    v

    ScalaFX TreeTableView

    returns

    JavaFX TreeTableView

  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. object EditEvent

    Object companion for scalafx.scene.control.TreeTableView.EditEvent

  29. object ResizeFeatures

    Object companion for scalafx.scene.control.TreeTableView.ResizeFeatures

  30. object TreeTableViewFocusModel

    Object companion for scalafx.scene.control.TreeTableView.TreeTableViewFocusModel

  31. object TreeTableViewSelectionModel

    Object companion for scalafx.scene.control.TreeTableView.TreeTableViewFocusModel

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped