object TableView
- Alphabetic
- By Inheritance
- TableView
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
class
ResizeFeatures[S] extends ResizeFeaturesBase[S] with SFXDelegate[javafx.scene.control.TableView.ResizeFeatures[S]]
Wraps a JavaFX ResizeFeatures.
-
class
TableViewFocusModel[S] extends TableFocusModel[S, javafx.scene.control.TableColumn[S, _]] with SFXDelegate[javafx.scene.control.TableView.TableViewFocusModel[S]]
Wraps a JavaFX TableViewFocusModel.
-
abstract
class
TableViewSelectionModel[S] extends TableSelectionModel[S] with SFXDelegate[javafx.scene.control.TableView.TableViewSelectionModel[S]]
Wraps a JavaFX TableViewSelectionModel.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
val
ConstrainedResizePolicy: Callback[javafx.scene.control.TableView.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.
It delegates to JavaFX CONSTRAINED_RESIZE_POLICY
-
val
UnconstrainedResizePolicy: Callback[javafx.scene.control.TableView.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 delegates to JavaFX UNCONSTRAINED_RESIZE_POLICY
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @HotSpotIntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
implicit
def
sfxTableView2jfx[S](tv: TableView[S]): javafx.scene.control.TableView[S]
Converts a ScalaFX TableView instance to its JavaFX counterpart.
Converts a ScalaFX TableView instance to its JavaFX counterpart.
- tv
ScalaFX TableView
- returns
JavaFX TableView
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
object
ResizeFeatures
Object companion for scalafx.scene.controlTableView.ResizeFeatures.
-
object
TableViewFocusModel
Object companion for scalafx.scene.controlTableView.TableViewFocusModel.
-
object
TableViewSelectionModel
Object companion for scalafx.scene.controlTableView.TableViewSelectionModel.
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 tojavafx.animation
.Example Usage
A basic ScalaFX application is created creating an object that is an instance of
JFXApp
. Following Java FX theatre metaphor, it contains astage
that contains ascene
. Astage
roughly corresponds to a window in a typical UI environment. Thescene
holds UI content presented to the user. In the example below, the content is a pane with a singlelabel
component.