예제 #1
0
파일: gtk.py 프로젝트: smolleyes/Gstyle
 def add_item_archive(self,gtk_archive):
     """Ajouter un element dans le dictionnaire"""
     scaner = ThemeScaner(gtk_archive)
     theme_list = scaner.theme_loader(gtk_archive)
     if theme_list:
         return theme_list
     else:
         return
예제 #2
0
파일: gtk.py 프로젝트: smolleyes/Gstyle
 def add_item_archive(self, gtk_archive):
     """Ajouter un element dans le dictionnaire"""
     scaner = ThemeScaner(gtk_archive)
     theme_list = scaner.theme_loader(gtk_archive)
     if theme_list:
         return theme_list
     else:
         return
예제 #3
0
파일: mouse.py 프로젝트: smolleyes/Gstyle
 def add_item_archive(self,archive):
     """Ajouter un element dans le dictionnaire"""
     scaner = ThemeScaner(archive)
     theme_list = scaner.theme_loader(archive)
     if theme_list:
         return theme_list
     else:
         print "no mouse theme in this file"
예제 #4
0
 def add_item_archive(self, archive):
     """Ajouter un element dans le dictionnaire"""
     scaner = ThemeScaner(archive)
     theme_list = scaner.theme_loader(archive)
     if theme_list:
         return theme_list
     else:
         print "no mouse theme in this file"
예제 #5
0
 def add_item_archive(self, cubemodel_archive):
     """Ajouter un element dans le dictionnaire"""
     scaner = ThemeScaner(cubemodel_archive)
     theme_list = scaner.theme_loader(cubemodel_archive)
     if theme_list:
         return theme_list
     else:
         print "no cubemodels theme to install"
예제 #6
0
 def add_item_archive(self, path_archive):
     """Ajouter un element dans le dictionnaire"""
     scaner = ThemeScaner(path_archive)
     theme_list = scaner.theme_loader(path_archive)
     if theme_list.has_key('metacity'):
         return theme_list['metacity']
     else:
         print "no metacity theme in this file"
예제 #7
0
 def add_item_archive(self,path_archive):
     """Ajouter un element dans le dictionnaire"""
     scaner = ThemeScaner(path_archive)
     theme_list = scaner.theme_loader(path_archive)
     if theme_list.has_key('metacity'):
         return theme_list['metacity']
     else:
         print "no metacity theme in this file"
예제 #8
0
파일: icon.py 프로젝트: smolleyes/Gstyle
 def add_item_archive(self,icon_archive=None, theme_list=None):
     """Ajouter un element dans le dictionnaire"""
     if icon_archive:
         scaner = ThemeScaner(icon_archive)
         theme_list = scaner.theme_loader(icon_archive)
     if theme_list.has_key('icons'):
         return theme_list
     else:
         print "no icons theme in this file"