Package com.orchestranetworks.ui.toolbar
Interface ToolbarButton
-
- All Known Subinterfaces:
ToolbarActionButton,ToolbarMenuButton
public interface ToolbarButtonAllows to define a toolbar button.- Since:
- 5.7.1
- See Also:
ToolbarActionButton,ToolbarMenuButton
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidsetDescription(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.voidsetIcon(String iconReference)Sets 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 Detail
-
setIcon
void setIcon(String iconReference)
Sets the icon of the button.
-
setIcon
void setIcon(UIButtonIcon buttonIcon)
Sets the icon of the button.
-
setRelief
@Deprecated void setRelief(UIButtonRelief aRelief)
Deprecated.Since 5.9.0, relief configuration is ignored, all buttons are rendered flat.Sets the relief of the button.
-
setLayout
void setLayout(UIButtonLayout aLayout)
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
void setDescription(UserMessage aDescription)
Sets the description of the button.- Since:
- 6.0.2
-
setDescription
void setDescription(String aDescription)
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
-
-