scalafx.scene.control

TreeTableView

object TreeTableView

Object companion for scalafx.scene.control.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
Learn more about member selection
Visibility
  1. Public
  2. All

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.

  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.

  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.

  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.

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. 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.

  7. 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.

  8. object EditEvent

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

  9. object ResizeFeatures

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

  10. object TreeTableViewFocusModel

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

  11. object TreeTableViewSelectionModel

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

  12. 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.

  13. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  14. 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

  15. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  16. def editAnyEvent[T]: EventType[javafx.scene.control.TreeTableView.EditEvent[T]]

    An EventType that indicates some edit event has occurred.

  17. 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.

  18. 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.

  19. 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.

  20. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  21. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  22. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  23. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  24. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  25. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  26. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  27. final def notify(): Unit

    Definition Classes
    AnyRef
  28. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  29. 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

  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toString(): String

    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped