source: ntrip/branches/BNC_2.12/src/bncwindow.cpp@ 9281

Last change on this file since 9281 was 9281, checked in by stuerze, 3 years ago

small bug fixes

File size: 149.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 *
[7292]37 * Changes:
[35]38 *
39 * -----------------------------------------------------------------------*/
40
[1175]41#include <iostream>
42
[274]43#include <unistd.h>
[7292]44#include "bncwindow.h"
45#include "bnccore.h"
46#include "bncgetthread.h"
47#include "bnctabledlg.h"
48#include "bncipport.h"
49#include "bncudpport.h"
50#include "bncserialport.h"
51#include "bnchlpdlg.h"
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"
[6335]68#include "orbComp/sp3Comp.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
[6766]83 const static QPalette paletteWhite(QColor(255, 255, 255));
84 const static QPalette paletteGray(QColor(230, 230, 230));
85
[5085]86#ifdef GNSSCENTER_PLUGIN
87 BNC_CORE->setConfFileName("");
88#endif
89
[5729]90 _caster = 0;
[3249]91 _casterEph = 0;
[609]92
[5873]93 _bncFigure = new bncFigure(this);
[1972]94 _bncFigureLate = new bncFigureLate(this);
[5873]95 _bncFigurePPP = new bncFigurePPP(this);
[5941]96
[5954]97 connect(BNC_CORE, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)),
98 _bncFigurePPP, SLOT(slotNewPosition(QByteArray, bncTime, QVector<double>)));
[5941]99
[5971]100 connect(BNC_CORE, SIGNAL(progressRnxPPP(int)), this, SLOT(slotPostProcessingProgress(int)));
101 connect(BNC_CORE, SIGNAL(finishedRnxPPP()), this, SLOT(slotPostProcessingFinished()));
[5941]102
[5971]103 _runningRealTime = false;
104 _runningPPP = false;
105 _runningEdit = false;
106 _runningQC = false;
[6332]107 _runningSp3Comp = false;
[5971]108 _reqcActionComboBox = 0; // necessary for enableStartStop()
[1912]109
[5179]110 _mapWin = 0;
111
[91]112 int ww = QFontMetrics(this->font()).width('w');
[7292]113
[7176]114 static const QStringList labels = QString("account, Streams: resource loader / mountpoint, decoder, country, lat, long, nmea, ntrip, bytes").split(",");
[35]115
[6408]116 setMinimumSize(100*ww, 70*ww);
[375]117
[2012]118 setWindowTitle(tr("BKG Ntrip Client (BNC) Version " BNCVERSION));
[91]119
[7292]120 connect(BNC_CORE, SIGNAL(newMessage(QByteArray,bool)),
[5066]121 this, SLOT(slotWindowMessage(QByteArray,bool)));
[1171]122
[35]123 // Create Actions
124 // --------------
[108]125 _actHelp = new QAction(tr("&Help Contents"),this);
126 connect(_actHelp, SIGNAL(triggered()), SLOT(slotHelp()));
[35]127
[108]128 _actAbout = new QAction(tr("&About BNC"),this);
129 connect(_actAbout, SIGNAL(triggered()), SLOT(slotAbout()));
130
[996]131 _actFlowchart = new QAction(tr("&Flow Chart"),this);
[989]132 connect(_actFlowchart, SIGNAL(triggered()), SLOT(slotFlowchart()));
133
[261]134 _actFontSel = new QAction(tr("Select &Font"),this);
[110]135 connect(_actFontSel, SIGNAL(triggered()), SLOT(slotFontSel()));
136
[5571]137 _actSaveOpt = new QAction(tr("&Reread && Save Configuration"),this);
[35]138 connect(_actSaveOpt, SIGNAL(triggered()), SLOT(slotSaveOptions()));
139
140 _actQuit = new QAction(tr("&Quit"),this);
141 connect(_actQuit, SIGNAL(triggered()), SLOT(close()));
142
[1874]143 _actAddMountPoints = new QAction(tr("Add &Stream"),this);
[35]144 connect(_actAddMountPoints, SIGNAL(triggered()), SLOT(slotAddMountPoints()));
145
[1874]146 _actDeleteMountPoints = new QAction(tr("&Delete Stream"),this);
[35]147 connect(_actDeleteMountPoints, SIGNAL(triggered()), SLOT(slotDeleteMountPoints()));
[83]148 _actDeleteMountPoints->setEnabled(false);
[35]149
[5571]150 _actMapMountPoints = new QAction(tr("&Map"),this);
[5162]151 connect(_actMapMountPoints, SIGNAL(triggered()), SLOT(slotMapMountPoints()));
[4646]152
[3782]153 _actStart = new QAction(tr("Sta&rt"),this);
154 connect(_actStart, SIGNAL(triggered()), SLOT(slotStart()));
[35]155
[182]156 _actStop = new QAction(tr("Sto&p"),this);
157 connect(_actStop, SIGNAL(triggered()), SLOT(slotStop()));
[9251]158 connect(_actStop, SIGNAL(triggered()), SLOT(slotMapPPPClosed()));
[182]159
[7538]160 _actwhatsthis= new QAction(tr("Help?=Shift+F1"),this);
[399]161 connect(_actwhatsthis, SIGNAL(triggered()), SLOT(slotWhatsThis()));
162
[679]163 CreateMenu();
164 AddToolbar();
[35]165
[1535]166 bncSettings settings;
[1678]167
[3788]168 // Network Options
[3356]169 // ---------------
[35]170 _proxyHostLineEdit = new QLineEdit(settings.value("proxyHost").toString());
171 _proxyPortLineEdit = new QLineEdit(settings.value("proxyPort").toString());
[565]172
[7292]173 connect(_proxyHostLineEdit, SIGNAL(textChanged(const QString &)),
[2128]174 this, SLOT(slotBncTextChanged()));
175
[3356]176 _sslCaCertPathLineEdit = new QLineEdit(settings.value("sslCaCertPath").toString());
[7513]177 _sslIgnoreErrorsCheckBox = new QCheckBox();
178 _sslIgnoreErrorsCheckBox->setCheckState(Qt::CheckState(
179 settings.value("sslIgnoreErrors").toInt()));
[3356]180
[1678]181 // General Options
182 // ---------------
183 _logFileLineEdit = new QLineEdit(settings.value("logFile").toString());
[2386]184 _rawOutFileLineEdit = new QLineEdit(settings.value("rawOutFile").toString());
[259]185 _rnxAppendCheckBox = new QCheckBox();
186 _rnxAppendCheckBox->setCheckState(Qt::CheckState(
187 settings.value("rnxAppend").toInt()));
[1678]188 _onTheFlyComboBox = new QComboBox();
189 _onTheFlyComboBox->setEditable(false);
[9281]190 _onTheFlyComboBox->addItems(QString("no,1 day,1 hour,5 min,1 min").split(","));
[1678]191 int ii = _onTheFlyComboBox->findText(settings.value("onTheFlyInterval").toString());
192 if (ii != -1) {
193 _onTheFlyComboBox->setCurrentIndex(ii);
194 }
[1333]195 _autoStartCheckBox = new QCheckBox();
196 _autoStartCheckBox->setCheckState(Qt::CheckState(
197 settings.value("autoStart").toInt()));
[1678]198
199 // RINEX Observations Options
200 // --------------------------
201 _rnxPathLineEdit = new QLineEdit(settings.value("rnxPath").toString());
[106]202 _rnxIntrComboBox = new QComboBox();
203 _rnxIntrComboBox->setEditable(false);
[405]204 _rnxIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
[1678]205 ii = _rnxIntrComboBox->findText(settings.value("rnxIntr").toString());
[106]206 if (ii != -1) {
207 _rnxIntrComboBox->setCurrentIndex(ii);
208 }
[8398]209 _rnxSamplComboBox = new QComboBox();
210 _rnxSamplComboBox->setEditable(false);
211 _rnxSamplComboBox->addItems(QString("0.1 sec,1 sec,5 sec,10 sec,15 sec,30 sec,60 sec").split(","));
212 int ij = _rnxSamplComboBox->findText(settings.value("rnxSampl").toString());
213 if (ij != -1) {
214 _rnxSamplComboBox->setCurrentIndex(ij);
215 }
[6796]216 _rnxFileCheckBox = new QCheckBox();
217 _rnxFileCheckBox->setCheckState(Qt::CheckState(settings.value("rnxOnlyWithSKL").toInt()));
[1678]218 _rnxSkelLineEdit = new QLineEdit(settings.value("rnxSkel").toString());
219 _rnxSkelLineEdit->setMaximumWidth(5*ww);
220 _rnxScrpLineEdit = new QLineEdit(settings.value("rnxScript").toString());
[6751]221 _rnxV3CheckBox = new QCheckBox();
[1678]222 _rnxV3CheckBox->setCheckState(Qt::CheckState(settings.value("rnxV3").toInt()));
[6238]223 QString hlp = settings.value("rnxV2Priority").toString();
[6237]224 if (hlp.isEmpty()) {
[8632]225 hlp = "G:12&PWCSLX G:5&IQX R:12&PC R:3&IQX R:46&ABX E:16&BCXZ E:578&IQX J:1&SLXCZ J:26&SLX J:5&IQX C:267&IQX C:128&DPX C:7&DPZ I:ABCX S:1&C S:5&IQX";
[6237]226 }
227 _rnxV2Priority = new QLineEdit(hlp);
[1678]228
[7292]229 connect(_rnxPathLineEdit, SIGNAL(textChanged(const QString &)),
[2128]230 this, SLOT(slotBncTextChanged()));
[6683]231 connect(_rnxV3CheckBox, SIGNAL(stateChanged(int)),
232 this, SLOT(slotBncTextChanged()));
[2128]233
[1678]234 // RINEX Ephemeris Options
235 // -----------------------
236 _ephPathLineEdit = new QLineEdit(settings.value("ephPath").toString());
[560]237 _ephIntrComboBox = new QComboBox();
238 _ephIntrComboBox->setEditable(false);
[647]239 _ephIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
[560]240 int jj = _ephIntrComboBox->findText(settings.value("ephIntr").toString());
241 if (jj != -1) {
242 _ephIntrComboBox->setCurrentIndex(jj);
243 }
[7324]244 _ephOutPortLineEdit = new QLineEdit(settings.value("ephOutPort").toString());
[1678]245 _ephV3CheckBox = new QCheckBox();
246 _ephV3CheckBox->setCheckState(Qt::CheckState(settings.value("ephV3").toInt()));
247
[7324]248 connect(_ephOutPortLineEdit, SIGNAL(textChanged(const QString &)),
[2128]249 this, SLOT(slotBncTextChanged()));
250
251 connect(_ephPathLineEdit, SIGNAL(textChanged(const QString &)),
252 this, SLOT(slotBncTextChanged()));
253
[1682]254 // Broadcast Corrections Options
[1678]255 // -----------------------------
256 _corrPathLineEdit = new QLineEdit(settings.value("corrPath").toString());
[934]257 _corrIntrComboBox = new QComboBox();
258 _corrIntrComboBox->setEditable(false);
259 _corrIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
260 int mm = _corrIntrComboBox->findText(settings.value("corrIntr").toString());
261 if (mm != -1) {
262 _corrIntrComboBox->setCurrentIndex(mm);
263 }
[1678]264 _corrPortLineEdit = new QLineEdit(settings.value("corrPort").toString());
[740]265
[2128]266 connect(_corrPathLineEdit, SIGNAL(textChanged(const QString &)),
267 this, SLOT(slotBncTextChanged()));
268
269 connect(_corrPortLineEdit, SIGNAL(textChanged(const QString &)),
270 this, SLOT(slotBncTextChanged()));
271
[1678]272 // Feed Engine Options
273 // -------------------
274 _outPortLineEdit = new QLineEdit(settings.value("outPort").toString());
[7391]275 _outWaitSpinBox = new QSpinBox();
[9108]276 _outWaitSpinBox->setMinimum(0);
[7391]277 _outWaitSpinBox->setMaximum(30);
278 _outWaitSpinBox->setSingleStep(1);
279 _outWaitSpinBox->setSuffix(" sec");
280 _outWaitSpinBox->setValue(settings.value("outWait").toInt());
[8398]281 _outSamplComboBox = new QComboBox();
282 _outSamplComboBox->addItems(QString("0.1 sec,1 sec,5 sec,10 sec,15 sec,30 sec,60 sec").split(","));
[8492]283 int nn = _outSamplComboBox->findText(settings.value("outSampl").toString());
[8398]284 if (nn != -1) {
[8492]285 _outSamplComboBox->setCurrentIndex(nn);
[8398]286 }
[1678]287 _outFileLineEdit = new QLineEdit(settings.value("outFile").toString());
288 _outUPortLineEdit = new QLineEdit(settings.value("outUPort").toString());
[8620]289 _outLockTimeCheckBox = new QCheckBox();
290 _outLockTimeCheckBox->setCheckState(Qt::CheckState(settings.value("outLockTime").toInt()));
[740]291
[2128]292 connect(_outPortLineEdit, SIGNAL(textChanged(const QString &)),
293 this, SLOT(slotBncTextChanged()));
294
295 connect(_outFileLineEdit, SIGNAL(textChanged(const QString &)),
296 this, SLOT(slotBncTextChanged()));
297
[8620]298 connect(_outLockTimeCheckBox, SIGNAL(stateChanged(int)),
[8616]299 this, SLOT(slotBncTextChanged()));
300
[1746]301 // Serial Output Options
302 // ---------------------
[1678]303 _serialMountPointLineEdit = new QLineEdit(settings.value("serialMountPoint").toString());
[1327]304 _serialPortNameLineEdit = new QLineEdit(settings.value("serialPortName").toString());
[1329]305 _serialBaudRateComboBox = new QComboBox();
[1332]306 _serialBaudRateComboBox->addItems(QString("110,300,600,"
307 "1200,2400,4800,9600,19200,38400,57600,115200").split(","));
[1678]308 int kk = _serialBaudRateComboBox->findText(settings.value("serialBaudRate").toString());
[1329]309 if (kk != -1) {
310 _serialBaudRateComboBox->setCurrentIndex(kk);
311 }
[1678]312 _serialFlowControlComboBox = new QComboBox();
313 _serialFlowControlComboBox->addItems(QString("OFF,XONXOFF,HARDWARE").split(","));
314 kk = _serialFlowControlComboBox->findText(settings.value("serialFlowControl").toString());
[1329]315 if (kk != -1) {
[1678]316 _serialFlowControlComboBox->setCurrentIndex(kk);
[1329]317 }
318 _serialDataBitsComboBox = new QComboBox();
319 _serialDataBitsComboBox->addItems(QString("5,6,7,8").split(","));
320 kk = _serialDataBitsComboBox->findText(settings.value("serialDataBits").toString());
321 if (kk != -1) {
322 _serialDataBitsComboBox->setCurrentIndex(kk);
323 }
[1678]324 _serialParityComboBox = new QComboBox();
325 _serialParityComboBox->addItems(QString("NONE,ODD,EVEN,SPACE").split(","));
326 kk = _serialParityComboBox->findText(settings.value("serialParity").toString());
327 if (kk != -1) {
328 _serialParityComboBox->setCurrentIndex(kk);
329 }
[1329]330 _serialStopBitsComboBox = new QComboBox();
331 _serialStopBitsComboBox->addItems(QString("1,2").split(","));
332 kk = _serialStopBitsComboBox->findText(settings.value("serialStopBits").toString());
333 if (kk != -1) {
334 _serialStopBitsComboBox->setCurrentIndex(kk);
335 }
[1595]336 _serialAutoNMEAComboBox = new QComboBox();
[6785]337 _serialAutoNMEAComboBox->addItems(QString("no,Auto,Manual GPGGA,Manual GNGGA").split(","));
[1595]338 kk = _serialAutoNMEAComboBox->findText(settings.value("serialAutoNMEA").toString());
339 if (kk != -1) {
340 _serialAutoNMEAComboBox->setCurrentIndex(kk);
341 }
[1601]342 _serialFileNMEALineEdit = new QLineEdit(settings.value("serialFileNMEA").toString());
[1595]343 _serialHeightNMEALineEdit = new QLineEdit(settings.value("serialHeightNMEA").toString());
[1678]344
[6751]345 _serialManualNMEASamplingSpinBox = new QSpinBox();
346 _serialManualNMEASamplingSpinBox->setMinimum(0);
347 _serialManualNMEASamplingSpinBox->setMaximum(300);
348 _serialManualNMEASamplingSpinBox->setSingleStep(10);
349 _serialManualNMEASamplingSpinBox->setValue(settings.value("serialManualNMEASampling").toInt());
350 _serialManualNMEASamplingSpinBox->setSuffix(" sec");
351
[2128]352 connect(_serialMountPointLineEdit, SIGNAL(textChanged(const QString &)),
353 this, SLOT(slotBncTextChanged()));
354
355 connect(_serialAutoNMEAComboBox, SIGNAL(currentIndexChanged(const QString &)),
356 this, SLOT(slotBncTextChanged()));
357
[1678]358 // Outages Options
359 // ---------------
[7331]360 _adviseObsRateComboBox = new QComboBox();
361 _adviseObsRateComboBox->setEditable(false);
362 _adviseObsRateComboBox->addItems(QString(",0.1 Hz,0.2 Hz,0.5 Hz,1 Hz,5 Hz").split(","));
363 kk = _adviseObsRateComboBox->findText(settings.value("adviseObsRate").toString());
[1678]364 if (kk != -1) {
[7331]365 _adviseObsRateComboBox->setCurrentIndex(kk);
[1678]366 }
367 _adviseFailSpinBox = new QSpinBox();
368 _adviseFailSpinBox->setMinimum(0);
369 _adviseFailSpinBox->setMaximum(60);
370 _adviseFailSpinBox->setSingleStep(1);
371 _adviseFailSpinBox->setSuffix(" min");
372 _adviseFailSpinBox->setValue(settings.value("adviseFail").toInt());
373 _adviseRecoSpinBox = new QSpinBox();
374 _adviseRecoSpinBox->setMinimum(0);
375 _adviseRecoSpinBox->setMaximum(60);
376 _adviseRecoSpinBox->setSingleStep(1);
377 _adviseRecoSpinBox->setSuffix(" min");
378 _adviseRecoSpinBox->setValue(settings.value("adviseReco").toInt());
379 _adviseScriptLineEdit = new QLineEdit(settings.value("adviseScript").toString());
380
[7331]381 connect(_adviseObsRateComboBox, SIGNAL(currentIndexChanged(const QString &)),
[2128]382 this, SLOT(slotBncTextChanged()));
383
[1678]384 // Miscellaneous Options
385 // ---------------------
386 _miscMountLineEdit = new QLineEdit(settings.value("miscMount").toString());
[5644]387 _miscPortLineEdit = new QLineEdit(settings.value("miscPort").toString());
[7419]388 _miscIntrComboBox = new QComboBox();
389 _miscIntrComboBox->setEditable(false);
[7479]390 _miscIntrComboBox->addItems(QString(",2 sec,10 sec,1 min,5 min,15 min,1 hour,6 hours,1 day").split(","));
[7419]391 int ll = _miscIntrComboBox->findText(settings.value("miscIntr").toString());
[709]392 if (ll != -1) {
[7419]393 _miscIntrComboBox->setCurrentIndex(ll);
[709]394 }
[7419]395 _miscScanRTCMCheckBox = new QCheckBox();
396 _miscScanRTCMCheckBox->setCheckState(Qt::CheckState(
397 settings.value("miscScanRTCM").toInt()));
[709]398
[2128]399 connect(_miscMountLineEdit, SIGNAL(textChanged(const QString &)),
400 this, SLOT(slotBncTextChanged()));
401
[1678]402 // Streams
403 // -------
[7176]404 _mountPointsTable = new QTableWidget(0,9);
[375]405
[679]406 _mountPointsTable->horizontalHeader()->resizeSection(1,34*ww);
[366]407 _mountPointsTable->horizontalHeader()->resizeSection(2,9*ww);
[7176]408 _mountPointsTable->horizontalHeader()->resizeSection(3,9*ww);
409 _mountPointsTable->horizontalHeader()->resizeSection(4,7*ww);
410 _mountPointsTable->horizontalHeader()->resizeSection(5,7*ww);
411 _mountPointsTable->horizontalHeader()->resizeSection(6,5*ww);
412 _mountPointsTable->horizontalHeader()->resizeSection(7,5*ww);
[199]413 _mountPointsTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
[203]414 _mountPointsTable->horizontalHeader()->setStretchLastSection(true);
[2269]415 _mountPointsTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
[5716]416 _mountPointsTable->setHorizontalHeaderLabels(labels);
[115]417 _mountPointsTable->setGridStyle(Qt::NoPen);
418 _mountPointsTable->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
[35]419 _mountPointsTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
420 _mountPointsTable->setSelectionBehavior(QAbstractItemView::SelectRows);
[111]421 _mountPointsTable->hideColumn(0);
[7201]422 _mountPointsTable->hideColumn(3);
[7292]423 connect(_mountPointsTable, SIGNAL(itemSelectionChanged()),
[83]424 SLOT(slotSelectionChanged()));
[1178]425 populateMountPointsTable();
[35]426
[5947]427 _log = new QTextEdit();
[83]428 _log->setReadOnly(true);
[5947]429 QFont msFont(""); msFont.setStyleHint(QFont::TypeWriter); // default monospace font
430 _log->setFont(msFont);
431 _log->document()->setMaximumBlockCount(1000);
[35]432
[4185]433 // Combine Corrections
434 // -------------------
[3059]435 _cmbTable = new QTableWidget(0,3);
436 _cmbTable->setHorizontalHeaderLabels(QString("Mountpoint, AC Name, Weight").split(","));
437 _cmbTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
438 _cmbTable->setSelectionBehavior(QAbstractItemView::SelectRows);
439 _cmbTable->setMaximumWidth(30*ww);
[7292]440 _cmbTable->horizontalHeader()->resizeSection(0,10*ww);
441 _cmbTable->horizontalHeader()->resizeSection(1,8*ww);
442 _cmbTable->horizontalHeader()->resizeSection(2,8*ww);
[3059]443 _cmbTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
444 _cmbTable->horizontalHeader()->setStretchLastSection(true);
445 _cmbTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
[7292]446
[3328]447 _cmbMaxresLineEdit = new QLineEdit(settings.value("cmbMaxres").toString());
[6172]448 _cmbUseGlonass = new QCheckBox();
449 _cmbUseGlonass->setCheckState(Qt::CheckState(settings.value("cmbUseGlonass").toInt()));
[3059]450
[4179]451 _cmbSamplSpinBox = new QSpinBox;
[4181]452 _cmbSamplSpinBox->setMinimum(10);
[4179]453 _cmbSamplSpinBox->setMaximum(60);
[4181]454 _cmbSamplSpinBox->setSingleStep(10);
[4179]455 _cmbSamplSpinBox->setMaximumWidth(9*ww);
456 _cmbSamplSpinBox->setValue(settings.value("cmbSampl").toInt());
457 _cmbSamplSpinBox->setSuffix(" sec");
458
[3059]459 QPushButton* addCmbRowButton = new QPushButton("Add Row");
460 QPushButton* delCmbRowButton = new QPushButton("Delete");
461
[3813]462 connect(_cmbTable, SIGNAL(itemSelectionChanged()),
[7292]463 SLOT(slotBncTextChanged()));
[3066]464
[3469]465 _cmbMethodComboBox = new QComboBox();
466 _cmbMethodComboBox->setEditable(false);
[3480]467 _cmbMethodComboBox->addItems(QString("Filter,Single-Epoch").split(","));
[3469]468 int im = _cmbMethodComboBox->findText(settings.value("cmbMethod").toString());
469 if (im != -1) {
470 _cmbMethodComboBox->setCurrentIndex(im);
471 }
472
[3813]473 int iRow = _cmbTable->rowCount();
474 if (iRow > 0) {
475 enableWidget(true, _cmbMethodComboBox);
[6766]476 enableWidget(true, _cmbMaxresLineEdit);
477 enableWidget(true, _cmbSamplSpinBox);
478 enableWidget(true, _cmbUseGlonass);
[7292]479 }
[3813]480 else {
481 enableWidget(false, _cmbMethodComboBox);
[6766]482 enableWidget(false, _cmbMaxresLineEdit);
483 enableWidget(false, _cmbSamplSpinBox);
484 enableWidget(false, _cmbUseGlonass);
[3813]485 }
486
[3164]487 // Upload Results
[3152]488 // -------------
[9036]489 _uploadTable = new QTableWidget(0,13);
490 _uploadTable->setHorizontalHeaderLabels(QString("Host, Port, Mount, Password, System, Format, CoM, SP3 File, RNX File, PID, SID, IOD, bytes").split(","));
[3164]491 _uploadTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
492 _uploadTable->setSelectionBehavior(QAbstractItemView::SelectRows);
[7292]493 _uploadTable->horizontalHeader()->resizeSection( 0,13*ww);
494 _uploadTable->horizontalHeader()->resizeSection( 1, 5*ww);
495 _uploadTable->horizontalHeader()->resizeSection( 2, 6*ww);
496 _uploadTable->horizontalHeader()->resizeSection( 3, 8*ww);
497 _uploadTable->horizontalHeader()->resizeSection( 4,11*ww);
[9036]498 _uploadTable->horizontalHeader()->resizeSection( 5,11*ww);
499 _uploadTable->horizontalHeader()->resizeSection( 6, 4*ww);
[7292]500 _uploadTable->horizontalHeader()->resizeSection( 7,15*ww);
[9036]501 _uploadTable->horizontalHeader()->resizeSection( 8,15*ww);
[7292]502 _uploadTable->horizontalHeader()->resizeSection( 9, 4*ww);
503 _uploadTable->horizontalHeader()->resizeSection(10, 4*ww);
[9036]504 _uploadTable->horizontalHeader()->resizeSection(11, 4*ww);
505 _uploadTable->horizontalHeader()->resizeSection(12,12*ww);
[3164]506 _uploadTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
[4185]507 _uploadTable->horizontalHeader()->setStretchLastSection(true);
[3164]508 _uploadTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft);
[3152]509
[7292]510 connect(_uploadTable, SIGNAL(itemSelectionChanged()),
[3585]511 SLOT(slotBncTextChanged()));
512
[3164]513 QPushButton* addUploadRowButton = new QPushButton("Add Row");
[3193]514 QPushButton* delUploadRowButton = new QPushButton("Del Row");
515 QPushButton* setUploadTrafoButton = new QPushButton("Custom Trafo");
[3197]516 _uploadIntrComboBox = new QComboBox;
517 _uploadIntrComboBox->setEditable(false);
[3271]518 _uploadIntrComboBox->addItems(QString("1 day,1 hour, 30 min,15 min,10 min,5 min,2 min,1 min").split(","));
[3197]519 ii = _uploadIntrComboBox->findText(settings.value("uploadIntr").toString());
520 if (ii != -1) {
521 _uploadIntrComboBox->setCurrentIndex(ii);
522 }
[3152]523
[6665]524 _uploadAntexFile = new qtFileChooser(0, qtFileChooser::File);
525 _uploadAntexFile->setFileName(settings.value("uploadAntexFile").toString());
526
[4172]527 _uploadSamplRtcmEphCorrSpinBox = new QSpinBox;
528 _uploadSamplRtcmEphCorrSpinBox->setMinimum(0);
529 _uploadSamplRtcmEphCorrSpinBox->setMaximum(60);
530 _uploadSamplRtcmEphCorrSpinBox->setSingleStep(5);
531 _uploadSamplRtcmEphCorrSpinBox->setMaximumWidth(9*ww);
532 _uploadSamplRtcmEphCorrSpinBox->setValue(settings.value("uploadSamplRtcmEphCorr").toInt());
533 _uploadSamplRtcmEphCorrSpinBox->setSuffix(" sec");
[3152]534
[4172]535 _uploadSamplSp3SpinBox = new QSpinBox;
536 _uploadSamplSp3SpinBox->setMinimum(0);
[4173]537 _uploadSamplSp3SpinBox->setMaximum(15);
538 _uploadSamplSp3SpinBox->setSingleStep(1);
[4172]539 _uploadSamplSp3SpinBox->setMaximumWidth(9*ww);
540 _uploadSamplSp3SpinBox->setValue(settings.value("uploadSamplSp3").toInt());
[4173]541 _uploadSamplSp3SpinBox->setSuffix(" min");
[4172]542
543 _uploadSamplClkRnxSpinBox = new QSpinBox;
544 _uploadSamplClkRnxSpinBox->setMinimum(0);
545 _uploadSamplClkRnxSpinBox->setMaximum(60);
546 _uploadSamplClkRnxSpinBox->setSingleStep(5);
547 _uploadSamplClkRnxSpinBox->setMaximumWidth(9*ww);
548 _uploadSamplClkRnxSpinBox->setValue(settings.value("uploadSamplClkRnx").toInt());
549 _uploadSamplClkRnxSpinBox->setSuffix(" sec");
550
[3813]551 int iRowT = _uploadTable->rowCount();
552 if (iRowT > 0) {
553 enableWidget(true, _uploadIntrComboBox);
[4172]554 enableWidget(true, _uploadSamplRtcmEphCorrSpinBox);
555 enableWidget(true, _uploadSamplSp3SpinBox);
556 enableWidget(true, _uploadSamplClkRnxSpinBox);
[6665]557 enableWidget(true, _uploadAntexFile);
[7292]558 }
[3813]559 else {
560 enableWidget(false, _uploadIntrComboBox);
[4172]561 enableWidget(false, _uploadSamplRtcmEphCorrSpinBox);
562 enableWidget(false, _uploadSamplSp3SpinBox);
563 enableWidget(false, _uploadSamplClkRnxSpinBox);
[6665]564 enableWidget(false, _uploadAntexFile);
[3813]565 }
566
[3240]567 // Upload RTCM3 Ephemeris
568 // ----------------------
569 _uploadEphHostLineEdit = new QLineEdit(settings.value("uploadEphHost").toString());
570 _uploadEphPortLineEdit = new QLineEdit(settings.value("uploadEphPort").toString());
571 _uploadEphPasswordLineEdit = new QLineEdit(settings.value("uploadEphPassword").toString());
572 _uploadEphPasswordLineEdit->setEchoMode(QLineEdit::PasswordEchoOnEdit);
573 _uploadEphMountpointLineEdit = new QLineEdit(settings.value("uploadEphMountpoint").toString());
574 _uploadEphSampleSpinBox = new QSpinBox;
[3271]575 _uploadEphSampleSpinBox->setMinimum(5);
[3240]576 _uploadEphSampleSpinBox->setMaximum(60);
577 _uploadEphSampleSpinBox->setSingleStep(5);
578 _uploadEphSampleSpinBox->setMaximumWidth(9*ww);
579 _uploadEphSampleSpinBox->setValue(settings.value("uploadEphSample").toInt());
580 _uploadEphSampleSpinBox->setSuffix(" sec");
[3245]581 _uploadEphBytesCounter = new bncBytesCounter;
[3240]582
[679]583 // Canvas with Editable Fields
584 // ---------------------------
585 _canvas = new QWidget;
586 setCentralWidget(_canvas);
[143]587
[1925]588 _aogroup = new QTabWidget();
[6661]589 _aogroup->setElideMode(Qt::ElideNone);
590 _aogroup->setUsesScrollButtons(true);
[679]591 QWidget* pgroup = new QWidget();
592 QWidget* ggroup = new QWidget();
593 QWidget* sgroup = new QWidget();
594 QWidget* egroup = new QWidget();
595 QWidget* agroup = new QWidget();
[934]596 QWidget* cgroup = new QWidget();
[679]597 QWidget* ogroup = new QWidget();
[1030]598 QWidget* rgroup = new QWidget();
[1327]599 QWidget* sergroup = new QWidget();
[5686]600 QWidget* pppGroup1 = new QWidget();
601 QWidget* pppGroup2 = new QWidget();
[5690]602 QWidget* pppGroup3 = new QWidget();
[5861]603 QWidget* pppGroup4 = new QWidget();
[3897]604 QWidget* reqcgroup = new QWidget();
[6332]605 QWidget* sp3CompGroup = new QWidget();
[2868]606 QWidget* cmbgroup = new QWidget();
[3164]607 QWidget* uploadgroup = new QWidget();
[3241]608 QWidget* uploadEphgroup = new QWidget();
[3356]609 _aogroup->addTab(pgroup,tr("Network"));
[1925]610 _aogroup->addTab(ggroup,tr("General"));
611 _aogroup->addTab(ogroup,tr("RINEX Observations"));
612 _aogroup->addTab(egroup,tr("RINEX Ephemeris"));
[3897]613 _aogroup->addTab(reqcgroup,tr("RINEX Editing && QC"));
[6332]614 _aogroup->addTab(sp3CompGroup,tr("SP3 Comparison"));
[1925]615 _aogroup->addTab(cgroup,tr("Broadcast Corrections"));
616 _aogroup->addTab(sgroup,tr("Feed Engine"));
617 _aogroup->addTab(sergroup,tr("Serial Output"));
618 _aogroup->addTab(agroup,tr("Outages"));
619 _aogroup->addTab(rgroup,tr("Miscellaneous"));
[5861]620 _aogroup->addTab(pppGroup1,tr("PPP (1)"));
621 _aogroup->addTab(pppGroup2,tr("PPP (2)"));
622 _aogroup->addTab(pppGroup3,tr("PPP (3)"));
[5865]623 _aogroup->addTab(pppGroup4,tr("PPP (4)"));
[4185]624 _aogroup->addTab(cmbgroup,tr("Combine Corrections"));
625 _aogroup->addTab(uploadgroup,tr("Upload Corrections"));
626 _aogroup->addTab(uploadEphgroup,tr("Upload Ephemeris"));
[143]627
[1957]628 // Log Tab
629 // -------
[1925]630 _loggroup = new QTabWidget();
[1957]631 _loggroup->addTab(_log,tr("Log"));
632 _loggroup->addTab(_bncFigure,tr("Throughput"));
[1972]633 _loggroup->addTab(_bncFigureLate,tr("Latency"));
[2303]634 _loggroup->addTab(_bncFigurePPP,tr("PPP Plot"));
[1912]635
[3356]636 // Netowork (Proxy and SSL) Tab
637 // ----------------------------
[679]638 QGridLayout* pLayout = new QGridLayout;
[1409]639 pLayout->setColumnMinimumWidth(0,13*ww);
[1678]640 _proxyPortLineEdit->setMaximumWidth(9*ww);
641
[6711]642 pLayout->addWidget(new QLabel("Settings for proxy in protected networks and for SSL authorization, leave boxes blank if none.<br>"),0, 0, 1, 50);
[3766]643 pLayout->addWidget(new QLabel("Proxy host"), 1, 0);
644 pLayout->addWidget(_proxyHostLineEdit, 1, 1, 1,10);
645 pLayout->addWidget(new QLabel("Proxy port"), 2, 0);
646 pLayout->addWidget(_proxyPortLineEdit, 2, 1);
[6633]647 pLayout->addWidget(new QLabel("Path to SSL certificates"), 3, 0);
[3766]648 pLayout->addWidget(_sslCaCertPathLineEdit, 3, 1, 1,10);
[3778]649 pLayout->addWidget(new QLabel("Default: " + bncSslConfig::defaultPath()), 3,11, 1,20);
[6633]650 pLayout->addWidget(new QLabel("Ignore SSL authorization errors"), 4, 0);
[7513]651 pLayout->addWidget(_sslIgnoreErrorsCheckBox, 4, 1, 1,10);
[6637]652 pLayout->addWidget(new QLabel(""), 5, 1);
653 pLayout->setRowStretch(6, 999);
654
[679]655 pgroup->setLayout(pLayout);
[1439]656
[1678]657 // General Tab
658 // -----------
[679]659 QGridLayout* gLayout = new QGridLayout;
[1042]660 gLayout->setColumnMinimumWidth(0,14*ww);
[1678]661 _onTheFlyComboBox->setMaximumWidth(9*ww);
662
[6889]663 gLayout->addWidget(new QLabel("General settings for logfile, file handling, configuration on-the-fly, auto-start, and raw file output.<br>"),0, 0, 1, 50);
[3766]664 gLayout->addWidget(new QLabel("Logfile (full path)"), 1, 0);
[6662]665 gLayout->addWidget(_logFileLineEdit, 1, 1, 1,20);
[3766]666 gLayout->addWidget(new QLabel("Append files"), 2, 0);
667 gLayout->addWidget(_rnxAppendCheckBox, 2, 1);
668 gLayout->addWidget(new QLabel("Reread configuration"), 3, 0);
669 gLayout->addWidget(_onTheFlyComboBox, 3, 1);
670 gLayout->addWidget(new QLabel("Auto start"), 4, 0);
671 gLayout->addWidget(_autoStartCheckBox, 4, 1);
672 gLayout->addWidget(new QLabel("Raw output file (full path)"), 5, 0);
[6662]673 gLayout->addWidget(_rawOutFileLineEdit, 5, 1, 1,20);
[6637]674 gLayout->addWidget(new QLabel(""), 6, 1);
675 gLayout->setRowStretch(7, 999);
676
[679]677 ggroup->setLayout(gLayout);
[533]678
[1678]679 // RINEX Observations
680 // ------------------
681 QGridLayout* oLayout = new QGridLayout;
682 oLayout->setColumnMinimumWidth(0,14*ww);
683 _rnxIntrComboBox->setMaximumWidth(9*ww);
[8398]684 _rnxSamplComboBox->setMaximumWidth(9*ww);
[143]685
[6711]686 oLayout->addWidget(new QLabel("Saving RINEX observation files.<br>"),0, 0, 1,50);
[3766]687 oLayout->addWidget(new QLabel("Directory"), 1, 0);
[6662]688 oLayout->addWidget(_rnxPathLineEdit, 1, 1, 1, 15);
[3766]689 oLayout->addWidget(new QLabel("Interval"), 2, 0);
690 oLayout->addWidget(_rnxIntrComboBox, 2, 1);
691 oLayout->addWidget(new QLabel(" Sampling"), 2, 2, Qt::AlignRight);
[8398]692 oLayout->addWidget(_rnxSamplComboBox, 2, 3, Qt::AlignLeft);
[3766]693 oLayout->addWidget(new QLabel("Skeleton extension"), 3, 0);
[6649]694 oLayout->addWidget(_rnxSkelLineEdit, 3, 1, Qt::AlignLeft);
[6822]695 oLayout->addWidget(new QLabel("Skeleton mandatory"), 3, 2);
[6796]696 oLayout->addWidget(_rnxFileCheckBox, 3, 3);
[3766]697 oLayout->addWidget(new QLabel("Script (full path)"), 4, 0);
[6662]698 oLayout->addWidget(_rnxScrpLineEdit, 4, 1, 1, 15);
[7983]699 oLayout->addWidget(new QLabel("Version 2 signal priority"), 5, 0);
700 oLayout->addWidget(_rnxV2Priority, 5, 1, 1, 15);
[6266]701 oLayout->addWidget(new QLabel("Version 3"), 6, 0);
702 oLayout->addWidget(_rnxV3CheckBox, 6, 1);
[6637]703 oLayout->addWidget(new QLabel(""), 7, 1);
704 oLayout->setRowStretch(8, 999);
705
[1678]706 ogroup->setLayout(oLayout);
707
[1439]708 // RINEX Ephemeris
709 // ---------------
[679]710 QGridLayout* eLayout = new QGridLayout;
[1042]711 eLayout->setColumnMinimumWidth(0,14*ww);
[1678]712 _ephIntrComboBox->setMaximumWidth(9*ww);
[7324]713 _ephOutPortLineEdit->setMaximumWidth(9*ww);
[1678]714
[6711]715 eLayout->addWidget(new QLabel("Saving RINEX navigation files and ephemeris output through IP port.<br>"),0,0,1,70);
[3766]716 eLayout->addWidget(new QLabel("Directory"), 1, 0);
717 eLayout->addWidget(_ephPathLineEdit, 1, 1, 1,30);
718 eLayout->addWidget(new QLabel("Interval"), 2, 0);
719 eLayout->addWidget(_ephIntrComboBox, 2, 1);
720 eLayout->addWidget(new QLabel("Port"), 3, 0);
[7324]721 eLayout->addWidget(_ephOutPortLineEdit, 3, 1);
[3766]722 eLayout->addWidget(new QLabel("Version 3"), 4, 0);
723 eLayout->addWidget(_ephV3CheckBox, 4, 1);
[6650]724 eLayout->setRowStretch(5, 999);
[6637]725
[679]726 egroup->setLayout(eLayout);
[560]727
[1454]728
[1682]729 // Broadcast Corrections
[1439]730 // ---------------------
[934]731 QGridLayout* cLayout = new QGridLayout;
[1042]732 cLayout->setColumnMinimumWidth(0,14*ww);
[1678]733 _corrIntrComboBox->setMaximumWidth(9*ww);
734 _corrPortLineEdit->setMaximumWidth(9*ww);
735
[6711]736 cLayout->addWidget(new QLabel("Saving Broadcast Ephemeris correction files and correction output through IP port.<br>"),0,0,1,70);
[3766]737 cLayout->addWidget(new QLabel("Directory, ASCII"), 1, 0);
[6662]738 cLayout->addWidget(_corrPathLineEdit, 1, 1, 1,30);
[3766]739 cLayout->addWidget(new QLabel("Interval"), 2, 0);
740 cLayout->addWidget(_corrIntrComboBox, 2, 1);
741 cLayout->addWidget(new QLabel("Port"), 3, 0);
742 cLayout->addWidget(_corrPortLineEdit, 3, 1);
[6637]743 cLayout->addWidget(new QLabel(""), 4, 1);
744 cLayout->setRowStretch(7, 999);
[934]745 cgroup->setLayout(cLayout);
746
[1678]747 // Feed Engine
748 // -----------
749 QGridLayout* sLayout = new QGridLayout;
750 sLayout->setColumnMinimumWidth(0,14*ww);
751 _outPortLineEdit->setMaximumWidth(9*ww);
[7391]752 _outWaitSpinBox->setMaximumWidth(9*ww);
[8398]753 _outSamplComboBox->setMaximumWidth(9*ww);
[1678]754 _outUPortLineEdit->setMaximumWidth(9*ww);
755
[6711]756 sLayout->addWidget(new QLabel("Output decoded observations in ASCII format to feed a real-time GNSS network engine.<br>"),0,0,1,50);
[6655]757 sLayout->addWidget(new QLabel("Port"), 1, 0);
758 sLayout->addWidget(_outPortLineEdit, 1, 1);
759 sLayout->addWidget(new QLabel(" Wait for full obs epoch"), 1, 2, Qt::AlignRight);
[7391]760 sLayout->addWidget(_outWaitSpinBox, 1, 3, Qt::AlignLeft);
[6655]761 sLayout->addWidget(new QLabel("Sampling"), 2, 0);
[8398]762 sLayout->addWidget(_outSamplComboBox, 2, 1, Qt::AlignLeft);
[6655]763 sLayout->addWidget(new QLabel("File (full path)"), 3, 0);
[6662]764 sLayout->addWidget(_outFileLineEdit, 3, 1, 1, 10);
[6655]765 sLayout->addWidget(new QLabel("Port (unsynchronized)"), 4, 0);
766 sLayout->addWidget(_outUPortLineEdit, 4, 1);
[8616]767 sLayout->addWidget(new QLabel("Print lock time"), 5, 0);
[8620]768 sLayout->addWidget(_outLockTimeCheckBox, 5, 1);
[8616]769 sLayout->addWidget(new QLabel(""), 6, 1);
770 sLayout->setRowStretch(7, 999);
[6637]771
[1678]772 sgroup->setLayout(sLayout);
773
[1746]774 // Serial Output
775 // -------------
[1327]776 QGridLayout* serLayout = new QGridLayout;
[6789]777 serLayout->setColumnMinimumWidth(0,12*ww);
[1678]778 _serialBaudRateComboBox->setMaximumWidth(9*ww);
779 _serialFlowControlComboBox->setMaximumWidth(11*ww);
780 _serialDataBitsComboBox->setMaximumWidth(5*ww);
781 _serialParityComboBox->setMaximumWidth(9*ww);
782 _serialStopBitsComboBox->setMaximumWidth(5*ww);
[6789]783 _serialAutoNMEAComboBox->setMaximumWidth(14*ww);
[1595]784 _serialHeightNMEALineEdit->setMaximumWidth(8*ww);
[6751]785 _serialManualNMEASamplingSpinBox->setMaximumWidth(8*ww);
[1678]786
[6711]787 serLayout->addWidget(new QLabel("Port settings to feed a serial connected receiver.<br>"),0,0,1,30);
[3766]788 serLayout->addWidget(new QLabel("Mountpoint"), 1, 0, Qt::AlignLeft);
789 serLayout->addWidget(_serialMountPointLineEdit, 1, 1, 1, 2);
790 serLayout->addWidget(new QLabel("Port name"), 2, 0, Qt::AlignLeft);
791 serLayout->addWidget(_serialPortNameLineEdit, 2, 1, 1, 2);
792 serLayout->addWidget(new QLabel("Baud rate"), 3, 0, Qt::AlignLeft);
793 serLayout->addWidget(_serialBaudRateComboBox, 3, 1);
794 serLayout->addWidget(new QLabel("Flow control"), 3, 2, Qt::AlignRight);
795 serLayout->addWidget(_serialFlowControlComboBox, 3, 3);
796 serLayout->addWidget(new QLabel("Data bits"), 4, 0, Qt::AlignLeft);
797 serLayout->addWidget(_serialDataBitsComboBox, 4, 1);
798 serLayout->addWidget(new QLabel("Parity"), 4, 2, Qt::AlignRight);
799 serLayout->addWidget(_serialParityComboBox, 4, 3);
800 serLayout->addWidget(new QLabel(" Stop bits"), 4, 4, Qt::AlignRight);
801 serLayout->addWidget(_serialStopBitsComboBox, 4, 5);
802 serLayout->addWidget(new QLabel("NMEA"), 5, 0);
803 serLayout->addWidget(_serialAutoNMEAComboBox, 5, 1);
[6789]804 serLayout->addWidget(new QLabel(" File (full path)"), 5, 2, Qt::AlignRight);
[6663]805 serLayout->addWidget(_serialFileNMEALineEdit, 5, 3, 1,10);
[6789]806 serLayout->addWidget(new QLabel("Height"), 5,14, Qt::AlignRight);
[6663]807 serLayout->addWidget(_serialHeightNMEALineEdit, 5,15, 1,11);
[6751]808 serLayout->addWidget(new QLabel("Sampling"), 5,25, Qt::AlignRight);
[6785]809 serLayout->addWidget(_serialManualNMEASamplingSpinBox, 5,26, 1,12);
[6637]810 serLayout->addWidget(new QLabel(""), 6, 1);
811 serLayout->setRowStretch(7, 999);
[1329]812
[1327]813 sergroup->setLayout(serLayout);
814
[1678]815 // Outages
816 // -------
817 QGridLayout* aLayout = new QGridLayout;
818 aLayout->setColumnMinimumWidth(0,14*ww);
[7331]819 _adviseObsRateComboBox->setMaximumWidth(9*ww);
[1678]820 _adviseFailSpinBox->setMaximumWidth(9*ww);
821 _adviseRecoSpinBox->setMaximumWidth(9*ww);
822
[6711]823 aLayout->addWidget(new QLabel("Failure and recovery reports, advisory notes.<br>"),0,0,1,50,Qt::AlignLeft);
[3766]824 aLayout->addWidget(new QLabel("Observation rate"), 1, 0);
[7331]825 aLayout->addWidget(_adviseObsRateComboBox, 1, 1);
[3766]826 aLayout->addWidget(new QLabel("Failure threshold"), 2, 0);
827 aLayout->addWidget(_adviseFailSpinBox, 2, 1);
828 aLayout->addWidget(new QLabel("Recovery threshold"), 3, 0);
829 aLayout->addWidget(_adviseRecoSpinBox, 3, 1);
830 aLayout->addWidget(new QLabel("Script (full path)"), 4, 0);
[6655]831 aLayout->addWidget(_adviseScriptLineEdit, 4, 1, 1,20);
[6637]832 aLayout->addWidget(new QLabel(""), 5, 1);
833 aLayout->setRowStretch(6, 999);
834
[1678]835 agroup->setLayout(aLayout);
836
837 // Miscellaneous
838 // -------------
839 QGridLayout* rLayout = new QGridLayout;
840 rLayout->setColumnMinimumWidth(0,14*ww);
[7419]841 _miscIntrComboBox->setMaximumWidth(9*ww);
[5644]842 _miscPortLineEdit->setMaximumWidth(9*ww);
[1678]843
[6711]844 rLayout->addWidget(new QLabel("Log latencies or scan RTCM streams for message types and antenna information or output raw data through TCP/IP port.<br>"),0, 0,1,50);
[3766]845 rLayout->addWidget(new QLabel("Mountpoint"), 1, 0);
[6655]846 rLayout->addWidget(_miscMountLineEdit, 1, 1, 1, 7);
[3766]847 rLayout->addWidget(new QLabel("Log latency"), 2, 0);
[7419]848 rLayout->addWidget(_miscIntrComboBox, 2, 1);
[3766]849 rLayout->addWidget(new QLabel("Scan RTCM"), 3, 0);
[7419]850 rLayout->addWidget(_miscScanRTCMCheckBox, 3, 1);
[5644]851 rLayout->addWidget(new QLabel("Port"), 4, 0);
852 rLayout->addWidget(_miscPortLineEdit, 4, 1);
[6637]853 rLayout->addWidget(new QLabel(""), 5, 1);
854 rLayout->setRowStretch(6, 999);
855
[1678]856 rgroup->setLayout(rLayout);
857
[5861]858 // PPP
859 // ---
[6660]860 _pppWidgets._dataSource->setMaximumWidth(20*ww);
861 _pppWidgets._corrMount->setMaximumWidth(20*ww);
862
[7522]863 _pppWidgets._corrFile->setMaximumWidth(35*ww);
[7492]864 _pppWidgets._crdFile->setMaximumWidth(35*ww);
[7522]865 _pppWidgets._logPath->setMaximumWidth(35*ww);
[7506]866 _pppWidgets._snxtroPath->setMaximumWidth(35*ww);
[7764]867 _pppWidgets._snxtroIntr->setMaximumWidth(10*ww);
868 _pppWidgets._snxtroAc ->setMaximumWidth(10*ww);
869 _pppWidgets._snxtroSol ->setMaximumWidth(7*ww);
[7492]870
[5861]871 QGridLayout* pppLayout1 = new QGridLayout();
[3731]872 int ir = 0;
[6700]873 pppLayout1->addWidget(new QLabel("Precise Point Positioning - Input and Output."), ir, 0, 1, 7, Qt::AlignLeft);
[7292]874 ++ir;
[6660]875 pppLayout1->addWidget(new QLabel("Data source"), ir, 0);
876 pppLayout1->addWidget(_pppWidgets._dataSource, ir, 1);
[7057]877 pppLayout1->addWidget(new QLabel(" RINEX Obs file"), ir, 3);
[7492]878 pppLayout1->addWidget(_pppWidgets._rinexObs, ir, 4, 1, 3);
[5687]879 ++ir;
[7522]880 pppLayout1->addWidget(new QLabel("Corrections stream"), ir, 0);
881 pppLayout1->addWidget(_pppWidgets._corrMount, ir, 1);
[7057]882 pppLayout1->addWidget(new QLabel(" RINEX Nav file"), ir, 3);
[7492]883 pppLayout1->addWidget(_pppWidgets._rinexNav, ir, 4, 1, 3);
[5687]884 ++ir;
[7525]885 pppLayout1->addWidget(new QLabel("Corrections file"), ir, 0);
[7522]886 pppLayout1->addWidget(_pppWidgets._corrFile, ir, 1);
887 pppLayout1->addWidget(new QLabel(" ANTEX file"), ir, 3);
888 pppLayout1->addWidget(_pppWidgets._antexFile, ir, 4, 1, 3);
[5687]889 ++ir;
[7561]890 pppLayout1->addWidget(new QLabel("Coordinates file"), ir, 0);
[6660]891 pppLayout1->addWidget(_pppWidgets._crdFile, ir, 1);
[7522]892 pppLayout1->addWidget(new QLabel(" Version 3 filenames"),ir, 3);
893 pppLayout1->addWidget(_pppWidgets._v3filenames, ir, 4, 1, 3);
[5687]894 ++ir;
[7525]895 pppLayout1->addWidget(new QLabel("Logfile directory"), ir, 0);
[7522]896 pppLayout1->addWidget(_pppWidgets._logPath, ir, 1);
[7525]897 pppLayout1->addWidget(new QLabel(" NMEA directory"), ir, 3);
[7506]898 pppLayout1->addWidget(_pppWidgets._nmeaPath, ir, 4, 1, 3);
[6607]899 ++ir;
[7506]900 pppLayout1->addWidget(new QLabel("SNX TRO directory"), ir, 0);
901 pppLayout1->addWidget(_pppWidgets._snxtroPath, ir, 1);
[7492]902 pppLayout1->addWidget(new QLabel(" SNX TRO interval"), ir, 3);
[7488]903 pppLayout1->addWidget(_pppWidgets._snxtroIntr, ir, 4);
[7764]904 pppLayout1->addWidget(new QLabel(" SNX TRO sampling"), ir, 5);
[7492]905 pppLayout1->addWidget(_pppWidgets._snxtroSampl, ir, 6, Qt::AlignRight);
[7506]906 ++ir;
[7764]907 pppLayout1->addWidget(new QLabel(" SNX TRO AC"), ir, 3);
908 pppLayout1->addWidget(_pppWidgets._snxtroAc, ir, 4);
909 pppLayout1->addWidget(new QLabel(" SNX TRO solution") ,ir, 5);
910 pppLayout1->addWidget(_pppWidgets._snxtroSol, ir, 6, Qt::AlignRight);
[6637]911 pppLayout1->setRowStretch(ir, 999);
[5964]912
[5686]913 pppGroup1->setLayout(pppLayout1);
914
[5689]915 QVBoxLayout* pppLayout2 = new QVBoxLayout();
[6711]916 pppLayout2->addWidget(new QLabel("Precise Point Positioning - Processed Stations.<br>"));
[5689]917 pppLayout2->addWidget(_pppWidgets._staTable, 99);
[5704]918 QHBoxLayout* pppLayout2sub = new QHBoxLayout();
919 pppLayout2sub->addWidget(_pppWidgets._addStaButton);
920 pppLayout2sub->addWidget(_pppWidgets._delStaButton);
[6670]921 pppLayout2sub->addStretch(99);
[7292]922
[5704]923 pppLayout2->addLayout(pppLayout2sub);
[5686]924
925 pppGroup2->setLayout(pppLayout2);
926
[5690]927 QGridLayout* pppLayout3 = new QGridLayout();
928 ir = 0;
[6711]929 pppLayout3->addWidget(new QLabel("Precise Point Positioning - Options.<br>"), ir, 0, 1, 2, Qt::AlignLeft);
[7292]930 ++ir;
[5690]931 pppLayout3->addWidget(new QLabel("GPS LCs"), ir, 0, Qt::AlignLeft);
932 pppLayout3->addWidget(_pppWidgets._lcGPS, ir, 1);
[5965]933 pppLayout3->addItem(new QSpacerItem(8*ww, 0), ir, 2);
[5690]934 pppLayout3->addWidget(new QLabel("Sigma C1"), ir, 3, Qt::AlignLeft);
935 pppLayout3->addWidget(_pppWidgets._sigmaC1, ir, 4); _pppWidgets._sigmaC1->setMaximumWidth(8*ww);
[5965]936 pppLayout3->addItem(new QSpacerItem(8*ww, 0), ir, 5);
937 pppLayout3->addWidget(new QLabel("Sigma L1"), ir, 6, Qt::AlignLeft);
938 pppLayout3->addWidget(_pppWidgets._sigmaL1, ir, 7); _pppWidgets._sigmaL1->setMaximumWidth(8*ww);
[5690]939 ++ir;
940 pppLayout3->addWidget(new QLabel("GLONASS LCs"), ir, 0, Qt::AlignLeft);
941 pppLayout3->addWidget(_pppWidgets._lcGLONASS, ir, 1);
[5963]942 pppLayout3->addWidget(new QLabel("Max Res C1"), ir, 3, Qt::AlignLeft);
943 pppLayout3->addWidget(_pppWidgets._maxResC1, ir, 4); _pppWidgets._maxResC1->setMaximumWidth(8*ww);
[5965]944 pppLayout3->addWidget(new QLabel("Max Res L1"), ir, 6, Qt::AlignLeft);
945 pppLayout3->addWidget(_pppWidgets._maxResL1, ir, 7); _pppWidgets._maxResL1->setMaximumWidth(8*ww);
[5690]946 ++ir;
947 pppLayout3->addWidget(new QLabel("Galileo LCs"), ir, 0, Qt::AlignLeft);
948 pppLayout3->addWidget(_pppWidgets._lcGalileo, ir, 1);
[5963]949 pppLayout3->addWidget(new QLabel("Ele Wgt Code"), ir, 3, Qt::AlignLeft);
950 pppLayout3->addWidget(_pppWidgets._eleWgtCode, ir, 4);
[5965]951 pppLayout3->addWidget(new QLabel("Ele Wgt Phase"), ir, 6, Qt::AlignLeft);
952 pppLayout3->addWidget(_pppWidgets._eleWgtPhase, ir, 7);
[5690]953 ++ir;
[6883]954 pppLayout3->addWidget(new QLabel("BDS LCs"), ir, 0, Qt::AlignLeft);
955 pppLayout3->addWidget(_pppWidgets._lcBDS, ir, 1);
[5963]956 pppLayout3->addWidget(new QLabel("Min # of Obs"), ir, 3, Qt::AlignLeft);
957 pppLayout3->addWidget(_pppWidgets._minObs, ir, 4);
[5965]958 pppLayout3->addWidget(new QLabel("Min Elevation"), ir, 6, Qt::AlignLeft);
959 pppLayout3->addWidget(_pppWidgets._minEle, ir, 7);
[5691]960 ++ir;
[6986]961 pppLayout3->addWidget(new QLabel("Wait for clock corr."), ir, 0, Qt::AlignLeft);
[6883]962 pppLayout3->addWidget(_pppWidgets._corrWaitTime, ir, 1);
963 pppLayout3->addWidget(new QLabel("Seeding (sec)"), ir, 3, Qt::AlignLeft);
964 pppLayout3->addWidget(_pppWidgets._seedingTime, ir, 4);
[5963]965 ++ir;
[5965]966 pppLayout3->addWidget(new QLabel(""), ir, 8);
967 pppLayout3->setColumnStretch(8, 999);
[6637]968 ++ir;
969 pppLayout3->addWidget(new QLabel(""), ir, 1);
970 pppLayout3->setRowStretch(ir, 999);
[5690]971
972 pppGroup3->setLayout(pppLayout3);
973
[5861]974 // ------------------------
[5895]975 connect(_pppWidgets._mapWinButton, SIGNAL(clicked()), SLOT(slotMapPPP()));
[6732]976 _pppWidgets._mapSpeedSlider->setMinimumWidth(33*ww);
977 _pppWidgets._audioResponse->setMaximumWidth(8*ww);
[5861]978
[6639]979 QGridLayout* pppLayout4 = new QGridLayout();
980 ir = 0;
[6711]981 pppLayout4->addWidget(new QLabel("Precise Point Positioning - Plots.<br>"), ir, 0, 1, 50, Qt::AlignLeft);
[6639]982 ++ir;
983 pppLayout4->addWidget(new QLabel("PPP Plot"), ir, 0, Qt::AlignLeft);
984 pppLayout4->addWidget(_pppWidgets._plotCoordinates, ir, 1, Qt::AlignLeft);
[6641]985 pppLayout4->addWidget(new QLabel("Mountpoint"), ir, 2, 1, 10, Qt::AlignLeft);
[6732]986 pppLayout4->addWidget(_pppWidgets._audioResponse, ir, 4, Qt::AlignLeft);
[6733]987 pppLayout4->addWidget(new QLabel("Audio response"), ir, 5, Qt::AlignRight);
[6639]988 ++ir;
989 pppLayout4->addWidget(new QLabel("Track map"), ir, 0, Qt::AlignLeft);
990 pppLayout4->addWidget(_pppWidgets._mapWinButton, ir, 1, Qt::AlignLeft);
991 ++ir;
[6647]992 pppLayout4->addWidget(new QLabel("Dot-properties"), ir, 0, Qt::AlignLeft);
[6639]993 pppLayout4->addWidget(_pppWidgets._mapWinDotSize, ir, 1, Qt::AlignLeft);
994 pppLayout4->addWidget(new QLabel("Size "), ir, 2, Qt::AlignLeft);
995 pppLayout4->addWidget(_pppWidgets._mapWinDotColor, ir, 3, Qt::AlignLeft);
996 pppLayout4->addWidget(new QLabel("Color"), ir, 4, Qt::AlignLeft);
997 ++ir;
[6642]998 pppLayout4->addWidget(new QLabel("Post-processing speed"), ir, 0, Qt::AlignLeft);
[6639]999 pppLayout4->addWidget(_pppWidgets._mapSpeedSlider, ir, 1, 1, 20, Qt::AlignLeft);
1000 ++ir;
1001 pppLayout4->addWidget(new QLabel(""), ir, 1);
1002 pppLayout4->setRowStretch(ir, 999);
[5861]1003
1004 pppGroup4->setLayout(pppLayout4);
1005
[3897]1006 // Reqc Processing
[3729]1007 // ---------------
[3897]1008 _reqcActionComboBox = new QComboBox();
1009 _reqcActionComboBox->setEditable(false);
1010 _reqcActionComboBox->addItems(QString(",Edit/Concatenate,Analyze").split(","));
[5861]1011 int ik = _reqcActionComboBox->findText(settings.value("reqcAction").toString());
[3731]1012 if (ik != -1) {
[3897]1013 _reqcActionComboBox->setCurrentIndex(ik);
[3731]1014 }
[3897]1015 connect(_reqcActionComboBox, SIGNAL(currentIndexChanged(const QString &)),
[3739]1016 this, SLOT(slotBncTextChanged()));
[3729]1017
[3897]1018 QGridLayout* reqcLayout = new QGridLayout;
1019 _reqcActionComboBox->setMinimumWidth(15*ww);
[6663]1020 _reqcActionComboBox->setMaximumWidth(20*ww);
[3612]1021
[3897]1022 _reqcObsFileChooser = new qtFileChooser(0, qtFileChooser::Files);
1023 _reqcObsFileChooser->setFileName(settings.value("reqcObsFile").toString());
[3612]1024
[3897]1025 _reqcNavFileChooser = new qtFileChooser(0, qtFileChooser::Files);
1026 _reqcNavFileChooser->setFileName(settings.value("reqcNavFile").toString());
1027 _reqcOutObsLineEdit = new QLineEdit(settings.value("reqcOutObsFile").toString());
1028 _reqcOutNavLineEdit = new QLineEdit(settings.value("reqcOutNavFile").toString());
1029 _reqcOutLogLineEdit = new QLineEdit(settings.value("reqcOutLogFile").toString());
[4449]1030 _reqcPlotDirLineEdit = new QLineEdit(settings.value("reqcPlotDir").toString());
[6436]1031 _reqcSkyPlotSignals = new QLineEdit(settings.value("reqcSkyPlotSignals").toString());
[7292]1032
1033 connect(_reqcSkyPlotSignals, SIGNAL(textChanged(const QString &)),
[6318]1034 this, SLOT(slotBncTextChanged()));
[5144]1035
[6299]1036 _reqcLogSummaryOnly = new QCheckBox();
1037 _reqcLogSummaryOnly->setCheckState(Qt::CheckState(settings.value("reqcLogSummaryOnly").toInt()));
1038
[3738]1039 ir = 0;
[6711]1040 reqcLayout->addWidget(new QLabel("RINEX file editing, concatenation and quality check.<br>"),ir, 0, 1, 8);
[3768]1041 ++ir;
[6650]1042 reqcLayout->addWidget(new QLabel("Action"), ir, 0);
1043 reqcLayout->addWidget(_reqcActionComboBox, ir, 1);
[3897]1044 _reqcEditOptionButton = new QPushButton("Set Edit Options");
[6650]1045 _reqcEditOptionButton->setMinimumWidth(15*ww);
[6663]1046 _reqcEditOptionButton->setMaximumWidth(20*ww);
[6650]1047
1048 reqcLayout->addWidget(_reqcEditOptionButton, ir, 3);
[3738]1049 ++ir;
[6650]1050 reqcLayout->addWidget(new QLabel("Input files (full path)"), ir, 0);
1051 reqcLayout->addWidget(_reqcObsFileChooser, ir, 1);
[6698]1052 _reqcObsFileChooser->setMaximumWidth(40*ww);
[6650]1053 reqcLayout->addWidget(new QLabel(" Obs"), ir, 2);
1054 reqcLayout->addWidget(_reqcNavFileChooser, ir, 3);
[6698]1055 _reqcNavFileChooser->setMaximumWidth(40*ww);
[6650]1056 reqcLayout->addWidget(new QLabel(" Nav"), ir, 4);
[3738]1057 ++ir;
[7475]1058 reqcLayout->addWidget(new QLabel("Output file (full path)"), ir, 0);
[6650]1059 reqcLayout->addWidget(_reqcOutObsLineEdit, ir, 1);
[6698]1060 _reqcOutObsLineEdit->setMaximumWidth(40*ww);
[6650]1061 reqcLayout->addWidget(new QLabel(" Obs"), ir, 2);
1062 reqcLayout->addWidget(_reqcOutNavLineEdit, ir, 3);
[6698]1063 _reqcOutNavLineEdit->setMaximumWidth(40*ww);
[6650]1064 reqcLayout->addWidget(new QLabel(" Nav"), ir, 4);
[3768]1065 ++ir;
[6650]1066 reqcLayout->addWidget(new QLabel("Logfile"), ir, 0);
1067 reqcLayout->addWidget(_reqcOutLogLineEdit, ir, 1);
[6698]1068 _reqcOutLogLineEdit->setMaximumWidth(40*ww);
[6650]1069 reqcLayout->addWidget(new QLabel(" Summary only"), ir, 2);
1070 reqcLayout->addWidget(_reqcLogSummaryOnly, ir, 3);
[3768]1071 ++ir;
[6650]1072 reqcLayout->addWidget(new QLabel("Plots for signals"), ir, 0);
1073 reqcLayout->addWidget(_reqcSkyPlotSignals, ir, 1);
[6698]1074 _reqcSkyPlotSignals->setMaximumWidth(40*ww);
[6411]1075 ++ir;
[6650]1076 reqcLayout->addWidget(new QLabel("Directory for plots"), ir, 0);
1077 reqcLayout->addWidget(_reqcPlotDirLineEdit, ir, 1);
[6698]1078 _reqcPlotDirLineEdit->setMaximumWidth(40*ww);
[4449]1079 ++ir;
[3897]1080 reqcLayout->setRowStretch(ir, 999);
[2876]1081
[3897]1082 reqcLayout->setColumnMinimumWidth(2, 8*ww);
1083 reqcLayout->setColumnMinimumWidth(4, 8*ww);
[3823]1084
[3897]1085 reqcgroup->setLayout(reqcLayout);
[3731]1086
[7292]1087 connect(_reqcEditOptionButton, SIGNAL(clicked()),
[3897]1088 this, SLOT(slotReqcEditOption()));
[3740]1089
[6332]1090 QGridLayout* sp3CompLayout = new QGridLayout;
1091
1092 _sp3CompFileChooser = new qtFileChooser(0, qtFileChooser::Files);
1093 _sp3CompFileChooser->setFileName(settings.value("sp3CompFile").toString());
1094 _sp3CompFileChooser->setMinimumWidth(15*ww);
[6662]1095 _sp3CompFileChooser->setMaximumWidth(40*ww);
[6332]1096
[6430]1097 _sp3CompExclude = new QLineEdit(settings.value("sp3CompExclude").toString());
[7110]1098 _sp3CompExclude->setMinimumWidth(18*ww);
1099 _sp3CompExclude->setMaximumWidth(18*ww);
[6430]1100
[6332]1101 _sp3CompLogLineEdit = new QLineEdit(settings.value("sp3CompOutLogFile").toString());
[7110]1102 _sp3CompLogLineEdit->setMinimumWidth(18*ww);
1103 _sp3CompLogLineEdit->setMaximumWidth(18*ww);
[6332]1104
1105 ir = 0;
[6711]1106 sp3CompLayout->addWidget(new QLabel("Orbit and clock comparison.<br>"), ir, 0, 1, 40);
[6332]1107 ++ir;
1108 sp3CompLayout->addWidget(new QLabel("Input SP3 files (full path)"), ir, 0, Qt::AlignLeft);
[6636]1109 sp3CompLayout->addWidget(_sp3CompFileChooser, ir, 1, 1, 20);
[6332]1110 ++ir;
[6633]1111 sp3CompLayout->addWidget(new QLabel("Exclude satellites"), ir, 0, Qt::AlignLeft);
[6430]1112 sp3CompLayout->addWidget(_sp3CompExclude, ir, 1, Qt::AlignRight);
1113 ++ir;
[6633]1114 sp3CompLayout->addWidget(new QLabel("Logfile"), ir, 0, Qt::AlignLeft);
[6332]1115 sp3CompLayout->addWidget(_sp3CompLogLineEdit, ir, 1, Qt::AlignRight);
1116 ++ir;
[6637]1117 sp3CompLayout->addWidget(new QLabel(""), ir, 1);
1118 ++ir;
[6332]1119 sp3CompLayout->setRowStretch(ir, 999);
1120
1121 sp3CompLayout->setColumnMinimumWidth(2, 8*ww);
1122 sp3CompLayout->setColumnMinimumWidth(4, 8*ww);
1123
1124 sp3CompGroup->setLayout(sp3CompLayout);
1125
[6648]1126 connect(_sp3CompFileChooser, SIGNAL(fileNameChanged(const QString &)),
1127 this, SLOT(slotBncTextChanged()));
1128
[4185]1129 // Combine Corrections
1130 // -------------------
[2868]1131 QGridLayout* cmbLayout = new QGridLayout;
1132
[3731]1133 populateCmbTable();
[6665]1134 cmbLayout->addWidget(_cmbTable, 0, 0, 8, 3);
[6711]1135 cmbLayout->addWidget(new QLabel(" Combine Broadcast Correction streams.<br>"), 1, 6, 1, 10);
[6662]1136 cmbLayout->addWidget(addCmbRowButton, 2, 6);
1137 cmbLayout->addWidget(delCmbRowButton, 2, 7);
1138 cmbLayout->addWidget(new QLabel("Method"), 3, 6, Qt::AlignRight);
[6665]1139 cmbLayout->addWidget(_cmbMethodComboBox, 3, 7);
[6662]1140 cmbLayout->addWidget(new QLabel(" Maximal residuum"), 4, 6, Qt::AlignRight);
1141 cmbLayout->addWidget(_cmbMaxresLineEdit, 4, 7, Qt::AlignRight);
1142 cmbLayout->addWidget(new QLabel("Sampling"), 5, 6, Qt::AlignRight);
[6665]1143 cmbLayout->addWidget(_cmbSamplSpinBox, 5, 7);
1144 cmbLayout->addWidget(new QLabel(" Use GLONASS"), 6, 6, Qt::AlignRight);
1145 cmbLayout->addWidget(_cmbUseGlonass, 6, 7);
1146 cmbLayout->setRowStretch(7, 999);
[3729]1147
[2869]1148 connect(addCmbRowButton, SIGNAL(clicked()), this, SLOT(slotAddCmbRow()));
1149 connect(delCmbRowButton, SIGNAL(clicked()), this, SLOT(slotDelCmbRow()));
[2868]1150
1151 cmbgroup->setLayout(cmbLayout);
1152
[3241]1153 // Upload Layout (Clocks)
1154 // ----------------------
[3193]1155 QGridLayout* uploadHlpLayout = new QGridLayout();
[3152]1156
[3164]1157 connect(addUploadRowButton, SIGNAL(clicked()), this, SLOT(slotAddUploadRow()));
1158 connect(delUploadRowButton, SIGNAL(clicked()), this, SLOT(slotDelUploadRow()));
1159 connect(setUploadTrafoButton, SIGNAL(clicked()), this, SLOT(slotSetUploadTrafo()));
[3160]1160
[4175]1161 uploadHlpLayout->addWidget(addUploadRowButton, 0, 0);
1162 uploadHlpLayout->addWidget(delUploadRowButton, 0, 1);
1163 uploadHlpLayout->addWidget(new QLabel("Interval"), 0, 2, Qt::AlignRight);
1164 uploadHlpLayout->addWidget(_uploadIntrComboBox, 0, 3);
1165 uploadHlpLayout->addWidget(new QLabel(" Sampling: Orb"), 0, 4, Qt::AlignRight);
1166 uploadHlpLayout->addWidget(_uploadSamplRtcmEphCorrSpinBox, 0, 5);
1167 uploadHlpLayout->addWidget(new QLabel("SP3"), 0, 6, Qt::AlignRight);
1168 uploadHlpLayout->addWidget(_uploadSamplSp3SpinBox, 0, 7);
1169 uploadHlpLayout->addWidget(new QLabel("RNX"), 0, 8, Qt::AlignRight);
1170 uploadHlpLayout->addWidget(_uploadSamplClkRnxSpinBox, 0, 9);
1171 uploadHlpLayout->addWidget(setUploadTrafoButton, 0,10);
[6665]1172 uploadHlpLayout->addWidget(new QLabel("ANTEX file"), 1, 0, Qt::AlignLeft);
1173 uploadHlpLayout->addWidget(_uploadAntexFile, 1, 1, 1, 4);
[3197]1174
[3193]1175 QBoxLayout* uploadLayout = new QBoxLayout(QBoxLayout::TopToBottom);
1176 populateUploadTable();
[3767]1177
[6711]1178 uploadLayout->addWidget(new QLabel("Upload RTCM Version 3 Broadcast Corrections to caster.<br>"));
[3193]1179 uploadLayout->addWidget(_uploadTable);
1180 uploadLayout->addLayout(uploadHlpLayout);
[3152]1181
[3164]1182 uploadgroup->setLayout(uploadLayout);
[3152]1183
[3241]1184 // Upload Layout (Ephemeris)
1185 // -------------------------
1186 QGridLayout* uploadLayoutEph = new QGridLayout;
1187
1188 uploadLayoutEph->setColumnMinimumWidth(0, 9*ww);
1189 _uploadEphPortLineEdit->setMaximumWidth(9*ww);
1190 _uploadEphPasswordLineEdit->setMaximumWidth(9*ww);
1191 _uploadEphMountpointLineEdit->setMaximumWidth(12*ww);
1192
[6711]1193 uploadLayoutEph->addWidget(new QLabel("Upload concatenated RTCMv3 Broadcast Ephemeris to caster.<br>"), 0, 0, 1, 50);
[3768]1194 uploadLayoutEph->addWidget(new QLabel("Host"), 1, 0);
1195 uploadLayoutEph->addWidget(_uploadEphHostLineEdit, 1, 1, 1, 3);
1196 uploadLayoutEph->addWidget(new QLabel(" Port"), 1, 4, Qt::AlignRight);
1197 uploadLayoutEph->addWidget(_uploadEphPortLineEdit, 1, 5, 1, 1);
1198 uploadLayoutEph->addWidget(new QLabel("Mountpoint "), 2, 0);
1199 uploadLayoutEph->addWidget(_uploadEphMountpointLineEdit, 2, 1);
1200 uploadLayoutEph->addWidget(new QLabel(" Password"), 2, 2, Qt::AlignRight);
1201 uploadLayoutEph->addWidget(_uploadEphPasswordLineEdit, 2, 3);
1202 uploadLayoutEph->addWidget(new QLabel("Sampling"), 3, 0);
1203 uploadLayoutEph->addWidget(_uploadEphSampleSpinBox, 3, 1);
1204 uploadLayoutEph->addWidget(new QLabel("Uploaded"), 4, 0);
[7292]1205 uploadLayoutEph->addWidget(_uploadEphBytesCounter, 4, 1);
[6662]1206 uploadLayoutEph->setRowStretch(5, 999);
[3241]1207
[3731]1208 uploadEphgroup->setLayout(uploadLayoutEph);
[3241]1209
1210 connect(_uploadEphHostLineEdit, SIGNAL(textChanged(const QString &)),
1211 this, SLOT(slotBncTextChanged()));
1212
[1678]1213 // Main Layout
1214 // -----------
[1409]1215 QGridLayout* mLayout = new QGridLayout;
[1925]1216 _aogroup->setCurrentIndex(settings.value("startTab").toInt());
[1926]1217 mLayout->addWidget(_aogroup, 0,0);
[1409]1218 mLayout->addWidget(_mountPointsTable, 1,0);
[1947]1219 _loggroup->setCurrentIndex(settings.value("statusTab").toInt());
[1926]1220 mLayout->addWidget(_loggroup, 2,0);
[106]1221
[679]1222 _canvas->setLayout(mLayout);
[1333]1223
[7651]1224 // WhatsThis, Network
1225 // ------------------
[7654]1226 _proxyHostLineEdit->setWhatsThis(tr("<p>If you are running BNC within a protected Local Area Network (LAN), you may 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 this is not possible, you may need to run BNC outside your LAN on a network that has unobstructed connection to the Internet.</p>"));
[3731]1227 _proxyPortLineEdit->setWhatsThis(tr("<p>Enter your proxy server port number in case a proxy is operated in front of BNC.</p>"));
[7676]1228 _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 whether this is supported by the involved Ntrip Broadcaster.</p><p>Note that SSL communication is usually done over port 443.</p>"));
1229 _sslIgnoreErrorsCheckBox->setWhatsThis(tr("<p>SSL communication may involve queries coming from the Ntrip Broadcaster. Tick 'Ignore SSL authorization errors' if you don't want to be bothered with this.</p>"));
[7651]1230
1231 // WhatsThis, General
1232 // ------------------
1233 _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 for that 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.</p>"));
1234 _rnxAppendCheckBox->setWhatsThis(tr("<p>When BNC is started, new files are created by default and file content already available under the same name will be overwritten. However, users might want to append already existing files following a regular restart or a crash of BNC or its platform.</p><p>Tick 'Append files' to continue with existing files and keep what has been recorded so far.</p>"));
1235 _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, five minutes, 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 via button 'Save & Reread Configuration'.</p>"));
[3731]1236 _autoStartCheckBox->setWhatsThis(tr("<p>Tick 'Auto start' for auto-start of BNC at startup time in window mode with preassigned processing options.</p>"));
[7651]1237 _rawOutFileLineEdit->setWhatsThis(tr("<p>Save all data coming in through various streams in the received order and format in one file.</p><p>This option is primarily meant for debugging purposes.</p>"));
1238
1239 // WhatsThis, RINEX Observations
1240 // -----------------------------
1241 _rnxPathLineEdit->setWhatsThis(tr("<p>Here you specify the path to where the RINEX Observation files will be stored.</p><p>If the specified directory does not exist, BNC will not create RINEX Observation files.</p>"));
[3731]1242 _rnxIntrComboBox->setWhatsThis(tr("<p>Select the length of the RINEX Observation file.</p>"));
[8398]1243 _rnxSamplComboBox->setWhatsThis(tr("<p>Select the RINEX Observation sampling interval in seconds. </p>"));
[8663]1244 _rnxSkelLineEdit->setWhatsThis(tr("<p>BNC allows using personal RINEX skeleton files that contain the RINEX header records you would like to include. You can derive a skeleton file from information given in an up to date sitelog.</p><p>A file in the RINEX Observations 'Directory' with a 'Skeleton extension' skl or SKL is interpreted by BNC as a personal RINEX header skeleton file for the corresponding stream. In case of 'SKL'/'skl' the 4/9-char ID forming the base name has to be written in upper cases. </p>"));
[7651]1245 _rnxFileCheckBox->setWhatsThis(tr("<p>Tick check box 'Skeleton mandatory' in case you want that RINEX files are only produced if skeleton files are available for BNC. If no skeleton file is available for a particular source then no RINEX Observation file will be produced from the affected stream.</p><p>Note that a skeleton file contains RINEX header information such as receiver and antenna types. In case of stream conversion to RINEX Version 3, a skeleton file should also contain information on potentially available observation types. A missing skeleton file will therefore enforce BNC to only save a default set of RINEX 3 observation types.</p>"));
1246 _rnxScrpLineEdit->setWhatsThis(tr("<p>Whenever a RINEX Observation file is finally saved, you may want to compress, copy or upload it immediately, for example via FTP. BNC allows you to execute a script/batch file to carry out such operation.</p><p>Specify the full path of a script or batch file. BNC will pass the full RINEX Observation file path to the script as command line parameter (%1 on Windows systems, $1 on Unix/Linux/Mac systems).</p>"));
[8632]1247 _rnxV2Priority->setWhatsThis(tr("<p>Specify a priority list of characters defining signal attributes as defined in RINEX Version 3. Priorities will be used to map observations with RINEX Version 3 attributes from incoming streams to Version 2. The underscore character '_' stands for undefined attributes. A question mark '?' can be used as wildcard which represents any one character.</p><p>Signal priorities can be specified as equal for all systems, as system specific or as system and freq. specific. For example: </li><ul><li>'CWPX_?' (General signal priorities valid for all GNSS) </li><li>'I:ABCX' (System specific signal priorities for IRNSS) </li><li>'G:12&PWCSLX G:5&IQX R:12&PC R:3&IQX' (System and frequency specific signal priorities) </li></ul>Default is the following priority list 'G:12&PWCSLX G:5&IQX R:12&PC R:3&IQX R:46&ABX E:16&BCXZ E:578&IQX J:1&SLXCZ J:26&SLX J:5&IQX C:267&IQX C:128&DPX C:7&DPZ I:ABCX S:1&C S:5&IQX'. <i>[key: rnxV2Priority]</i></p>"));
[7651]1248 _rnxV3CheckBox->setWhatsThis(tr("<p>The default format for RINEX Observation files is RINEX Version 2.</p><p>Select 'Version 3' if you want to save observations in RINEX Version 3 format.</p>"));
1249
1250 // WhatsThis, RINEX Ephemeris
1251 // --------------------------
1252 _ephPathLineEdit->setWhatsThis(tr("<p>Specify the path for saving Broadcast Ephemeris data as RINEX Navigation files.</p><p>If the specified directory does not exist, BNC will not create RINEX Navigation files.</p>"));
[3731]1253 _ephIntrComboBox->setWhatsThis(tr("<p>Select the length of the RINEX Navigation file.</p>"));
[7651]1254 _ephOutPortLineEdit->setWhatsThis(tr("<p>BNC can produce ephemeris data in RINEX Navigation ASCII format on your local host through an IP port.</p><p>Specify a port number here to activate this function.</p>"));
1255 _ephV3CheckBox->setWhatsThis(tr("<p>The default format for output of RINEX Navigation data containing Broadcast Ephemeris is RINEX Version 2.</p><p>Select 'Version 3' if you want to output ephemeris in RINEX Version 3 format.</p>"));
1256
1257 // WhatsThis, RINEX Editing & QC
1258 // -----------------------------
1259 _reqcActionComboBox->setWhatsThis(tr("<p>BNC allows to 'Edit or Concatenate' RINEX Version 2 or 3 files or to perform a Quality Check (QC) and 'Analyze' data following UNAVCO's famous 'teqc' program.</p>"));
1260 _reqcEditOptionButton->setWhatsThis(tr("<p>Specify options for editing RINEX Version 2 or 3 files.</p>"));
1261 _reqcObsFileChooser->setWhatsThis(tr("<p>Specify the full path to input observation files in RINEX Version 2 or 3 format.</p><p>Note that when in 'Analyze' mode, specifying at least one RINEX observation file is mandatory.</p>"));
1262 _reqcNavFileChooser->setWhatsThis(tr("<p>Specify the full path to input navigation files in RINEX Version 2 or 3 format.</p><p>Note that when in 'Analyze' mode, specifying at least one RINEX navigation file is mandatory.</p>"));
1263 _reqcOutObsLineEdit->setWhatsThis(tr("<p>Specify the full path to a RINEX Observation output file.</p><p>Default is an empty option field, meaning that no RINEX Observation output file will be produced.</p>"));
1264 _reqcOutNavLineEdit->setWhatsThis(tr("<p>Specify the full path to a RINEX Navigation output file.</p><p>Default is an empty option field, meaning that no RINEX Navigation output file will be produced.</p>"));
1265 _reqcOutLogLineEdit->setWhatsThis(tr("<p>Specify the full path to a logfile.</p><p>Default is an empty option field, meaning that no 'RINEX Editing & QC' logfile will be produced.</p>"));
1266 _reqcLogSummaryOnly->setWhatsThis(tr("<p>By default BNC produces a detailed 'Logfile' providing all information resulting from editing or analyzing RINEX data. If that is too much information, you can limit the logfile content to a short summary.</p><p>Tick 'Summary only' to suppress full logfile output and instead produce a logfile containing only summary information.</p>"));
1267 _reqcPlotDirLineEdit->setWhatsThis(tr("<p>Specify a directory for saving plots in PNG format.</p><p>Default is an empty option field, meaning that plots will not be saved on disk.</p>"));
[8172]1268 _reqcSkyPlotSignals->setWhatsThis(tr("<p>BNC can produce plots for multipath, signal-to-noise ratio, satellite availability, satellite elevation, and PDOP values. The 'Plots for signals' option lets you exactly specify observation signals to be used for that and also enables the plot generation. You can specify the navigation system, the frequency, and the tracking mode or channel as defined in RINEX Version 3. Specifications for frequency and tracking mode or channel must be separated by ampersand character '&'. Specifications for navigation systems must be separated by blank character ' '.</p><p>Examples for 'Plots for signals' option:<ul><li> G:1&2 R:1&2 J:1&2 E:1&7 C:1&6 S:1<br>(Plots will be based on GPS observations on 1st and 2nd frequency, GLONASS observations on 1st and 2nd frequency, QZSS observations on 1st and 2nd frequency, Galileo observations on 1st and 7th frequency, BeiDou observations on 1st and 6th frequency, SBAS observations on 1st frequency.)</li><li>G:1C&5X<br>(Plots will be based on GPS observations on 1st frequency in C tracking mode and GPS observations on 5th frequency in X tracking mode.)</li><li>C:6I&7I<br>(Plots will be based on BeiDou observations on 6th frequency in I tracking mode and BeiDou observations on 7th frequency in I tracking mode.)<li></ul></p><p>Default is 'C:2&7 E:1&5 G:1&2 J:1&2 R:1&2 S:1&5 I:5&9'. Specifying an empty option string would be overruled by this default.</p>"));
[7651]1269
1270 // WhatsThis, SP3 Comparison
1271 // -------------------------
1272 _sp3CompFileChooser->setWhatsThis(tr("<p>BNC can compare two SP3 files containing GNSS satellite orbit and clock information.</p></p>Specify the full path to two files with orbits and clocks in SP3 format, separate them by comma.</p>"));
[7676]1273 _sp3CompExclude->setWhatsThis(tr("<p>Specify satellites to exclude them from orbit and clock comparison. Example:<p>G04,G31,R</p><p>This excludes GPS satellites PRN 4 and 31 as well as all GLONASS satellites from the comparison.</p><p>Default is an empty option field, meaning that no satellite is excluded from the comparison.</p>"));
[7651]1274 _sp3CompLogLineEdit->setWhatsThis(tr("<p>Specify the full path to a logfile saving comparison results.</p><p>Specifying a logfile is mandatory. Comparing SP3 files and not saving comparison results on disk would be useless.</p>"));
1275
[7668]1276 // WhatsThis, Broadcast Corrections
1277 // --------------------------------
1278 _corrPathLineEdit->setWhatsThis(tr("<p>Specify a directory for saving Broadcast Ephemeris Correction files.</p><p>If the specified directory does not exist, BNC will not create the files.</p>"));
1279 _corrPortLineEdit->setWhatsThis(tr("<p>BNC can produce Broadcast Ephemeris Corrections on your local host through an IP port.</p><p>Specify a port number here to activate this function.</p>"));
1280 _corrIntrComboBox->setWhatsThis(tr("<p>Select the length of Broadcast Ephemeris Correction files.</p>"));
1281
[7651]1282 // WhatsThis, Feed Engine
1283 // ----------------------
1284 _outPortLineEdit->setWhatsThis(tr("<p>BNC can produce synchronized observations in a plain ASCII format on your local host via IP port.</p><p>Specify a port number to activate this function.</p>"));
1285 _outWaitSpinBox->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.</p><p>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 product.</p>"));
[8398]1286 _outSamplComboBox->setWhatsThis(tr("<p>Select a synchronized observation sampling interval in seconds. </p>"));
[7651]1287 _outFileLineEdit->setWhatsThis(tr("<p>Specify the full path to a file where synchronized observations are saved in plain ASCII format.</p><p>Beware that the size of this file can rapidly increase depending on the number of incoming streams.</p>"));
1288 _outUPortLineEdit->setWhatsThis(tr("<p>BNC can produce unsynchronized observations in a plain ASCII format on your local host via IP port.</p><p>Specify a port number to activate this function.</p>"));
[8620]1289 _outLockTimeCheckBox->setWhatsThis(tr("<p>Print the lock time in seconds in the feed engine output.</p>"));
[7651]1290
1291 // WhatsThis, Serial Output
1292 // ------------------------
1293 _serialMountPointLineEdit->setWhatsThis(tr("<p>Enter a 'Mountpoint' to forward the corresponding stream to a serial connected receiver.</p><p>Depending on the stream content, the receiver may use it for example for Differential GNSS, Precise Point Positioning or any other purpose supported by its firmware.</p>"));
1294 _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 before you start BNC, you must plug a serial cable in the port defined here.</p>"));
1295 _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. Using a high baud rate is recommended.</p>"));
1296 _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>"));
1297 _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>"));
1298 _serialParityComboBox->setWhatsThis(tr("<p>Select a 'Parity' for the serial output link.</p><p>Note that your selection must equal the parity selection configured to the serial connected receiver. The parity is often set to 'NONE'.</p>"));
1299 _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>"));
1300 _serialAutoNMEAComboBox->setWhatsThis(tr("<p>The 'NMEA' option supports the so-called 'Virtual Reference Station' (VRS) concept which requires the receiver to send approximate position information to the Ntrip Broadcaster. Select 'no' if you don't want BNC to forward or upload any NMEA message to the Ntrip Broadcaster in support of VRS.</p><p>Select 'Auto' to automatically forward NMEA messages of type GGA from your serial connected receiver to the Ntrip Broadcaster and/or save them in a file.</p><p>Select 'Manual GPGGA' or 'Manual GNGGA' if you want BNC to produce and upload GPGGA or GNGGA NMEA messages to the Ntrip Broadcaster because your serial connected receiver doesn't generate these messages. A Talker ID 'GP' preceding the GGA string stands for GPS solutions while a Talker ID 'GN' stands for multi constellation solutions.</p><p>Note that selecting 'Auto' or 'Manual' works only for VRS streams which show up under the 'Streams' canvas on BNC's main window with 'nmea' stream attribute set to 'yes'. This attribute is either extracted from the Ntrip Broadcaster's source-table or introduced by the user via editing the BNC configuration file.</p>"));
1301 _serialFileNMEALineEdit->setWhatsThis(tr("<p>Specify the full path to a file where NMEA messages coming from your serial connected receiver are saved.</p><p>Default is an empty option field, meaning that NMEA messages will not be saved on disk.</p>"));
1302 _serialHeightNMEALineEdit->setWhatsThis(tr("<p>Specify an approximate 'Height' above mean sea level in meters for the reference station introduced by option 'Mountpoint'. Together with the latitude and longitude from the source-table, the height information is used to build GGA messages to be sent to the Ntrip Broadcaster.</p><p>For adjusting latitude and longitude values of a VRS stream given in the 'Streams' canvas, you can double click the latitude/longitude data fields, specify appropriate values and then hit Enter.</p><p>This option is only relevant when option 'NMEA' is set to 'Manual GPGGA' or 'Manual GNGGA' respectively.</p>"));
1303 _serialManualNMEASamplingSpinBox->setWhatsThis(tr("<p>Select a sampling interval in seconds for manual generation and upload of NMEA GGA sentences.</p><p>A sampling rate of '0' means, the a GGA sentence will be send only once to initialize the requested VRS stream. Note that some VRS systems need GGA sentences at regular intervals.</p>"));
1304
1305 // WhatsThis, Outages
1306 // ------------------
[7331]1307 _adviseObsRateComboBox->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><p>Default is an empty option field, meaning that you don't want BNC to report on stream failures or recoveries when exceeding a threshold time span.</p>"));
[7651]1308 _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>"));
[3731]1309 _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>"));
[7651]1310 _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 a comment '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.</p><p>An empty option field (default) or invalid path means that you don't want to use this option.</p>"));
1311
1312 // WhatsThis, Miscellaneous
1313 // ------------------------
1314 _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>"));
[7419]1315 _miscIntrComboBox->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>"));
[7676]1316 _miscScanRTCMCheckBox->setWhatsThis(tr("<p>Tick 'Scan RTCM' to log the numbers of incoming message types as well as contained antenna coordinates, antenna height, and antenna descriptor.</p><p>In case of RTCM Version 3 MSM streams, BNC will also log contained RINEX Version 3 observation types.</p>."));
[7651]1317 _miscPortLineEdit->setWhatsThis(tr("<p>BNC can output an incoming stream through an IP port of your local host.</p><p>Specify a port number to activate this function.</p>"));
1318
1319 // WhatsThis, PPP (1)
1320 // ------------------
[7676]1321 _pppWidgets._dataSource->setWhatsThis(tr("<p>Select 'Real-time Streams' for real-time PPP from RTCM streams or 'RINEX Files' for post processing PPP from RINEX files.</p><p><ul><li>Real-time PPP requires that you pull a RTCM stream carrying GNSS observations plus a stream providing corrections to Broadcast Ephemeris. If the observations stream does not contain Broadcast Ephemeris then you must in addition pull a Broadcast Ephemeris stream like 'RTCM3EPH' from Ntrip Broadcaster <u>products.igs-ip.net</u>.<br></li><li>Post processing PPP requires RINEX Observation files, RINEX Navigation files and a file with corrections to Broadcast Ephemeris in plain ASCII format as saved beforehand using BNC.</li></ul></p><p>Note that BNC allows to carry out PPP solutions simultaneously for several stations.</p>"));
[7654]1322 _pppWidgets._rinexObs->setWhatsThis(tr("<p>Specify the RINEX Observation file.</p>"));
1323 _pppWidgets._rinexNav->setWhatsThis(tr("<p>Specify the RINEX Navigation file.</p>"));
[7668]1324 _pppWidgets._corrMount->setWhatsThis(tr("<p>Specify a 'mountpoint' from the 'Streams' canvas below which provides corrections to Broadcast Ephemeris.</p><p>If you don't specify a corrections stream via this option, BNC will fall back to Single Point Positioning (SPP, positioning from observations and Broadcast Ephemeris only) instead of doing PPP.</p>"));
[7654]1325 _pppWidgets._corrFile->setWhatsThis(tr("<p>Specify the Broadcast Ephemeris Corrections file as saved beforehand using BNC.</p><p>If you don't specify corrections by this option, BNC will fall back to Single Point Positioning (SPP, positioning from RINEX Obs and RINEX Nav files only) instead of doing PPP.</p>"));
1326 _pppWidgets._antexFile->setWhatsThis(tr("<p>Observations in RTCM streams or RINEX files should be referred to the receiver's and to the satellite's Antenna Phase Center (APC) and therefore be corrected for<ul><li>Receiver APC offsets</li><li>Receiver APC variations</li><li>Satellite APC offsets.</li></ul> Specify the full path to an IGS 'ANTEX file' which contains APC offsets and variations.</p><p>If you don't specify an 'ANTEX file' then observations will not be corrected for APC offsets and variations.</p>"));
[7676]1327 _pppWidgets._crdFile->setWhatsThis(tr("<p>Enter the full path to an ASCII file which specifies the streams or files of those stations you want to process. Specifying a 'Coordinates file' is optional. If it exists, it should contain one record per station with the following parameters separated by blank character:<p><ul><li>Specify the station either by<ul><li>the 'Mountpoint' of the station's RTCM stream (when in real-time PPP mode), or</li><li>the 4-charater station ID of the RINEX Observations file (when in post processing PPP mode).</li></ul></li><li>Approximate X,Y,Z coordinate of station's Antenna Reference Point [m] (ARP, specify '0.0 0.0 0.0' if unknown).</li><li>North, East and Up component of antenna eccentricity [m] (specify '0.0 0.0 0.0' if unknown).</li><li>20 Characters describing the antenna type and radome following the IGS 'ANTEX file' standard (leave blank if unknown).</li><li>Receiver type following the naming conventions for IGS equipment.</li></ul></p><p>Records with exclamation mark '!' in the first column or blank records will be interpreted as comment lines and ignored.</p>"));
[7659]1328 _pppWidgets._v3filenames->setWhatsThis(tr("<p>Tick 'Version 3 filenames' to let BNC create so-called extended filenames for PPP logfiles, NMEA files and SINEX Troposphere files following the RINEX Version 3 standard.</p><p>Default is an empty check box, meaning to create filenames following the RINEX Version 2 standard. The file content is not affected by this option. It only concerns the filenames.</p>"));
1329 _pppWidgets._logPath->setWhatsThis(tr("<p>Specify a directory for saving daily PPP logfiles. If the specified directory does not exist, BNC will not create such files.</p><p>Default is an empty option field, meaning that no PPP logfiles shall be produced.</p>"));
1330 _pppWidgets._nmeaPath->setWhatsThis(tr("<p>Specify a directory for saving coordinates in daily NMEA files. If the specified directory does not exist, BNC will not create such files.</p><p>Default is an empty option field, meaning that no NMEA file shall be produced.</p>"));
1331 _pppWidgets._snxtroPath->setWhatsThis(tr("<p>Specify a directory for saving SINEX Troposphere files. If the specified directory does not exist, BNC will not create such files.</p><p>Default is an empty option field, meaning that no SINEX Troposphere files shall be produced.</p>"));
1332 _pppWidgets._snxtroIntr->setWhatsThis(tr("<p>Select a length for SINEX Troposphere files.</p><p>Default 'SNX TRO interval' for saving SINEX Troposphere files on disk is '1 hour'.</p>"));
[8404]1333 _pppWidgets._snxtroSampl->setWhatsThis(tr("<p>Select a 'Sampling' rate for saving troposphere parameters.</p>"));
[7797]1334 _pppWidgets._snxtroAc->setWhatsThis(tr("<p>Specify a 3-character abbreviation describing you as the generating Analysis Center (AC) in your SINEX troposphere files.</p>"));
1335 _pppWidgets._snxtroSol->setWhatsThis(tr("<p>Specify a 4-character solution ID to allow a distingtion between different solutions per AC.</p>"));
[7664]1336
1337 // WhatsThis, PPP (3)
1338 // ------------------
1339 _pppWidgets._lcGPS->setWhatsThis(tr("<p>Specify which kind of GPS observations you want to use and on which kind of ionosphere-free linear combination of GPS observations you want to base ambiguity resolutions.</p><p><ul><li>Specifying 'P3' means that you request BNC to use code data and so-called P3 ionosphere-free linear combination of code observations.</li><li>'P3&L3' means that you request BNC to use both, code and phase data and so-called P3 and L3 ionosphere-free linear combination of code and phase observations.</li></ul></p><p>Note that most geodetic receivers support the observation of GPS code and phase data. Hence specifying 'P3&L3' would be a good choice when processing data from such a receiver.</p><p>Specifying 'no' means that you don't want BNC to use GPS data.</p>"));
1340 _pppWidgets._lcGLONASS->setWhatsThis(tr("<p>Specify which kind of GLONASS observations you want to use and on which kind of ionosphere-free linear combination of GLONASS observations you want to base ambiguity resolutions.</p><p><ul><li>Specifying 'P3' means that you request BNC to use code data and so-called P3 ionosphere-free linear combination of code observations.</li><li>'L3' means that you request BNC to use phase data and so-called L3 ionosphere-free linear combination of phase observations.</li> <li>'P3&L3' means that you request BNC to use both, code and phase data and so-called P3 and L3 ionosphere-free linear combination of code and phase observations.</li></ul></p><p>Specifying 'no' means that you don't want BNC to use GLONASS data.</p>"));
[7676]1341 _pppWidgets._lcGalileo->setWhatsThis(tr("<p>Specify which kind of Galileo observations you want to use and on which kind of of ionosphere-free linear combination of Galileo observations you want to base ambiguity resolutions.</p><p><ul><li>Specifying 'P3' means that you request BNC to use code data and so-called P3 ionosphere-free linear combination of code observations.</li><li>'L3' means that you request BNC to use phase data and so-called L3 ionosphere-free linear combination of phase observations.</li> <li>'P3&L3' means that you request BNC to use both, code and phase data and so-called P3 and L3 ionosphere-free linear combination of code and phase observations.</li></ul></p><p>Specifying on of these options makes only sense if Galileo data are part of the processed observation stream.</p><p>Specifying 'no' means that you don't want BNC to use Galileo data.</p>"));
1342 _pppWidgets._lcBDS->setWhatsThis(tr("<p>Specify which kind of BDS observations you want to use and on which kind of ionosphere-free linear combination of BDS observations you want to base ambiguity resolutions.</p><p><ul><li>Specifying 'P3' means that you request BNC to use code data and so-called P3 ionosphere-free linear combination of code observations.</li><li>'L3' means that you request BNC to use phase data and so-called L3 ionosphere-free linear combination of phase observations.</li> <li>'P3&L3' means that you request BNC to use both, code and phase data and so-called P3 and L3 ionosphere-free linear combination of code and phase observations.</li></ul></p><p>Specifying on of these options makes only sense if BDS data are part of the processed observation stream.</p><p>Specifying 'no' means that you don't want to use BDS data.</p>"));
[7664]1343 _pppWidgets._sigmaC1->setWhatsThis(tr("<p>Enter a Sigma for GNSS C1 code observations in meters.</p><p>The higher the sigma you enter, the less the contribution of C1 code observations to a PPP solution from combined code and phase data. 2.0 is likely to be an appropriate choice.</p><p>Default is an empty option field, meaning<br>'Sigma C1 = 2.0'</p>"));
1344 _pppWidgets._sigmaL1->setWhatsThis(tr("<p>Enter a Sigma for GNSS L1 phase observations in meters.</p><p>The higher the sigma you enter, the less the contribution of L1 phase observations to a PPP solutions from combined code and phase data. 0.01 is likely to be an appropriate choice.</p><p>Default is an empty option field, meaning<br>'Sigma L1 = 0.01'</p>"));
[7676]1345 _pppWidgets._maxResC1->setWhatsThis(tr("<p>Specify a maximum for residuals from C1 code observations in a PPP solution. '3.0' meters may be an appropriate choice for that.</p><p>If the maximum is exceeded, contributions from the corresponding observation will be ignored in the PPP solution.</p><p>Default is an empty option field, meaning<br>'Max Rex C1 = 3.0'</p>"));
1346 _pppWidgets._maxResL1->setWhatsThis(tr("<p>Specify a maximum for residuals from L1 code observations in a PPP solution. '0.03' meters may be an appropriate choice for that.</p><p>If the maximum is exceeded, contributions from the corresponding observation will be ignored in the PPP solution.</p><p>Default is an empty option field, meaning<br>'Max Rex L1 = 0.03'</p>"));
[7668]1347 _pppWidgets._eleWgtCode->setWhatsThis(tr("<p>Tic 'Ele Wgt Code' to use satellite Elevation depending Weights for Code observations in the PPP solution.</p>"));
1348 _pppWidgets._eleWgtPhase->setWhatsThis(tr("<p>Tic 'Ele Wgt Phase' to use satellite Elevation depending Weights for Phase observations in the PPP solution.</p>"));
[7664]1349 _pppWidgets._minObs->setWhatsThis(tr("<p>Select a Minimum Number of Observations per epoch for a PPP solution.</p><p>BNC will only process epochs with observation numbers reaching or exceeding this minimum.</p>"));
[7676]1350 _pppWidgets._minEle->setWhatsThis(tr("<p>Select a Minimum satellite Elevation for observations.</p><p>BNC will ignore an observation if the associated satellite Elevation does not reach or exceed this minimum.</p><p>Selecting '10 deg' may be an appropriate choice in order to avoid too noisy observations.</p>"));
[7664]1351
1352 // WhatsThis, Combine Corrections
1353 // ------------------------------
[7668]1354 _cmbTable->setWhatsThis(tr("<p>BNC allows to process several orbit and clock correction streams in real-time to produce, encode, upload and save a combination of correctors coming from different providers. To add a line to the 'Combine Corrections' table hit the 'Add Row' button, double click on the 'Mountpoint' field to specify a Broadcast Ephemeris Correction 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 a weight to be applied for this stream in the combination.</p><p>Note that the orbit information in the resulting 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 orbit and clock correction streams 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 Correction stream in the 'Combine Corrections' table. Instead of combining corrections BNC will then add the corrections to the Broadcast Ephemeris with the possibility to save final orbit and clock results in SP3 and/or Clock RINEX format.</p>"));
1355 addCmbRowButton->setWhatsThis(tr("<p>Hit 'Add Row' button to add another line to the 'Combine Corrections' table.</p>"));
1356 delCmbRowButton->setWhatsThis(tr("<p>Hit 'Delete' button to delete the highlighted line(s) from the 'Combine Corrections' table.</p>"));
1357 _cmbMethodComboBox->setWhatsThis(tr("<p>Select a clock combination approach. Options are 'Single-Epoch' and Kalman 'Filter'.</p><p>It is suggested to use the Kalman filter approach for the purpose of Precise Point Positioning.</p>"));
1358 _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>"));
1359 _cmbSamplSpinBox->setWhatsThis(tr("<p>Select a combination Sampling interval for the clocks. Clock corrections will be produced following that interval.</p><p>A value of 10 sec may be an appropriate choice.</p>"));
1360 _cmbUseGlonass->setWhatsThis(tr("<p>In case the incoming orbit and clock correction stream(s) support GLONASS, you can tick 'Use GLONASS' to produce a GPS plus GLONASS combination solution.</p><p>Default is a GPS-only combination.</p>"));
[7651]1361
[7668]1362 // WhatsThis, Upload Corrections
1363 // -----------------------------
[8089]1364 _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 Host and Port</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' table.</p><p>To fill the 'Upload Corrections' table, 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. IGS14) 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 generated Broadcast Corrections plus Broadcast Ephemeris as SP3 orbit files. If the specified directory does not exist, BNC will not create such files. The following is a path example for a Linux system: /home/user/BNC${GPSWD}.sp3<br>Note that '${GPSWD}' produces the GPS Week and Day number in the filename.</p><p>Specify a path for saving 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: /home/user/BNC${GPSWD}.clk<br>Note that '${GPSWD}' produces the GPS Week and Day number in the filename.</p><p>Finally, specify a SSR Provider ID (issued by RTCM), SSR Solution ID, and SSR Issue of Data number.</p><p>In case the 'Combine Corrections' table contains only one Broadcast Correction stream, BNC will add that stream content to the Broadcast Ephemeris to save results in files specified via SP3 and/or Clock RINEX file path. You should then define only the SP3 and Clock RINEX file path and no further option in the 'Upload Corrections' table.</p>"));
[7668]1365 addUploadRowButton->setWhatsThis(tr("<p>Hit 'Add Row' button to add another line to the 'Upload Corrections' table.</p>"));
1366 delUploadRowButton->setWhatsThis(tr("<p>Hit 'Del Row' button to delete the highlighted line(s) from the Upload Corrections' table.</p>"));
1367 _uploadIntrComboBox->setWhatsThis(tr("<p>Select the length of the SP3 and Clock RINEX files.</p>"));
1368 _uploadSamplRtcmEphCorrSpinBox->setWhatsThis(tr("<p>Select a stream's orbit correction sampling interval in seconds.</p><p>A value of zero '0' tells BNC to upload all available orbit and clock correction samples together in combined messages.</p>"));
1369 _uploadSamplSp3SpinBox->setWhatsThis(tr("<p>Select a SP3 orbit file sampling interval in minutes.</p><p>A value of zero '0' tells BNC to store all available samples into SP3 orbit files.</p>"));
1370 _uploadSamplClkRnxSpinBox->setWhatsThis(tr("<p>Select a Clock RINEX file sampling interval in seconds.</p><p>A value of zero '0' tells BNC to store all available samples into Clock RINEX files.</p>"));
1371 setUploadTrafoButton->setWhatsThis(tr("<p>Hit 'Custom Trafo' to specify your own 14 parameter Helmert Transformation instead of selecting a predefined transformation via option 'System'.</p>"));
1372 _uploadAntexFile->setWhatsThis(tr("<p>When producing SP3 files or referring orbit and clock corrections to the satellite's Center of Mass (CoM) instead Antenna Phase Center (APC), an offset has to be applied which is available from the IGS 'ANTEX file'. You must therefore specify an 'ANTEX file' path if you want to save the stream content in SP3 format and/or refer correctors to CoM.</p><p>If you don't specify an 'ANTEX file' path, the SP3 file content as well as the orbit and clock correctors will be referred to satellite APCs.</p>"));
[6772]1373
[7668]1374 // WhatsThis, Upload Ephemeris
1375 // ---------------------------
1376 _uploadEphHostLineEdit->setWhatsThis(tr("<p>BNC can upload a Broadcast Ephemeris stream in RTCM Version 3 format. Specify the IP number or URL of an Ntrip Broadcaster to upload the stream.</p><p>An empty option field means that you don't want to upload Broadcast Ephemeris.</p>"));
1377 _uploadEphPortLineEdit->setWhatsThis(tr("<p>Specify the IP port of the Ntrip Broadcaster to upload the Broadcast Ephemeris stream. Default is port 80.</p>"));
1378 _uploadEphMountpointLineEdit->setWhatsThis(tr("<p>Specify a mountpoint for uploading the Broadcast Ephemeris stream.</p>"));
1379 _uploadEphPasswordLineEdit->setWhatsThis(tr("<p>Specify the stream upload password protecting the mounpoint on the Ntrip Broadcaster.</p>"));
1380 _uploadEphSampleSpinBox->setWhatsThis(tr("<p>Select the Broadcast Ephemeris sampling interval in seconds.</p><p>Default is '5', meaning that a complete set of Broadcast Ephemeris is uploaded every 5 seconds.</p>"));
1381 _uploadEphBytesCounter->setWhatsThis(tr("<p>BNC shows the amount of data uploaded via this stream.</p>"));
1382// weber
[6699]1383
[7668]1384 // WhatsThis, Streams Canvas
1385 // -------------------------
1386 _mountPointsTable->setWhatsThis(tr("<p>Streams selected for retrieval are listed in the 'Streams' section. Clicking on 'Add Stream' button opens 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 source-table. 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. Accepted decoder strings are 'RTCM_2.x', 'RTCM_3.x' and 'RTNET'.</p><p>In case you need to log raw data as is, BNC allows 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 such stream, the approximate latitude/longitude rover position is sent to the Ntrip Broadcaster together with an approximation for the height. Default values for latitude and longitude 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>"));
1387 _actAddMountPoints->setWhatsThis(tr("<p>Add stream(s) to selection presented in the 'Streams' canvas.</p>"));
[4655]1388 _actDeleteMountPoints->setWhatsThis(tr("<p>Delete stream(s) from selection presented in the 'Streams' canvas.</p>"));
[7668]1389 _actMapMountPoints->setWhatsThis(tr("<p> Draw distribution map of stream selection presented in the 'Streams' canvas. Use 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]1390 _actStart->setWhatsThis(tr("<p> Start running BNC.</p>"));
1391 _actStop->setWhatsThis(tr("<p> Stop running BNC.</p>"));
1392
[7668]1393 // WhatsThis, Log Canvas
1394 // ---------------------
1395 _log->setWhatsThis(tr("<p>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 problems that occur in the communication link, stream availability, stream delay, stream conversion etc.</p>"));
[7676]1396 _bncFigure->setWhatsThis(tr("<p>The bandwidth consumption per stream is shown in the 'Throughput' tab in bits per second (bps) or kilobits per second (kbps).</p>"));
[7668]1397 _bncFigureLate->setWhatsThis(tr("<p>The individual latency of observations of incoming streams is shown in the 'Latency' tab. Streams not carrying observations (e.g. those providing only Broadcast Ephemeris) remain unconsidered.</p><p>Note that the calculation of correct latencies requires the clock of the host computer to be properly synchronized.</p>"));
1398 _bncFigurePPP->setWhatsThis(tr("<p>PPP time series of North (red), East (green) and Up (blue) displacements are shown in the 'PPP Plot' tab when the corresponding option is selected.</p><p>Values are referred to an XYZ a priori coordinate. The sliding PPP time series window covers the period of the latest 5 minutes.</p>"));
1399
1400
[2129]1401 // Enable/Disable all Widgets
1402 // --------------------------
1403 slotBncTextChanged();
[3788]1404 enableStartStop();
[2129]1405
[1333]1406 // Auto start
1407 // ----------
1408 if ( Qt::CheckState(settings.value("autoStart").toInt()) == Qt::Checked) {
[3782]1409 slotStart();
[1333]1410 }
[35]1411}
1412
1413// Destructor
1414////////////////////////////////////////////////////////////////////////////
1415bncWindow::~bncWindow() {
[7681]1416 if (_caster) {
1417 delete _caster; BNC_CORE->setCaster(0);
1418 }
1419 if (_casterEph) {
1420 delete _casterEph;
1421 }
[7640]1422 delete _bncFigureLate;
1423 delete _bncFigurePPP;
1424 delete _actHelp;
1425 delete _actAbout;
1426 delete _actFlowchart;
1427 delete _actFontSel;
1428 delete _actSaveOpt;
1429 delete _actQuit;
1430 delete _actAddMountPoints;
1431 delete _actDeleteMountPoints;
1432 delete _actMapMountPoints;
1433 delete _actStart;
1434 delete _actStop;
1435 delete _actwhatsthis;
1436 delete _proxyHostLineEdit;
1437 delete _proxyPortLineEdit;
1438 delete _sslCaCertPathLineEdit;
1439 delete _sslIgnoreErrorsCheckBox;
1440 delete _logFileLineEdit;
1441 delete _rawOutFileLineEdit;
1442 delete _rnxAppendCheckBox;
1443 delete _onTheFlyComboBox;
1444 delete _autoStartCheckBox;
1445 delete _rnxPathLineEdit;
1446 delete _rnxIntrComboBox;
[8398]1447 delete _rnxSamplComboBox;
[7640]1448 delete _rnxFileCheckBox;
1449 delete _rnxSkelLineEdit;
1450 delete _rnxScrpLineEdit;
1451 delete _rnxV3CheckBox;
1452 delete _rnxV2Priority;
1453 delete _ephPathLineEdit;
1454 delete _ephIntrComboBox;
1455 delete _ephOutPortLineEdit;
1456 delete _ephV3CheckBox;
1457 delete _corrPathLineEdit;
1458 delete _corrIntrComboBox;
1459 delete _corrPortLineEdit;
1460 delete _outPortLineEdit;
1461 delete _outWaitSpinBox;
[8398]1462 delete _outSamplComboBox;
[7640]1463 delete _outFileLineEdit;
1464 delete _outUPortLineEdit;
[8620]1465 delete _outLockTimeCheckBox;
[7640]1466 delete _serialMountPointLineEdit;
1467 delete _serialPortNameLineEdit;
1468 delete _serialBaudRateComboBox;
1469 delete _serialFlowControlComboBox;
1470 delete _serialDataBitsComboBox;
1471 delete _serialParityComboBox;
1472 delete _serialStopBitsComboBox;
1473 delete _serialAutoNMEAComboBox;
1474 delete _serialFileNMEALineEdit;
1475 delete _serialHeightNMEALineEdit;
1476 delete _serialManualNMEASamplingSpinBox;
1477 delete _adviseObsRateComboBox;
1478 delete _adviseFailSpinBox;
1479 delete _adviseRecoSpinBox;
1480 delete _adviseScriptLineEdit;
1481 delete _miscMountLineEdit;
1482 delete _miscPortLineEdit;
1483 delete _miscIntrComboBox;
1484 delete _miscScanRTCMCheckBox;
1485 _mountPointsTable->deleteLater();
1486 delete _log;
1487 _cmbTable->deleteLater();
1488 delete _cmbMaxresLineEdit;
1489 delete _cmbUseGlonass;
1490 delete _cmbSamplSpinBox;
1491 delete _cmbMethodComboBox;
1492 _uploadTable->deleteLater();
1493 delete _uploadIntrComboBox;
1494 delete _uploadAntexFile;
1495 delete _uploadSamplRtcmEphCorrSpinBox;
1496 delete _uploadSamplSp3SpinBox;
1497 delete _uploadSamplClkRnxSpinBox;
1498 delete _uploadEphHostLineEdit;
1499 delete _uploadEphPortLineEdit;
1500 delete _uploadEphPasswordLineEdit;
1501 delete _uploadEphMountpointLineEdit;
1502 delete _uploadEphSampleSpinBox;
1503 delete _uploadEphBytesCounter;
1504 delete _loggroup;
1505 delete _reqcActionComboBox;
1506 delete _reqcObsFileChooser;
1507 delete _reqcNavFileChooser;
1508 delete _reqcOutObsLineEdit;
1509 delete _reqcOutNavLineEdit;
1510 delete _reqcOutLogLineEdit;
1511 delete _reqcPlotDirLineEdit;
1512 delete _reqcSkyPlotSignals;
1513 delete _reqcLogSummaryOnly;
1514 delete _reqcEditOptionButton;
1515 delete _sp3CompFileChooser;
1516 delete _sp3CompExclude;
1517 delete _sp3CompLogLineEdit;
1518 //delete _canvas;
[35]1519}
1520
[7292]1521//
[1178]1522////////////////////////////////////////////////////////////////////////////
1523void bncWindow::populateMountPointsTable() {
1524
1525 for (int iRow = _mountPointsTable->rowCount()-1; iRow >=0; iRow--) {
1526 _mountPointsTable->removeRow(iRow);
1527 }
1528
[1535]1529 bncSettings settings;
[1178]1530
1531 QListIterator<QString> it(settings.value("mountPoints").toStringList());
1532 int iRow = 0;
1533 while (it.hasNext()) {
1534 QStringList hlp = it.next().split(" ");
[7182]1535 if (hlp.size() < 7) continue;
[1178]1536 _mountPointsTable->insertRow(iRow);
1537
1538 QUrl url(hlp[0]);
1539
1540 QString fullPath = url.host() + QString(":%1").arg(url.port()) + url.path();
[7176]1541 QString format(hlp[1]); QString country(hlp[2]); QString latitude(hlp[3]); QString longitude(hlp[4]);
1542 QString nmea(hlp[5]);
1543 if (hlp[6] == "S") {
[1738]1544 fullPath = hlp[0].replace(0,2,"");
1545 }
[3333]1546 QString ntripVersion = "2";
[7176]1547 if (hlp.size() >= 7) {
1548 ntripVersion = (hlp[6]);
[1352]1549 }
[1178]1550
1551 QTableWidgetItem* it;
1552 it = new QTableWidgetItem(url.userInfo());
1553 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1554 _mountPointsTable->setItem(iRow, 0, it);
1555
1556 it = new QTableWidgetItem(fullPath);
1557 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1558 _mountPointsTable->setItem(iRow, 1, it);
1559
1560 it = new QTableWidgetItem(format);
1561 _mountPointsTable->setItem(iRow, 2, it);
1562
[7176]1563 it = new QTableWidgetItem(country);
1564 _mountPointsTable->setItem(iRow, 3, it);
1565
[1178]1566 if (nmea == "yes") {
[7176]1567 it = new QTableWidgetItem(latitude);
1568 _mountPointsTable->setItem(iRow, 4, it);
1569 it = new QTableWidgetItem(longitude);
1570 _mountPointsTable->setItem(iRow, 5, it);
[1178]1571 } else {
[7176]1572 it = new QTableWidgetItem(latitude);
1573 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1574 _mountPointsTable->setItem(iRow, 4, it);
1575
1576 it = new QTableWidgetItem(longitude);
1577 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1578 _mountPointsTable->setItem(iRow, 5, it);
[1178]1579 }
1580
1581 it = new QTableWidgetItem(nmea);
1582 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
[7176]1583 _mountPointsTable->setItem(iRow, 6, it);
[1178]1584
[1352]1585 it = new QTableWidgetItem(ntripVersion);
[1511]1586 //// it->setFlags(it->flags() & ~Qt::ItemIsEditable);
[7176]1587 _mountPointsTable->setItem(iRow, 7, it);
[1352]1588
[1178]1589 bncTableItem* bncIt = new bncTableItem();
1590 bncIt->setFlags(bncIt->flags() & ~Qt::ItemIsEditable);
[7176]1591 _mountPointsTable->setItem(iRow, 8, bncIt);
[1178]1592
1593 iRow++;
1594 }
1595
1596 _mountPointsTable->sortItems(1);
[3787]1597
1598 enableStartStop();
[1178]1599}
1600
[35]1601// Retrieve Table
1602////////////////////////////////////////////////////////////////////////////
1603void bncWindow::slotAddMountPoints() {
[101]1604
[1535]1605 bncSettings settings;
[101]1606 QString proxyHost = settings.value("proxyHost").toString();
1607 int proxyPort = settings.value("proxyPort").toInt();
1608 if (proxyHost != _proxyHostLineEdit->text() ||
1609 proxyPort != _proxyPortLineEdit->text().toInt()) {
[102]1610 int iRet = QMessageBox::question(this, "Question", "Proxy options "
[7292]1611 "changed. Use the new ones?",
[101]1612 QMessageBox::Yes, QMessageBox::No,
1613 QMessageBox::NoButton);
1614 if (iRet == QMessageBox::Yes) {
1615 settings.setValue("proxyHost", _proxyHostLineEdit->text());
1616 settings.setValue("proxyPort", _proxyPortLineEdit->text());
1617 }
1618 }
1619
[3367]1620 settings.setValue("sslCaCertPath", _sslCaCertPathLineEdit->text());
[7513]1621 settings.setValue("sslIgnoreErrors", _sslIgnoreErrorsCheckBox->checkState());
[3367]1622
[1609]1623 QMessageBox msgBox;
1624 msgBox.setIcon(QMessageBox::Question);
[1874]1625 msgBox.setWindowTitle("Add Stream");
[1609]1626 msgBox.setText("Add stream(s) coming from:");
1627
[1780]1628 QPushButton* buttonNtrip = msgBox.addButton(tr("Caster"), QMessageBox::ActionRole);
1629 QPushButton* buttonIP = msgBox.addButton(tr("TCP/IP port"), QMessageBox::ActionRole);
1630 QPushButton* buttonUDP = msgBox.addButton(tr("UDP port"), QMessageBox::ActionRole);
1631 QPushButton* buttonSerial = msgBox.addButton(tr("Serial port"), QMessageBox::ActionRole);
1632 QPushButton* buttonCancel = msgBox.addButton(tr("Cancel"), QMessageBox::ActionRole);
[1609]1633
1634 msgBox.exec();
1635
1636 if (msgBox.clickedButton() == buttonNtrip) {
[1737]1637 bncTableDlg* dlg = new bncTableDlg(this);
[1609]1638 dlg->move(this->pos().x()+50, this->pos().y()+50);
[1737]1639 connect(dlg, SIGNAL(newMountPoints(QStringList*)),
[35]1640 this, SLOT(slotNewMountPoints(QStringList*)));
[1609]1641 dlg->exec();
1642 delete dlg;
1643 } else if (msgBox.clickedButton() == buttonIP) {
[1737]1644 bncIpPort* ipp = new bncIpPort(this);
1645 connect(ipp, SIGNAL(newMountPoints(QStringList*)),
[1609]1646 this, SLOT(slotNewMountPoints(QStringList*)));
1647 ipp->exec();
1648 delete ipp;
[1780]1649 } else if (msgBox.clickedButton() == buttonUDP) {
1650 bncUdpPort* udp = new bncUdpPort(this);
1651 connect(udp, SIGNAL(newMountPoints(QStringList*)),
1652 this, SLOT(slotNewMountPoints(QStringList*)));
1653 udp->exec();
1654 delete udp;
[1737]1655 } else if (msgBox.clickedButton() == buttonSerial) {
1656 bncSerialPort* sep = new bncSerialPort(this);
1657 connect(sep, SIGNAL(newMountPoints(QStringList*)),
1658 this, SLOT(slotNewMountPoints(QStringList*)));
1659 sep->exec();
1660 delete sep;
[1609]1661 } else if (msgBox.clickedButton() == buttonCancel) {
1662 // Cancel
1663 }
[3787]1664
1665 enableStartStop();
[35]1666}
1667
1668// Delete Selected Mount Points
1669////////////////////////////////////////////////////////////////////////////
1670void bncWindow::slotDeleteMountPoints() {
[117]1671
1672 int nRows = _mountPointsTable->rowCount();
1673 bool flg[nRows];
1674 for (int iRow = 0; iRow < nRows; iRow++) {
[116]1675 if (_mountPointsTable->isItemSelected(_mountPointsTable->item(iRow,1))) {
[117]1676 flg[iRow] = true;
1677 }
1678 else {
1679 flg[iRow] = false;
1680 }
1681 }
1682 for (int iRow = nRows-1; iRow >= 0; iRow--) {
1683 if (flg[iRow]) {
[116]1684 _mountPointsTable->removeRow(iRow);
[83]1685 }
1686 }
1687 _actDeleteMountPoints->setEnabled(false);
[183]1688
[3787]1689 enableStartStop();
[35]1690}
1691
1692// New Mount Points Selected
1693////////////////////////////////////////////////////////////////////////////
1694void bncWindow::slotNewMountPoints(QStringList* mountPoints) {
1695 int iRow = 0;
1696 QListIterator<QString> it(*mountPoints);
1697 while (it.hasNext()) {
[59]1698 QStringList hlp = it.next().split(" ");
[110]1699 QUrl url(hlp[0]);
1700 QString fullPath = url.host() + QString(":%1").arg(url.port()) + url.path();
[7176]1701 QString format(hlp[1]); QString country(hlp[2]); QString latitude(hlp[3]); QString longitude(hlp[4]);
1702 QString nmea(hlp[5]);
1703 if (hlp[6] == "S") {
[1738]1704 fullPath = hlp[0].replace(0,2,"");
1705 }
[3333]1706 QString ntripVersion = "2";
[7176]1707 if (hlp.size() >= 7) {
1708 ntripVersion = (hlp[6]);
[1352]1709 }
[110]1710
[35]1711 _mountPointsTable->insertRow(iRow);
[110]1712
1713 QTableWidgetItem* it;
1714 it = new QTableWidgetItem(url.userInfo());
[115]1715 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
[110]1716 _mountPointsTable->setItem(iRow, 0, it);
1717
1718 it = new QTableWidgetItem(fullPath);
[115]1719 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
[110]1720 _mountPointsTable->setItem(iRow, 1, it);
1721
1722 it = new QTableWidgetItem(format);
1723 _mountPointsTable->setItem(iRow, 2, it);
[184]1724
[7176]1725 it = new QTableWidgetItem(country);
1726 _mountPointsTable->setItem(iRow, 3, it);
1727
[410]1728 if (nmea == "yes") {
[366]1729 it = new QTableWidgetItem(latitude);
[7176]1730 _mountPointsTable->setItem(iRow, 4, it);
[366]1731 it = new QTableWidgetItem(longitude);
[7176]1732 _mountPointsTable->setItem(iRow, 5, it);
[366]1733 } else {
1734 it = new QTableWidgetItem(latitude);
1735 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
[7176]1736 _mountPointsTable->setItem(iRow, 4, it);
[366]1737 it = new QTableWidgetItem(longitude);
1738 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
[7176]1739 _mountPointsTable->setItem(iRow, 5, it);
[366]1740 }
1741
1742 it = new QTableWidgetItem(nmea);
1743 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
[7176]1744 _mountPointsTable->setItem(iRow, 6, it);
[366]1745
[1352]1746 it = new QTableWidgetItem(ntripVersion);
[7176]1747 ////it->setFlags(it->flags() & ~Qt::ItemIsEditable);
1748 _mountPointsTable->setItem(iRow, 7, it);
[1352]1749
[184]1750 bncTableItem* bncIt = new bncTableItem();
[7176]1751 _mountPointsTable->setItem(iRow, 8, bncIt);
[184]1752
[35]1753 iRow++;
1754 }
[111]1755 _mountPointsTable->hideColumn(0);
[7201]1756 _mountPointsTable->hideColumn(3);
[110]1757 _mountPointsTable->sortItems(1);
[35]1758 delete mountPoints;
[3787]1759
1760 enableStartStop();
[35]1761}
1762
[4076]1763// Save Options (serialize)
[35]1764////////////////////////////////////////////////////////////////////////////
1765void bncWindow::slotSaveOptions() {
[4076]1766 saveOptions();
1767 bncSettings settings;
1768 settings.sync();
1769}
[1504]1770
[4076]1771// Save Options (memory only)
1772////////////////////////////////////////////////////////////////////////////
1773void bncWindow::saveOptions() {
1774
[1504]1775 QStringList mountPoints;
1776 for (int iRow = 0; iRow < _mountPointsTable->rowCount(); iRow++) {
1777
[1739]1778 if (_mountPointsTable->item(iRow, 6)->text() != "S") {
[7292]1779 QUrl url( "//" + _mountPointsTable->item(iRow, 0)->text() +
[1739]1780 "@" + _mountPointsTable->item(iRow, 1)->text() );
1781
[7292]1782 mountPoints.append(url.toString() + " " +
[1739]1783 _mountPointsTable->item(iRow, 2)->text()
1784 + " " + _mountPointsTable->item(iRow, 3)->text()
1785 + " " + _mountPointsTable->item(iRow, 4)->text()
1786 + " " + _mountPointsTable->item(iRow, 5)->text()
[7176]1787 + " " + _mountPointsTable->item(iRow, 6)->text()
1788 + " " + _mountPointsTable->item(iRow, 7)->text());
[1739]1789 } else {
[7292]1790 mountPoints.append(
[1739]1791 "//" + _mountPointsTable->item(iRow, 1)->text()
1792 + " " + _mountPointsTable->item(iRow, 2)->text()
1793 + " " + _mountPointsTable->item(iRow, 3)->text()
1794 + " " + _mountPointsTable->item(iRow, 4)->text()
1795 + " " + _mountPointsTable->item(iRow, 5)->text()
[7176]1796 + " " + _mountPointsTable->item(iRow, 6)->text()
1797 + " " + _mountPointsTable->item(iRow, 7)->text());
[1739]1798 }
[1504]1799 }
1800
[7297]1801 QStringList cmbStreams;
[2870]1802 for (int iRow = 0; iRow < _cmbTable->rowCount(); iRow++) {
1803 QString hlp;
1804 for (int iCol = 0; iCol < _cmbTable->columnCount(); iCol++) {
[2965]1805 if (_cmbTable->item(iRow, iCol)) {
1806 hlp += _cmbTable->item(iRow, iCol)->text() + " ";
1807 }
[2870]1808 }
[2965]1809 if (!hlp.isEmpty()) {
[7297]1810 cmbStreams << hlp;
[2965]1811 }
[2870]1812 }
1813
[3164]1814 QStringList uploadMountpointsOut;
1815 for (int iRow = 0; iRow < _uploadTable->rowCount(); iRow++) {
[3153]1816 QString hlp;
[3164]1817 for (int iCol = 0; iCol < _uploadTable->columnCount(); iCol++) {
[7292]1818 if (_uploadTable->cellWidget(iRow, iCol) &&
[9036]1819 (iCol == 3 || iCol == 4 || iCol == 5 || iCol == 6)) {
[3158]1820 if (iCol == 3) {
[3164]1821 QLineEdit* passwd = (QLineEdit*)(_uploadTable->cellWidget(iRow, iCol));
[3158]1822 hlp += passwd->text() + ",";
1823 }
1824 else if (iCol == 4) {
[3164]1825 QComboBox* system = (QComboBox*)(_uploadTable->cellWidget(iRow, iCol));
[3158]1826 hlp += system->currentText() + ",";
1827 }
1828 else if (iCol == 5) {
[9036]1829 QComboBox* format = (QComboBox*)(_uploadTable->cellWidget(iRow, iCol));
1830 hlp += format->currentText() + ",";
1831 }
1832 else if (iCol == 6) {
[3164]1833 QCheckBox* com = (QCheckBox*)(_uploadTable->cellWidget(iRow, iCol));
[3158]1834 QString state; state.setNum(com->checkState());
1835 hlp += state + ",";
1836 }
[3153]1837 }
[3164]1838 else if (_uploadTable->item(iRow, iCol)) {
1839 hlp += _uploadTable->item(iRow, iCol)->text() + ",";
[3158]1840 }
[3153]1841 }
1842 if (!hlp.isEmpty()) {
[3164]1843 uploadMountpointsOut << hlp;
[3153]1844 }
1845 }
1846
[1535]1847 bncSettings settings;
[1504]1848
[3881]1849 settings.setValue("startTab", _aogroup->currentIndex());
1850 settings.setValue("statusTab", _loggroup->currentIndex());
1851 settings.setValue("mountPoints", mountPoints);
[7292]1852// Network
[3881]1853 settings.setValue("proxyHost", _proxyHostLineEdit->text());
1854 settings.setValue("proxyPort", _proxyPortLineEdit->text());
1855 settings.setValue("sslCaCertPath", _sslCaCertPathLineEdit->text());
[7513]1856 settings.setValue("sslIgnoreErrors", _sslIgnoreErrorsCheckBox->checkState());
[3881]1857// General
1858 settings.setValue("logFile", _logFileLineEdit->text());
1859 settings.setValue("rnxAppend", _rnxAppendCheckBox->checkState());
1860 settings.setValue("onTheFlyInterval", _onTheFlyComboBox->currentText());
[1503]1861 settings.setValue("autoStart", _autoStartCheckBox->checkState());
[3881]1862 settings.setValue("rawOutFile", _rawOutFileLineEdit->text());
1863// RINEX Observations
1864 settings.setValue("rnxPath", _rnxPathLineEdit->text());
1865 settings.setValue("rnxIntr", _rnxIntrComboBox->currentText());
[8398]1866 settings.setValue("rnxSampl", _rnxSamplComboBox->currentText());
[3881]1867 settings.setValue("rnxSkel", _rnxSkelLineEdit->text());
[6796]1868 settings.setValue("rnxOnlyWithSKL",_rnxFileCheckBox->checkState());
[3881]1869 settings.setValue("rnxScript", _rnxScrpLineEdit->text());
[6237]1870 settings.setValue("rnxV2Priority",_rnxV2Priority->text());
[8371]1871 settings.setValue("rnxV3", _rnxV3CheckBox->checkState());
[3881]1872// RINEX Ephemeris
[7172]1873 settings.setValue("ephPath", _ephPathLineEdit->text());
1874 settings.setValue("ephIntr", _ephIntrComboBox->currentText());
[7324]1875 settings.setValue("ephOutPort", _ephOutPortLineEdit->text());
[8400]1876 settings.setValue("ephV3", _ephV3CheckBox->checkState());
[3881]1877// Broadcast Corrections
1878 settings.setValue("corrPath", _corrPathLineEdit->text());
[1503]1879 settings.setValue("corrIntr", _corrIntrComboBox->currentText());
1880 settings.setValue("corrPort", _corrPortLineEdit->text());
[3881]1881// Feed Engine
1882 settings.setValue("outPort", _outPortLineEdit->text());
[7391]1883 settings.setValue("outWait", _outWaitSpinBox->value());
[8398]1884 settings.setValue("outSampl", _outSamplComboBox->currentText());
[3881]1885 settings.setValue("outFile", _outFileLineEdit->text());
1886 settings.setValue("outUPort", _outUPortLineEdit->text());
[8620]1887 settings.setValue("outLockTime",_outLockTimeCheckBox->checkState());
[3881]1888// Serial Output
1889 settings.setValue("serialMountPoint",_serialMountPointLineEdit->text());
1890 settings.setValue("serialPortName", _serialPortNameLineEdit->text());
1891 settings.setValue("serialBaudRate", _serialBaudRateComboBox->currentText());
1892 settings.setValue("serialFlowControl",_serialFlowControlComboBox->currentText());
1893 settings.setValue("serialDataBits", _serialDataBitsComboBox->currentText());
1894 settings.setValue("serialParity", _serialParityComboBox->currentText());
1895 settings.setValue("serialStopBits", _serialStopBitsComboBox->currentText());
1896 settings.setValue("serialAutoNMEA", _serialAutoNMEAComboBox->currentText());
[6751]1897 settings.setValue("serialFileNMEA", _serialFileNMEALineEdit->text());
1898 settings.setValue("serialHeightNMEA", _serialHeightNMEALineEdit->text());
[6752]1899 settings.setValue("serialManualNMEASampling", _serialManualNMEASamplingSpinBox->value());
[3881]1900// Outages
[7331]1901 settings.setValue("adviseObsRate", _adviseObsRateComboBox->currentText());
1902 settings.setValue("adviseFail", _adviseFailSpinBox->value());
1903 settings.setValue("adviseReco", _adviseRecoSpinBox->value());
1904 settings.setValue("adviseScript", _adviseScriptLineEdit->text());
[7292]1905// Miscellaneous
[1503]1906 settings.setValue("miscMount", _miscMountLineEdit->text());
[5644]1907 settings.setValue("miscPort", _miscPortLineEdit->text());
[7419]1908 settings.setValue("miscIntr", _miscIntrComboBox->currentText());
1909 settings.setValue("miscScanRTCM", _miscScanRTCMCheckBox->checkState());
[3897]1910// Reqc
1911 settings.setValue("reqcAction", _reqcActionComboBox->currentText());
1912 settings.setValue("reqcObsFile", _reqcObsFileChooser->fileName());
1913 settings.setValue("reqcNavFile", _reqcNavFileChooser->fileName());
1914 settings.setValue("reqcOutObsFile", _reqcOutObsLineEdit->text());
1915 settings.setValue("reqcOutNavFile", _reqcOutNavLineEdit->text());
1916 settings.setValue("reqcOutLogFile", _reqcOutLogLineEdit->text());
[4449]1917 settings.setValue("reqcPlotDir", _reqcPlotDirLineEdit->text());
[6410]1918 settings.setValue("reqcSkyPlotSignals", _reqcSkyPlotSignals->text());
[6299]1919 settings.setValue("reqcLogSummaryOnly", _reqcLogSummaryOnly->checkState());
[6337]1920// SP3 Comparison
1921 settings.setValue("sp3CompFile", _sp3CompFileChooser->fileName());
[6430]1922 settings.setValue("sp3CompExclude", _sp3CompExclude->text());
[6337]1923 settings.setValue("sp3CompOutLogFile", _sp3CompLogLineEdit->text());
[4185]1924// Combine Corrections
[7297]1925 if (!cmbStreams.isEmpty()) {
1926 settings.setValue("cmbStreams", cmbStreams);
[2965]1927 }
[3075]1928 else {
[7297]1929 settings.setValue("cmbStreams", "");
[3075]1930 }
[6173]1931 settings.setValue("cmbMethod", _cmbMethodComboBox->currentText());
1932 settings.setValue("cmbMaxres", _cmbMaxresLineEdit->text());
1933 settings.setValue("cmbSampl", _cmbSamplSpinBox->value());
1934 settings.setValue("cmbUseGlonass", _cmbUseGlonass->checkState());
[4185]1935// Upload Corrections
[3164]1936 if (!uploadMountpointsOut.isEmpty()) {
1937 settings.setValue("uploadMountpointsOut", uploadMountpointsOut);
[3153]1938 }
1939 else {
[3164]1940 settings.setValue("uploadMountpointsOut", "");
[3153]1941 }
[4172]1942 settings.setValue("uploadIntr", _uploadIntrComboBox->currentText());
1943 settings.setValue("uploadSamplRtcmEphCorr", _uploadSamplRtcmEphCorrSpinBox->value());
1944 settings.setValue("uploadSamplSp3", _uploadSamplSp3SpinBox->value());
1945 settings.setValue("uploadSamplClkRnx", _uploadSamplClkRnxSpinBox->value());
[6665]1946 settings.setValue("uploadAntexFile", _uploadAntexFile->fileName());
[4185]1947// Upload Ephemeris
[3242]1948 settings.setValue("uploadEphHost", _uploadEphHostLineEdit->text());
1949 settings.setValue("uploadEphPort", _uploadEphPortLineEdit->text());
[3881]1950 settings.setValue("uploadEphMountpoint",_uploadEphMountpointLineEdit->text());
[3242]1951 settings.setValue("uploadEphPassword", _uploadEphPasswordLineEdit->text());
1952 settings.setValue("uploadEphSample", _uploadEphSampleSpinBox->value());
[4766]1953
[1200]1954 if (_caster) {
[4250]1955 _caster->readMountPoints();
[1200]1956 }
[5694]1957
1958 _pppWidgets.saveOptions();
[35]1959}
1960
1961// All get slots terminated
1962////////////////////////////////////////////////////////////////////////////
[1556]1963void bncWindow::slotGetThreadsFinished() {
[5068]1964 BNC_CORE->slotMessage("All Get Threads Terminated", true);
[5729]1965 delete _caster; _caster = 0; BNC_CORE->setCaster(0);
[3249]1966 delete _casterEph; _casterEph = 0;
[3787]1967 _runningRealTime = false;
[35]1968}
1969
[3783]1970// Start It!
[35]1971////////////////////////////////////////////////////////////////////////////
[3782]1972void bncWindow::slotStart() {
[4076]1973 saveOptions();
[5926]1974 if ( _pppWidgets._dataSource->currentText() == "RINEX Files") {
[5971]1975 _runningPPP = true;
1976 enableStartStop();
[5993]1977 _caster = new bncCaster(); BNC_CORE->setCaster(_caster);
[5946]1978 BNC_CORE->startPPP();
[7042]1979 _bncFigurePPP->reset();
[5926]1980 }
1981 else if ( !_reqcActionComboBox->currentText().isEmpty() ) {
[5971]1982 if (_reqcActionComboBox->currentText() == "Analyze") {
1983 _runningQC = true;
1984 t_reqcAnalyze* reqcAnalyze = new t_reqcAnalyze(this);
1985 connect(reqcAnalyze, SIGNAL(finished()), this, SLOT(slotPostProcessingFinished()));
1986 reqcAnalyze->start();
1987 }
1988 else {
1989 _runningEdit = true;
1990 t_reqcEdit* reqcEdit = new t_reqcEdit(this);
1991 connect(reqcEdit, SIGNAL(finished()), this, SLOT(slotPostProcessingFinished()));
1992 reqcEdit->start();
1993 }
1994 enableStartStop();
[3783]1995 }
[6333]1996 else if (!_sp3CompFileChooser->fileName().isEmpty()) {
1997 _runningSp3Comp = true;
[6335]1998 t_sp3Comp* sp3Comp = new t_sp3Comp(this);
1999 connect(sp3Comp, SIGNAL(finished()), this, SLOT(slotPostProcessingFinished()));
2000 sp3Comp->start();
[6333]2001 enableStartStop();
2002 }
[3783]2003 else {
2004 startRealTime();
[5946]2005 BNC_CORE->startPPP();
[3783]2006 }
2007}
[128]2008
[3783]2009// Start Real-Time (Retrieve Data etc.)
2010////////////////////////////////////////////////////////////////////////////
2011void bncWindow::startRealTime() {
2012
[3787]2013 _runningRealTime = true;
2014
[2177]2015 _bncFigurePPP->reset();
2016
[35]2017 _actDeleteMountPoints->setEnabled(false);
2018
[3787]2019 enableStartStop();
2020
[5729]2021 _caster = new bncCaster();
[35]2022
[5725]2023 BNC_CORE->setCaster(_caster);
[7324]2024 BNC_CORE->setPortEph(_ephOutPortLineEdit->text().toInt());
[5068]2025 BNC_CORE->setPortCorr(_corrPortLineEdit->text().toInt());
2026 BNC_CORE->initCombination();
[592]2027
[7292]2028 connect(_caster, SIGNAL(getThreadsFinished()),
[1556]2029 this, SLOT(slotGetThreadsFinished()));
[35]2030
[7292]2031 connect (_caster, SIGNAL(mountPointsRead(QList<bncGetThread*>)),
[1179]2032 this, SLOT(slotMountPointsRead(QList<bncGetThread*>)));
[1173]2033
[7883]2034 BNC_CORE->slotMessage("========== Start BNC v" BNCVERSION" ("BNC_OS") ==========", true);
[1188]2035
[1875]2036 bncSettings settings;
[1880]2037
[6776]2038 // Active panels
2039 // -------------
2040 if (!_rnxPathLineEdit->text().isEmpty())
2041 BNC_CORE->slotMessage("Panel 'RINEX Observations' active", true);
2042 if (!_ephPathLineEdit->text().isEmpty())
2043 BNC_CORE->slotMessage("Panel 'RINEX Ephemeris' active", true);
2044 if (!_corrPathLineEdit->text().isEmpty())
2045 BNC_CORE->slotMessage("Panel 'Broadcast Corrections' active", true);
2046 if (!_outPortLineEdit->text().isEmpty())
2047 BNC_CORE->slotMessage("Panel 'Feed Engine' active", true);
2048 if (!_serialMountPointLineEdit->text().isEmpty())
2049 BNC_CORE->slotMessage("Panel 'Serial Output' active", true);
[7331]2050 if (!_adviseObsRateComboBox->currentText().isEmpty())
[6776]2051 BNC_CORE->slotMessage("Panel 'Outages' active", true);
2052 if (!_miscMountLineEdit->text().isEmpty())
2053 BNC_CORE->slotMessage("Panel 'Miscellaneous' active", true);
2054 if (_pppWidgets._dataSource->currentText() == "Real-Time Streams")
2055 BNC_CORE->slotMessage("Panel 'PPP' active", true);
[7292]2056 if (_cmbTable->rowCount() > 0)
[6776]2057 BNC_CORE->slotMessage("Panel 'Combine Corrections' active", true);
[7292]2058 if (_uploadTable->rowCount() > 0)
[6776]2059 BNC_CORE->slotMessage("Panel 'Upload Corrections' active", true);
2060 if (!_uploadEphHostLineEdit->text().isEmpty())
2061 BNC_CORE->slotMessage("Panel 'UploadEphemeris' active", true);
2062
[1875]2063 QDir rnxdir(settings.value("rnxPath").toString());
[5068]2064 if (!rnxdir.exists()) BNC_CORE->slotMessage("Cannot find RINEX Observations directory", true);
[1880]2065
2066 QString rnx_file = settings.value("rnxScript").toString();
2067 if ( !rnx_file.isEmpty() ) {
2068 QFile rnxfile(settings.value("rnxScript").toString());
[5068]2069 if (!rnxfile.exists()) BNC_CORE->slotMessage("Cannot find RINEX Observations script", true);
[1880]2070 }
2071
[1875]2072 QDir ephdir(settings.value("ephPath").toString());
[5068]2073 if (!ephdir.exists()) BNC_CORE->slotMessage("Cannot find RINEX Ephemeris directory", true);
[1880]2074
[1875]2075 QDir corrdir(settings.value("corrPath").toString());
[5068]2076 if (!corrdir.exists()) BNC_CORE->slotMessage("Cannot find Broadcast Corrections directory", true);
[1880]2077
2078 QString advise_file = settings.value("adviseScript").toString();
2079 if ( !advise_file.isEmpty() ) {
[1875]2080 QFile advisefile(settings.value("adviseScript").toString());
[5068]2081 if (!advisefile.exists()) BNC_CORE->slotMessage("Cannot find Outages script", true);
[1875]2082 }
2083
[4250]2084 _caster->readMountPoints();
[3249]2085
[3250]2086 _casterEph = new bncEphUploadCaster();
[7292]2087 connect(_casterEph, SIGNAL(newBytes(QByteArray,double)),
[3254]2088 _uploadEphBytesCounter, SLOT(slotNewBytes(QByteArray,double)));
[35]2089}
[83]2090
[182]2091// Retrieve Data
2092////////////////////////////////////////////////////////////////////////////
2093void bncWindow::slotStop() {
[7292]2094 int iRet = QMessageBox::question(this, "Stop", "Stop retrieving/processing data?",
[182]2095 QMessageBox::Yes, QMessageBox::No,
2096 QMessageBox::NoButton);
2097 if (iRet == QMessageBox::Yes) {
[5900]2098 BNC_CORE->stopPPP();
[5068]2099 BNC_CORE->stopCombination();
[5729]2100 delete _caster; _caster = 0; BNC_CORE->setCaster(0);
[3249]2101 delete _casterEph; _casterEph = 0;
[3787]2102 _runningRealTime = false;
[5971]2103 _runningPPP = false;
[3790]2104 enableStartStop();
[182]2105 }
2106}
2107
[83]2108// Close Application gracefully
2109////////////////////////////////////////////////////////////////////////////
2110void bncWindow::closeEvent(QCloseEvent* event) {
2111
[7292]2112 int iRet = QMessageBox::question(this, "Close", "Save Options?",
[83]2113 QMessageBox::Yes, QMessageBox::No,
2114 QMessageBox::Cancel);
2115
2116 if (iRet == QMessageBox::Cancel) {
2117 event->ignore();
2118 return;
2119 }
2120 else if (iRet == QMessageBox::Yes) {
2121 slotSaveOptions();
2122 }
2123
[5900]2124 BNC_CORE->stopPPP();
[5716]2125
[608]2126 QMainWindow::closeEvent(event);
[83]2127}
2128
2129// User changed the selection of mountPoints
2130////////////////////////////////////////////////////////////////////////////
2131void bncWindow::slotSelectionChanged() {
2132 if (_mountPointsTable->selectedItems().isEmpty()) {
2133 _actDeleteMountPoints->setEnabled(false);
2134 }
2135 else {
2136 _actDeleteMountPoints->setEnabled(true);
2137 }
2138}
2139
[7292]2140// Display Program Messages
[83]2141////////////////////////////////////////////////////////////////////////////
[1299]2142void bncWindow::slotWindowMessage(const QByteArray msg, bool showOnScreen) {
[5947]2143 if (showOnScreen ) {
[5980]2144 _log->append(QDateTime::currentDateTime().toUTC().toString("yy-MM-dd hh:mm:ss ") + msg);
[1299]2145 }
[7292]2146}
[83]2147
[108]2148// About Message
2149////////////////////////////////////////////////////////////////////////////
2150void bncWindow::slotAbout() {
[679]2151 new bncAboutDlg(0);
[108]2152}
2153
[989]2154//Flowchart
2155////////////////////////////////////////////////////////////////////////////
2156void bncWindow::slotFlowchart() {
2157 new bncFlowchartDlg(0);
2158}
2159
[108]2160// Help Window
2161////////////////////////////////////////////////////////////////////////////
2162void bncWindow::slotHelp() {
[7292]2163 QUrl url;
[177]2164 url.setPath(":bnchelp.html");
[676]2165 new bncHlpDlg(0, url);
[108]2166}
[110]2167
2168// Select Fonts
2169////////////////////////////////////////////////////////////////////////////
2170void bncWindow::slotFontSel() {
2171 bool ok;
[7292]2172 QFont newFont = QFontDialog::getFont(&ok, this->font(), this);
[110]2173 if (ok) {
[1535]2174 bncSettings settings;
[113]2175 settings.setValue("font", newFont.toString());
[110]2176 QApplication::setFont(newFont);
[113]2177 int ww = QFontMetrics(newFont).width('w');
[152]2178 setMinimumSize(60*ww, 80*ww);
2179 resize(60*ww, 80*ww);
[110]2180 }
2181}
[399]2182
2183// Whats This Help
2184void bncWindow::slotWhatsThis() {
[1173]2185 QWhatsThis::enterWhatsThisMode();
[399]2186}
2187
[7292]2188//
[1173]2189////////////////////////////////////////////////////////////////////////////
[1179]2190void bncWindow::slotMountPointsRead(QList<bncGetThread*> threads) {
[5187]2191 _threads = threads;
2192
[1998]2193 _bncFigure->updateMountPoints();
2194 _bncFigureLate->updateMountPoints();
2195
[1178]2196 populateMountPointsTable();
[1535]2197 bncSettings settings;
[8492]2198 _outSamplComboBox->findText(settings.value("outSampl").toString());
[7391]2199 _outWaitSpinBox->setValue(settings.value("outWait").toInt());
[1179]2200 QListIterator<bncGetThread*> iTh(threads);
2201 while (iTh.hasNext()) {
2202 bncGetThread* thread = iTh.next();
2203 for (int iRow = 0; iRow < _mountPointsTable->rowCount(); iRow++) {
[7292]2204 QUrl url( "//" + _mountPointsTable->item(iRow, 0)->text() +
[1179]2205 "@" + _mountPointsTable->item(iRow, 1)->text() );
2206 if (url == thread->mountPoint() &&
[7176]2207 _mountPointsTable->item(iRow, 4)->text() == thread->latitude() &&
2208 _mountPointsTable->item(iRow, 5)->text() == thread->longitude() ) {
2209 ((bncTableItem*) _mountPointsTable->item(iRow, 8))->setGetThread(thread);
[2010]2210 disconnect(thread, SIGNAL(newBytes(QByteArray, double)),
2211 _bncFigure, SLOT(slotNewData(QByteArray, double)));
[1926]2212 connect(thread, SIGNAL(newBytes(QByteArray, double)),
[1932]2213 _bncFigure, SLOT(slotNewData(QByteArray, double)));
[2010]2214 disconnect(thread, SIGNAL(newLatency(QByteArray, double)),
2215 _bncFigureLate, SLOT(slotNewLatency(QByteArray, double)));
[1972]2216 connect(thread, SIGNAL(newLatency(QByteArray, double)),
[1975]2217 _bncFigureLate, SLOT(slotNewLatency(QByteArray, double)));
[1179]2218 break;
2219 }
2220 }
2221 }
[1173]2222}
2223
[7292]2224//
[1173]2225////////////////////////////////////////////////////////////////////////////
[679]2226void bncWindow::CreateMenu() {
2227 // Create Menus
2228 // ------------
2229 _menuFile = menuBar()->addMenu(tr("&File"));
2230 _menuFile->addAction(_actFontSel);
2231 _menuFile->addSeparator();
2232 _menuFile->addAction(_actSaveOpt);
2233 _menuFile->addSeparator();
2234 _menuFile->addAction(_actQuit);
[399]2235
[679]2236 _menuHlp = menuBar()->addMenu(tr("&Help"));
2237 _menuHlp->addAction(_actHelp);
[989]2238 _menuHlp->addAction(_actFlowchart);
[679]2239 _menuHlp->addAction(_actAbout);
2240}
2241
[1439]2242// Toolbar
[1173]2243////////////////////////////////////////////////////////////////////////////
[679]2244void bncWindow::AddToolbar() {
2245 QToolBar* toolBar = new QToolBar;
[7292]2246 addToolBar(Qt::BottomToolBarArea, toolBar);
[679]2247 toolBar->setMovable(false);
2248 toolBar->addAction(_actAddMountPoints);
2249 toolBar->addAction(_actDeleteMountPoints);
[5162]2250 toolBar->addAction(_actMapMountPoints);
[3782]2251 toolBar->addAction(_actStart);
[679]2252 toolBar->addAction(_actStop);
[3610]2253 toolBar->addWidget(new QLabel(" "));
[679]2254 toolBar->addAction(_actwhatsthis);
[7292]2255}
[679]2256
[1439]2257// About
[1173]2258////////////////////////////////////////////////////////////////////////////
[7292]2259bncAboutDlg::bncAboutDlg(QWidget* parent) :
[679]2260 QDialog(parent) {
2261
2262 QTextBrowser* tb = new QTextBrowser;
2263 QUrl url; url.setPath(":bncabout.html");
2264 tb->setSource(url);
2265 tb->setReadOnly(true);
2266
2267 int ww = QFontMetrics(font()).width('w');
2268 QPushButton* _closeButton = new QPushButton("Close");
2269 _closeButton->setMaximumWidth(10*ww);
2270 connect(_closeButton, SIGNAL(clicked()), this, SLOT(close()));
2271
2272 QGridLayout* dlgLayout = new QGridLayout();
2273 QLabel* img = new QLabel();
2274 img->setPixmap(QPixmap(":ntrip-logo.png"));
2275 dlgLayout->addWidget(img, 0,0);
[7883]2276 dlgLayout->addWidget(new QLabel("BKG Ntrip Client (BNC) Version "BNCVERSION), 0,1);
[679]2277 dlgLayout->addWidget(tb,1,0,1,2);
[7292]2278 dlgLayout->addWidget(_closeButton,2,1,Qt::AlignRight);
[679]2279
2280 setLayout(dlgLayout);
2281 resize(60*ww, 60*ww);
[1545]2282 setWindowTitle("About BNC");
[679]2283 show();
2284}
2285
[7292]2286//
[1173]2287////////////////////////////////////////////////////////////////////////////
[679]2288bncAboutDlg::~bncAboutDlg() {
[7640]2289
[7292]2290};
[679]2291
[7292]2292// Flowchart
[1173]2293////////////////////////////////////////////////////////////////////////////
[989]2294bncFlowchartDlg::bncFlowchartDlg(QWidget* parent) :
2295 QDialog(parent) {
2296
2297 int ww = QFontMetrics(font()).width('w');
2298 QPushButton* _closeButton = new QPushButton("Close");
2299 _closeButton->setMaximumWidth(10*ww);
2300 connect(_closeButton, SIGNAL(clicked()), this, SLOT(close()));
2301
2302 QGridLayout* dlgLayout = new QGridLayout();
2303 QLabel* img = new QLabel();
[997]2304 img->setPixmap(QPixmap(":bncflowchart.png"));
[989]2305 dlgLayout->addWidget(img, 0,0);
2306 dlgLayout->addWidget(_closeButton,1,0,Qt::AlignLeft);
2307
2308 setLayout(dlgLayout);
[1545]2309 setWindowTitle("Flow Chart");
[989]2310 show();
2311}
2312
[7292]2313//
[1173]2314////////////////////////////////////////////////////////////////////////////
[989]2315bncFlowchartDlg::~bncFlowchartDlg() {
2316};
2317
[3605]2318// Enable/Disable Widget (and change its color)
2319////////////////////////////////////////////////////////////////////////////
2320void bncWindow::enableWidget(bool enable, QWidget* widget) {
[6765]2321
[3605]2322 const static QPalette paletteWhite(QColor(255, 255, 255));
2323 const static QPalette paletteGray(QColor(230, 230, 230));
2324
2325 widget->setEnabled(enable);
2326 if (enable) {
2327 widget->setPalette(paletteWhite);
2328 }
2329 else {
2330 widget->setPalette(paletteGray);
2331 }
2332}
2333
[1439]2334// Bnc Text
[7292]2335////////////////////////////////////////////////////////////////////////////
[6766]2336void bncWindow::slotBncTextChanged(){
[1439]2337
[6764]2338 const static QPalette paletteWhite(QColor(255, 255, 255));
2339 const static QPalette paletteGray(QColor(230, 230, 230));
2340
[3605]2341 bool enable = true;
2342
[1439]2343 // Proxy
2344 //------
[2129]2345 if (sender() == 0 || sender() == _proxyHostLineEdit) {
[3605]2346 enable = !_proxyHostLineEdit->text().isEmpty();
2347 enableWidget(enable, _proxyPortLineEdit);
[1439]2348 }
2349
2350 // RINEX Observations
2351 // ------------------
[2129]2352 if (sender() == 0 || sender() == _rnxPathLineEdit) {
[3605]2353 enable = !_rnxPathLineEdit->text().isEmpty();
[6683]2354 enableWidget(enable, _rnxIntrComboBox);
[8398]2355 enableWidget(enable, _rnxSamplComboBox);
[3605]2356 enableWidget(enable, _rnxSkelLineEdit);
[6796]2357 enableWidget(enable, _rnxFileCheckBox);
[3605]2358 enableWidget(enable, _rnxScrpLineEdit);
[6763]2359 enableWidget(enable, _rnxV2Priority);
[3605]2360 enableWidget(enable, _rnxV3CheckBox);
[6763]2361
2362 bool enable1 = true;
2363 enable1 = _rnxV3CheckBox->isChecked();
2364 if (enable && enable1) {
2365 enableWidget(false, _rnxV2Priority);
[6683]2366 }
[6763]2367 if (enable && !enable1) {
2368 enableWidget(true, _rnxV2Priority);
[6683]2369 }
[1439]2370 }
2371
[6683]2372 // RINEX Observations, Signal Priority
2373 // -----------------------------------
2374 if (sender() == 0 || sender() == _rnxV3CheckBox) {
[6763]2375 if (!_rnxPathLineEdit->text().isEmpty()) {
2376 enableWidget(enable, _rnxIntrComboBox);
2377 enable = !_rnxV3CheckBox->isChecked();
2378 enableWidget(enable, _rnxV2Priority);
[6683]2379 }
2380 }
2381
[1439]2382 // RINEX Ephemeris
2383 // ---------------
[7324]2384 if (sender() == 0 || sender() == _ephPathLineEdit || sender() == _ephOutPortLineEdit) {
2385 enable = !_ephPathLineEdit->text().isEmpty() || !_ephOutPortLineEdit->text().isEmpty();
[3605]2386 enableWidget(enable, _ephIntrComboBox);
2387 enableWidget(enable, _ephV3CheckBox);
[1439]2388 }
2389
[1682]2390 // Broadcast Corrections
[1439]2391 // ---------------------
[3605]2392 if (sender() == 0 || sender() == _corrPathLineEdit || sender() == _corrPortLineEdit) {
2393 enable = !_corrPathLineEdit->text().isEmpty() || !_corrPortLineEdit->text().isEmpty();
[7292]2394 enableWidget(enable, _corrIntrComboBox);
[1439]2395 }
2396
2397 // Feed Engine
2398 // -----------
[3605]2399 if (sender() == 0 || sender() == _outPortLineEdit || sender() == _outFileLineEdit) {
2400 enable = !_outPortLineEdit->text().isEmpty() || !_outFileLineEdit->text().isEmpty();
[7391]2401 enableWidget(enable, _outWaitSpinBox);
[8398]2402 enableWidget(enable, _outSamplComboBox);
[1439]2403 }
2404
[1746]2405 // Serial Output
2406 // -------------
[7292]2407 if (sender() == 0 || sender() == _serialMountPointLineEdit ||
[2128]2408 sender() == _serialAutoNMEAComboBox) {
[3605]2409 enable = !_serialMountPointLineEdit->text().isEmpty();
2410 enableWidget(enable, _serialPortNameLineEdit);
2411 enableWidget(enable, _serialBaudRateComboBox);
2412 enableWidget(enable, _serialParityComboBox);
2413 enableWidget(enable, _serialDataBitsComboBox);
2414 enableWidget(enable, _serialStopBitsComboBox);
2415 enableWidget(enable, _serialFlowControlComboBox);
2416 enableWidget(enable, _serialAutoNMEAComboBox);
[6684]2417 bool enable2 = enable && _serialAutoNMEAComboBox->currentText() == "Auto";
[3605]2418 enableWidget(enable2, _serialFileNMEALineEdit);
[6789]2419 bool enable3 = enable && _serialAutoNMEAComboBox->currentText().contains("Manual");
[6684]2420 enableWidget(enable3, _serialHeightNMEALineEdit);
[6751]2421 enableWidget(enable3, _serialManualNMEASamplingSpinBox);
[1439]2422 }
2423
2424 // Outages
2425 // -------
[7331]2426 if (sender() == 0 || sender() == _adviseObsRateComboBox) {
2427 enable = !_adviseObsRateComboBox->currentText().isEmpty();
[3605]2428 enableWidget(enable, _adviseFailSpinBox);
2429 enableWidget(enable, _adviseRecoSpinBox);
2430 enableWidget(enable, _adviseScriptLineEdit);
[1439]2431 }
2432
2433 // Miscellaneous
2434 // -------------
[2129]2435 if (sender() == 0 || sender() == _miscMountLineEdit) {
[3605]2436 enable = !_miscMountLineEdit->text().isEmpty();
[7419]2437 enableWidget(enable, _miscIntrComboBox);
2438 enableWidget(enable, _miscScanRTCMCheckBox);
[5644]2439 enableWidget(enable, _miscPortLineEdit);
[1439]2440 }
[2090]2441
[3813]2442 // Enable/disable Broadcast Ephemerides
[3810]2443 // ------------------------------------
2444 if (sender() == 0 || sender() == _uploadEphHostLineEdit) {
[6985]2445 enable = !_uploadEphHostLineEdit->text().isEmpty();
2446 enableWidget(enable, _uploadEphPortLineEdit);
2447 enableWidget(enable, _uploadEphMountpointLineEdit);
2448 enableWidget(enable, _uploadEphPasswordLineEdit);
2449 enableWidget(enable, _uploadEphSampleSpinBox);
[3810]2450 }
2451
[4185]2452 // Combine Corrections
2453 // -------------------
[3813]2454 if (sender() == 0 || sender() == _cmbTable) {
2455 int iRow = _cmbTable->rowCount();
2456 if (iRow > 0) {
2457 enableWidget(true, _cmbMethodComboBox);
[6766]2458 enableWidget(true, _cmbMaxresLineEdit);
2459 enableWidget(true, _cmbSamplSpinBox);
2460 enableWidget(true, _cmbUseGlonass);
[7292]2461 }
[3813]2462 else {
2463 enableWidget(false, _cmbMethodComboBox);
[6766]2464 enableWidget(false, _cmbMaxresLineEdit);
2465 enableWidget(false, _cmbSamplSpinBox);
2466 enableWidget(false, _cmbUseGlonass);
[3813]2467 }
2468 }
2469
2470 // Upload(clk)
2471 // -----------
2472 int iRow = _uploadTable->rowCount();
2473 if (iRow > 0) {
2474 enableWidget(true, _uploadIntrComboBox);
[4172]2475 enableWidget(true, _uploadSamplRtcmEphCorrSpinBox);
2476 enableWidget(true, _uploadSamplClkRnxSpinBox);
2477 enableWidget(true, _uploadSamplSp3SpinBox);
[6665]2478 enableWidget(true, _uploadAntexFile);
[7292]2479 }
[3813]2480 else {
2481 enableWidget(false, _uploadIntrComboBox);
[4172]2482 enableWidget(false, _uploadSamplRtcmEphCorrSpinBox);
2483 enableWidget(false, _uploadSamplClkRnxSpinBox);
2484 enableWidget(false, _uploadSamplSp3SpinBox);
[6665]2485 enableWidget(false, _uploadAntexFile);
[3813]2486 }
2487
[5861]2488 // QC
2489 // --
[6411]2490 if (sender() == 0 || sender() == _reqcActionComboBox || sender() == _reqcSkyPlotSignals) {
[3897]2491 enable = !_reqcActionComboBox->currentText().isEmpty();
[6411]2492 bool enable10 = _reqcActionComboBox->currentText() == "Edit/Concatenate";
[6736]2493// bool enablePlot = !_reqcSkyPlotSignals->text().isEmpty();
[6411]2494 enableWidget(enable, _reqcObsFileChooser);
2495 enableWidget(enable, _reqcNavFileChooser);
2496 enableWidget(enable, _reqcOutLogLineEdit);
2497 enableWidget(enable && enable10, _reqcEditOptionButton);
2498 enableWidget(enable && enable10, _reqcOutObsLineEdit);
2499 enableWidget(enable && enable10, _reqcOutNavLineEdit);
2500 enableWidget(enable && !enable10, _reqcLogSummaryOnly);
2501 enableWidget(enable && !enable10, _reqcSkyPlotSignals);
[6736]2502// enableWidget(enable && !enable10 && enablePlot, _reqcPlotDirLineEdit);
2503 enableWidget(enable && !enable10, _reqcPlotDirLineEdit);
[3739]2504 }
[4085]2505
[6648]2506 // SP3 File Comparison
2507 // -------------------
2508 if (sender() == 0 || sender() == _sp3CompFileChooser) {
2509 enable = !_sp3CompFileChooser->fileName().isEmpty();
2510 enableWidget(enable, _sp3CompLogLineEdit);
2511 enableWidget(enable, _sp3CompExclude);
2512 }
2513
[4085]2514 enableStartStop();
[6766]2515}
[2869]2516
[7292]2517//
[2869]2518////////////////////////////////////////////////////////////////////////////
2519void bncWindow::slotAddCmbRow() {
2520 int iRow = _cmbTable->rowCount();
2521 _cmbTable->insertRow(iRow);
2522 for (int iCol = 0; iCol < _cmbTable->columnCount(); iCol++) {
2523 _cmbTable->setItem(iRow, iCol, new QTableWidgetItem(""));
2524 }
2525}
2526
[7292]2527//
[2869]2528////////////////////////////////////////////////////////////////////////////
2529void bncWindow::slotDelCmbRow() {
[6765]2530
[6766]2531 const static QPalette paletteWhite(QColor(255, 255, 255));
2532 const static QPalette paletteGray(QColor(230, 230, 230));
2533
[2869]2534 int nRows = _cmbTable->rowCount();
2535 bool flg[nRows];
2536 for (int iRow = 0; iRow < nRows; iRow++) {
2537 if (_cmbTable->isItemSelected(_cmbTable->item(iRow,1))) {
2538 flg[iRow] = true;
2539 }
2540 else {
2541 flg[iRow] = false;
2542 }
2543 }
2544 for (int iRow = nRows-1; iRow >= 0; iRow--) {
2545 if (flg[iRow]) {
2546 _cmbTable->removeRow(iRow);
2547 }
2548 }
[3813]2549 nRows = _cmbTable->rowCount();
2550 if (nRows < 1) {
2551 enableWidget(false, _cmbMethodComboBox);
[6766]2552 enableWidget(false, _cmbMaxresLineEdit);
2553 enableWidget(false, _cmbSamplSpinBox);
2554 enableWidget(false, _cmbUseGlonass);
[3813]2555 }
[2869]2556}
[2870]2557
[7292]2558//
[2870]2559////////////////////////////////////////////////////////////////////////////
2560void bncWindow::populateCmbTable() {
2561
2562 for (int iRow = _cmbTable->rowCount()-1; iRow >=0; iRow--) {
2563 _cmbTable->removeRow(iRow);
2564 }
2565
2566 bncSettings settings;
2567
2568 int iRow = -1;
[7297]2569 QListIterator<QString> it(settings.value("cmbStreams").toStringList());
[2870]2570 while (it.hasNext()) {
2571 QStringList hlp = it.next().split(" ");
[2965]2572 if (hlp.size() > 2) {
[2870]2573 ++iRow;
2574 _cmbTable->insertRow(iRow);
2575 }
2576 for (int iCol = 0; iCol < hlp.size(); iCol++) {
2577 _cmbTable->setItem(iRow, iCol, new QTableWidgetItem(hlp[iCol]));
2578 }
2579 }
2580}
[3152]2581
[7292]2582//
[3152]2583////////////////////////////////////////////////////////////////////////////
[3164]2584void bncWindow::slotAddUploadRow() {
2585 int iRow = _uploadTable->rowCount();
2586 _uploadTable->insertRow(iRow);
2587 for (int iCol = 0; iCol < _uploadTable->columnCount(); iCol++) {
[3156]2588 if (iCol == 3) {
2589 QLineEdit* passwd = new QLineEdit();
2590 passwd->setFrame(false);
2591 passwd->setEchoMode(QLineEdit::PasswordEchoOnEdit);
[3164]2592 _uploadTable->setCellWidget(iRow, iCol, passwd);
[3156]2593 }
2594 else if (iCol == 4) {
[3158]2595 QComboBox* system = new QComboBox();
2596 system->setEditable(false);
[8411]2597 system->addItems(QString("IGS14,ETRF2000,GDA2020,SIRGAS2000,DREF91,Custom").split(","));
[3158]2598 system->setFrame(false);
[3164]2599 _uploadTable->setCellWidget(iRow, iCol, system);
[3155]2600 }
2601 else if (iCol == 5) {
[9036]2602 QComboBox* format = new QComboBox();
2603 format->setEditable(false);
2604 format->addItems(QString("IGS-SSR,RTCM-SSR").split(","));
2605 format->setFrame(false);
2606 _uploadTable->setCellWidget(iRow, iCol, format);
2607 }
2608 else if (iCol == 6) {
[3155]2609 QCheckBox* com = new QCheckBox();
[3164]2610 _uploadTable->setCellWidget(iRow, iCol, com);
[3155]2611 }
[9036]2612 else if (iCol == 12) {
[3196]2613 bncTableItem* bncIt = new bncTableItem();
2614 bncIt->setFlags(bncIt->flags() & ~Qt::ItemIsEditable);
2615 _uploadTable->setItem(iRow, iCol, bncIt);
[5068]2616 BNC_CORE->_uploadTableItems[iRow] = bncIt;
[3196]2617 }
[3155]2618 else {
[3164]2619 _uploadTable->setItem(iRow, iCol, new QTableWidgetItem(""));
[3155]2620 }
[3152]2621 }
2622}
2623
[7292]2624//
[3152]2625////////////////////////////////////////////////////////////////////////////
[3164]2626void bncWindow::slotDelUploadRow() {
[5068]2627 BNC_CORE->_uploadTableItems.clear();
[3164]2628 int nRows = _uploadTable->rowCount();
[3152]2629 bool flg[nRows];
2630 for (int iRow = 0; iRow < nRows; iRow++) {
[3164]2631 if (_uploadTable->isItemSelected(_uploadTable->item(iRow,1))) {
[3152]2632 flg[iRow] = true;
2633 }
2634 else {
2635 flg[iRow] = false;
2636 }
2637 }
2638 for (int iRow = nRows-1; iRow >= 0; iRow--) {
2639 if (flg[iRow]) {
[3164]2640 _uploadTable->removeRow(iRow);
[3152]2641 }
2642 }
[3232]2643 for (int iRow = 0; iRow < _uploadTable->rowCount(); iRow++) {
[7292]2644 BNC_CORE->_uploadTableItems[iRow] =
[9036]2645 (bncTableItem*) _uploadTable->item(iRow, 12);
[3232]2646 }
[3813]2647 nRows = _uploadTable->rowCount();
2648 if (nRows < 1) {
2649 enableWidget(false, _uploadIntrComboBox);
[4172]2650 enableWidget(false, _uploadSamplRtcmEphCorrSpinBox);
2651 enableWidget(false, _uploadSamplSp3SpinBox);
2652 enableWidget(false, _uploadSamplClkRnxSpinBox);
[6665]2653 enableWidget(false, _uploadAntexFile);
[3813]2654 }
[3152]2655}
2656
[7292]2657//
[3152]2658////////////////////////////////////////////////////////////////////////////
[3164]2659void bncWindow::populateUploadTable() {
2660 for (int iRow = _uploadTable->rowCount()-1; iRow >=0; iRow--) {
2661 _uploadTable->removeRow(iRow);
[3153]2662 }
2663
2664 bncSettings settings;
2665
2666 int iRow = -1;
[3164]2667 QListIterator<QString> it(settings.value("uploadMountpointsOut").toStringList());
[3153]2668 while (it.hasNext()) {
[3159]2669 QStringList hlp = it.next().split(",");
2670 if (hlp.size() > 6) {
[3153]2671 ++iRow;
[3164]2672 _uploadTable->insertRow(iRow);
[3153]2673 }
2674 for (int iCol = 0; iCol < hlp.size(); iCol++) {
[3159]2675 if (iCol == 3) {
2676 QLineEdit* passwd = new QLineEdit();
2677 passwd->setFrame(false);
2678 passwd->setEchoMode(QLineEdit::PasswordEchoOnEdit);
2679 passwd->setText(hlp[iCol]);
[3164]2680 _uploadTable->setCellWidget(iRow, iCol, passwd);
[3159]2681 }
2682 else if (iCol == 4) {
2683 QComboBox* system = new QComboBox();
2684 system->setEditable(false);
[8424]2685 system->addItems(QString("IGS14,ETRF2000,GDA2020,SIRGAS2000,DREF91,Custom").split(","));
[3159]2686 system->setFrame(false);
2687 system->setCurrentIndex(system->findText(hlp[iCol]));
[3164]2688 _uploadTable->setCellWidget(iRow, iCol, system);
[3159]2689 }
2690 else if (iCol == 5) {
[9036]2691 QComboBox* format = new QComboBox();
2692 format->setEditable(false);
2693 format->addItems(QString("IGS-SSR,RTCM-SSR").split(","));
2694 format->setFrame(false);
2695 format->setCurrentIndex(format->findText(hlp[iCol]));
2696 _uploadTable->setCellWidget(iRow, iCol, format);
2697 }
2698 else if (iCol == 6) {
[3159]2699 QCheckBox* com = new QCheckBox();
2700 if (hlp[iCol].toInt() == Qt::Checked) {
2701 com->setCheckState(Qt::Checked);
2702 }
[3164]2703 _uploadTable->setCellWidget(iRow, iCol, com);
[3159]2704 }
[9036]2705 else if (iCol == 12) {
[3196]2706 bncTableItem* bncIt = new bncTableItem();
2707 bncIt->setFlags(bncIt->flags() & ~Qt::ItemIsEditable);
2708 _uploadTable->setItem(iRow, iCol, bncIt);
[5068]2709 BNC_CORE->_uploadTableItems[iRow] = bncIt;
[3196]2710 }
[3159]2711 else {
[3164]2712 _uploadTable->setItem(iRow, iCol, new QTableWidgetItem(hlp[iCol]));
[3159]2713 }
[3153]2714 }
2715 }
[3152]2716}
[3153]2717
[7292]2718//
[3153]2719////////////////////////////////////////////////////////////////////////////
[3164]2720void bncWindow::slotSetUploadTrafo() {
[3239]2721 bncCustomTrafo* dlg = new bncCustomTrafo(this);
2722 dlg->exec();
2723 delete dlg;
[3153]2724}
[3608]2725
[3626]2726// Progress Bar Change
2727////////////////////////////////////////////////////////////////////////////
[5971]2728void bncWindow::slotPostProcessingProgress(int nEpo) {
2729 _actStart->setText(QString("%1 Epochs").arg(nEpo));
[3626]2730}
[3731]2731
[3897]2732// Post-Processing Reqc Finished
[3731]2733////////////////////////////////////////////////////////////////////////////
[5971]2734void bncWindow::slotPostProcessingFinished() {
[5993]2735 delete _caster; _caster = 0; BNC_CORE->setCaster(0);
[6333]2736 _runningPPP = false;
2737 _runningEdit = false;
2738 _runningQC = false;
2739 _runningSp3Comp = false;
[5974]2740 _actStart->setText(tr("Sta&rt"));
[3792]2741 enableStartStop();
[3731]2742}
[3736]2743
[3740]2744// Edit teqc-like editing options
2745////////////////////////////////////////////////////////////////////////////
[3897]2746void bncWindow::slotReqcEditOption() {
[6239]2747 saveOptions();
[3897]2748 reqcDlg* dlg = new reqcDlg(this);
[3740]2749 dlg->move(this->pos().x()+50, this->pos().y()+50);
2750 dlg->exec();
2751 delete dlg;
2752}
[3787]2753
2754// Enable/Disable Start and Stop Buttons
2755////////////////////////////////////////////////////////////////////////////
2756void bncWindow::enableStartStop() {
[5971]2757 if ( running() ) {
2758 _actStart->setEnabled(false);
[5976]2759 if (_runningRealTime || _runningPPP) {
[5971]2760 _actStop->setEnabled(true);
[3792]2761 }
[3787]2762 }
2763 else {
[5971]2764 _actStart->setEnabled(true);
2765 _actStop->setEnabled(false);
[3787]2766 }
2767}
[4646]2768
2769// Show Map
2770////////////////////////////////////////////////////////////////////////////
[5162]2771void bncWindow::slotMapMountPoints() {
[4646]2772 saveOptions();
2773 t_bncMap* bncMap = new t_bncMap(this);
[4714]2774 bncMap->setMinimumSize(800, 600);
[4649]2775 bncMap->setWindowTitle("Selected Mountpoints");
[4647]2776
2777 bncSettings settings;
2778 QListIterator<QString> it(settings.value("mountPoints").toStringList());
2779 while (it.hasNext()) {
2780 QStringList hlp = it.next().split(" ");
2781 if (hlp.size() < 5) continue;
2782 QUrl url(hlp[0]);
[7950]2783 double latDeg = hlp[3].toDouble();
2784 double lonDeg = hlp[4].toDouble();
[4648]2785 bncMap->slotNewPoint(QFileInfo(url.path()).fileName(), latDeg, lonDeg);
[4647]2786 }
2787
[4646]2788 bncMap->show();
2789}
[5162]2790
2791// Show Map
2792////////////////////////////////////////////////////////////////////////////
2793void bncWindow::slotMapPPP() {
[5186]2794#ifdef QT_WEBKIT
[5233]2795 saveOptions();
[5895]2796 enableWidget(false, _pppWidgets._mapWinButton);
[5955]2797 enableWidget(false, _pppWidgets._mapWinDotSize);
2798 enableWidget(false, _pppWidgets._mapWinDotColor);
[5299]2799
[5179]2800 if (!_mapWin) {
2801 _mapWin = new bncMapWin(this);
[5235]2802 connect(_mapWin, SIGNAL(mapClosed()), this, SLOT(slotMapPPPClosed()));
[5954]2803 connect(BNC_CORE, SIGNAL(newPosition(QByteArray, bncTime, QVector<double>)),
2804 _mapWin, SLOT(slotNewPosition(QByteArray, bncTime, QVector<double>)));
[5179]2805 }
2806 _mapWin->show();
[5186]2807#else
2808 QMessageBox::information(this, "Information",
2809 "Qt Library compiled without QtWebKit");
2810#endif
[5162]2811}
[5235]2812
2813// Show Map
2814////////////////////////////////////////////////////////////////////////////
2815void bncWindow::slotMapPPPClosed() {
2816#ifdef QT_WEBKIT
[5896]2817 enableWidget(true, _pppWidgets._mapWinButton);
[5955]2818 enableWidget(true, _pppWidgets._mapWinDotSize);
2819 enableWidget(true, _pppWidgets._mapWinDotColor);
[5237]2820 if (_mapWin) {
2821 QListIterator<bncGetThread*> it(_threads);
2822 while (it.hasNext()) {
2823 bncGetThread* thread = it.next();
2824 thread->disconnect(_mapWin);
2825 }
[5242]2826 _mapWin->deleteLater();
[5237]2827 _mapWin = 0;
2828 }
[5235]2829#endif
2830}
Note: See TracBrowser for help on using the repository browser.