static javafx.scene.control.ButtonBase |
ActionUtils.configureButton(Action action,
javafx.scene.control.ButtonBase button,
ActionUtils.ActionTextBehavior textBehavior) |
Takes the provided Action and binds the relevant properties to
the supplied Button .
|
static javafx.scene.control.Button |
ActionUtils.createButton(Action action,
ActionUtils.ActionTextBehavior textBehavior) |
Takes the provided Action and returns a Button 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 provided Action and returns a MenuButton instance
with all relevant properties bound to the properties of the Action.
|
static SegmentedButton |
ActionUtils.createSegmentedButton(ActionUtils.ActionTextBehavior textBehavior,
Collection<? extends Action> actions) |
|
static SegmentedButton |
ActionUtils.createSegmentedButton(ActionUtils.ActionTextBehavior textBehavior,
Action... actions) |
Takes the provided varargs array of Action and returns a SegmentedButton 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 provided Action and returns a ToggleButton 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 provided Collection of Action (or subclasses,
such as ActionGroup ) instances and returns a ToolBar
populated with appropriate nodes bound to the provided
actions .
|
static javafx.scene.control.ToolBar |
ActionUtils.updateToolBar(javafx.scene.control.ToolBar toolbar,
Collection<? extends Action> actions,
ActionUtils.ActionTextBehavior textBehavior) |
Takes the provided Collection of Action (or subclasses,
such as ActionGroup ) instances and returns provided ToolBar
populated with appropriate nodes bound to the provided
actions .
|