コード例 #1
0
ファイル: widgets.py プロジェクト: chergert/gnome-tweak-tool
class _GConfTweak(Tweak):
    def __init__(self, key_name, key_type, **options):
        self.gconf = GConfSetting(key_name, key_type)
        Tweak.__init__(self,
            self.gconf.schema_get_summary(),
            self.gconf.schema_get_description(),
            **options)
コード例 #2
0
ファイル: widgets.py プロジェクト: pauRubi/gnome-tweak-tool
 def __init__(self, key_name, key_type, **options):
     self.gconf = GConfSetting(key_name, key_type)
     Tweak.__init__(self,
         options.get("summary",self.gconf.schema_get_summary()),
         options.get("description",self.gconf.schema_get_description()),
         **options)