summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter/matt/subclass-existing-widgets.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-10-07 09:55:26 (GMT)
committerGuido van Rossum <guido@python.org>1994-10-07 09:55:26 (GMT)
commit35820f77e41a8a41a695e08c041eed5e2e2ff3ef (patch)
tree2bf45f05d7530067911726bf9a3e56b453d49db5 /Demo/tkinter/matt/subclass-existing-widgets.py
parent884657af490e79e8e4a3038b439af9713cb64bc8 (diff)
downloadcpython-35820f77e41a8a41a695e08c041eed5e2e2ff3ef.zip
cpython-35820f77e41a8a41a695e08c041eed5e2e2ff3ef.tar.gz
cpython-35820f77e41a8a41a695e08c041eed5e2e2ff3ef.tar.bz2
Matt's examples
Diffstat (limited to 'Demo/tkinter/matt/subclass-existing-widgets.py')
-rw-r--r--Demo/tkinter/matt/subclass-existing-widgets.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/Demo/tkinter/matt/subclass-existing-widgets.py b/Demo/tkinter/matt/subclass-existing-widgets.py
new file mode 100644
index 0000000..3a0e196
--- /dev/null
+++ b/Demo/tkinter/matt/subclass-existing-widgets.py
@@ -0,0 +1,33 @@
+from Tkinter import *
+
+# This is a program that makes a simple two button application
+
+
+class New_Button(Button):
+ def callback(self):
+ print self.counter
+ self.counter = self.counter + 1
+
+def createWidgets(top):
+ f = Frame(top)
+ f.pack()
+ f.QUIT = Button(f, {'text': 'QUIT',
+ 'fg': 'red',
+ 'command': top.quit})
+
+ f.QUIT.pack({'side': 'left', 'fill': 'both'})
+
+
+ # a hello button
+ f.hi_there = New_Button(f, {'text': 'Hello'})
+ # we do this on a different line because we need to reference f.hi_there
+ f.hi_there.config({'command' : f.hi_there.callback})
+ f.hi_there.pack({'side': 'left'})
+ f.hi_there.counter = 43
+
+
+
+root = Tk()
+createWidgets(root)
+root.mainloop()
+