Uses of Class
org.controlsfx.control.action.Action
-
Packages that use Action Package Description impl.org.controlsfx.skin org.controlsfx.control A package containing a number of useful controls-related classes that do not exist in the base JavaFX distribution.org.controlsfx.control.action org.controlsfx.control.tableview2.actions -
-
Uses of Action in impl.org.controlsfx.skin
Methods in impl.org.controlsfx.skin that return types with arguments of type Action Modifier and Type Method Description abstract javafx.collections.ObservableList<Action>
NotificationBar. getActions()
-
Uses of Action in org.controlsfx.control
Subclasses of Action in org.controlsfx.control Modifier and Type Class Description static class
ListActionView.ListAction<T>
Specialized actions for ListActionView which get access to the internal ListView.static class
ListSelectionView.ListSelectionAction<T>
Specialized actions for ListSelectionView which get access to both the internal list views.class
ListSelectionView.MoveToSource
Action use to move the selected items from the target list view to the source list view.class
ListSelectionView.MoveToSourceAll
Action use to all the items from the target list view to the source list view.class
ListSelectionView.MoveToTarget
Action use to move the selected items from the source list view to the target list view.class
ListSelectionView.MoveToTargetAll
Action use to move all the items from the source list view to the target list view.Methods in org.controlsfx.control that return types with arguments of type Action Modifier and Type Method Description javafx.collections.ObservableList<Action>
ListActionView. getActions()
The list of actions shown on one of the sides of the ListView.javafx.collections.ObservableList<Action>
ListSelectionView. getActions()
The list of actions to be shown in between the two list views.javafx.collections.ObservableList<Action>
NotificationPane. getActions()
Observable list of actions used for the actions area of the notification bar.javafx.collections.ObservableList<Action>
ListSelectionView. getSourceActions()
These actions are shown beside the source list view.javafx.collections.ObservableList<Action>
ListSelectionView. getTargetActions()
These actions are shown beside the target list view.Methods in org.controlsfx.control with parameters of type Action Modifier and Type Method Description Notifications
Notifications. action(Action... actions)
Specifies the actions that should be shown in the notification as buttons.void
NotificationPane. show(String text, javafx.scene.Node graphic, Action... actions)
-
Uses of Action in org.controlsfx.control.action
Subclasses of Action in org.controlsfx.control.action Modifier and Type Class Description class
ActionGroup
An ActionGroup (unsurprisingly) groups together zero or moreAction
instances, allowing for more complex controls likeToolBar
,MenuBar
andContextMenu
to be automatically generated from the collection of actions inside the ActionGroup.class
AnnotatedAction
An action that invokes a method that has been annotated withActionProxy
.class
AnnotatedCheckAction
Fields in org.controlsfx.control.action declared as Action Modifier and Type Field Description static Action
ActionUtils. ACTION_SEPARATOR
Action representation of the generic separator.static Action
ActionUtils. ACTION_SPAN
Methods in org.controlsfx.control.action that return Action Modifier and Type Method Description static Action
ActionMap. action(String id)
Returns action by its id.Methods in org.controlsfx.control.action that return types with arguments of type Action Modifier and Type Method Description static Collection<Action>
ActionMap. actions(String... ids)
Returns collection of actions by ids.javafx.collections.ObservableList<Action>
ActionGroup. getActions()
The list ofAction
instances that exist within this ActionGroup.Methods in org.controlsfx.control.action with parameters of type Action Modifier and Type Method Description static javafx.scene.control.ButtonBase
ActionUtils. configureButton(Action action, javafx.scene.control.ButtonBase button)
Takes the providedAction
and binds the relevant properties to the suppliedButton
.static javafx.scene.control.ButtonBase
ActionUtils. configureButton(Action action, javafx.scene.control.ButtonBase button, ActionUtils.ActionTextBehavior textBehavior)
Takes the providedAction
and binds the relevant properties to the suppliedButton
.static javafx.scene.control.MenuItem
ActionUtils. configureMenuItem(Action action, javafx.scene.control.MenuItem menuItem)
static javafx.scene.control.Button
ActionUtils. createButton(Action action)
Takes the providedAction
and returns aButton
instance with all relevant properties bound to the properties of the Action.static javafx.scene.control.Button
ActionUtils. createButton(Action action, ActionUtils.ActionTextBehavior textBehavior)
Takes the providedAction
and returns aButton
instance with all relevant properties bound to the properties of the Action.static javafx.scene.control.CheckBox
ActionUtils. createCheckBox(Action action)
Takes the providedAction
and returns aCheckBox
instance with all relevant properties bound to the properties of the Action.static javafx.scene.control.CheckMenuItem
ActionUtils. createCheckMenuItem(Action action)
Takes the providedAction
and returns aCheckMenuItem
instance with all relevant properties bound to the properties of the Action.static javafx.scene.control.Hyperlink
ActionUtils. createHyperlink(Action action)
Takes the providedAction
and returns aHyperlink
instance with all relevant properties bound to the properties of the Action.static javafx.scene.control.Menu
ActionUtils. createMenu(Action action)
Takes the providedAction
and returns aMenu
instance with all relevant properties bound to the properties of the Action.static javafx.scene.control.MenuButton
ActionUtils. createMenuButton(Action action)
Takes the providedAction
and returns aMenuButton
instance with all relevant properties bound to the properties of the Action.static javafx.scene.control.MenuButton
ActionUtils. createMenuButton(Action action, ActionUtils.ActionTextBehavior textBehavior)
Takes the providedAction
and returns aMenuButton
instance with all relevant properties bound to the properties of the Action.static javafx.scene.control.MenuItem
ActionUtils. createMenuItem(Action action)
Takes the providedAction
and returns aMenuItem
instance with all relevant properties bound to the properties of the Action.static javafx.scene.control.RadioButton
ActionUtils. createRadioButton(Action action)
Takes the providedAction
and returns aRadioButton
instance with all relevant properties bound to the properties of the Action.static javafx.scene.control.RadioMenuItem
ActionUtils. createRadioMenuItem(Action action)
Takes the providedAction
and returns aRadioMenuItem
instance with all relevant properties bound to the properties of the Action.static SegmentedButton
ActionUtils. createSegmentedButton(Action... actions)
Takes the provided varargs array ofAction
and returns aSegmentedButton
instance with all relevant properties bound to the properties of the actions.static SegmentedButton
ActionUtils. createSegmentedButton(ActionUtils.ActionTextBehavior textBehavior, Action... actions)
Takes the provided varargs array ofAction
and returns aSegmentedButton
instance with all relevant properties bound to the properties of the actions.static javafx.scene.control.ToggleButton
ActionUtils. createToggleButton(Action action)
Takes the providedAction
and returns aToggleButton
instance with all relevant properties bound to the properties of the Action.static javafx.scene.control.ToggleButton
ActionUtils. createToggleButton(Action action, ActionUtils.ActionTextBehavior textBehavior)
Takes the providedAction
and returns aToggleButton
instance with all relevant properties bound to the properties of the Action.Method parameters in org.controlsfx.control.action with type arguments of type Action Modifier and Type Method Description static javafx.scene.control.ButtonBar
ActionUtils. createButtonBar(Collection<? extends Action> actions)
Takes the providedCollection
ofAction
(or subclasses, such asActionGroup
) instances and returns aButtonBar
populated with appropriatenodes
bound to the providedactions
.static javafx.scene.control.ContextMenu
ActionUtils. createContextMenu(Collection<? extends Action> actions)
Takes the providedCollection
ofAction
(or subclasses, such asActionGroup
) instances and returns aContextMenu
populated with appropriatenodes
bound to the providedactions
.static javafx.scene.control.MenuBar
ActionUtils. createMenuBar(Collection<? extends Action> actions)
Takes the providedCollection
ofAction
(or subclasses, such asActionGroup
) instances and returns aMenuBar
populated with appropriatenodes
bound to the providedactions
.static SegmentedButton
ActionUtils. createSegmentedButton(Collection<? extends Action> actions)
Takes the providedCollection
ofAction
and returns aSegmentedButton
instance with all relevant properties bound to the properties of the actions.static SegmentedButton
ActionUtils. createSegmentedButton(ActionUtils.ActionTextBehavior textBehavior, Collection<? extends Action> actions)
Takes the providedCollection
ofAction
and returns aSegmentedButton
instance with all relevant properties bound to the properties of the actions.static javafx.scene.control.ToolBar
ActionUtils. createToolBar(Collection<? extends Action> actions, ActionUtils.ActionTextBehavior textBehavior)
Takes the providedCollection
ofAction
(or subclasses, such asActionGroup
) instances and returns aToolBar
populated with appropriatenodes
bound to the providedactions
.static javafx.scene.control.ButtonBar
ActionUtils. updateButtonBar(javafx.scene.control.ButtonBar buttonBar, Collection<? extends Action> actions)
Takes the providedCollection
ofAction
(or subclasses, such asActionGroup
) instances and updates aButtonBar
populated with appropriatenodes
bound to the providedactions
.static javafx.scene.control.ContextMenu
ActionUtils. updateContextMenu(javafx.scene.control.ContextMenu menu, Collection<? extends Action> actions)
Takes the providedCollection
ofAction
(or subclasses, such asActionGroup
) instances and updates aContextMenu
populated with appropriatenodes
bound to the providedactions
.static javafx.scene.control.MenuBar
ActionUtils. updateMenuBar(javafx.scene.control.MenuBar menuBar, Collection<? extends Action> actions)
Takes the providedCollection
ofAction
(or subclasses, such asActionGroup
) instances and updates aMenuBar
populated with appropriatenodes
bound to the providedactions
.static javafx.scene.control.ToolBar
ActionUtils. updateToolBar(javafx.scene.control.ToolBar toolbar, Collection<? extends Action> actions, ActionUtils.ActionTextBehavior textBehavior)
Takes the providedCollection
ofAction
(or subclasses, such asActionGroup
) instances and returns providedToolBar
populated with appropriatenodes
bound to the providedactions
.Constructors in org.controlsfx.control.action with parameters of type Action Constructor Description ActionGroup(String text, javafx.scene.Node icon, Action... actions)
Creates an ActionGroup with the given text as the name of theAction
, and zero or more Actions as members of this ActionGroup.ActionGroup(String text, Action... actions)
Creates an ActionGroup with the given text as the name of theAction
, and zero or more Actions as members of this ActionGroup.Constructor parameters in org.controlsfx.control.action with type arguments of type Action Constructor Description ActionGroup(String text, Collection<Action> actions)
Creates an ActionGroup with the given text as the name of theAction
, and collection of Actions as members of this ActionGroup.ActionGroup(String text, javafx.scene.Node icon, Collection<Action> actions)
Creates an ActionGroup with the given text as the name of theAction
, and collection of Actions as members of this ActionGroup. . -
Uses of Action in org.controlsfx.control.tableview2.actions
Subclasses of Action in org.controlsfx.control.tableview2.actions Modifier and Type Class Description class
ColumnFixAction
A custom action that can be added to the ContextMenu of a column header, allowing the user to fix or unfix the column.class
RowFixAction
A custom action that can be added to the ContextMenu of any row in the row header, allowing the user to fix or unfix the row.
-