cpython/Demo/tix/samples/PopMenu.py

58 lines
2.2 KiB
Python
Raw Normal View History

# -*-mode: python; fill-column: 75; tab-width: 8; coding: iso-latin-1-unix -*-
#
# $Id$
#
# Tix Demostration Program
#
# This sample program is structured in such a way so that it can be
# executed from the Tix demo program "tixwidgets.py": it must have a
# procedure called "RunSample". It should also have the "if" statment
# at the end of this file so that it can be run as a standalone
# program using tixwish.
# This file demonstrates the use of the tixPopupMenu widget.
#
2009-01-04 14:53:28 -04:00
import tkinter.tix
def RunSample(w):
# We create the frame and the button, then we'll bind the PopupMenu
# to both widgets. The result is, when you press the right mouse
# button over $w.top or $w.top.but, the PopupMenu will come up.
#
2009-01-04 14:53:28 -04:00
top = tkinter.tix.Frame(w, relief=tkinter.tix.RAISED, bd=1)
but = tkinter.tix.Button(top, text='Press the right mouse button over this button or its surrounding area')
but.pack(expand=1, fill=tkinter.tix.BOTH, padx=50, pady=50)
2009-01-04 14:53:28 -04:00
p = tkinter.tix.PopupMenu(top, title='Popup Test')
p.bind_widget(top)
p.bind_widget(but)
# Set the entries inside the PopupMenu widget.
# [Hint] You have to manipulate the "menu" subwidget.
# $w.top.p itself is NOT a menu widget.
# [Hint] Watch carefully how the sub-menu is created
#
p.menu.add_command(label='Desktop', underline=0)
p.menu.add_command(label='Select', underline=0)
p.menu.add_command(label='Find', underline=0)
p.menu.add_command(label='System', underline=1)
p.menu.add_command(label='Help', underline=0)
2009-01-04 14:53:28 -04:00
m1 = tkinter.tix.Menu(p.menu)
m1.add_command(label='Hello')
p.menu.add_cascade(label='More', menu=m1)
2009-01-04 14:53:28 -04:00
but.pack(side=tkinter.tix.TOP, padx=40, pady=50)
2009-01-04 14:53:28 -04:00
box = tkinter.tix.ButtonBox(w, orientation=tkinter.tix.HORIZONTAL)
box.add('ok', text='Ok', underline=0, width=6,
command=lambda w=w: w.destroy())
box.add('cancel', text='Cancel', underline=0, width=6,
command=lambda w=w: w.destroy())
2009-01-04 14:53:28 -04:00
box.pack(side=tkinter.tix.BOTTOM, fill=tkinter.tix.X)
top.pack(side=tkinter.tix.TOP, fill=tkinter.tix.BOTH, expand=1)
if __name__ == '__main__':
2009-01-04 14:53:28 -04:00
root = tkinter.tix.Tk()
RunSample(root)
root.mainloop()