| 
									
										
										
										
											2003-01-14 22:03:31 +00:00
										 |  |  | """Provides access to stored IDLE configuration information.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Refer to the comments at the beginning of config-main.def for a description of | 
					
						
							|  |  |  | the available configuration files and the design implemented to update user | 
					
						
							|  |  |  | configuration information.  In particular, user configuration choices which | 
					
						
							|  |  |  | duplicate the defaults will be removed from the user's configuration files, | 
					
						
							| 
									
										
										
										
											2003-01-27 02:36:18 +00:00
										 |  |  | and if a file becomes empty, it will be deleted. | 
					
						
							| 
									
										
										
										
											2003-01-14 22:03:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | The contents of the user files may be altered using the Options/Configure IDLE | 
					
						
							|  |  |  | menu to access the configuration GUI (configDialog.py), or manually. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Throughout this module there is an emphasis on returning useable defaults | 
					
						
							|  |  |  | when a problem occurs in returning a requested configuration value back to | 
					
						
							|  |  |  | idle. This is to allow IDLE to continue to function in spite of errors in | 
					
						
							|  |  |  | the retrieval of config information. When a default is returned instead of | 
					
						
							|  |  |  | a requested config value, a message is printed to stderr to aid in | 
					
						
							|  |  |  | configuration problem notification and resolution. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-26 06:50:54 +00:00
										 |  |  | """
 | 
					
						
							| 
									
										
										
										
											2003-01-14 22:03:31 +00:00
										 |  |  | import os | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import string | 
					
						
							| 
									
										
										
										
											2006-06-11 14:33:36 +00:00
										 |  |  | import macosxSupport | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  | from ConfigParser import ConfigParser, NoOptionError, NoSectionError | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-11-30 19:10:19 +00:00
										 |  |  | class InvalidConfigType(Exception): pass | 
					
						
							|  |  |  | class InvalidConfigSet(Exception): pass | 
					
						
							|  |  |  | class InvalidFgBg(Exception): pass | 
					
						
							|  |  |  | class InvalidTheme(Exception): pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  | class IdleConfParser(ConfigParser): | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     A ConfigParser specialised for idle configuration file handling | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     def __init__(self, cfgFile, cfgDefaults=None): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         cfgFile - string, fully specified configuration file name | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         self.file=cfgFile | 
					
						
							|  |  |  |         ConfigParser.__init__(self,defaults=cfgDefaults) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-02-05 06:03:18 +00:00
										 |  |  |     def Get(self, section, option, type=None, default=None, raw=False): | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         Get an option value for given section/option or return default. | 
					
						
							|  |  |  |         If type is specified, return as type. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2007-02-05 06:03:18 +00:00
										 |  |  |         if not self.has_option(section, option): | 
					
						
							|  |  |  |             return default | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         if type=='bool': | 
					
						
							| 
									
										
										
										
											2007-02-05 06:03:18 +00:00
										 |  |  |             return self.getboolean(section, option) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         elif type=='int': | 
					
						
							| 
									
										
										
										
											2007-02-05 06:03:18 +00:00
										 |  |  |             return self.getint(section, option) | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2007-02-05 06:03:18 +00:00
										 |  |  |             return self.get(section, option, raw=raw) | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def GetOptionList(self,section): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Get an option list for given section | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-02-05 04:52:32 +00:00
										 |  |  |         if self.has_section(section): | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |             return self.options(section) | 
					
						
							|  |  |  |         else:  #return a default value | 
					
						
							|  |  |  |             return [] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def Load(self): | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         Load the configuration file from disk | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         self.read(self.file) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  | class IdleUserConfParser(IdleConfParser): | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2002-01-29 08:35:29 +00:00
										 |  |  |     IdleConfigParser specialised for user configuration handling. | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2002-01-29 08:35:29 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def AddSection(self,section): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         if section doesn't exist, add it | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         if not self.has_section(section): | 
					
						
							|  |  |  |             self.add_section(section) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-29 08:35:29 +00:00
										 |  |  |     def RemoveEmptySections(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         remove any sections that have no options | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         for section in self.sections(): | 
					
						
							|  |  |  |             if not self.GetOptionList(section): | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |                 self.remove_section(section) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-29 08:35:29 +00:00
										 |  |  |     def IsEmpty(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Remove empty sections and then return 1 if parser has no sections | 
					
						
							|  |  |  |         left, else return 0. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         self.RemoveEmptySections() | 
					
						
							|  |  |  |         if self.sections(): | 
					
						
							|  |  |  |             return 0 | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return 1 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-29 08:35:29 +00:00
										 |  |  |     def RemoveOption(self,section,option): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         If section/option exists, remove it. | 
					
						
							|  |  |  |         Returns 1 if option was removed, 0 otherwise. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         if self.has_section(section): | 
					
						
							|  |  |  |             return self.remove_option(section,option) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-29 08:35:29 +00:00
										 |  |  |     def SetOption(self,section,option,value): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Sets option to value, adding section if required. | 
					
						
							|  |  |  |         Returns 1 if option was added or changed, otherwise 0. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         if self.has_option(section,option): | 
					
						
							|  |  |  |             if self.get(section,option)==value: | 
					
						
							|  |  |  |                 return 0 | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 self.set(section,option,value) | 
					
						
							|  |  |  |                 return 1 | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             if not self.has_section(section): | 
					
						
							|  |  |  |                 self.add_section(section) | 
					
						
							|  |  |  |             self.set(section,option,value) | 
					
						
							|  |  |  |             return 1 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-02 07:16:21 +00:00
										 |  |  |     def RemoveFile(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Removes the user config file from disk if it exists. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         if os.path.exists(self.file): | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |             os.remove(self.file) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |     def Save(self): | 
					
						
							| 
									
										
										
										
											2003-01-14 22:03:31 +00:00
										 |  |  |         """Update user configuration file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Remove empty sections. If resulting config isn't empty, write the file | 
					
						
							|  |  |  |         to disk. If config is empty, remove the file from disk if it exists. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-01-29 08:35:29 +00:00
										 |  |  |         if not self.IsEmpty(): | 
					
						
							|  |  |  |             cfgFile=open(self.file,'w') | 
					
						
							|  |  |  |             self.write(cfgFile) | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-03-02 07:16:21 +00:00
										 |  |  |             self.RemoveFile() | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class IdleConf: | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     holds config parsers for all idle config files: | 
					
						
							|  |  |  |     default config files | 
					
						
							|  |  |  |         (idle install dir)/config-main.def | 
					
						
							|  |  |  |         (idle install dir)/config-extensions.def | 
					
						
							|  |  |  |         (idle install dir)/config-highlight.def | 
					
						
							|  |  |  |         (idle install dir)/config-keys.def | 
					
						
							|  |  |  |     user config  files | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |         (user home dir)/.idlerc/config-main.cfg | 
					
						
							|  |  |  |         (user home dir)/.idlerc/config-extensions.cfg | 
					
						
							|  |  |  |         (user home dir)/.idlerc/config-highlight.cfg | 
					
						
							|  |  |  |         (user home dir)/.idlerc/config-keys.cfg | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |     """
 | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         self.defaultCfg={} | 
					
						
							|  |  |  |         self.userCfg={} | 
					
						
							|  |  |  |         self.cfg={} | 
					
						
							|  |  |  |         self.CreateConfigHandlers() | 
					
						
							|  |  |  |         self.LoadCfgFiles() | 
					
						
							|  |  |  |         #self.LoadCfg() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |     def CreateConfigHandlers(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         set up a dictionary of config parsers for default and user | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |         configurations respectively | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         #build idle install path | 
					
						
							|  |  |  |         if __name__ != '__main__': # we were imported | 
					
						
							| 
									
										
										
										
											2002-02-01 03:02:37 +00:00
										 |  |  |             idleDir=os.path.dirname(__file__) | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |         else: # we were exec'ed (for testing only) | 
					
						
							| 
									
										
										
										
											2002-02-01 03:02:37 +00:00
										 |  |  |             idleDir=os.path.abspath(sys.path[0]) | 
					
						
							|  |  |  |         userDir=self.GetUserCfgDir() | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |         configTypes=('main','extensions','highlight','keys') | 
					
						
							|  |  |  |         defCfgFiles={} | 
					
						
							|  |  |  |         usrCfgFiles={} | 
					
						
							|  |  |  |         for cfgType in configTypes: #build config file names | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |             defCfgFiles[cfgType]=os.path.join(idleDir,'config-'+cfgType+'.def') | 
					
						
							|  |  |  |             usrCfgFiles[cfgType]=os.path.join(userDir,'config-'+cfgType+'.cfg') | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |         for cfgType in configTypes: #create config parsers | 
					
						
							|  |  |  |             self.defaultCfg[cfgType]=IdleConfParser(defCfgFiles[cfgType]) | 
					
						
							|  |  |  |             self.userCfg[cfgType]=IdleUserConfParser(usrCfgFiles[cfgType]) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-01 03:02:37 +00:00
										 |  |  |     def GetUserCfgDir(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         Creates (if required) and returns a filesystem directory for storing | 
					
						
							| 
									
										
										
										
											2002-02-01 03:02:37 +00:00
										 |  |  |         user config files. | 
					
						
							| 
									
										
										
										
											2005-01-13 17:37:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-01 03:02:37 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2005-01-11 19:29:39 +00:00
										 |  |  |         cfgDir = '.idlerc' | 
					
						
							|  |  |  |         userDir = os.path.expanduser('~') | 
					
						
							|  |  |  |         if userDir != '~': # expanduser() found user home dir | 
					
						
							| 
									
										
										
										
											2002-02-01 03:02:37 +00:00
										 |  |  |             if not os.path.exists(userDir): | 
					
						
							| 
									
										
										
										
											2005-01-11 19:29:39 +00:00
										 |  |  |                 warn = ('\n Warning: os.path.expanduser("~") points to\n '+ | 
					
						
							|  |  |  |                         userDir+',\n but the path does not exist.\n') | 
					
						
							| 
									
										
										
										
											2002-02-01 03:02:37 +00:00
										 |  |  |                 sys.stderr.write(warn) | 
					
						
							| 
									
										
										
										
											2005-01-11 19:29:39 +00:00
										 |  |  |                 userDir = '~' | 
					
						
							|  |  |  |         if userDir == "~": # still no path to home! | 
					
						
							|  |  |  |             # traditionally IDLE has defaulted to os.getcwd(), is this adequate? | 
					
						
							|  |  |  |             userDir = os.getcwd() | 
					
						
							|  |  |  |         userDir = os.path.join(userDir, cfgDir) | 
					
						
							| 
									
										
										
										
											2002-02-01 03:02:37 +00:00
										 |  |  |         if not os.path.exists(userDir): | 
					
						
							| 
									
										
										
										
											2005-01-11 19:29:39 +00:00
										 |  |  |             try: | 
					
						
							| 
									
										
										
										
											2002-02-01 03:02:37 +00:00
										 |  |  |                 os.mkdir(userDir) | 
					
						
							| 
									
										
										
										
											2005-01-11 19:29:39 +00:00
										 |  |  |             except (OSError, IOError): | 
					
						
							|  |  |  |                 warn = ('\n Warning: unable to create user config directory\n'+ | 
					
						
							|  |  |  |                         userDir+'\n Check path and permissions.\n Exiting!\n\n') | 
					
						
							| 
									
										
										
										
											2002-02-01 03:02:37 +00:00
										 |  |  |                 sys.stderr.write(warn) | 
					
						
							| 
									
										
										
										
											2005-01-11 19:29:39 +00:00
										 |  |  |                 raise SystemExit | 
					
						
							| 
									
										
										
										
											2002-02-01 03:02:37 +00:00
										 |  |  |         return userDir | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-06 01:29:22 +00:00
										 |  |  |     def GetOption(self, configType, section, option, default=None, type=None, | 
					
						
							| 
									
										
										
										
											2007-02-05 06:03:18 +00:00
										 |  |  |                   warn_on_default=True, raw=False): | 
					
						
							| 
									
										
										
										
											2001-10-23 10:42:12 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         Get an option value for given config type and given general | 
					
						
							| 
									
										
										
										
											2001-10-23 10:42:12 +00:00
										 |  |  |         configuration section/option or return a default. If type is specified, | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         return as type. Firstly the user configuration is checked, with a | 
					
						
							|  |  |  |         fallback to the default configuration, and a final 'catch all' | 
					
						
							|  |  |  |         fallback to a useable passed-in default if the option isn't present in | 
					
						
							| 
									
										
										
										
											2001-10-23 10:42:12 +00:00
										 |  |  |         either the user or the default configuration. | 
					
						
							|  |  |  |         configType must be one of ('main','extensions','highlight','keys') | 
					
						
							| 
									
										
										
										
											2004-06-06 01:29:22 +00:00
										 |  |  |         If a default is returned, and warn_on_default is True, a warning is | 
					
						
							|  |  |  |         printed to stderr. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-23 10:42:12 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         if self.userCfg[configType].has_option(section,option): | 
					
						
							| 
									
										
										
										
											2007-02-05 06:03:18 +00:00
										 |  |  |             return self.userCfg[configType].Get(section, option, | 
					
						
							|  |  |  |                                                 type=type, raw=raw) | 
					
						
							| 
									
										
										
										
											2001-10-23 10:42:12 +00:00
										 |  |  |         elif self.defaultCfg[configType].has_option(section,option): | 
					
						
							| 
									
										
										
										
											2007-02-05 06:03:18 +00:00
										 |  |  |             return self.defaultCfg[configType].Get(section, option, | 
					
						
							|  |  |  |                                                    type=type, raw=raw) | 
					
						
							| 
									
										
										
										
											2002-02-11 02:20:53 +00:00
										 |  |  |         else: #returning default, print warning | 
					
						
							| 
									
										
										
										
											2004-06-06 01:29:22 +00:00
										 |  |  |             if warn_on_default: | 
					
						
							|  |  |  |                 warning = ('\n Warning: configHandler.py - IdleConf.GetOption -\n' | 
					
						
							|  |  |  |                            ' problem retrieving configration option %r\n' | 
					
						
							|  |  |  |                            ' from section %r.\n' | 
					
						
							|  |  |  |                            ' returning default value: %r\n' % | 
					
						
							|  |  |  |                            (option, section, default)) | 
					
						
							|  |  |  |                 sys.stderr.write(warning) | 
					
						
							| 
									
										
										
										
											2001-10-23 10:42:12 +00:00
										 |  |  |             return default | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-06 01:29:22 +00:00
										 |  |  |     def SetOption(self, configType, section, option, value): | 
					
						
							|  |  |  |         """In user's config file, set section's option to value.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         self.userCfg[configType].SetOption(section, option, value) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-26 06:50:54 +00:00
										 |  |  |     def GetSectionList(self, configSet, configType): | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         Get a list of sections from either the user or default config for | 
					
						
							| 
									
										
										
										
											2001-10-26 06:50:54 +00:00
										 |  |  |         the given config type. | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         configSet must be either 'user' or 'default' | 
					
						
							| 
									
										
										
										
											2002-01-21 06:38:21 +00:00
										 |  |  |         configType must be one of ('main','extensions','highlight','keys') | 
					
						
							| 
									
										
										
										
											2001-10-26 06:50:54 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-01-21 06:38:21 +00:00
										 |  |  |         if not (configType in ('main','extensions','highlight','keys')): | 
					
						
							| 
									
										
										
										
											2002-11-30 19:10:19 +00:00
										 |  |  |             raise InvalidConfigType, 'Invalid configType specified' | 
					
						
							| 
									
										
										
										
											2001-10-26 06:50:54 +00:00
										 |  |  |         if configSet == 'user': | 
					
						
							|  |  |  |             cfgParser=self.userCfg[configType] | 
					
						
							|  |  |  |         elif configSet == 'default': | 
					
						
							|  |  |  |             cfgParser=self.defaultCfg[configType] | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-11-30 19:10:19 +00:00
										 |  |  |             raise InvalidConfigSet, 'Invalid configSet specified' | 
					
						
							| 
									
										
										
										
											2001-10-26 06:50:54 +00:00
										 |  |  |         return cfgParser.sections() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |     def GetHighlight(self, theme, element, fgBg=None): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         return individual highlighting theme elements. | 
					
						
							|  |  |  |         fgBg - string ('fg'or'bg') or None, if None return a dictionary | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         containing fg and bg colours (appropriate for passing to Tkinter in, | 
					
						
							|  |  |  |         e.g., a tag_config call), otherwise fg or bg colour only as specified. | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-02-11 02:51:18 +00:00
										 |  |  |         if self.defaultCfg['highlight'].has_section(theme): | 
					
						
							|  |  |  |             themeDict=self.GetThemeDict('default',theme) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             themeDict=self.GetThemeDict('user',theme) | 
					
						
							|  |  |  |         fore=themeDict[element+'-foreground'] | 
					
						
							|  |  |  |         if element=='cursor': #there is no config value for cursor bg | 
					
						
							|  |  |  |             back=themeDict['normal-background'] | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-02-11 02:51:18 +00:00
										 |  |  |             back=themeDict[element+'-background'] | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |         highlight={"foreground": fore,"background": back} | 
					
						
							|  |  |  |         if not fgBg: #return dict of both colours | 
					
						
							|  |  |  |             return highlight | 
					
						
							|  |  |  |         else: #return specified colour only | 
					
						
							|  |  |  |             if fgBg == 'fg': | 
					
						
							|  |  |  |                 return highlight["foreground"] | 
					
						
							|  |  |  |             if fgBg == 'bg': | 
					
						
							|  |  |  |                 return highlight["background"] | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2002-11-30 19:10:19 +00:00
										 |  |  |                 raise InvalidFgBg, 'Invalid fgBg specified' | 
					
						
							| 
									
										
										
										
											2002-02-11 02:51:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |     def GetThemeDict(self,type,themeName): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         type - string, 'default' or 'user' theme type | 
					
						
							|  |  |  |         themeName - string, theme name | 
					
						
							|  |  |  |         Returns a dictionary which holds {option:value} for each element | 
					
						
							|  |  |  |         in the specified theme. Values are loaded over a set of ultimate last | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         fallback defaults to guarantee that all theme elements are present in | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |         a newly created theme. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         if type == 'user': | 
					
						
							|  |  |  |             cfgParser=self.userCfg['highlight'] | 
					
						
							|  |  |  |         elif type == 'default': | 
					
						
							|  |  |  |             cfgParser=self.defaultCfg['highlight'] | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-11-30 19:10:19 +00:00
										 |  |  |             raise InvalidTheme, 'Invalid theme type specified' | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |         #foreground and background values are provded for each theme element | 
					
						
							|  |  |  |         #(apart from cursor) even though all these values are not yet used | 
					
						
							|  |  |  |         #by idle, to allow for their use in the future. Default values are | 
					
						
							|  |  |  |         #generally black and white. | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         theme={ 'normal-foreground':'#000000', | 
					
						
							|  |  |  |                 'normal-background':'#ffffff', | 
					
						
							|  |  |  |                 'keyword-foreground':'#000000', | 
					
						
							|  |  |  |                 'keyword-background':'#ffffff', | 
					
						
							| 
									
										
										
										
											2004-03-08 18:15:31 +00:00
										 |  |  |                 'builtin-foreground':'#000000', | 
					
						
							|  |  |  |                 'builtin-background':'#ffffff', | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |                 'comment-foreground':'#000000', | 
					
						
							|  |  |  |                 'comment-background':'#ffffff', | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |                 'string-foreground':'#000000', | 
					
						
							|  |  |  |                 'string-background':'#ffffff', | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |                 'definition-foreground':'#000000', | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |                 'definition-background':'#ffffff', | 
					
						
							|  |  |  |                 'hilite-foreground':'#000000', | 
					
						
							|  |  |  |                 'hilite-background':'gray', | 
					
						
							|  |  |  |                 'break-foreground':'#ffffff', | 
					
						
							|  |  |  |                 'break-background':'#000000', | 
					
						
							|  |  |  |                 'hit-foreground':'#ffffff', | 
					
						
							|  |  |  |                 'hit-background':'#000000', | 
					
						
							|  |  |  |                 'error-foreground':'#ffffff', | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |                 'error-background':'#000000', | 
					
						
							|  |  |  |                 #cursor (only foreground can be set) | 
					
						
							|  |  |  |                 'cursor-foreground':'#000000', | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |                 #shell window | 
					
						
							|  |  |  |                 'stdout-foreground':'#000000', | 
					
						
							|  |  |  |                 'stdout-background':'#ffffff', | 
					
						
							|  |  |  |                 'stderr-foreground':'#000000', | 
					
						
							|  |  |  |                 'stderr-background':'#ffffff', | 
					
						
							|  |  |  |                 'console-foreground':'#000000', | 
					
						
							|  |  |  |                 'console-background':'#ffffff' } | 
					
						
							|  |  |  |         for element in theme.keys(): | 
					
						
							| 
									
										
										
										
											2002-02-11 02:20:53 +00:00
										 |  |  |             if not cfgParser.has_option(themeName,element): | 
					
						
							|  |  |  |                 #we are going to return a default, print warning | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |                 warning=('\n Warning: configHandler.py - IdleConf.GetThemeDict' | 
					
						
							|  |  |  |                            ' -\n problem retrieving theme element %r' | 
					
						
							|  |  |  |                            '\n from theme %r.\n' | 
					
						
							|  |  |  |                            ' returning default value: %r\n' % | 
					
						
							|  |  |  |                            (element, themeName, theme[element])) | 
					
						
							| 
									
										
										
										
											2002-02-11 02:20:53 +00:00
										 |  |  |                 sys.stderr.write(warning) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |             colour=cfgParser.Get(themeName,element,default=theme[element]) | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |             theme[element]=colour | 
					
						
							|  |  |  |         return theme | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |     def CurrentTheme(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         Returns the name of the currently active theme | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-01-04 07:53:06 +00:00
										 |  |  |         return self.GetOption('main','Theme','name',default='') | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |     def CurrentKeys(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         Returns the name of the currently active key set | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-01-04 07:53:06 +00:00
										 |  |  |         return self.GetOption('main','Keys','name',default='') | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-06 01:29:22 +00:00
										 |  |  |     def GetExtensions(self, active_only=True, editor_only=False, shell_only=False): | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         Gets a list of all idle extensions declared in the config files. | 
					
						
							| 
									
										
										
										
											2004-06-06 01:29:22 +00:00
										 |  |  |         active_only - boolean, if true only return active (enabled) extensions | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         extns=self.RemoveKeyBindNames( | 
					
						
							|  |  |  |                 self.GetSectionList('default','extensions')) | 
					
						
							|  |  |  |         userExtns=self.RemoveKeyBindNames( | 
					
						
							|  |  |  |                 self.GetSectionList('user','extensions')) | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |         for extn in userExtns: | 
					
						
							|  |  |  |             if extn not in extns: #user has added own extension | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |                 extns.append(extn) | 
					
						
							| 
									
										
										
										
											2004-06-06 01:29:22 +00:00
										 |  |  |         if active_only: | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |             activeExtns=[] | 
					
						
							|  |  |  |             for extn in extns: | 
					
						
							| 
									
										
										
										
											2004-06-06 01:29:22 +00:00
										 |  |  |                 if self.GetOption('extensions', extn, 'enable', default=True, | 
					
						
							|  |  |  |                                   type='bool'): | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |                     #the extension is enabled | 
					
						
							| 
									
										
										
										
											2004-06-06 01:29:22 +00:00
										 |  |  |                     if editor_only or shell_only: | 
					
						
							|  |  |  |                         if editor_only: | 
					
						
							|  |  |  |                             option = "enable_editor" | 
					
						
							|  |  |  |                         else: | 
					
						
							|  |  |  |                             option = "enable_shell" | 
					
						
							|  |  |  |                         if self.GetOption('extensions', extn,option, | 
					
						
							|  |  |  |                                           default=True, type='bool', | 
					
						
							|  |  |  |                                           warn_on_default=False): | 
					
						
							|  |  |  |                             activeExtns.append(extn) | 
					
						
							|  |  |  |                     else: | 
					
						
							|  |  |  |                         activeExtns.append(extn) | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  |             return activeExtns | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |             return extns | 
					
						
							| 
									
										
										
										
											2002-01-03 12:05:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |     def RemoveKeyBindNames(self,extnNameList): | 
					
						
							|  |  |  |         #get rid of keybinding section names | 
					
						
							|  |  |  |         names=extnNameList | 
					
						
							|  |  |  |         kbNameIndicies=[] | 
					
						
							|  |  |  |         for name in names: | 
					
						
							| 
									
										
										
										
											2006-06-09 20:43:48 +00:00
										 |  |  |             if name.endswith(('_bindings', '_cfgBindings')): | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |                 kbNameIndicies.append(names.index(name)) | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         kbNameIndicies.sort() | 
					
						
							|  |  |  |         kbNameIndicies.reverse() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         for index in kbNameIndicies: #delete each keybinding section name | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |             del(names[index]) | 
					
						
							|  |  |  |         return names | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-01 01:33:36 +00:00
										 |  |  |     def GetExtnNameForEvent(self,virtualEvent): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Returns the name of the extension that virtualEvent is bound in, or | 
					
						
							|  |  |  |         None if not bound in any extension. | 
					
						
							|  |  |  |         virtualEvent - string, name of the virtual event to test for, without | 
					
						
							|  |  |  |                        the enclosing '<< >>' | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         extName=None | 
					
						
							|  |  |  |         vEvent='<<'+virtualEvent+'>>' | 
					
						
							| 
									
										
										
										
											2004-06-06 01:29:22 +00:00
										 |  |  |         for extn in self.GetExtensions(active_only=0): | 
					
						
							| 
									
										
										
										
											2002-02-01 01:33:36 +00:00
										 |  |  |             for event in self.GetExtensionKeys(extn).keys(): | 
					
						
							|  |  |  |                 if event == vEvent: | 
					
						
							|  |  |  |                     extName=extn | 
					
						
							|  |  |  |         return extName | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |     def GetExtensionKeys(self,extensionName): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         returns a dictionary of the configurable keybindings for a particular | 
					
						
							|  |  |  |         extension,as they exist in the dictionary returned by GetCurrentKeySet; | 
					
						
							| 
									
										
										
										
											2002-02-01 01:33:36 +00:00
										 |  |  |         that is, where previously used bindings are disabled. | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         keysName=extensionName+'_cfgBindings' | 
					
						
							|  |  |  |         activeKeys=self.GetCurrentKeySet() | 
					
						
							|  |  |  |         extKeys={} | 
					
						
							|  |  |  |         if self.defaultCfg['extensions'].has_section(keysName): | 
					
						
							|  |  |  |             eventNames=self.defaultCfg['extensions'].GetOptionList(keysName) | 
					
						
							|  |  |  |             for eventName in eventNames: | 
					
						
							|  |  |  |                 event='<<'+eventName+'>>' | 
					
						
							|  |  |  |                 binding=activeKeys[event] | 
					
						
							|  |  |  |                 extKeys[event]=binding | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         return extKeys | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |     def __GetRawExtensionKeys(self,extensionName): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         returns a dictionary of the configurable keybindings for a particular | 
					
						
							|  |  |  |         extension, as defined in the configuration files, or an empty dictionary | 
					
						
							|  |  |  |         if no bindings are found | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         keysName=extensionName+'_cfgBindings' | 
					
						
							|  |  |  |         extKeys={} | 
					
						
							|  |  |  |         if self.defaultCfg['extensions'].has_section(keysName): | 
					
						
							|  |  |  |             eventNames=self.defaultCfg['extensions'].GetOptionList(keysName) | 
					
						
							|  |  |  |             for eventName in eventNames: | 
					
						
							|  |  |  |                 binding=self.GetOption('extensions',keysName, | 
					
						
							|  |  |  |                         eventName,default='').split() | 
					
						
							|  |  |  |                 event='<<'+eventName+'>>' | 
					
						
							|  |  |  |                 extKeys[event]=binding | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         return extKeys | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |     def GetExtensionBindings(self,extensionName): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         Returns a dictionary of all the event bindings for a particular | 
					
						
							|  |  |  |         extension. The configurable keybindings are returned as they exist in | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         the dictionary returned by GetCurrentKeySet; that is, where re-used | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         keybindings are disabled. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         bindsName=extensionName+'_bindings' | 
					
						
							|  |  |  |         extBinds=self.GetExtensionKeys(extensionName) | 
					
						
							|  |  |  |         #add the non-configurable bindings | 
					
						
							|  |  |  |         if self.defaultCfg['extensions'].has_section(bindsName): | 
					
						
							|  |  |  |             eventNames=self.defaultCfg['extensions'].GetOptionList(bindsName) | 
					
						
							|  |  |  |             for eventName in eventNames: | 
					
						
							|  |  |  |                 binding=self.GetOption('extensions',bindsName, | 
					
						
							|  |  |  |                         eventName,default='').split() | 
					
						
							|  |  |  |                 event='<<'+eventName+'>>' | 
					
						
							|  |  |  |                 extBinds[event]=binding | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return extBinds | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-04 07:53:06 +00:00
										 |  |  |     def GetKeyBinding(self, keySetName, eventStr): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         returns the keybinding for a specific event. | 
					
						
							|  |  |  |         keySetName - string, name of key binding set | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         eventStr - string, the virtual event we want the binding for, | 
					
						
							| 
									
										
										
										
											2002-01-04 07:53:06 +00:00
										 |  |  |                    represented as a string, eg. '<<event>>' | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         eventName=eventStr[2:-2] #trim off the angle brackets | 
					
						
							|  |  |  |         binding=self.GetOption('keys',keySetName,eventName,default='').split() | 
					
						
							|  |  |  |         return binding | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |     def GetCurrentKeySet(self): | 
					
						
							| 
									
										
										
										
											2006-06-11 14:33:36 +00:00
										 |  |  |         result = self.GetKeySet(self.CurrentKeys()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if macosxSupport.runningAsOSXApp(): | 
					
						
							|  |  |  |             # We're using AquaTk, replace all keybingings that use the | 
					
						
							| 
									
										
										
										
											2006-06-11 19:42:51 +00:00
										 |  |  |             # Alt key by ones that use the Option key because the former | 
					
						
							| 
									
										
										
										
											2006-06-11 14:33:36 +00:00
										 |  |  |             # don't work reliably. | 
					
						
							|  |  |  |             for k, v in result.items(): | 
					
						
							|  |  |  |                 v2 = [ x.replace('<Alt-', '<Option-') for x in v ] | 
					
						
							|  |  |  |                 if v != v2: | 
					
						
							|  |  |  |                     result[k] = v2 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return result | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |     def GetKeySet(self,keySetName): | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         Returns a dictionary of: all requested core keybindings, plus the | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         keybindings for all currently active extensions. If a binding defined | 
					
						
							|  |  |  |         in an extension is already in use, that binding is disabled. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |         keySet=self.GetCoreKeys(keySetName) | 
					
						
							| 
									
										
										
										
											2004-06-06 01:29:22 +00:00
										 |  |  |         activeExtns=self.GetExtensions(active_only=1) | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         for extn in activeExtns: | 
					
						
							|  |  |  |             extKeys=self.__GetRawExtensionKeys(extn) | 
					
						
							|  |  |  |             if extKeys: #the extension defines keybindings | 
					
						
							|  |  |  |                 for event in extKeys.keys(): | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |                     if extKeys[event] in keySet.values(): | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |                         #the binding is already in use | 
					
						
							|  |  |  |                         extKeys[event]='' #disable this binding | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |                     keySet[event]=extKeys[event] #add binding | 
					
						
							|  |  |  |         return keySet | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-01 01:33:36 +00:00
										 |  |  |     def IsCoreBinding(self,virtualEvent): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         returns true if the virtual event is bound in the core idle keybindings. | 
					
						
							|  |  |  |         virtualEvent - string, name of the virtual event to test for, without | 
					
						
							|  |  |  |                        the enclosing '<< >>' | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         return ('<<'+virtualEvent+'>>') in self.GetCoreKeys().keys() | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |     def GetCoreKeys(self, keySetName=None): | 
					
						
							| 
									
										
										
										
											2001-12-03 00:37:28 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-01-19 10:33:21 +00:00
										 |  |  |         returns the requested set of core keybindings, with fallbacks if | 
					
						
							|  |  |  |         required. | 
					
						
							| 
									
										
										
										
											2002-01-24 06:02:50 +00:00
										 |  |  |         Keybindings loaded from the config file(s) are loaded _over_ these | 
					
						
							|  |  |  |         defaults, so if there is a problem getting any core binding there will | 
					
						
							|  |  |  |         be an 'ultimate last resort fallback' to the CUA-ish bindings | 
					
						
							|  |  |  |         defined here. | 
					
						
							| 
									
										
										
										
											2001-12-03 00:37:28 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         keyBindings={ | 
					
						
							| 
									
										
										
										
											2002-02-01 01:33:36 +00:00
										 |  |  |             '<<copy>>': ['<Control-c>', '<Control-C>'], | 
					
						
							|  |  |  |             '<<cut>>': ['<Control-x>', '<Control-X>'], | 
					
						
							|  |  |  |             '<<paste>>': ['<Control-v>', '<Control-V>'], | 
					
						
							| 
									
										
										
										
											2001-12-03 00:37:28 +00:00
										 |  |  |             '<<beginning-of-line>>': ['<Control-a>', '<Home>'], | 
					
						
							|  |  |  |             '<<center-insert>>': ['<Control-l>'], | 
					
						
							|  |  |  |             '<<close-all-windows>>': ['<Control-q>'], | 
					
						
							|  |  |  |             '<<close-window>>': ['<Alt-F4>'], | 
					
						
							| 
									
										
										
										
											2002-09-26 22:13:22 +00:00
										 |  |  |             '<<do-nothing>>': ['<Control-x>'], | 
					
						
							| 
									
										
										
										
											2001-12-03 00:37:28 +00:00
										 |  |  |             '<<end-of-file>>': ['<Control-d>'], | 
					
						
							|  |  |  |             '<<python-docs>>': ['<F1>'], | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |             '<<python-context-help>>': ['<Shift-F1>'], | 
					
						
							| 
									
										
										
										
											2001-12-03 00:37:28 +00:00
										 |  |  |             '<<history-next>>': ['<Alt-n>'], | 
					
						
							|  |  |  |             '<<history-previous>>': ['<Alt-p>'], | 
					
						
							|  |  |  |             '<<interrupt-execution>>': ['<Control-c>'], | 
					
						
							| 
									
										
										
										
											2003-01-04 01:43:53 +00:00
										 |  |  |             '<<view-restart>>': ['<F6>'], | 
					
						
							| 
									
										
										
										
											2003-01-22 00:23:23 +00:00
										 |  |  |             '<<restart-shell>>': ['<Control-F6>'], | 
					
						
							| 
									
										
										
										
											2001-12-03 00:37:28 +00:00
										 |  |  |             '<<open-class-browser>>': ['<Alt-c>'], | 
					
						
							|  |  |  |             '<<open-module>>': ['<Alt-m>'], | 
					
						
							|  |  |  |             '<<open-new-window>>': ['<Control-n>'], | 
					
						
							|  |  |  |             '<<open-window-from-file>>': ['<Control-o>'], | 
					
						
							|  |  |  |             '<<plain-newline-and-indent>>': ['<Control-j>'], | 
					
						
							| 
									
										
										
										
											2002-06-11 04:45:34 +00:00
										 |  |  |             '<<print-window>>': ['<Control-p>'], | 
					
						
							| 
									
										
										
										
											2001-12-03 00:37:28 +00:00
										 |  |  |             '<<redo>>': ['<Control-y>'], | 
					
						
							|  |  |  |             '<<remove-selection>>': ['<Escape>'], | 
					
						
							| 
									
										
										
										
											2003-11-24 05:26:16 +00:00
										 |  |  |             '<<save-copy-of-window-as-file>>': ['<Alt-Shift-S>'], | 
					
						
							| 
									
										
										
										
											2001-12-03 00:37:28 +00:00
										 |  |  |             '<<save-window-as-file>>': ['<Alt-s>'], | 
					
						
							|  |  |  |             '<<save-window>>': ['<Control-s>'], | 
					
						
							|  |  |  |             '<<select-all>>': ['<Alt-a>'], | 
					
						
							|  |  |  |             '<<toggle-auto-coloring>>': ['<Control-slash>'], | 
					
						
							| 
									
										
										
										
											2002-01-04 07:53:06 +00:00
										 |  |  |             '<<undo>>': ['<Control-z>'], | 
					
						
							|  |  |  |             '<<find-again>>': ['<Control-g>', '<F3>'], | 
					
						
							|  |  |  |             '<<find-in-files>>': ['<Alt-F3>'], | 
					
						
							|  |  |  |             '<<find-selection>>': ['<Control-F3>'], | 
					
						
							|  |  |  |             '<<find>>': ['<Control-f>'], | 
					
						
							|  |  |  |             '<<replace>>': ['<Control-h>'], | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |             '<<goto-line>>': ['<Alt-g>'], | 
					
						
							| 
									
										
										
										
											2002-09-14 03:17:01 +00:00
										 |  |  |             '<<smart-backspace>>': ['<Key-BackSpace>'], | 
					
						
							|  |  |  |             '<<newline-and-indent>>': ['<Key-Return> <Key-KP_Enter>'], | 
					
						
							|  |  |  |             '<<smart-indent>>': ['<Key-Tab>'], | 
					
						
							|  |  |  |             '<<indent-region>>': ['<Control-Key-bracketright>'], | 
					
						
							|  |  |  |             '<<dedent-region>>': ['<Control-Key-bracketleft>'], | 
					
						
							|  |  |  |             '<<comment-region>>': ['<Alt-Key-3>'], | 
					
						
							|  |  |  |             '<<uncomment-region>>': ['<Alt-Key-4>'], | 
					
						
							|  |  |  |             '<<tabify-region>>': ['<Alt-Key-5>'], | 
					
						
							|  |  |  |             '<<untabify-region>>': ['<Alt-Key-6>'], | 
					
						
							|  |  |  |             '<<toggle-tabs>>': ['<Alt-Key-t>'], | 
					
						
							| 
									
										
										
										
											2005-01-28 00:16:16 +00:00
										 |  |  |             '<<change-indentwidth>>': ['<Alt-Key-u>'], | 
					
						
							|  |  |  |             '<<del-word-left>>': ['<Control-Key-BackSpace>'], | 
					
						
							|  |  |  |             '<<del-word-right>>': ['<Control-Key-Delete>'] | 
					
						
							| 
									
										
										
										
											2002-09-14 03:17:01 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2001-12-03 00:37:28 +00:00
										 |  |  |         if keySetName: | 
					
						
							| 
									
										
										
										
											2002-01-04 07:53:06 +00:00
										 |  |  |             for event in keyBindings.keys(): | 
					
						
							|  |  |  |                 binding=self.GetKeyBinding(keySetName,event) | 
					
						
							| 
									
										
										
										
											2002-02-18 01:43:11 +00:00
										 |  |  |                 if binding: | 
					
						
							| 
									
										
										
										
											2002-01-04 07:53:06 +00:00
										 |  |  |                     keyBindings[event]=binding | 
					
						
							| 
									
										
										
										
											2002-02-18 01:43:11 +00:00
										 |  |  |                 else: #we are going to return a default, print warning | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |                     warning=('\n Warning: configHandler.py - IdleConf.GetCoreKeys' | 
					
						
							|  |  |  |                                ' -\n problem retrieving key binding for event %r' | 
					
						
							|  |  |  |                                '\n from key set %r.\n' | 
					
						
							|  |  |  |                                ' returning default value: %r\n' % | 
					
						
							|  |  |  |                                (event, keySetName, keyBindings[event])) | 
					
						
							| 
									
										
										
										
											2002-02-18 01:43:11 +00:00
										 |  |  |                     sys.stderr.write(warning) | 
					
						
							| 
									
										
										
										
											2001-12-03 00:37:28 +00:00
										 |  |  |         return keyBindings | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-05 04:52:32 +00:00
										 |  |  |     def GetExtraHelpSourceList(self,configSet): | 
					
						
							| 
									
										
										
										
											2003-01-14 22:03:31 +00:00
										 |  |  |         """Fetch list of extra help sources from a given configSet.
 | 
					
						
							| 
									
										
										
										
											2003-01-27 02:36:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-14 22:03:31 +00:00
										 |  |  |         Valid configSets are 'user' or 'default'.  Return a list of tuples of | 
					
						
							|  |  |  |         the form (menu_item , path_to_help_file , option), or return the empty | 
					
						
							|  |  |  |         list.  'option' is the sequence number of the help resource.  'option' | 
					
						
							|  |  |  |         values determine the position of the menu items on the Help menu, | 
					
						
							|  |  |  |         therefore the returned list must be sorted by 'option'. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-02-05 04:52:32 +00:00
										 |  |  |         helpSources=[] | 
					
						
							|  |  |  |         if configSet=='user': | 
					
						
							|  |  |  |             cfgParser=self.userCfg['main'] | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         elif configSet=='default': | 
					
						
							| 
									
										
										
										
											2002-02-05 04:52:32 +00:00
										 |  |  |             cfgParser=self.defaultCfg['main'] | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-11-30 19:10:19 +00:00
										 |  |  |             raise InvalidConfigSet, 'Invalid configSet specified' | 
					
						
							| 
									
										
										
										
											2002-02-05 04:52:32 +00:00
										 |  |  |         options=cfgParser.GetOptionList('HelpFiles') | 
					
						
							|  |  |  |         for option in options: | 
					
						
							|  |  |  |             value=cfgParser.Get('HelpFiles',option,default=';') | 
					
						
							|  |  |  |             if value.find(';')==-1: #malformed config entry with no ';' | 
					
						
							|  |  |  |                 menuItem='' #make these empty | 
					
						
							|  |  |  |                 helpPath='' #so value won't be added to list | 
					
						
							|  |  |  |             else: #config entry contains ';' as expected | 
					
						
							|  |  |  |                 value=string.split(value,';') | 
					
						
							|  |  |  |                 menuItem=value[0].strip() | 
					
						
							|  |  |  |                 helpPath=value[1].strip() | 
					
						
							|  |  |  |             if menuItem and helpPath: #neither are empty strings | 
					
						
							|  |  |  |                 helpSources.append( (menuItem,helpPath,option) ) | 
					
						
							| 
									
										
										
										
											2003-01-14 22:03:31 +00:00
										 |  |  |         helpSources.sort(self.__helpsort) | 
					
						
							| 
									
										
										
										
											2002-02-05 04:52:32 +00:00
										 |  |  |         return helpSources | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-14 22:03:31 +00:00
										 |  |  |     def __helpsort(self, h1, h2): | 
					
						
							|  |  |  |         if int(h1[2]) < int(h2[2]): | 
					
						
							|  |  |  |             return -1 | 
					
						
							|  |  |  |         elif int(h1[2]) > int(h2[2]): | 
					
						
							|  |  |  |             return 1 | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-02-05 04:52:32 +00:00
										 |  |  |     def GetAllExtraHelpSourcesList(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         Returns a list of tuples containing the details of all additional help | 
					
						
							| 
									
										
										
										
											2002-02-05 04:52:32 +00:00
										 |  |  |         sources configured, or an empty list if there are none. Tuples are of | 
					
						
							|  |  |  |         the format returned by GetExtraHelpSourceList. | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         """
 | 
					
						
							|  |  |  |         allHelpSources=( self.GetExtraHelpSourceList('default')+ | 
					
						
							| 
									
										
										
										
											2002-02-05 04:52:32 +00:00
										 |  |  |                 self.GetExtraHelpSourceList('user') ) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         return allHelpSources | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |     def LoadCfgFiles(self): | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |         load all configuration files. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         for key in self.defaultCfg.keys(): | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |             self.defaultCfg[key].Load() | 
					
						
							|  |  |  |             self.userCfg[key].Load() #same keys | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def SaveUserCfgFiles(self): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         write all loaded user configuration files back to disk | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         for key in self.userCfg.keys(): | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |             self.userCfg[key].Save() | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | idleConf=IdleConf() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ### module test | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     def dumpCfg(cfg): | 
					
						
							|  |  |  |         print '\n',cfg,'\n' | 
					
						
							|  |  |  |         for key in cfg.keys(): | 
					
						
							|  |  |  |             sections=cfg[key].sections() | 
					
						
							|  |  |  |             print key | 
					
						
							|  |  |  |             print sections | 
					
						
							|  |  |  |             for section in sections: | 
					
						
							|  |  |  |                 options=cfg[key].options(section) | 
					
						
							| 
									
										
										
										
											2002-12-31 16:03:23 +00:00
										 |  |  |                 print section | 
					
						
							| 
									
										
										
										
											2001-09-24 09:43:17 +00:00
										 |  |  |                 print options | 
					
						
							|  |  |  |                 for option in options: | 
					
						
							|  |  |  |                     print option, '=', cfg[key].Get(section,option) | 
					
						
							|  |  |  |     dumpCfg(idleConf.defaultCfg) | 
					
						
							|  |  |  |     dumpCfg(idleConf.userCfg) | 
					
						
							|  |  |  |     print idleConf.userCfg['main'].Get('Theme','name') | 
					
						
							|  |  |  |     #print idleConf.userCfg['highlight'].GetDefHighlight('Foo','normal') |