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
|
# (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!
from traits.api import Any, Instance, List, Property, Str, observe
from pyface.action.api import Action, Group
class TaskWindowToggleAction(Action):
""" An action for activating an application window.
"""
# 'Action' interface -----------------------------------------------------
#: The name of the action for the window.
name = Property(Str, observe="window.title")
#: The action is a toggle action.
style = "toggle"
# 'TaskWindowToggleAction' interface -------------------------------------
#: The window to use for this action.
window = Instance("pyface.tasks.task_window.TaskWindow")
# -------------------------------------------------------------------------
# 'Action' interface.
# -------------------------------------------------------------------------
def perform(self, event=None):
if self.window:
self.window.activate()
# -------------------------------------------------------------------------
# Private interface.
# -------------------------------------------------------------------------
def _get_name(self):
if self.window.title:
return self.window.title
return ""
@observe("window:activated")
def _window_activated(self, event):
self.checked = True
@observe("window:deactivated")
def _window_deactivated(self, event):
self.checked = False
class TaskWindowToggleGroup(Group):
""" A Group for toggling the activation state of an application's windows.
"""
# 'Group' interface ------------------------------------------------------
#: The id of the action group.
id = "TaskWindowToggleGroup"
#: The actions in the action group
items = List()
# 'TaskWindowToggleGroup' interface --------------------------------------
#: The application that contains the group.
application = Instance("pyface.tasks.tasks_application.TasksApplication")
#: The ActionManager to which the group belongs.
manager = Any()
# -------------------------------------------------------------------------
# 'Group' interface.
# -------------------------------------------------------------------------
def destroy(self):
""" Called when the group is no longer required.
"""
super().destroy()
if self.application:
self.application.observe(
self._rebuild, "windows.items", remove=True
)
# -------------------------------------------------------------------------
# Private interface.
# -------------------------------------------------------------------------
def _get_items(self):
from pyface.action.action_item import ActionItem
items = []
for window in self.application.windows:
active = window == self.application.active_window
action = TaskWindowToggleAction(window=window, checked=active)
items.append(ActionItem(action=action))
return items
def _rebuild(self, event):
# Clear out the old group, then build the new one.
for item in self.items:
item.destroy()
self.items = self._get_items()
# Inform our manager that it needs to be rebuilt.
self.manager.changed = True
# Trait initializers -----------------------------------------------------
def _items_default(self):
self.application.observe(self._rebuild, "windows.items")
return self._get_items()
def _manager_default(self):
manager = self
while isinstance(manager, Group):
manager = manager.parent
return manager
|