Lines Matching full:tk
20 """Given the name of a tk named font, returns a Font representation.
71 tk = getattr(root, 'tk', root)
74 font = tk.splitlist(tk.call("font", "actual", font))
84 if self.name not in tk.splitlist(tk.call("font", "names")):
88 tk.call("font", "configure", self.name, *font)
91 tk.call("font", "create", self.name, *font)
93 self._tk = tk
94 self._split = tk.splitlist
95 self._call = tk.call
172 return root.tk.splitlist(root.tk.call("font", "families"))
178 return root.tk.splitlist(root.tk.call("font", "names"))
185 root = Tkinter.Tk()