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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
# (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 itertools import combinations
import logging
from pyface.qt import QtCore, QtGui, is_qt4
from traits.api import Any, HasTraits
from pyface.tasks.task_layout import (
LayoutContainer,
PaneItem,
Tabbed,
Splitter,
HSplitter,
VSplitter,
)
from .dock_pane import AREA_MAP
# Contants.
ORIENTATION_MAP = {
"horizontal": QtCore.Qt.Orientation.Horizontal,
"vertical": QtCore.Qt.Orientation.Vertical,
}
# Logging.
logger = logging.getLogger(__name__)
class MainWindowLayout(HasTraits):
""" A class for applying declarative layouts to a QMainWindow.
"""
# 'MainWindowLayout' interface -----------------------------------------
# The QMainWindow control to lay out.
control = Any()
# ------------------------------------------------------------------------
# 'MainWindowLayout' interface.
# ------------------------------------------------------------------------
def get_layout(self, layout, include_sizes=True):
""" Get the layout by adding sublayouts to the specified DockLayout.
"""
for name, q_dock_area in AREA_MAP.items():
sublayout = self.get_layout_for_area(q_dock_area, include_sizes)
setattr(layout, name, sublayout)
def get_layout_for_area(self, q_dock_area, include_sizes=True):
""" Gets a LayoutItem for the specified dock area.
"""
# Build the initial set of leaf-level items.
items = set()
rects = {}
for child in self.control.children():
# Iterate through *visibile* dock widgets. (Inactive tabbed dock
# widgets are "visible" but have invalid positions.)
if (
isinstance(child, QtGui.QDockWidget)
and child.isVisible()
and self.control.dockWidgetArea(child) == q_dock_area
and child.x() >= 0
and child.y() >= 0
):
# Get the list of dock widgets in this tab group in order.
geometry = child.geometry()
tabs = [
tab
for tab in self.control.tabifiedDockWidgets(child)
if tab.isVisible()
]
if tabs:
tab_bar = self._get_tab_bar(child)
tab_index = tab_bar.currentIndex()
tabs.insert(tab_index, child)
geometry = tab_bar.geometry().united(geometry)
# Create the leaf-level item for the child.
if tabs:
panes = [
self._prepare_pane(dock_widget, include_sizes)
for dock_widget in tabs
]
item = Tabbed(*panes, active_tab=panes[tab_index].id)
else:
item = self._prepare_pane(child, include_sizes)
items.add(item)
rects[item] = geometry
# Build the layout tree bottom-up, in multiple passes.
while len(items) > 1:
add, remove = set(), set()
for item1, item2 in combinations(items, 2):
if item1 not in remove and item2 not in remove:
rect1, rect2 = rects[item1], rects[item2]
orient = self._get_division_orientation(rect1, rect2, True)
if orient == QtCore.Qt.Orientation.Horizontal:
if rect1.y() < rect2.y():
item = VSplitter(item1, item2)
else:
item = VSplitter(item2, item1)
elif orient == QtCore.Qt.Orientation.Vertical:
if rect1.x() < rect2.x():
item = HSplitter(item1, item2)
else:
item = HSplitter(item2, item1)
else:
continue
rects[item] = rect1.united(rect2)
add.add(item)
remove.update((item1, item2))
if add or remove:
items.update(add)
items.difference_update(remove)
else:
# Raise an exception instead of falling into an infinite loop.
raise RuntimeError(
"Unable to extract layout from QMainWindow."
)
if items:
return items.pop()
return None
def set_layout(self, layout):
""" Applies a DockLayout to the window.
"""
# Remove all existing dock widgets.
for child in self.control.children():
if isinstance(child, QtGui.QDockWidget):
child.hide()
self.control.removeDockWidget(child)
# Perform the layout. This will assign fixed sizes to the dock widgets
# to enforce size constraints specified in the PaneItems.
for name, q_dock_area in AREA_MAP.items():
sublayout = getattr(layout, name)
if sublayout:
self.set_layout_for_area(
sublayout, q_dock_area, _toplevel_call=False
)
if is_qt4:
# Remove the fixed sizes once Qt activates the layout.
QtCore.QTimer.singleShot(0, self._reset_fixed_sizes)
def set_layout_for_area(
self, layout, q_dock_area, _toplevel_added=False, _toplevel_call=True
):
""" Applies a LayoutItem to the specified dock area.
"""
# If we try to do the layout bottom-up, Qt will become confused. In
# order to do it top-down, we have know which dock widget is
# "effectively" top level, requiring us to reach down to the leaves of
# the layout. (This is really only an issue for Splitter layouts, since
# Tabbed layouts are, for our purposes, leaves.)
if isinstance(layout, PaneItem):
if not _toplevel_added:
widget = self._prepare_toplevel_for_item(layout)
if widget:
self.control.addDockWidget(q_dock_area, widget)
widget.show()
elif isinstance(layout, Tabbed):
active_widget = first_widget = None
for item in layout.items:
widget = self._prepare_toplevel_for_item(item)
if not widget:
continue
if item.id == layout.active_tab:
active_widget = widget
if first_widget:
self.control.tabifyDockWidget(first_widget, widget)
else:
if not _toplevel_added:
self.control.addDockWidget(q_dock_area, widget)
first_widget = widget
widget.show()
# Activate the appropriate tab, if possible.
if not active_widget:
# By default, Qt will activate the last widget.
active_widget = first_widget
if active_widget:
# It seems that the 'raise_' call only has an effect after the
# QMainWindow has performed its internal layout.
QtCore.QTimer.singleShot(0, active_widget.raise_)
elif isinstance(layout, Splitter):
# Perform top-level splitting as per above comment.
orient = ORIENTATION_MAP[layout.orientation]
prev_widget = None
for item in layout.items:
widget = self._prepare_toplevel_for_item(item)
if not widget:
continue
if prev_widget:
self.control.splitDockWidget(prev_widget, widget, orient)
elif not _toplevel_added:
self.control.addDockWidget(q_dock_area, widget)
prev_widget = widget
widget.show()
# Now we can recurse.
for i, item in enumerate(layout.items):
self.set_layout_for_area(
item,
q_dock_area,
_toplevel_added=True,
_toplevel_call=False,
)
else:
raise MainWindowLayoutError("Unknown layout item %r" % layout)
if is_qt4:
# Remove the fixed sizes once Qt activates the layout.
if _toplevel_call:
QtCore.QTimer.singleShot(0, self._reset_fixed_sizes)
# ------------------------------------------------------------------------
# 'MainWindowLayout' abstract interface.
# ------------------------------------------------------------------------
def _get_dock_widget(self, pane):
""" Returns the QDockWidget associated with a PaneItem.
"""
raise NotImplementedError()
def _get_pane(self, dock_widget):
""" Returns a PaneItem for a QDockWidget.
"""
raise NotImplementedError()
# ------------------------------------------------------------------------
# Private interface.
# ------------------------------------------------------------------------
def _get_division_orientation(self, one, two, splitter=False):
""" Returns whether there is a division between two visible QWidgets.
Divided in context means that the widgets are adjacent and aligned along
the direction of the adjaceny.
"""
united = one.united(two)
if splitter:
sep = self.control.style().pixelMetric(
QtGui.QStyle.PixelMetric.PM_DockWidgetSeparatorExtent, None, self.control
)
united.adjust(0, 0, -sep, -sep)
if (
one.x() == two.x()
and one.width() == two.width()
and united.height() == one.height() + two.height()
):
return QtCore.Qt.Orientation.Horizontal
elif (
one.y() == two.y()
and one.height() == two.height()
and united.width() == one.width() + two.width()
):
return QtCore.Qt.Orientation.Vertical
return 0
def _get_tab_bar(self, dock_widget):
""" Returns the tab bar associated with the given QDockWidget, or None
if there is no tab bar.
"""
dock_geometry = dock_widget.geometry()
for child in self.control.children():
if isinstance(child, QtGui.QTabBar) and child.isVisible():
geometry = child.geometry()
if self._get_division_orientation(dock_geometry, geometry):
return child
return None
def _prepare_pane(self, dock_widget, include_sizes=True):
""" Returns a sized PaneItem for a QDockWidget.
"""
pane = self._get_pane(dock_widget)
if include_sizes:
pane.width = dock_widget.widget().width()
pane.height = dock_widget.widget().height()
return pane
def _prepare_toplevel_for_item(self, layout):
""" Returns a sized toplevel QDockWidget for a LayoutItem.
"""
if isinstance(layout, PaneItem):
dock_widget = self._get_dock_widget(layout)
if dock_widget is None:
logger.warning(
"Cannot retrieve dock widget for pane %r" % layout.id
)
else:
if is_qt4:
if layout.width > 0:
dock_widget.widget().setFixedWidth(layout.width)
if layout.height > 0:
dock_widget.widget().setFixedHeight(layout.height)
else:
sizeHint = lambda: QtCore.QSize(layout.width, layout.height)
dock_widget.widget().sizeHint = sizeHint
return dock_widget
elif isinstance(layout, LayoutContainer):
return self._prepare_toplevel_for_item(layout.items[0])
else:
raise MainWindowLayoutError("Leaves of layout must be PaneItems")
def _reset_fixed_sizes(self):
""" Clears any fixed sizes assined to QDockWidgets.
"""
if self.control is None:
return
QWIDGETSIZE_MAX = (1 << 24) - 1 # Not exposed by Qt bindings.
for child in self.control.children():
if isinstance(child, QtGui.QDockWidget):
child.widget().setMaximumSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX)
child.widget().setMinimumSize(0, 0)
# QDockWidget somehow manages to set its own
# min/max sizes and hence that too needs to be reset.
child.setMaximumSize(QWIDGETSIZE_MAX, QWIDGETSIZE_MAX)
child.setMinimumSize(0, 0)
class MainWindowLayoutError(ValueError):
""" Exception raised when a malformed LayoutItem is passed to the
MainWindowLayout.
"""
pass
|