Example #1
0
 def addCmd(self,index):
     text, ok = QInputDialog.getText(self, 'Add Command', 'Command:')
     if(ok):
         if(str(text) != ''):
             cmd = str(text).upper()
             self.cmdList.append(cmd)
             #print self.cmdList
             self.combo.addItem(cmd)
             config.setCmd(self.cmdList)
             config.setParam(self.paramList)
Example #2
0
 def delCmd(self):
     index = self.combo.currentIndex()
     self.combo.removeItem(index)
     self.cmdList.pop(index)
     #print self.cmdList
     config.setCmd(self.cmdList)