/external/python/cpython2/Demo/tkinter/matt/ |
D | menu-all-types-of-entries.py | 57 Command_button = Menubutton(mBar, text='Simple Button Commands', 103 Cascade_button = Menubutton(mBar, text='Cascading Menus', underline=0) 142 Checkbutton_button = Menubutton(mBar, text='Checkbutton Menus', 185 Radiobutton_button = Menubutton(mBar, text='Radiobutton Menus', 213 Dummy_button = Menubutton(mBar, text='Dead Menu', underline=0)
|
D | menu-simple.py | 46 File_button = Menubutton(mBar, text='File', underline=0) 71 Edit_button = Menubutton(mBar, text='Edit', underline=0)
|
D | two-radio-groups.py | 24 Radiobutton_button = Menubutton(mBar, text='Political Party', 52 Radiobutton_button = Menubutton(mBar, text='Flavors',
|
/external/python/cpython2/Lib/idlelib/ |
D | help.py | 30 from Tkinter import Tk, Toplevel, Frame, Text, Scrollbar, Menu, Menubutton 36 from tkinter.ttk import Menubutton 216 toc = Menubutton(self, text='TOC')
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | kill.py | 10 class BarButton(Menubutton): 12 apply(Menubutton.__init__, (self, master), cnf)
|
D | svkill.py | 17 class BarButton(Menubutton): 19 apply(Menubutton.__init__, (self, master), cnf)
|
D | rmt.py | 39 file = Menubutton(mBar, text='File', underline=0)
|
D | tkman.py | 72 self.chapter = Menubutton(self.rightsubframe, name='chapter',
|
D | AttrDialog.py | 66 self.button = Menubutton(self.frame,
|
/external/python/cpython2/Lib/lib-tk/ |
D | ttk.py | 781 class Menubutton(Widget): class 1570 class OptionMenu(Menubutton): 1591 Menubutton.__init__(self, master, **kw) 1605 return self.nametowidget(Menubutton.__getitem__(self, item)) 1607 return Menubutton.__getitem__(self, item) 1630 Menubutton.destroy(self)
|
D | Tkinter.py | 2820 class Menubutton(Widget): class 3269 class OptionMenu(Menubutton): 3303 Menubutton.destroy(self)
|
D | Tix.py | 1634 class _dummyMenubutton(Menubutton, TixSubWidget):
|
/external/python/cpython3/Lib/idlelib/ |
D | help.py | 32 from tkinter.ttk import Frame, Menubutton, Scrollbar, Style 230 toc = Menubutton(self, text='TOC')
|
/external/python/cpython3/Lib/tkinter/ |
D | ttk.py | 783 class Menubutton(Widget): class 1601 class OptionMenu(Menubutton): 1622 Menubutton.__init__(self, master, **kw) 1636 return self.nametowidget(Menubutton.__getitem__(self, item)) 1638 return Menubutton.__getitem__(self, item)
|
D | __init__.py | 3393 class Menubutton(Widget): class 3947 class OptionMenu(Menubutton): 3982 Menubutton.destroy(self)
|
D | tix.py | 1630 class _dummyMenubutton(Menubutton, TixSubWidget):
|
/external/python/cpython2/Demo/turtle/ |
D | turtleDemo.py | 156 CmdBtn = Menubutton(self.mBar, text='Examples', 184 CmdBtn = Menubutton(self.mBar, text='Help', underline=0, font = menufont)
|
/external/python/cpython2/Doc/library/ |
D | ttk.rst | 46 :class:`Menubutton`, :class:`PanedWindow`, :class:`Radiobutton`, :class:`Scale` 67 :class:`Label`, :class:`LabelFrame`, :class:`Menubutton`, 1258 ("Menubutton.background", None), 1259 ("Menubutton.button", {"children": 1260 [("Menubutton.focus", {"children": 1261 [("Menubutton.padding", {"children": 1262 [("Menubutton.label", {"side": "left", "expand": 1})] 1268 mbtn = ttk.Menubutton(text='Text')
|
/external/python/cpython3/Doc/library/ |
D | tkinter.ttk.rst | 47 :class:`LabelFrame`, :class:`Menubutton`, :class:`PanedWindow`, 71 :class:`Label`, :class:`LabelFrame`, :class:`Menubutton`, :class:`PanedWindow`, 1378 ("Menubutton.background", None), 1379 ("Menubutton.button", {"children": 1380 [("Menubutton.focus", {"children": 1381 [("Menubutton.padding", {"children": 1382 [("Menubutton.label", {"side": "left", "expand": 1})] 1388 mbtn = ttk.Menubutton(text='Text')
|
/external/python/cpython2/Demo/tix/ |
D | tixwidgets.py | 60 file = Tix.Menubutton(w, text='File', underline=0, takefocus=0) 61 help = Tix.Menubutton(w, text='Help', underline=0, takefocus=0)
|
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
D | test_widgets.py | 252 return tkinter.Menubutton(self.root, **kwargs)
|
/external/python/cpython3/Lib/tkinter/test/test_tkinter/ |
D | test_widgets.py | 255 return tkinter.Menubutton(self.root, **kwargs)
|
/external/python/cpython2/Lib/lib-tk/test/test_ttk/ |
D | test_widgets.py | 734 return ttk.Menubutton(self.root, **kwargs)
|
/external/python/cpython3/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 735 return ttk.Menubutton(self.root, **kwargs)
|