Searched refs:Checkbutton (Results 1 – 25 of 42) sorted by relevance
12
/external/python/cpython3/Lib/idlelib/ |
D | percolator.py | 92 cb1 = tk.Checkbutton(box, text="Tracer1", command=toggle1, variable=var1) 95 cb2 = tk.Checkbutton(box, text="Tracer2", command=toggle2, variable=var2)
|
D | grep.py | 11 from tkinter.ttk import Checkbutton # Frame imported in ...Base 82 btn = Checkbutton(
|
D | searchbase.py | 4 from tkinter.ttk import Frame, Entry, Label, Button, Checkbutton, Radiobutton 142 btn = Checkbutton(frame, variable=var, text=label)
|
D | debugger.py | 164 self.bstack = Checkbutton(cframe, 169 self.bsource = Checkbutton(cframe, 175 self.blocals = Checkbutton(cframe, 180 self.bglobals = Checkbutton(cframe,
|
D | config_key.py | 5 from tkinter.ttk import Frame, Button, Checkbutton, Entry, Label, Scrollbar 136 check = Checkbutton(self.frame_controls_basic,
|
/external/python/cpython2/Lib/idlelib/ |
D | Percolator.py | 95 cb1 = tk.Checkbutton(root, text="Tracer1", command=toggle1, variable=var1) 98 cb2 = tk.Checkbutton(root, text="Tracer2", command=toggle2, variable=var2)
|
D | SearchDialogBase.py | 4 Checkbutton, Radiobutton) 140 btn = Checkbutton(frame, anchor="w", variable=var, text=label)
|
D | GrepDialog.py | 6 from Tkinter import StringVar, BooleanVar, Checkbutton # for GrepDialog 53 btn = Checkbutton(f, anchor="w",
|
D | Debugger.py | 159 self.bstack = Checkbutton(cframe, 164 self.bsource = Checkbutton(cframe, 170 self.blocals = Checkbutton(cframe, 175 self.bglobals = Checkbutton(cframe,
|
/external/python/cpython3/Tools/pynche/ |
D | DetailsViewer.py | 94 self.__radio1 = Checkbutton(frame, text='Red', 101 self.__radio2 = Checkbutton(frame, text='Green', 108 self.__radio3 = Checkbutton(frame, text='Blue',
|
D | TypeinViewer.py | 67 self.__uwt = Checkbutton(self.__frame, 72 self.__hex = Checkbutton(self.__frame,
|
D | StripViewer.py | 364 uwdbtn = Checkbutton(frame2, 368 hexbtn = Checkbutton(frame2,
|
D | ListViewer.py | 55 self.__uocbtn = Checkbutton(root,
|
D | TextViewer.py | 81 self.__t = Checkbutton(root, text='Track color changes',
|
/external/python/cpython2/Tools/pynche/ |
D | DetailsViewer.py | 94 self.__radio1 = Checkbutton(frame, text='Red', 101 self.__radio2 = Checkbutton(frame, text='Green', 108 self.__radio3 = Checkbutton(frame, text='Blue',
|
D | TypeinViewer.py | 67 self.__uwt = Checkbutton(self.__frame, 72 self.__hex = Checkbutton(self.__frame,
|
D | StripViewer.py | 364 uwdbtn = Checkbutton(frame2, 368 hexbtn = Checkbutton(frame2,
|
D | ListViewer.py | 55 self.__uocbtn = Checkbutton(root,
|
D | TextViewer.py | 81 self.__t = Checkbutton(root, text='Track color changes',
|
/external/python/cpython2/Tools/audiopy/ |
D | audiopy | 168 btn = Checkbutton(frame, 182 btn = Checkbutton(frame, 196 btn = Checkbutton(frame,
|
/external/python/cpython2/Demo/tkinter/ttk/ |
D | theme_selector.py | 39 theme_change_checkbtn = ttk.Checkbutton(self,
|
/external/python/cpython2/Demo/tkinter/guido/ |
D | MimeViewer.py | 17 self.button = Checkbutton(self.frame,
|
/external/python/cpython2/Tools/scripts/ |
D | redemo.py | 87 box = Checkbutton(frame,
|
/external/python/cpython3/Tools/demo/ |
D | redemo.py | 87 box = Checkbutton(frame,
|
/external/python/cpython2/Tools/webchecker/ |
D | wcgui.py | 139 self.__checkext = Checkbutton(self.__controls, variable=self.__cv, 421 check = Checkbutton(self.topframe, text=name,
|
12