Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Accordion.html.
The Alert class subclasses the Dialog
class, and provides support for a number
of pre-built dialog types that can be easily shown to users to prompt for a
response.
The Alert class subclasses the Dialog
class, and provides support for a number
of pre-built dialog types that can be easily shown to users to prompt for a
response.
Wraps a JavaFX Alert.
Example of displaying an information dialog:
new Alert(AlertType.Information) { title = "Information Dialog" headerText = "Look, an Information Dialog" contentText = "I have a great message for you!" }.showAndWait()
A bit more elaborated example that is using a custom buttons:
val One = new ButtonType("One") val Two = new ButtonType("Two") val Three = new ButtonType("Three") val alert = new Alert(AlertType.Confirmation) { title = "Confirmation Dialog with Custom Actions" headerText = "Look, a Confirmation Dialog with Custom Actions" contentText = "Choose your option." buttonTypes = Seq(One, Two, Three, ButtonType.Cancel) } val result = alert.showAndWait() result match { case Some(One) => println("... user chose \"One\"") case Some(Two) => println("... user chose \"Two\"") case Some(Three) => println("... user chose \"Three\"") case _ => println("... user chose CANCEL or closed the dialog") }
A ButtonBar is essentially a HBox, with the additional functionality for operating system specific button placement.
A ButtonBar is essentially a HBox, with the additional functionality for operating system specific button placement.
Wraps a JavaFX ButtonBar.
The ButtonType is used to specify which buttons should be shown to users in the dialogs.
The ButtonType is used to specify which buttons should be shown to users in the dialogs.
Wraps a JavaFX ButtonType.
A MenuItem that can be toggled between selected and unselected states.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ChoiceBox.html.
A dialog that shows a list of choices to the user, from which they can pick one item at most.
A dialog that shows a list of choices to the user, from which they can pick one item at most.
Wraps a JavaFX ChoiceDialog.
The type of the items to show to the user, and the type that is returned
via result
when the dialog is dismissed.
Dialog
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Pagination.html
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ContextMenu.html.
Contains implicit methods to convert from
javafx.scene.control
classes/traits to their ScalaFX counterparts.
A MenuItem that allows for arbitrary nodes to be embedded within it, by assigning a Node to the content property.
A MenuItem that allows for arbitrary nodes to be embedded within it, by assigning a Node to the content property.
Wraps a JavaFX CustomMenuItem.
Helper trait for converting dialog return type.
Helper trait for converting dialog return type. Not intended for separate use.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/DateCell.html.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/DatePicker.html.
A Dialog wraps a DialogPane and provides the necessary API to present it to end users.
A Dialog wraps a DialogPane and provides the necessary API to present it to end users.
Wraps a JavaFX Dialog.
The default return type of the dialog, via the result property or showAndWait
method.
Event related to dialog showing/hiding actions.
Event related to dialog showing/hiding actions. Wraps a JavaFX DialogEvent.
DialogPane should be considered to be the root node displayed within a Dialog instance.
DialogPane should be considered to be the root node displayed within a Dialog instance.
Wraps a JavaFX DialogPane.
Wraps a JavaFX FocusModel.
Wraps a JavaFX FocusModel.
The type of the underlying data model for the UI control.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Menu.html.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/MenuButton.html.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Pagination.html
Wraps a JavaFX PopupControl.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ProgressIndicator.html
Wrapper class for scalafx.scene.control.RadioMenuItem
Wraps JavaFX ResizeFeaturesBase.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ScrollBar.html
Wraps JavaFX ScrollToEvent.
Wraps JavaFX ScrollToEvent.
scroll target type
A MenuItem that as the name suggests allows for a horizontal Separator to be embedded within it, by assigning a Separator to the content property of the CustomMenuItem.
A MenuItem that as the name suggests allows for a horizontal Separator to be embedded within it, by assigning a Separator to the content property of the CustomMenuItem.
Wraps a JavaFX SeparatorMenuItem.
Wraps javafx.scene.control.Skinnable interface.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SkinBase.html.
Wraps a JavaFX SortEvent.
A single line text field that lets the user select a number or an object value from an ordered sequence.
A single line text field that lets the user select a number or an object value from an ordered sequence.
Wraps a $JFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Spinner.html.
The type of all values that can be iterated through in the Spinner. Common types include Integer and String.
The SpinnerValueFactory is the model behind the Spinner
control - without a value factory installed a
Spinner
is unusable.
The SpinnerValueFactory is the model behind the Spinner
control - without a value factory installed a
Spinner
is unusable.
Wraps a JavaFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/SpinnerValueFactory.html.
The type of the data this value factory deals with, which must coincide with the type of the Spinner that the value factory is set on.
Wrapper for javafx.scene.control.SplitMenuButton
.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableCell.html.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableColumn.html.
Wraps http://docs.oracle.com/javafx/8/api/javafx/scene/control/TableColumnBase.html.
Wraps a JavaFX TableFocusModel.
Wraps a JavaFX TableFocusModel.
The type of the underlying data model for the UI control.
The concrete subclass of scalafx.scene.control.TableColumnBase that is used by
the underlying UI control (e.g. scalafx.scene.control.TableColumn or TreeTableColumn
).
8.0
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TablePosition.html.
The type of the items contained within the TableView (i.e. the same generic type as the S in TableView<S>).
The type of the items contained within the TableColumn.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TablePosition.html.
A JavaFX TableColumnBase subclass
8.0
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TableRow.html.
Wraps JavaFX TableSelectionModel.
Wraps JavaFX TableSelectionModel.
The type of the underlying data model for the UI control.
8.0
Wraps JavaFX TableView.
Wraps JavaFX TableView.
The type of the objects contained within the TableView items list.
A Formatter describes a format of a TextInputControl
text.
A Formatter describes a format of a TextInputControl
text.
Wraps a JavaFX TextFormatter.
A dialog that shows a text input control to the user.
A dialog that shows a text input control to the user.
Wraps a JavaFX TextInputDialog.
Wrapper trait to Toggle interface.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ToggleGroup.html.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/ToolBar.html.
Wraps a JavaFX Tooltip.
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeCell.html
The type of the value contained within the TreeItem
property.
Wraps javafx.scene.control.TreeItem class.
Wraps JavaFX TreeSortMode.
Wraps a JavaFX TreeTableCell.
Wraps a JavaFX TreeTableCell.
The type of the item contained within the Cell.
The type of the item contained within the Cell.
8.0
Wraps a JavaFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableColumn.html
The type of the TreeTableView generic type (i.e. S == TreeTableView<S>)
The type of the content in all cells in this TreeTableColumn.
8.0
Wraps a JavaFX TreeTablePosition.
Wraps a JavaFX TreeTablePosition.
The type of the TreeItem instances contained within the TreeTableView.
The type of the items contained within the TreeTableColumn.
8.0
Wraps a JavaFX TreeTableRow.
The TreeTableView
control is designed to visualize an unlimited number of rows of data, broken out into columns.
The TreeTableView
control is designed to visualize an unlimited number of rows of data, broken out into columns.
The TreeTableView
control is conceptually very similar to the TreeView
and TableView
controls,
and as you read on you'll come to see the APIs are largely the same. However, to give a high-level overview,
you'll note that the TreeTableView
uses the same TreeItem
API as TreeView
, and that you therefore are required
to simply set the root node in the TreeTableView
. Similarly, the TreeTableView
control makes use of the same
TableColumn
-based approach that the TableView
control uses, except instead of using the TableView
-specific
TableColumn
class, you should instead use the TreeTableView
-specific TreeTableColumn
class instead.
Wraps a JavaFX http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/TreeTableView.TreeTableView.html
The type of the TreeItem instances used in this TreeTableView.
8.0
(Since version 8.0.60-R10) Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)
Object companion for scalafx.scene.control.ButtonBar.
Object companion for scalafx.scene.control.ButtonType.
Wrapper for scalafx.scene.control.ContentDisplay
Object companion for CustomMenuItem.
Object companion for scalafx.scene.control.Dialog.
Object companion for scalafx.scene.control.DialogEvent.
Object companion for scalafx.scene.control.DialogPane.
Object companion for scalafx.scene.control.FocusModel.
Wrapper for scalafx.scene.control.OverrunStyle
Object companion for scalafx.scene.control.PopupControl.
Object companion for scalafx.scene.control.ResizeFeaturesBase
Object companion for scalafx.scene.control.ResizeFeaturesBase
8.0
Companion Object for scalafx.scene.control.ScrollToEvent.
Wrapper for scalafx.scene.control.SelectionMode
Object companion for scalafx.scene.control.SeparatorMenuItem.
Object Companion for scalafx.scene.control.SortEvent
Object Companion for scalafx.scene.control.SortEvent
8.0
Object companion for scalafx.scene.control.TableFocusModel.
Object companion for scalafx.scene.control.TableFocusModel.
8.0
Object companion for scalafx.scene.control.TablePosition
Object companion for scalafx.scene.control.TablePositionBase
Object companion for scalafx.scene.control.TablePositionBase
8.0
Object companion for scalafx.scene.control.TablePositionBase
Object companion for scalafx.scene.control.TablePositionBase
8.0
Object companion for scalafx.scene.controlTableView.
Object companion for scalafx.scene.control.PopupControl.
Wrapper for scalafx.scene.control.TreeSortMode
Object Companion for scalafx.scene.control.SortEvent
Object Companion for scalafx.scene.control.SortEvent
8.0
Object companion for scalafx.scene.control.TreeTableColumn
Object companion for scalafx.scene.control.TreeTablePosition.
Object companion for scalafx.scene.control.TreeTablePosition.
8.0
Object companion for scalafx.scene.control.TreeTableRow.
Object companion for scalafx.scene.control.TreeTableRow.
8.0
Object companion for scalafx.scene.control.TreeTableView
Wraps javafx.scene.control.cell
package.
(Since version 8.0.60-R10) Use of TextFieldProperty can result in infinite recursion and StackOverflow errors. See discussion of [Issue #69](https://github.com/scalafx/scalafx/issues/69)
Wraps
javafx.scene.control
package.