Lines Matching refs:args
57 def _get(self, args):
59 for k in args:
63 def _mkdict(self, args):
65 for i in range(0, len(args), 2):
66 options[args[i][1:]] = args[i+1]
131 args = ()
133 args = ('-displayof', displayof)
135 args = args + ('-' + option, )
136 return self._call("font", "actual", self.name, *args)
139 self._split(self._call("font", "actual", self.name, *args)))
158 args = (text,)
160 args = ('-displayof', displayof, text)
161 return self._tk.getint(self._call("font", "measure", self.name, *args))
168 args = ()
171 args = ('-displayof', displayof)
173 args = args + self._get(options)
175 self._call("font", "metrics", self.name, *args))
177 res = self._split(self._call("font", "metrics", self.name, *args))
188 args = ()
190 args = ('-displayof', displayof)
191 return root.tk.splitlist(root.tk.call("font", "families", *args))