Searched refs:OptionMenu (Results 1 - 8 of 8) sorted by relevance
/third_party/python/Lib/idlelib/ |
H A D | dynoption.py | 2 OptionMenu widget modified to allow dynamic menu reconfiguration 5 from tkinter import OptionMenu, _setit, StringVar, Button namespace 7 class DynOptionMenu(OptionMenu): 8 """Add SetMenu and highlightthickness to OptionMenu. 14 OptionMenu.__init__(self, master, variable, value, *values, **kwargs)
|
H A D | configdialog.py | 20 OptionMenu, Notebook, Radiobutton, Scrollbar, Style, 1598 paren_style_type: OptionMenu > paren_style 1681 self.paren_style_type = OptionMenu(
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
H A D | test_extensions.py | 206 optmenu = ttk.OptionMenu(self.root, var) 218 ttk.OptionMenu, self.root, self.textvar, invalid='thing') 220 optmenu = ttk.OptionMenu(self.root, self.textvar, 'b', 'a', 'b') 232 optmenu = ttk.OptionMenu(self.root, self.textvar, default, *items) 244 optmenu = ttk.OptionMenu(self.root, self.textvar, default, *items) 273 optmenu = ttk.OptionMenu(self.root, self.textvar, 'a', command=cb_test, 285 optmenu = ttk.OptionMenu(self.root, self.textvar, default, *items) 287 optmenu2 = ttk.OptionMenu(self.root, textvar2, default, *items) 311 optmenu = ttk.OptionMenu(self.root, textvar, "a", *items)
|
/third_party/python/Tools/demo/ |
H A D | sortvisu.py | 512 # Terrible hack to overcome limitation of OptionMenu... 528 self.m_size = OptionMenu(self.botleftframe, self.v_size, *sizes) 533 self.m_speed = OptionMenu(self.botleftframe, self.v_speed,
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_widgets.py | 335 return tkinter.OptionMenu(self.root, None, default, *values, **kwargs) 339 tkinter.OptionMenu(self.root, None, 'b', image='')
|
/third_party/python/Lib/tkinter/ |
H A D | ttk.py | 24 "LabeledScale", "OptionMenu", 1574 class OptionMenu(Menubutton): class 1575 """Themed OptionMenu, based after tkinter's OptionMenu, which allows 1579 """Construct a themed OptionMenu widget with master as the parent,
|
H A D | tix.py | 1180 class OptionMenu(TixWidget): class 1181 """OptionMenu - creates a menu button of options.
|
H A D | __init__.py | 6 Checkbutton, Scale, Listbox, Scrollbar, OptionMenu, Spinbox 4003 """Internal class. It wraps the command in the widget OptionMenu.""" 4016 class OptionMenu(Menubutton): class 4017 """OptionMenu which allows the user to select a value from a menu."""
|
Completed in 21 milliseconds