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
|
# (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!
import wx
from pyface.timer.api import do_later
# -------------------------------------------------------------------------------
# 'FlowSizer' class:
# -------------------------------------------------------------------------------
class FlowSizer(wx.PySizer):
# ---------------------------------------------------------------------------
# Initializes the object:
# ---------------------------------------------------------------------------
def __init__(self, orient=wx.HORIZONTAL):
super().__init__()
self._orient = orient
self._frozen = False
self._needed_size = None
# ---------------------------------------------------------------------------
# Calculates the minimum size needed by the sizer:
# ---------------------------------------------------------------------------
def CalcMin(self):
""" Calculates the minimum size needed by the sizer.
"""
if self._needed_size is not None:
return self._needed_size
horizontal = self._orient == wx.HORIZONTAL
dx = dy = 0
for item in self.GetChildren():
idx, idy = item.CalcMin()
if horizontal:
dy = max(dy, idy)
else:
dx = max(dx, idx)
return wx.Size(dx, dy)
# ---------------------------------------------------------------------------
# Layout the contents of the sizer based on the sizer's current size and
# position:
# ---------------------------------------------------------------------------
def RecalcSizes(self):
""" Layout the contents of the sizer based on the sizer's current size
and position.
"""
horizontal = self._orient == wx.HORIZONTAL
x, y = self.GetPosition()
dx, dy = self.GetSize().Get()
x0, y0 = x, y
ex = x + dx
ey = y + dy
mdx = mdy = sdx = sdy = 0
visible = True
cur_max = 0
for item in self.GetChildren():
idx, idy = item.CalcMin()
expand = item.GetFlag() & wx.EXPAND
if horizontal:
if (x > x0) and ((x + idx) > ex):
x = x0
y += mdy + sdy
mdy = sdy = 0
if y >= ey:
visible = False
cur_max = max(idy, cur_max)
if expand:
idy = cur_max
if item.IsSpacer():
sdy = max(sdy, idy)
if x == x0:
idx = 0
item.SetDimension(wx.Point(x, y), wx.Size(idx, idy))
item.Show(visible)
x += idx
mdy = max(mdy, idy)
else:
if (y > y0) and ((y + idy) > ey):
y = y0
x += mdx + sdx
mdx = sdx = 0
if x >= ex:
visible = False
cur_max = max(idx, cur_max)
if expand:
idx = cur_max
if item.IsSpacer():
sdx = max(sdx, idx)
if y == y0:
idy = 0
item.SetDimension(wx.Point(x, y), wx.Size(idx, idy))
item.Show(visible)
y += idy
mdx = max(mdx, idx)
if (not visible) and (self._needed_size is None):
max_dx = max_dy = 0
if horizontal:
max_dy = max(dy, y + mdy + sdy - y0)
else:
max_dx = max(dx, x + mdx + sdx - x0)
self._needed_size = wx.Size(max_dx, max_dy)
if not self._frozen:
self._do_parent("_freeze")
do_later(self._do_parent, "_thaw")
else:
self._needed_size = None
# ---------------------------------------------------------------------------
# Prevents the specified window from doing any further screen updates:
# ---------------------------------------------------------------------------
def _freeze(self, window):
""" Prevents the specified window from doing any further screen updates.
"""
window.Freeze()
self._frozen = True
# ---------------------------------------------------------------------------
# Lays out a specified window and then allows it to be updated again:
# ---------------------------------------------------------------------------
def _thaw(self, window):
""" Lays out a specified window and then allows it to be updated again.
"""
window.Layout()
window.Refresh()
if self._frozen:
self._frozen = False
window.Thaw()
# ---------------------------------------------------------------------------
# Does a specified operation on the sizer's parent window:
# ---------------------------------------------------------------------------
def _do_parent(self, method):
""" Does a specified operation on the sizer's parent window.
"""
i = 0
while True:
try:
item = self.GetItem(i)
if item is None:
break
i += 1
except:
return
if item.IsWindow():
getattr(self, method)(item.GetWindow().GetParent())
return
|