404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.15.29.105: ~ $
from Tkinter import *

#       The way to think about this is that each radio button menu
#       controls a different variable -- clicking on one of the
#       mutually exclusive choices in a radiobutton assigns some value
#       to an application variable you provide. When you define a
#       radiobutton menu choice, you have the option of specifying the
#       name of a varaible and value to assign to that variable when
#       that choice is selected. This clever mechanism relieves you,
#       the programmer, from having to write a dumb callback that
#       probably wouldn't have done anything more than an assignment
#       anyway. The Tkinter options for this follow their Tk
#       counterparts:
#       {"variable" : my_flavor_variable, "value" : "strawberry"}
#       where my_flavor_variable is an instance of one of the
#       subclasses of Variable, provided in Tkinter.py (there is
#       StringVar(), IntVar(), DoubleVar() and BooleanVar() to choose
#       from)



def makePoliticalParties(var):
    # make menu button
    Radiobutton_button = Menubutton(mBar, text='Political Party',
                                    underline=0)
    Radiobutton_button.pack(side=LEFT, padx='2m')

    # the primary pulldown
    Radiobutton_button.menu = Menu(Radiobutton_button)

    Radiobutton_button.menu.add_radiobutton(label='Republican',
                                            variable=var, value=1)

    Radiobutton_button.menu.add('radiobutton', {'label': 'Democrat',
                                                'variable' : var,
                                                'value' : 2})

    Radiobutton_button.menu.add('radiobutton', {'label': 'Libertarian',
                                                'variable' : var,
                                                'value' : 3})

    var.set(2)

    # set up a pointer from the file menubutton back to the file menu
    Radiobutton_button['menu'] = Radiobutton_button.menu

    return Radiobutton_button


def makeFlavors(var):
    # make menu button
    Radiobutton_button = Menubutton(mBar, text='Flavors',
                                    underline=0)
    Radiobutton_button.pack(side=LEFT, padx='2m')

    # the primary pulldown
    Radiobutton_button.menu = Menu(Radiobutton_button)

    Radiobutton_button.menu.add_radiobutton(label='Strawberry',
                                            variable=var, value='Strawberry')

    Radiobutton_button.menu.add_radiobutton(label='Chocolate',
                                            variable=var, value='Chocolate')

    Radiobutton_button.menu.add_radiobutton(label='Rocky Road',
                                            variable=var, value='Rocky Road')

    # choose a default
    var.set("Chocolate")

    # set up a pointer from the file menubutton back to the file menu
    Radiobutton_button['menu'] = Radiobutton_button.menu

    return Radiobutton_button


def printStuff():
    print "party is", party.get()
    print "flavor is", flavor.get()
    print

#################################################
#### Main starts here ...
root = Tk()


# make a menu bar
mBar = Frame(root, relief=RAISED, borderwidth=2)
mBar.pack(fill=X)

# make two application variables,
# one to control each radio button set
party = IntVar()
flavor = StringVar()

Radiobutton_button = makePoliticalParties(party)
Radiobutton_button2 = makeFlavors(flavor)

# finally, install the buttons in the menu bar.
# This allows for scanning from one menubutton to the next.
mBar.tk_menuBar(Radiobutton_button, Radiobutton_button2)

b = Button(root, text="print party and flavor", foreground="red",
           command=printStuff)
b.pack(side=TOP)

root.title('menu demo')
root.iconname('menu demo')

root.mainloop()

Filemanager

