Packages

  • package root

    ScalaFX is a UI DSL written within the Scala Language that sits on top of JavaFX 2.x and and JavaFX 8.

    ScalaFX is a UI DSL written within the Scala Language that sits on top of JavaFX 2.x and and JavaFX 8. This means that every ScalaFX application is also a valid Scala application. By extension it supports full interoperability with Java and can run anywhere the Java Virtual Machine (JVM) and JavaFX 2.0 or JavaFX 8 are supported.

    Package Structure

    ScalaFX package structure corresponds to JavaFX package structure, for instance scalafx.animation corresponds to javafx.animation.

    Example Usage

    A basic ScalaFX application is created creating an object that is an instance of JFXApp3. Following Java FX theatre metaphor, it contains a stage that contains a scene. A stage roughly corresponds to a window in a typical UI environment. The scene holds UI content presented to the user. In the example below, the content is a pane with a single label component.

    package hello
    
    import scalafx.application.JFXApp3
    import scalafx.geometry.Insets
    import scalafx.scene.Scene
    import scalafx.scene.control.Label
    import scalafx.scene.layout.BorderPane
    
    object HelloWorld extends JFXApp3 {
    
      override def start(): Unit = {
        stage = new JFXApp3.PrimaryStage {
          title = "Hello"
          scene = new Scene {
            root = new BorderPane {
              padding = Insets(75)
              center = new Label("Hello World")
            }
          }
        }
      }
    }
    Definition Classes
    root
  • package scalafx

    Base package for ScalaFX classes.

    Base package for ScalaFX classes.

    Definition Classes
    root
  • package scene

    Wraps javafx.scene package.

    Wraps javafx.scene package.

    Definition Classes
    scalafx
  • package control

    Wraps javafx.scene.control package.

    Wraps javafx.scene.control package.

    Definition Classes
    scene
  • object TableView

    Object companion for scalafx.scene.controlTableView.

    Object companion for scalafx.scene.controlTableView.

    Definition Classes
    control
  • ResizeFeatures
  • TableViewFocusModel
  • TableViewSelectionModel

class TableViewFocusModel[S] extends TableFocusModel[S, javafx.scene.control.TableColumn[S, _]] with SFXDelegate[javafx.scene.control.TableView.TableViewFocusModel[S]]

Wraps a JavaFX TableViewFocusModel.

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

Instance Constructors

  1. new TableViewFocusModel(tableView: TableView[S])

    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.

    tableView

    The tableView upon which this focus model operates.

  2. new TableViewFocusModel(delegate: javafx.scene.control.TableView.TableViewFocusModel[S])

    Creates a new ScalaFX TableViewFocusModel from its JavaFX counterpart.

    Creates a new ScalaFX TableViewFocusModel from its JavaFX counterpart.

    delegate

    JavaFX TableViewFocusModel to be wrapped.

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. val delegate: javafx.scene.control.TableView.TableViewFocusModel[S]

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    TableViewFocusModelTableFocusModelFocusModelSFXDelegate
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(ref: Any): Boolean

    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 focus(pos: TablePosition[_, _]): Unit

    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.

  10. def focus(index: Int, column: TableColumn[S, _]): Unit

    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.

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

    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
  12. def focus(index: Int): Unit

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

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

    index

    The index of the item to get focus.

    Definition Classes
    FocusModel
  13. def focusAboveCell(): Unit

    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
  14. def focusBelowCell(): Unit

    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
  15. def focusLeftCell(): Unit

    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
  16. def focusNext(): Unit

    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
  17. def focusPrevious(): Unit

    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
  18. def focusRightCell(): Unit

    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
  19. def focusedCell: ReadOnlyObjectProperty[javafx.scene.control.TablePosition[_, _]]

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

  20. def focusedIndex: ReadOnlyIntegerProperty

    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
  21. def focusedItem: ReadOnlyObjectProperty[S]

    The current item in the FocusModel which has the focus.

    The current item in the FocusModel which has the focus.

    Definition Classes
    FocusModel
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def hashCode(): Int

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  24. def isFocused(row: Integer, column: javafx.scene.control.TableColumn[S, _]): Boolean

    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
  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
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String

    returns

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

    Definition Classes
    SFXDelegate → AnyRef → Any
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

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

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

Inherited from FocusModel[S]

Inherited from SFXDelegate[javafx.scene.control.TableView.TableViewFocusModel[S]]

Inherited from AnyRef

Inherited from Any

Ungrouped