Home | History | Annotate | Download | only in idlelib

Lines Matching refs:Font

33 from tkinter import font as tkfont
165 self['font'] = (normalfont, 12)
166 self.tag_configure('em', font=(normalfont, 12, 'italic'))
167 self.tag_configure('h1', font=(normalfont, 20, 'bold'))
168 self.tag_configure('h2', font=(normalfont, 18, 'bold'))
169 self.tag_configure('h3', font=(normalfont, 15, 'bold'))
170 self.tag_configure('pre', font=(fixedfont, 12), background='#f6f6ff')
171 self.tag_configure('preblock', font=(fixedfont, 10), lmargin1=25,
185 "Return name of first font family derived from names."
188 font = tkfont.Font(name=name, exists=True, root=self)
189 return font.actual()['family']