Exemplo n.º 1
0
 def showNumberInputDialog(self):
     dlg = NumberInputDialog(self.isInteger)
     dlg.exec_()
     if dlg.value is not None:
         self.spnValue.setValue(dlg.value)
Exemplo n.º 2
0
 def showNumberInputDialog(self):
     pass
     dlg = NumberInputDialog()
     dlg.exec_()
     if dlg.value is not None:
         self.text.setText(str(dlg.value))
Exemplo n.º 3
0
 def showNumberInputDialog(self):
     dlg = NumberInputDialog(self.isInteger)
     dlg.exec_()
     if dlg.value is not None:
         self.spnValue.setValue(dlg.value)
Exemplo n.º 4
0
 def showNumberInputDialog(self):
     pass
     dlg = NumberInputDialog()
     dlg.exec_()
     if dlg.value != None:
         self.text.setText(str(dlg.value))