Home
last modified time | relevance | path

Searched refs:Menubutton (Results 1 – 24 of 24) sorted by relevance

/external/python/cpython2/Demo/tkinter/matt/
Dmenu-all-types-of-entries.py57 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)
Dmenu-simple.py46 File_button = Menubutton(mBar, text='File', underline=0)
71 Edit_button = Menubutton(mBar, text='Edit', underline=0)
Dtwo-radio-groups.py24 Radiobutton_button = Menubutton(mBar, text='Political Party',
52 Radiobutton_button = Menubutton(mBar, text='Flavors',
/external/python/cpython2/Lib/idlelib/
Dhelp.py30 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/
Dkill.py10 class BarButton(Menubutton):
12 apply(Menubutton.__init__, (self, master), cnf)
Dsvkill.py17 class BarButton(Menubutton):
19 apply(Menubutton.__init__, (self, master), cnf)
Drmt.py39 file = Menubutton(mBar, text='File', underline=0)
Dtkman.py72 self.chapter = Menubutton(self.rightsubframe, name='chapter',
DAttrDialog.py66 self.button = Menubutton(self.frame,
/external/python/cpython2/Lib/lib-tk/
Dttk.py781 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)
DTkinter.py2820 class Menubutton(Widget): class
3269 class OptionMenu(Menubutton):
3303 Menubutton.destroy(self)
DTix.py1634 class _dummyMenubutton(Menubutton, TixSubWidget):
/external/python/cpython3/Lib/idlelib/
Dhelp.py32 from tkinter.ttk import Frame, Menubutton, Scrollbar, Style
230 toc = Menubutton(self, text='TOC')
/external/python/cpython3/Lib/tkinter/
Dttk.py783 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__.py3393 class Menubutton(Widget): class
3947 class OptionMenu(Menubutton):
3982 Menubutton.destroy(self)
Dtix.py1630 class _dummyMenubutton(Menubutton, TixSubWidget):
/external/python/cpython2/Demo/turtle/
DturtleDemo.py156 CmdBtn = Menubutton(self.mBar, text='Examples',
184 CmdBtn = Menubutton(self.mBar, text='Help', underline=0, font = menufont)
/external/python/cpython2/Doc/library/
Dttk.rst46 :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/
Dtkinter.ttk.rst47 :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/
Dtixwidgets.py60 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/
Dtest_widgets.py252 return tkinter.Menubutton(self.root, **kwargs)
/external/python/cpython3/Lib/tkinter/test/test_tkinter/
Dtest_widgets.py255 return tkinter.Menubutton(self.root, **kwargs)
/external/python/cpython2/Lib/lib-tk/test/test_ttk/
Dtest_widgets.py734 return ttk.Menubutton(self.root, **kwargs)
/external/python/cpython3/Lib/tkinter/test/test_ttk/
Dtest_widgets.py735 return ttk.Menubutton(self.root, **kwargs)