Changeset 2794 in ntrip
- Timestamp:
- Dec 14, 2010, 3:40:22 PM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncsettings.cpp
r2750 r2794 90 90 setValue("pppEstTropo", ""); 91 91 setValue("pppGLONASS", ""); 92 setValue("pppGalileo", ""); 92 93 setValue("pppPlotCoordinates", ""); 93 94 setValue("pppRefCrdX", ""); -
trunk/BNC/bncwindow.cpp
r2765 r2794 368 368 _pppGLONASSCheckBox->setCheckState(Qt::CheckState( 369 369 settings.value("pppGLONASS").toInt())); 370 _pppGalileoCheckBox = new QCheckBox(); 371 _pppGalileoCheckBox->setCheckState(Qt::CheckState( 372 settings.value("pppGalileo").toInt())); 370 373 371 374 _pppPlotCoordinates = new QCheckBox(); … … 470 473 _pppEstTropoCheckBox->setWhatsThis(tr("<p>By default BNC does not introduce troposphere parameters when estimating coordinates.</p><p>Tick 'Estimate tropo' to introduce troposphere parameters when estimating coordinates.</p>")); 471 474 _pppGLONASSCheckBox->setWhatsThis(tr("<p>By default BNC does not use GLONASS observations in PPP mode.</p><p>Tick 'Use GLONASS' for a combined processing of both, GPS and GLONASS observations in PPP mode.</p>")); 475 _pppGalileoCheckBox->setWhatsThis(tr("<p>By default BNC does not use Galileo observations in PPP mode.</p><p>Tick 'Use Galileo' for a combined processing of both, GPS and Galileo observations in PPP mode.</p>")); 472 476 _pppPlotCoordinates->setWhatsThis(tr("<p>PPP time series of North (red), East (green) and Up (blue) coordinate components are shown in the 'PPP Plot' tab when this option is selected. Values will be either referred to an XYZ reference coordinate (if specified) or referred to the first estimated coordinate. The sliding PPP time series window will cover the period of the latest 5 minutes.</p><p>Note that a PPP time series makes only sense for a stationary operated receiver.")); 473 477 _pppNMEALineEdit->setWhatsThis(tr("<p>Specify the full path to a file where PPP results are saved as NMEA messages.</p>")); … … 748 752 pppLayout->addWidget(_pppGLONASSCheckBox, 1, 5, Qt::AlignRight); 749 753 pppLayout->addWidget(new QLabel("Use GLONASS"), 1, 6); 750 pppLayout->addWidget(_pppPlotCoordinates, 1, 7, Qt::AlignRight); 751 pppLayout->addWidget(new QLabel("PPP Plot "),1, 8); 754 pppLayout->addWidget(_pppGalileoCheckBox, 1, 7, Qt::AlignRight); 755 pppLayout->addWidget(new QLabel("Use Galileo"), 1, 8); 756 pppLayout->addWidget(_pppPlotCoordinates, 1, 9, Qt::AlignRight); 757 pppLayout->addWidget(new QLabel("PPP Plot "),1,10); 752 758 pppLayout->addWidget(new QLabel("Options cont'd"), 2, 0); 753 759 pppLayout->addWidget(_pppSigCLineEdit, 2, 1, Qt::AlignRight); … … 1102 1108 settings.setValue("pppEstTropo", _pppEstTropoCheckBox->checkState()); 1103 1109 settings.setValue("pppGLONASS", _pppGLONASSCheckBox->checkState()); 1110 settings.setValue("pppGalileo", _pppGalileoCheckBox->checkState()); 1104 1111 settings.setValue("mountPoints", mountPoints); 1105 1112 settings.setValue("obsRate", _obsRateComboBox->currentText()); … … 1653 1660 _pppEstTropoCheckBox->setPalette(palette_white); 1654 1661 _pppGLONASSCheckBox->setPalette(palette_white); 1662 _pppGalileoCheckBox->setPalette(palette_white); 1655 1663 _pppSPPComboBox->setEnabled(true); 1656 1664 _pppNMEALineEdit->setEnabled(true); … … 1663 1671 _pppEstTropoCheckBox->setEnabled(true); 1664 1672 _pppGLONASSCheckBox->setEnabled(true); 1673 _pppGalileoCheckBox->setEnabled(true); 1665 1674 _pppRefCrdXLineEdit->setPalette(palette_white); 1666 1675 _pppRefCrdXLineEdit->setEnabled(true); … … 1723 1732 _pppEstTropoCheckBox->setPalette(palette_gray); 1724 1733 _pppGLONASSCheckBox->setPalette(palette_gray); 1734 _pppGalileoCheckBox->setPalette(palette_gray); 1725 1735 _pppSigCLineEdit->setPalette(palette_gray); 1726 1736 _pppSigPLineEdit->setPalette(palette_gray); … … 1741 1751 _pppEstTropoCheckBox->setEnabled(false); 1742 1752 _pppGLONASSCheckBox->setEnabled(false); 1753 _pppGalileoCheckBox->setEnabled(false); 1743 1754 _pppSigCLineEdit->setEnabled(false); 1744 1755 _pppSigPLineEdit->setEnabled(false); -
trunk/BNC/bncwindow.h
r2728 r2794 131 131 QCheckBox* _pppEstTropoCheckBox; 132 132 QCheckBox* _pppGLONASSCheckBox; 133 QCheckBox* _pppGalileoCheckBox; 133 134 QCheckBox* _rnxV3CheckBox; 134 135 QCheckBox* _ephV3CheckBox;
Note:
See TracChangeset
for help on using the changeset viewer.