From cbe6b53e1bf3f3cfe4b51520a9e271e4842a5c4d Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 7 Apr 1991 13:31:53 +0000 Subject: [PATCH] New: getwindow() parent method and realize() child method. --- Lib/lib-stdwin/Abstract.py | 2 ++ Lib/stdwin/Abstract.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/Lib/lib-stdwin/Abstract.py b/Lib/lib-stdwin/Abstract.py index 9d9013be988..6625f0f2320 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 9d9013be988..6625f0f2320 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()