コード例 #1
0
ファイル: telplugins.py プロジェクト: alexdarling/telPlugins
 def listOfPropertyHints (self):
     nameList = tpc.getListOfPluginPropertyNames (self.plugin)
     aList = []
     for i in range (0, len (nameList)):
         name = nameList[i]
         handle = tpc.getPluginProperty(self.plugin, nameList[i])
         descr = tpc.getPropertyHint(handle)
         aList.append ([name, descr])
     return aList
コード例 #2
0
 def listOfPropertyHints(self):
     nameList = tpc.getListOfPluginPropertyNames(self.plugin)
     aList = []
     for i in range(0, len(nameList)):
         name = nameList[i]
         handle = tpc.getPluginProperty(self.plugin, nameList[i])
         descr = tpc.getPropertyHint(handle)
         aList.append([name, descr])
     return aList
コード例 #3
0
ファイル: telplugins.py プロジェクト: alexdarling/telPlugins
 def listOfProperties (self):
     if not self:
         return []
     nameList = tpc.getListOfPluginPropertyNames (self.plugin)
     aList = []
     for i in range (0, len (nameList)):
         name = nameList[i]
         handle = tpc.getPluginProperty(self.plugin, nameList[i])
         hint = tpc.getPropertyHint(handle)
         aList.append ([name, hint])
     return aList
コード例 #4
0
 def listOfProperties(self):
     if not self:
         return []
     nameList = tpc.getListOfPluginPropertyNames(self.plugin)
     aList = []
     for i in range(0, len(nameList)):
         name = nameList[i]
         handle = tpc.getPluginProperty(self.plugin, nameList[i])
         hint = tpc.getPropertyHint(handle)
         aList.append([name, hint])
     return aList
コード例 #5
0
ファイル: telplugins.py プロジェクト: alexdarling/telPlugins
 def listOfPropertyNames(self):
     return tpc.getListOfPluginPropertyNames (self.plugin)        
コード例 #6
0
 def listOfPropertyNames(self):
     return tpc.getListOfPluginPropertyNames(self.plugin)