From: Guido van Rossum Date: Sun, 7 Apr 1991 13:31:53 +0000 (+0000) Subject: New: getwindow() parent method and realize() child method. X-Git-Tag: v0.9.8~996 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cbe6b53e1bf3f3cfe4b51520a9e271e4842a5c4d;p=thirdparty%2FPython%2Fcpython.git New: getwindow() parent method and realize() child method. --- diff --git a/Lib/lib-stdwin/Abstract.py b/Lib/lib-stdwin/Abstract.py index 9d9013be9889..6625f0f23208 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() diff --git a/Lib/stdwin/Abstract.py b/Lib/stdwin/Abstract.py index 9d9013be9889..6625f0f23208 100755 --- a/Lib/stdwin/Abstract.py +++ b/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()