]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
New: getwindow() parent method and realize() child method.
authorGuido van Rossum <guido@python.org>
Sun, 7 Apr 1991 13:31:53 +0000 (13:31 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 7 Apr 1991 13:31:53 +0000 (13:31 +0000)
Lib/lib-stdwin/Abstract.py
Lib/stdwin/Abstract.py

index 9d9013be988967434a447efc21144933cdb2c78b..6625f0f23208a8ddbf1fef10e11005f584a6bb3c 100644 (file)
@@ -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()
index 9d9013be988967434a447efc21144933cdb2c78b..6625f0f23208a8ddbf1fef10e11005f584a6bb3c 100755 (executable)
@@ -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()