Home | History | Annotate | Download | only in idlelib

Lines Matching full:themename

732         themeName=self.customTheme.get()
734 'to delete the theme %r ?' % (themeName,),
738 idleConf.userCfg['highlight'].remove_section(themeName)
739 if themeName in self.changedItems['highlight']:
740 del(self.changedItems['highlight'][themeName])
805 themeName=self.builtinTheme.get()
808 themeName=self.customTheme.get()
809 newTheme=idleConf.GetThemeDict(themeType,themeName)
811 if themeName in self.changedItems['highlight'].keys():
812 themeChanges=self.changedItems['highlight'][themeName]
1079 def SaveNewTheme(self,themeName,theme):
1082 themeName - string, the name of the new theme
1085 if not idleConf.userCfg['highlight'].has_section(themeName):
1086 idleConf.userCfg['highlight'].add_section(themeName)
1089 idleConf.userCfg['highlight'].SetOption(themeName,element,value)