summaryrefslogtreecommitdiffstats
path: root/Lib/lib-stdwin
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-04-07 13:31:53 (GMT)
committerGuido van Rossum <guido@python.org>1991-04-07 13:31:53 (GMT)
commitcbe6b53e1bf3f3cfe4b51520a9e271e4842a5c4d (patch)
treecb31792e34a7f2d139843ef95bc902509e3eb0cb /Lib/lib-stdwin
parentdb46c0e4f8427b38bad01d8a7a07e27e15f44b95 (diff)
downloadcpython-cbe6b53e1bf3f3cfe4b51520a9e271e4842a5c4d.zip
cpython-cbe6b53e1bf3f3cfe4b51520a9e271e4842a5c4d.tar.gz
cpython-cbe6b53e1bf3f3cfe4b51520a9e271e4842a5c4d.tar.bz2
New: getwindow() parent method and realize() child method.
Diffstat (limited to 'Lib/lib-stdwin')
-rw-r--r--Lib/lib-stdwin/Abstract.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/lib-stdwin/Abstract.py b/Lib/lib-stdwin/Abstract.py
index 9d9013b..6625f0f 100644
--- a/Lib/lib-stdwin/Abstract.py
+++ b/Lib/lib-stdwin/Abstract.py
@@ -27,6 +27,7 @@ class AbstractParent():
#
def begindrawing(self): return unimpl()
def beginmeasuring(self): return unimpl()
+ def getwindow(self): return unimpl() # Only for very special cases
#
def change(self, area): unimpl()
def scroll(self, (area, (dh, dv))): unimpl()
@@ -38,6 +39,7 @@ class AbstractChild():
#
def destroy(self): unimpl()
#
+ def realize(self): return unimpl()
def minsize(self, m): return unimpl()
def getbounds(self): return unimpl()
def setbounds(self, bounds): unimpl()