| 1 | // Part of BNC, a utility for retrieving decoding and
|
|---|
| 2 | // converting GNSS data streams from NTRIP broadcasters.
|
|---|
| 3 | //
|
|---|
| 4 | // Copyright (C) 2007
|
|---|
| 5 | // German Federal Agency for Cartography and Geodesy (BKG)
|
|---|
| 6 | // http://www.bkg.bund.de
|
|---|
| 7 | // Czech Technical University Prague, Department of Geodesy
|
|---|
| 8 | // http://www.fsv.cvut.cz
|
|---|
| 9 | //
|
|---|
| 10 | // Email: euref-ip@bkg.bund.de
|
|---|
| 11 | //
|
|---|
| 12 | // This program is free software; you can redistribute it and/or
|
|---|
| 13 | // modify it under the terms of the GNU General Public License
|
|---|
| 14 | // as published by the Free Software Foundation, version 2.
|
|---|
| 15 | //
|
|---|
| 16 | // This program is distributed in the hope that it will be useful,
|
|---|
| 17 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 18 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 19 | // GNU General Public License for more details.
|
|---|
| 20 | //
|
|---|
| 21 | // You should have received a copy of the GNU General Public License
|
|---|
| 22 | // along with this program; if not, write to the Free Software
|
|---|
| 23 | // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|---|
| 24 |
|
|---|
| 25 | /* -------------------------------------------------------------------------
|
|---|
| 26 | * BKG NTRIP Client
|
|---|
| 27 | * -------------------------------------------------------------------------
|
|---|
| 28 | *
|
|---|
| 29 | * Class: t_pppWidgets
|
|---|
| 30 | *
|
|---|
| 31 | * Purpose: This class stores widgets for PPP options
|
|---|
| 32 | *
|
|---|
| 33 | * Author: L. Mervart
|
|---|
| 34 | *
|
|---|
| 35 | * Created: 29-Jul-2014
|
|---|
| 36 | *
|
|---|
| 37 | * Changes:
|
|---|
| 38 | *
|
|---|
| 39 | * -----------------------------------------------------------------------*/
|
|---|
| 40 |
|
|---|
| 41 | #include <iostream>
|
|---|
| 42 |
|
|---|
| 43 | #include "pppWidgets.h"
|
|---|
| 44 | #include "qtfilechooser.h"
|
|---|
| 45 | #include "bncsettings.h"
|
|---|
| 46 | #include "bnccore.h"
|
|---|
| 47 |
|
|---|
| 48 | using namespace std;
|
|---|
| 49 |
|
|---|
| 50 | // Constructor
|
|---|
| 51 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 52 | t_pppWidgets::t_pppWidgets() {
|
|---|
| 53 |
|
|---|
| 54 | _dataSource = new QComboBox(); _dataSource ->setObjectName("PPP/dataSource"); _widgets << _dataSource;
|
|---|
| 55 | _rinexObs = new qtFileChooser(); _rinexObs ->setObjectName("PPP/rinexObs"); _widgets << _rinexObs;
|
|---|
| 56 | _rinexNav = new qtFileChooser(); _rinexNav ->setObjectName("PPP/rinexNav"); _widgets << _rinexNav;
|
|---|
| 57 | _corrMount = new QLineEdit(); _corrMount ->setObjectName("PPP/corrMount"); _widgets << _corrMount;
|
|---|
| 58 | _corrFile = new qtFileChooser(); _corrFile ->setObjectName("PPP/corrFile"); _widgets << _corrFile;
|
|---|
| 59 | _crdFile = new qtFileChooser(); _crdFile ->setObjectName("PPP/crdFile"); _widgets << _crdFile;
|
|---|
| 60 | _antexFile = new qtFileChooser(); _antexFile ->setObjectName("PPP/antexFile"); _widgets << _antexFile;
|
|---|
| 61 | _logFile = new QLineEdit(); _logFile ->setObjectName("PPP/logFile"); _widgets << _logFile;
|
|---|
| 62 | _nmeaFile = new QLineEdit(); _nmeaFile ->setObjectName("PPP/nmeaFile"); _widgets << _nmeaFile;
|
|---|
| 63 | _nmeaPort = new QLineEdit(); _nmeaPort ->setObjectName("PPP/nmeaPort"); _widgets << _nmeaPort;
|
|---|
| 64 | _staTable = new QTableWidget(); _staTable ->setObjectName("PPP/staTable"); _widgets << _staTable;
|
|---|
| 65 | _lcGPS = new QComboBox(); _lcGPS ->setObjectName("PPP/lcGPS"); _widgets << _lcGPS;
|
|---|
| 66 | _lcGLONASS = new QComboBox(); _lcGLONASS ->setObjectName("PPP/lcGLONASS"); _widgets << _lcGLONASS;
|
|---|
| 67 | _lcGalileo = new QComboBox(); _lcGalileo ->setObjectName("PPP/lcGalileo"); _widgets << _lcGalileo;
|
|---|
| 68 | _sigmaC1 = new QLineEdit(); _sigmaC1 ->setObjectName("PPP/sigmaC1"); _widgets << _sigmaC1;
|
|---|
| 69 | _sigmaL1 = new QLineEdit(); _sigmaL1 ->setObjectName("PPP/sigmaL1"); _widgets << _sigmaL1;
|
|---|
| 70 | _maxResC1 = new QLineEdit(); _maxResC1 ->setObjectName("PPP/maxResC1"); _widgets << _maxResC1;
|
|---|
| 71 | _maxResL1 = new QLineEdit(); _maxResL1 ->setObjectName("PPP/maxResL1"); _widgets << _maxResL1;
|
|---|
| 72 | _minObs = new QSpinBox(); _minObs ->setObjectName("PPP/minObs"); _widgets << _minObs;
|
|---|
| 73 | _minEle = new QSpinBox(); _minEle ->setObjectName("PPP/minEle"); _widgets << _minEle;
|
|---|
| 74 | _eleWgtCode = new QCheckBox(); _eleWgtCode ->setObjectName("PPP/eleWgtCode"); _widgets << _eleWgtCode;
|
|---|
| 75 | _eleWgtPhase = new QCheckBox(); _eleWgtPhase ->setObjectName("PPP/eleWgtPhase"); _widgets << _eleWgtPhase;
|
|---|
| 76 | _seedingTime = new QLineEdit(); _seedingTime ->setObjectName("PPP/seedingTime"); _widgets << _seedingTime;
|
|---|
| 77 | _corrWaitTime = new QSpinBox(); _corrWaitTime->setObjectName("PPP/corrWaitTime"); _widgets << _corrWaitTime;
|
|---|
| 78 |
|
|---|
| 79 | _addStaButton = new QPushButton("Add Station"); _widgets << _addStaButton;
|
|---|
| 80 | _delStaButton = new QPushButton("Delete Station"); _widgets << _delStaButton;
|
|---|
| 81 |
|
|---|
| 82 | _plotCoordinates = new QLineEdit; _plotCoordinates ->setObjectName("PPP/plotCoordinates"); _widgets << _plotCoordinates;
|
|---|
| 83 | _mapWinButton = new QPushButton; _mapWinButton ->setObjectName("PPP/mapWinButton"); _widgets << _mapWinButton;
|
|---|
| 84 | _useGoogleMap = new QRadioButton; _useGoogleMap ->setObjectName("PPP/useGoogleMap"); _widgets << _useGoogleMap;
|
|---|
| 85 | _useOpenStreetMap = new QRadioButton; _useOpenStreetMap->setObjectName("PPP/useOpenStreetMap"); _widgets << _useOpenStreetMap;
|
|---|
| 86 | _mapWinDotSize = new QLineEdit; _mapWinDotSize ->setObjectName("PPP/mapWinDotSize"); _widgets << _mapWinDotSize;
|
|---|
| 87 | _mapWinDotColor = new QComboBox; _mapWinDotColor ->setObjectName("PPP/mapWinDotColor"); _widgets << _mapWinDotColor;
|
|---|
| 88 | _mapSpeedSlider = new QSlider; _mapSpeedSlider ->setObjectName("PPP/mapSpeedSlider"); _widgets << _mapSpeedSlider;
|
|---|
| 89 |
|
|---|
| 90 | _dataSource->setEditable(false);
|
|---|
| 91 | _dataSource->addItems(QString("no,Real-Time Streams,RINEX Files").split(","));
|
|---|
| 92 | connect(_dataSource, SIGNAL(currentIndexChanged(const QString&)), this, SLOT(slotEnableWidgets()));
|
|---|
| 93 |
|
|---|
| 94 | _lcGPS->setEditable(false);
|
|---|
| 95 | _lcGPS->addItems(QString("no,P3,L3,P3&L3").split(","));
|
|---|
| 96 |
|
|---|
| 97 | _lcGLONASS->setEditable(false);
|
|---|
| 98 | _lcGLONASS->addItems(QString("no,P3,L3,P3&L3").split(","));
|
|---|
| 99 |
|
|---|
| 100 | _lcGalileo->setEditable(false);
|
|---|
| 101 | _lcGalileo->addItems(QString("no,P3,L3,P3&L3").split(","));
|
|---|
| 102 |
|
|---|
| 103 | _minObs->setMinimum(4);
|
|---|
| 104 | _minObs->setMaximum(6);
|
|---|
| 105 | _minObs->setSingleStep(1);
|
|---|
| 106 |
|
|---|
| 107 | _minEle->setMinimum(0);
|
|---|
| 108 | _minEle->setMaximum(20);
|
|---|
| 109 | _minEle->setSingleStep(1);
|
|---|
| 110 | _minEle->setSuffix(" deg");
|
|---|
| 111 |
|
|---|
| 112 | _corrWaitTime->setMinimum(0);
|
|---|
| 113 | _corrWaitTime->setMaximum(20);
|
|---|
| 114 | _corrWaitTime->setSingleStep(1);
|
|---|
| 115 | _corrWaitTime->setSuffix(" sec");
|
|---|
| 116 | _corrWaitTime->setSpecialValueText("no");
|
|---|
| 117 |
|
|---|
| 118 | _staTable->setColumnCount(9);
|
|---|
| 119 | _staTable->setRowCount(0);
|
|---|
| 120 | _staTable->setHorizontalHeaderLabels(
|
|---|
| 121 | QString("Station,Sigma N,Sigma E,Sigma H,Noise N,Noise E,Noise H,Tropo Sigma,Tropo Noise").split(","));
|
|---|
| 122 | _staTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
|
|---|
| 123 | _staTable->setSelectionBehavior(QAbstractItemView::SelectRows);
|
|---|
| 124 | _staTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
|
|---|
| 125 | _staTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
|
|---|
| 126 |
|
|---|
| 127 | connect(_addStaButton, SIGNAL(clicked()), this, SLOT(slotAddStation()));
|
|---|
| 128 | connect(_delStaButton, SIGNAL(clicked()), this, SLOT(slotDelStation()));
|
|---|
| 129 |
|
|---|
| 130 | _mapWinButton->setText("Open Map");
|
|---|
| 131 |
|
|---|
| 132 | _mapWinDotColor->setEditable(false);
|
|---|
| 133 | _mapWinDotColor->addItems(QString("red,yellow").split(","));
|
|---|
| 134 |
|
|---|
| 135 | _mapSpeedSlider->setOrientation(Qt::Horizontal);
|
|---|
| 136 | _mapSpeedSlider->setRange(1, 100);
|
|---|
| 137 | _mapSpeedSlider->setTickPosition(QSlider::TicksBelow);
|
|---|
| 138 | _mapSpeedSlider->setTickInterval(10);
|
|---|
| 139 | connect(_mapSpeedSlider, SIGNAL(valueChanged(int)), BNC_CORE, SIGNAL(mapSpeedSliderChanged(int)));
|
|---|
| 140 |
|
|---|
| 141 | _mapWinButton->setWhatsThis(tr("<p>You make like to track your rover position using Google Maps or Open Street Map as a background map. Track plots can be produced with BNC in 'Realtime-PPP', 'Realtime-SPP' and 'Post-Processing' mode.</p><p>The 'Open Map' button opens a windows showing a map according to specified options.</p><p>When in 'Post-Processing' mode you should not forget to specify a proxy under the 'Network' tab if that is operated in front of BNC."));
|
|---|
| 142 | _useGoogleMap->setWhatsThis(tr("<p>Specify Google Maps as the background for your rover positions."));
|
|---|
| 143 | _useOpenStreetMap->setWhatsThis(tr("<p>Specify Open Street Map as the background for your rover positions."));
|
|---|
| 144 | _mapWinDotSize->setWhatsThis(tr("<p>Specify the size of dots showing the rover positions.</p><p>A dot size of '3' may be appropriate. The maximum possible dot size is '10'. An empty option field or a size of '0' would mean that you don't want BNC to show the rover's track on the map.</p>"));
|
|---|
| 145 | _mapWinDotColor->setWhatsThis(tr("<p>Specify the color of dots showing the rover track.</p>"));
|
|---|
| 146 | _mapSpeedSlider->setWhatsThis(tr("<p>With BNC in PPP post-processing mode you can specify the speed of computations as appropriate for visualization. Note that you can adjust 'Speed' on-the-fly while BNC is already processing your observations."));
|
|---|
| 147 |
|
|---|
| 148 | readOptions();
|
|---|
| 149 | }
|
|---|
| 150 |
|
|---|
| 151 | //
|
|---|
| 152 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 153 | void t_pppWidgets::readOptions() {
|
|---|
| 154 |
|
|---|
| 155 | bncSettings settings;
|
|---|
| 156 |
|
|---|
| 157 | // ComboBoxes
|
|---|
| 158 | // ----------
|
|---|
| 159 | int ii = _dataSource->findText(settings.value(_dataSource->objectName()).toString());
|
|---|
| 160 | if (ii != -1) {
|
|---|
| 161 | _dataSource->setCurrentIndex(ii);
|
|---|
| 162 | }
|
|---|
| 163 | ii = _lcGPS->findText(settings.value(_lcGPS->objectName()).toString());
|
|---|
| 164 | if (ii != -1) {
|
|---|
| 165 | _lcGPS->setCurrentIndex(ii);
|
|---|
| 166 | }
|
|---|
| 167 | ii = _lcGLONASS->findText(settings.value(_lcGLONASS->objectName()).toString());
|
|---|
| 168 | if (ii != -1) {
|
|---|
| 169 | _lcGLONASS->setCurrentIndex(ii);
|
|---|
| 170 | }
|
|---|
| 171 | ii = _lcGalileo->findText(settings.value(_lcGalileo->objectName()).toString());
|
|---|
| 172 | if (ii != -1) {
|
|---|
| 173 | _lcGalileo->setCurrentIndex(ii);
|
|---|
| 174 | }
|
|---|
| 175 |
|
|---|
| 176 | // FileChoosers
|
|---|
| 177 | // ------------
|
|---|
| 178 | _rinexObs ->setFileName(settings.value(_rinexObs ->objectName()).toString());
|
|---|
| 179 | _rinexNav ->setFileName(settings.value(_rinexNav ->objectName()).toString());
|
|---|
| 180 | _corrFile ->setFileName(settings.value(_corrFile ->objectName()).toString());
|
|---|
| 181 | _crdFile ->setFileName(settings.value(_crdFile ->objectName()).toString());
|
|---|
| 182 | _antexFile->setFileName(settings.value(_antexFile->objectName()).toString());
|
|---|
| 183 |
|
|---|
| 184 | // LineEdits
|
|---|
| 185 | // ---------
|
|---|
| 186 | _corrMount ->setText(settings.value(_corrMount ->objectName()).toString());
|
|---|
| 187 | _logFile ->setText(settings.value(_logFile ->objectName()).toString());
|
|---|
| 188 | _nmeaFile ->setText(settings.value(_nmeaFile ->objectName()).toString());
|
|---|
| 189 | _nmeaPort ->setText(settings.value(_nmeaPort ->objectName()).toString());
|
|---|
| 190 | _sigmaC1 ->setText(settings.value(_sigmaC1 ->objectName()).toString());
|
|---|
| 191 | _sigmaL1 ->setText(settings.value(_sigmaL1 ->objectName()).toString());
|
|---|
| 192 | _maxResC1 ->setText(settings.value(_maxResC1 ->objectName()).toString());
|
|---|
| 193 | _maxResL1 ->setText(settings.value(_maxResL1 ->objectName()).toString());
|
|---|
| 194 | _seedingTime->setText(settings.value(_seedingTime->objectName()).toString());
|
|---|
| 195 |
|
|---|
| 196 | // CheckBoxes
|
|---|
| 197 | // ----------
|
|---|
| 198 | _eleWgtCode ->setCheckState(Qt::CheckState(settings.value(_eleWgtCode ->objectName()).toInt()));
|
|---|
| 199 | _eleWgtPhase->setCheckState(Qt::CheckState(settings.value(_eleWgtPhase->objectName()).toInt()));
|
|---|
| 200 |
|
|---|
| 201 | // SpinBoxex
|
|---|
| 202 | // ---------
|
|---|
| 203 | _minObs->setValue(settings.value(_minObs->objectName()).toInt());
|
|---|
| 204 | _minEle->setValue(settings.value(_minEle->objectName()).toInt());
|
|---|
| 205 | _corrWaitTime->setValue(settings.value(_corrWaitTime->objectName()).toInt());
|
|---|
| 206 |
|
|---|
| 207 | // Table with stations
|
|---|
| 208 | // -------------------
|
|---|
| 209 | for (int iRow = _staTable->rowCount()-1; iRow >=0; iRow--) {
|
|---|
| 210 | _staTable->removeRow(iRow);
|
|---|
| 211 | }
|
|---|
| 212 | int iRow = -1;
|
|---|
| 213 | QListIterator<QString> it(settings.value(_staTable->objectName()).toStringList());
|
|---|
| 214 | while (it.hasNext()) {
|
|---|
| 215 | QStringList hlp = it.next().split(",");
|
|---|
| 216 | ++iRow;
|
|---|
| 217 | _staTable->insertRow(iRow);
|
|---|
| 218 | for (int iCol = 0; iCol < hlp.size(); iCol++) {
|
|---|
| 219 | _staTable->setItem(iRow, iCol, new QTableWidgetItem(hlp[iCol]));
|
|---|
| 220 | }
|
|---|
| 221 | }
|
|---|
| 222 |
|
|---|
| 223 | // Plots and Maps
|
|---|
| 224 | // --------------
|
|---|
| 225 | _plotCoordinates ->setText(settings.value(_plotCoordinates->objectName()).toString());
|
|---|
| 226 | _useGoogleMap ->setChecked(settings.value(_useGoogleMap->objectName()).toBool());
|
|---|
| 227 | _useOpenStreetMap->setChecked(settings.value(_useOpenStreetMap->objectName()).toBool());
|
|---|
| 228 | _mapWinDotSize ->setText(settings.value(_mapWinDotSize->objectName()).toString());
|
|---|
| 229 |
|
|---|
| 230 | ii = _mapWinDotColor->findText(settings.value(_mapWinDotColor->objectName()).toString());
|
|---|
| 231 | if (ii != -1) {
|
|---|
| 232 | _mapWinDotColor->setCurrentIndex(ii);
|
|---|
| 233 | }
|
|---|
| 234 |
|
|---|
| 235 | int speed = settings.value(_mapSpeedSlider->objectName()).toInt();
|
|---|
| 236 | if (speed == 0) speed = _mapSpeedSlider->maximum();
|
|---|
| 237 | _mapSpeedSlider->setSliderPosition(speed);
|
|---|
| 238 | }
|
|---|
| 239 |
|
|---|
| 240 | //
|
|---|
| 241 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 242 | void t_pppWidgets::saveOptions() {
|
|---|
| 243 |
|
|---|
| 244 | bncSettings settings;
|
|---|
| 245 |
|
|---|
| 246 | settings.setValue(_dataSource ->objectName(), _dataSource ->currentText());
|
|---|
| 247 | settings.setValue(_rinexObs ->objectName(), _rinexObs ->fileName());
|
|---|
| 248 | settings.setValue(_rinexNav ->objectName(), _rinexNav ->fileName());
|
|---|
| 249 | settings.setValue(_corrMount ->objectName(), _corrMount ->text());
|
|---|
| 250 | settings.setValue(_corrFile ->objectName(), _corrFile ->fileName());
|
|---|
| 251 | settings.setValue(_crdFile ->objectName(), _crdFile ->fileName());
|
|---|
| 252 | settings.setValue(_antexFile ->objectName(), _antexFile ->fileName());
|
|---|
| 253 | settings.setValue(_logFile ->objectName(), _logFile ->text());
|
|---|
| 254 | settings.setValue(_nmeaFile ->objectName(), _nmeaFile ->text());
|
|---|
| 255 | settings.setValue(_nmeaPort ->objectName(), _nmeaPort ->text());
|
|---|
| 256 | settings.setValue(_lcGPS ->objectName(), _lcGPS ->currentText());
|
|---|
| 257 | settings.setValue(_lcGLONASS ->objectName(), _lcGLONASS ->currentText());
|
|---|
| 258 | settings.setValue(_lcGalileo ->objectName(), _lcGalileo ->currentText());
|
|---|
| 259 | settings.setValue(_sigmaC1 ->objectName(), _sigmaC1 ->text());
|
|---|
| 260 | settings.setValue(_sigmaL1 ->objectName(), _sigmaL1 ->text());
|
|---|
| 261 | settings.setValue(_corrWaitTime->objectName(), _corrWaitTime->value());
|
|---|
| 262 | settings.setValue(_maxResC1 ->objectName(), _maxResC1 ->text());
|
|---|
| 263 | settings.setValue(_maxResL1 ->objectName(), _maxResL1 ->text());
|
|---|
| 264 | settings.setValue(_seedingTime ->objectName(), _seedingTime ->text());
|
|---|
| 265 | settings.setValue(_minObs ->objectName(), _minObs ->value());
|
|---|
| 266 | settings.setValue(_minEle ->objectName(), _minEle ->value());
|
|---|
| 267 | settings.setValue(_eleWgtCode ->objectName(), _eleWgtCode ->checkState());
|
|---|
| 268 | settings.setValue(_eleWgtPhase ->objectName(), _eleWgtPhase ->checkState());
|
|---|
| 269 |
|
|---|
| 270 | QStringList staList;
|
|---|
| 271 | for (int iRow = 0; iRow < _staTable->rowCount(); iRow++) {
|
|---|
| 272 | QString hlp;
|
|---|
| 273 | for (int iCol = 0; iCol < _staTable->columnCount(); iCol++) {
|
|---|
| 274 | if (_staTable->item(iRow, iCol)) {
|
|---|
| 275 | hlp += _staTable->item(iRow, iCol)->text() + ",";
|
|---|
| 276 | }
|
|---|
| 277 | }
|
|---|
| 278 | if (!hlp.isEmpty()) {
|
|---|
| 279 | staList << hlp;
|
|---|
| 280 | }
|
|---|
| 281 | }
|
|---|
| 282 | settings.setValue(_staTable->objectName(), staList);
|
|---|
| 283 |
|
|---|
| 284 | settings.setValue(_plotCoordinates ->objectName(), _plotCoordinates ->text());
|
|---|
| 285 | settings.setValue(_useGoogleMap ->objectName(), _useGoogleMap ->isChecked());
|
|---|
| 286 | settings.setValue(_useOpenStreetMap->objectName(), _useOpenStreetMap->isChecked());
|
|---|
| 287 | settings.setValue(_mapWinDotSize ->objectName(), _mapWinDotSize ->text());
|
|---|
| 288 | settings.setValue(_mapWinDotColor ->objectName(), _mapWinDotColor ->currentText());
|
|---|
| 289 | settings.setValue(_mapSpeedSlider ->objectName(), _mapSpeedSlider ->value());
|
|---|
| 290 | }
|
|---|
| 291 |
|
|---|
| 292 | //
|
|---|
| 293 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 294 | void t_pppWidgets::slotEnableWidgets() {
|
|---|
| 295 |
|
|---|
| 296 | const static QPalette paletteWhite(QColor(255, 255, 255));
|
|---|
| 297 | const static QPalette paletteGray(QColor(230, 230, 230));
|
|---|
| 298 |
|
|---|
| 299 | bool allDisabled = _dataSource->currentText() == "no";
|
|---|
| 300 | bool realTime = _dataSource->currentText() == "Real-Time Streams";
|
|---|
| 301 | bool rinexFiles = _dataSource->currentText() == "RINEX Files";
|
|---|
| 302 |
|
|---|
| 303 | QListIterator<QWidget*> it(_widgets);
|
|---|
| 304 | while (it.hasNext()) {
|
|---|
| 305 | QWidget* widget = it.next();
|
|---|
| 306 | widget->setEnabled(!allDisabled);
|
|---|
| 307 | }
|
|---|
| 308 |
|
|---|
| 309 | if (realTime) {
|
|---|
| 310 | _rinexObs->setEnabled(false);
|
|---|
| 311 | _rinexNav->setEnabled(false);
|
|---|
| 312 | _corrFile->setEnabled(false);
|
|---|
| 313 | }
|
|---|
| 314 | else if (rinexFiles) {
|
|---|
| 315 | _corrMount->setEnabled(false);
|
|---|
| 316 | }
|
|---|
| 317 |
|
|---|
| 318 | _dataSource->setEnabled(true);
|
|---|
| 319 |
|
|---|
| 320 | it.toFront();
|
|---|
| 321 | while (it.hasNext()) {
|
|---|
| 322 | QWidget* widget = it.next();
|
|---|
| 323 | if (widget->isEnabled()) {
|
|---|
| 324 | widget->setPalette(paletteWhite);
|
|---|
| 325 | }
|
|---|
| 326 | else {
|
|---|
| 327 | widget->setPalette(paletteGray);
|
|---|
| 328 | }
|
|---|
| 329 | }
|
|---|
| 330 | }
|
|---|
| 331 |
|
|---|
| 332 | //
|
|---|
| 333 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 334 | void t_pppWidgets::slotAddStation() {
|
|---|
| 335 | int iRow = _staTable->rowCount();
|
|---|
| 336 | _staTable->insertRow(iRow);
|
|---|
| 337 | for (int iCol = 0; iCol < _staTable->columnCount(); iCol++) {
|
|---|
| 338 | _staTable->setItem(iRow, iCol, new QTableWidgetItem(""));
|
|---|
| 339 | }
|
|---|
| 340 | }
|
|---|
| 341 |
|
|---|
| 342 | //
|
|---|
| 343 | ////////////////////////////////////////////////////////////////////////////
|
|---|
| 344 | void t_pppWidgets::slotDelStation() {
|
|---|
| 345 | int nRows = _staTable->rowCount();
|
|---|
| 346 | bool flg[nRows];
|
|---|
| 347 | for (int iRow = 0; iRow < nRows; iRow++) {
|
|---|
| 348 | if (_staTable->isItemSelected(_staTable->item(iRow,1))) {
|
|---|
| 349 | flg[iRow] = true;
|
|---|
| 350 | }
|
|---|
| 351 | else {
|
|---|
| 352 | flg[iRow] = false;
|
|---|
| 353 | }
|
|---|
| 354 | }
|
|---|
| 355 | for (int iRow = nRows-1; iRow >= 0; iRow--) {
|
|---|
| 356 | if (flg[iRow]) {
|
|---|
| 357 | _staTable->removeRow(iRow);
|
|---|
| 358 | }
|
|---|
| 359 | }
|
|---|
| 360 | }
|
|---|
| 361 |
|
|---|