Changeset 2086 in ntrip
- Timestamp:
- Dec 6, 2009, 5:06:25 PM (15 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r2083 r2086 308 308 _pppUsePhaseCheckBox->setCheckState(Qt::CheckState( 309 309 settings.value("pppUsePhase").toInt())); 310 _pppEstTropoCheckBox = new QCheckBox(); 311 _pppEstTropoCheckBox->setCheckState(Qt::CheckState( 312 settings.value("pppEstTropo").toInt())); 310 313 311 314 // Streams … … 732 735 QGridLayout* pppLayout = new QGridLayout; 733 736 pppLayout->setColumnMinimumWidth(0,14*ww); 734 pppLayout->addWidget(new QLabel("Mountpoint"), 0, 0); 735 pppLayout->addWidget(_pppMountLineEdit, 0, 1, 1, 3); 736 pppLayout->addWidget(new QLabel("Static"), 1, 0); 737 pppLayout->addWidget(_pppStaticCheckBox, 1, 1); 738 pppLayout->addWidget(new QLabel("Use Phase Obs"), 2, 0); 739 pppLayout->addWidget(_pppUsePhaseCheckBox, 2, 1); 737 pppLayout->addWidget(new QLabel("Mountpoint"), 0, 0); 738 pppLayout->addWidget(_pppMountLineEdit, 0, 1, 1, 3); 739 pppLayout->addWidget(new QLabel("Static"), 1, 0); 740 pppLayout->addWidget(_pppStaticCheckBox, 1, 1); 741 pppLayout->addWidget(new QLabel("Use Phase Obs"), 2, 0); 742 pppLayout->addWidget(_pppUsePhaseCheckBox, 2, 1); 743 pppLayout->addWidget(new QLabel("Estimate Tropo"), 3, 0); 744 pppLayout->addWidget(_pppEstTropoCheckBox, 3, 1); 740 745 pppgroup->setLayout(pppLayout); 741 746 … … 1045 1050 settings.setValue("pppStatic", _pppStaticCheckBox->checkState()); 1046 1051 settings.setValue("pppUsePhase", _pppUsePhaseCheckBox->checkState()); 1052 settings.setValue("pppEstTropo", _pppEstTropoCheckBox->checkState()); 1047 1053 settings.setValue("mountPoints", mountPoints); 1048 1054 settings.setValue("obsRate", _obsRateComboBox->currentText()); -
trunk/BNC/bncwindow.h
r2083 r2086 115 115 QCheckBox* _pppStaticCheckBox; 116 116 QCheckBox* _pppUsePhaseCheckBox; 117 QCheckBox* _pppEstTropoCheckBox; 117 118 QCheckBox* _rnxV3CheckBox; 118 119 QCheckBox* _ephV3CheckBox;
Note:
See TracChangeset
for help on using the changeset viewer.