Name Type Size Permission Actions
00-HELLO-WORLD.py File 724 B 0644
00-HELLO-WORLD.pyc File 1.27 KB 0644
00-HELLO-WORLD.pyo File 1.27 KB 0644
README File 513 B 0644
animation-simple.py File 939 B 0644
animation-simple.pyc File 1.68 KB 0644
animation-simple.pyo File 1.68 KB 0644
animation-w-velocity-ctrl.py File 1.17 KB 0644
animation-w-velocity-ctrl.pyc File 1.98 KB 0644
animation-w-velocity-ctrl.pyo File 1.98 KB 0644
bind-w-mult-calls-p-type.py File 1.51 KB 0644
bind-w-mult-calls-p-type.pyc File 1.37 KB 0644
bind-w-mult-calls-p-type.pyo File 1.37 KB 0644
canvas-demo-simple.py File 748 B 0644
canvas-demo-simple.pyc File 1.39 KB 0644
canvas-demo-simple.pyo File 1.39 KB 0644
canvas-gridding.py File 2.22 KB 0644
canvas-gridding.pyc File 2.27 KB 0644
canvas-gridding.pyo File 2.27 KB 0644
canvas-moving-or-creating.py File 2.37 KB 0644
canvas-moving-or-creating.pyc File 2.52 KB 0644
canvas-moving-or-creating.pyo File 2.52 KB 0644
canvas-moving-w-mouse.py File 2.08 KB 0644
canvas-moving-w-mouse.pyc File 2.42 KB 0644
canvas-moving-w-mouse.pyo File 2.42 KB 0644
canvas-mult-item-sel.py File 2.77 KB 0644
canvas-mult-item-sel.pyc File 2.74 KB 0644
canvas-mult-item-sel.pyo File 2.74 KB 0644
canvas-reading-tag-info.py File 1.64 KB 0644
canvas-reading-tag-info.pyc File 1.82 KB 0644
canvas-reading-tag-info.pyo File 1.82 KB 0644
canvas-w-widget-draw-el.py File 1.15 KB 0644
canvas-w-widget-draw-el.pyc File 1.47 KB 0644
canvas-w-widget-draw-el.pyo File 1.47 KB 0644
canvas-with-scrollbars.py File 2.06 KB 0644
canvas-with-scrollbars.pyc File 2.31 KB 0644
canvas-with-scrollbars.pyo File 2.31 KB 0644
dialog-box.py File 2.38 KB 0644
dialog-box.pyc File 1.93 KB 0644
dialog-box.pyo File 1.93 KB 0644
entry-simple.py File 729 B 0644
entry-simple.pyc File 1.05 KB 0644
entry-simple.pyo File 1.05 KB 0644
entry-with-shared-variable.py File 1.71 KB 0644
entry-with-shared-variable.pyc File 1.6 KB 0644
entry-with-shared-variable.pyo File 1.6 KB 0644
killing-window-w-wm.py File 1.26 KB 0644
killing-window-w-wm.pyc File 1.46 KB 0644
killing-window-w-wm.pyo File 1.46 KB 0644
menu-all-types-of-entries.py File 8.9 KB 0644
menu-all-types-of-entries.pyc File 4.85 KB 0644
menu-all-types-of-entries.pyo File 4.85 KB 0644
menu-simple.py File 3.17 KB 0644
menu-simple.pyc File 1.92 KB 0644
menu-simple.pyo File 1.92 KB 0644
not-what-you-might-think-1.py File 675 B 0644
not-what-you-might-think-1.pyc File 1.27 KB 0644
not-what-you-might-think-1.pyo File 1.27 KB 0644
not-what-you-might-think-2.py File 747 B 0644
not-what-you-might-think-2.pyc File 1.3 KB 0644
not-what-you-might-think-2.pyo File 1.3 KB 0644
packer-and-placer-together.py File 1.18 KB 0644
packer-and-placer-together.pyc File 1.36 KB 0644
packer-and-placer-together.pyo File 1.36 KB 0644
packer-simple.py File 819 B 0644
packer-simple.pyc File 1.39 KB 0644
packer-simple.pyo File 1.39 KB 0644
placer-simple.py File 1.05 KB 0644
placer-simple.pyc File 1.26 KB 0644
placer-simple.pyo File 1.26 KB 0644
pong-demo-1.py File 1.51 KB 0644
pong-demo-1.pyc File 2.08 KB 0644
pong-demo-1.pyo File 2.08 KB 0644
printing-coords-of-items.py File 2.34 KB 0644
printing-coords-of-items.pyc File 2.52 KB 0644
printing-coords-of-items.pyo File 2.52 KB 0644
radiobutton-simple.py File 1.96 KB 0644
radiobutton-simple.pyc File 1.82 KB 0644
radiobutton-simple.pyo File 1.82 KB 0644
rubber-band-box-demo-1.py File 2.08 KB 0644
rubber-band-box-demo-1.pyc File 2.51 KB 0644
rubber-band-box-demo-1.pyo File 2.51 KB 0644
rubber-line-demo-1.py File 1.87 KB 0644
rubber-line-demo-1.pyc File 2.22 KB 0644
rubber-line-demo-1.pyo File 2.22 KB 0644
slider-demo-1.py File 1000 B 0644
slider-demo-1.pyc File 1.67 KB 0644
slider-demo-1.pyo File 1.67 KB 0644
subclass-existing-widgets.py File 677 B 0644
subclass-existing-widgets.pyc File 1.21 KB 0644
subclass-existing-widgets.pyo File 1.21 KB 0644
two-radio-groups.py File 3.67 KB 0644
two-radio-groups.pyc File 2.14 KB 0644
two-radio-groups.pyo File 2.14 KB 0644
window-creation-more.py File 1020 B 0644
window-creation-more.pyc File 1.68 KB 0644
window-creation-more.pyo File 1.68 KB 0644
window-creation-simple.py File 815 B 0644
window-creation-simple.pyc File 1.6 KB 0644
window-creation-simple.pyo File 1.6 KB 0644
window-creation-w-location.py File 1.29 KB 0644
window-creation-w-location.pyc File 2.05 KB 0644
window-creation-w-location.pyo File 2.05 KB 0644