Object/Class

scalafx.scene.control

TreeTableView

Related Docs: class TreeTableView | package control

Permalink

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
Visibility
  1. Public
  2. All

Type Members

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

    Permalink

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

    Permalink

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

    Permalink

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

    Permalink

    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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. val ConstrainedResizePolicy: (ResizeFeatures[_]) ⇒ Boolean

    Permalink

    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

    Permalink

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

    Permalink

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

  7. object ResizeFeatures

    Permalink

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

  8. object TreeTableViewFocusModel

    Permalink

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

  9. object TreeTableViewSelectionModel

    Permalink

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

  10. val UnconstrainedResizePolicy: (ResizeFeatures[_]) ⇒ Boolean

    Permalink

    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.

  11. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  12. def classCssMetaData: Buffer[CssMetaData[_ <: Styleable, _]]

    Permalink

    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

  13. def clone(): AnyRef

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

    Permalink

    An EventType that indicates some edit event has occurred.

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

    Permalink

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

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

    Permalink

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

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

    Permalink

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  25. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  26. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  27. implicit def sfxTreeTableView2jfx[T](v: TreeTableView[T]): javafx.scene.control.TreeTableView[T]

    Permalink

    Converts a ScalaFX TreeTableView instance to its JavaFX counterpart.

    Converts a ScalaFX TreeTableView instance to its JavaFX counterpart.

    v

    ScalaFX TreeTableView

    returns

    JavaFX TreeTableView

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

    Permalink
    Definition Classes
    AnyRef
  29. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped