source: ntrip/trunk/BNC/src/bncwindow.cpp@ 5893

Last change on this file since 5893 was 5893, checked in by mervart, 10 years ago
File size: 121.3 KB
RevLine 
[280]1// Part of BNC, a utility for retrieving decoding and
[464]2// converting GNSS data streams from NTRIP broadcasters.
[280]3//
[464]4// Copyright (C) 2007
[280]5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
[464]7// Czech Technical University Prague, Department of Geodesy
[280]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.
[35]24
25/* -------------------------------------------------------------------------
[93]26 * BKG NTRIP Client
[35]27 * -------------------------------------------------------------------------
28 *
29 * Class: bncWindow
30 *
31 * Purpose: This class implements the main application window.
32 *
33 * Author: L. Mervart
34 *
35 * Created: 24-Dec-2005
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
[1175]41#include <iostream>
42
[274]43#include <unistd.h>
[35]44#include "bncwindow.h"
[5070]45#include "bnccore.h"
[35]46#include "bncgetthread.h"
47#include "bnctabledlg.h"
[1610]48#include "bncipport.h"
[1780]49#include "bncudpport.h"
[1737]50#include "bncserialport.h"
[177]51#include "bnchlpdlg.h"
[168]52#include "bnchtml.h"
[366]53#include "bnctableitem.h"
[1535]54#include "bncsettings.h"
[1932]55#include "bncfigure.h"
[1972]56#include "bncfigurelate.h"
[2141]57#include "bncfigureppp.h"
[2012]58#include "bncversion.h"
[3245]59#include "bncbytescounter.h"
[3357]60#include "bncsslconfig.h"
[3239]61#include "upload/bnccustomtrafo.h"
[3249]62#include "upload/bncephuploadcaster.h"
[3602]63#include "qtfilechooser.h"
[3897]64#include "reqcdlg.h"
[4646]65#include "bncmap.h"
[5887]66#include "rinex/reqcedit.h"
67#include "rinex/reqcanalyze.h"
68#include "PPP/pppMain.h"
[5186]69#ifdef QT_WEBKIT
70# include "map/bncmapwin.h"
71#endif
[35]72
73using namespace std;
74
[5063]75#ifdef GNSSCENTER_PLUGIN
76Q_EXPORT_PLUGIN2(gnsscenter_bnc, t_bncFactory)
77#endif
78
[1925]79// Constructor
80////////////////////////////////////////////////////////////////////////////
[35]81bncWindow::bncWindow() {
82
[5085]83#ifdef GNSSCENTER_PLUGIN
84 BNC_CORE->setConfFileName("");
85#endif
86
[5880]87 qRegisterMetaType< QVector<double> >("QVector<double>");
88
[5729]89 _caster = 0;
[3249]90 _casterEph = 0;
[609]91
[5873]92 _bncFigure = new bncFigure(this);
[1972]93 _bncFigureLate = new bncFigureLate(this);
[5873]94 _bncFigurePPP = new bncFigurePPP(this);
[5879]95 connect(BNC_CORE, SIGNAL(newPosition(bncTime, QVector<double>)),
96 _bncFigurePPP, SLOT(slotNewPosition(bncTime, QVector<double>)));
[3782]97 _runningRealTime = false;
[3897]98 _runningPostProcessingReqc = false;
[5815]99 _pppMain = new BNC_PPP::t_pppMain();
[5861]100 _reqcActionComboBox = 0; // necessary for enableStartStop()
[1912]101
[5179]102 _mapWin = 0;
103
[91]104 int ww = QFontMetrics(this->font()).width('w');
[199]105
[2269]106 static const QStringList labels = QString("account, Streams: resource loader / mountpoint, decoder, lat, long, nmea, ntrip, bytes").split(",");
[35]107
[3731]108 setMinimumSize(85*ww, 65*ww);
[375]109
[2012]110 setWindowTitle(tr("BKG Ntrip Client (BNC) Version " BNCVERSION));
[91]111
[5068]112 connect(BNC_CORE, SIGNAL(newMessage(QByteArray,bool)),
[5066]113 this, SLOT(slotWindowMessage(QByteArray,bool)));
[1171]114
[35]115 // Create Actions
116 // --------------
[108]117 _actHelp = new QAction(tr("&Help Contents"),this);
118 connect(_actHelp, SIGNAL(triggered()), SLOT(slotHelp()));
[35]119
[108]120 _actAbout = new QAction(tr("&About BNC"),this);
121 connect(_actAbout, SIGNAL(triggered()), SLOT(slotAbout()));
122
[996]123 _actFlowchart = new QAction(tr("&Flow Chart"),this);
[989]124 connect(_actFlowchart, SIGNAL(triggered()), SLOT(slotFlowchart()));
125
[261]126 _actFontSel = new QAction(tr("Select &Font"),this);
[110]127 connect(_actFontSel, SIGNAL(triggered()), SLOT(slotFontSel()));
128
[5571]129 _actSaveOpt = new QAction(tr("&Reread && Save Configuration"),this);
[35]130 connect(_actSaveOpt, SIGNAL(triggered()), SLOT(slotSaveOptions()));
131
132 _actQuit = new QAction(tr("&Quit"),this);
133 connect(_actQuit, SIGNAL(triggered()), SLOT(close()));
134
[1874]135 _actAddMountPoints = new QAction(tr("Add &Stream"),this);
[35]136 connect(_actAddMountPoints, SIGNAL(triggered()), SLOT(slotAddMountPoints()));
137
[1874]138 _actDeleteMountPoints = new QAction(tr("&Delete Stream"),this);
[35]139 connect(_actDeleteMountPoints, SIGNAL(triggered()), SLOT(slotDeleteMountPoints()));
[83]140 _actDeleteMountPoints->setEnabled(false);
[35]141
[5571]142 _actMapMountPoints = new QAction(tr("&Map"),this);
[5162]143 connect(_actMapMountPoints, SIGNAL(triggered()), SLOT(slotMapMountPoints()));
[4646]144
[3782]145 _actStart = new QAction(tr("Sta&rt"),this);
146 connect(_actStart, SIGNAL(triggered()), SLOT(slotStart()));
[35]147
[182]148 _actStop = new QAction(tr("Sto&p"),this);
149 connect(_actStop, SIGNAL(triggered()), SLOT(slotStop()));
150
[2596]151 _actwhatsthis= new QAction(tr("Help ?=Shift+F1"),this);
[399]152 connect(_actwhatsthis, SIGNAL(triggered()), SLOT(slotWhatsThis()));
153
[679]154 CreateMenu();
155 AddToolbar();
[35]156
[1535]157 bncSettings settings;
[1678]158
[3788]159 // Network Options
[3356]160 // ---------------
[35]161 _proxyHostLineEdit = new QLineEdit(settings.value("proxyHost").toString());
162 _proxyPortLineEdit = new QLineEdit(settings.value("proxyPort").toString());
[565]163
[2128]164 connect(_proxyHostLineEdit, SIGNAL(textChanged(const QString &)),
165 this, SLOT(slotBncTextChanged()));
166
[3356]167 _sslCaCertPathLineEdit = new QLineEdit(settings.value("sslCaCertPath").toString());
168 _ignoreSslErrorsCheckBox = new QCheckBox();
169 _ignoreSslErrorsCheckBox->setCheckState(Qt::CheckState(
170 settings.value("ignoreSslErrors").toInt()));
171
[1678]172 // General Options
173 // ---------------
174 _logFileLineEdit = new QLineEdit(settings.value("logFile").toString());
[2386]175 _rawOutFileLineEdit = new QLineEdit(settings.value("rawOutFile").toString());
[259]176 _rnxAppendCheckBox = new QCheckBox();
177 _rnxAppendCheckBox->setCheckState(Qt::CheckState(
178 settings.value("rnxAppend").toInt()));
[1678]179 _onTheFlyComboBox = new QComboBox();
180 _onTheFlyComboBox->setEditable(false);
[4537]181 _onTheFlyComboBox->addItems(QString("1 day,1 hour,5 min,1 min").split(","));
[1678]182 int ii = _onTheFlyComboBox->findText(settings.value("onTheFlyInterval").toString());
183 if (ii != -1) {
184 _onTheFlyComboBox->setCurrentIndex(ii);
185 }
[1333]186 _autoStartCheckBox = new QCheckBox();
187 _autoStartCheckBox->setCheckState(Qt::CheckState(
188 settings.value("autoStart").toInt()));
[1678]189
190 // RINEX Observations Options
191 // --------------------------
192 _rnxPathLineEdit = new QLineEdit(settings.value("rnxPath").toString());
[106]193 _rnxIntrComboBox = new QComboBox();
194 _rnxIntrComboBox->setEditable(false);
[405]195 _rnxIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
[1678]196 ii = _rnxIntrComboBox->findText(settings.value("rnxIntr").toString());
[106]197 if (ii != -1) {
198 _rnxIntrComboBox->setCurrentIndex(ii);
199 }
[1678]200 _rnxSamplSpinBox = new QSpinBox();
201 _rnxSamplSpinBox->setMinimum(0);
202 _rnxSamplSpinBox->setMaximum(60);
203 _rnxSamplSpinBox->setSingleStep(5);
204 _rnxSamplSpinBox->setValue(settings.value("rnxSampl").toInt());
205 _rnxSamplSpinBox->setSuffix(" sec");
206 _rnxSkelLineEdit = new QLineEdit(settings.value("rnxSkel").toString());
207 _rnxSkelLineEdit->setMaximumWidth(5*ww);
208 _rnxScrpLineEdit = new QLineEdit(settings.value("rnxScript").toString());
209 _rnxV3CheckBox = new QCheckBox();
210 _rnxV3CheckBox->setCheckState(Qt::CheckState(settings.value("rnxV3").toInt()));
211
[2128]212 connect(_rnxPathLineEdit, SIGNAL(textChanged(const QString &)),
213 this, SLOT(slotBncTextChanged()));
214
[1678]215 // RINEX Ephemeris Options
216 // -----------------------
217 _ephPathLineEdit = new QLineEdit(settings.value("ephPath").toString());
[560]218 _ephIntrComboBox = new QComboBox();
219 _ephIntrComboBox->setEditable(false);
[647]220 _ephIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
[560]221 int jj = _ephIntrComboBox->findText(settings.value("ephIntr").toString());
222 if (jj != -1) {
223 _ephIntrComboBox->setCurrentIndex(jj);
224 }
[1678]225 _outEphPortLineEdit = new QLineEdit(settings.value("outEphPort").toString());
226 _ephV3CheckBox = new QCheckBox();
227 _ephV3CheckBox->setCheckState(Qt::CheckState(settings.value("ephV3").toInt()));
228
[2128]229 connect(_outEphPortLineEdit, SIGNAL(textChanged(const QString &)),
230 this, SLOT(slotBncTextChanged()));
231
232 connect(_ephPathLineEdit, SIGNAL(textChanged(const QString &)),
233 this, SLOT(slotBncTextChanged()));
234
[1682]235 // Broadcast Corrections Options
[1678]236 // -----------------------------
237 _corrPathLineEdit = new QLineEdit(settings.value("corrPath").toString());
[934]238 _corrIntrComboBox = new QComboBox();
239 _corrIntrComboBox->setEditable(false);
240 _corrIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
241 int mm = _corrIntrComboBox->findText(settings.value("corrIntr").toString());
242 if (mm != -1) {
243 _corrIntrComboBox->setCurrentIndex(mm);
244 }
[1678]245 _corrPortLineEdit = new QLineEdit(settings.value("corrPort").toString());
[967]246 _corrTimeSpinBox = new QSpinBox();
[3109]247 _corrTimeSpinBox->setMinimum(0);
[2436]248 _corrTimeSpinBox->setMaximum(60);
[967]249 _corrTimeSpinBox->setSingleStep(1);
250 _corrTimeSpinBox->setSuffix(" sec");
251 _corrTimeSpinBox->setValue(settings.value("corrTime").toInt());
[740]252
[2128]253 connect(_corrPathLineEdit, SIGNAL(textChanged(const QString &)),
254 this, SLOT(slotBncTextChanged()));
255
256 connect(_corrPortLineEdit, SIGNAL(textChanged(const QString &)),
257 this, SLOT(slotBncTextChanged()));
258
[1678]259 // Feed Engine Options
260 // -------------------
261 _outPortLineEdit = new QLineEdit(settings.value("outPort").toString());
262 _waitTimeSpinBox = new QSpinBox();
263 _waitTimeSpinBox->setMinimum(1);
264 _waitTimeSpinBox->setMaximum(30);
265 _waitTimeSpinBox->setSingleStep(1);
266 _waitTimeSpinBox->setSuffix(" sec");
267 _waitTimeSpinBox->setValue(settings.value("waitTime").toInt());
[740]268 _binSamplSpinBox = new QSpinBox();
269 _binSamplSpinBox->setMinimum(0);
270 _binSamplSpinBox->setMaximum(60);
271 _binSamplSpinBox->setSingleStep(5);
272 _binSamplSpinBox->setValue(settings.value("binSampl").toInt());
273 _binSamplSpinBox->setSuffix(" sec");
[1678]274 _outFileLineEdit = new QLineEdit(settings.value("outFile").toString());
275 _outUPortLineEdit = new QLineEdit(settings.value("outUPort").toString());
[740]276
[2128]277 connect(_outPortLineEdit, SIGNAL(textChanged(const QString &)),
278 this, SLOT(slotBncTextChanged()));
279
280 connect(_outFileLineEdit, SIGNAL(textChanged(const QString &)),
281 this, SLOT(slotBncTextChanged()));
282
[1746]283 // Serial Output Options
284 // ---------------------
[1678]285 _serialMountPointLineEdit = new QLineEdit(settings.value("serialMountPoint").toString());
[1327]286 _serialPortNameLineEdit = new QLineEdit(settings.value("serialPortName").toString());
[1329]287 _serialBaudRateComboBox = new QComboBox();
[1332]288 _serialBaudRateComboBox->addItems(QString("110,300,600,"
289 "1200,2400,4800,9600,19200,38400,57600,115200").split(","));
[1678]290 int kk = _serialBaudRateComboBox->findText(settings.value("serialBaudRate").toString());
[1329]291 if (kk != -1) {
292 _serialBaudRateComboBox->setCurrentIndex(kk);
293 }
[1678]294 _serialFlowControlComboBox = new QComboBox();
295 _serialFlowControlComboBox->addItems(QString("OFF,XONXOFF,HARDWARE").split(","));
296 kk = _serialFlowControlComboBox->findText(settings.value("serialFlowControl").toString());
[1329]297 if (kk != -1) {
[1678]298 _serialFlowControlComboBox->setCurrentIndex(kk);
[1329]299 }
300 _serialDataBitsComboBox = new QComboBox();
301 _serialDataBitsComboBox->addItems(QString("5,6,7,8").split(","));
302 kk = _serialDataBitsComboBox->findText(settings.value("serialDataBits").toString());
303 if (kk != -1) {
304 _serialDataBitsComboBox->setCurrentIndex(kk);
305 }
[1678]306 _serialParityComboBox = new QComboBox();
307 _serialParityComboBox->addItems(QString("NONE,ODD,EVEN,SPACE").split(","));
308 kk = _serialParityComboBox->findText(settings.value("serialParity").toString());
309 if (kk != -1) {
310 _serialParityComboBox->setCurrentIndex(kk);
311 }
[1329]312 _serialStopBitsComboBox = new QComboBox();
313 _serialStopBitsComboBox->addItems(QString("1,2").split(","));
314 kk = _serialStopBitsComboBox->findText(settings.value("serialStopBits").toString());
315 if (kk != -1) {
316 _serialStopBitsComboBox->setCurrentIndex(kk);
317 }
[1595]318 _serialAutoNMEAComboBox = new QComboBox();
319 _serialAutoNMEAComboBox->addItems(QString("Auto,Manual").split(","));
320 kk = _serialAutoNMEAComboBox->findText(settings.value("serialAutoNMEA").toString());
321 if (kk != -1) {
322 _serialAutoNMEAComboBox->setCurrentIndex(kk);
323 }
[1601]324 _serialFileNMEALineEdit = new QLineEdit(settings.value("serialFileNMEA").toString());
[1595]325 _serialHeightNMEALineEdit = new QLineEdit(settings.value("serialHeightNMEA").toString());
[1678]326
[2128]327 connect(_serialMountPointLineEdit, SIGNAL(textChanged(const QString &)),
328 this, SLOT(slotBncTextChanged()));
329
330 connect(_serialAutoNMEAComboBox, SIGNAL(currentIndexChanged(const QString &)),
331 this, SLOT(slotBncTextChanged()));
332
[1678]333 // Outages Options
334 // ---------------
335 _obsRateComboBox = new QComboBox();
336 _obsRateComboBox->setEditable(false);
337 _obsRateComboBox->addItems(QString(",0.1 Hz,0.2 Hz,0.5 Hz,1 Hz,5 Hz").split(","));
338 kk = _obsRateComboBox->findText(settings.value("obsRate").toString());
339 if (kk != -1) {
340 _obsRateComboBox->setCurrentIndex(kk);
341 }
342 _adviseFailSpinBox = new QSpinBox();
343 _adviseFailSpinBox->setMinimum(0);
344 _adviseFailSpinBox->setMaximum(60);
345 _adviseFailSpinBox->setSingleStep(1);
346 _adviseFailSpinBox->setSuffix(" min");
347 _adviseFailSpinBox->setValue(settings.value("adviseFail").toInt());
348 _adviseRecoSpinBox = new QSpinBox();
349 _adviseRecoSpinBox->setMinimum(0);
350 _adviseRecoSpinBox->setMaximum(60);
351 _adviseRecoSpinBox->setSingleStep(1);
352 _adviseRecoSpinBox->setSuffix(" min");
353 _adviseRecoSpinBox->setValue(settings.value("adviseReco").toInt());
354 _adviseScriptLineEdit = new QLineEdit(settings.value("adviseScript").toString());
355
[2128]356 connect(_obsRateComboBox, SIGNAL(currentIndexChanged(const QString &)),
357 this, SLOT(slotBncTextChanged()));
358
[1678]359 // Miscellaneous Options
360 // ---------------------
361 _miscMountLineEdit = new QLineEdit(settings.value("miscMount").toString());
[5644]362 _miscPortLineEdit = new QLineEdit(settings.value("miscPort").toString());
[2003]363 _perfIntrComboBox = new QComboBox();
[728]364 _perfIntrComboBox->setEditable(false);
[1472]365 _perfIntrComboBox->addItems(QString(",2 sec, 10 sec,1 min,5 min,15 min,1 hour,6 hours,1 day").split(","));
[728]366 int ll = _perfIntrComboBox->findText(settings.value("perfIntr").toString());
[709]367 if (ll != -1) {
[728]368 _perfIntrComboBox->setCurrentIndex(ll);
[709]369 }
[1678]370 _scanRTCMCheckBox = new QCheckBox();
371 _scanRTCMCheckBox->setCheckState(Qt::CheckState(
372 settings.value("scanRTCM").toInt()));
[709]373
[2128]374 connect(_miscMountLineEdit, SIGNAL(textChanged(const QString &)),
375 this, SLOT(slotBncTextChanged()));
376
[1678]377 // Streams
378 // -------
[1352]379 _mountPointsTable = new QTableWidget(0,8);
[375]380
[679]381 _mountPointsTable->horizontalHeader()->resizeSection(1,34*ww);
[366]382 _mountPointsTable->horizontalHeader()->resizeSection(2,9*ww);
383 _mountPointsTable->horizontalHeader()->resizeSection(3,7*ww);
384 _mountPointsTable->horizontalHeader()->resizeSection(4,7*ww);
385 _mountPointsTable->horizontalHeader()->resizeSection(5,5*ww);
[1678]386 _mountPointsTable->horizontalHeader()->resizeSection(6,5*ww);
[199]387 _mountPointsTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
[203]388 _mountPointsTable->horizontalHeader()->setStretchLastSection(true);
[2269]389 _mountPointsTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
[5716]390 _mountPointsTable->setHorizontalHeaderLabels(labels);
[115]391 _mountPointsTable->setGridStyle(Qt::NoPen);
392 _mountPointsTable->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
[35]393 _mountPointsTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
394 _mountPointsTable->setSelectionBehavior(QAbstractItemView::SelectRows);
[111]395 _mountPointsTable->hideColumn(0);
[83]396 connect(_mountPointsTable, SIGNAL(itemSelectionChanged()),
397 SLOT(slotSelectionChanged()));
[1178]398 populateMountPointsTable();
[35]399
[399]400 _log = new QTextBrowser();
[83]401 _log->setReadOnly(true);
[35]402
[4185]403 // Combine Corrections
404 // -------------------
[3059]405 _cmbTable = new QTableWidget(0,3);
406 _cmbTable->setHorizontalHeaderLabels(QString("Mountpoint, AC Name, Weight").split(","));
407 _cmbTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
408 _cmbTable->setSelectionBehavior(QAbstractItemView::SelectRows);
409 _cmbTable->setMaximumWidth(30*ww);
410 _cmbTable->horizontalHeader()->resizeSection(0,10*ww);
411 _cmbTable->horizontalHeader()->resizeSection(1,8*ww);
412 _cmbTable->horizontalHeader()->resizeSection(2,8*ww);
413 _cmbTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
414 _cmbTable->horizontalHeader()->setStretchLastSection(true);
415 _cmbTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
[3328]416
417 _cmbMaxresLineEdit = new QLineEdit(settings.value("cmbMaxres").toString());
[3059]418
[4179]419 _cmbSamplSpinBox = new QSpinBox;
[4181]420 _cmbSamplSpinBox->setMinimum(10);
[4179]421 _cmbSamplSpinBox->setMaximum(60);
[4181]422 _cmbSamplSpinBox->setSingleStep(10);
[4179]423 _cmbSamplSpinBox->setMaximumWidth(9*ww);
424 _cmbSamplSpinBox->setValue(settings.value("cmbSampl").toInt());
425 _cmbSamplSpinBox->setSuffix(" sec");
426
[3059]427 QPushButton* addCmbRowButton = new QPushButton("Add Row");
428 QPushButton* delCmbRowButton = new QPushButton("Delete");
429
[3813]430 connect(_cmbTable, SIGNAL(itemSelectionChanged()),
431 SLOT(slotBncTextChanged()));
[3066]432
[3469]433 _cmbMethodComboBox = new QComboBox();
434 _cmbMethodComboBox->setEditable(false);
[3480]435 _cmbMethodComboBox->addItems(QString("Filter,Single-Epoch").split(","));
[3469]436 int im = _cmbMethodComboBox->findText(settings.value("cmbMethod").toString());
437 if (im != -1) {
438 _cmbMethodComboBox->setCurrentIndex(im);
439 }
440
[3813]441 int iRow = _cmbTable->rowCount();
442 if (iRow > 0) {
443 enableWidget(true, _cmbMethodComboBox);
444 _cmbMaxresLineEdit->setStyleSheet("background-color: white");
445 _cmbMaxresLineEdit->setEnabled(true);
[4179]446 _cmbSamplSpinBox->setEnabled(true);
[3813]447 }
448 else {
449 enableWidget(false, _cmbMethodComboBox);
450 _cmbMaxresLineEdit->setStyleSheet("background-color: lightGray");
451 _cmbMaxresLineEdit->setEnabled(false);
[4179]452 _cmbSamplSpinBox->setEnabled(false);
[3813]453 }
454
[3164]455 // Upload Results
[3152]456 // -------------
[4111]457 _uploadTable = new QTableWidget(0,12);
458 _uploadTable->setHorizontalHeaderLabels(QString("Host, Port, Mount, Password, System, CoM, SP3 File, RNX File, PID, SID, IOD, bytes").split(","));
[3164]459 _uploadTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
460 _uploadTable->setSelectionBehavior(QAbstractItemView::SelectRows);
[4111]461 _uploadTable->horizontalHeader()->resizeSection( 0,13*ww);
462 _uploadTable->horizontalHeader()->resizeSection( 1, 5*ww);
463 _uploadTable->horizontalHeader()->resizeSection( 2, 6*ww);
464 _uploadTable->horizontalHeader()->resizeSection( 3, 8*ww);
465 _uploadTable->horizontalHeader()->resizeSection( 4,11*ww);
466 _uploadTable->horizontalHeader()->resizeSection( 5, 4*ww);
467 _uploadTable->horizontalHeader()->resizeSection( 6,15*ww);
468 _uploadTable->horizontalHeader()->resizeSection( 7,15*ww);
469 _uploadTable->horizontalHeader()->resizeSection( 8, 4*ww);
470 _uploadTable->horizontalHeader()->resizeSection( 9, 4*ww);
471 _uploadTable->horizontalHeader()->resizeSection(10, 4*ww);
472 _uploadTable->horizontalHeader()->resizeSection(11,12*ww);
[3164]473 _uploadTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
[4185]474 _uploadTable->horizontalHeader()->setStretchLastSection(true);
[3164]475 _uploadTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
[3152]476
[3585]477 connect(_uploadTable, SIGNAL(itemSelectionChanged()),
478 SLOT(slotBncTextChanged()));
479
[3164]480 QPushButton* addUploadRowButton = new QPushButton("Add Row");
[3193]481 QPushButton* delUploadRowButton = new QPushButton("Del Row");
482 QPushButton* setUploadTrafoButton = new QPushButton("Custom Trafo");
[3197]483 _uploadIntrComboBox = new QComboBox;
484 _uploadIntrComboBox->setEditable(false);
[3271]485 _uploadIntrComboBox->addItems(QString("1 day,1 hour, 30 min,15 min,10 min,5 min,2 min,1 min").split(","));
[3197]486 ii = _uploadIntrComboBox->findText(settings.value("uploadIntr").toString());
487 if (ii != -1) {
488 _uploadIntrComboBox->setCurrentIndex(ii);
489 }
[3152]490
[4172]491 _uploadSamplRtcmEphCorrSpinBox = new QSpinBox;
492 _uploadSamplRtcmEphCorrSpinBox->setMinimum(0);
493 _uploadSamplRtcmEphCorrSpinBox->setMaximum(60);
494 _uploadSamplRtcmEphCorrSpinBox->setSingleStep(5);
495 _uploadSamplRtcmEphCorrSpinBox->setMaximumWidth(9*ww);
496 _uploadSamplRtcmEphCorrSpinBox->setValue(settings.value("uploadSamplRtcmEphCorr").toInt());
497 _uploadSamplRtcmEphCorrSpinBox->setSuffix(" sec");
[3152]498
[4172]499 _uploadSamplSp3SpinBox = new QSpinBox;
500 _uploadSamplSp3SpinBox->setMinimum(0);
[4173]501 _uploadSamplSp3SpinBox->setMaximum(15);
502 _uploadSamplSp3SpinBox->setSingleStep(1);
[4172]503 _uploadSamplSp3SpinBox->setMaximumWidth(9*ww);
504 _uploadSamplSp3SpinBox->setValue(settings.value("uploadSamplSp3").toInt());
[4173]505 _uploadSamplSp3SpinBox->setSuffix(" min");
[4172]506
507 _uploadSamplClkRnxSpinBox = new QSpinBox;
508 _uploadSamplClkRnxSpinBox->setMinimum(0);
509 _uploadSamplClkRnxSpinBox->setMaximum(60);
510 _uploadSamplClkRnxSpinBox->setSingleStep(5);
511 _uploadSamplClkRnxSpinBox->setMaximumWidth(9*ww);
512 _uploadSamplClkRnxSpinBox->setValue(settings.value("uploadSamplClkRnx").toInt());
513 _uploadSamplClkRnxSpinBox->setSuffix(" sec");
514
[3813]515 int iRowT = _uploadTable->rowCount();
516 if (iRowT > 0) {
517 enableWidget(true, _uploadIntrComboBox);
[4172]518 enableWidget(true, _uploadSamplRtcmEphCorrSpinBox);
519 enableWidget(true, _uploadSamplSp3SpinBox);
520 enableWidget(true, _uploadSamplClkRnxSpinBox);
[3813]521 }
522 else {
523 enableWidget(false, _uploadIntrComboBox);
[4172]524 enableWidget(false, _uploadSamplRtcmEphCorrSpinBox);
525 enableWidget(false, _uploadSamplSp3SpinBox);
526 enableWidget(false, _uploadSamplClkRnxSpinBox);
[3813]527 }
528
[3240]529 // Upload RTCM3 Ephemeris
530 // ----------------------
531 _uploadEphHostLineEdit = new QLineEdit(settings.value("uploadEphHost").toString());
532 _uploadEphPortLineEdit = new QLineEdit(settings.value("uploadEphPort").toString());
533 _uploadEphPasswordLineEdit = new QLineEdit(settings.value("uploadEphPassword").toString());
534 _uploadEphPasswordLineEdit->setEchoMode(QLineEdit::PasswordEchoOnEdit);
535 _uploadEphMountpointLineEdit = new QLineEdit(settings.value("uploadEphMountpoint").toString());
536 _uploadEphSampleSpinBox = new QSpinBox;
[3271]537 _uploadEphSampleSpinBox->setMinimum(5);
[3240]538 _uploadEphSampleSpinBox->setMaximum(60);
539 _uploadEphSampleSpinBox->setSingleStep(5);
540 _uploadEphSampleSpinBox->setMaximumWidth(9*ww);
541 _uploadEphSampleSpinBox->setValue(settings.value("uploadEphSample").toInt());
542 _uploadEphSampleSpinBox->setSuffix(" sec");
[3245]543 _uploadEphBytesCounter = new bncBytesCounter;
[3240]544
[679]545 // Canvas with Editable Fields
546 // ---------------------------
547 _canvas = new QWidget;
548 setCentralWidget(_canvas);
[143]549
[1925]550 _aogroup = new QTabWidget();
[679]551 QWidget* pgroup = new QWidget();
552 QWidget* ggroup = new QWidget();
553 QWidget* sgroup = new QWidget();
554 QWidget* egroup = new QWidget();
555 QWidget* agroup = new QWidget();
[934]556 QWidget* cgroup = new QWidget();
[679]557 QWidget* ogroup = new QWidget();
[1030]558 QWidget* rgroup = new QWidget();
[1327]559 QWidget* sergroup = new QWidget();
[5686]560 QWidget* pppGroup1 = new QWidget();
561 QWidget* pppGroup2 = new QWidget();
[5690]562 QWidget* pppGroup3 = new QWidget();
[5861]563 QWidget* pppGroup4 = new QWidget();
[3897]564 QWidget* reqcgroup = new QWidget();
[2868]565 QWidget* cmbgroup = new QWidget();
[3164]566 QWidget* uploadgroup = new QWidget();
[3241]567 QWidget* uploadEphgroup = new QWidget();
[3356]568 _aogroup->addTab(pgroup,tr("Network"));
[1925]569 _aogroup->addTab(ggroup,tr("General"));
570 _aogroup->addTab(ogroup,tr("RINEX Observations"));
571 _aogroup->addTab(egroup,tr("RINEX Ephemeris"));
[3897]572 _aogroup->addTab(reqcgroup,tr("RINEX Editing && QC"));
[1925]573 _aogroup->addTab(cgroup,tr("Broadcast Corrections"));
574 _aogroup->addTab(sgroup,tr("Feed Engine"));
575 _aogroup->addTab(sergroup,tr("Serial Output"));
576 _aogroup->addTab(agroup,tr("Outages"));
577 _aogroup->addTab(rgroup,tr("Miscellaneous"));
[5861]578 _aogroup->addTab(pppGroup1,tr("PPP (1)"));
579 _aogroup->addTab(pppGroup2,tr("PPP (2)"));
580 _aogroup->addTab(pppGroup3,tr("PPP (3)"));
[5865]581 _aogroup->addTab(pppGroup4,tr("PPP (4)"));
[5686]582
[2907]583#ifdef USE_COMBINATION
[4185]584 _aogroup->addTab(cmbgroup,tr("Combine Corrections"));
[2907]585#endif
[4185]586 _aogroup->addTab(uploadgroup,tr("Upload Corrections"));
587 _aogroup->addTab(uploadEphgroup,tr("Upload Ephemeris"));
[143]588
[1957]589 // Log Tab
590 // -------
[1925]591 _loggroup = new QTabWidget();
[1957]592 _loggroup->addTab(_log,tr("Log"));
593 _loggroup->addTab(_bncFigure,tr("Throughput"));
[1972]594 _loggroup->addTab(_bncFigureLate,tr("Latency"));
[2303]595 _loggroup->addTab(_bncFigurePPP,tr("PPP Plot"));
[1912]596
[3356]597 // Netowork (Proxy and SSL) Tab
598 // ----------------------------
[679]599 QGridLayout* pLayout = new QGridLayout;
[1409]600 pLayout->setColumnMinimumWidth(0,13*ww);
[1678]601 _proxyPortLineEdit->setMaximumWidth(9*ww);
602
[3766]603 pLayout->addWidget(new QLabel("Settings for proxy in protected networks and for SSL authorization, leave boxes blank if none."),0, 0, 1, 50);
604 pLayout->addWidget(new QLabel("Proxy host"), 1, 0);
605 pLayout->addWidget(_proxyHostLineEdit, 1, 1, 1,10);
606 pLayout->addWidget(new QLabel("Proxy port"), 2, 0);
607 pLayout->addWidget(_proxyPortLineEdit, 2, 1);
608 pLayout->addWidget(new QLabel("Path to SSL Certificates"), 3, 0);
609 pLayout->addWidget(_sslCaCertPathLineEdit, 3, 1, 1,10);
[3778]610 pLayout->addWidget(new QLabel("Default: " + bncSslConfig::defaultPath()), 3,11, 1,20);
[3766]611 pLayout->addWidget(new QLabel("Ignore SSL Authorization Errors"), 4, 0);
612 pLayout->addWidget(_ignoreSslErrorsCheckBox, 4, 1, 1,10);
613 pLayout->addWidget(new QLabel(" "), 4, 0);
614 pLayout->addWidget(new QLabel(" "), 5, 0);
615 pLayout->addWidget(new QLabel(" "), 6, 0);
[679]616 pgroup->setLayout(pLayout);
[1439]617
[1678]618 // General Tab
619 // -----------
[679]620 QGridLayout* gLayout = new QGridLayout;
[1042]621 gLayout->setColumnMinimumWidth(0,14*ww);
[1678]622 _onTheFlyComboBox->setMaximumWidth(9*ww);
623
[3766]624 gLayout->addWidget(new QLabel("General settings for logfile, file handling, configuration on-the-fly, and auto-start."),0, 0, 1, 50);
625 gLayout->addWidget(new QLabel("Logfile (full path)"), 1, 0);
626 gLayout->addWidget(_logFileLineEdit, 1, 1, 1,30);
627 gLayout->addWidget(new QLabel("Append files"), 2, 0);
628 gLayout->addWidget(_rnxAppendCheckBox, 2, 1);
629 gLayout->addWidget(new QLabel("Reread configuration"), 3, 0);
630 gLayout->addWidget(_onTheFlyComboBox, 3, 1);
631 gLayout->addWidget(new QLabel("Auto start"), 4, 0);
632 gLayout->addWidget(_autoStartCheckBox, 4, 1);
633 gLayout->addWidget(new QLabel("Raw output file (full path)"), 5, 0);
634 gLayout->addWidget(_rawOutFileLineEdit, 5, 1, 1,30);
635 gLayout->addWidget(new QLabel(" "), 6, 0);
[679]636 ggroup->setLayout(gLayout);
[533]637
[1678]638 // RINEX Observations
639 // ------------------
640 QGridLayout* oLayout = new QGridLayout;
641 oLayout->setColumnMinimumWidth(0,14*ww);
642 _rnxIntrComboBox->setMaximumWidth(9*ww);
643 _rnxSamplSpinBox->setMaximumWidth(9*ww);
[143]644
[3766]645 oLayout->addWidget(new QLabel("Saving RINEX observation files."),0, 0, 1,50);
646 oLayout->addWidget(new QLabel("Directory"), 1, 0);
647 oLayout->addWidget(_rnxPathLineEdit, 1, 1, 1,24);
648 oLayout->addWidget(new QLabel("Interval"), 2, 0);
649 oLayout->addWidget(_rnxIntrComboBox, 2, 1);
650 oLayout->addWidget(new QLabel(" Sampling"), 2, 2, Qt::AlignRight);
651 oLayout->addWidget(_rnxSamplSpinBox, 2, 3, Qt::AlignLeft);
652 oLayout->addWidget(new QLabel("Skeleton extension"), 3, 0);
653 oLayout->addWidget(_rnxSkelLineEdit, 3, 1, 1, 1, Qt::AlignLeft);
654 oLayout->addWidget(new QLabel("Script (full path)"), 4, 0);
655 oLayout->addWidget(_rnxScrpLineEdit, 4, 1, 1,24);
656 oLayout->addWidget(new QLabel("Version 3"), 5, 0);
657 oLayout->addWidget(_rnxV3CheckBox, 5, 1);
658 oLayout->addWidget(new QLabel(" "), 6, 0);
[1678]659 ogroup->setLayout(oLayout);
660
[1439]661 // RINEX Ephemeris
662 // ---------------
[679]663 QGridLayout* eLayout = new QGridLayout;
[1042]664 eLayout->setColumnMinimumWidth(0,14*ww);
[1678]665 _ephIntrComboBox->setMaximumWidth(9*ww);
666 _outEphPortLineEdit->setMaximumWidth(9*ww);
667
[3766]668 eLayout->addWidget(new QLabel("Saving RINEX ephemeris files and ephemeris output through IP port."),0,0,1,50);
669 eLayout->addWidget(new QLabel("Directory"), 1, 0);
670 eLayout->addWidget(_ephPathLineEdit, 1, 1, 1,30);
671 eLayout->addWidget(new QLabel("Interval"), 2, 0);
672 eLayout->addWidget(_ephIntrComboBox, 2, 1);
673 eLayout->addWidget(new QLabel("Port"), 3, 0);
674 eLayout->addWidget(_outEphPortLineEdit, 3, 1);
675 eLayout->addWidget(new QLabel("Version 3"), 4, 0);
676 eLayout->addWidget(_ephV3CheckBox, 4, 1);
677 eLayout->addWidget(new QLabel(" "), 5, 0);
678 eLayout->addWidget(new QLabel(" "), 6, 0);
[679]679 egroup->setLayout(eLayout);
[560]680
[1454]681
[1682]682 // Broadcast Corrections
[1439]683 // ---------------------
[934]684 QGridLayout* cLayout = new QGridLayout;
[1042]685 cLayout->setColumnMinimumWidth(0,14*ww);
[1678]686 _corrIntrComboBox->setMaximumWidth(9*ww);
687 _corrPortLineEdit->setMaximumWidth(9*ww);
688 _corrTimeSpinBox->setMaximumWidth(9*ww);
689
[3766]690 cLayout->addWidget(new QLabel("Saving Broadcast Ephemeris correction files and correction output through IP port."),0,0,1,50);
691 cLayout->addWidget(new QLabel("Directory, ASCII"), 1, 0);
692 cLayout->addWidget(_corrPathLineEdit, 1, 1, 1,20);
693 cLayout->addWidget(new QLabel("Interval"), 2, 0);
694 cLayout->addWidget(_corrIntrComboBox, 2, 1);
695 cLayout->addWidget(new QLabel("Port"), 3, 0);
696 cLayout->addWidget(_corrPortLineEdit, 3, 1);
[4202]697 cLayout->addWidget(new QLabel(" Wait for full corr epoch"), 3, 2, Qt::AlignRight);
[3766]698 cLayout->addWidget(_corrTimeSpinBox, 3, 3, Qt::AlignLeft);
699 cLayout->addWidget(new QLabel(" "), 4, 0);
700 cLayout->addWidget(new QLabel(" "), 5, 0);
701 cLayout->addWidget(new QLabel(" "), 6, 0);
[934]702 cgroup->setLayout(cLayout);
703
[1678]704 // Feed Engine
705 // -----------
706 QGridLayout* sLayout = new QGridLayout;
707 sLayout->setColumnMinimumWidth(0,14*ww);
708 _outPortLineEdit->setMaximumWidth(9*ww);
709 _waitTimeSpinBox->setMaximumWidth(9*ww);
710 _binSamplSpinBox->setMaximumWidth(9*ww);
711 _outUPortLineEdit->setMaximumWidth(9*ww);
712
[4040]713 sLayout->addWidget(new QLabel("Output decoded observations in ASCII format to feed a real-time GNSS network engine."),0,0,1,50);
[3766]714 sLayout->addWidget(new QLabel("Port"), 1, 0);
715 sLayout->addWidget(_outPortLineEdit, 1, 1);
[4202]716 sLayout->addWidget(new QLabel("Wait for full obs epoch"), 1, 2, Qt::AlignRight);
[3766]717 sLayout->addWidget(_waitTimeSpinBox, 1, 3, Qt::AlignLeft);
718 sLayout->addWidget(new QLabel("Sampling"), 2, 0);
719 sLayout->addWidget(_binSamplSpinBox, 2, 1, Qt::AlignLeft);
720 sLayout->addWidget(new QLabel("File (full path)"), 3, 0);
721 sLayout->addWidget(_outFileLineEdit, 3, 1, 1, 20);
722 sLayout->addWidget(new QLabel("Port (unsynchronized)"), 4, 0);
723 sLayout->addWidget(_outUPortLineEdit, 4, 1);
724 sLayout->addWidget(new QLabel(" "), 5, 0);
725 sLayout->addWidget(new QLabel(" "), 6, 0);
[1678]726 sgroup->setLayout(sLayout);
727
[1746]728 // Serial Output
729 // -------------
[1327]730 QGridLayout* serLayout = new QGridLayout;
[1339]731 serLayout->setColumnMinimumWidth(0,14*ww);
[1678]732 _serialBaudRateComboBox->setMaximumWidth(9*ww);
733 _serialFlowControlComboBox->setMaximumWidth(11*ww);
734 _serialDataBitsComboBox->setMaximumWidth(5*ww);
735 _serialParityComboBox->setMaximumWidth(9*ww);
736 _serialStopBitsComboBox->setMaximumWidth(5*ww);
737 _serialAutoNMEAComboBox->setMaximumWidth(9*ww);
[1595]738 _serialHeightNMEALineEdit->setMaximumWidth(8*ww);
[1678]739
[3766]740 serLayout->addWidget(new QLabel("Port settings to feed a serial connected receiver."),0,0,1,30);
741 serLayout->addWidget(new QLabel("Mountpoint"), 1, 0, Qt::AlignLeft);
742 serLayout->addWidget(_serialMountPointLineEdit, 1, 1, 1, 2);
743 serLayout->addWidget(new QLabel("Port name"), 2, 0, Qt::AlignLeft);
744 serLayout->addWidget(_serialPortNameLineEdit, 2, 1, 1, 2);
745 serLayout->addWidget(new QLabel("Baud rate"), 3, 0, Qt::AlignLeft);
746 serLayout->addWidget(_serialBaudRateComboBox, 3, 1);
747 serLayout->addWidget(new QLabel("Flow control"), 3, 2, Qt::AlignRight);
748 serLayout->addWidget(_serialFlowControlComboBox, 3, 3);
749 serLayout->addWidget(new QLabel("Data bits"), 4, 0, Qt::AlignLeft);
750 serLayout->addWidget(_serialDataBitsComboBox, 4, 1);
751 serLayout->addWidget(new QLabel("Parity"), 4, 2, Qt::AlignRight);
752 serLayout->addWidget(_serialParityComboBox, 4, 3);
753 serLayout->addWidget(new QLabel(" Stop bits"), 4, 4, Qt::AlignRight);
754 serLayout->addWidget(_serialStopBitsComboBox, 4, 5);
755 serLayout->addWidget(new QLabel("NMEA"), 5, 0);
756 serLayout->addWidget(_serialAutoNMEAComboBox, 5, 1);
757 serLayout->addWidget(new QLabel(" File (full path)"), 5, 2, Qt::AlignRight);
758 serLayout->addWidget(_serialFileNMEALineEdit, 5, 3, 1,15);
759 serLayout->addWidget(new QLabel("Height"), 5,20, Qt::AlignRight);
760 serLayout->addWidget(_serialHeightNMEALineEdit, 5,21, 1,11);
761 serLayout->addWidget(new QLabel(" "), 6, 0);
[1329]762
[1327]763 sergroup->setLayout(serLayout);
764
[1678]765 // Outages
766 // -------
767 QGridLayout* aLayout = new QGridLayout;
768 aLayout->setColumnMinimumWidth(0,14*ww);
769 _obsRateComboBox->setMaximumWidth(9*ww);
770 _adviseFailSpinBox->setMaximumWidth(9*ww);
771 _adviseRecoSpinBox->setMaximumWidth(9*ww);
772
[3766]773 aLayout->addWidget(new QLabel("Failure and recovery reports, advisory notes."),0,0,1,50,Qt::AlignLeft);
774 aLayout->addWidget(new QLabel("Observation rate"), 1, 0);
775 aLayout->addWidget(_obsRateComboBox, 1, 1);
776 aLayout->addWidget(new QLabel("Failure threshold"), 2, 0);
777 aLayout->addWidget(_adviseFailSpinBox, 2, 1);
778 aLayout->addWidget(new QLabel("Recovery threshold"), 3, 0);
779 aLayout->addWidget(_adviseRecoSpinBox, 3, 1);
780 aLayout->addWidget(new QLabel("Script (full path)"), 4, 0);
781 aLayout->addWidget(_adviseScriptLineEdit, 4, 1, 1,30);
[2199]782 aLayout->addWidget(new QLabel(" "), 5, 0);
[3766]783 aLayout->addWidget(new QLabel(" "), 6, 0);
[1678]784 agroup->setLayout(aLayout);
785
786 // Miscellaneous
787 // -------------
788 QGridLayout* rLayout = new QGridLayout;
789 rLayout->setColumnMinimumWidth(0,14*ww);
790 _perfIntrComboBox->setMaximumWidth(9*ww);
[5644]791 _miscPortLineEdit->setMaximumWidth(9*ww);
[1678]792
[5653]793 rLayout->addWidget(new QLabel("Log latencies or scan RTCM streams for message types and antenna information or output raw data through TCP/IP port."),0, 0,1,30);
[3766]794 rLayout->addWidget(new QLabel("Mountpoint"), 1, 0);
795 rLayout->addWidget(_miscMountLineEdit, 1, 1, 1,7);
796 rLayout->addWidget(new QLabel("Log latency"), 2, 0);
797 rLayout->addWidget(_perfIntrComboBox, 2, 1);
798 rLayout->addWidget(new QLabel("Scan RTCM"), 3, 0);
799 rLayout->addWidget(_scanRTCMCheckBox, 3, 1);
[5644]800 rLayout->addWidget(new QLabel("Port"), 4, 0);
801 rLayout->addWidget(_miscPortLineEdit, 4, 1);
[3766]802 rLayout->addWidget(new QLabel(" "), 5, 0);
803 rLayout->addWidget(new QLabel(" "), 6, 0);
[1678]804 rgroup->setLayout(rLayout);
805
[5861]806 // PPP
807 // ---
808 QGridLayout* pppLayout1 = new QGridLayout();
[3731]809 int ir = 0;
[5699]810 pppLayout1->addWidget(new QLabel("<b>Precise Point Positioning (Input and Output)</b>"), ir, 0, 1, 7, Qt::AlignLeft);
[5687]811 ++ir;
812 pppLayout1->addWidget(new QLabel("Data Source"), ir, 0, Qt::AlignLeft);
813 pppLayout1->addWidget(_pppWidgets._dataSource, ir, 1);
[5688]814 pppLayout1->addItem(new QSpacerItem(4*ww, 0), ir, 2);
815 pppLayout1->addWidget(new QLabel("RINEX Observations"), ir, 3, Qt::AlignLeft);
816 pppLayout1->addWidget(_pppWidgets._rinexObs, ir, 4, 1, 2);
[5687]817 ++ir;
[5688]818 pppLayout1->addWidget(new QLabel("RINEX Orbits"), ir, 3, Qt::AlignLeft);
819 pppLayout1->addWidget(_pppWidgets._rinexNav, ir, 4, 1, 2);
[5687]820 ++ir;
821 pppLayout1->addWidget(new QLabel("Corrections"), ir, 0, Qt::AlignLeft);
[5701]822 pppLayout1->addWidget(_pppWidgets._corrMount, ir, 1);
[5688]823 pppLayout1->addWidget(new QLabel("Corrections"), ir, 3, Qt::AlignLeft);
824 pppLayout1->addWidget(_pppWidgets._corrFile, ir, 4, 1, 2);
[5687]825 ++ir;
826 pppLayout1->addWidget(new QLabel("<b>Input</b>"), ir, 0, Qt::AlignLeft);
[5688]827 pppLayout1->addWidget(new QLabel("<b>Output</b>"), ir, 4, 1, 2, Qt::AlignLeft);
[5687]828 ++ir;
829 pppLayout1->addWidget(new QLabel("Coordinates"), ir, 0, Qt::AlignLeft);
[5688]830 pppLayout1->addWidget(_pppWidgets._crdFile, ir, 1, 1, 2);
831 pppLayout1->addWidget(new QLabel("Log File"), ir, 4, Qt::AlignLeft);
832 pppLayout1->addWidget(_pppWidgets._logFile, ir, 5);
[5687]833 ++ir;
834 pppLayout1->addWidget(new QLabel("ANTEX"), ir, 0, Qt::AlignLeft);
[5688]835 pppLayout1->addWidget(_pppWidgets._antexFile, ir, 1, 1, 2);
836 pppLayout1->addWidget(new QLabel("NMEA File"), ir, 4, Qt::AlignLeft);
837 pppLayout1->addWidget(_pppWidgets._nmeaFile, ir, 5);
838 pppLayout1->addWidget(new QLabel("Port"), ir, 6, Qt::AlignLeft);
839 pppLayout1->addWidget(_pppWidgets._nmeaPort, ir, 7);
[5686]840
841 pppGroup1->setLayout(pppLayout1);
842
[5689]843 QVBoxLayout* pppLayout2 = new QVBoxLayout();
[5699]844 pppLayout2->addWidget(new QLabel("<b>Precise Point Positioning (Processed Stations)</b>"));
[5689]845 pppLayout2->addWidget(_pppWidgets._staTable, 99);
[5704]846 QHBoxLayout* pppLayout2sub = new QHBoxLayout();
847 pppLayout2sub->addWidget(_pppWidgets._addStaButton);
848 pppLayout2sub->addWidget(_pppWidgets._delStaButton);
[5705]849 pppLayout2sub->addStretch(99);
850
[5704]851 pppLayout2->addLayout(pppLayout2sub);
[5686]852
853 pppGroup2->setLayout(pppLayout2);
854
[5690]855 QGridLayout* pppLayout3 = new QGridLayout();
856 ir = 0;
[5699]857 pppLayout3->addWidget(new QLabel("<b>Precise Point Positioning (Options)</b>"), ir, 0, 1, 2, Qt::AlignLeft);
[5690]858 ++ir;
859 pppLayout3->addWidget(new QLabel("GPS LCs"), ir, 0, Qt::AlignLeft);
860 pppLayout3->addWidget(_pppWidgets._lcGPS, ir, 1);
861 pppLayout3->addItem(new QSpacerItem(4*ww, 0), ir, 2);
862 pppLayout3->addWidget(new QLabel("Sigma C1"), ir, 3, Qt::AlignLeft);
863 pppLayout3->addWidget(_pppWidgets._sigmaC1, ir, 4); _pppWidgets._sigmaC1->setMaximumWidth(8*ww);
864 pppLayout3->addWidget(new QLabel("Sigma L1"), ir, 5, Qt::AlignLeft);
865 pppLayout3->addWidget(_pppWidgets._sigmaL1, ir, 6); _pppWidgets._sigmaL1->setMaximumWidth(8*ww);
866 ++ir;
867 pppLayout3->addWidget(new QLabel("GLONASS LCs"), ir, 0, Qt::AlignLeft);
868 pppLayout3->addWidget(_pppWidgets._lcGLONASS, ir, 1);
869 ++ir;
870 pppLayout3->addWidget(new QLabel("Galileo LCs"), ir, 0, Qt::AlignLeft);
871 pppLayout3->addWidget(_pppWidgets._lcGalileo, ir, 1);
872 ++ir;
873 pppLayout3->addWidget(new QLabel("Wait for corrections"), ir, 0, Qt::AlignLeft);
874 pppLayout3->addWidget(_pppWidgets._corrWaitTime, ir, 1);
[5691]875 ++ir;
876 pppLayout3->addWidget(new QLabel(""), ir, 0);
[5690]877
878 pppGroup3->setLayout(pppLayout3);
879
[5861]880 // ------------------------
881 QVBoxLayout* pppLayout4 = new QVBoxLayout;
[5893]882 pppLayout4->addWidget(new QLabel("<b>Precise Point Positioning (Plots)</b>"));
[5861]883 pppLayout4->addSpacing(ww);
884
885 QHBoxLayout* pppLayout4Hlp1 = new QHBoxLayout;
886 _pppPlotCoordinates = new QCheckBox();
887 _pppPlotCoordinates->setCheckState(Qt::CheckState(settings.value("pppPlotCoordinates").toInt()));
888 pppLayout4Hlp1->addWidget(new QLabel("PPP Plot "));
889 pppLayout4Hlp1->addWidget(_pppPlotCoordinates);
890 pppLayout4Hlp1->addWidget(new QLabel("Nort-East-Up Time Series"));
891 pppLayout4Hlp1->addStretch();
892 pppLayout4->addLayout(pppLayout4Hlp1);
893 pppLayout4->addSpacing(ww);
894
895 QHBoxLayout* pppLayout4Hlp2 = new QHBoxLayout;
896 pppLayout4Hlp2->addWidget(new QLabel("Track Plot "));
897 _mapWinButton = new QPushButton;
898 _mapWinButton->setText("Open Map");
899 connect(_mapWinButton, SIGNAL(clicked()), SLOT(slotMapPPP()));
900 pppLayout4Hlp2->addWidget(_mapWinButton);
901
902 pppLayout4Hlp2->addSpacing(1*ww);
903
904 _gmRadioButton = new QRadioButton;
905 _gmRadioButton->setChecked(!settings.value("useOsmMap").toBool());
906 pppLayout4Hlp2->addWidget(new QLabel("Google"));
907 pppLayout4Hlp2->addWidget(_gmRadioButton);
908
909 _osmRadioButton = new QRadioButton;
910 _osmRadioButton->setChecked(settings.value("useOsmMap").toBool());
911 pppLayout4Hlp2->addWidget(new QLabel("OSM"));
912 pppLayout4Hlp2->addWidget(_osmRadioButton);
913
914 pppLayout4Hlp2->addSpacing(3*ww);
915
916 _mapWinDotSizeLineEdit = new QLineEdit(settings.value("mapWinDotSize").toString());
917 pppLayout4Hlp2->addWidget(new QLabel("Dot Size"));
918 _mapWinDotSizeLineEdit->setMaximumWidth(5*ww);
919 pppLayout4Hlp2->addWidget(_mapWinDotSizeLineEdit);
920
921 pppLayout4Hlp2->addSpacing(3*ww);
922
923 _mapWinDotColorComboBox = new QComboBox();
924 pppLayout4Hlp2->addWidget(new QLabel("Dot Color"));
925 _mapWinDotColorComboBox->setEditable(false);
926 _mapWinDotColorComboBox->addItems(QString("red,yellow").split(","));
927 ii = _mapWinDotColorComboBox->findText(settings.value("mapWinDotColor").toString());
928 if (ii != -1) {
929 _mapWinDotColorComboBox->setCurrentIndex(ii);
930 }
931 pppLayout4Hlp2->addWidget(_mapWinDotColorComboBox);
932
933 pppLayout4Hlp2->addSpacing(3*ww);
934
935 _mapSpeedSlider = new QSlider;
936 _mapSpeedSlider->setOrientation(Qt::Horizontal);
937 _mapSpeedSlider->setRange(1, 100);
938 _mapSpeedSlider->setTickPosition(QSlider::TicksBelow);
939 _mapSpeedSlider->setTickInterval(10);
940 int speed = settings.value("mapSpeed").toInt();
941 if (speed == 0) speed = _mapSpeedSlider->maximum();
942 _mapSpeedSlider->setSliderPosition(speed);
943 pppLayout4Hlp2->addWidget(new QLabel("Speed"));
944 pppLayout4Hlp2->addWidget(_mapSpeedSlider);
945
946 pppLayout4Hlp2->addStretch();
947 pppLayout4->addLayout(pppLayout4Hlp2);
948
949 pppLayout4->addStretch();
950 pppGroup4->setLayout(pppLayout4);
951
[3897]952 // Reqc Processing
[3729]953 // ---------------
[3897]954 _reqcActionComboBox = new QComboBox();
955 _reqcActionComboBox->setEditable(false);
956 _reqcActionComboBox->addItems(QString(",Edit/Concatenate,Analyze").split(","));
[5861]957 int ik = _reqcActionComboBox->findText(settings.value("reqcAction").toString());
[3731]958 if (ik != -1) {
[3897]959 _reqcActionComboBox->setCurrentIndex(ik);
[3731]960 }
[3897]961 connect(_reqcActionComboBox, SIGNAL(currentIndexChanged(const QString &)),
[3739]962 this, SLOT(slotBncTextChanged()));
[3729]963
[3897]964 QGridLayout* reqcLayout = new QGridLayout;
965 _reqcActionComboBox->setMinimumWidth(15*ww);
966 _reqcActionComboBox->setMaximumWidth(15*ww);
[3612]967
[3897]968 _reqcObsFileChooser = new qtFileChooser(0, qtFileChooser::Files);
969 _reqcObsFileChooser->setFileName(settings.value("reqcObsFile").toString());
970 _reqcObsFileChooser->setWhatsThis(tr("Specify the full path to an observation file in RINEX v2 or v3 format."));
971 _reqcObsFileChooser->setMinimumWidth(15*ww);
972 _reqcObsFileChooser->setMaximumWidth(15*ww);
[3612]973
[3897]974 _reqcNavFileChooser = new qtFileChooser(0, qtFileChooser::Files);
975 _reqcNavFileChooser->setFileName(settings.value("reqcNavFile").toString());
976 _reqcNavFileChooser->setWhatsThis(tr("Specify the full path to a RINEX v2 or v3 navigation file."));
977 _reqcNavFileChooser->setMinimumWidth(15*ww);
978 _reqcNavFileChooser->setMaximumWidth(15*ww);
[3602]979
[3897]980 _reqcOutObsLineEdit = new QLineEdit(settings.value("reqcOutObsFile").toString());
[4530]981 _reqcOutObsLineEdit->setWhatsThis(tr("Specify the full path to a RINEX observation output file."));
[3897]982 _reqcOutObsLineEdit->setMinimumWidth(15*ww);
983 _reqcOutObsLineEdit->setMaximumWidth(15*ww);
[2473]984
[3897]985 _reqcOutNavLineEdit = new QLineEdit(settings.value("reqcOutNavFile").toString());
[4530]986 _reqcOutNavLineEdit->setWhatsThis(tr("Specify the full path to a RINEX navigation output file."));
[3897]987 _reqcOutNavLineEdit->setMinimumWidth(15*ww);
988 _reqcOutNavLineEdit->setMaximumWidth(15*ww);
[3823]989
[3897]990 _reqcOutLogLineEdit = new QLineEdit(settings.value("reqcOutLogFile").toString());
[4530]991 _reqcOutLogLineEdit->setWhatsThis(tr("Specify the full path to a logfile."));
[3897]992 _reqcOutLogLineEdit->setMinimumWidth(15*ww);
993 _reqcOutLogLineEdit->setMaximumWidth(15*ww);
[3823]994
[4449]995 _reqcPlotDirLineEdit = new QLineEdit(settings.value("reqcPlotDir").toString());
[4530]996 _reqcPlotDirLineEdit->setWhatsThis(tr("Specify the directory name for saving plots."));
[4449]997 _reqcPlotDirLineEdit->setMinimumWidth(15*ww);
998 _reqcPlotDirLineEdit->setMaximumWidth(15*ww);
999
[5144]1000 _reqcSkyPlotSystems = new QComboBox();
1001 _reqcSkyPlotSystems->setEditable(false);
1002 _reqcSkyPlotSystems->addItems(QString("ALL,GPS,GLONASS,Galileo").split(","));
1003 ik = _reqcSkyPlotSystems->findText(settings.value("reqcSkyPlotSystems").toString());
1004 if (ik != -1) {
1005 _reqcSkyPlotSystems->setCurrentIndex(ik);
1006 }
1007
[3738]1008 ir = 0;
[3904]1009 reqcLayout->addWidget(new QLabel("RINEX file editing, concatenation and quality check."),ir, 0, 1, 20);
[3768]1010 ++ir;
[3897]1011 reqcLayout->addWidget(new QLabel("Action"), ir, 0, Qt::AlignLeft);
1012 reqcLayout->addWidget(_reqcActionComboBox, ir, 1, Qt::AlignLeft);
1013 _reqcEditOptionButton = new QPushButton("Set Edit Options");
1014 reqcLayout->addWidget(_reqcEditOptionButton, ir, 3, Qt::AlignRight);
[3738]1015 ++ir;
[3897]1016 reqcLayout->addWidget(new QLabel("Input files (full path)"), ir, 0, Qt::AlignLeft);
1017 reqcLayout->addWidget(_reqcObsFileChooser, ir, 1, Qt::AlignRight);
1018 reqcLayout->addWidget(new QLabel("Obs"), ir, 2, Qt::AlignLeft);
1019 reqcLayout->addWidget(_reqcNavFileChooser, ir, 3, Qt::AlignRight);
1020 reqcLayout->addWidget(new QLabel("Nav"), ir, 4, Qt::AlignLeft);
[3738]1021 ++ir;
[3897]1022 reqcLayout->addWidget(new QLabel("Output files (full path)"), ir, 0, Qt::AlignLeft);
1023 reqcLayout->addWidget(_reqcOutObsLineEdit, ir, 1, Qt::AlignRight);
1024 reqcLayout->addWidget(new QLabel("Obs"), ir, 2, Qt::AlignLeft);
1025 reqcLayout->addWidget(_reqcOutNavLineEdit, ir, 3, Qt::AlignRight);
1026 reqcLayout->addWidget(new QLabel("Nav"), ir, 4, Qt::AlignLeft);
[3768]1027 ++ir;
[3897]1028 reqcLayout->addWidget(_reqcOutLogLineEdit, ir, 1, Qt::AlignRight);
1029 reqcLayout->addWidget(new QLabel("Log"), ir, 2, Qt::AlignLeft);
[3768]1030 ++ir;
[4460]1031 reqcLayout->addWidget(new QLabel("Directory for plots"), ir, 0, Qt::AlignLeft);
[4449]1032 reqcLayout->addWidget(_reqcPlotDirLineEdit, ir, 1, Qt::AlignRight);
1033 ++ir;
[5147]1034 reqcLayout->addWidget(new QLabel("Sky plots for"), ir, 0, Qt::AlignLeft);
[5145]1035 reqcLayout->addWidget(_reqcSkyPlotSystems, ir, 1, Qt::AlignRight);
1036 ++ir;
[3897]1037 reqcLayout->addWidget(new QLabel(""), ir, 1);
1038 reqcLayout->setRowStretch(ir, 999);
[2876]1039
[3897]1040 reqcLayout->setColumnMinimumWidth(2, 8*ww);
1041 reqcLayout->setColumnMinimumWidth(4, 8*ww);
[3823]1042
[3897]1043 reqcgroup->setLayout(reqcLayout);
[3731]1044
[3897]1045 connect(_reqcEditOptionButton, SIGNAL(clicked()),
1046 this, SLOT(slotReqcEditOption()));
[3740]1047
[4185]1048 // Combine Corrections
1049 // -------------------
[2868]1050 QGridLayout* cmbLayout = new QGridLayout;
1051
[3731]1052 populateCmbTable();
[4106]1053 cmbLayout->addWidget(_cmbTable, 0, 0, 6, 3);
1054 cmbLayout->addWidget(new QLabel(" "), 0, 5);
1055 cmbLayout->addWidget(new QLabel("Combine Broadcast Correction streams."), 0, 6, 1, 50);
1056 cmbLayout->addWidget(new QLabel(" "), 1, 5);
1057 cmbLayout->addWidget(addCmbRowButton, 1, 6);
1058 cmbLayout->addWidget(delCmbRowButton, 1, 7);
1059 cmbLayout->addWidget(new QLabel(" "), 2, 5);
1060 cmbLayout->addWidget(new QLabel("Method"), 2, 6, Qt::AlignRight);
1061 cmbLayout->addWidget(_cmbMethodComboBox, 2, 7, Qt::AlignRight);
1062 cmbLayout->addWidget(new QLabel(" "), 3, 5);
1063 cmbLayout->addWidget(new QLabel("Maximal Residuum"), 3, 6, Qt::AlignRight);
1064 cmbLayout->addWidget(_cmbMaxresLineEdit, 3, 7, Qt::AlignRight);
[4180]1065 cmbLayout->addWidget(new QLabel(" "), 4, 5);
1066 cmbLayout->addWidget(new QLabel("Sampling"), 4, 6, Qt::AlignRight);
1067 cmbLayout->addWidget(_cmbSamplSpinBox, 4, 7, Qt::AlignRight);
1068 cmbLayout->addWidget(new QLabel(" "), 5, 0);
[3729]1069
[2869]1070 connect(addCmbRowButton, SIGNAL(clicked()), this, SLOT(slotAddCmbRow()));
1071 connect(delCmbRowButton, SIGNAL(clicked()), this, SLOT(slotDelCmbRow()));
[2868]1072
1073 cmbgroup->setLayout(cmbLayout);
1074
[3241]1075 // Upload Layout (Clocks)
1076 // ----------------------
[3193]1077 QGridLayout* uploadHlpLayout = new QGridLayout();
[3152]1078
[3164]1079 connect(addUploadRowButton, SIGNAL(clicked()), this, SLOT(slotAddUploadRow()));
1080 connect(delUploadRowButton, SIGNAL(clicked()), this, SLOT(slotDelUploadRow()));
1081 connect(setUploadTrafoButton, SIGNAL(clicked()), this, SLOT(slotSetUploadTrafo()));
[3160]1082
[4175]1083 uploadHlpLayout->addWidget(addUploadRowButton, 0, 0);
1084 uploadHlpLayout->addWidget(delUploadRowButton, 0, 1);
1085 uploadHlpLayout->addWidget(new QLabel("Interval"), 0, 2, Qt::AlignRight);
1086 uploadHlpLayout->addWidget(_uploadIntrComboBox, 0, 3);
1087 uploadHlpLayout->addWidget(new QLabel(" Sampling: Orb"), 0, 4, Qt::AlignRight);
1088 uploadHlpLayout->addWidget(_uploadSamplRtcmEphCorrSpinBox, 0, 5);
1089 uploadHlpLayout->addWidget(new QLabel("SP3"), 0, 6, Qt::AlignRight);
1090 uploadHlpLayout->addWidget(_uploadSamplSp3SpinBox, 0, 7);
1091 uploadHlpLayout->addWidget(new QLabel("RNX"), 0, 8, Qt::AlignRight);
1092 uploadHlpLayout->addWidget(_uploadSamplClkRnxSpinBox, 0, 9);
1093 uploadHlpLayout->addWidget(setUploadTrafoButton, 0,10);
[3197]1094
[3193]1095 QBoxLayout* uploadLayout = new QBoxLayout(QBoxLayout::TopToBottom);
1096 populateUploadTable();
[3767]1097
[4186]1098 uploadLayout->addWidget(new QLabel("Upload RTCMv3 Broadcast Corrections to caster."));
[3193]1099 uploadLayout->addWidget(_uploadTable);
1100 uploadLayout->addLayout(uploadHlpLayout);
[3152]1101
[3164]1102 uploadgroup->setLayout(uploadLayout);
[3152]1103
[3241]1104 // Upload Layout (Ephemeris)
1105 // -------------------------
1106 QGridLayout* uploadLayoutEph = new QGridLayout;
1107
1108 uploadLayoutEph->setColumnMinimumWidth(0, 9*ww);
1109 _uploadEphPortLineEdit->setMaximumWidth(9*ww);
1110 _uploadEphPasswordLineEdit->setMaximumWidth(9*ww);
1111 _uploadEphMountpointLineEdit->setMaximumWidth(12*ww);
1112
[3779]1113 uploadLayoutEph->addWidget(new QLabel("Upload concatenated RTCMv3 Broadcast Ephemeris to caster."), 0, 0, 1, 50);
[3768]1114 uploadLayoutEph->addWidget(new QLabel("Host"), 1, 0);
1115 uploadLayoutEph->addWidget(_uploadEphHostLineEdit, 1, 1, 1, 3);
1116 uploadLayoutEph->addWidget(new QLabel(" Port"), 1, 4, Qt::AlignRight);
1117 uploadLayoutEph->addWidget(_uploadEphPortLineEdit, 1, 5, 1, 1);
1118 uploadLayoutEph->addWidget(new QLabel("Mountpoint "), 2, 0);
1119 uploadLayoutEph->addWidget(_uploadEphMountpointLineEdit, 2, 1);
1120 uploadLayoutEph->addWidget(new QLabel(" Password"), 2, 2, Qt::AlignRight);
1121 uploadLayoutEph->addWidget(_uploadEphPasswordLineEdit, 2, 3);
1122 uploadLayoutEph->addWidget(new QLabel("Sampling"), 3, 0);
1123 uploadLayoutEph->addWidget(_uploadEphSampleSpinBox, 3, 1);
1124 uploadLayoutEph->addWidget(new QLabel("Uploaded"), 4, 0);
1125 uploadLayoutEph->addWidget(_uploadEphBytesCounter, 4, 1);
1126 uploadLayoutEph->addWidget(new QLabel(" "), 5, 0);
1127 uploadLayoutEph->addWidget(new QLabel(" "), 6, 0);
[3241]1128
[3731]1129 uploadEphgroup->setLayout(uploadLayoutEph);
[3241]1130
1131 connect(_uploadEphHostLineEdit, SIGNAL(textChanged(const QString &)),
1132 this, SLOT(slotBncTextChanged()));
1133
[1678]1134 // Main Layout
1135 // -----------
[1409]1136 QGridLayout* mLayout = new QGridLayout;
[1925]1137 _aogroup->setCurrentIndex(settings.value("startTab").toInt());
[1926]1138 mLayout->addWidget(_aogroup, 0,0);
[1409]1139 mLayout->addWidget(_mountPointsTable, 1,0);
[1947]1140 _loggroup->setCurrentIndex(settings.value("statusTab").toInt());
[1926]1141 mLayout->addWidget(_loggroup, 2,0);
[106]1142
[679]1143 _canvas->setLayout(mLayout);
[1333]1144
[3731]1145 // WhatsThis
1146 // ---------
1147 _proxyHostLineEdit->setWhatsThis(tr("<p>If you are running BNC within a protected Local Area Network (LAN), you might need to use a proxy server to access the Internet. Enter your proxy server IP and port number in case one is operated in front of BNC. If you do not know the IP and port of your proxy server, check the proxy server settings in your Internet browser or ask your network administrator.</p><p>Note that IP streaming is sometimes not allowed in a LAN. In this case you need to ask your network administrator for an appropriate modification of the local security policy or for the installation of a TCP relay to the NTRIP broadcasters. If these are not possible, you might need to run BNC outside your LAN on a network that has unobstructed connection to the Internet.</p>"));
1148 _proxyPortLineEdit->setWhatsThis(tr("<p>Enter your proxy server port number in case a proxy is operated in front of BNC.</p>"));
1149 _sslCaCertPathLineEdit->setWhatsThis(tr("<p>Communication with an NTRIP broadcaster over SSL requires the exchange of client and/or server certificates. Specify the path to a directory where you save certificates on your system. Don't try communication via SSL if you are not sure wheter this is supported by the involved NTRIP broadcaster. Note that SSL communication is usually done over port 443.</p>"));
1150 _ignoreSslErrorsCheckBox->setWhatsThis(tr("<p>SSL communication may involve queries coming from the NTRIP broadcaster. Tick 'Ignore SSL authorization erros' if you don't want to be bothered with this.</p>"));
[4202]1151 _waitTimeSpinBox->setWhatsThis(tr("<p>When feeding a real-time GNSS network engine waiting for synchronized input epoch by epoch, BNC drops whatever is received later than 'Wait for full obs epoch' seconds. A value of 3 to 5 seconds is recommended, depending on the latency of the incoming streams and the delay acceptable to your real-time GNSS network engine or products.</p>"));
[3731]1152 _outFileLineEdit->setWhatsThis(tr("Specify the full path to a file where synchronized observations are saved in plain ASCII format. Beware that the size of this file can rapidly increase depending on the number of incoming streams."));
1153 _outPortLineEdit->setWhatsThis(tr("BNC can produce synchronized observations in a plain ASCII format on your local host through an IP port. Specify a port number here to activate this function."));
1154 _outUPortLineEdit->setWhatsThis(tr("BNC can produce unsynchronized observations in a plain ASCII format on your local host through an IP port. Specify a port number here to activate this function."));
1155 _outEphPortLineEdit->setWhatsThis(tr("BNC can produce ephemeris data in RINEX ASCII format on your local host through an IP port. Specify a port number here to activate this function."));
1156 _corrPortLineEdit->setWhatsThis(tr("BNC can produce Broadcast Ephemeris Corrections on your local host through an IP port. Specify a port number here to activate this function."));
[4202]1157 _corrTimeSpinBox->setWhatsThis(tr("<p>Concerning output through IP port, BNC drops Broadcast Ephemeris Corrections received later than 'Wait for full corr epoch' seconds. A value of 2 to 5 seconds is recommended, depending on the latency of the incoming correction stream(s) and the delay acceptable to your real-time application.</p><p>Specifying a value of '0' means that BNC immediately outputs all incoming Broadcast Epemeris Corrections and does not drop any of them for latency reasons.</p>"));
[3731]1158 _rnxPathLineEdit->setWhatsThis(tr("Here you specify the path to where the RINEX Observation files will be stored. If the specified directory does not exist, BNC will not create RINEX Observation files."));
1159 _ephPathLineEdit->setWhatsThis(tr("Specify the path for saving Broadcast Ephemeris data as RINEX Navigation files. If the specified directory does not exist, BNC will not create RINEX Navigation files."));
1160 _corrPathLineEdit->setWhatsThis(tr("Specify a directory for saving Broadcast Ephemeris Correction files. If the specified directory does not exist, BNC will not create the files."));
1161 _rnxScrpLineEdit->setWhatsThis(tr("<p>Whenever a RINEX Observation file is saved, you might want to compress, copy or upload it immediately via FTP. BNC allows you to execute a script/batch file to carry out these operations. To do that specify the full path of the script/batch file here. BNC will pass the full RINEX Observation file path to the script as a command line parameter (%1 on Windows systems, $1 onUnix/Linux systems).</p>"));
1162 _rnxSkelLineEdit->setWhatsThis(tr("<p>BNC allows using personal skeleton files that contain the header records you would like to include. You can derive a personal RINEX header skeleton file from the information given in an up to date sitelog.</p><p>A file in the RINEX Observations 'Directory' with a 'Skeleton extension' suffix is interpreted by BNC as a personal RINEX header skeleton file for the corresponding stream.</p>"));
1163 _rnxAppendCheckBox->setWhatsThis(tr("<p>When BNC is started, new files are created by default and any existing files with the same name will be overwritten. However, users might want to append already existing files following a restart of BNC, a system crash or when BNC crashed. Tick 'Append files' to continue with existing files and keep what has been recorded so far.</p>"));
1164 _autoStartCheckBox->setWhatsThis(tr("<p>Tick 'Auto start' for auto-start of BNC at startup time in window mode with preassigned processing options.</p>"));
1165 _rawOutFileLineEdit->setWhatsThis(tr("<p>Save all data coming in through various streams in the received order and format in one file.</p>"));
[4537]1166 _onTheFlyComboBox->setWhatsThis(tr("<p>When operating BNC online in 'no window' mode, some configuration parameters can be changed on-the-fly without interrupting the running process. For that BNC rereads parts of its configuration in pre-defined intervals.<p></p>Select '1 min', '5 min', '1 hour', or '1 day' to force BNC to reread its configuration every full minute, hour, or day and let in between edited configuration options become effective on-the-fly without terminating uninvolved threads.</p><p>Note that when operating BNC in window mode, on-the-fly changeable configuration options become effective immediately through 'Save & Reread Configuration'.</p>"));
[3731]1167 _rnxIntrComboBox->setWhatsThis(tr("<p>Select the length of the RINEX Observation file.</p>"));
1168 _ephIntrComboBox->setWhatsThis(tr("<p>Select the length of the RINEX Navigation file.</p>"));
1169 _corrIntrComboBox->setWhatsThis(tr("<p>Select the length of the Broadcast Ephemeris Correction files.</p>"));
1170 _rnxSamplSpinBox->setWhatsThis(tr("<p>Select the RINEX Observation sampling interval in seconds. A value of zero '0' tells BNC to store all received epochs into RINEX.</p>"));
1171 _binSamplSpinBox->setWhatsThis(tr("<p>Select the synchronized observation sampling interval in seconds. A value of zero '0' tells BNC to send/store all received epochs.</p>"));
1172 _obsRateComboBox->setWhatsThis(tr("<p>BNC can collect all returns (success or failure) coming from a decoder within a certain short time span to then decide whether a stream has an outage or its content is corrupted. The procedure needs a rough estimate of the expected 'Observation rate' of the incoming streams. When a continuous problem is detected, BNC can inform its operator about this event through an advisory note.</p>"));
1173 _adviseRecoSpinBox->setWhatsThis(tr("<p>Following a stream outage or a longer series of bad observations, an advisory note is generated when valid observations are received again throughout the 'Recovery threshold' time span. A value of about 5min (default) is recommended.</p><p>A value of zero '0' means that for any stream recovery, however short, BNC immediately generates an advisory note.</p>"));
1174 _adviseFailSpinBox->setWhatsThis(tr("<p>An advisory note is generated when no (or only corrupted) observations are seen throughout the 'Failure threshold' time span. A value of 15 min (default) is recommended.</p><p>A value of zero '0' means that for any stream failure, however short, BNC immediately generates an advisory note.</p>"));
1175 _logFileLineEdit->setWhatsThis(tr("<p>Records of BNC's activities are shown in the 'Log' tab on the bottom of this window. They can be saved into a file when a valid path is specified in the 'Logfile (full path)' field.</p><p>The logfile name will automatically be extended by a string '_YYMMDD' carrying the current date."));
1176 _adviseScriptLineEdit->setWhatsThis(tr("<p>Specify the full path to a script or batch file to handle advisory notes generated in the event of corrupted streams or stream outages. The affected mountpoint and one of the comments 'Begin_Outage', 'End_Outage', 'Begin_Corrupted', or 'End_Corrupted' are passed on to the script as command line parameters.</p><p>The script may have the task to send the advisory notes by email to BNC's operator and/or to the affected stream provider. An empty option field (default) or invalid path means that you don't want to use this option.</p>"));
1177 _perfIntrComboBox->setWhatsThis(tr("<p>BNC can average latencies per stream over a certain period of GPS time. The resulting mean latencies are recorded in the 'Log' tab at the end of each 'Log latency' interval together with results of a statistical evaluation (approximate number of covered epochs, data gaps).</p><p>Select a 'Log latency' interval or select the empty option field if you do not want BNC to log latencies and statistical information.</p>"));
[3820]1178 _mountPointsTable->setWhatsThis(tr("<p>Streams selected for retrieval are listed in the 'Streams' section. Clicking on 'Add Stream' button will open a window that allows the user to select data streams from an NTRIP broadcaster according to their mountpoints. To remove a stream from the 'Streams' list, highlight it by clicking on it and hit the 'Delete Stream' button. You can also remove multiple streams by highlighting them using +Shift and +Ctrl.</p><p>BNC automatically allocates one of its internal decoders to a stream based on the stream's 'format' as given in the sourcetable. BNC allows users to change this selection by editing the decoder string. Double click on the 'decoder' field, enter your preferred decoder and then hit Enter. The accepted decoder strings are 'RTCM_2.x', 'RTCM_3.x' and 'RTNET'.</p><p>In case you need to log the raw data as is, BNC allows users to by-pass its decoders and directly save the input in daily log files. To do this specify the decoder string as 'ZERO'.</p><p>BNC can also retrieve streams from virtual reference stations (VRS). VRS streams are indicated by a 'yes' in the 'nmea' column. To initiate these streams, the approximate latitude/longitude rover position is sent to the NTRIP broadcaster. The default values can be change according to your requirement. Double click on 'lat' and 'long' fields, enter the values you wish to send and then hit Enter.</p>"));
[3731]1179 _log->setWhatsThis(tr("Records of BNC's activities are shown in the 'Log' tab. The message log covers the communication status between BNC and the NTRIP broadcaster as well as any problems that occur in the communication link, stream availability, stream delay, stream conversion etc."));
1180 _bncFigure->setWhatsThis(tr("The bandwidth consumtion per stream is shown in the 'Throughput' tab in bits per second (bps) or kilo bits per second (kbps)."));
1181 _bncFigureLate->setWhatsThis(tr("The individual latency of observations in each incoming stream is shown in the 'Latency' tab. Streams not carrying observations (i.e. those providing only broadcast ephemeris messages) are not considered here. Note that the calculation of correct latencies requires the clock of the host computer to be properly synchronized."));
[5376]1182 _ephV3CheckBox->setWhatsThis(tr("The default format for output of RINEX Navigation data containing Broadcast Ephemeris is RINEX Version 2. Select 'Version 3' if you want to output the ephemeris in RINEX Version 3 format."));
1183 _rnxV3CheckBox->setWhatsThis(tr("The default format for RINEX Observation files is RINEX Version 2. Select 'Version 3' if you want to save the observations in RINEX Version 3 format."));
[3731]1184 _miscMountLineEdit->setWhatsThis(tr("<p>Specify a mountpoint to apply any of the options shown below. Enter 'ALL' if you want to apply these options to all configured streams.</p><p>An empty option field (default) means that you don't want BNC to apply any of these options.</p>"));
[5652]1185 _miscPortLineEdit->setWhatsThis(tr("BNC can output an incoming stream through a TCP/IP port of your local host. Specify a port number here to activate this function."));
[4509]1186 _scanRTCMCheckBox->setWhatsThis(tr("<p>Tick 'Scan RTCM' to log the numbers of incomming message types as well as contained antenna coordinates, antenna heigt, and antenna descriptor.</p><p>In case of RTCM Version 3 MSM streams, BNC will also log contained RINEX Version 3 observation types.</p>."));
[3731]1187 _serialMountPointLineEdit->setWhatsThis(tr("<p>Enter a 'Mountpoint' to forward the corresponding stream to a serial connected receiver.</p>"));
1188 _serialPortNameLineEdit->setWhatsThis(tr("<p>Enter the serial 'Port name' selected for communication with your serial connected receiver. Valid port names are</p><pre>Windows: COM1, COM2<br>Linux: /dev/ttyS0, /dev/ttyS1<br>FreeBSD: /dev/ttyd0, /dev/ttyd1<br>Digital Unix: /dev/tty01, /dev/tty02<br>HP-UX: /dev/tty1p0, /dev/tty2p0<br>SGI/IRIX: /dev/ttyf1, /dev/ttyf2<br>SunOS/Solaris: /dev/ttya, /dev/ttyb</pre><p>Note that you must plug a serial cable in the port defined here before you start BNC.</p>"));
1189 _serialBaudRateComboBox->setWhatsThis(tr("<p>Select a 'Baud rate' for the serial output link.</p><p>Note that your selection must equal the baud rate configured to the serial connected receiver. Note further that using a high baud rate is recommended.</p>"));
1190 _serialParityComboBox->setWhatsThis(tr("<p>Select the 'Parity' for the serial output link.</p><p>Note that your selection must equal the parity selection configured to the serial connected receiver. Note further that parity is often set to 'NONE'.</p>"));
1191 _serialDataBitsComboBox->setWhatsThis(tr("<p>Select the number of 'Data bits' for the serial output link.</p><p>Note that your selection must equal the number of data bits configured to the serial connected receiver. Note further that often 8 data bits are used.</p>"));
1192 _serialStopBitsComboBox->setWhatsThis(tr("<p>Select the number of 'Stop bits' for the serial output link.</p><p>Note that your selection must equal the number of stop bits configured to the serial connected receiver. Note further that often 1 stop bit is used.</p>"));
1193 _serialFlowControlComboBox->setWhatsThis(tr("<p>Select a 'Flow control' for the serial output link.</p><p>Note that your selection must equal the flow control configured to the serial connected receiver. Select 'OFF' if you don't know better.</p>"));
1194 _serialAutoNMEAComboBox->setWhatsThis(tr("<p>Select 'Auto' to automatically forward NMEA-GGA messages coming from your serial connected receiver to the NTRIP broadcaster and/or save them in a file.</p><p>Select 'Manual' only when handling a VRS stream and your serial connected receiver doesn't generate NMEA-GGA messages.</p>"));
1195 _serialFileNMEALineEdit->setWhatsThis(tr("<p>Specify the full path to a file where NMEA messages coming from your serial connected receiver are saved.</p>"));
1196 _serialHeightNMEALineEdit->setWhatsThis(tr("<p>Specify an approximate 'Height' above mean sea level in meter for your VRS to simulate an inital NMEA-GGA message.</p><p>The setting of this option is ignored in case of streams coming from physical reference stations.</p>"));
[4530]1197 _reqcActionComboBox->setWhatsThis(tr("<p>BNC allows to edit or concatenate RINEX v2 or v3 files or to perform a quality check following UNAVCO's famous 'teqc' program.</p>"));
[3897]1198 _reqcEditOptionButton->setWhatsThis(tr("<p>Specify options for editing RINEX v2 or v3 files.</p>"));
[5300]1199 _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."));
[5276]1200 _gmRadioButton->setWhatsThis(tr("<p>Specify Google Maps as the background for your rover positions."));
1201 _osmRadioButton->setWhatsThis(tr("<p>Specify Open Street Map as the background for your rover positions."));
[5300]1202 _mapWinDotSizeLineEdit->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>"));
[5304]1203 _mapWinDotColorComboBox->setWhatsThis(tr("<p>Specify the color of dots showing the rover track.</p>"));
[5276]1204 _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."));
[3731]1205 _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."));
[4202]1206 _cmbTable->setWhatsThis(tr("<p>BNC allows to process several orbit and clock corrections streams in real-time to produce, encode, upload and save a combination of correctors coming from various providers. Hit the 'Add Row' button, double click on the 'Mountpoint' field to enter a Broadcast Ephemeris corrections mountpoint from the 'Streams' section below and hit Enter. Then double click on the 'AC Name' field to enter your choice of an abbreviation for the Analysis Center (AC) providing the stream. Finally, double click on the 'Weight' field to enter the weight to be applied for this stream in the combination.<ul><li>Note that an appropriate 'Wait for full corr epoch' value needs to be specified for the combination under the 'Broadcast Corrections' tab. A value of 15 seconds would make sense there if the update rate of incoming clock corrections is i.e. 10 seconds.</li><li>Note also that you need to tick 'Use GLONASS' which is part ot the 'PPP (2)' panel in case you want to produce an GPS plus GLONASS combination.</li></ul></p><p>Note further that the orbit information in the final combination stream is just copied from one of the incoming streams. The stream used for providing the orbits may vary over time: if the orbit providing stream has an outage then BNC switches to the next remaining stream for getting hold of the orbit information.</p><p>The combination process requires Broadcast Ephemeris. Besides the orbit and clock corrections stream(s) BNC should therefore pull a stream carrying Broadcast Ephemeris in the form of RTCM Version 3 messages.</p><p>It is possible to specify only one Broadcast Ephemeris corrections stream in the combination table. Instead of combining corrections BNC will then merge them with Broadcast Ephemeris to save results in SP3 and/or Clock RINEX format."));
[3731]1207 _cmbMaxresLineEdit->setWhatsThis(tr("<p>BNC combines all incoming clocks according to specified weights. Individual clock estimates that differ by more than 'Maximal Residuum' meters from the average of all clocks will be ignored.<p></p>It is suggested to specify a value of about 0.2 m for the Kalman filter combination approach and a value of about 3.0 meters for the Single-Epoch combination approach.</p><p>Default is a value of '999.0'.</p>"));
[4185]1208 _cmbSamplSpinBox->setWhatsThis(tr("<p>Specify a combination sampling interval. Clock and orbit corrections will be produced following that interval. A value of 10 sec may be an appropriate choice.</p>"));
[3731]1209 _cmbMethodComboBox->setWhatsThis(tr("<p>Select a clock combination approach. Options are 'Single-Epoch' and Kalman 'Filter'. It is suggested to use the Kalman filter approach for the purpose of Precise Point Positioning.</p>"));
[4185]1210 _uploadTable->setWhatsThis(tr("<p>BNC can upload clock and orbit corrections to broadcast ephemeris (Broadcast Corrections) in RTCM Version 3 SSR format. You may have a situation where clocks and orbits come from an external Real-time Network Engine (1) or a situation where clock and orbit corrections are combined within BNC (2).</p><p>(1) BNC identifies a stream as coming from a Real-time Network Engine if its format is specified as 'RTNET' and hence its decoder string in the 'Streams' canvas is 'RTNET'. It encodes and uploads that stream to the specified NTRIP broadcaster</p><p>(2) BNC understands that it is expected to encode and upload combined Broadcast Ephemeris corrections if you specify correction streams in the 'Combine Corrections' stream table.</p><p>Hit the 'Add Row' button, double click on the 'Host' field to enter the IP or URL of an NTRIP broadcaster and hit Enter. Then double click on the 'Port', 'Mount' and 'Password' fields to enter the NTRIP broadcaster IP port (default is 80), the mountpoint and the stream upload password. An empty 'Host' option field means that you don't want to upload corrections.</p><p>Select a target coordinate reference system (e.g. IGS08) for outgoing clock and orbit corrections.</p><p>By default orbit and clock corrections refer to Antenna Phase Center (APC). Tick 'CoM' to refer uploaded corrections to Center of Mass instead of APC.</p><p>Specify a path for saving the generated Broadcast Corrections plus Broadcast Ephemeris as SP3 orbit files. If the specified directory does not exist, BNC will not create SP3 orbit files. The following is a path example for a Linux system:<br>/home/user/BNC${GPSWD}.sp3<br>Note that '${GPSWD}' produces the GPS Week and Day number in the file name.</p><ul><li>As an SP3 file contents should be referred to the satellites Center of Mass (CoM) while correctors are referred to the satellites Antenna Phase Center (APC), an offset has to be applied which is available from an IGS ANTEX file. You should therefore specify the 'ANTEX File' path under tab 'PPP (2)' if you want to save the stream contents in SP3 format. If you don't specify an 'ANTEX File' path there, the SP3 file contents will be referred to the satellites APCs.</li></ul></p><p>Specify a path for saving the generated Broadcast Correction clocks plus Broadcast Ephemeris clocks as Clock RINEX files. If the specified directory does not exist, BNC will not create Clock RINEX files. The following is a path example for a Linux system:<br>/home/user/BNC${GPSWD}.clk<br>Note that '${GPSWD}' produces the GPS Week and Day number in the file name.</p><p>Specify finally an SSR Provider ID number, an SSR Solution ID number and an Issue of Data SSR number.</p><p>In case the 'Combine Corrections' table contains only one Broadcast Corrections stream, BNC will merge that stream with Broadcast Ephemeris to save results in files specified here through SP3 and/or Clock RINEX file path. In such a case you should define only the SP3 and Clock RINEX file path and no further options in the 'Upload Corrections' table.</p>"));
[3731]1211 addCmbRowButton->setWhatsThis(tr("Hit 'Add Row' button to add another line to the mountpoints table."));
1212 delCmbRowButton->setWhatsThis(tr("Hit 'Delete' button to delete the highlighted line from the mountpoints table."));
[3797]1213 addUploadRowButton->setWhatsThis(tr("Hit 'Add Row' button to add another line to the stream upload table."));
1214 delUploadRowButton->setWhatsThis(tr("Hit 'Del Row' button to delete the highlighted line from the stream upload table."));
1215 _uploadIntrComboBox->setWhatsThis(tr("Select the length of the SP3 and Clock RINEX files."));
[4237]1216 _uploadSamplRtcmEphCorrSpinBox->setWhatsThis(tr("Select the stream's orbit correction sampling interval in seconds. A value of zero '0' tells BNC to upload all available orbit and clock correction samples together in combined messages."));
[4172]1217 _uploadSamplClkRnxSpinBox->setWhatsThis(tr("Select the Clock RINEX file sampling interval in seconds. A value of zero '0' tells BNC to store all available samples into Clock RINEX files."));
[4173]1218 _uploadSamplSp3SpinBox->setWhatsThis(tr("Select the SP3 orbit file sampling interval in minutes. A value of zero '0' tells BNC to store all available samples into SP3 orbit files."));
[3797]1219 setUploadTrafoButton->setWhatsThis(tr("Hit 'Custom Trafo' to specify your own 14 parameter Helmert Transformation instead of selecting a predefined transformation through 'System' button."));
[3800]1220 _uploadEphHostLineEdit->setWhatsThis(tr("BNC can upload a Broadcast Ephemeris stream in RTCM Version 3 format. Specify the host IP of an NTRIP Broadcaster to upload the stream. An empty option field means that you don't want to upload Broadcast Ephemeris."));
1221 _uploadEphPortLineEdit->setWhatsThis(tr("Specify the IP port of an NTRIP Broadcaster to upload the stream. Default is port 80."));
1222 _uploadEphMountpointLineEdit->setWhatsThis(tr("Specify the mounpoint for stream upload to an NTRIP Broadcaster."));
1223 _uploadEphPasswordLineEdit->setWhatsThis(tr("Specify the stream upload password protecting the mounpoint on an NTRIP Broadcaster."));
1224 _uploadEphSampleSpinBox->setWhatsThis(tr("Select the Broadcast Ephemeris sampling interval in seconds. Defaut is '5' meaning that a complete set of Broadcast Ephemeris is uploaded every 5 seconds."));
1225 _uploadEphBytesCounter->setWhatsThis(tr("BNC shows the amount of data uploaded through this stream."));
[4655]1226 _actDeleteMountPoints->setWhatsThis(tr("<p>Delete stream(s) from selection presented in the 'Streams' canvas.</p>"));
1227 _actAddMountPoints->setWhatsThis(tr("<p>Add stream(s) to selection presented in the 'Streams' canvas.</p>"));
[5162]1228 _actMapMountPoints->setWhatsThis(tr("<p> Draw distribution map of stream selection presented in the 'Streams' canvas. Use the mouse to zoom in or out.</p><p>Left button: Draw rectangle to zoom in.<br>Right button: Zoom out.<br>Middle button: Zoom back.</p>"));
[4655]1229 _actStart->setWhatsThis(tr("<p> Start running BNC.</p>"));
1230 _actStop->setWhatsThis(tr("<p> Stop running BNC.</p>"));
1231// Weber
1232
[2129]1233 // Enable/Disable all Widgets
1234 // --------------------------
1235 slotBncTextChanged();
[3788]1236 enableStartStop();
[2129]1237
[1333]1238 // Auto start
1239 // ----------
1240 if ( Qt::CheckState(settings.value("autoStart").toInt()) == Qt::Checked) {
[3782]1241 slotStart();
[1333]1242 }
[35]1243}
1244
1245// Destructor
1246////////////////////////////////////////////////////////////////////////////
1247bncWindow::~bncWindow() {
[5729]1248 delete _caster; BNC_CORE->setCaster(0);
[3249]1249 delete _casterEph;
[5716]1250 delete _pppMain;
[35]1251}
1252
[1178]1253//
1254////////////////////////////////////////////////////////////////////////////
1255void bncWindow::populateMountPointsTable() {
1256
1257 for (int iRow = _mountPointsTable->rowCount()-1; iRow >=0; iRow--) {
1258 _mountPointsTable->removeRow(iRow);
1259 }
1260
[1535]1261 bncSettings settings;
[1178]1262
1263 QListIterator<QString> it(settings.value("mountPoints").toStringList());
1264 int iRow = 0;
1265 while (it.hasNext()) {
1266 QStringList hlp = it.next().split(" ");
1267 if (hlp.size() < 5) continue;
1268 _mountPointsTable->insertRow(iRow);
1269
1270 QUrl url(hlp[0]);
1271
1272 QString fullPath = url.host() + QString(":%1").arg(url.port()) + url.path();
1273 QString format(hlp[1]); QString latitude(hlp[2]); QString longitude(hlp[3]);
1274 QString nmea(hlp[4]);
[1738]1275 if (hlp[5] == "S") {
1276 fullPath = hlp[0].replace(0,2,"");
1277 }
[3333]1278 QString ntripVersion = "2";
[1352]1279 if (hlp.size() >= 6) {
1280 ntripVersion = (hlp[5]);
1281 }
[1178]1282
1283 QTableWidgetItem* it;
1284 it = new QTableWidgetItem(url.userInfo());
1285 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1286 _mountPointsTable->setItem(iRow, 0, it);
1287
1288 it = new QTableWidgetItem(fullPath);
1289 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1290 _mountPointsTable->setItem(iRow, 1, it);
1291
1292 it = new QTableWidgetItem(format);
1293 _mountPointsTable->setItem(iRow, 2, it);
1294
1295 if (nmea == "yes") {
1296 it = new QTableWidgetItem(latitude);
1297 _mountPointsTable->setItem(iRow, 3, it);
1298 it = new QTableWidgetItem(longitude);
1299 _mountPointsTable->setItem(iRow, 4, it);
1300 } else {
1301 it = new QTableWidgetItem(latitude);
1302 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1303 _mountPointsTable->setItem(iRow, 3, it);
1304 it = new QTableWidgetItem(longitude);
1305 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1306 _mountPointsTable->setItem(iRow, 4, it);
1307 }
1308
1309 it = new QTableWidgetItem(nmea);
1310 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1311 _mountPointsTable->setItem(iRow, 5, it);
1312
[1352]1313 it = new QTableWidgetItem(ntripVersion);
[1511]1314 //// it->setFlags(it->flags() & ~Qt::ItemIsEditable);
[1352]1315 _mountPointsTable->setItem(iRow, 6, it);
1316
[1178]1317 bncTableItem* bncIt = new bncTableItem();
1318 bncIt->setFlags(bncIt->flags() & ~Qt::ItemIsEditable);
[1352]1319 _mountPointsTable->setItem(iRow, 7, bncIt);
[1178]1320
1321 iRow++;
1322 }
1323
1324 _mountPointsTable->sortItems(1);
[3787]1325
1326 enableStartStop();
[1178]1327}
1328
[35]1329// Retrieve Table
1330////////////////////////////////////////////////////////////////////////////
1331void bncWindow::slotAddMountPoints() {
[101]1332
[1535]1333 bncSettings settings;
[101]1334 QString proxyHost = settings.value("proxyHost").toString();
1335 int proxyPort = settings.value("proxyPort").toInt();
1336 if (proxyHost != _proxyHostLineEdit->text() ||
1337 proxyPort != _proxyPortLineEdit->text().toInt()) {
[102]1338 int iRet = QMessageBox::question(this, "Question", "Proxy options "
[101]1339 "changed. Use the new ones?",
1340 QMessageBox::Yes, QMessageBox::No,
1341 QMessageBox::NoButton);
1342 if (iRet == QMessageBox::Yes) {
1343 settings.setValue("proxyHost", _proxyHostLineEdit->text());
1344 settings.setValue("proxyPort", _proxyPortLineEdit->text());
1345 }
1346 }
1347
[3367]1348 settings.setValue("sslCaCertPath", _sslCaCertPathLineEdit->text());
1349 settings.setValue("ignoreSslErrors", _ignoreSslErrorsCheckBox->checkState());
1350
[1609]1351 QMessageBox msgBox;
1352 msgBox.setIcon(QMessageBox::Question);
[1874]1353 msgBox.setWindowTitle("Add Stream");
[1609]1354 msgBox.setText("Add stream(s) coming from:");
1355
[1780]1356 QPushButton* buttonNtrip = msgBox.addButton(tr("Caster"), QMessageBox::ActionRole);
1357 QPushButton* buttonIP = msgBox.addButton(tr("TCP/IP port"), QMessageBox::ActionRole);
1358 QPushButton* buttonUDP = msgBox.addButton(tr("UDP port"), QMessageBox::ActionRole);
1359 QPushButton* buttonSerial = msgBox.addButton(tr("Serial port"), QMessageBox::ActionRole);
1360 QPushButton* buttonCancel = msgBox.addButton(tr("Cancel"), QMessageBox::ActionRole);
[1609]1361
1362 msgBox.exec();
1363
1364 if (msgBox.clickedButton() == buttonNtrip) {
[1737]1365 bncTableDlg* dlg = new bncTableDlg(this);
[1609]1366 dlg->move(this->pos().x()+50, this->pos().y()+50);
[1737]1367 connect(dlg, SIGNAL(newMountPoints(QStringList*)),
[35]1368 this, SLOT(slotNewMountPoints(QStringList*)));
[1609]1369 dlg->exec();
1370 delete dlg;
1371 } else if (msgBox.clickedButton() == buttonIP) {
[1737]1372 bncIpPort* ipp = new bncIpPort(this);
1373 connect(ipp, SIGNAL(newMountPoints(QStringList*)),
[1609]1374 this, SLOT(slotNewMountPoints(QStringList*)));
1375 ipp->exec();
1376 delete ipp;
[1780]1377 } else if (msgBox.clickedButton() == buttonUDP) {
1378 bncUdpPort* udp = new bncUdpPort(this);
1379 connect(udp, SIGNAL(newMountPoints(QStringList*)),
1380 this, SLOT(slotNewMountPoints(QStringList*)));
1381 udp->exec();
1382 delete udp;
[1737]1383 } else if (msgBox.clickedButton() == buttonSerial) {
1384 bncSerialPort* sep = new bncSerialPort(this);
1385 connect(sep, SIGNAL(newMountPoints(QStringList*)),
1386 this, SLOT(slotNewMountPoints(QStringList*)));
1387 sep->exec();
1388 delete sep;
[1609]1389 } else if (msgBox.clickedButton() == buttonCancel) {
1390 // Cancel
1391 }
[3787]1392
1393 enableStartStop();
[35]1394}
1395
1396// Delete Selected Mount Points
1397////////////////////////////////////////////////////////////////////////////
1398void bncWindow::slotDeleteMountPoints() {
[117]1399
1400 int nRows = _mountPointsTable->rowCount();
1401 bool flg[nRows];
1402 for (int iRow = 0; iRow < nRows; iRow++) {
[116]1403 if (_mountPointsTable->isItemSelected(_mountPointsTable->item(iRow,1))) {
[117]1404 flg[iRow] = true;
1405 }
1406 else {
1407 flg[iRow] = false;
1408 }
1409 }
1410 for (int iRow = nRows-1; iRow >= 0; iRow--) {
1411 if (flg[iRow]) {
[116]1412 _mountPointsTable->removeRow(iRow);
[83]1413 }
1414 }
1415 _actDeleteMountPoints->setEnabled(false);
[183]1416
[3787]1417 enableStartStop();
[35]1418}
1419
1420// New Mount Points Selected
1421////////////////////////////////////////////////////////////////////////////
1422void bncWindow::slotNewMountPoints(QStringList* mountPoints) {
1423 int iRow = 0;
1424 QListIterator<QString> it(*mountPoints);
1425 while (it.hasNext()) {
[59]1426 QStringList hlp = it.next().split(" ");
[110]1427 QUrl url(hlp[0]);
1428 QString fullPath = url.host() + QString(":%1").arg(url.port()) + url.path();
[366]1429 QString format(hlp[1]); QString latitude(hlp[2]); QString longitude(hlp[3]);
1430 QString nmea(hlp[4]);
[1738]1431 if (hlp[5] == "S") {
1432 fullPath = hlp[0].replace(0,2,"");
1433 }
[3333]1434 QString ntripVersion = "2";
[1352]1435 if (hlp.size() >= 6) {
1436 ntripVersion = (hlp[5]);
1437 }
[110]1438
[35]1439 _mountPointsTable->insertRow(iRow);
[110]1440
1441 QTableWidgetItem* it;
1442 it = new QTableWidgetItem(url.userInfo());
[115]1443 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
[110]1444 _mountPointsTable->setItem(iRow, 0, it);
1445
1446 it = new QTableWidgetItem(fullPath);
[115]1447 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
[110]1448 _mountPointsTable->setItem(iRow, 1, it);
1449
1450 it = new QTableWidgetItem(format);
1451 _mountPointsTable->setItem(iRow, 2, it);
[184]1452
[410]1453 if (nmea == "yes") {
[366]1454 it = new QTableWidgetItem(latitude);
1455 _mountPointsTable->setItem(iRow, 3, it);
1456 it = new QTableWidgetItem(longitude);
1457 _mountPointsTable->setItem(iRow, 4, it);
1458 } else {
1459 it = new QTableWidgetItem(latitude);
1460 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1461 _mountPointsTable->setItem(iRow, 3, it);
1462 it = new QTableWidgetItem(longitude);
1463 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1464 _mountPointsTable->setItem(iRow, 4, it);
1465 }
1466
1467 it = new QTableWidgetItem(nmea);
1468 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1469 _mountPointsTable->setItem(iRow, 5, it);
1470
[1352]1471 it = new QTableWidgetItem(ntripVersion);
1472 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1473 _mountPointsTable->setItem(iRow, 6, it);
1474
[184]1475 bncTableItem* bncIt = new bncTableItem();
[1352]1476 _mountPointsTable->setItem(iRow, 7, bncIt);
[184]1477
[35]1478 iRow++;
1479 }
[111]1480 _mountPointsTable->hideColumn(0);
[110]1481 _mountPointsTable->sortItems(1);
[35]1482 delete mountPoints;
[3787]1483
1484 enableStartStop();
[35]1485}
1486
[4076]1487// Save Options (serialize)
[35]1488////////////////////////////////////////////////////////////////////////////
1489void bncWindow::slotSaveOptions() {
[4076]1490 saveOptions();
1491 bncSettings settings;
1492 settings.sync();
1493}
[1504]1494
[4076]1495// Save Options (memory only)
1496////////////////////////////////////////////////////////////////////////////
1497void bncWindow::saveOptions() {
1498
[1504]1499 QStringList mountPoints;
1500 for (int iRow = 0; iRow < _mountPointsTable->rowCount(); iRow++) {
1501
[1739]1502 if (_mountPointsTable->item(iRow, 6)->text() != "S") {
1503 QUrl url( "//" + _mountPointsTable->item(iRow, 0)->text() +
1504 "@" + _mountPointsTable->item(iRow, 1)->text() );
1505
1506 mountPoints.append(url.toString() + " " +
1507 _mountPointsTable->item(iRow, 2)->text()
1508 + " " + _mountPointsTable->item(iRow, 3)->text()
1509 + " " + _mountPointsTable->item(iRow, 4)->text()
1510 + " " + _mountPointsTable->item(iRow, 5)->text()
1511 + " " + _mountPointsTable->item(iRow, 6)->text());
1512 } else {
1513 mountPoints.append(
1514 "//" + _mountPointsTable->item(iRow, 1)->text()
1515 + " " + _mountPointsTable->item(iRow, 2)->text()
1516 + " " + _mountPointsTable->item(iRow, 3)->text()
1517 + " " + _mountPointsTable->item(iRow, 4)->text()
1518 + " " + _mountPointsTable->item(iRow, 5)->text()
1519 + " " + _mountPointsTable->item(iRow, 6)->text());
1520 }
[1504]1521 }
1522
[2870]1523 QStringList combineStreams;
1524 for (int iRow = 0; iRow < _cmbTable->rowCount(); iRow++) {
1525 QString hlp;
1526 for (int iCol = 0; iCol < _cmbTable->columnCount(); iCol++) {
[2965]1527 if (_cmbTable->item(iRow, iCol)) {
1528 hlp += _cmbTable->item(iRow, iCol)->text() + " ";
1529 }
[2870]1530 }
[2965]1531 if (!hlp.isEmpty()) {
1532 combineStreams << hlp;
1533 }
[2870]1534 }
1535
[3164]1536 QStringList uploadMountpointsOut;
1537 for (int iRow = 0; iRow < _uploadTable->rowCount(); iRow++) {
[3153]1538 QString hlp;
[3164]1539 for (int iCol = 0; iCol < _uploadTable->columnCount(); iCol++) {
1540 if (_uploadTable->cellWidget(iRow, iCol) &&
[3158]1541 (iCol == 3 || iCol == 4 || iCol == 5)) {
1542 if (iCol == 3) {
[3164]1543 QLineEdit* passwd = (QLineEdit*)(_uploadTable->cellWidget(iRow, iCol));
[3158]1544 hlp += passwd->text() + ",";
1545 }
1546 else if (iCol == 4) {
[3164]1547 QComboBox* system = (QComboBox*)(_uploadTable->cellWidget(iRow, iCol));
[3158]1548 hlp += system->currentText() + ",";
1549 }
1550 else if (iCol == 5) {
[3164]1551 QCheckBox* com = (QCheckBox*)(_uploadTable->cellWidget(iRow, iCol));
[3158]1552 QString state; state.setNum(com->checkState());
1553 hlp += state + ",";
1554 }
[3153]1555 }
[3164]1556 else if (_uploadTable->item(iRow, iCol)) {
1557 hlp += _uploadTable->item(iRow, iCol)->text() + ",";
[3158]1558 }
[3153]1559 }
1560 if (!hlp.isEmpty()) {
[3164]1561 uploadMountpointsOut << hlp;
[3153]1562 }
1563 }
1564
[1535]1565 bncSettings settings;
[1504]1566
[3881]1567 settings.setValue("startTab", _aogroup->currentIndex());
1568 settings.setValue("statusTab", _loggroup->currentIndex());
1569 settings.setValue("mountPoints", mountPoints);
1570// Network
1571 settings.setValue("proxyHost", _proxyHostLineEdit->text());
1572 settings.setValue("proxyPort", _proxyPortLineEdit->text());
1573 settings.setValue("sslCaCertPath", _sslCaCertPathLineEdit->text());
1574 settings.setValue("ignoreSslErrors", _ignoreSslErrorsCheckBox->checkState());
1575// General
1576 settings.setValue("logFile", _logFileLineEdit->text());
1577 settings.setValue("rnxAppend", _rnxAppendCheckBox->checkState());
1578 settings.setValue("onTheFlyInterval", _onTheFlyComboBox->currentText());
[1503]1579 settings.setValue("autoStart", _autoStartCheckBox->checkState());
[3881]1580 settings.setValue("rawOutFile", _rawOutFileLineEdit->text());
1581// RINEX Observations
1582 settings.setValue("rnxPath", _rnxPathLineEdit->text());
1583 settings.setValue("rnxIntr", _rnxIntrComboBox->currentText());
1584 settings.setValue("rnxSampl", _rnxSamplSpinBox->value());
1585 settings.setValue("rnxSkel", _rnxSkelLineEdit->text());
1586 settings.setValue("rnxScript", _rnxScrpLineEdit->text());
1587 settings.setValue("rnxV3", _rnxV3CheckBox->checkState());
1588// RINEX Ephemeris
1589 settings.setValue("ephPath", _ephPathLineEdit->text());
1590 settings.setValue("ephIntr", _ephIntrComboBox->currentText());
1591 settings.setValue("outEphPort", _outEphPortLineEdit->text());
1592 settings.setValue("ephV3", _ephV3CheckBox->checkState());
1593// Broadcast Corrections
1594 settings.setValue("corrPath", _corrPathLineEdit->text());
[1503]1595 settings.setValue("corrIntr", _corrIntrComboBox->currentText());
1596 settings.setValue("corrPort", _corrPortLineEdit->text());
1597 settings.setValue("corrTime", _corrTimeSpinBox->value());
[3881]1598// Feed Engine
1599 settings.setValue("outPort", _outPortLineEdit->text());
1600 settings.setValue("waitTime", _waitTimeSpinBox->value());
1601 settings.setValue("binSampl", _binSamplSpinBox->value());
1602 settings.setValue("outFile", _outFileLineEdit->text());
1603 settings.setValue("outUPort", _outUPortLineEdit->text());
1604// Serial Output
1605 settings.setValue("serialMountPoint",_serialMountPointLineEdit->text());
1606 settings.setValue("serialPortName", _serialPortNameLineEdit->text());
1607 settings.setValue("serialBaudRate", _serialBaudRateComboBox->currentText());
1608 settings.setValue("serialFlowControl",_serialFlowControlComboBox->currentText());
1609 settings.setValue("serialDataBits", _serialDataBitsComboBox->currentText());
1610 settings.setValue("serialParity", _serialParityComboBox->currentText());
1611 settings.setValue("serialStopBits", _serialStopBitsComboBox->currentText());
1612 settings.setValue("serialAutoNMEA", _serialAutoNMEAComboBox->currentText());
1613 settings.setValue("serialFileNMEA",_serialFileNMEALineEdit->text());
1614 settings.setValue("serialHeightNMEA",_serialHeightNMEALineEdit->text());
1615// Outages
1616 settings.setValue("obsRate", _obsRateComboBox->currentText());
1617 settings.setValue("adviseFail", _adviseFailSpinBox->value());
1618 settings.setValue("adviseReco", _adviseRecoSpinBox->value());
1619 settings.setValue("adviseScript",_adviseScriptLineEdit->text());
1620// Miscellaneous
[1503]1621 settings.setValue("miscMount", _miscMountLineEdit->text());
[5644]1622 settings.setValue("miscPort", _miscPortLineEdit->text());
[3881]1623 settings.setValue("perfIntr", _perfIntrComboBox->currentText());
1624 settings.setValue("scanRTCM", _scanRTCMCheckBox->checkState());
1625 settings.setValue("pppPlotCoordinates", _pppPlotCoordinates->checkState());
[5224]1626 settings.setValue("useOsmMap", _osmRadioButton->isChecked());
[5294]1627 settings.setValue("mapWinDotSize", _mapWinDotSizeLineEdit->text());
[5304]1628 settings.setValue("mapWinDotColor", _mapWinDotColorComboBox->currentText());
[5226]1629 settings.setValue("mapSpeed", _mapSpeedSlider->value());
[3897]1630// Reqc
1631 settings.setValue("reqcAction", _reqcActionComboBox->currentText());
1632 settings.setValue("reqcObsFile", _reqcObsFileChooser->fileName());
1633 settings.setValue("reqcNavFile", _reqcNavFileChooser->fileName());
1634 settings.setValue("reqcOutObsFile", _reqcOutObsLineEdit->text());
1635 settings.setValue("reqcOutNavFile", _reqcOutNavLineEdit->text());
1636 settings.setValue("reqcOutLogFile", _reqcOutLogLineEdit->text());
[4449]1637 settings.setValue("reqcPlotDir", _reqcPlotDirLineEdit->text());
[5144]1638 settings.setValue("reqcSkyPlotSystems", _reqcSkyPlotSystems->currentText());
[4185]1639// Combine Corrections
[2965]1640 if (!combineStreams.isEmpty()) {
1641 settings.setValue("combineStreams", combineStreams);
1642 }
[3075]1643 else {
1644 settings.setValue("combineStreams", "");
1645 }
[3881]1646 settings.setValue("cmbMethod", _cmbMethodComboBox->currentText());
[3328]1647 settings.setValue("cmbMaxres", _cmbMaxresLineEdit->text());
[4179]1648 settings.setValue("cmbSampl", _cmbSamplSpinBox->value());
[4185]1649// Upload Corrections
[3164]1650 if (!uploadMountpointsOut.isEmpty()) {
1651 settings.setValue("uploadMountpointsOut", uploadMountpointsOut);
[3153]1652 }
1653 else {
[3164]1654 settings.setValue("uploadMountpointsOut", "");
[3153]1655 }
[4172]1656 settings.setValue("uploadIntr", _uploadIntrComboBox->currentText());
1657 settings.setValue("uploadSamplRtcmEphCorr", _uploadSamplRtcmEphCorrSpinBox->value());
1658 settings.setValue("uploadSamplSp3", _uploadSamplSp3SpinBox->value());
1659 settings.setValue("uploadSamplClkRnx", _uploadSamplClkRnxSpinBox->value());
[4185]1660// Upload Ephemeris
[3242]1661 settings.setValue("uploadEphHost", _uploadEphHostLineEdit->text());
1662 settings.setValue("uploadEphPort", _uploadEphPortLineEdit->text());
[3881]1663 settings.setValue("uploadEphMountpoint",_uploadEphMountpointLineEdit->text());
[3242]1664 settings.setValue("uploadEphPassword", _uploadEphPasswordLineEdit->text());
1665 settings.setValue("uploadEphSample", _uploadEphSampleSpinBox->value());
[4766]1666
[1200]1667 if (_caster) {
[4250]1668 _caster->readMountPoints();
[1200]1669 }
[5694]1670
1671 _pppWidgets.saveOptions();
[35]1672}
1673
1674// All get slots terminated
1675////////////////////////////////////////////////////////////////////////////
[1556]1676void bncWindow::slotGetThreadsFinished() {
[5068]1677 BNC_CORE->slotMessage("All Get Threads Terminated", true);
[5729]1678 delete _caster; _caster = 0; BNC_CORE->setCaster(0);
[3249]1679 delete _casterEph; _casterEph = 0;
[3787]1680 _runningRealTime = false;
[35]1681}
1682
[3783]1683// Start It!
[35]1684////////////////////////////////////////////////////////////////////////////
[3782]1685void bncWindow::slotStart() {
[4076]1686 saveOptions();
[5861]1687 if ( !_reqcActionComboBox->currentText().isEmpty() ) {
[3897]1688 startPostProcessingReqc();
[3783]1689 }
1690 else {
1691 startRealTime();
1692 }
[5716]1693 if (_pppMain) {
1694 _pppMain->start();
1695 }
[3783]1696}
[128]1697
[3783]1698// Start Real-Time (Retrieve Data etc.)
1699////////////////////////////////////////////////////////////////////////////
1700void bncWindow::startRealTime() {
1701
[3787]1702 _runningRealTime = true;
1703
[2177]1704 _bncFigurePPP->reset();
1705
[35]1706 _actDeleteMountPoints->setEnabled(false);
1707
[3787]1708 enableStartStop();
1709
[5729]1710 _caster = new bncCaster();
[35]1711
[5725]1712 BNC_CORE->setCaster(_caster);
[5068]1713 BNC_CORE->setPort(_outEphPortLineEdit->text().toInt());
1714 BNC_CORE->setPortCorr(_corrPortLineEdit->text().toInt());
1715 BNC_CORE->initCombination();
[592]1716
[5729]1717 connect(_caster, SIGNAL(getThreadsFinished()),
[1556]1718 this, SLOT(slotGetThreadsFinished()));
[35]1719
[5729]1720 connect (_caster, SIGNAL(mountPointsRead(QList<bncGetThread*>)),
[1179]1721 this, SLOT(slotMountPointsRead(QList<bncGetThread*>)));
[1173]1722
[5068]1723 BNC_CORE->slotMessage("========== Start BNC v" BNCVERSION " =========", true);
[1188]1724
[1875]1725 bncSettings settings;
[1880]1726
[1875]1727 QDir rnxdir(settings.value("rnxPath").toString());
[5068]1728 if (!rnxdir.exists()) BNC_CORE->slotMessage("Cannot find RINEX Observations directory", true);
[1880]1729
1730 QString rnx_file = settings.value("rnxScript").toString();
1731 if ( !rnx_file.isEmpty() ) {
1732 QFile rnxfile(settings.value("rnxScript").toString());
[5068]1733 if (!rnxfile.exists()) BNC_CORE->slotMessage("Cannot find RINEX Observations script", true);
[1880]1734 }
1735
[1875]1736 QDir ephdir(settings.value("ephPath").toString());
[5068]1737 if (!ephdir.exists()) BNC_CORE->slotMessage("Cannot find RINEX Ephemeris directory", true);
[1880]1738
[1875]1739 QDir corrdir(settings.value("corrPath").toString());
[5068]1740 if (!corrdir.exists()) BNC_CORE->slotMessage("Cannot find Broadcast Corrections directory", true);
[1880]1741
1742 QString advise_file = settings.value("adviseScript").toString();
1743 if ( !advise_file.isEmpty() ) {
[1875]1744 QFile advisefile(settings.value("adviseScript").toString());
[5068]1745 if (!advisefile.exists()) BNC_CORE->slotMessage("Cannot find Outages script", true);
[1875]1746 }
1747
[2937]1748 QString ant_file = settings.value("pppAntex").toString();
1749 if ( !ant_file.isEmpty() ) {
1750 QFile anxfile(settings.value("pppAntex").toString());
[5068]1751 if (!anxfile.exists()) BNC_CORE->slotMessage("Cannot find IGS ANTEX file", true);
[2937]1752 }
1753
[4250]1754 _caster->readMountPoints();
[3249]1755
[3250]1756 _casterEph = new bncEphUploadCaster();
[3254]1757 connect(_casterEph, SIGNAL(newBytes(QByteArray,double)),
1758 _uploadEphBytesCounter, SLOT(slotNewBytes(QByteArray,double)));
[35]1759}
[83]1760
[182]1761// Retrieve Data
1762////////////////////////////////////////////////////////////////////////////
1763void bncWindow::slotStop() {
1764 int iRet = QMessageBox::question(this, "Stop", "Stop retrieving data?",
1765 QMessageBox::Yes, QMessageBox::No,
1766 QMessageBox::NoButton);
1767 if (iRet == QMessageBox::Yes) {
[5718]1768 if (_pppMain) {
[5860]1769 _pppMain->slotStop();
[5718]1770 }
[5068]1771 BNC_CORE->stopCombination();
[5729]1772 delete _caster; _caster = 0; BNC_CORE->setCaster(0);
[3249]1773 delete _casterEph; _casterEph = 0;
[3787]1774 _runningRealTime = false;
[3790]1775 enableStartStop();
[182]1776 }
1777}
1778
[83]1779// Close Application gracefully
1780////////////////////////////////////////////////////////////////////////////
1781void bncWindow::closeEvent(QCloseEvent* event) {
1782
1783 int iRet = QMessageBox::question(this, "Close", "Save Options?",
1784 QMessageBox::Yes, QMessageBox::No,
1785 QMessageBox::Cancel);
1786
1787 if (iRet == QMessageBox::Cancel) {
1788 event->ignore();
1789 return;
1790 }
1791 else if (iRet == QMessageBox::Yes) {
1792 slotSaveOptions();
1793 }
1794
[5716]1795 if (_pppMain) {
[5860]1796 _pppMain->slotStop();
[5716]1797 }
1798
[608]1799 QMainWindow::closeEvent(event);
[83]1800}
1801
1802// User changed the selection of mountPoints
1803////////////////////////////////////////////////////////////////////////////
1804void bncWindow::slotSelectionChanged() {
1805 if (_mountPointsTable->selectedItems().isEmpty()) {
1806 _actDeleteMountPoints->setEnabled(false);
1807 }
1808 else {
1809 _actDeleteMountPoints->setEnabled(true);
1810 }
1811}
1812
1813// Display Program Messages
1814////////////////////////////////////////////////////////////////////////////
[1299]1815void bncWindow::slotWindowMessage(const QByteArray msg, bool showOnScreen) {
[83]1816
[1218]1817#ifdef DEBUG_RTCM2_2021
1818 const int maxBufferSize = 1000;
1819#else
[83]1820 const int maxBufferSize = 10000;
[1218]1821#endif
[1299]1822
1823 if (! showOnScreen ) {
1824 return;
1825 }
[83]1826
[189]1827 QString txt = _log->toPlainText() + "\n" +
[566]1828 QDateTime::currentDateTime().toUTC().toString("yy-MM-dd hh:mm:ss ") + msg;
[83]1829 _log->clear();
1830 _log->append(txt.right(maxBufferSize));
1831}
1832
[108]1833// About Message
1834////////////////////////////////////////////////////////////////////////////
1835void bncWindow::slotAbout() {
[679]1836 new bncAboutDlg(0);
[108]1837}
1838
[989]1839//Flowchart
1840////////////////////////////////////////////////////////////////////////////
1841void bncWindow::slotFlowchart() {
1842 new bncFlowchartDlg(0);
1843}
1844
[108]1845// Help Window
1846////////////////////////////////////////////////////////////////////////////
1847void bncWindow::slotHelp() {
[177]1848 QUrl url;
1849 url.setPath(":bnchelp.html");
[676]1850 new bncHlpDlg(0, url);
[108]1851}
[110]1852
1853// Select Fonts
1854////////////////////////////////////////////////////////////////////////////
1855void bncWindow::slotFontSel() {
1856 bool ok;
1857 QFont newFont = QFontDialog::getFont(&ok, this->font(), this);
1858 if (ok) {
[1535]1859 bncSettings settings;
[113]1860 settings.setValue("font", newFont.toString());
[110]1861 QApplication::setFont(newFont);
[113]1862 int ww = QFontMetrics(newFont).width('w');
[152]1863 setMinimumSize(60*ww, 80*ww);
1864 resize(60*ww, 80*ww);
[110]1865 }
1866}
[399]1867
1868// Whats This Help
1869void bncWindow::slotWhatsThis() {
[1173]1870 QWhatsThis::enterWhatsThisMode();
[399]1871}
1872
[1173]1873//
1874////////////////////////////////////////////////////////////////////////////
[1179]1875void bncWindow::slotMountPointsRead(QList<bncGetThread*> threads) {
[5187]1876 _threads = threads;
1877
[1998]1878 _bncFigure->updateMountPoints();
1879 _bncFigureLate->updateMountPoints();
1880
[1178]1881 populateMountPointsTable();
[1535]1882 bncSettings settings;
[1180]1883 _binSamplSpinBox->setValue(settings.value("binSampl").toInt());
1884 _waitTimeSpinBox->setValue(settings.value("waitTime").toInt());
[1179]1885 QListIterator<bncGetThread*> iTh(threads);
1886 while (iTh.hasNext()) {
1887 bncGetThread* thread = iTh.next();
1888 for (int iRow = 0; iRow < _mountPointsTable->rowCount(); iRow++) {
1889 QUrl url( "//" + _mountPointsTable->item(iRow, 0)->text() +
1890 "@" + _mountPointsTable->item(iRow, 1)->text() );
1891 if (url == thread->mountPoint() &&
1892 _mountPointsTable->item(iRow, 3)->text() == thread->latitude() &&
1893 _mountPointsTable->item(iRow, 4)->text() == thread->longitude() ) {
[1352]1894 ((bncTableItem*) _mountPointsTable->item(iRow, 7))->setGetThread(thread);
[2010]1895 disconnect(thread, SIGNAL(newBytes(QByteArray, double)),
1896 _bncFigure, SLOT(slotNewData(QByteArray, double)));
[1926]1897 connect(thread, SIGNAL(newBytes(QByteArray, double)),
[1932]1898 _bncFigure, SLOT(slotNewData(QByteArray, double)));
[2010]1899 disconnect(thread, SIGNAL(newLatency(QByteArray, double)),
1900 _bncFigureLate, SLOT(slotNewLatency(QByteArray, double)));
[1972]1901 connect(thread, SIGNAL(newLatency(QByteArray, double)),
[1975]1902 _bncFigureLate, SLOT(slotNewLatency(QByteArray, double)));
[1179]1903 break;
1904 }
1905 }
1906 }
[1173]1907}
1908
1909//
1910////////////////////////////////////////////////////////////////////////////
[679]1911void bncWindow::CreateMenu() {
1912 // Create Menus
1913 // ------------
1914 _menuFile = menuBar()->addMenu(tr("&File"));
1915 _menuFile->addAction(_actFontSel);
1916 _menuFile->addSeparator();
1917 _menuFile->addAction(_actSaveOpt);
1918 _menuFile->addSeparator();
1919 _menuFile->addAction(_actQuit);
[399]1920
[679]1921 _menuHlp = menuBar()->addMenu(tr("&Help"));
1922 _menuHlp->addAction(_actHelp);
[989]1923 _menuHlp->addAction(_actFlowchart);
[679]1924 _menuHlp->addAction(_actAbout);
1925}
1926
[1439]1927// Toolbar
[1173]1928////////////////////////////////////////////////////////////////////////////
[679]1929void bncWindow::AddToolbar() {
1930 QToolBar* toolBar = new QToolBar;
1931 addToolBar(Qt::BottomToolBarArea, toolBar);
1932 toolBar->setMovable(false);
1933 toolBar->addAction(_actAddMountPoints);
1934 toolBar->addAction(_actDeleteMountPoints);
[5162]1935 toolBar->addAction(_actMapMountPoints);
[3782]1936 toolBar->addAction(_actStart);
[679]1937 toolBar->addAction(_actStop);
[3610]1938 toolBar->addWidget(new QLabel(" "));
[679]1939 toolBar->addAction(_actwhatsthis);
[1439]1940}
[679]1941
[1439]1942// About
[1173]1943////////////////////////////////////////////////////////////////////////////
[679]1944bncAboutDlg::bncAboutDlg(QWidget* parent) :
1945 QDialog(parent) {
1946
1947 QTextBrowser* tb = new QTextBrowser;
1948 QUrl url; url.setPath(":bncabout.html");
1949 tb->setSource(url);
1950 tb->setReadOnly(true);
1951
1952 int ww = QFontMetrics(font()).width('w');
1953 QPushButton* _closeButton = new QPushButton("Close");
1954 _closeButton->setMaximumWidth(10*ww);
1955 connect(_closeButton, SIGNAL(clicked()), this, SLOT(close()));
1956
1957 QGridLayout* dlgLayout = new QGridLayout();
1958 QLabel* img = new QLabel();
1959 img->setPixmap(QPixmap(":ntrip-logo.png"));
1960 dlgLayout->addWidget(img, 0,0);
[2012]1961 dlgLayout->addWidget(new QLabel("BKG Ntrip Client (BNC) Version "BNCVERSION), 0,1);
[679]1962 dlgLayout->addWidget(tb,1,0,1,2);
1963 dlgLayout->addWidget(_closeButton,2,1,Qt::AlignRight);
1964
1965 setLayout(dlgLayout);
1966 resize(60*ww, 60*ww);
[1545]1967 setWindowTitle("About BNC");
[679]1968 show();
1969}
1970
[1173]1971//
1972////////////////////////////////////////////////////////////////////////////
[679]1973bncAboutDlg::~bncAboutDlg() {
1974};
1975
[1439]1976// Flowchart
[1173]1977////////////////////////////////////////////////////////////////////////////
[989]1978bncFlowchartDlg::bncFlowchartDlg(QWidget* parent) :
1979 QDialog(parent) {
1980
1981 int ww = QFontMetrics(font()).width('w');
1982 QPushButton* _closeButton = new QPushButton("Close");
1983 _closeButton->setMaximumWidth(10*ww);
1984 connect(_closeButton, SIGNAL(clicked()), this, SLOT(close()));
1985
1986 QGridLayout* dlgLayout = new QGridLayout();
1987 QLabel* img = new QLabel();
[997]1988 img->setPixmap(QPixmap(":bncflowchart.png"));
[989]1989 dlgLayout->addWidget(img, 0,0);
1990 dlgLayout->addWidget(_closeButton,1,0,Qt::AlignLeft);
1991
1992 setLayout(dlgLayout);
[1545]1993 setWindowTitle("Flow Chart");
[989]1994 show();
1995}
1996
[1173]1997//
1998////////////////////////////////////////////////////////////////////////////
[989]1999bncFlowchartDlg::~bncFlowchartDlg() {
2000};
2001
[3605]2002// Enable/Disable Widget (and change its color)
2003////////////////////////////////////////////////////////////////////////////
2004void bncWindow::enableWidget(bool enable, QWidget* widget) {
2005 const static QPalette paletteWhite(QColor(255, 255, 255));
2006 const static QPalette paletteGray(QColor(230, 230, 230));
2007
2008 widget->setEnabled(enable);
2009 if (enable) {
2010 widget->setPalette(paletteWhite);
2011 }
2012 else {
2013 widget->setPalette(paletteGray);
2014 }
2015}
2016
[1439]2017// Bnc Text
2018////////////////////////////////////////////////////////////////////////////
[2128]2019void bncWindow::slotBncTextChanged(){
[1439]2020
[3605]2021 bool enable = true;
2022
[1439]2023 // Proxy
2024 //------
[2129]2025 if (sender() == 0 || sender() == _proxyHostLineEdit) {
[3605]2026 enable = !_proxyHostLineEdit->text().isEmpty();
2027 enableWidget(enable, _proxyPortLineEdit);
[1439]2028 }
2029
2030 // RINEX Observations
2031 // ------------------
[2129]2032 if (sender() == 0 || sender() == _rnxPathLineEdit) {
[3605]2033 enable = !_rnxPathLineEdit->text().isEmpty();
2034 enableWidget(enable, _rnxSamplSpinBox);
2035 enableWidget(enable, _rnxSkelLineEdit);
2036 enableWidget(enable, _rnxScrpLineEdit);
2037 enableWidget(enable, _rnxV3CheckBox);
2038 enableWidget(enable, _rnxIntrComboBox);
[1439]2039 }
2040
2041 // RINEX Ephemeris
2042 // ---------------
[3605]2043 if (sender() == 0 || sender() == _ephPathLineEdit || sender() == _outEphPortLineEdit) {
2044 enable = !_ephPathLineEdit->text().isEmpty() || !_outEphPortLineEdit->text().isEmpty();
2045 enableWidget(enable, _ephIntrComboBox);
2046 enableWidget(enable, _ephV3CheckBox);
[1439]2047 }
2048
[1682]2049 // Broadcast Corrections
[1439]2050 // ---------------------
[3605]2051 if (sender() == 0 || sender() == _corrPathLineEdit || sender() == _corrPortLineEdit) {
2052 enable = !_corrPathLineEdit->text().isEmpty() || !_corrPortLineEdit->text().isEmpty();
2053 enableWidget(enable, _corrIntrComboBox);
[1439]2054 }
2055
2056 // Feed Engine
2057 // -----------
[3605]2058 if (sender() == 0 || sender() == _outPortLineEdit || sender() == _outFileLineEdit) {
2059 enable = !_outPortLineEdit->text().isEmpty() || !_outFileLineEdit->text().isEmpty();
2060 enableWidget(enable, _waitTimeSpinBox);
2061 enableWidget(enable, _binSamplSpinBox);
[1439]2062 }
2063
[1746]2064 // Serial Output
2065 // -------------
[2129]2066 if (sender() == 0 || sender() == _serialMountPointLineEdit ||
[2128]2067 sender() == _serialAutoNMEAComboBox) {
[3605]2068 enable = !_serialMountPointLineEdit->text().isEmpty();
2069 enableWidget(enable, _serialPortNameLineEdit);
2070 enableWidget(enable, _serialBaudRateComboBox);
2071 enableWidget(enable, _serialParityComboBox);
2072 enableWidget(enable, _serialDataBitsComboBox);
2073 enableWidget(enable, _serialStopBitsComboBox);
2074 enableWidget(enable, _serialFlowControlComboBox);
2075 enableWidget(enable, _serialAutoNMEAComboBox);
2076
2077 bool enable2 = enable && _serialAutoNMEAComboBox->currentText() != "Auto";
2078 enableWidget(enable2, _serialFileNMEALineEdit);
[1439]2079 }
2080
2081 // Outages
2082 // -------
[2129]2083 if (sender() == 0 || sender() == _obsRateComboBox) {
[3605]2084 enable = !_obsRateComboBox->currentText().isEmpty();
2085 enableWidget(enable, _adviseFailSpinBox);
2086 enableWidget(enable, _adviseRecoSpinBox);
2087 enableWidget(enable, _adviseScriptLineEdit);
[1439]2088 }
2089
2090 // Miscellaneous
2091 // -------------
[2129]2092 if (sender() == 0 || sender() == _miscMountLineEdit) {
[3605]2093 enable = !_miscMountLineEdit->text().isEmpty();
2094 enableWidget(enable, _perfIntrComboBox);
2095 enableWidget(enable, _scanRTCMCheckBox);
[5644]2096 enableWidget(enable, _miscPortLineEdit);
[1439]2097 }
[2090]2098
[3813]2099 // Enable/disable Broadcast Ephemerides
[3810]2100 // ------------------------------------
2101 if (sender() == 0 || sender() == _uploadEphHostLineEdit) {
2102 if (!_uploadEphHostLineEdit->text().isEmpty()) {
2103 _uploadEphPortLineEdit->setStyleSheet("background-color: white");
2104 _uploadEphMountpointLineEdit->setStyleSheet("background-color: white");
2105 _uploadEphPasswordLineEdit->setStyleSheet("background-color: white");
2106 _uploadEphSampleSpinBox->setStyleSheet("background-color: white");
2107 _uploadEphPortLineEdit->setEnabled(true);
2108 _uploadEphMountpointLineEdit->setEnabled(true);
2109 _uploadEphPasswordLineEdit->setEnabled(true);
2110 _uploadEphSampleSpinBox->setEnabled(true);
2111 }
2112 else {
2113 _uploadEphPortLineEdit->setStyleSheet("background-color: lightGray");
2114 _uploadEphMountpointLineEdit->setStyleSheet("background-color: lightGray");
2115 _uploadEphPasswordLineEdit->setStyleSheet("background-color: lightGray");
2116 _uploadEphSampleSpinBox->setStyleSheet("background-color: lightGray");
2117 _uploadEphPortLineEdit->setEnabled(false);
2118 _uploadEphMountpointLineEdit->setEnabled(false);
2119 _uploadEphPasswordLineEdit->setEnabled(false);
2120 _uploadEphSampleSpinBox->setEnabled(false);
2121 }
2122 }
2123
[4185]2124 // Combine Corrections
2125 // -------------------
[3813]2126 if (sender() == 0 || sender() == _cmbTable) {
2127 int iRow = _cmbTable->rowCount();
2128 if (iRow > 0) {
2129 enableWidget(true, _cmbMethodComboBox);
2130 _cmbMaxresLineEdit->setStyleSheet("background-color: white");
2131 _cmbMaxresLineEdit->setEnabled(true);
[4179]2132 _cmbSamplSpinBox->setEnabled(true);
[3813]2133 }
2134 else {
2135 enableWidget(false, _cmbMethodComboBox);
2136 _cmbMaxresLineEdit->setStyleSheet("background-color: lightGray");
2137 _cmbMaxresLineEdit->setEnabled(false);
[4179]2138 _cmbSamplSpinBox->setEnabled(false);
[3813]2139 }
2140 }
2141
2142 // Upload(clk)
2143 // -----------
2144 int iRow = _uploadTable->rowCount();
2145 if (iRow > 0) {
2146 enableWidget(true, _uploadIntrComboBox);
[4172]2147 enableWidget(true, _uploadSamplRtcmEphCorrSpinBox);
2148 enableWidget(true, _uploadSamplClkRnxSpinBox);
2149 enableWidget(true, _uploadSamplSp3SpinBox);
[3813]2150 }
2151 else {
2152 enableWidget(false, _uploadIntrComboBox);
[4172]2153 enableWidget(false, _uploadSamplRtcmEphCorrSpinBox);
2154 enableWidget(false, _uploadSamplClkRnxSpinBox);
2155 enableWidget(false, _uploadSamplSp3SpinBox);
[3813]2156 }
2157
[5861]2158 // QC
2159 // --
[3897]2160 if (sender() == 0 || sender() == _reqcActionComboBox) {
2161 enable = !_reqcActionComboBox->currentText().isEmpty();
2162 bool enable10 = _reqcActionComboBox->currentText() == "Edit/Concatenate";
2163 enableWidget(enable && enable10, _reqcEditOptionButton);
2164 enableWidget(enable, _reqcObsFileChooser);
[4213]2165 enableWidget(enable, _reqcNavFileChooser);
[3897]2166 enableWidget(enable && enable10, _reqcOutObsLineEdit);
[4213]2167 enableWidget(enable && enable10, _reqcOutNavLineEdit);
[4515]2168 enableWidget(enable, _reqcOutLogLineEdit);
[4449]2169 enableWidget(enable && !enable10, _reqcPlotDirLineEdit);
[5144]2170 enableWidget(enable && !enable10, _reqcSkyPlotSystems);
[3739]2171 }
[4085]2172
2173 enableStartStop();
[1439]2174}
[2869]2175
2176//
2177////////////////////////////////////////////////////////////////////////////
2178void bncWindow::slotAddCmbRow() {
2179 int iRow = _cmbTable->rowCount();
2180 _cmbTable->insertRow(iRow);
2181 for (int iCol = 0; iCol < _cmbTable->columnCount(); iCol++) {
2182 _cmbTable->setItem(iRow, iCol, new QTableWidgetItem(""));
2183 }
2184}
2185
2186//
2187////////////////////////////////////////////////////////////////////////////
2188void bncWindow::slotDelCmbRow() {
2189 int nRows = _cmbTable->rowCount();
2190 bool flg[nRows];
2191 for (int iRow = 0; iRow < nRows; iRow++) {
2192 if (_cmbTable->isItemSelected(_cmbTable->item(iRow,1))) {
2193 flg[iRow] = true;
2194 }
2195 else {
2196 flg[iRow] = false;
2197 }
2198 }
2199 for (int iRow = nRows-1; iRow >= 0; iRow--) {
2200 if (flg[iRow]) {
2201 _cmbTable->removeRow(iRow);
2202 }
2203 }
[3813]2204 nRows = _cmbTable->rowCount();
2205 if (nRows < 1) {
2206 enableWidget(false, _cmbMethodComboBox);
2207 _cmbMaxresLineEdit->setStyleSheet("background-color: lightGray");
2208 _cmbMaxresLineEdit->setEnabled(false);
[4179]2209 _cmbSamplSpinBox->setEnabled(false);
[3813]2210 }
[2869]2211}
[2870]2212
2213//
2214////////////////////////////////////////////////////////////////////////////
2215void bncWindow::populateCmbTable() {
2216
2217 for (int iRow = _cmbTable->rowCount()-1; iRow >=0; iRow--) {
2218 _cmbTable->removeRow(iRow);
2219 }
2220
2221 bncSettings settings;
2222
2223 int iRow = -1;
2224 QListIterator<QString> it(settings.value("combineStreams").toStringList());
2225 while (it.hasNext()) {
2226 QStringList hlp = it.next().split(" ");
[2965]2227 if (hlp.size() > 2) {
[2870]2228 ++iRow;
2229 _cmbTable->insertRow(iRow);
2230 }
2231 for (int iCol = 0; iCol < hlp.size(); iCol++) {
2232 _cmbTable->setItem(iRow, iCol, new QTableWidgetItem(hlp[iCol]));
2233 }
2234 }
2235}
[3152]2236
2237//
2238////////////////////////////////////////////////////////////////////////////
[3164]2239void bncWindow::slotAddUploadRow() {
2240 int iRow = _uploadTable->rowCount();
2241 _uploadTable->insertRow(iRow);
2242 for (int iCol = 0; iCol < _uploadTable->columnCount(); iCol++) {
[3156]2243 if (iCol == 3) {
2244 QLineEdit* passwd = new QLineEdit();
2245 passwd->setFrame(false);
2246 passwd->setEchoMode(QLineEdit::PasswordEchoOnEdit);
[3164]2247 _uploadTable->setCellWidget(iRow, iCol, passwd);
[3156]2248 }
2249 else if (iCol == 4) {
[3158]2250 QComboBox* system = new QComboBox();
2251 system->setEditable(false);
[5341]2252 system->addItems(QString(",IGS08,ETRF2000,NAD83,GDA94,SIRGAS95,SIRGAS2000,DREF91,Custom").split(","));
[3158]2253 system->setFrame(false);
[3164]2254 _uploadTable->setCellWidget(iRow, iCol, system);
[3155]2255 }
2256 else if (iCol == 5) {
2257 QCheckBox* com = new QCheckBox();
[3164]2258 _uploadTable->setCellWidget(iRow, iCol, com);
[3155]2259 }
[4111]2260 else if (iCol == 11) {
[3196]2261 bncTableItem* bncIt = new bncTableItem();
2262 bncIt->setFlags(bncIt->flags() & ~Qt::ItemIsEditable);
2263 _uploadTable->setItem(iRow, iCol, bncIt);
[5068]2264 BNC_CORE->_uploadTableItems[iRow] = bncIt;
[3196]2265 }
[3155]2266 else {
[3164]2267 _uploadTable->setItem(iRow, iCol, new QTableWidgetItem(""));
[3155]2268 }
[3152]2269 }
2270}
2271
2272//
2273////////////////////////////////////////////////////////////////////////////
[3164]2274void bncWindow::slotDelUploadRow() {
[5068]2275 BNC_CORE->_uploadTableItems.clear();
[3164]2276 int nRows = _uploadTable->rowCount();
[3152]2277 bool flg[nRows];
2278 for (int iRow = 0; iRow < nRows; iRow++) {
[3164]2279 if (_uploadTable->isItemSelected(_uploadTable->item(iRow,1))) {
[3152]2280 flg[iRow] = true;
2281 }
2282 else {
2283 flg[iRow] = false;
2284 }
2285 }
2286 for (int iRow = nRows-1; iRow >= 0; iRow--) {
2287 if (flg[iRow]) {
[3164]2288 _uploadTable->removeRow(iRow);
[3152]2289 }
2290 }
[3232]2291 for (int iRow = 0; iRow < _uploadTable->rowCount(); iRow++) {
[5068]2292 BNC_CORE->_uploadTableItems[iRow] =
[4111]2293 (bncTableItem*) _uploadTable->item(iRow, 11);
[3232]2294 }
[3813]2295 nRows = _uploadTable->rowCount();
2296 if (nRows < 1) {
2297 enableWidget(false, _uploadIntrComboBox);
[4172]2298 enableWidget(false, _uploadSamplRtcmEphCorrSpinBox);
2299 enableWidget(false, _uploadSamplSp3SpinBox);
2300 enableWidget(false, _uploadSamplClkRnxSpinBox);
[3813]2301 }
[3152]2302}
2303
2304//
2305////////////////////////////////////////////////////////////////////////////
[3164]2306void bncWindow::populateUploadTable() {
2307 for (int iRow = _uploadTable->rowCount()-1; iRow >=0; iRow--) {
2308 _uploadTable->removeRow(iRow);
[3153]2309 }
2310
2311 bncSettings settings;
2312
2313 int iRow = -1;
[3164]2314 QListIterator<QString> it(settings.value("uploadMountpointsOut").toStringList());
[3153]2315 while (it.hasNext()) {
[3159]2316 QStringList hlp = it.next().split(",");
2317 if (hlp.size() > 6) {
[3153]2318 ++iRow;
[3164]2319 _uploadTable->insertRow(iRow);
[3153]2320 }
2321 for (int iCol = 0; iCol < hlp.size(); iCol++) {
[3159]2322 if (iCol == 3) {
2323 QLineEdit* passwd = new QLineEdit();
2324 passwd->setFrame(false);
2325 passwd->setEchoMode(QLineEdit::PasswordEchoOnEdit);
2326 passwd->setText(hlp[iCol]);
[3164]2327 _uploadTable->setCellWidget(iRow, iCol, passwd);
[3159]2328 }
2329 else if (iCol == 4) {
2330 QComboBox* system = new QComboBox();
2331 system->setEditable(false);
[5342]2332 system->addItems(QString(",IGS08,ETRF2000,NAD83,GDA94,SIRGAS95,SIRGAS2000,DREF91,Custom").split(","));
[3159]2333 system->setFrame(false);
2334 system->setCurrentIndex(system->findText(hlp[iCol]));
[3164]2335 _uploadTable->setCellWidget(iRow, iCol, system);
[3159]2336 }
2337 else if (iCol == 5) {
2338 QCheckBox* com = new QCheckBox();
2339 if (hlp[iCol].toInt() == Qt::Checked) {
2340 com->setCheckState(Qt::Checked);
2341 }
[3164]2342 _uploadTable->setCellWidget(iRow, iCol, com);
[3159]2343 }
[4111]2344 else if (iCol == 11) {
[3196]2345 bncTableItem* bncIt = new bncTableItem();
2346 bncIt->setFlags(bncIt->flags() & ~Qt::ItemIsEditable);
2347 _uploadTable->setItem(iRow, iCol, bncIt);
[5068]2348 BNC_CORE->_uploadTableItems[iRow] = bncIt;
[3196]2349 }
[3159]2350 else {
[3164]2351 _uploadTable->setItem(iRow, iCol, new QTableWidgetItem(hlp[iCol]));
[3159]2352 }
[3153]2353 }
2354 }
[3152]2355}
[3153]2356
2357//
2358////////////////////////////////////////////////////////////////////////////
[3164]2359void bncWindow::slotSetUploadTrafo() {
[3239]2360 bncCustomTrafo* dlg = new bncCustomTrafo(this);
2361 dlg->exec();
2362 delete dlg;
[3153]2363}
[3608]2364
[3626]2365// Progress Bar Change
2366////////////////////////////////////////////////////////////////////////////
[3685]2367void bncWindow::slotPostProgress(int nEpo) {
[3782]2368 if (_actStart) {
2369 _actStart->setText(QString("%1 Epochs").arg(nEpo));
[3626]2370 }
2371}
[3731]2372
[3897]2373// Start Post-Processing Reqc
[3731]2374////////////////////////////////////////////////////////////////////////////
[3897]2375void bncWindow::startPostProcessingReqc() {
2376 _runningPostProcessingReqc = true;
[3792]2377 enableStartStop();
[3897]2378 if (_reqcActionComboBox->currentText() == "Analyze") {
2379 t_reqcAnalyze* reqcAnalyze = new t_reqcAnalyze(this);
2380 connect(reqcAnalyze, SIGNAL(finished()),
2381 this, SLOT(slotFinishedPostProcessingReqc()));
2382 reqcAnalyze->start();
[3826]2383 }
2384 else {
[3897]2385 t_reqcEdit* reqcEdit = new t_reqcEdit(this);
2386 connect(reqcEdit, SIGNAL(finished()),
2387 this, SLOT(slotFinishedPostProcessingReqc()));
2388 reqcEdit->start();
[3826]2389 }
[3731]2390}
2391
[3897]2392// Post-Processing Reqc Finished
[3731]2393////////////////////////////////////////////////////////////////////////////
[3897]2394void bncWindow::slotFinishedPostProcessingReqc() {
2395 _runningPostProcessingReqc = false;
[4305]2396 if (_reqcActionComboBox->currentText() != "Analyze") {
2397 QMessageBox::information(this, "Information",
2398 "RINEX Processing Thread Finished");
2399 }
[3792]2400 enableStartStop();
[3731]2401}
[3736]2402
[3740]2403// Edit teqc-like editing options
2404////////////////////////////////////////////////////////////////////////////
[3897]2405void bncWindow::slotReqcEditOption() {
2406 reqcDlg* dlg = new reqcDlg(this);
[3740]2407 dlg->move(this->pos().x()+50, this->pos().y()+50);
2408 dlg->exec();
2409 delete dlg;
2410}
[3787]2411
2412// Enable/Disable Start and Stop Buttons
2413////////////////////////////////////////////////////////////////////////////
2414void bncWindow::enableStartStop() {
2415
[5861]2416 if ( _reqcActionComboBox && !_reqcActionComboBox->currentText().isEmpty() ) {
[3897]2417 if (_runningPostProcessingReqc) {
[3792]2418 _actStart->setEnabled(false);
2419 }
2420 else {
2421 _actStart->setEnabled(true);
2422 }
[3787]2423 _actStop->setEnabled(false);
2424 }
2425 else {
2426 if (_runningRealTime) {
2427 _actStart->setEnabled(false);
2428 _actStop->setEnabled(true);
2429 }
2430 else {
2431 _actStop->setEnabled(false);
2432 if (_mountPointsTable->rowCount() == 0) {
2433 _actStart->setEnabled(false);
2434 }
2435 else {
2436 _actStart->setEnabled(true);
2437 }
2438 }
2439 }
2440}
[4646]2441
2442// Show Map
2443////////////////////////////////////////////////////////////////////////////
[5162]2444void bncWindow::slotMapMountPoints() {
[4646]2445 saveOptions();
2446 t_bncMap* bncMap = new t_bncMap(this);
[4714]2447 bncMap->setMinimumSize(800, 600);
[4649]2448 bncMap->setWindowTitle("Selected Mountpoints");
[4647]2449
2450 bncSettings settings;
2451 QListIterator<QString> it(settings.value("mountPoints").toStringList());
2452 while (it.hasNext()) {
2453 QStringList hlp = it.next().split(" ");
2454 if (hlp.size() < 5) continue;
2455 QUrl url(hlp[0]);
2456 double latDeg = hlp[2].toDouble();
2457 double lonDeg = hlp[3].toDouble();
[4648]2458 bncMap->slotNewPoint(QFileInfo(url.path()).fileName(), latDeg, lonDeg);
[4647]2459 }
2460
[4646]2461 bncMap->show();
2462}
[5162]2463
2464// Show Map
2465////////////////////////////////////////////////////////////////////////////
2466void bncWindow::slotMapPPP() {
[5186]2467#ifdef QT_WEBKIT
[5233]2468 saveOptions();
[5236]2469 enableWidget(false, _mapWinButton);
2470 enableWidget(false, _gmRadioButton);
2471 enableWidget(false, _osmRadioButton);
[5299]2472 enableWidget(false, _mapWinDotSizeLineEdit);
[5304]2473 enableWidget(false, _mapWinDotColorComboBox);
[5299]2474
[5179]2475 if (!_mapWin) {
2476 _mapWin = new bncMapWin(this);
[5235]2477 connect(_mapWin, SIGNAL(mapClosed()), this, SLOT(slotMapPPPClosed()));
[5879]2478 connect(BNC_CORE, SIGNAL(newPosition(bncTime, QVector<double>)),
2479 _mapWin, SLOT(slotNewPosition(bncTime, QVector<double>)));
[5179]2480 }
2481 _mapWin->show();
[5186]2482#else
2483 QMessageBox::information(this, "Information",
2484 "Qt Library compiled without QtWebKit");
2485#endif
[5162]2486}
[5235]2487
2488// Show Map
2489////////////////////////////////////////////////////////////////////////////
2490void bncWindow::slotMapPPPClosed() {
2491#ifdef QT_WEBKIT
[5258]2492 slotBncTextChanged();
[5237]2493 if (_mapWin) {
2494 QListIterator<bncGetThread*> it(_threads);
2495 while (it.hasNext()) {
2496 bncGetThread* thread = it.next();
2497 thread->disconnect(_mapWin);
2498 }
[5242]2499 _mapWin->deleteLater();
[5237]2500 _mapWin = 0;
2501 }
[5235]2502#endif
2503}
Note: See TracBrowser for help on using the repository browser.