GRAYBYTE WORDPRESS FILE MANAGER3547

Server IP : 198.54.121.189 / Your IP : 216.73.216.140
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/lib64/python2.7/Demo/tkinter/matt/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/lib64/python2.7/Demo/tkinter/matt//two-radio-groups.py
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()

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
June 15 2024 08:34:37
root / root
0755
00-HELLO-WORLD.py
0.707 KB
April 19 2020 21:13:39
root / root
0644
00-HELLO-WORLD.pyc
1.269 KB
April 10 2024 04:58:47
root / root
0644
00-HELLO-WORLD.pyo
1.269 KB
April 10 2024 04:58:47
root / root
0644
README
0.501 KB
April 19 2020 21:13:39
root / root
0644
animation-simple.py
0.917 KB
April 19 2020 21:13:39
root / root
0644
animation-simple.pyc
1.68 KB
April 10 2024 04:58:47
root / root
0644
animation-simple.pyo
1.68 KB
April 10 2024 04:58:47
root / root
0644
animation-w-velocity-ctrl.py
1.173 KB
April 19 2020 21:13:39
root / root
0644
animation-w-velocity-ctrl.pyc
1.979 KB
April 10 2024 04:58:47
root / root
0644
animation-w-velocity-ctrl.pyo
1.979 KB
April 10 2024 04:58:47
root / root
0644
bind-w-mult-calls-p-type.py
1.514 KB
April 19 2020 21:13:39
root / root
0644
bind-w-mult-calls-p-type.pyc
1.368 KB
April 10 2024 04:58:47
root / root
0644
bind-w-mult-calls-p-type.pyo
1.368 KB
April 10 2024 04:58:47
root / root
0644
canvas-demo-simple.py
0.73 KB
April 19 2020 21:13:39
root / root
0644
canvas-demo-simple.pyc
1.388 KB
April 10 2024 04:58:47
root / root
0644
canvas-demo-simple.pyo
1.388 KB
April 10 2024 04:58:47
root / root
0644
canvas-gridding.py
2.218 KB
April 19 2020 21:13:39
root / root
0644
canvas-gridding.pyc
2.269 KB
April 10 2024 04:58:47
root / root
0644
canvas-gridding.pyo
2.269 KB
April 10 2024 04:58:47
root / root
0644
canvas-moving-or-creating.py
2.365 KB
April 19 2020 21:13:39
root / root
0644
canvas-moving-or-creating.pyc
2.522 KB
April 10 2024 04:58:47
root / root
0644
canvas-moving-or-creating.pyo
2.522 KB
April 10 2024 04:58:47
root / root
0644
canvas-moving-w-mouse.py
2.076 KB
April 19 2020 21:13:39
root / root
0644
canvas-moving-w-mouse.pyc
2.415 KB
April 10 2024 04:58:47
root / root
0644
canvas-moving-w-mouse.pyo
2.415 KB
April 10 2024 04:58:47
root / root
0644
canvas-mult-item-sel.py
2.774 KB
April 19 2020 21:13:39
root / root
0644
canvas-mult-item-sel.pyc
2.74 KB
April 10 2024 04:58:47
root / root
0644
canvas-mult-item-sel.pyo
2.74 KB
April 10 2024 04:58:47
root / root
0644
canvas-reading-tag-info.py
1.639 KB
April 19 2020 21:13:39
root / root
0644
canvas-reading-tag-info.pyc
1.816 KB
April 10 2024 04:58:47
root / root
0644
canvas-reading-tag-info.pyo
1.816 KB
April 10 2024 04:58:47
root / root
0644
canvas-w-widget-draw-el.py
1.15 KB
April 19 2020 21:13:39
root / root
0644
canvas-w-widget-draw-el.pyc
1.47 KB
April 10 2024 04:58:47
root / root
0644
canvas-w-widget-draw-el.pyo
1.47 KB
April 10 2024 04:58:47
root / root
0644
canvas-with-scrollbars.py
2.061 KB
April 19 2020 21:13:39
root / root
0644
canvas-with-scrollbars.pyc
2.308 KB
April 10 2024 04:58:47
root / root
0644
canvas-with-scrollbars.pyo
2.308 KB
April 10 2024 04:58:47
root / root
0644
dialog-box.py
2.383 KB
April 19 2020 21:13:39
root / root
0644
dialog-box.pyc
1.932 KB
April 10 2024 04:58:47
root / root
0644
dialog-box.pyo
1.932 KB
April 10 2024 04:58:47
root / root
0644
entry-simple.py
0.712 KB
April 19 2020 21:13:39
root / root
0644
entry-simple.pyc
1.051 KB
April 10 2024 04:58:47
root / root
0644
entry-simple.pyo
1.051 KB
April 10 2024 04:58:47
root / root
0644
entry-with-shared-variable.py
1.706 KB
April 19 2020 21:13:39
root / root
0644
entry-with-shared-variable.pyc
1.602 KB
April 10 2024 04:58:47
root / root
0644
entry-with-shared-variable.pyo
1.602 KB
April 10 2024 04:58:47
root / root
0644
killing-window-w-wm.py
1.265 KB
April 19 2020 21:13:39
root / root
0644
killing-window-w-wm.pyc
1.458 KB
April 10 2024 04:58:47
root / root
0644
killing-window-w-wm.pyo
1.458 KB
April 10 2024 04:58:47
root / root
0644
menu-all-types-of-entries.py
8.896 KB
April 19 2020 21:13:39
root / root
0644
menu-all-types-of-entries.pyc
4.854 KB
April 10 2024 04:58:47
root / root
0644
menu-all-types-of-entries.pyo
4.854 KB
April 10 2024 04:58:47
root / root
0644
menu-simple.py
3.175 KB
April 19 2020 21:13:39
root / root
0644
menu-simple.pyc
1.915 KB
April 10 2024 04:58:47
root / root
0644
menu-simple.pyo
1.915 KB
April 10 2024 04:58:47
root / root
0644
not-what-you-might-think-1.py
0.659 KB
April 19 2020 21:13:39
root / root
0644
not-what-you-might-think-1.pyc
1.27 KB
April 10 2024 04:58:47
root / root
0644
not-what-you-might-think-1.pyo
1.27 KB
April 10 2024 04:58:47
root / root
0644
not-what-you-might-think-2.py
0.729 KB
April 19 2020 21:13:39
root / root
0644
not-what-you-might-think-2.pyc
1.304 KB
April 10 2024 04:58:47
root / root
0644
not-what-you-might-think-2.pyo
1.304 KB
April 10 2024 04:58:47
root / root
0644
packer-and-placer-together.py
1.181 KB
April 19 2020 21:13:39
root / root
0644
packer-and-placer-together.pyc
1.355 KB
April 10 2024 04:58:47
root / root
0644
packer-and-placer-together.pyo
1.355 KB
April 10 2024 04:58:47
root / root
0644
packer-simple.py
0.8 KB
April 19 2020 21:13:39
root / root
0644
packer-simple.pyc
1.391 KB
April 10 2024 04:58:47
root / root
0644
packer-simple.pyo
1.391 KB
April 10 2024 04:58:47
root / root
0644
placer-simple.py
1.053 KB
April 19 2020 21:13:39
root / root
0644
placer-simple.pyc
1.263 KB
April 10 2024 04:58:47
root / root
0644
placer-simple.pyo
1.263 KB
April 10 2024 04:58:47
root / root
0644
pong-demo-1.py
1.513 KB
April 19 2020 21:13:39
root / root
0644
pong-demo-1.pyc
2.078 KB
April 10 2024 04:58:47
root / root
0644
pong-demo-1.pyo
2.078 KB
April 10 2024 04:58:47
root / root
0644
printing-coords-of-items.py
2.344 KB
April 19 2020 21:13:39
root / root
0644
printing-coords-of-items.pyc
2.521 KB
April 10 2024 04:58:47
root / root
0644
printing-coords-of-items.pyo
2.521 KB
April 10 2024 04:58:47
root / root
0644
radiobutton-simple.py
1.964 KB
April 19 2020 21:13:39
root / root
0644
radiobutton-simple.pyc
1.82 KB
April 10 2024 04:58:47
root / root
0644
radiobutton-simple.pyo
1.82 KB
April 10 2024 04:58:47
root / root
0644
rubber-band-box-demo-1.py
2.084 KB
April 19 2020 21:13:39
root / root
0644
rubber-band-box-demo-1.pyc
2.509 KB
April 10 2024 04:58:47
root / root
0644
rubber-band-box-demo-1.pyo
2.509 KB
April 10 2024 04:58:47
root / root
0644
rubber-line-demo-1.py
1.874 KB
April 19 2020 21:13:39
root / root
0644
rubber-line-demo-1.pyc
2.22 KB
April 10 2024 04:58:47
root / root
0644
rubber-line-demo-1.pyo
2.22 KB
April 10 2024 04:58:47
root / root
0644
slider-demo-1.py
0.977 KB
April 19 2020 21:13:39
root / root
0644
slider-demo-1.pyc
1.672 KB
April 10 2024 04:58:47
root / root
0644
slider-demo-1.pyo
1.672 KB
April 10 2024 04:58:47
root / root
0644
subclass-existing-widgets.py
0.661 KB
April 19 2020 21:13:39
root / root
0644
subclass-existing-widgets.pyc
1.205 KB
April 10 2024 04:58:47
root / root
0644
subclass-existing-widgets.pyo
1.205 KB
April 10 2024 04:58:47
root / root
0644
two-radio-groups.py
3.67 KB
April 19 2020 21:13:39
root / root
0644
two-radio-groups.pyc
2.141 KB
April 10 2024 04:58:47
root / root
0644
two-radio-groups.pyo
2.141 KB
April 10 2024 04:58:47
root / root
0644
window-creation-more.py
0.996 KB
April 19 2020 21:13:39
root / root
0644
window-creation-more.pyc
1.679 KB
April 10 2024 04:58:47
root / root
0644
window-creation-more.pyo
1.679 KB
April 10 2024 04:58:47
root / root
0644
window-creation-simple.py
0.796 KB
April 19 2020 21:13:39
root / root
0644
window-creation-simple.pyc
1.604 KB
April 10 2024 04:58:47
root / root
0644
window-creation-simple.pyo
1.604 KB
April 10 2024 04:58:47
root / root
0644
window-creation-w-location.py
1.294 KB
April 19 2020 21:13:39
root / root
0644
window-creation-w-location.pyc
2.051 KB
April 10 2024 04:58:47
root / root
0644
window-creation-w-location.pyo
2.051 KB
April 10 2024 04:58:47
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF