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 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189
|
#------------------------------------------------------------------------------
# Copyright (c) 2007, Riverbank Computing Limited
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD license.
# However, when used with the GPL version of PyQt the additional terms described
# in the PyQt GPL exception also apply.
#
# Author: Riverbank Computing Limited
# Description: <Enthought pyface package component>
#------------------------------------------------------------------------------
import sys
# Major package imports.
from pyface.qt import QtGui
# Enthought library imports.
from pyface.action.api import MenuBarManager, StatusBarManager
from pyface.action.api import ToolBarManager
from traits.api import Instance, List, on_trait_change, provides, Unicode
# Local imports.
from pyface.i_application_window import (
IApplicationWindow, MApplicationWindow
)
from pyface.image_resource import ImageResource
from .window import Window
@provides(IApplicationWindow)
class ApplicationWindow(MApplicationWindow, Window):
""" The toolkit specific implementation of an ApplicationWindow. See the
IApplicationWindow interface for the API documentation.
"""
#### 'IApplicationWindow' interface #######################################
#: The icon to display in the application window title bar.
icon = Instance(ImageResource)
#: The menu bar manager for the window.
menu_bar_manager = Instance(MenuBarManager)
#: The status bar manager for the window.
status_bar_manager = Instance(StatusBarManager)
#: DEPRECATED: The tool bar manager for the window.
tool_bar_manager = Instance(ToolBarManager)
#: The collection of tool bar managers for the window.
tool_bar_managers = List(ToolBarManager)
#### 'IWindow' interface ##################################################
#: The window title.
title = Unicode("Pyface")
###########################################################################
# Protected 'IApplicationWindow' interface.
###########################################################################
def _create_contents(self, parent):
panel = QtGui.QWidget(parent)
palette = QtGui.QPalette(panel.palette())
palette.setColor(QtGui.QPalette.Window, QtGui.QColor('blue'))
panel.setPalette(palette)
panel.setAutoFillBackground(True)
return panel
def _create_menu_bar(self, parent):
if self.menu_bar_manager is not None:
menu_bar = self.menu_bar_manager.create_menu_bar(parent)
self.control.setMenuBar(menu_bar)
def _create_status_bar(self, parent):
if self.status_bar_manager is not None:
status_bar = self.status_bar_manager.create_status_bar(parent)
# QMainWindow automatically makes the status bar visible, but we
# have delegated this responsibility to the status bar manager.
self.control.setStatusBar(status_bar)
status_bar.setVisible(self.status_bar_manager.visible)
def _create_tool_bar(self, parent):
tool_bar_managers = self._get_tool_bar_managers()
visible = self.control.isVisible()
for tool_bar_manager in tool_bar_managers:
# Add the tool bar and make sure it is visible.
tool_bar = tool_bar_manager.create_tool_bar(parent)
self.control.addToolBar(tool_bar)
tool_bar.show()
# Make sure that the tool bar has a name so its state can be saved.
if len(tool_bar.objectName()) == 0:
tool_bar.setObjectName(tool_bar_manager.name)
if sys.platform == 'darwin':
# Work around bug in Qt on OS X where creating a tool bar with a
# QMainWindow parent hides the window. See
# http://bugreports.qt.nokia.com/browse/QTBUG-5069 for more info.
self.control.setVisible(visible)
def _set_window_icon(self):
if self.icon is None:
icon = ImageResource('application.png')
else:
icon = self.icon
if self.control is not None:
self.control.setWindowIcon(icon.create_icon())
###########################################################################
# 'Window' interface.
###########################################################################
def _size_default(self):
""" Trait initialiser. """
return (800, 600)
###########################################################################
# Protected 'IWidget' interface.
###########################################################################
def _create(self):
super(ApplicationWindow, self)._create()
contents = self._create_contents(self.control)
self.control.setCentralWidget(contents)
self._create_trim_widgets(self.control)
def _create_control(self, parent):
control = super(ApplicationWindow, self)._create_control(parent)
control.setObjectName('ApplicationWindow')
control.setAnimated(False)
control.setDockNestingEnabled(True)
return control
###########################################################################
# Private interface.
###########################################################################
def _get_tool_bar_managers(self):
""" Return all tool bar managers specified for the window. """
# fixme: V3 remove the old-style single toolbar option!
if self.tool_bar_manager is not None:
tool_bar_managers = [self.tool_bar_manager]
else:
tool_bar_managers = self.tool_bar_managers
return tool_bar_managers
#### Trait change handlers ################################################
# QMainWindow takes ownership of the menu bar and the status bar upon
# assignment. For this reason, it is unnecessary to delete the old controls
# in the following two handlers.
def _menu_bar_manager_changed(self):
if self.control is not None:
self._create_menu_bar(self.control)
def _status_bar_manager_changed(self, old, new):
if self.control is not None:
if old is not None:
old.destroy_status_bar()
self._create_status_bar(self.control)
@on_trait_change('tool_bar_manager, tool_bar_managers')
def _update_tool_bar_managers(self):
if self.control is not None:
# Remove the old toolbars.
for child in self.control.children():
if isinstance(child, QtGui.QToolBar):
self.control.removeToolBar(child)
child.deleteLater()
# Add the new toolbars.
self._create_tool_bar(self.control)
def _icon_changed(self):
self._set_window_icon()
|