Package com.orchestranetworks.ui.toolbar
Interface ToolbarButton
- All Known Subinterfaces:
ToolbarActionButton,ToolbarMenuButton
public interface ToolbarButton
Allows to define a toolbar button.
- Since:
- 5.7.1
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidsetDescription(UserMessage aDescription) Sets the description of the button.voidsetDescription(String aDescription) Sets the description of the button.voidsetHighlighted(boolean isHighlighted) Defines if this button should be highlighted.voidsetIcon(UIButtonIcon buttonIcon) Sets the icon of the button.voidSets the icon of the button.voidsetLayout(UIButtonLayout aLayout) Sets the layout of the button.voidsetRelief(UIButtonRelief aRelief) Deprecated.Since 5.9.0, relief configuration is ignored, all buttons are rendered flat.
-
Method Details
-
setIcon
Sets the icon of the button. -
setIcon
Sets the icon of the button. -
setRelief
Deprecated.Since 5.9.0, relief configuration is ignored, all buttons are rendered flat.Sets the relief of the button. -
setLayout
Sets the layout of the button. -
setHighlighted
void setHighlighted(boolean isHighlighted) Defines if this button should be highlighted.Default value is
false.- Since:
- 6.0.1
-
setDescription
Sets the description of the button.- Since:
- 6.0.2
-
setDescription
Sets the description of the button.If the button layout is set to
UIButtonLayout.ICON_ONLY, the label will be used for the tooltip, and thus this description will not be used.- Since:
- 6.0.2
-