Home
last modified time | relevance | path

Searched refs:idleConf (Results 1 – 19 of 19) sorted by relevance

/external/python/cpython2/Lib/idlelib/
DconfigDialog.py15 from idlelib.configHandler import idleConf
535 if idleConf.GetOption('main', 'Theme', 'name') != 'IDLE New':
567 if idleConf.IsCoreBinding(event):
571 extName = idleConf.GetExtnNameForEvent(event)
632 sections = idleConf.GetSectionList('default', configType)
635 options = idleConf.defaultCfg[configType].GetOptionList(section)
638 idleConf.defaultCfg[configType].Get(section, option))
671 currentBindings = idleConf.GetCurrentKeySet()
700 usedNames = (idleConf.GetSectionList('user', 'keys') +
701 idleConf.GetSectionList('default', 'keys'))
[all …]
DCodeContext.py16 from idlelib.configHandler import idleConf
28 context_depth = idleConf.GetOption("extensions", "CodeContext",
30 bgcolor = idleConf.GetOption("extensions", "CodeContext",
32 fgcolor = idleConf.GetOption("extensions", "CodeContext",
46 visible = idleConf.GetOption("extensions", "CodeContext",
87 idleConf.SetOption("extensions", "CodeContext", "visible",
89 idleConf.SaveUserCfgFiles()
DParenMatch.py9 from idlelib.configHandler import idleConf
45 STYLE = idleConf.GetOption('extensions','ParenMatch','style',
47 FLASH_DELAY = idleConf.GetOption('extensions','ParenMatch','flash-delay',
49 HILITE_CONFIG = idleConf.GetHighlight(idleConf.CurrentTheme(),'hilite')
50 BELL = idleConf.GetOption('extensions','ParenMatch','bell',
DColorDelegator.py6 from idlelib.configHandler import idleConf
65 theme = idleConf.CurrentTheme()
67 "COMMENT": idleConf.GetHighlight(theme, "comment"),
68 "KEYWORD": idleConf.GetHighlight(theme, "keyword"),
69 "BUILTIN": idleConf.GetHighlight(theme, "builtin"),
70 "STRING": idleConf.GetHighlight(theme, "string"),
71 "DEFINITION": idleConf.GetHighlight(theme, "definition"),
74 "ERROR": idleConf.GetHighlight(theme, "error"),
76 "hit": idleConf.GetHighlight(theme, "hit"),
DBindings.py11 from idlelib.configHandler import idleConf
91 default_keydefs = idleConf.GetCurrentKeySet()
DEditorWindow.py17 from idlelib.configHandler import idleConf
178 self.recent_files_path = os.path.join(idleConf.GetUserCfgDir(),
182 self.width = idleConf.GetOption('main','EditorWindow','width', type='int')
189 'height': idleConf.GetOption('main', 'EditorWindow', 'height', type='int')}
262 text['font'] = idleConf.GetFont(self.root, 'main', 'EditorWindow')
276 usespaces = idleConf.GetOption('main', 'Indent', 'use-spaces', type='bool')
760 theme = idleConf.CurrentTheme()
761 normal_colors = idleConf.GetHighlight(theme, 'normal')
762 cursor_color = idleConf.GetHighlight(theme, 'cursor', fgBg='fg')
763 select_colors = idleConf.GetHighlight(theme, 'hilite')
[all …]
DIdleHistory.py3 from idlelib.configHandler import idleConf
26 self.cyclic = idleConf.GetOption("main", "History", "cyclic", 1, "bool")
DPyShell.py32 from idlelib.configHandler import idleConf
135 self.breakpointPath = os.path.join(idleConf.GetUserCfgDir(),
161 theme = idleConf.CurrentTheme()
162 cfg = idleConf.GetHighlight(theme, "break")
346 theme = idleConf.CurrentTheme()
349 "stdout": idleConf.GetHighlight(theme, "stdout"),
350 "stderr": idleConf.GetHighlight(theme, "stderr"),
351 "console": idleConf.GetHighlight(theme, "console"),
419 del_exitf = idleConf.GetOption('main', 'General', 'delete-exitfunc',
634 theme = idleConf.CurrentTheme()
[all …]
DClassBrowser.py20 from idlelib.configHandler import idleConf
59 theme = idleConf.CurrentTheme()
60 background = idleConf.GetHighlight(theme, 'normal')['background']
Dhelp.py32 from idlelib.configHandler import idleConf
162 uwide = idleConf.GetOption('main', 'EditorWindow', 'width', type='int')
163 uhigh = idleConf.GetOption('main', 'EditorWindow', 'height', type='int')
DFormatParagraph.py19 from idlelib.configHandler import idleConf
49 limit = idleConf.GetOption(
DScriptBinding.py28 from idlelib.configHandler import idleConf
197 autosave = idleConf.GetOption('main', 'General',
DAutoComplete.py10 from idlelib.configHandler import idleConf
38 popupwait = idleConf.GetOption("extensions", "AutoComplete",
DTreeWidget.py22 from idlelib.configHandler import idleConf
253 theme = idleConf.CurrentTheme()
255 self.label.configure(idleConf.GetHighlight(theme, 'hilite'))
257 self.label.configure(idleConf.GetHighlight(theme, 'normal'))
DIOBinding.py21 from idlelib.configHandler import idleConf
436 config_encoding = idleConf.GetOption("main","EditorWindow",
495 command = idleConf.GetOption('main','General',
499 command = idleConf.GetOption('main','General','print-command-win')
DconfigHandler.py741 idleConf = IdleConf() variable
770 dumpCfg(idleConf.defaultCfg)
771 dumpCfg(idleConf.userCfg)
DNEWS.txt93 Consistently use the revised idleConf.CurrentTheme everywhere in idlelib.
/external/python/cpython2/Lib/idlelib/idle_test/
Dtest_idlehistory.py8 from idlelib.configHandler import idleConf
31 idleConf.GetOption("main", "History", "cyclic", 1, "bool"))
/external/python/cpython2/Misc/
DNEWS1034 Consistently use the revised idleConf.CurrentTheme everywhere in idlelib.