summaryrefslogtreecommitdiffstats
path: root/Lib/lib-stdwin
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-08-16 13:16:25 (GMT)
committerGuido van Rossum <guido@python.org>1991-08-16 13:16:25 (GMT)
commitcadae0fc1499c99d9dba21430fab5c67c8725d91 (patch)
treeb189ae2d9c71007bafb68768e3a60862429382a6 /Lib/lib-stdwin
parentd085cc6f5de5dfb458725af541110f2d3105716a (diff)
downloadcpython-cadae0fc1499c99d9dba21430fab5c67c8725d91.zip
cpython-cadae0fc1499c99d9dba21430fab5c67c8725d91.tar.gz
cpython-cadae0fc1499c99d9dba21430fab5c67c8725d91.tar.bz2
minsize --> getminsize
Diffstat (limited to 'Lib/lib-stdwin')
-rw-r--r--Lib/lib-stdwin/FormSplit.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/Lib/lib-stdwin/FormSplit.py b/Lib/lib-stdwin/FormSplit.py
index 4f0bd01..521b9a8 100644
--- a/Lib/lib-stdwin/FormSplit.py
+++ b/Lib/lib-stdwin/FormSplit.py
@@ -20,12 +20,13 @@ class FormSplit() = Split():
self.last_child = None
return Split.create(self, parent)
#
- def minsize(self, m):
+ def getminsize(self, (m, sugg_size)):
max_width, max_height = 0, 0
for c in self.children:
- c.form_width, c.form_height = c.minsize(m)
+ c.form_width, c.form_height = c.getminsize(m, (0, 0))
max_width = max(max_width, c.form_width + c.form_left)
- max_height = max(max_height, c.form_height + c.form_top)
+ max_height = max(max_height, \
+ c.form_height + c.form_top)
return max_width, max_height
#
def getbounds(self):
@@ -47,7 +48,8 @@ class FormSplit() = Split():
def addchild(self, child):
if self.last_child:
width, height = \
- self.last_child.minsize(self.beginmeasuring())
+ self.last_child.getminsize(self.beginmeasuring(), \
+ (0, 0))
self.next_top = self.next_top + height
child.form_left = self.next_left
child.form_top = self.next_top