Uses of Interface
ca.cgjennings.apps.arkham.ContextBar.Button
-
Packages that use ContextBar.Button Package Description ca.cgjennings.apps.arkham -
-
Uses of ContextBar.Button in ca.cgjennings.apps.arkham
Classes in ca.cgjennings.apps.arkham that implement ContextBar.Button Modifier and Type Class Description static class
ContextBar.AbstractButton
An abstract base class for implementing a context bar button.static class
ContextBar.CommandButton
A context bar button that delegates to anAbstractCommand
.Methods in ca.cgjennings.apps.arkham that return ContextBar.Button Modifier and Type Method Description static ContextBar.Button[]
ContextBar. fromButtonDescription(java.lang.String buttonDesc, boolean skipInvalidButtons)
Creates an array of buttons from a string description.static ContextBar.Button
ContextBar. getButton(java.lang.String id)
Returns the registered button with the given ID, ornull
if there is no such button.ContextBar.Button[]
ContextBar. getButtons()
Returns a copy of the installed buttons.static ContextBar.Button[]
ContextBar. getRegisteredButtons()
Returns an array of the registered buttons.Methods in ca.cgjennings.apps.arkham with parameters of type ContextBar.Button Modifier and Type Method Description static void
ContextBar. registerButton(ContextBar.Button button)
Adds a new kind of button that can be displayed on the tool bar.void
ContextBar. setButtons(ContextBar.Button... buttons)
Sets the buttons included on the context bar.static java.lang.String
ContextBar. toButtonDescription(ContextBar.Button[] buttons)
Returns a string that describes the button layout defined by the specified buttons.static void
ContextBar. unregisterButton(ContextBar.Button button)
Removes a previously registered button.
-