/external/python/cpython2/Lib/idlelib/ |
D | help.py | 171 self.tag_configure('em', font=(normalfont, 12, 'italic')) 172 self.tag_configure('h1', font=(normalfont, 20, 'bold')) 173 self.tag_configure('h2', font=(normalfont, 18, 'bold')) 174 self.tag_configure('h3', font=(normalfont, 15, 'bold')) 175 self.tag_configure('pre', font=(fixedfont, 12), background='#f6f6ff') 176 self.tag_configure('preblock', font=(fixedfont, 10), lmargin1=25, 178 self.tag_configure('l1', lmargin1=25, lmargin2=25) 179 self.tag_configure('l2', lmargin1=50, lmargin2=50) 180 self.tag_configure('l3', lmargin1=75, lmargin2=75) 181 self.tag_configure('l4', lmargin1=100, lmargin2=100)
|
D | OutputWindow.py | 147 text.tag_configure(tag, **cnf)
|
D | ColorDelegator.py | 61 self.tag_configure(tag, **cnf)
|
/external/python/cpython3/Lib/idlelib/ |
D | help.py | 181 self.tag_configure('em', font=(normalfont, 12, 'italic')) 182 self.tag_configure('h1', font=(normalfont, 20, 'bold')) 183 self.tag_configure('h2', font=(normalfont, 18, 'bold')) 184 self.tag_configure('h3', font=(normalfont, 15, 'bold')) 185 self.tag_configure('pre', font=(fixedfont, 12), background='#f6f6ff') 186 self.tag_configure('preblock', font=(fixedfont, 10), lmargin1=25, 188 self.tag_configure('l1', lmargin1=25, lmargin2=25) 189 self.tag_configure('l2', lmargin1=50, lmargin2=50) 190 self.tag_configure('l3', lmargin1=75, lmargin2=75) 191 self.tag_configure('l4', lmargin1=100, lmargin2=100)
|
D | outwin.py | 181 text.tag_configure(tag, **cnf)
|
D | colorizer.py | 111 self.tag_configure(tag, **cnf)
|
/external/python/cpython3/Tools/demo/ |
D | redemo.py | 53 self.stringdisplay.tag_configure("hit", background="yellow") 126 self.stringdisplay.tag_configure("hit", background="yellow") 127 self.stringdisplay.tag_configure("hit0", background="orange")
|
/external/python/cpython2/Tools/scripts/ |
D | redemo.py | 52 self.stringdisplay.tag_configure("hit", background="yellow") 127 self.stringdisplay.tag_configure("hit", background="yellow") 128 self.stringdisplay.tag_configure("hit0", background="orange")
|
/external/python/cpython2/Lib/lib-tk/test/test_ttk/ |
D | test_widgets.py | 1621 self.assertRaises(TypeError, self.tv.tag_configure) 1622 self.assertRaises(tkinter.TclError, self.tv.tag_configure, 1624 self.tv.tag_configure('test', foreground='blue') 1625 self.assertEqual(str(self.tv.tag_configure('test', 'foreground')), 1627 self.assertEqual(str(self.tv.tag_configure('test', foreground=None)), 1629 self.assertIsInstance(self.tv.tag_configure('test'), dict)
|
/external/python/cpython2/Demo/tkinter/ttk/ |
D | ttkcalendar.py | 109 self._calendar.tag_configure('header', background='grey90')
|
/external/python/cpython3/Lib/tkinter/test/test_ttk/ |
D | test_widgets.py | 1815 self.assertRaises(TypeError, self.tv.tag_configure) 1816 self.assertRaises(tkinter.TclError, self.tv.tag_configure, 1818 self.tv.tag_configure('test', foreground='blue') 1819 self.assertEqual(str(self.tv.tag_configure('test', 'foreground')), 1821 self.assertEqual(str(self.tv.tag_configure('test', foreground=None)), 1823 self.assertIsInstance(self.tv.tag_configure('test'), dict)
|
/external/python/cpython2/Lib/lib-tk/ |
D | ttk.py | 1444 def tag_configure(self, tagname, option=None, **kw): member in Treeview
|
D | Tkinter.py | 3193 def tag_configure(self, tagName, cnf=None, **kw): member in Text 3196 tag_config = tag_configure
|
/external/python/cpython3/Lib/tkinter/ |
D | ttk.py | 1479 def tag_configure(self, tagname, option=None, **kw): member in Treeview
|
D | __init__.py | 3853 def tag_configure(self, tagName, cnf=None, **kw): member in Text 3857 tag_config = tag_configure
|
/external/python/cpython2/Doc/library/ |
D | ttk.rst | 1114 .. method:: tag_configure(tagname, option=None, **kw)
|
/external/python/cpython3/Doc/library/ |
D | tkinter.ttk.rst | 1234 .. method:: tag_configure(tagname, option=None, **kw)
|
/external/python/cpython2/Misc/ |
D | HISTORY | 5468 tag_configure, image_configure, window_configure now return a
|
/external/python/cpython3/Misc/ |
D | HISTORY | 22852 tag_configure, image_configure, window_configure now return a
|