98 self.cancelButton.setText(self.trUtf8("&Cancel")) |
98 self.cancelButton.setText(self.trUtf8("&Cancel")) |
99 |
99 |
100 # polish up the dialog |
100 # polish up the dialog |
101 self.resize(QSize(400, 480).expandedTo(self.minimumSizeHint())) |
101 self.resize(QSize(400, 480).expandedTo(self.minimumSizeHint())) |
102 |
102 |
103 self.connect(self.okButton, SIGNAL("clicked()"), self.accept) |
103 self.okButton.clicked[()].connect(self.accept) |
104 self.connect(self.cancelButton, SIGNAL("clicked()"), self.reject) |
104 self.cancelButton.clicked[()].connect(self.reject) |
105 |
105 |
106 def getVariables(self): |
106 def getVariables(self): |
107 """ |
107 """ |
108 Public method to get the values for all variables. |
108 Public method to get the values for all variables. |
109 |
109 |