Searched refs:displayof (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/tkinter/ |
D | font.py | 129 def actual(self, option=None, displayof=None): argument 132 if displayof: 133 args = ('-displayof', displayof) 156 def measure(self, text, displayof=None): argument 159 if displayof: 160 args = ('-displayof', displayof, text) 169 displayof = kw.pop('displayof', None) 170 if displayof: 171 args = ('-displayof', displayof) 184 def families(root=None, displayof=None): argument [all …]
|
D | __init__.py | 878 def bell(self, displayof=0): argument 880 self.tk.call(('bell',) + self._displayof(displayof)) 1059 def winfo_atom(self, name, displayof=0): argument 1061 args = ('winfo', 'atom') + self._displayof(displayof) + (name,) 1064 def winfo_atomname(self, id, displayof=0): argument 1067 + self._displayof(displayof) + (id,) 1097 def winfo_containing(self, rootX, rootY, displayof=0): argument 1100 + self._displayof(displayof) + (rootX, rootY) 1133 def winfo_interps(self, displayof=0): argument 1135 args = ('winfo', 'interps') + self._displayof(displayof) [all …]
|
/third_party/python/Doc/library/ |
D | tkinter.font.rst | 48 .. method:: actual(option=None, displayof=None) 64 .. method:: measure(text, displayof=None) 86 .. function:: families(root=None, displayof=None)
|
/third_party/python/Misc/ |
D | HISTORY | 7916 - Issue #3033: Add displayof parameter to tkinter font. Patch by Guilherme Polo.
|