/third_party/python/Lib/idlelib/ |
H A D | percolator.py | 107 cb1 = tk.Checkbutton(box, text="Tracer1", command=toggle1, variable=var1) 110 cb2 = tk.Checkbutton(box, text="Tracer2", command=toggle2, variable=var2)
|
H A D | searchbase.py | 4 from tkinter.ttk import Frame, Entry, Label, Button, Checkbutton, Radiobutton namespace 140 A gridded frame from make_frame is filled with a Checkbutton 151 btn = Checkbutton(frame, variable=var, text=label)
|
H A D | grep.py | 11 from tkinter.ttk import Checkbutton # Frame imported in ...Base namespace 82 recvar: Boolean value of Checkbutton widget for 119 btn = Checkbutton(
|
H A D | debugger.py | 164 self.bstack = Checkbutton(cframe, 169 self.bsource = Checkbutton(cframe, 175 self.blocals = Checkbutton(cframe, 180 self.bglobals = Checkbutton(cframe,
|
H A D | query.py | 28 from tkinter.ttk import Frame, Button, Entry, Label, Checkbutton namespace 361 restart = Checkbutton(frame, variable=self.restartvar, onvalue=True,
|
H A D | config_key.py | 5 from tkinter.ttk import Frame, Button, Checkbutton, Entry, Label, Scrollbar namespace 103 check = Checkbutton(self.frame_controls_basic,
|
H A D | configdialog.py | 19 from tkinter.ttk import (Frame, LabelFrame, Button, Checkbutton, Entry, Label, namespace 330 (*)bold_toggle: Checkbutton - font_bold 358 self.bold_toggle = Checkbutton( 1592 blink_on: Checkbutton > cursor_blink 1602 bell_on: Checkbutton > paren_bell 1669 self.cursor_blink_bool = Checkbutton(frame_cursor, text="Cursor blink", 1691 self.bell_on = Checkbutton( 1802 (*)line_numbers_default_bool: Checkbutton - line_numbers_default 1847 self.line_numbers_default_bool = Checkbutton( 2039 Checkbutton(entry_are [all...] |
/third_party/python/Tools/demo/ |
H A D | redemo.py | 87 box = Checkbutton(frame,
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
H A D | test_widgets.py | 206 return tkinter.Checkbutton(self.root, **kwargs) 225 b = tkinter.Checkbutton(f, text=j) 234 b1 = tkinter.Checkbutton(f1, name='test', text='Test1') 235 b2 = tkinter.Checkbutton(f2, name='test', text='Test2')
|
/third_party/python/Lib/tkinter/test/test_ttk/ |
H A D | test_widgets.py | 242 return ttk.Checkbutton(self.root, **kwargs) 258 cbtn = ttk.Checkbutton(self.root, command=cb_test) 259 # the variable automatically created by ttk.Checkbutton is actually 260 # undefined till we invoke the Checkbutton 286 b = ttk.Checkbutton(f, text=j)
|
/third_party/python/Lib/tkinter/ |
H A D | ttk.py | 19 __all__ = ["Button", "Checkbutton", "Combobox", "Entry", "Frame", "Label", 590 class Checkbutton(Widget): class 591 """Ttk Checkbutton widget which is either in on- or off-state.""" 594 """Construct a Ttk Checkbutton widget with the parent master.
|
H A D | tix.py | 712 hidden Checkbutton 1608 class _dummyCheckbutton(Checkbutton, TixSubWidget):
|
H A D | __init__.py | 6 Checkbutton, Scale, Listbox, Scrollbar, OptionMenu, Spinbox 3043 class Checkbutton(Widget): class 3044 """Checkbutton widget which is either in on- or off-state."""
|