- Timestamp:
- May 24, 2011, 11:10:47 AM (14 years ago)
- Location:
- trunk/BNC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncwindow.cpp
r3271 r3284 357 357 _pppRefCrdYLineEdit = new QLineEdit(settings.value("pppRefCrdY").toString()); 358 358 _pppRefCrdZLineEdit = new QLineEdit(settings.value("pppRefCrdZ").toString()); 359 _pppRefdNLineEdit = new QLineEdit(settings.value("pppRefdN").toString()); 360 _pppRefdELineEdit = new QLineEdit(settings.value("pppRefdE").toString()); 361 _pppRefdULineEdit = new QLineEdit(settings.value("pppRefdU").toString()); 359 362 _pppSync = new QLineEdit(settings.value("pppSync").toString()); 360 363 _pppAntennaLineEdit = new QLineEdit(settings.value("pppAntenna").toString()); … … 404 407 this, SLOT(slotBncTextChanged())); 405 408 connect(_pppRefCrdZLineEdit, SIGNAL(textChanged(const QString &)), 409 this, SLOT(slotBncTextChanged())); 410 connect(_pppRefdNLineEdit, SIGNAL(textChanged(const QString &)), 411 this, SLOT(slotBncTextChanged())); 412 connect(_pppRefdELineEdit, SIGNAL(textChanged(const QString &)), 413 this, SLOT(slotBncTextChanged())); 414 connect(_pppRefdULineEdit, SIGNAL(textChanged(const QString &)), 406 415 this, SLOT(slotBncTextChanged())); 407 416 … … 596 605 _pppRefCrdYLineEdit->setWhatsThis(tr("<p>Enter reference coordinate Y of the receiver's position.</p>")); 597 606 _pppRefCrdZLineEdit->setWhatsThis(tr("<p>Enter reference coordinate Z of the receiver's position.</p>")); 607 _pppRefdNLineEdit->setWhatsThis(tr("<p>Enter north antenna excentricity.</p>")); 608 _pppRefdELineEdit->setWhatsThis(tr("<p>Enter east antenna excentricity.</p>")); 609 _pppRefdULineEdit->setWhatsThis(tr("<p>Enter up antenna excentricity.</p>")); 598 610 _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.")); 599 611 _pppSync->setWhatsThis(tr( … … 864 876 _pppRefCrdYLineEdit->setMaximumWidth(10*ww); 865 877 _pppRefCrdZLineEdit->setMaximumWidth(10*ww); 878 _pppRefdNLineEdit->setMaximumWidth(5*ww); 879 _pppRefdELineEdit->setMaximumWidth(5*ww); 880 _pppRefdULineEdit->setMaximumWidth(5*ww); 866 881 _pppSync->setMaximumWidth(6*ww); 867 882 _pppSPPComboBox->setMaximumWidth(8*ww); … … 878 893 pppLayout->addWidget(new QLabel("Corr Mountpoint "), 1, 0); 879 894 pppLayout->addWidget(_pppCorrMountLineEdit, 1, 1); 895 pppLayout->addWidget(new QLabel(" dN "), 1, 3, Qt::AlignRight); 896 pppLayout->addWidget(_pppRefdNLineEdit, 1, 4); 897 pppLayout->addWidget(new QLabel(" dE "), 1, 5, Qt::AlignRight); 898 pppLayout->addWidget(_pppRefdELineEdit, 1, 6); 899 pppLayout->addWidget(new QLabel(" dU "), 1, 7, Qt::AlignRight); 900 pppLayout->addWidget(_pppRefdULineEdit, 1, 8); 880 901 pppLayout->addWidget(new QLabel("Options"), 2, 0, 1, 5); 881 902 pppLayout->addWidget(_pppUsePhaseCheckBox, 2, 1, Qt::AlignRight); … … 1379 1400 settings.setValue("pppRefCrdY", _pppRefCrdYLineEdit->text()); 1380 1401 settings.setValue("pppRefCrdZ", _pppRefCrdZLineEdit->text()); 1402 settings.setValue("pppRefdN", _pppRefdNLineEdit->text()); 1403 settings.setValue("pppRefdE", _pppRefdELineEdit->text()); 1404 settings.setValue("pppRefdU", _pppRefdULineEdit->text()); 1381 1405 settings.setValue("pppSync", _pppSync->text()); 1382 1406 settings.setValue("pppUsePhase", _pppUsePhaseCheckBox->checkState()); … … 1962 1986 || sender() == _pppRefCrdYLineEdit 1963 1987 || sender() == _pppRefCrdZLineEdit 1988 || sender() == _pppRefdNLineEdit 1989 || sender() == _pppRefdELineEdit 1990 || sender() == _pppRefdULineEdit 1964 1991 || sender() == _pppSync 1965 1992 || sender() == _pppSPPComboBox … … 1978 2005 _pppRefCrdYLineEdit->setPalette(palette_white); 1979 2006 _pppRefCrdZLineEdit->setPalette(palette_white); 2007 _pppRefdNLineEdit->setPalette(palette_white); 2008 _pppRefdELineEdit->setPalette(palette_white); 2009 _pppRefdULineEdit->setPalette(palette_white); 1980 2010 _pppUsePhaseCheckBox->setPalette(palette_white); 1981 2011 _pppPlotCoordinates->setPalette(palette_white); … … 1990 2020 _pppRefCrdYLineEdit->setEnabled(true); 1991 2021 _pppRefCrdZLineEdit->setEnabled(true); 2022 _pppRefdNLineEdit->setEnabled(true); 2023 _pppRefdELineEdit->setEnabled(true); 2024 _pppRefdULineEdit->setEnabled(true); 1992 2025 _pppUsePhaseCheckBox->setEnabled(true); 1993 2026 _pppPlotCoordinates->setEnabled(true); … … 1998 2031 _pppRefCrdYLineEdit->setPalette(palette_white); 1999 2032 _pppRefCrdZLineEdit->setPalette(palette_white); 2033 _pppRefdNLineEdit->setPalette(palette_white); 2034 _pppRefdELineEdit->setPalette(palette_white); 2035 _pppRefdULineEdit->setPalette(palette_white); 2000 2036 _pppAntexLineEdit->setEnabled(true); 2001 2037 if (!_pppRefCrdXLineEdit->text().isEmpty() && … … 2079 2115 _pppRefCrdYLineEdit->setPalette(palette_gray); 2080 2116 _pppRefCrdZLineEdit->setPalette(palette_gray); 2117 _pppRefdNLineEdit->setPalette(palette_gray); 2118 _pppRefdELineEdit->setPalette(palette_gray); 2119 _pppRefdULineEdit->setPalette(palette_gray); 2081 2120 _pppSync->setPalette(palette_gray); 2082 2121 _pppUsePhaseCheckBox->setPalette(palette_gray); … … 2103 2142 _pppRefCrdYLineEdit->setEnabled(false); 2104 2143 _pppRefCrdZLineEdit->setEnabled(false); 2144 _pppRefdNLineEdit->setEnabled(false); 2145 _pppRefdELineEdit->setEnabled(false); 2146 _pppRefdULineEdit->setEnabled(false); 2105 2147 _pppSync->setEnabled(false); 2106 2148 _pppUsePhaseCheckBox->setEnabled(false); -
trunk/BNC/bncwindow.h
r3249 r3284 139 139 QLineEdit* _pppRefCrdYLineEdit; 140 140 QLineEdit* _pppRefCrdZLineEdit; 141 QLineEdit* _pppRefdNLineEdit; 142 QLineEdit* _pppRefdELineEdit; 143 QLineEdit* _pppRefdULineEdit; 141 144 QCheckBox* _pppPlotCoordinates; 142 145 QCheckBox* _pppUsePhaseCheckBox;
Note:
See TracChangeset
for help on using the changeset viewer.