Home
last modified time | relevance | path

Searched refs:LabeledScale (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/python/cpython2/Lib/lib-tk/test/test_ttk/
Dtest_extensions.py18 x = ttk.LabeledScale(self.root)
26 x = ttk.LabeledScale(self.root, variable=myvar)
38 x = ttk.LabeledScale(self.root, variable=myvar)
45 ttk.LabeledScale(self.root, variable=myvar)
55 x = ttk.LabeledScale()
66 x = ttk.LabeledScale(master)
76 x = ttk.LabeledScale(self.root, from_=pair[0])
79 x = ttk.LabeledScale(self.root, from_='2.5')
82 x = ttk.LabeledScale(self.root, from_=None)
87 x = ttk.LabeledScale(self.root, variable=myvar)
[all …]
/aosp_15_r20/external/python/cpython3/Lib/tkinter/test/test_ttk/
Dtest_extensions.py18 x = ttk.LabeledScale(self.root)
27 x = ttk.LabeledScale(self.root, variable=myvar)
40 x = ttk.LabeledScale(self.root, variable=myvar)
47 ttk.LabeledScale(self.root, variable=myvar)
54 x = ttk.LabeledScale(master)
63 x = ttk.LabeledScale(self.root, from_=pair[0])
66 x = ttk.LabeledScale(self.root, from_=None)
71 x = ttk.LabeledScale(self.root, variable=myvar)
75 x = ttk.LabeledScale(self.root, variable=myvar, from_=0.5)
84 x = ttk.LabeledScale(self.root, compound='top')
[all …]
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/
D2.7.14rc1.rst27 ttk: Fix LabeledScale and OptionMenu destroy() method. Call the parent
29 LabeledScale.destroy() method now also explicitly clears label and scale
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.6.0b3.rst115 Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused by
D3.6.3rc1.rst468 ttk: fix the destroy() method of LabeledScale and OptionMenu classes. Call
470 LabeledScale.destroy() method now also explicitly clears label and scale
D3.10.0a4.rst721 Lowered :class:`tkinter.ttk.LabeledScale` dummy widget to prevent hiding
D3.5.3rc1.rst648 Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused by
D3.7.0a1.rst1964 ttk: fix the destroy() method of LabeledScale and OptionMenu classes. Call
1966 LabeledScale.destroy() method now also explicitly clears label and scale
4019 Fixed bugs in tkinter.ttk.LabeledScale and tkinter.Scale caused by
/aosp_15_r20/external/python/cpython3/Lib/tkinter/
Dttk.py1478 class LabeledScale(Frame): class
/aosp_15_r20/external/python/cpython2/Lib/lib-tk/
Dttk.py1473 class LabeledScale(Frame, object): class