Uses of Enum
org.controlsfx.control.action.ActionUtils.ActionTextBehavior
Packages that use ActionUtils.ActionTextBehavior
Package
Description
-
Uses of ActionUtils.ActionTextBehavior in org.controlsfx.control.action
Methods in org.controlsfx.control.action that return ActionUtils.ActionTextBehaviorModifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static ActionUtils.ActionTextBehavior[]
ActionUtils.ActionTextBehavior.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.controlsfx.control.action with parameters of type ActionUtils.ActionTextBehaviorModifier and TypeMethodDescriptionstatic 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.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.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 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 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, ActionUtils.ActionTextBehavior textBehavior) Takes the providedAction
and returns aToggleButton
instance with all relevant properties bound to the properties of the Action.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.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
.