Class/Object

scalafx.scene.control.TreeTableView

TreeTableViewFocusModel

Related Docs: object TreeTableViewFocusModel | package TreeTableView

Permalink

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.

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

Source
TreeTableView.scala
Linear Supertypes
TableFocusModel[javafx.scene.control.TreeItem[S], javafx.scene.control.TreeTableColumn[S, _]], FocusModel[javafx.scene.control.TreeItem[S]], SFXDelegate[javafx.scene.control.TreeTableView.TreeTableViewFocusModel[S]], AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TreeTableViewFocusModel
  2. TableFocusModel
  3. FocusModel
  4. SFXDelegate
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TreeTableViewFocusModel(treeTableView: TreeTableView[S])

    Permalink

    Creates a default TableViewFocusModel instance that will be used to manage focus of the provided TableView control.

    Creates a default TableViewFocusModel instance that will be used to manage focus of the provided TableView control.

    treeTableView

    The tableView upon which this focus model operates.

  2. new TreeTableViewFocusModel(delegate: javafx.scene.control.TreeTableView.TreeTableViewFocusModel[S])

    Permalink

    Creates a new ScalaFX TreeTableViewFocusModel from its JavaFX counterpart.

    Creates a new ScalaFX TreeTableViewFocusModel from its JavaFX counterpart.

    delegate

    JavaFX TreeTableViewFocusModel to be wrapped.

Type Members

  1. type Delegate = javafx.scene.control.TreeTableView.TreeTableViewFocusModel[S]

    Permalink

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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. val delegate: javafx.scene.control.TreeTableView.TreeTableViewFocusModel[S]

    Permalink

    JavaFX TreeTableViewFocusModel to be wrapped.

    JavaFX TreeTableViewFocusModel to be wrapped.

    Definition Classes
    TreeTableViewFocusModelTableFocusModelFocusModelSFXDelegate
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(ref: Any): Boolean

    Permalink

    Verifies if a object is equals to this delegate.

    Verifies if a object is equals to this delegate.

    ref

    Object to be compared.

    returns

    if the other object is equals to this delegate or not.

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. def focus(index: Int): Unit

    Permalink

    Causes the item at the given index to receive the focus.

    Causes the item at the given index to receive the focus. This does not cause the current selection to change. Updates the focusedItem and focusedIndex properties such that focusedIndex = -1 unless 0 <= index < model size .

    index

    The index of the item to get focus.

    Definition Classes
    TreeTableViewFocusModelFocusModel
  11. def focus(pos: TreeTablePosition[S, _]): Unit

    Permalink

    Convenience method for setting focus on a particular row or cell using a scalafx.scene.control.TablePosition.

    Convenience method for setting focus on a particular row or cell using a scalafx.scene.control.TablePosition.

    pos

    The table position where focus should be set.

  12. def focus(index: Int, column: TreeTableColumn[S, _]): Unit

    Permalink

    Causes the item at the given index to receive the focus.

    Causes the item at the given index to receive the focus.

    index

    The row index of the item to give focus to.

    column

    The column of the item to give focus to. Can be null.

  13. def focus(row: Int, column: javafx.scene.control.TreeTableColumn[S, _]): Unit

    Permalink

    Causes the item at the given index to receive the focus.

    Causes the item at the given index to receive the focus.

    row

    The row index of the item to give focus to.

    column

    The column of the item to give focus to. Can be null.

    Definition Classes
    TableFocusModel
  14. def focusAboveCell(): Unit

    Permalink

    Attempts to move focus to the cell above the currently focused cell.

    Attempts to move focus to the cell above the currently focused cell.

    Definition Classes
    TableFocusModel
  15. def focusBelowCell(): Unit

    Permalink

    Attempts to move focus to the cell below the currently focused cell.

    Attempts to move focus to the cell below the currently focused cell.

    Definition Classes
    TableFocusModel
  16. def focusLeftCell(): Unit

    Permalink

    Attempts to move focus to the cell to the left of the currently focused cell.

    Attempts to move focus to the cell to the left of the currently focused cell.

    Definition Classes
    TableFocusModel
  17. def focusNext(): Unit

    Permalink

    Attempts to give focus to the row after to the currently focused row.

    Attempts to give focus to the row after to the currently focused row.

    Definition Classes
    FocusModel
  18. def focusPrevious(): Unit

    Permalink

    Attempts to give focus to the row previous to the currently focused row.

    Attempts to give focus to the row previous to the currently focused row.

    Definition Classes
    FocusModel
  19. def focusRightCell(): Unit

    Permalink

    Attempts to move focus to the cell to the right of the the currently focused cell.

    Attempts to move focus to the cell to the right of the the currently focused cell.

    Definition Classes
    TableFocusModel
  20. def focusedCell: ReadOnlyObjectProperty[javafx.scene.control.TreeTablePosition[S, _]]

    Permalink

    The position of the current item in the TableView which has the focus.

  21. def focusedIndex: ReadOnlyIntegerProperty

    Permalink

    The index of the current item in the FocusModel which has the focus.

    The index of the current item in the FocusModel which has the focus.

    Definition Classes
    FocusModel
  22. def focusedItem: ReadOnlyObjectProperty[javafx.scene.control.TreeItem[S]]

    Permalink

    The current item in the FocusModel which has the focus.

    The current item in the FocusModel which has the focus.

    Definition Classes
    FocusModel
  23. final def getClass(): Class[_]

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

    Permalink

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  25. def isFocused(row: Int, column: TreeTableColumn[S, _]): Boolean

    Permalink

    Tests whether the row / cell at the given location currently has the focus within the TableView.

    Tests whether the row / cell at the given location currently has the focus within the TableView.

    row

    The row index of the item to be checked.

    column

    The column index of the item to be checked.

  26. def isFocused(row: Integer, column: javafx.scene.control.TreeTableColumn[S, _]): Boolean

    Permalink

    Tests whether the row / cell at the given location currently has the focus within the UI control.

    Tests whether the row / cell at the given location currently has the focus within the UI control.

    row

    The row index of the item to give focus to.

    column

    The column of the item to give focus to. Can be null.

    returns

    true whether the row / cell at the given location currently has the focus within the UI control.

    Definition Classes
    TableFocusModel
  27. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  31. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink

    returns

    Returns the original delegate's toString() adding a [SFX] prefix.

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

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

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

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

Inherited from TableFocusModel[javafx.scene.control.TreeItem[S], javafx.scene.control.TreeTableColumn[S, _]]

Inherited from FocusModel[javafx.scene.control.TreeItem[S]]

Inherited from SFXDelegate[javafx.scene.control.TreeTableView.TreeTableViewFocusModel[S]]

Inherited from AnyRef

Inherited from Any

Ungrouped