diff options
author | Kurt B. Kaiser <kbk@shore.net> | 2003-01-10 20:13:57 (GMT) |
---|---|---|
committer | Kurt B. Kaiser <kbk@shore.net> | 2003-01-10 20:13:57 (GMT) |
commit | e7a161e60ceb5ca24752404683802f49afe18e8c (patch) | |
tree | a7340a233a6c9cca8b2807582966abdf7c8a7f21 /Lib/idlelib/configDialog.py | |
parent | 9149aeb842abe465c7afdacb0c9535546373302c (diff) | |
download | cpython-e7a161e60ceb5ca24752404683802f49afe18e8c.zip cpython-e7a161e60ceb5ca24752404683802f49afe18e8c.tar.gz cpython-e7a161e60ceb5ca24752404683802f49afe18e8c.tar.bz2 |
M configDialog.py
M configHelpSourceEdit.py
1. Attach configHelpSourceEdit error dialogs to parent to avoid Tk root
pop-ups.
2. Make configHelpSourceEdit OK button the default and bind <Return>.
3. Reformat configHelpSourceEdit.
4. ConfigDialog.SaveAllChangedConfig() had a bug which caused additional
help sources to be deleted when other config items were changed.
4. Uniform capitalization in configDialog.
5. Update configDialog doc string.
Diffstat (limited to 'Lib/idlelib/configDialog.py')
-rw-r--r-- | Lib/idlelib/configDialog.py | 48 |
1 files changed, 28 insertions, 20 deletions
diff --git a/Lib/idlelib/configDialog.py b/Lib/idlelib/configDialog.py index a68330d..f8db74d 100644 --- a/Lib/idlelib/configDialog.py +++ b/Lib/idlelib/configDialog.py @@ -1,5 +1,13 @@ -""" -configuration dialog +"""IDLE Configuration Dialog: support user customization of IDLE by GUI + +Customize font faces, sizes, and colorization attributes. Set indentation +defaults. Customize keybindings. Colorization and keybindings can be +saved as user defined sets. Select startup options including shell/editor +and default window size. Define additional help sources. + +Note that tab width in IDLE is currently fixed at eight due to Tk issues. +Refer to comment in EditorWindow autoindent code for details. + """ from Tkinter import * import tkMessageBox, tkColorChooser, tkFont @@ -11,6 +19,7 @@ from tabpage import TabPageSet from keybindingDialog import GetKeysDialog from configSectionNameDialog import GetCfgSectionNameDialog from configHelpSourceEdit import GetHelpSourceDialog + class ConfigDialog(Toplevel): """ configuration dialog for idle @@ -336,11 +345,11 @@ class ConfigDialog(Toplevel): frameHelp=Frame(frame,borderwidth=2,relief=GROOVE) #frameRun labelRunTitle=Label(frameRun,text='Startup Preferences') - labelRunChoiceTitle=Label(frameRun,text='On startup : ') + labelRunChoiceTitle=Label(frameRun,text='On Startup : ') radioStartupEdit=Radiobutton(frameRun,variable=self.startupEdit, - value=1,command=self.SetKeysType,text="open Edit Window") + value=1,command=self.SetKeysType,text="Open Edit Window") radioStartupShell=Radiobutton(frameRun,variable=self.startupEdit, - value=0,command=self.SetKeysType,text='open Shell Window') + value=0,command=self.SetKeysType,text='Open Shell Window') #frameWinSize labelWinSizeTitle=Label(frameWinSize,text='Initial Window Size'+ ' (in characters)') @@ -354,7 +363,7 @@ class ConfigDialog(Toplevel): labelHelpTitle=Label(frameHelp,text='Help Options') frameHelpList=Frame(frameHelp) frameHelpListButtons=Frame(frameHelpList) - labelHelpListTitle=Label(frameHelpList,text='Additional (html) Help Sources:') + labelHelpListTitle=Label(frameHelpList,text='Additional Help Sources:') scrollHelpList=Scrollbar(frameHelpList) self.listHelp=Listbox(frameHelpList,height=5,takefocus=FALSE, exportselection=FALSE) @@ -840,11 +849,11 @@ class ConfigDialog(Toplevel): apply(self.textHighlightSample.tag_config,(element,),colours) self.SetColourSample() - def OnCheckUserHelpBrowser(self): - if self.userHelpBrowser.get(): - self.entryHelpBrowser.config(state=NORMAL) - else: - self.entryHelpBrowser.config(state=DISABLED) +## def OnCheckUserHelpBrowser(self): +## if self.userHelpBrowser.get(): +## self.entryHelpBrowser.config(state=NORMAL) +## else: +## self.entryHelpBrowser.config(state=DISABLED) def HelpSourceSelected(self,event): self.SetHelpListButtonStates() @@ -890,7 +899,7 @@ class ConfigDialog(Toplevel): self.SetHelpListButtonStates() def UpdateUserHelpChangedItems(self): - #clear and rebuild the HelpFiles secion in self.changedItems + #clear and rebuild the HelpFiles section in self.changedItems if self.changedItems['main'].has_key('HelpFiles'): del(self.changedItems['main']['HelpFiles']) for num in range(1,len(self.userHelpList)+1): @@ -1069,19 +1078,18 @@ class ConfigDialog(Toplevel): return idleConf.userCfg[configType].SetOption(section,item,value) def SaveAllChangedConfigs(self): - """ - save all configuration changes to user config files. - """ - #this section gets completely replaced - idleConf.userCfg['main'].remove_section('HelpFiles') + "Save configuration changes to the user config file." idleConf.userCfg['main'].Save() for configType in self.changedItems.keys(): - cfgTypeHasChanges=0 + cfgTypeHasChanges = False for section in self.changedItems[configType].keys(): + if section == 'HelpFiles': + #this section gets completely replaced + idleConf.userCfg['main'].remove_section('HelpFiles') for item in self.changedItems[configType][section].keys(): - value=self.changedItems[configType][section][item] + value = self.changedItems[configType][section][item] if self.SetUserValue(configType,section,item,value): - cfgTypeHasChanges=1 + cfgTypeHasChanges = True if cfgTypeHasChanges: idleConf.userCfg[configType].Save() self.ResetChangedItems() #clear the changed items dict |