Source code for pyface.action.action_item
# (C) Copyright 2005-2023 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!
""" An action manager item that represents an actual action. """
from traits.api import Any, Instance, List, Property, Str, observe
from pyface.action.action import Action
from pyface.action.action_manager_item import ActionManagerItem
# Import the toolkit specific versions of the internal classes.
from pyface.toolkit import toolkit_object
_MenuItem = toolkit_object("action.action_item:_MenuItem")
_Tool = toolkit_object("action.action_item:_Tool")
_PaletteTool = toolkit_object("action.action_item:_PaletteTool")
[docs]class ActionItem(ActionManagerItem):
""" An action manager item that represents an actual action. """
# 'ActionManagerItem' interface ----------------------------------------
#: The item's unique identifier ('unique' in this case means unique within
#: its group).
id = Property(Str)
# 'ActionItem' interface -----------------------------------------------
#: The action!
action = Instance(Action)
#: The toolkit specific control created for this item.
control = Any()
#: The toolkit specific Id of the control created for this item.
#
#: We have to keep the Id as well as the control because wx tool bar tools
#: are created as 'wxObjectPtr's which do not have Ids, and the Id is
#: required to manipulate the state of a tool via the tool bar 8^(
# FIXME v3: Why is this part of the public interface?
control_id = Any()
# Private interface ----------------------------------------------------
#: All of the internal instances that wrap this item.
_wrappers = List(Any)
# ------------------------------------------------------------------------
# 'ActionManagerItem' interface.
# ------------------------------------------------------------------------
# Trait properties -----------------------------------------------------
def _get_id(self):
return self.action.id
# Trait change handlers ------------------------------------------------
@observe('enabled')
def _enabled_updated(self, event):
self.action.enabled = event.new
@observe('visible')
def _visible_updated(self, event):
self.action.visible = event.new
@observe("_wrappers:items:control")
def _on_destroy(self, event):
""" Handle the destruction of the wrapper. """
if event.new is None:
self._wrappers.remove(event.object)
# ------------------------------------------------------------------------
# 'ActionItem' interface.
# ------------------------------------------------------------------------
[docs] def add_to_palette(self, tool_palette, image_cache, show_labels=True):
""" Adds the item to a tool palette.
Parameters
----------
parent : toolkit control
The parent of the new menu item control.
tool_palette : toolkit tool palette
The tool palette to add the action item to.
image_cache : ImageCache
The image cache for resized images.
show_labels : bool
Should the toolbar item show a label.
"""
wrapper = _PaletteTool(tool_palette, image_cache, self, show_labels)
self._wrappers.append(wrapper)
[docs] def destroy(self):
""" Called when the action is no longer required.
By default this method calls 'destroy' on the action itself.
"""
self.action.destroy()