106 self.cancelButton.setText(self.tr("&Cancel")) |
106 self.cancelButton.setText(self.tr("&Cancel")) |
107 |
107 |
108 # polish up the dialog |
108 # polish up the dialog |
109 self.resize(QSize(400, 480).expandedTo(self.minimumSizeHint())) |
109 self.resize(QSize(400, 480).expandedTo(self.minimumSizeHint())) |
110 |
110 |
111 self.okButton.clicked[()].connect(self.accept) |
111 self.okButton.clicked.connect(self.accept) |
112 self.cancelButton.clicked[()].connect(self.reject) |
112 self.cancelButton.clicked.connect(self.reject) |
113 |
113 |
114 def getVariables(self): |
114 def getVariables(self): |
115 """ |
115 """ |
116 Public method to get the values for all variables. |
116 Public method to get the values for all variables. |
117 |
117 |