Home
last modified time | relevance | path

Searched refs:BooleanVar (Results 1 – 19 of 19) sorted by relevance

/third_party/python/Lib/idlelib/
Dsearchengine.py4 from tkinter import StringVar, BooleanVar, TclError
29 self.revar = BooleanVar(root, False) # regular expression?
30 self.casevar = BooleanVar(root, False) # match case?
31 self.wordvar = BooleanVar(root, False) # match whole word?
32 self.wrapvar = BooleanVar(root, True) # wrap around buffer?
33 self.backvar = BooleanVar(root, False) # search backwards?
Dgrep.py10 from tkinter import StringVar, BooleanVar
88 self.recvar = BooleanVar(root)
Ddebugger.py162 self.__class__.vstack = BooleanVar(top)
168 self.__class__.vsource = BooleanVar(top)
173 self.__class__.vlocals = BooleanVar(top)
179 self.__class__.vglobals = BooleanVar(top)
Dquery.py27 from tkinter import Toplevel, StringVar, BooleanVar, W, E, S
360 self.restartvar = BooleanVar(self, value=True)
Dconfigdialog.py15 StringVar, BooleanVar, IntVar, TRUE, FALSE,
336 self.font_bold = tracers.add(BooleanVar(self), self.var_changed_font)
607 self.fg_bg_toggle = BooleanVar(self)
611 BooleanVar(self), self.var_changed_theme_source)
1214 BooleanVar(self), self.var_changed_keyset_source)
1617 BooleanVar(self), ('main', 'EditorWindow', 'cursor-blink'))
1625 BooleanVar(self), ('extensions', 'ParenMatch', 'bell'))
1814 BooleanVar(self),
Deditor.py1185 var = self.get_var_obj(eventname, BooleanVar)
/third_party/python/Lib/idlelib/idle_test/
Dtest_search.py7 from tkinter import Tk, Text, BooleanVar
55 self.engine.revar = BooleanVar(self.root, True)
Dtest_searchengine.py6 from tkinter import BooleanVar, StringVar, TclError # ,Tk, Text
20 se.BooleanVar = Var
26 se.BooleanVar = BooleanVar
Dtest_configdialog.py11 from tkinter import (Tk, StringVar, IntVar, BooleanVar, DISABLED, NORMAL)
1484 cls.bv = BooleanVar(root)
/third_party/python/Lib/tkinter/test/test_tkinter/
Dtest_variables.py6 from tkinter import (Variable, StringVar, IntVar, DoubleVar, BooleanVar, Tcl,
284 v = BooleanVar(self.root)
288 v = BooleanVar(self.root, True, "name")
302 v = BooleanVar(self.root, name="name")
316 v = BooleanVar(self.root, name="name")
Dtest_widgets.py1275 v1 = tkinter.BooleanVar(self.root)
1276 v2 = tkinter.BooleanVar(self.root)
/third_party/python/Tools/pynche/
DTypeinViewer.py24 self.__hexp = BooleanVar()
26 self.__uwtyping = BooleanVar()
DStripViewer.py324 uwd = self.__uwdvar = BooleanVar()
326 hexp = self.__hexpvar = BooleanVar()
DListViewer.py53 self.__uoc = BooleanVar()
DTextViewer.py75 self.__trackp = BooleanVar()
/third_party/python/Misc/NEWS.d/
D3.5.0a4.rst349 tkinter.BooleanVar now validates input values (accepted bool, int, str, and
350 Tcl_Obj). tkinter.BooleanVar.get() now always returns bool.
/third_party/python/Doc/library/
Dtkinter.rst654 :class:`BooleanVar`. To read the current value of such a variable, call the
/third_party/python/Lib/tkinter/
D__init__.py596 class BooleanVar(Variable): class
/third_party/python/Misc/
DHISTORY592 returns bool. tkinter.BooleanVar now validates input values (accepted bool,
593 int, str, and Tcl_Obj). tkinter.BooleanVar.get() now always returns bool.