summaryrefslogtreecommitdiffstats
path: root/Demo/tkinter/guido/newmenubardemo.py
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-04-03 00:04:51 (GMT)
committerGuido van Rossum <guido@python.org>1997-04-03 00:04:51 (GMT)
commit9a8cb84072842d183c3614b2a232d1426bd8c870 (patch)
treeddb939385e496570d98810c96ad9b31dd0c90530 /Demo/tkinter/guido/newmenubardemo.py
parent387c575d5c2ec43bc96c6ef8f5647e28e053a314 (diff)
downloadcpython-9a8cb84072842d183c3614b2a232d1426bd8c870.zip
cpython-9a8cb84072842d183c3614b2a232d1426bd8c870.tar.gz
cpython-9a8cb84072842d183c3614b2a232d1426bd8c870.tar.bz2
Checked in some new Tk demos that I wrote a while ago.
Diffstat (limited to 'Demo/tkinter/guido/newmenubardemo.py')
-rw-r--r--Demo/tkinter/guido/newmenubardemo.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/Demo/tkinter/guido/newmenubardemo.py b/Demo/tkinter/guido/newmenubardemo.py
new file mode 100644
index 0000000..7e2d13a
--- /dev/null
+++ b/Demo/tkinter/guido/newmenubardemo.py
@@ -0,0 +1,42 @@
+#! /usr/bin/env python
+
+"""Play with the new Tk 8.0 toplevel menu option."""
+
+from Tkinter import *
+
+class App:
+
+ def __init__(self, master):
+ self.master = master
+
+ self.menubar = Menu(self.master)
+
+ self.filemenu = Menu(self.menubar)
+
+ self.filemenu.add_command(label="New")
+ self.filemenu.add_command(label="Open...")
+ self.filemenu.add_command(label="Close")
+ self.filemenu.add_separator()
+ self.filemenu.add_command(label="Quit", command=self.master.quit)
+
+ self.editmenu = Menu(self.menubar)
+
+ self.editmenu.add_command(label="Cut")
+ self.editmenu.add_command(label="Copy")
+ self.editmenu.add_command(label="Paste")
+
+ self.menubar.add_cascade(label="File", menu=self.filemenu)
+ self.menubar.add_cascade(label="Edit", menu=self.editmenu)
+
+ self.top = Toplevel(menu=self.menubar)
+
+ # Rest of app goes here...
+
+def main():
+ root = Tk()
+ root.withdraw()
+ app = App(root)
+ root.mainloop()
+
+if __name__ == '__main__':
+ main()