Uses of Class
org.controlsfx.control.action.Action
Packages that use Action
Package
Description
A package containing a number of useful controls-related classes that do not
exist in the base JavaFX distribution.
-
Uses of Action in impl.org.controlsfx.skin
Methods in impl.org.controlsfx.skin that return types with arguments of type ActionModifier and TypeMethodDescriptionabstract javafx.collections.ObservableList
<Action> NotificationBar.getActions()
-
Uses of Action in org.controlsfx.control
Subclasses of Action in org.controlsfx.controlModifier and TypeClassDescriptionstatic class
Specialized actions for ListActionView which get access to the internal ListView.static class
Specialized actions for ListSelectionView which get access to both the internal list views.class
Action use to move the selected items from the target list view to the source list view.class
Action use to all the items from the target list view to the source list view.class
Action use to move the selected items from the source list view to the target list view.class
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 ActionModifier and TypeMethodDescriptionfinal javafx.collections.ObservableList
<Action> ListActionView.getActions()
The list of actions shown on one of the sides of the ListView.final javafx.collections.ObservableList
<Action> ListSelectionView.getActions()
The list of actions to be shown in between the two list views.final javafx.collections.ObservableList
<Action> NotificationPane.getActions()
Observable list of actions used for the actions area of the notification bar.final javafx.collections.ObservableList
<Action> ListSelectionView.getSourceActions()
These actions are shown beside the source list view.final javafx.collections.ObservableList
<Action> ListSelectionView.getTargetActions()
These actions are shown beside the target list view.Methods in org.controlsfx.control with parameters of type ActionModifier and TypeMethodDescriptionSpecifies the actions that should be shown in the notification as buttons.void
-
Uses of Action in org.controlsfx.control.action
Subclasses of Action in org.controlsfx.control.actionModifier and TypeClassDescriptionclass
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
An action that invokes a method that has been annotated withActionProxy
.class
Fields in org.controlsfx.control.action declared as ActionModifier and TypeFieldDescriptionstatic Action
ActionUtils.ACTION_SEPARATOR
Action representation of the generic separator.static Action
ActionUtils.ACTION_SPAN
Methods in org.controlsfx.control.action that return ActionMethods in org.controlsfx.control.action that return types with arguments of type ActionModifier and TypeMethodDescriptionstatic Collection
<Action> Returns collection of actions by ids.final 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 ActionModifier and TypeMethodDescriptionstatic 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 ActionModifier and TypeMethodDescriptionstatic 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 ActionModifierConstructorDescriptionActionGroup
(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 ActionModifierConstructorDescriptionActionGroup
(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.actionsModifier and TypeClassDescriptionclass
A custom action that can be added to the ContextMenu of a column header, allowing the user to fix or unfix the column.class
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.