/third_party/python/Lib/tkinter/ |
D | font.py | 113 return self.cget(key) 141 def cget(self, option): member in Font 216 print(f.cget("family")) 217 print(f.cget("weight"))
|
D | __init__.py | 1679 def cget(self, key): member in Misc 1683 __getitem__ = cget 4099 def cget(self, option): member in PhotoImage
|
/third_party/python/Lib/tkinter/test/test_tkinter/ |
D | test_font.py | 26 self.assertEqual(self.font.cget(key), options[key]) 30 self.assertIsInstance(self.font.cget(key), str) 35 self.assertIsInstance(self.font.cget(key), sizetype) 44 self.assertEqual(f.cget('family'), family)
|
/third_party/json/docs/mkdocs/docs/integration/ |
D | package_managers.md | 142 ## cget section in Package Managers 144 …cget](http://cget.readthedocs.io/en/latest/), you can install the latest development version with … 146 :material-update: cget reads directly from the [GitHub repository](https://github.com/nlohmann/json…
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_textview.py | 113 self.assertEqual(frame.text.cget('wrap'), NONE) 120 self.assertEqual(frame.text.cget('wrap'), wrap) 187 self.assertEqual(text_widget.cget('wrap'), 'none')
|
D | htest.py | 381 text.configure(bg=root.cget('bg'), relief='flat', height=4, width=70)
|
D | test_squeezer.py | 331 self.assertTrue('50 lines' in expandingbutton.cget('text'))
|
D | test_sidebar.py | 676 bg = canvas.cget('background')
|
/third_party/python/Lib/idlelib/ |
D | sidebar.py | 48 widget.cget('padx'), 49 widget.cget('border'), 53 widget.cget('pady'), 54 widget.cget('border'),
|
D | autocomplete_w.py | 149 self.listbox.configure(selectbackground=self.listbox.cget("bg"), 150 selectforeground=self.listbox.cget("fg")) 204 self.origselforeground = listbox.cget("selectforeground") 205 self.origselbackground = listbox.cget("selectbackground")
|
D | codecontext.py | 115 padx += widget.tk.getint(widget.cget('padx')) 116 border += widget.tk.getint(widget.cget('border'))
|
D | squeezer.py | 237 int(text.cget('border')) + 238 int(text.cget('padx'))
|
D | config_key.py | 220 if self.button_level.cget('text').startswith('Advanced'):
|
D | editor.py | 357 inner_padding = sum(map(text.tk.getint, [text.cget('border'), 358 text.cget('padx')])) 365 Font(text, font=text.cget('font')).measure('0')
|
D | debugger.py | 188 self.errorbg = self.error.cget("background")
|
/third_party/pulseaudio/src/utils/ |
D | pa-info | 36 [[ $line != "" ]] && amixer -c$card cget "$line";
|
/third_party/python/Doc/library/ |
D | tkinter.font.rst | 52 .. method:: cget(option)
|
D | tkinter.ttk.rst | 266 methods :meth:`tkinter.Widget.cget` and :meth:`tkinter.Widget.configure`. 302 Besides the methods inherited from :class:`Widget`: :meth:`Widget.cget`, 390 Besides the methods inherited from :class:`Widget`: :meth:`Widget.cget`,
|
/third_party/python/Lib/ |
D | turtle.py | 404 def cget(self, *args, **kwargs): member in ScrolledCanvas 407 return self._canvas.cget(*args, **kwargs) 486 w = int(self.cv.cget("width")) 487 h = int(self.cv.cget("height")) 584 return self.cv.cget("bg")
|
/third_party/python/Lib/tkinter/test/ |
D | widget_tests.py | 63 self.assertEqual2(widget.cget(name), expected, eq=eq)
|
/third_party/json/ |
D | README.md | 1324 …cget](https://cget.readthedocs.io/en/latest/), you can install the latest development version with… 1508 104. [Paul Fultz II](https://github.com/pfultz2) added a note on the cget package manager.
|
D | ChangeLog.md | 1943 - Add a note about installing the library with cget [\#954](https://github.com/nlohmann/json/pull/9…
|
/third_party/json/docs/mkdocs/docs/home/ |
D | releases.md | 572 - Added note on how to use the library with the [cget](http://cget.readthedocs.io/en/latest/) packa…
|