Exemplo n.º 1
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
Exemplo n.º 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
Exemplo n.º 3
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
Exemplo n.º 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
Exemplo n.º 5
0
 def listOfPropertyNames(self):
     return tpc.getListOfPluginPropertyNames (self.plugin)        
Exemplo n.º 6
0
 def listOfPropertyNames(self):
     return tpc.getListOfPluginPropertyNames(self.plugin)