Changeset 4420 for palm/trunk/SCRIPTS/palmrungui
- Timestamp:
- Feb 24, 2020 2:13:56 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palmrungui
r4411 r4420 25 25 # ----------------- 26 26 # $Id$ 27 # Bugfix: minor fixes related to start buttons 28 # 29 # 4411 2020-02-18 14:28:02Z maronga 27 30 # Added new features: individual tag for submitted runs, automatic finding of 28 31 # configuration, start of palmbuild from GUI … … 177 180 def startpalmrun(self): 178 181 palmrunline = str(self.groupBox.findChild(QtGui.QLineEdit,"commandline").text()) 179 userline = str(self.group_advanced.findChild(QtGui.QLineEdit,"line_user").text())182 userline = str(self.group_advanced.findChild(QtGui.QLineEdit,"line_user").text()) 180 183 181 184 # Check for empty line … … 246 249 palmbuildline = 'palmbuild -c ' + str(self.group_execution.findChild(QtGui.QComboBox, "combo_configuration").currentText()) 247 250 251 palmrunline_save = str(self.groupBox.findChild(QtGui.QLineEdit,"commandline").text()) 252 248 253 # Disable the main window 254 palmbuildline_save = palmbuildline 249 255 self.tabWidget.setEnabled(False) 250 256 self.groupBox.findChild(QtGui.QPushButton,"button_start").setEnabled(False) 251 257 self.groupBox.findChild(QtGui.QLineEdit,"line_tag").setEnabled(False) 258 self.groupBox.findChild(QtGui.QPushButton,"button_start").setText("wait...") 259 self.group_execution.findChild(QtGui.QPushButton,"button_palmbuild").setText("wait...") 252 260 self.groupBox.findChild(QtGui.QLineEdit,"commandline").setText("Executing palmbuild in xterm...") 253 261 … … 284 292 self.groupBox.findChild(QtGui.QPushButton,"button_start").setEnabled(True) 285 293 self.groupBox.findChild(QtGui.QLineEdit,"line_tag").setEnabled(True) 286 294 self.groupBox.findChild(QtGui.QPushButton,"button_start").setText("palmrun") 295 self.groupBox.findChild(QtGui.QLineEdit,"commandline").setText(palmrunline_save) 296 self.group_execution.findChild(QtGui.QPushButton,"button_palmbuild").setText("(re-)build") 287 297 # Reload recent jobs 288 298 self.recent_jobs(50)
Note: See TracChangeset
for help on using the changeset viewer.