Home
last modified time | relevance | path

Searched refs:displayof (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython3/Lib/tkinter/
Dfont.py125 def actual(self, option=None, displayof=None): argument
128 if displayof:
129 args = ('-displayof', displayof)
152 def measure(self, text, displayof=None): argument
155 if displayof:
156 args = ('-displayof', displayof, text)
165 displayof = kw.pop('displayof', None)
166 if displayof:
167 args = ('-displayof', displayof)
180 def families(root=None, displayof=None): argument
[all …]
D__init__.py840 def bell(self, displayof=0): argument
842 self.tk.call(('bell',) + self._displayof(displayof))
1021 def winfo_atom(self, name, displayof=0): argument
1023 args = ('winfo', 'atom') + self._displayof(displayof) + (name,)
1026 def winfo_atomname(self, id, displayof=0): argument
1029 + self._displayof(displayof) + (id,)
1059 def winfo_containing(self, rootX, rootY, displayof=0): argument
1062 + self._displayof(displayof) + (rootX, rootY)
1095 def winfo_interps(self, displayof=0): argument
1097 args = ('winfo', 'interps') + self._displayof(displayof)
[all …]
/external/python/cpython3/Doc/library/
Dtkinter.font.rst48 .. method:: actual(option=None, displayof=None)
64 .. method:: measure(text, displayof=None)
86 .. function:: families(root=None, displayof=None)
/external/python/cpython2/Lib/lib-tk/
DTkinter.py628 def bell(self, displayof=0): argument
630 self.tk.call(('bell',) + self._displayof(displayof))
792 def winfo_atom(self, name, displayof=0): argument
794 args = ('winfo', 'atom') + self._displayof(displayof) + (name,)
796 def winfo_atomname(self, id, displayof=0): argument
799 + self._displayof(displayof) + (id,)
825 def winfo_containing(self, rootX, rootY, displayof=0): argument
828 + self._displayof(displayof) + (rootX, rootY)
854 def winfo_interps(self, displayof=0): argument
856 args = ('winfo', 'interps') + self._displayof(displayof)
[all …]
/external/python/cpython3/Misc/
DHISTORY7916 - Issue #3033: Add displayof parameter to tkinter font. Patch by Guilherme Polo.