Classes
Action | A non visible widget used in a ToolBar or Menu. |
Bases: enaml.widgets.toolkit_object.ToolkitObject
A non visible widget used in a ToolBar or Menu.
An Action represents an actionable item in a ToolBar or a Menu. Though an Action itself is a non-visible component, it will be rendered in an appropriate fashion for the location where it is used.
The text label associate with the action.
The tool tip text to use for this action. Typically displayed as a small label when the user hovers over the action.
The text that is displayed in the status bar when the user hovers over the action.
The icon to use for the Action.
Whether or not the action can be checked.
Whether or not the action is checked. This value only has meaning if ‘checkable’ is set to True.
Whether or not the item representing the action is enabled.
Whether or not the item representing the action is visible.
Whether or not the action should be treated as a separator. If this value is True, none of the other values have meaning.
An event fired when the action is triggered by user interaction. They payload will be the current checked state. This event is triggered by the proxy object when the action is triggerd.
An event fired when a checkable action changes its checked state. The payload will be the current checked state. This event is triggerd by the proxy object when the action is toggled.
A reference to the ProxyAction object.