Home
last modified time | relevance | path

Searched refs:GetHighlight (Results 1 – 16 of 16) sorted by relevance

/third_party/python/Lib/idlelib/
Dcolorizer.py89 normal_colors = idleConf.GetHighlight(theme, 'normal')
90 cursor_color = idleConf.GetHighlight(theme, 'cursor')['foreground']
91 select_colors = idleConf.GetHighlight(theme, 'hilite')
165 "COMMENT": idleConf.GetHighlight(theme, "comment"),
166 "KEYWORD": idleConf.GetHighlight(theme, "keyword"),
167 "BUILTIN": idleConf.GetHighlight(theme, "builtin"),
168 "STRING": idleConf.GetHighlight(theme, "string"),
169 "DEFINITION": idleConf.GetHighlight(theme, "definition"),
172 "ERROR": idleConf.GetHighlight(theme, "error"),
177 "hit": idleConf.GetHighlight(theme, "hit"),
Dcodecontext.py131 line_number_colors = idleConf.GetHighlight(idleConf.CurrentTheme(),
253 colors = idleConf.GetHighlight(idleConf.CurrentTheme(), 'context')
258 line_number_colors = idleConf.GetHighlight(idleConf.CurrentTheme(),
Dsidebar.py323 colors = idleConf.GetHighlight(idleConf.CurrentTheme(), 'linenumber')
511 linenumbers_colors = idleConf.GetHighlight(idleConf.CurrentTheme(), 'linenumber')
512 prompt_colors = idleConf.GetHighlight(idleConf.CurrentTheme(), 'console')
Dparenmatch.py59 cls.HILITE_CONFIG = idleConf.GetHighlight(idleConf.CurrentTheme(),
Dbrowser.py115 background = idleConf.GetHighlight(theme, 'normal')['background']
Dpyshell.py178 cfg = idleConf.GetHighlight(theme, "break")
661 background = idleConf.GetHighlight(theme, 'normal')['background']
981 "stdout": idleConf.GetHighlight(theme, "stdout"),
982 "stderr": idleConf.GetHighlight(theme, "stderr"),
983 "console": idleConf.GetHighlight(theme, "normal"),
Dtree.py280 self.label.configure(idleConf.GetHighlight(theme, 'hilite'))
282 self.label.configure(idleConf.GetHighlight(theme, 'normal'))
Dconfig.py274 def GetHighlight(self, theme, element): member in IdleConf
Dconfigdialog.py1041 colors = idleConf.GetHighlight(theme, element)
1043 colors['background'] = idleConf.GetHighlight(
DNEWS.txt264 bpo-36396: Remove fgBg param of idlelib.config.GetHighlight().
/third_party/python/Lib/idlelib/idle_test/
Dtest_config.py361 eq(conf.GetHighlight('IDLE Classic', 'normal'), {'foreground': '#000000',
365 eq(conf.GetHighlight('IDLE Classic', 'cursor'), {'foreground': 'black',
372 eq(conf.GetHighlight('Foobar', 'normal'), {'foreground': '#747474',
Dtest_colorizer.py206 highlight = partial(config.idleConf.GetHighlight, theme='IDLE Classic')
216 highlight = partial(config.idleConf.GetHighlight, theme='IDLE Classic')
Dtest_sidebar.py68 orig_idleConf_GetHighlight = idlelib.sidebar.idleConf.GetHighlight
654 orig_idleConf_GetHighlight = idlelib.sidebar.idleConf.GetHighlight
Dtest_codecontext.py85 orig_idleConf_GetHighlight = codecontext.idleConf.GetHighlight
Dtest_configdialog.py687 gh = idleConf.GetHighlight
/third_party/python/Misc/NEWS.d/
D3.8.0a3.rst764 Remove fgBg param of idlelib.config.GetHighlight(). This param was only used