- Timestamp:
- Feb 2, 2011, 12:31:47 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r2946 r2949 380 380 settings.value("pppPlotCoordinates").toInt())); 381 381 382 _ppp IgnoreSatAntCheckBox = new QCheckBox();383 _ppp IgnoreSatAntCheckBox->setCheckState(Qt::CheckState(384 settings.value("ppp IgnoreSatAnt").toInt()));382 _pppApplySatAntCheckBox = new QCheckBox(); 383 _pppApplySatAntCheckBox->setCheckState(Qt::CheckState( 384 settings.value("pppApplySatAnt").toInt())); 385 385 386 386 connect(_pppMountLineEdit, SIGNAL(textChanged(const QString &)), … … 514 514 _pppAntexLineEdit->setWhatsThis(tr("<p>IGS provides a file containing absolute phase center corrections for GNSS satellite and receiver antennas in ANTEX format. Entering the full path to such an ANTEX file is required for correcting observations for antenna phase center offsets and variations. It allows you to specify the name of your receiver's antenna (as contained in the ANTEX file) to apply such corrections.</p><p>Default is an empty option field meaning that you don't want to correct observations for antenna phase center offsets and variations.</p>")); 515 515 _pppAntennaLineEdit->setWhatsThis(tr("<p>Specify the receiver's antenna name as defined in your ANTEX file. Observations will be corrected for the antenna phase center's offset which may result in a reduction of a few centimeters at max. Phase center variations are not yet applied by BNC.</p><p>Default is an empty option field meaning that you don't want to correct observations for antenna phase center offsets.</p>")); 516 _ppp IgnoreSatAntCheckBox->setWhatsThis(tr("<p>Satellite orbit and clock corrections refer to the satellite's antenna phase centers and hence observations are actually to be corrected for satellite antenna offsets. Tick 'Ignore Offsets' to not correct observations for satellite antenna phase center offsets.</p><p>Default is tocorrect observations for satellite antenna phase center offsets."));516 _pppApplySatAntCheckBox->setWhatsThis(tr("<p>Satellite orbit and clock corrections refer to the satellite's antenna phase centers and hence observations are actually <u>not</u> to be corrected for satellite antenna phase center offsets. However, you may like to tick 'Apply Offsets' to force BNC to correct observations for satellite antenna phase center offsets.</p><p>Default is to <u>not</u> correct observations for satellite antenna phase center offsets.")); 517 517 518 518 // Canvas with Editable Fields … … 815 815 ppp2Layout->addWidget(new QLabel("Antenna Name"), 0, 8); 816 816 ppp2Layout->addWidget(new QLabel("Satellite Antenna"), 1, 0); 817 ppp2Layout->addWidget(_ppp IgnoreSatAntCheckBox,1, 1, Qt::AlignRight);818 ppp2Layout->addWidget(new QLabel(" Ignore Offsets"),1, 2, Qt::AlignLeft);817 ppp2Layout->addWidget(_pppApplySatAntCheckBox, 1, 1, Qt::AlignRight); 818 ppp2Layout->addWidget(new QLabel("Apply Offsets"), 1, 2, Qt::AlignLeft); 819 819 ppp2Layout->addWidget(new QLabel("Sigmas"), 2, 0); 820 820 ppp2Layout->addWidget(_pppSigCLineEdit, 2, 1, Qt::AlignRight); … … 826 826 ppp2Layout->addWidget(_pppSigTrpP, 2, 7); 827 827 ppp2Layout->addWidget(new QLabel("Tropo White Noise"), 2, 8); 828 ppp2Layout->addWidget(new QLabel("Options "),3, 0);828 ppp2Layout->addWidget(new QLabel("Options cont'd"), 3, 0); 829 829 ppp2Layout->addWidget(_pppSync, 3, 1); 830 830 ppp2Layout->addWidget(new QLabel("Sync Corr (sec) "), 3, 2); … … 1229 1229 settings.setValue("pppAntenna", _pppAntennaLineEdit->text()); 1230 1230 settings.setValue("pppAntex", _pppAntexLineEdit->text()); 1231 settings.setValue("ppp IgnoreSatAnt", _pppIgnoreSatAntCheckBox->checkState());1231 settings.setValue("pppApplySatAnt", _pppApplySatAntCheckBox->checkState()); 1232 1232 settings.setValue("mountPoints", mountPoints); 1233 1233 settings.setValue("obsRate", _obsRateComboBox->currentText()); … … 1831 1831 if (!_pppAntexLineEdit->text().isEmpty() ) { 1832 1832 _pppAntennaLineEdit->setEnabled(true); 1833 _ppp IgnoreSatAntCheckBox->setEnabled(true);1833 _pppApplySatAntCheckBox->setEnabled(true); 1834 1834 _pppAntennaLineEdit->setPalette(palette_white); 1835 _ppp IgnoreSatAntCheckBox->setPalette(palette_white);1835 _pppApplySatAntCheckBox->setPalette(palette_white); 1836 1836 } 1837 1837 else { 1838 1838 _pppAntennaLineEdit->setEnabled(false); 1839 _ppp IgnoreSatAntCheckBox->setEnabled(false);1839 _pppApplySatAntCheckBox->setEnabled(false); 1840 1840 _pppAntennaLineEdit->setPalette(palette_gray); 1841 _ppp IgnoreSatAntCheckBox->setPalette(palette_gray);1841 _pppApplySatAntCheckBox->setPalette(palette_gray); 1842 1842 } 1843 1843 _pppSigCLineEdit->setPalette(palette_white); … … 1900 1900 _pppAntexLineEdit->setPalette(palette_gray); 1901 1901 _pppAntennaLineEdit->setPalette(palette_gray); 1902 _ppp IgnoreSatAntCheckBox->setPalette(palette_gray);1902 _pppApplySatAntCheckBox->setPalette(palette_gray); 1903 1903 _pppSPPComboBox->setEnabled(false); 1904 1904 _pppNMEALineEdit->setEnabled(false); … … 1923 1923 _pppAntexLineEdit->setEnabled(false); 1924 1924 _pppAntennaLineEdit->setEnabled(false); 1925 _ppp IgnoreSatAntCheckBox->setEnabled(false);1925 _pppApplySatAntCheckBox->setEnabled(false); 1926 1926 } 1927 1927 }
Note:
See TracChangeset
for help on using the changeset viewer.