Changeset 3469 in ntrip
- Timestamp:
- Oct 14, 2011, 4:11:08 PM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/bncwindow.cpp ¶
r3367 r3469 483 483 connect(_cmbTable, SIGNAL(itemSelectionChanged()), 484 484 SLOT(slotBncTextChanged())); 485 486 _cmbMethodComboBox = new QComboBox(); 487 _cmbMethodComboBox->setEditable(false); 488 _cmbMethodComboBox->addItems(QString("Single-Epoch,Filter").split(",")); 489 int im = _cmbMethodComboBox->findText(settings.value("cmbMethod").toString()); 490 if (im != -1) { 491 _cmbMethodComboBox->setCurrentIndex(im); 492 } 485 493 486 494 // Upload Results … … 984 992 connect(addCmbRowButton, SIGNAL(clicked()), this, SLOT(slotAddCmbRow())); 985 993 cmbLayout->addWidget(delCmbRowButton,2,3); 994 cmbLayout->addWidget(new QLabel("Method"), 3, 3); 995 cmbLayout->addWidget(_cmbMethodComboBox, 3, 4, Qt::AlignRight); 986 996 cmbLayout->addWidget(new QLabel("Maximal Residuum"), 4, 3); 987 997 cmbLayout->addWidget(_cmbMaxresLineEdit, 4, 4, Qt::AlignRight); … … 1471 1481 } 1472 1482 settings.setValue("cmbMaxres", _cmbMaxresLineEdit->text()); 1483 settings.setValue("cmbMethod", _cmbMethodComboBox->currentText()); 1473 1484 1474 1485 if (!uploadMountpointsOut.isEmpty()) { -
TabularUnified trunk/BNC/bncwindow.h ¶
r3356 r3469 204 204 QTableWidget* _cmbTable; 205 205 QLineEdit* _cmbMaxresLineEdit; 206 QComboBox* _cmbMethodComboBox; 206 207 207 208 QTableWidget* _uploadTable;
Note:
See TracChangeset
for help on using the changeset viewer.