enaml.widgets.action_group

Classes

ActionGroup

A non visible widget used to group actions.

class enaml.widgets.action_group.ActionGroup(parent=None, **kwargs)[source]

Bases: ToolkitObject

A non visible widget used to group actions.

An action group can be used in a MenuBar or a ToolBar to group a related set of Actions and apply common operations to the set. The primary use of an action group is to make any checkable actions in the group mutually exclusive.

exclusive

Whether or not the actions in this group are exclusive.

enabled

Whether or not the actions in this group are enabled.

visible

Whether or not the actions in this group are visible.

proxy

A reference to the ProxyActionGroup object.

actions()[source]

Get Actions defined as children of the ActionGroup.