Exemplo n.º 1
0
 def addParam(self,index):
     text, ok = QInputDialog.getText(self, 'Add Parameters', 'Params:')
     if(ok):
         if(str(text) != ''):
             param = str(text)
             self.paramList.append(param)
             self.combo2.addItem(param)
             config.setParam(self.paramList)
Exemplo n.º 2
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)
Exemplo n.º 3
0
 def getName(self,item):
     if(item.isFile()):
             self.browsedialog.accept()
             fname = item.getPath()
             if not (fname == ""):
                 index = self.combo2.currentIndex()
                 text = str(self.combo2.itemText(index))+" "+fname
                 self.combo2.setItemText(index,text)
                 self.paramList.pop(index)
                 self.paramList.insert(index,text)
                 config.setParam(self.paramList)
Exemplo n.º 4
0
 def delParam(self):
     index = self.combo2.currentIndex()
     self.combo2.removeItem(index)
     self.paramList.pop(index)
     config.setParam(self.paramList)