Uses of Class
org.apache.pivot.wtk.ButtonGroup
-
Packages that use ButtonGroup Package Description org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components.org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. -
-
Uses of ButtonGroup in org.apache.pivot.wtk
Subclasses of ButtonGroup in org.apache.pivot.wtk Modifier and Type Class Description classRadioButtonGroupExtension ofButtonGroupproviding keyboard navigation within the group and modified focus navigation that treats the group as a single focusable entity.
UPandLEFTSelect the previous button
DOWNandRIGHTSelect the next button
HOMESelect the first button
ENDSelect the last button
(Note that onlyfocusablebuttons are considered when searching for a Button to select)
When a button within the group is focused and key is typed, an attempt is made to find the next button (default) or previous button (when the SHIFT modifier is pressed) whose renderer text starts with the typed character.Methods in org.apache.pivot.wtk that return ButtonGroup Modifier and Type Method Description ButtonGroupButton. getButtonGroup()Returns the button's button group.Methods in org.apache.pivot.wtk with parameters of type ButtonGroup Modifier and Type Method Description voidButtonGroupListener.Adapter. buttonAdded(ButtonGroup buttonGroup, Button button)Deprecated.default voidButtonGroupListener. buttonAdded(ButtonGroup buttonGroup, Button button)Called when a button has been added to a button group.voidButtonGroupListener.Listeners. buttonAdded(ButtonGroup buttonGroup, Button button)voidButtonListener.Adapter. buttonGroupChanged(Button button, ButtonGroup previousButtonGroup)Deprecated.default voidButtonListener. buttonGroupChanged(Button button, ButtonGroup previousButtonGroup)Called when a button's button group has changed.voidButtonListener.Listeners. buttonGroupChanged(Button button, ButtonGroup previousButtonGroup)voidButtonGroupListener.Adapter. buttonRemoved(ButtonGroup buttonGroup, Button button)Deprecated.default voidButtonGroupListener. buttonRemoved(ButtonGroup buttonGroup, Button button)Called when a button has been removed from a button group.voidButtonGroupListener.Listeners. buttonRemoved(ButtonGroup buttonGroup, Button button)voidButtonGroupListener.Adapter. selectionChanged(ButtonGroup buttonGroup, Button previousSelection)Deprecated.voidButtonGroupListener.Listeners. selectionChanged(ButtonGroup buttonGroup, Button previousSelection)default voidButtonGroupListener. selectionChanged(ButtonGroup buttonGroup, Button previousSelection)Called when a button group's selection has changed.voidButton. setButtonGroup(ButtonGroup buttonGroup)Sets the button's button group.voidCheckbox. setButtonGroup(ButtonGroup buttonGroup)This operation is not supported for checkboxes.Constructors in org.apache.pivot.wtk with parameters of type ButtonGroup Constructor Description RadioButton(ButtonGroup buttonGroup)RadioButton(ButtonGroup buttonGroup, java.lang.Object buttonData) -
Uses of ButtonGroup in org.apache.pivot.wtk.skin
Methods in org.apache.pivot.wtk.skin with parameters of type ButtonGroup Modifier and Type Method Description voidButtonSkin. buttonGroupChanged(Button button, ButtonGroup previousButtonGroup)
-