- Timestamp:
- Dec 19, 2010, 12:18:51 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r2811 r2815 394 394 395 395 connect(_pppSync, SIGNAL(textChanged(const QString &)), 396 this, SLOT(slotBncTextChanged())); 397 398 connect(_pppSPPComboBox, SIGNAL(currentIndexChanged(const QString &)), 396 399 this, SLOT(slotBncTextChanged())); 397 400 … … 493 496 _pppRefCrdZLineEdit->setWhatsThis(tr("<p>Enter reference coordinate Z of the receiver's position.</p>")); 494 497 _bncFigurePPP->setWhatsThis(tr("PPP time series of North (red), East (green) and Up (blue) coordinate components are shown in the 'PPP Plot' tab when the corresponting option is selected above. Values are either referred to an XYZ reference coordinate (if specified) or referred to the first estimated set of coordinate compoments. The sliding PPP time series window covers the period of the latest 5 minutes.")); 498 _pppSync->setWhatsThis(tr("You may like to process only those observations which are received first within a maximum of 'Sync corr' seconds after the reception of a clock correction. Using only observations which come in sync with the corrections can avoid a possible high frequency noise of PPP solutions. Such noise could result from processing all observations regardless of how late after a clock correction they were received.<p></p>Default is an empty option field, meaning that you want BNC to determine a PPP solution from all incomming observations through applying the latest received clock correction.</p>")); 495 499 496 500 // Canvas with Editable Fields … … 1658 1662 || sender() == _pppRefCrdZLineEdit 1659 1663 || sender() == _pppSync 1664 || sender() == _pppSPPComboBox 1660 1665 || sender() == _pppEstTropoCheckBox 1661 1666 || sender() == _pppUsePhaseCheckBox ) { … … 1667 1672 _pppRefCrdYLineEdit->setPalette(palette_white); 1668 1673 _pppRefCrdZLineEdit->setPalette(palette_white); 1669 _pppSync->setPalette(palette_white);1670 1674 _pppUsePhaseCheckBox->setPalette(palette_white); 1671 1675 _pppPlotCoordinates->setPalette(palette_white); … … 1679 1683 _pppRefCrdYLineEdit->setEnabled(true); 1680 1684 _pppRefCrdZLineEdit->setEnabled(true); 1681 _pppSync->setEnabled(true);1682 1685 _pppUsePhaseCheckBox->setEnabled(true); 1683 1686 _pppPlotCoordinates->setEnabled(true); … … 1691 1694 _pppRefCrdZLineEdit->setPalette(palette_white); 1692 1695 _pppRefCrdZLineEdit->setEnabled(true); 1693 _pppSync->setPalette(palette_white);1694 _pppSync->setEnabled(true);1695 1696 1696 if (!_pppRefCrdXLineEdit->text().isEmpty() && 1697 1697 !_pppRefCrdYLineEdit->text().isEmpty() && … … 1736 1736 _pppSigPLineEdit->setEnabled(false); 1737 1737 } 1738 if (_pppSPPComboBox->currentText() == "PPP") { 1739 _pppSync->setPalette(palette_white); 1740 _pppSync->setEnabled(true); 1741 } 1742 else { 1743 _pppSync->setPalette(palette_gray); 1744 _pppSync->setEnabled(false); 1745 } 1738 1746 } else { 1739 1747 _pppSPPComboBox->setPalette(palette_gray);
Note:
See TracChangeset
for help on using the changeset viewer.