- Timestamp:
- Oct 18, 2006, 4:40:51 PM (18 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r243 r259 119 119 _rnxSkelLineEdit = new QLineEdit(settings.value("rnxSkel").toString()); 120 120 _rnxSkelLineEdit->setMaximumWidth(5*ww); 121 _rnxAppendCheckBox = new QCheckBox(); 122 _rnxAppendCheckBox->setCheckState(Qt::CheckState( 123 settings.value("rnxAppend").toInt())); 121 124 _rnxIntrComboBox = new QComboBox(); 122 125 _rnxIntrComboBox->setMaximumWidth(9*ww); … … 215 218 layout->addWidget(_rnxSkelLineEdit, 7, 2); 216 219 220 layout->addWidget(new QLabel("Append files"), 7, 3); 221 layout->addWidget(_rnxAppendCheckBox, 7, 4); 222 217 223 layout->addWidget(new QLabel("Mountpoints"), 8, 0, 1, 2); 218 224 layout->addWidget(_mountPointsTable, 9, 0, 1, 5); … … 334 340 settings.setValue("rnxSampl", _rnxSamplSpinBox->value()); 335 341 settings.setValue("rnxSkel", _rnxSkelLineEdit->text()); 342 settings.setValue("rnxAppend", _rnxAppendCheckBox->checkState()); 336 343 settings.setValue("logFile", _logFileLineEdit->text()); 337 344 -
trunk/BNC/bncwindow.h
r243 r259 57 57 QComboBox* _rnxIntrComboBox; 58 58 QSpinBox* _rnxSamplSpinBox; 59 QCheckBox* _rnxAppendCheckBox; 59 60 QSpinBox* _waitTimeSpinBox; 60 61 QTableWidget* _mountPointsTable;
Note:
See TracChangeset
for help on using the changeset viewer.