1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
# Enthought library imports.
from pyface.action.api import Action, ActionItem, Group, \
MenuManager, MenuBarManager, ToolBarManager
from pyface.util.id_helper import get_unique_id
from traits.api import Bool, Callable, Enum, HasTraits, Instance, \
List, Property, Str, Trait, Tuple, Unicode
# Trait definitions.
SubSchema = Trait(None, Action, ActionItem, Group, MenuManager,
Instance('pyface.tasks.action.schema.GroupSchema'),
Instance('pyface.tasks.action.schema.MenuSchema'),
Instance('pyface.tasks.action.schema.Schema'))
class Schema(HasTraits):
""" The abstract base class for all Tasks action schemas.
"""
# The schema's identifier (unique within its parent schema).
id = Str
def _id_default(self):
return get_unique_id(self)
# The list of sub-items in the schema. These items can be other
# (non-top-level) schema or concrete instances from the Pyface API.
items = List(SubSchema)
def __init__(self, *items, **traits):
""" Creates a new schema.
"""
super(Schema, self).__init__(**traits)
self.items.extend(items)
def create(self, children):
""" Create the appropriate pyface.action instance with the specified
child items.
"""
raise NotImplementedError
class ActionSchema(Schema):
""" Action schema for Pyface Actions.
An action schema cannot have children. It is used as an action factory
to make sure a larger schema (e.g., a menu schema) can be used multiple
times. Without using an ActionSchema, a reference to the action is added
to every menu created from the schema. When one of the menus is destroyed,
the action is also destroyed and is made unusable.
"""
#: A factory for the Action instance.
action_factory = Callable(Action)
#: Items is overwritten to be empty and read-only to avoid assigning to
#: it by mistake.
items = Property()
def _get_items(self):
return []
def create(self, children):
""" Create the appropriate Pyface Action instance. """
traits = dict(id=self.id)
return self.action_factory(**traits)
class GroupSchema(Schema):
""" A schema for a Pyface Group.
"""
# A factory for instantiating a pyface Group.
group_factory = Callable(Group)
# Does the group require a separator when it is visualized?
separator = Bool(True)
def create(self, children):
traits = dict(id=self.id, separator=self.separator)
return self.group_factory(*children, **traits)
class MenuSchema(Schema):
""" A schema for a Pyface MenuManager.
"""
# The menu's user visible name.
name = Unicode
# Does the menu require a separator before the menu item?
separator = Bool(False)
# The default action for tool button when shown in a toolbar (Qt only)
action = Instance(Action)
# A factory for instantiating a pyface MenuManager.
menu_manager_factory = Callable(MenuManager)
def create(self, children):
traits = dict(id=self.id, name=self.name, separator=self.separator)
if self.action:
traits['action'] = self.action
return self.menu_manager_factory(*children, **traits)
class MenuBarSchema(Schema):
""" A schema for a Pyface MenuBarManager.
"""
# Assign a default ID for menu bar schemas.
id = 'MenuBar'
# A factory for instantiating a pyface MenuBarManager.
menu_bar_manager_factory = Callable(MenuBarManager)
def create(self, children):
traits = dict(id=self.id)
return self.menu_bar_manager_factory(*children, **traits)
class ToolBarSchema(Schema):
""" A schema for a Pyface ToolBarManager.
"""
# Assign a default ID for tool bar schemas.
id = 'ToolBar'
# The tool bar's user visible name. Note that this name may not be used on
# all platforms.
name = Unicode('Tool Bar')
# The size of tool images (width, height).
image_size = Tuple((16, 16))
# The orientation of the toolbar.
orientation = Enum('horizontal', 'vertical')
# Should we display the horizontal divider?
show_divider = Bool(True)
# Should we display the name of each tool bar tool under its image?
show_tool_names = Bool(True)
# A factory for instantiating a pyface ToolBarManager
tool_bar_manager_factory = Callable(ToolBarManager)
def create(self, children):
traits = dict(id=self.id, name=self.name, image_size=self.image_size,
orientation=self.orientation,
show_divider=self.show_divider,
show_tool_names=self.show_tool_names)
return self.tool_bar_manager_factory(*children, **traits)
# Convenience abbreviations.
SGroup = GroupSchema
SMenu = MenuSchema
SMenuBar = MenuBarSchema
SToolBar = ToolBarSchema
|