diff options
Diffstat (limited to 'Lib/lib-stdwin/Abstract.py')
-rw-r--r-- | Lib/lib-stdwin/Abstract.py | 2 |
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() |