/external/python/cpython2/Demo/tix/ |
D | tixwidgets.py | 271 til = Tix.LabelFrame(w, label='Chooser Widgets', options=options) 272 cbx = Tix.LabelFrame(w, label='tixComboBox', options=options) 273 ctl = Tix.LabelFrame(w, label='tixControl', options=options) 274 sel = Tix.LabelFrame(w, label='tixSelect', options=options) 275 opt = Tix.LabelFrame(w, label='tixOptionMenu', options=options) 276 fil = Tix.LabelFrame(w, label='tixFileEntry', options=options) 277 fbx = Tix.LabelFrame(w, label='tixFileSelectBox', options=options) 278 tbr = Tix.LabelFrame(w, label='Tool Bar', options=options) 477 sls = Tix.LabelFrame(w, label='Tix.ScrolledListBox', options=options) 478 swn = Tix.LabelFrame(w, label='Tix.ScrolledWindow', options=options) [all …]
|
/external/python/cpython3/Lib/idlelib/ |
D | configdialog.py | 17 from tkinter.ttk import (Frame, LabelFrame, Button, Checkbutton, Entry, Label, 279 self.details_frame = LabelFrame(frame, width=250, height=250) 531 frame_font = LabelFrame( 533 frame_sample = LabelFrame( 536 frame_indent = LabelFrame( 835 frame_custom = LabelFrame(self, borderwidth=2, relief=GROOVE, 837 frame_theme = LabelFrame(self, borderwidth=2, relief=GROOVE, 1431 frame_custom = LabelFrame( 1434 frame_key_sets = LabelFrame( 1863 frame_window = LabelFrame(self, borderwidth=2, relief=GROOVE, [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | configDialog.py | 124 frameFont = LabelFrame( 126 frameIndent = LabelFrame( 194 frameCustom = LabelFrame(frame, borderwidth=2, relief=GROOVE, 196 frameTheme = LabelFrame(frame, borderwidth=2, relief=GROOVE, 303 frameCustom = LabelFrame( 306 frameKeySets = LabelFrame( 382 frameRun = LabelFrame(frame, borderwidth=2, relief=GROOVE, 384 frameSave = LabelFrame(frame, borderwidth=2, relief=GROOVE, 388 frameHelp = LabelFrame(frame, borderwidth=2, relief=GROOVE, 1251 self.details_frame = LabelFrame(frame, width=250, height=250)
|
/external/python/cpython3/Doc/library/ |
D | tkinter.tix.rst | 149 .. class:: LabelFrame() 151 The `LabelFrame 154 widgets inside a LabelFrame widget, one creates the new widgets relative to the 158 .. \ulink{LabelFrame}{http://tix.sourceforge.net/dist/current/demos/samples/LabFrame.tcl}
|
D | tkinter.ttk.rst | 47 :class:`LabelFrame`, :class:`Menubutton`, :class:`PanedWindow`, 71 :class:`Label`, :class:`LabelFrame`, :class:`Menubutton`, :class:`PanedWindow`,
|
/external/python/cpython2/Doc/library/ |
D | tix.rst | 161 .. class:: LabelFrame() 163 The `LabelFrame 166 widgets inside a LabelFrame widget, one creates the new widgets relative to the 170 .. \ulink{LabelFrame}{http://tix.sourceforge.net/dist/current/demos/samples/LabFrame.tcl}
|
D | ttk.rst | 45 :class:`Entry`, :class:`Frame`, :class:`Label`, :class:`LabelFrame`, 67 :class:`Label`, :class:`LabelFrame`, :class:`Menubutton`,
|
/external/python/cpython2/Lib/lib-tk/ |
D | ttk.py | 778 LabelFrame = Labelframe # Tkinter name compatibility variable
|
D | Tix.py | 1074 class LabelFrame(TixWidget): class
|
D | Tkinter.py | 3607 class LabelFrame(Widget): class
|
/external/python/cpython3/Lib/tkinter/ |
D | ttk.py | 782 LabelFrame = Labelframe # tkinter name compatibility variable
|
D | tix.py | 1072 class LabelFrame(TixWidget): class
|
D | __init__.py | 3775 class LabelFrame(Widget): class
|
/external/python/cpython2/Lib/lib-tk/test/test_tkinter/ |
D | test_widgets.py | 122 return tkinter.LabelFrame(self.root, **kwargs)
|
/external/python/cpython3/Lib/tkinter/test/test_tkinter/ |
D | test_widgets.py | 125 return tkinter.LabelFrame(self.root, **kwargs)
|
/external/python/cpython2/Lib/lib-tk/test/test_ttk/ |
D | test_widgets.py | 143 return ttk.LabelFrame(self.root, **kwargs)
|
/external/python/cpython3/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 141 return ttk.LabelFrame(self.root, **kwargs)
|