// Part of BNC, a utility for retrieving decoding and // converting GNSS data streams from NTRIP broadcasters. // // Copyright (C) 2007 // German Federal Agency for Cartography and Geodesy (BKG) // http://www.bkg.bund.de // Czech Technical University Prague, Department of Geodesy // http://www.fsv.cvut.cz // // Email: euref-ip@bkg.bund.de // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation, version 2. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. /* ------------------------------------------------------------------------- * BKG NTRIP Client * ------------------------------------------------------------------------- * * Class: bncWindow * * Purpose: This class implements the main application window. * * Author: L. Mervart * * Created: 24-Dec-2005 * * Changes: * * -----------------------------------------------------------------------*/ #include #include #include "bncwindow.h" #include "bncapp.h" #include "bncgetthread.h" #include "bnctabledlg.h" #include "bncipport.h" #include "bncudpport.h" #include "bncserialport.h" #include "bnchlpdlg.h" #include "bnchtml.h" #include "bnctableitem.h" #include "bncsettings.h" #include "bncfigure.h" #include "bncfigurelate.h" #include "bncfigureppp.h" #include "bncversion.h" using namespace std; // Constructor //////////////////////////////////////////////////////////////////////////// bncWindow::bncWindow() { _caster = 0; _bncFigure = new bncFigure(this); _bncFigureLate = new bncFigureLate(this); _bncFigurePPP = new bncFigurePPP(this); int ww = QFontMetrics(this->font()).width('w'); static const QStringList labels = QString("account, Streams: resource loader / mountpoint, decoder, lat, long, nmea, ntrip, bytes").split(","); setMinimumSize(85*ww, 65*ww); setWindowTitle(tr("BKG Ntrip Client (BNC) Version " BNCVERSION)); connect((bncApp*)qApp, SIGNAL(newMessage(QByteArray,bool)), this, SLOT(slotWindowMessage(QByteArray,bool))); // Create Actions // -------------- _actHelp = new QAction(tr("&Help Contents"),this); connect(_actHelp, SIGNAL(triggered()), SLOT(slotHelp())); _actAbout = new QAction(tr("&About BNC"),this); connect(_actAbout, SIGNAL(triggered()), SLOT(slotAbout())); _actFlowchart = new QAction(tr("&Flow Chart"),this); connect(_actFlowchart, SIGNAL(triggered()), SLOT(slotFlowchart())); _actFontSel = new QAction(tr("Select &Font"),this); connect(_actFontSel, SIGNAL(triggered()), SLOT(slotFontSel())); _actSaveOpt = new QAction(tr("&Save && Reread Configuration"),this); connect(_actSaveOpt, SIGNAL(triggered()), SLOT(slotSaveOptions())); _actQuit = new QAction(tr("&Quit"),this); connect(_actQuit, SIGNAL(triggered()), SLOT(close())); _actAddMountPoints = new QAction(tr("Add &Stream"),this); connect(_actAddMountPoints, SIGNAL(triggered()), SLOT(slotAddMountPoints())); _actDeleteMountPoints = new QAction(tr("&Delete Stream"),this); connect(_actDeleteMountPoints, SIGNAL(triggered()), SLOT(slotDeleteMountPoints())); _actDeleteMountPoints->setEnabled(false); _actGetData = new QAction(tr("Sta&rt"),this); connect(_actGetData, SIGNAL(triggered()), SLOT(slotGetData())); _actStop = new QAction(tr("Sto&p"),this); connect(_actStop, SIGNAL(triggered()), SLOT(slotStop())); _actStop->setEnabled(false); _actwhatsthis= new QAction(tr("Help ?=Shift+F1"),this); connect(_actwhatsthis, SIGNAL(triggered()), SLOT(slotWhatsThis())); CreateMenu(); AddToolbar(); bncSettings settings; // Proxy Options // ------------- _proxyHostLineEdit = new QLineEdit(settings.value("proxyHost").toString()); _proxyPortLineEdit = new QLineEdit(settings.value("proxyPort").toString()); connect(_proxyHostLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); // General Options // --------------- _logFileLineEdit = new QLineEdit(settings.value("logFile").toString()); _rawOutFileLineEdit = new QLineEdit(settings.value("rawOutFile").toString()); _rnxAppendCheckBox = new QCheckBox(); _rnxAppendCheckBox->setCheckState(Qt::CheckState( settings.value("rnxAppend").toInt())); _onTheFlyComboBox = new QComboBox(); _onTheFlyComboBox->setEditable(false); _onTheFlyComboBox->addItems(QString("1 day,1 hour,1 min").split(",")); int ii = _onTheFlyComboBox->findText(settings.value("onTheFlyInterval").toString()); if (ii != -1) { _onTheFlyComboBox->setCurrentIndex(ii); } _autoStartCheckBox = new QCheckBox(); _autoStartCheckBox->setCheckState(Qt::CheckState( settings.value("autoStart").toInt())); // RINEX Observations Options // -------------------------- _rnxPathLineEdit = new QLineEdit(settings.value("rnxPath").toString()); _rnxIntrComboBox = new QComboBox(); _rnxIntrComboBox->setEditable(false); _rnxIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(",")); ii = _rnxIntrComboBox->findText(settings.value("rnxIntr").toString()); if (ii != -1) { _rnxIntrComboBox->setCurrentIndex(ii); } _rnxSamplSpinBox = new QSpinBox(); _rnxSamplSpinBox->setMinimum(0); _rnxSamplSpinBox->setMaximum(60); _rnxSamplSpinBox->setSingleStep(5); _rnxSamplSpinBox->setValue(settings.value("rnxSampl").toInt()); _rnxSamplSpinBox->setSuffix(" sec"); _rnxSkelLineEdit = new QLineEdit(settings.value("rnxSkel").toString()); _rnxSkelLineEdit->setMaximumWidth(5*ww); _rnxScrpLineEdit = new QLineEdit(settings.value("rnxScript").toString()); _rnxV3CheckBox = new QCheckBox(); _rnxV3CheckBox->setCheckState(Qt::CheckState(settings.value("rnxV3").toInt())); connect(_rnxPathLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); // RINEX Ephemeris Options // ----------------------- _ephPathLineEdit = new QLineEdit(settings.value("ephPath").toString()); _ephIntrComboBox = new QComboBox(); _ephIntrComboBox->setEditable(false); _ephIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(",")); int jj = _ephIntrComboBox->findText(settings.value("ephIntr").toString()); if (jj != -1) { _ephIntrComboBox->setCurrentIndex(jj); } _outEphPortLineEdit = new QLineEdit(settings.value("outEphPort").toString()); _ephV3CheckBox = new QCheckBox(); _ephV3CheckBox->setCheckState(Qt::CheckState(settings.value("ephV3").toInt())); connect(_outEphPortLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); connect(_ephPathLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); // Broadcast Corrections Options // ----------------------------- _corrPathLineEdit = new QLineEdit(settings.value("corrPath").toString()); _corrIntrComboBox = new QComboBox(); _corrIntrComboBox->setEditable(false); _corrIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(",")); int mm = _corrIntrComboBox->findText(settings.value("corrIntr").toString()); if (mm != -1) { _corrIntrComboBox->setCurrentIndex(mm); } _corrPortLineEdit = new QLineEdit(settings.value("corrPort").toString()); _corrTimeSpinBox = new QSpinBox(); _corrTimeSpinBox->setMinimum(1); _corrTimeSpinBox->setMaximum(60); _corrTimeSpinBox->setSingleStep(1); _corrTimeSpinBox->setSuffix(" sec"); _corrTimeSpinBox->setValue(settings.value("corrTime").toInt()); connect(_corrPathLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); connect(_corrPortLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); // Feed Engine Options // ------------------- _outPortLineEdit = new QLineEdit(settings.value("outPort").toString()); _waitTimeSpinBox = new QSpinBox(); _waitTimeSpinBox->setMinimum(1); _waitTimeSpinBox->setMaximum(30); _waitTimeSpinBox->setSingleStep(1); _waitTimeSpinBox->setSuffix(" sec"); _waitTimeSpinBox->setValue(settings.value("waitTime").toInt()); _binSamplSpinBox = new QSpinBox(); _binSamplSpinBox->setMinimum(0); _binSamplSpinBox->setMaximum(60); _binSamplSpinBox->setSingleStep(5); _binSamplSpinBox->setValue(settings.value("binSampl").toInt()); _binSamplSpinBox->setSuffix(" sec"); _outFileLineEdit = new QLineEdit(settings.value("outFile").toString()); _outUPortLineEdit = new QLineEdit(settings.value("outUPort").toString()); connect(_outPortLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); connect(_outFileLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); // Serial Output Options // --------------------- _serialMountPointLineEdit = new QLineEdit(settings.value("serialMountPoint").toString()); _serialPortNameLineEdit = new QLineEdit(settings.value("serialPortName").toString()); _serialBaudRateComboBox = new QComboBox(); _serialBaudRateComboBox->addItems(QString("110,300,600," "1200,2400,4800,9600,19200,38400,57600,115200").split(",")); int kk = _serialBaudRateComboBox->findText(settings.value("serialBaudRate").toString()); if (kk != -1) { _serialBaudRateComboBox->setCurrentIndex(kk); } _serialFlowControlComboBox = new QComboBox(); _serialFlowControlComboBox->addItems(QString("OFF,XONXOFF,HARDWARE").split(",")); kk = _serialFlowControlComboBox->findText(settings.value("serialFlowControl").toString()); if (kk != -1) { _serialFlowControlComboBox->setCurrentIndex(kk); } _serialDataBitsComboBox = new QComboBox(); _serialDataBitsComboBox->addItems(QString("5,6,7,8").split(",")); kk = _serialDataBitsComboBox->findText(settings.value("serialDataBits").toString()); if (kk != -1) { _serialDataBitsComboBox->setCurrentIndex(kk); } _serialParityComboBox = new QComboBox(); _serialParityComboBox->addItems(QString("NONE,ODD,EVEN,SPACE").split(",")); kk = _serialParityComboBox->findText(settings.value("serialParity").toString()); if (kk != -1) { _serialParityComboBox->setCurrentIndex(kk); } _serialStopBitsComboBox = new QComboBox(); _serialStopBitsComboBox->addItems(QString("1,2").split(",")); kk = _serialStopBitsComboBox->findText(settings.value("serialStopBits").toString()); if (kk != -1) { _serialStopBitsComboBox->setCurrentIndex(kk); } _serialAutoNMEAComboBox = new QComboBox(); _serialAutoNMEAComboBox->addItems(QString("Auto,Manual").split(",")); kk = _serialAutoNMEAComboBox->findText(settings.value("serialAutoNMEA").toString()); if (kk != -1) { _serialAutoNMEAComboBox->setCurrentIndex(kk); } _serialFileNMEALineEdit = new QLineEdit(settings.value("serialFileNMEA").toString()); _serialHeightNMEALineEdit = new QLineEdit(settings.value("serialHeightNMEA").toString()); connect(_serialMountPointLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); connect(_serialAutoNMEAComboBox, SIGNAL(currentIndexChanged(const QString &)), this, SLOT(slotBncTextChanged())); // Outages Options // --------------- _obsRateComboBox = new QComboBox(); _obsRateComboBox->setEditable(false); _obsRateComboBox->addItems(QString(",0.1 Hz,0.2 Hz,0.5 Hz,1 Hz,5 Hz").split(",")); kk = _obsRateComboBox->findText(settings.value("obsRate").toString()); if (kk != -1) { _obsRateComboBox->setCurrentIndex(kk); } _adviseFailSpinBox = new QSpinBox(); _adviseFailSpinBox->setMinimum(0); _adviseFailSpinBox->setMaximum(60); _adviseFailSpinBox->setSingleStep(1); _adviseFailSpinBox->setSuffix(" min"); _adviseFailSpinBox->setValue(settings.value("adviseFail").toInt()); _adviseRecoSpinBox = new QSpinBox(); _adviseRecoSpinBox->setMinimum(0); _adviseRecoSpinBox->setMaximum(60); _adviseRecoSpinBox->setSingleStep(1); _adviseRecoSpinBox->setSuffix(" min"); _adviseRecoSpinBox->setValue(settings.value("adviseReco").toInt()); _adviseScriptLineEdit = new QLineEdit(settings.value("adviseScript").toString()); connect(_obsRateComboBox, SIGNAL(currentIndexChanged(const QString &)), this, SLOT(slotBncTextChanged())); // Miscellaneous Options // --------------------- _miscMountLineEdit = new QLineEdit(settings.value("miscMount").toString()); _perfIntrComboBox = new QComboBox(); _perfIntrComboBox->setEditable(false); _perfIntrComboBox->addItems(QString(",2 sec, 10 sec,1 min,5 min,15 min,1 hour,6 hours,1 day").split(",")); int ll = _perfIntrComboBox->findText(settings.value("perfIntr").toString()); if (ll != -1) { _perfIntrComboBox->setCurrentIndex(ll); } _scanRTCMCheckBox = new QCheckBox(); _scanRTCMCheckBox->setCheckState(Qt::CheckState( settings.value("scanRTCM").toInt())); connect(_miscMountLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); // PPP Options // ----------- _pppMountLineEdit = new QLineEdit(settings.value("pppMount").toString()); _pppNMEALineEdit = new QLineEdit(settings.value("nmeaFile").toString()); _pppNMEAPortLineEdit = new QLineEdit(settings.value("nmeaPort").toString()); _pppSigCLineEdit = new QLineEdit(settings.value("pppSigmaCode").toString()); _pppSigPLineEdit = new QLineEdit(settings.value("pppSigmaPhase").toString()); _pppSigCrd0 = new QLineEdit(settings.value("pppSigCrd0").toString()); _pppSigCrdP = new QLineEdit(settings.value("pppSigCrdP").toString()); _pppSigTrp0 = new QLineEdit(settings.value("pppSigTrp0").toString()); _pppSigTrpP = new QLineEdit(settings.value("pppSigTrpP").toString()); _pppAverageLineEdit = new QLineEdit(settings.value("pppAverage").toString()); _pppQuickStartLineEdit = new QLineEdit(settings.value("pppQuickStart").toString()); _pppRefCrdXLineEdit = new QLineEdit(settings.value("pppRefCrdX").toString()); _pppRefCrdYLineEdit = new QLineEdit(settings.value("pppRefCrdY").toString()); _pppRefCrdZLineEdit = new QLineEdit(settings.value("pppRefCrdZ").toString()); _pppSync = new QLineEdit(settings.value("pppSync").toString()); _pppSPPComboBox = new QComboBox(); _pppSPPComboBox->setEditable(false); _pppSPPComboBox->addItems(QString("PPP,SPP").split(",")); int ik = _pppSPPComboBox->findText(settings.value("pppSPP").toString()); if (ik != -1) { _pppSPPComboBox->setCurrentIndex(ik); } _pppUsePhaseCheckBox = new QCheckBox(); _pppUsePhaseCheckBox->setCheckState(Qt::CheckState( settings.value("pppUsePhase").toInt())); _pppEstTropoCheckBox = new QCheckBox(); _pppEstTropoCheckBox->setCheckState(Qt::CheckState( settings.value("pppEstTropo").toInt())); _pppGLONASSCheckBox = new QCheckBox(); _pppGLONASSCheckBox->setCheckState(Qt::CheckState( settings.value("pppGLONASS").toInt())); _pppGalileoCheckBox = new QCheckBox(); _pppGalileoCheckBox->setCheckState(Qt::CheckState( settings.value("pppGalileo").toInt())); _pppPlotCoordinates = new QCheckBox(); _pppPlotCoordinates->setCheckState(Qt::CheckState( settings.value("pppPlotCoordinates").toInt())); connect(_pppMountLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); connect(_pppUsePhaseCheckBox, SIGNAL(stateChanged(int)), this, SLOT(slotBncTextChanged())); connect(_pppRefCrdXLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); connect(_pppRefCrdYLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); connect(_pppRefCrdZLineEdit, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); connect(_pppEstTropoCheckBox, SIGNAL(stateChanged(int)), this, SLOT(slotBncTextChanged())); connect(_pppSync, SIGNAL(textChanged(const QString &)), this, SLOT(slotBncTextChanged())); connect(_pppSPPComboBox, SIGNAL(currentIndexChanged(const QString &)), this, SLOT(slotBncTextChanged())); // Streams // ------- _mountPointsTable = new QTableWidget(0,8); _mountPointsTable->horizontalHeader()->resizeSection(1,34*ww); _mountPointsTable->horizontalHeader()->resizeSection(2,9*ww); _mountPointsTable->horizontalHeader()->resizeSection(3,7*ww); _mountPointsTable->horizontalHeader()->resizeSection(4,7*ww); _mountPointsTable->horizontalHeader()->resizeSection(5,5*ww); _mountPointsTable->horizontalHeader()->resizeSection(6,5*ww); _mountPointsTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive); _mountPointsTable->horizontalHeader()->setStretchLastSection(true); _mountPointsTable->horizontalHeader()->setDefaultAlignment(Qt::AlignLeft); _mountPointsTable->setHorizontalHeaderLabels(labels); _mountPointsTable->setGridStyle(Qt::NoPen); _mountPointsTable->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff); _mountPointsTable->setSelectionMode(QAbstractItemView::ExtendedSelection); _mountPointsTable->setSelectionBehavior(QAbstractItemView::SelectRows); _mountPointsTable->hideColumn(0); connect(_mountPointsTable, SIGNAL(itemSelectionChanged()), SLOT(slotSelectionChanged())); populateMountPointsTable(); _log = new QTextBrowser(); _log->setReadOnly(true); // WhatsThis // --------- _proxyHostLineEdit->setWhatsThis(tr("

If you are running BNC within a protected Local Area Network (LAN), you might need to use a proxy server to access the Internet. Enter your proxy server IP and port number in case one is operated in front of BNC. If you do not know the IP and port of your proxy server, check the proxy server settings in your Internet browser or ask your network administrator.

Note that IP streaming is sometimes not allowed in a LAN. In this case you need to ask your network administrator for an appropriate modification of the local security policy or for the installation of a TCP relay to the NTRIP broadcasters. If these are not possible, you might need to run BNC outside your LAN on a network that has unobstructed connection to the Internet.

")); _proxyPortLineEdit->setWhatsThis(tr("

Enter your proxy server port number in case a proxy is operated in front of BNC.

")); _waitTimeSpinBox->setWhatsThis(tr("

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 epoch' seconds. A value of 3 to 5 seconds is recommended, depending on the latency of the incoming streams and the delay acceptable to your real-time GNSS network engine or products.

")); _outFileLineEdit->setWhatsThis(tr("Specify the full path to a file where synchronized observations are saved in plain ASCII format. Beware that the size of this file can rapidly increase depending on the number of incoming streams.")); _outPortLineEdit->setWhatsThis(tr("BNC can produce synchronized observations in binary format on your local host through an IP port. Specify a port number here to activate this function.")); _outUPortLineEdit->setWhatsThis(tr("BNC can produce unsynchronized observations in binary format on your local host through an IP port. Specify a port number here to activate this function.")); _outEphPortLineEdit->setWhatsThis(tr("BNC can produce ephemeris data in RINEX ASCII format on your local host through an IP port. Specify a port number here to activate this function.")); _corrPortLineEdit->setWhatsThis(tr("BNC can produce Broadcast Ephemeris Corrections on your local host through an IP port. Specify a port number here to activate this function.")); _corrTimeSpinBox->setWhatsThis(tr("Concerning output through IP port, BNC drops Broadcast Ephemeris Corrections received later than 'Wait for full epoch' seconds. A value of 2 to 5 seconds is recommended, depending on the latency of the incoming correction stream(s) and the delay acceptable to your real-time application.")); _rnxPathLineEdit->setWhatsThis(tr("Here you specify the path to where the RINEX Observation files will be stored. If the specified directory does not exist, BNC will not create RINEX Observation files.")); _ephPathLineEdit->setWhatsThis(tr("Specify the path for saving Broadcast Ephemeris data as RINEX Navigation files. If the specified directory does not exist, BNC will not create RINEX Navigation files.")); _corrPathLineEdit->setWhatsThis(tr("Specify a directory for saving Broadcast Ephemeris Correction files. If the specified directory does not exist, BNC will not create the files.")); _rnxScrpLineEdit->setWhatsThis(tr("

Whenever a RINEX Observation file is saved, you might want to compress, copy or upload it immediately via FTP. BNC allows you to execute a script/batch file to carry out these operations. To do that specify the full path of the script/batch file here. BNC will pass the full RINEX Observation file path to the script as a command line parameter (%1 on Windows systems, $1 onUnix/Linux systems).

")); _rnxSkelLineEdit->setWhatsThis(tr("

BNC allows using personal skeleton files that contain the header records you would like to include. You can derive a personal RINEX header skeleton file from the information given in an up to date sitelog.

A file in the RINEX Observations 'Directory' with a 'Skeleton extension' suffix is interpreted by BNC as a personal RINEX header skeleton file for the corresponding stream.

")); _rnxAppendCheckBox->setWhatsThis(tr("

When BNC is started, new files are created by default and any existing files with the same name will be overwritten. However, users might want to append already existing files following a restart of BNC, a system crash or when BNC crashed. Tick 'Append files' to continue with existing files and keep what has been recorded so far.

")); _autoStartCheckBox->setWhatsThis(tr("

Tick 'Auto start' for auto-start of BNC at startup time in window mode with preassigned processing options.

")); _rawOutFileLineEdit->setWhatsThis(tr("

Save all data coming in through various streams in the received order and format in one file.

")); _onTheFlyComboBox->setWhatsThis(tr("

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.

Select '1 min', '1 hour', or '1 day' to force BNC to reread its configuration every full minute, hour, or day and let in between edited configuration options become effective on-the-fly without terminating uninvolved threads.

Note that when operating BNC in window mode, on-the-fly changeable configuration options become effective immediately through 'Save & Reread Configuration'.

")); _rnxIntrComboBox->setWhatsThis(tr("

Select the length of the RINEX Observation file.

")); _ephIntrComboBox->setWhatsThis(tr("

Select the length of the RINEX Navigation file.

")); _corrIntrComboBox->setWhatsThis(tr("

Select the length of the Broadcast Ephemeris Correction files.

")); _rnxSamplSpinBox->setWhatsThis(tr("

Select the RINEX Observation sampling interval in seconds. A value of zero '0' tells BNC to store all received epochs into RINEX.

")); _binSamplSpinBox->setWhatsThis(tr("

Select the synchronized observation sampling interval in seconds. A value of zero '0' tells BNC to send/store all received epochs.

")); _obsRateComboBox->setWhatsThis(tr("

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.

")); _adviseRecoSpinBox->setWhatsThis(tr("

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.

A value of zero '0' means that for any stream recovery, however short, BNC immediately generates an advisory note.

")); _adviseFailSpinBox->setWhatsThis(tr("

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.

A value of zero '0' means that for any stream failure, however short, BNC immediately generates an advisory note.

")); _logFileLineEdit->setWhatsThis(tr("

Records of BNC's activities are shown in the 'Log' tab on the bottom of this window. They can be saved into a file when a valid path is specified in the 'Logfile (full path)' field.

The logfile name will automatically be extended by a string '_YYMMDD' carrying the current date.")); _adviseScriptLineEdit->setWhatsThis(tr("

Specify the full path to a script or batch file to handle advisory notes generated in the event of corrupted streams or stream outages. The affected mountpoint and one of the comments 'Begin_Outage', 'End_Outage', 'Begin_Corrupted', or 'End_Corrupted' are passed on to the script as command line parameters.

The script may have the task to send the advisory notes by email to BNC's operator and/or to the affected stream provider. An empty option field (default) or invalid path means that you don't want to use this option.

")); _perfIntrComboBox->setWhatsThis(tr("

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).

Select a 'Log latency' interval or select the empty option field if you do not want BNC to log latencies and statistical information.

")); _mountPointsTable->setWhatsThis(tr("

Streams selected for retrieval are listed in the 'Streams' section. Clicking on 'Add Stream' button will open a window that allows the user to select data streams from an NTRIP broadcaster according to their mountpoints. To remove a stream from the 'Streams' list, highlight it by clicking on it and hit the 'Delete Stream' button. You can also remove multiple streams by highlighting them using +Shift and +Ctrl.

BNC automatically allocates one of its internal decoders to a stream based on the stream's 'format' as given in the sourcetable. BNC allows users to change this selection by editing the decoder string. Double click on the 'decoder' field, enter your preferred decoder and then hit Enter. The accepted decoder strings are 'RTCM_2.x', 'RTCM_3.x', and 'RTIGS'.

In case you need to log the raw data as is, BNC allows users to by-pass its decoders and and directly save the input in daily log files. To do this specify the decoder string as 'ZERO'.

BNC can also retrieve streams from virtual reference stations (VRS). VRS streams are indicated by a 'yes' in the 'nmea' column. To initiate these streams, the approximate latitude/longitude rover position is sent to the NTRIP broadcaster. The default values can be change according to your requirement. Double click on 'lat' and 'long' fields, enter the values you wish to send and then hit Enter.

")); _log->setWhatsThis(tr("Records of BNC's activities are shown in the 'Log' tab. The message log covers the communication status between BNC and the NTRIP broadcaster as well as any problems that occur in the communication link, stream availability, stream delay, stream conversion etc.")); _bncFigure->setWhatsThis(tr("The bandwidth consumtion per stream is shown in the 'Throughput' tab in bits per second (bps) or kilo bits per second (kbps).")); _bncFigureLate->setWhatsThis(tr("The individual latency of observations in each incoming stream is shown in the 'Latency' tab. Streams not carrying observations (i.e. those providing only broadcast ephemeris messages) are not considered here. Note that the calculation of correct latencies requires the clock of the host computer to be properly synchronized.")); _ephV3CheckBox->setWhatsThis(tr("The default format for output of RINEX Navigation data containing Broadcast Ephemeris is RINEX Version 2.11. Select 'Version 3' if you want to output the ephemeris in RINEX Version 3 format.")); _rnxV3CheckBox->setWhatsThis(tr("The default format for RINEX Observation files is RINEX Version 2.11. Select 'Version 3' if you want to save the observations in RINEX Version 3 format.")); _miscMountLineEdit->setWhatsThis(tr("

Specify a mountpoint to apply any of the options shown below. Enter 'ALL' if you want to apply these options to all configured streams.

An empty option field (default) means that you don't want BNC to apply any of these options.

")); _scanRTCMCheckBox->setWhatsThis(tr("

Tick 'Scan RTCM' to log the numbers of incomming message types as well as contained antenna coordinates, antenna heigt, and antenna descriptor.

")); _serialMountPointLineEdit->setWhatsThis(tr("

Enter a 'Mountpoint' to forward the corresponding stream to a serial connected receiver.

")); _serialPortNameLineEdit->setWhatsThis(tr("

Enter the serial 'Port name' selected for communication with your serial connected receiver. Valid port names are

Windows:       COM1, COM2
Linux: /dev/ttyS0, /dev/ttyS1
FreeBSD: /dev/ttyd0, /dev/ttyd1
Digital Unix: /dev/tty01, /dev/tty02
HP-UX: /dev/tty1p0, /dev/tty2p0
SGI/IRIX: /dev/ttyf1, /dev/ttyf2
SunOS/Solaris: /dev/ttya, /dev/ttyb

Note that you must plug a serial cable in the port defined here before you start BNC.

")); _serialBaudRateComboBox->setWhatsThis(tr("

Select a 'Baud rate' for the serial output link.

Note that your selection must equal the baud rate configured to the serial connected receiver. Note further that using a high baud rate is recommended.

")); _serialParityComboBox->setWhatsThis(tr("

Select the 'Parity' for the serial output link.

Note that your selection must equal the parity selection configured to the serial connected receiver. Note further that parity is often set to 'NONE'.

")); _serialDataBitsComboBox->setWhatsThis(tr("

Select the number of 'Data bits' for the serial output link.

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.

")); _serialStopBitsComboBox->setWhatsThis(tr("

Select the number of 'Stop bits' for the serial output link.

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.

")); _serialFlowControlComboBox->setWhatsThis(tr("

Select a 'Flow control' for the serial output link.

Note that your selection must equal the flow control configured to the serial connected receiver. Select 'OFF' if you don't know better.

")); _serialAutoNMEAComboBox->setWhatsThis(tr("

Select 'Auto' to automatically forward NMEA-GGA messages coming from your serial connected receiver to the NTRIP broadcaster and/or save them in a file.

Select 'Manual' only when handling a VRS stream and your serial connected receiver doesn't generate NMEA-GGA messages.

")); _serialFileNMEALineEdit->setWhatsThis(tr("

Specify the full path to a file where NMEA messages coming from your serial connected receiver are saved.

")); _serialHeightNMEALineEdit->setWhatsThis(tr("

Specify an approximate 'Height' above mean sea level in meter for your VRS to simulate an inital NMEA-GGA message.

The setting of this option is ignored in case of streams coming from physical reference stations.

")); _pppMountLineEdit->setWhatsThis(tr("

Specify a mountpoint if you want BNC to estimate coordinates for the affected receiver position through a PPP solution.

Note that PPP in BNC requires to also pull a stream carrying RTCM Version 3 satellite orbit and clock corrections to Broadcast Ephemeris referring to the satellites' Antenna Phase Centers (APC). Stream CLK11 on NTRIP broadcaster products.igs-ip.net is an example.

Pulling in addition a third stream carrying Broadcast Ephemeris messages in high repetition rate is suggested if such messages are comeing from the receiver in low repetition rate or don't come at all from there.

")); _pppSPPComboBox->setWhatsThis(tr("

Choose between plain Single Point Positioning (SPP) and Precise Point Positioning (PPP).

")); _pppUsePhaseCheckBox->setWhatsThis(tr("

By default BNC applies a PPP solution using an ionosphere free P3 linear combination of code observations.

Tick 'Use phase obs' for an ionosphere free L3 linear combination of phase observations.

")); _pppEstTropoCheckBox->setWhatsThis(tr("

By default BNC does not introduce troposphere parameters when estimating coordinates.

Tick 'Estimate tropo' to introduce troposphere parameters when estimating coordinates.

")); _pppGLONASSCheckBox->setWhatsThis(tr("

By default BNC does not use GLONASS observations in PPP mode.

Tick 'Use GLONASS' for a combined processing of both, GPS and GLONASS observations in PPP mode.

")); _pppGalileoCheckBox->setWhatsThis(tr("

By default BNC does not use Galileo observations in PPP mode.

Tick 'Use Galileo' for a combined processing of both, GPS and Galileo observations in PPP mode.

")); _pppPlotCoordinates->setWhatsThis(tr("

BNC will plot PPP results in the 'PPP Plot' tab as North (red), East (green) and Up (blue) displacements when this option is selected. Values will be either referred to an XYZ reference coordinate (if specified) or referred to the first estimated coordinate. The sliding PPP time series window will cover the period of the latest 5 minutes.

Note that a PPP time series makes only sense for a stationary operated receiver.")); _pppNMEALineEdit->setWhatsThis(tr("

Specify the full path to a file where PPP results are saved as NMEA messages.

")); _pppNMEAPortLineEdit->setWhatsThis(tr("

Specify an IP port number to output PPP results as NMEA messages through an IP port.

")); _pppSigCLineEdit->setWhatsThis(tr("

Enter a sigma for your code observations in meters.

The higher the sigma you enter, the less the contribution of code observations to a PPP solution based on a combination of code and phase data. 5.0 (default) is likely to be an appropriate choice.

")); _pppQuickStartLineEdit->setWhatsThis(tr("

Enter the lenght of a startup period in seconds for which you want to fix the PPP solution to a known XYZ coordinate as introduced above and adjust a sigma 'XYZ Ini' according to the coordinate's precision. Fixing the coordinate is done in BNC through setting the 'XYZ White Noise' you define below temporarily to zero.

This so-called Quick-Start option allows the PPP solution to rapidly converge. It requires that the antenna remains unmoved on the know position throughout the startup period.

A value of 120 is likely to be an appropriate choice for 'Quick-Start'. Default is an empty option field, meaning that you don't want BNC to operate in Quick-Start mode.

")); _pppSigPLineEdit->setWhatsThis(tr("

Enter a sigma for your phase observations in meters.

The higher the sigma you enter, the less the contribution of phase observations to a PPP solutions based on a combination of code and phase data. 0.02 (default) is likely to be an appropriate choice.

")); _pppAverageLineEdit->setWhatsThis(tr("

Enter the length of a sliding time window in minutes. BNC will continuously output moving average positions computed from those individual positions obtained most recently throughout this period.

An empty option field (default) means that you don't want BNC to output moving average positions.

")); _pppSigCrd0->setWhatsThis(tr("

Enter a sigma in meters for the initial XYZ coordinate componentes. A value of 100.0 (default) may be an appropriate choice. However, this value may be significantly smaller (i.e. 0.01) when starting for example from a station with known XZY position in Quick-Start mode.")); _pppSigCrdP->setWhatsThis(tr("

Enter a sigma in meters for the 'White Noise' of estimated XYZ coordinate components. A value of 100.0 (default) may be appropriate considering the potential movement of a rover position.

")); _pppSigTrp0->setWhatsThis(tr("

Enter a sigma in meters for the a-priory model based tropospheric delay estimation. A value of 0.1 (default) may be an appropriate choice.

")); _pppSigTrpP->setWhatsThis(tr("

Enter a sigma in meters per second to describe the variation of the tropospheric effect.

Supposing 1Hz observation data, a value of 1e-6 (default) would mean that the tropospheric effect may vary for 3600 * 1e-6 = 0.0036 meters per hour.

")); _pppRefCrdXLineEdit->setWhatsThis(tr("

Enter reference coordinate X of the receiver's position.

")); _pppRefCrdYLineEdit->setWhatsThis(tr("

Enter reference coordinate Y of the receiver's position.

")); _pppRefCrdZLineEdit->setWhatsThis(tr("

Enter reference coordinate Z of the receiver's position.

")); _bncFigurePPP->setWhatsThis(tr("PPP time series of North (red), East (green) and Up (blue) coordinate components are shown in the 'PPP Plot' tab when the corresponting option is selected above. Values are either referred to an XYZ reference coordinate (if specified) or referred to the first estimated set of coordinate compoments. The sliding PPP time series window covers the period of the latest 5 minutes.")); _pppSync->setWhatsThis(tr("

You may like to process only those observations which are received first within a maximum of 'Sync corr' seconds after the reception of a clock correction. 5 seconds could be an approriate choice for this option.

Using only observations which come in sync with the corrections can avoid a possible high frequency noise of PPP solutions. Such noise could result from processing all observations regardless of how late after a clock correction they were received.

Default is an empty option field, meaning that you want BNC to determine a PPP solution from all incoming observations through applying the latest received clock correction.

")); // Canvas with Editable Fields // --------------------------- _canvas = new QWidget; setCentralWidget(_canvas); _aogroup = new QTabWidget(); QWidget* pgroup = new QWidget(); QWidget* ggroup = new QWidget(); QWidget* sgroup = new QWidget(); QWidget* egroup = new QWidget(); QWidget* agroup = new QWidget(); QWidget* cgroup = new QWidget(); QWidget* ogroup = new QWidget(); QWidget* rgroup = new QWidget(); QWidget* sergroup = new QWidget(); QWidget* pppgroup = new QWidget(); _aogroup->addTab(pgroup,tr("Proxy")); _aogroup->addTab(ggroup,tr("General")); _aogroup->addTab(ogroup,tr("RINEX Observations")); _aogroup->addTab(egroup,tr("RINEX Ephemeris")); _aogroup->addTab(cgroup,tr("Broadcast Corrections")); _aogroup->addTab(sgroup,tr("Feed Engine")); _aogroup->addTab(sergroup,tr("Serial Output")); _aogroup->addTab(agroup,tr("Outages")); _aogroup->addTab(rgroup,tr("Miscellaneous")); _aogroup->addTab(pppgroup,tr("PPP Client")); // Log Tab // ------- _loggroup = new QTabWidget(); _loggroup->addTab(_log,tr("Log")); _loggroup->addTab(_bncFigure,tr("Throughput")); _loggroup->addTab(_bncFigureLate,tr("Latency")); _loggroup->addTab(_bncFigurePPP,tr("PPP Plot")); // Proxy Tab // --------- QGridLayout* pLayout = new QGridLayout; pLayout->setColumnMinimumWidth(0,13*ww); _proxyPortLineEdit->setMaximumWidth(9*ww); pLayout->addWidget(new QLabel("Proxy host"), 0, 0); pLayout->addWidget(_proxyHostLineEdit, 0, 1, 1,10); pLayout->addWidget(new QLabel("Proxy port"), 1, 0); pLayout->addWidget(_proxyPortLineEdit, 1, 1); pLayout->addWidget(new QLabel("Settings for proxy in protected networks, leave boxes blank if none."),2, 0, 1, 50, Qt::AlignLeft); pLayout->addWidget(new QLabel(" "),3,0); pLayout->addWidget(new QLabel(" "),4,0); pLayout->addWidget(new QLabel(" "),5,0); pgroup->setLayout(pLayout); // General Tab // ----------- QGridLayout* gLayout = new QGridLayout; gLayout->setColumnMinimumWidth(0,14*ww); _onTheFlyComboBox->setMaximumWidth(9*ww); gLayout->addWidget(new QLabel("Logfile (full path)"), 0, 0); gLayout->addWidget(_logFileLineEdit, 0, 1, 1,30); // 1 gLayout->addWidget(new QLabel("Append files"), 1, 0); gLayout->addWidget(_rnxAppendCheckBox, 1, 1); gLayout->addWidget(new QLabel("Reread configuration"), 2, 0); gLayout->addWidget(_onTheFlyComboBox, 2, 1); gLayout->addWidget(new QLabel("Auto start"), 3, 0); gLayout->addWidget(_autoStartCheckBox, 3, 1); gLayout->addWidget(new QLabel("Raw output file (full path)"), 4, 0); gLayout->addWidget(_rawOutFileLineEdit, 4, 1, 1,30); gLayout->addWidget(new QLabel("General settings for logfile, file handling, configuration on-the-fly, and auto-start."),5, 0, 1, 50, Qt::AlignLeft); ggroup->setLayout(gLayout); // RINEX Observations // ------------------ QGridLayout* oLayout = new QGridLayout; oLayout->setColumnMinimumWidth(0,14*ww); _rnxIntrComboBox->setMaximumWidth(9*ww); _rnxSamplSpinBox->setMaximumWidth(9*ww); oLayout->addWidget(new QLabel("Directory"), 0, 0); oLayout->addWidget(_rnxPathLineEdit, 0, 1,1,24); oLayout->addWidget(new QLabel("Interval"), 1, 0); oLayout->addWidget(_rnxIntrComboBox, 1, 1); oLayout->addWidget(new QLabel(" Sampling"), 1, 2, Qt::AlignRight); oLayout->addWidget(_rnxSamplSpinBox, 1, 3, Qt::AlignLeft); oLayout->addWidget(new QLabel("Skeleton extension"), 2, 0); oLayout->addWidget(_rnxSkelLineEdit, 2, 1,1,1, Qt::AlignLeft); oLayout->addWidget(new QLabel("Script (full path)"), 3, 0); oLayout->addWidget(_rnxScrpLineEdit, 3, 1,1,24); oLayout->addWidget(new QLabel("Version 3"), 4, 0); oLayout->addWidget(_rnxV3CheckBox, 4, 1); oLayout->addWidget(new QLabel("Saving RINEX observation files."),5,0,1,50, Qt::AlignLeft); ogroup->setLayout(oLayout); // RINEX Ephemeris // --------------- QGridLayout* eLayout = new QGridLayout; eLayout->setColumnMinimumWidth(0,14*ww); _ephIntrComboBox->setMaximumWidth(9*ww); _outEphPortLineEdit->setMaximumWidth(9*ww); eLayout->addWidget(new QLabel("Directory"), 0, 0); eLayout->addWidget(_ephPathLineEdit, 0, 1, 1,30); eLayout->addWidget(new QLabel("Interval"), 1, 0); eLayout->addWidget(_ephIntrComboBox, 1, 1); eLayout->addWidget(new QLabel("Port"), 2, 0); eLayout->addWidget(_outEphPortLineEdit, 2, 1); eLayout->addWidget(new QLabel("Version 3"), 3, 0); eLayout->addWidget(_ephV3CheckBox, 3, 1); eLayout->addWidget(new QLabel("Saving RINEX ephemeris files and ephemeris output through IP port."),4,0,1,50,Qt::AlignLeft); eLayout->addWidget(new QLabel(" "),5,0); egroup->setLayout(eLayout); // Broadcast Corrections // --------------------- QGridLayout* cLayout = new QGridLayout; cLayout->setColumnMinimumWidth(0,14*ww); _corrIntrComboBox->setMaximumWidth(9*ww); _corrPortLineEdit->setMaximumWidth(9*ww); _corrTimeSpinBox->setMaximumWidth(9*ww); cLayout->addWidget(new QLabel("Directory"), 0, 0); cLayout->addWidget(_corrPathLineEdit, 0, 1,1,20); cLayout->addWidget(new QLabel("Interval"), 1, 0); cLayout->addWidget(_corrIntrComboBox, 1, 1); cLayout->addWidget(new QLabel("Port"), 2, 0); cLayout->addWidget(_corrPortLineEdit, 2, 1); cLayout->addWidget(new QLabel(" Wait for full epoch"), 2, 2, Qt::AlignRight); cLayout->addWidget(_corrTimeSpinBox, 2, 3, Qt::AlignLeft); cLayout->addWidget(new QLabel("Saving Broadcast Ephemeris correction files and correction output through IP port."),3,0,1,50); cLayout->addWidget(new QLabel(" "),4,0); cLayout->addWidget(new QLabel(" "),5,0); cgroup->setLayout(cLayout); // Feed Engine // ----------- QGridLayout* sLayout = new QGridLayout; sLayout->setColumnMinimumWidth(0,14*ww); _outPortLineEdit->setMaximumWidth(9*ww); _waitTimeSpinBox->setMaximumWidth(9*ww); _binSamplSpinBox->setMaximumWidth(9*ww); _outUPortLineEdit->setMaximumWidth(9*ww); sLayout->addWidget(new QLabel("Port"), 0, 0); sLayout->addWidget(_outPortLineEdit, 0, 1); sLayout->addWidget(new QLabel("Wait for full epoch"), 0, 2, Qt::AlignRight); sLayout->addWidget(_waitTimeSpinBox, 0, 3, Qt::AlignLeft); sLayout->addWidget(new QLabel("Sampling"), 1, 0); sLayout->addWidget(_binSamplSpinBox, 1, 1, Qt::AlignLeft); sLayout->addWidget(new QLabel("File (full path)"), 2, 0); sLayout->addWidget(_outFileLineEdit, 2, 1, 1, 20); sLayout->addWidget(new QLabel("Port (unsynchronized)"), 3, 0); sLayout->addWidget(_outUPortLineEdit, 3, 1); sLayout->addWidget(new QLabel("Output decoded observations in a binary format to feed a real-time GNSS network engine."),4,0,1,50); sLayout->addWidget(new QLabel(" "),5,0); sgroup->setLayout(sLayout); // Serial Output // ------------- QGridLayout* serLayout = new QGridLayout; serLayout->setColumnMinimumWidth(0,14*ww); _serialBaudRateComboBox->setMaximumWidth(9*ww); _serialFlowControlComboBox->setMaximumWidth(11*ww); _serialDataBitsComboBox->setMaximumWidth(5*ww); _serialParityComboBox->setMaximumWidth(9*ww); _serialStopBitsComboBox->setMaximumWidth(5*ww); _serialAutoNMEAComboBox->setMaximumWidth(9*ww); _serialHeightNMEALineEdit->setMaximumWidth(8*ww); serLayout->addWidget(new QLabel("Mountpoint"), 0,0, Qt::AlignLeft); serLayout->addWidget(_serialMountPointLineEdit, 0,1,1,2); serLayout->addWidget(new QLabel("Port name"), 1,0, Qt::AlignLeft); serLayout->addWidget(_serialPortNameLineEdit, 1,1,1,2); serLayout->addWidget(new QLabel("Baud rate"), 2,0, Qt::AlignLeft); serLayout->addWidget(_serialBaudRateComboBox, 2,1); serLayout->addWidget(new QLabel("Flow control"), 2,2, Qt::AlignRight); serLayout->addWidget(_serialFlowControlComboBox, 2,3); serLayout->addWidget(new QLabel("Data bits"), 3,0, Qt::AlignLeft); serLayout->addWidget(_serialDataBitsComboBox, 3,1); serLayout->addWidget(new QLabel("Parity"), 3,2, Qt::AlignRight); serLayout->addWidget(_serialParityComboBox, 3,3); serLayout->addWidget(new QLabel(" Stop bits"), 3,4, Qt::AlignRight); serLayout->addWidget(_serialStopBitsComboBox, 3,5); serLayout->addWidget(new QLabel("NMEA"), 4,0); serLayout->addWidget(_serialAutoNMEAComboBox, 4,1); serLayout->addWidget(new QLabel(" File (full path)"), 4,2, Qt::AlignRight); serLayout->addWidget(_serialFileNMEALineEdit, 4,3,1,15); serLayout->addWidget(new QLabel("Height"), 4,20, Qt::AlignRight); serLayout->addWidget(_serialHeightNMEALineEdit, 4,21,1,11); serLayout->addWidget(new QLabel("Port settings to feed a serial connected receiver."),5,0,1,30); sergroup->setLayout(serLayout); // Outages // ------- QGridLayout* aLayout = new QGridLayout; aLayout->setColumnMinimumWidth(0,14*ww); _obsRateComboBox->setMaximumWidth(9*ww); _adviseFailSpinBox->setMaximumWidth(9*ww); _adviseRecoSpinBox->setMaximumWidth(9*ww); aLayout->addWidget(new QLabel("Observation rate"), 0, 0); aLayout->addWidget(_obsRateComboBox, 0, 1); aLayout->addWidget(new QLabel("Failure threshold"), 1, 0); aLayout->addWidget(_adviseFailSpinBox, 1, 1); aLayout->addWidget(new QLabel("Recovery threshold"), 2, 0); aLayout->addWidget(_adviseRecoSpinBox, 2, 1); aLayout->addWidget(new QLabel("Script (full path)"), 3, 0); aLayout->addWidget(_adviseScriptLineEdit, 3, 1,1,30); aLayout->addWidget(new QLabel("Failure and recovery reports, advisory notes."),4,0,1,50,Qt::AlignLeft); aLayout->addWidget(new QLabel(" "), 5, 0); agroup->setLayout(aLayout); // Miscellaneous // ------------- QGridLayout* rLayout = new QGridLayout; rLayout->setColumnMinimumWidth(0,14*ww); _perfIntrComboBox->setMaximumWidth(9*ww); rLayout->addWidget(new QLabel("Mountpoint"), 0, 0); rLayout->addWidget(_miscMountLineEdit, 0, 1, 1,7); rLayout->addWidget(new QLabel("Log latency"), 1, 0); rLayout->addWidget(_perfIntrComboBox, 1, 1); rLayout->addWidget(new QLabel("Scan RTCM"), 2, 0); rLayout->addWidget(_scanRTCMCheckBox, 2, 1); rLayout->addWidget(new QLabel("Log latencies or scan RTCM streams for numbers of message types and antenna information."),3, 0,1,30); rLayout->addWidget(new QLabel(" "), 4, 0); rLayout->addWidget(new QLabel(" "), 5, 0); rgroup->setLayout(rLayout); // PPP Client // ---------- QGridLayout* pppLayout = new QGridLayout; _pppSigCLineEdit->setMaximumWidth(6*ww); _pppSigPLineEdit->setMaximumWidth(6*ww); _pppSigCrd0->setMaximumWidth(6*ww); _pppSigCrdP->setMaximumWidth(6*ww); _pppSigTrp0->setMaximumWidth(6*ww); _pppSigTrpP->setMaximumWidth(6*ww); _pppAverageLineEdit->setMaximumWidth(6*ww); _pppQuickStartLineEdit->setMaximumWidth(6*ww); _pppRefCrdXLineEdit->setMaximumWidth(14*ww); _pppRefCrdYLineEdit->setMaximumWidth(14*ww); _pppRefCrdZLineEdit->setMaximumWidth(14*ww); _pppSync->setMaximumWidth(6*ww); _pppSPPComboBox->setMaximumWidth(8*ww); _pppNMEAPortLineEdit->setMaximumWidth(6*ww); //pppLayout->setColumnMinimumWidth(0,12*ww); pppLayout->addWidget(new QLabel("Mountpoint"), 0, 0); pppLayout->addWidget(_pppMountLineEdit, 0, 1); pppLayout->addWidget(_pppSPPComboBox, 0, 2); pppLayout->addWidget(new QLabel(" X "), 0, 3, Qt::AlignRight); pppLayout->addWidget(_pppRefCrdXLineEdit, 0, 4); pppLayout->addWidget(new QLabel(" Y "), 0, 5, Qt::AlignRight); pppLayout->addWidget(_pppRefCrdYLineEdit, 0, 6); pppLayout->addWidget(new QLabel(" Z "), 0, 7, Qt::AlignRight); pppLayout->addWidget(_pppRefCrdZLineEdit, 0, 8); pppLayout->addWidget(new QLabel("Options"), 1, 0, 1, 5); pppLayout->addWidget(_pppUsePhaseCheckBox, 1, 1, Qt::AlignRight); pppLayout->addWidget(new QLabel("Use phase obs"), 1, 2); pppLayout->addWidget(_pppEstTropoCheckBox, 1, 3, Qt::AlignRight); pppLayout->addWidget(new QLabel("Estimate tropo"), 1, 4); pppLayout->addWidget(_pppGLONASSCheckBox, 1, 5, Qt::AlignRight); pppLayout->addWidget(new QLabel("Use GLONASS"), 1, 6); pppLayout->addWidget(_pppGalileoCheckBox, 1, 7, Qt::AlignRight); pppLayout->addWidget(new QLabel("Use Galileo"), 1, 8); pppLayout->addWidget(new QLabel("Options cont'd"), 2, 0); pppLayout->addWidget(_pppSigCLineEdit, 2, 1, Qt::AlignRight); pppLayout->addWidget(new QLabel("Sigma Code"), 2, 2); pppLayout->addWidget(_pppSigPLineEdit, 2, 3); pppLayout->addWidget(new QLabel("Sigma Phase"), 2, 4); pppLayout->addWidget(_pppQuickStartLineEdit, 2, 5, Qt::AlignRight); pppLayout->addWidget(new QLabel("Quick-Start (sec) ") , 2, 6); pppLayout->addWidget(_pppAverageLineEdit, 2, 7); pppLayout->addWidget(new QLabel("Averaging (min)") , 2, 8); pppLayout->addWidget(new QLabel("Parameter sigmas"), 3, 0); pppLayout->addWidget(_pppSigCrd0, 3, 1, Qt::AlignRight); pppLayout->addWidget(new QLabel("XYZ Init"), 3, 2); pppLayout->addWidget(_pppSigCrdP, 3, 3); pppLayout->addWidget(new QLabel("XYZ White Noise "), 3, 4); pppLayout->addWidget(_pppSigTrp0, 3, 5, Qt::AlignRight); pppLayout->addWidget(new QLabel("Tropo Init"), 3, 6); pppLayout->addWidget(_pppSigTrpP, 3, 7); pppLayout->addWidget(new QLabel("Tropo White Noise"), 3, 8); pppLayout->addWidget(new QLabel("Output"), 4, 0); pppLayout->addWidget(_pppNMEALineEdit, 4, 1, 1, 3); pppLayout->addWidget(new QLabel("NMEA file"), 4, 4); pppLayout->addWidget(_pppNMEAPortLineEdit, 4, 5); pppLayout->addWidget(new QLabel("NMEA port"), 4, 6); pppLayout->addWidget(_pppPlotCoordinates, 4, 7, Qt::AlignRight); pppLayout->addWidget(new QLabel("PPP Plot"), 4, 8); pppLayout->addWidget(new QLabel("Coordinates from Precise Point Positioning (PPP)."),5, 0,1,5); pppLayout->addWidget(_pppSync, 5, 7); pppLayout->addWidget(new QLabel("Sync Corr (sec)"), 5, 8); pppgroup->setLayout(pppLayout); // Main Layout // ----------- QGridLayout* mLayout = new QGridLayout; _aogroup->setCurrentIndex(settings.value("startTab").toInt()); mLayout->addWidget(_aogroup, 0,0); mLayout->addWidget(_mountPointsTable, 1,0); _loggroup->setCurrentIndex(settings.value("statusTab").toInt()); mLayout->addWidget(_loggroup, 2,0); _canvas->setLayout(mLayout); // Enable/Disable all Widgets // -------------------------- slotBncTextChanged(); // Auto start // ---------- if ( Qt::CheckState(settings.value("autoStart").toInt()) == Qt::Checked) { slotGetData(); } } // Destructor //////////////////////////////////////////////////////////////////////////// bncWindow::~bncWindow() { delete _caster; } // //////////////////////////////////////////////////////////////////////////// void bncWindow::populateMountPointsTable() { for (int iRow = _mountPointsTable->rowCount()-1; iRow >=0; iRow--) { _mountPointsTable->removeRow(iRow); } bncSettings settings; QListIterator it(settings.value("mountPoints").toStringList()); if (!it.hasNext()) { _actGetData->setEnabled(false); } int iRow = 0; while (it.hasNext()) { QStringList hlp = it.next().split(" "); if (hlp.size() < 5) continue; _mountPointsTable->insertRow(iRow); QUrl url(hlp[0]); QString fullPath = url.host() + QString(":%1").arg(url.port()) + url.path(); QString format(hlp[1]); QString latitude(hlp[2]); QString longitude(hlp[3]); QString nmea(hlp[4]); if (hlp[5] == "S") { fullPath = hlp[0].replace(0,2,""); } QString ntripVersion = "1"; if (hlp.size() >= 6) { ntripVersion = (hlp[5]); } QTableWidgetItem* it; it = new QTableWidgetItem(url.userInfo()); it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 0, it); it = new QTableWidgetItem(fullPath); it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 1, it); it = new QTableWidgetItem(format); _mountPointsTable->setItem(iRow, 2, it); if (nmea == "yes") { it = new QTableWidgetItem(latitude); _mountPointsTable->setItem(iRow, 3, it); it = new QTableWidgetItem(longitude); _mountPointsTable->setItem(iRow, 4, it); } else { it = new QTableWidgetItem(latitude); it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 3, it); it = new QTableWidgetItem(longitude); it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 4, it); } it = new QTableWidgetItem(nmea); it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 5, it); it = new QTableWidgetItem(ntripVersion); //// it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 6, it); bncTableItem* bncIt = new bncTableItem(); bncIt->setFlags(bncIt->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 7, bncIt); iRow++; } _mountPointsTable->sortItems(1); } // Retrieve Table //////////////////////////////////////////////////////////////////////////// void bncWindow::slotAddMountPoints() { bncSettings settings; QString proxyHost = settings.value("proxyHost").toString(); int proxyPort = settings.value("proxyPort").toInt(); if (proxyHost != _proxyHostLineEdit->text() || proxyPort != _proxyPortLineEdit->text().toInt()) { int iRet = QMessageBox::question(this, "Question", "Proxy options " "changed. Use the new ones?", QMessageBox::Yes, QMessageBox::No, QMessageBox::NoButton); if (iRet == QMessageBox::Yes) { settings.setValue("proxyHost", _proxyHostLineEdit->text()); settings.setValue("proxyPort", _proxyPortLineEdit->text()); settings.sync(); } } QMessageBox msgBox; msgBox.setIcon(QMessageBox::Question); msgBox.setWindowTitle("Add Stream"); msgBox.setText("Add stream(s) coming from:"); QPushButton* buttonNtrip = msgBox.addButton(tr("Caster"), QMessageBox::ActionRole); QPushButton* buttonIP = msgBox.addButton(tr("TCP/IP port"), QMessageBox::ActionRole); QPushButton* buttonUDP = msgBox.addButton(tr("UDP port"), QMessageBox::ActionRole); QPushButton* buttonSerial = msgBox.addButton(tr("Serial port"), QMessageBox::ActionRole); QPushButton* buttonCancel = msgBox.addButton(tr("Cancel"), QMessageBox::ActionRole); msgBox.exec(); if (msgBox.clickedButton() == buttonNtrip) { bncTableDlg* dlg = new bncTableDlg(this); dlg->move(this->pos().x()+50, this->pos().y()+50); connect(dlg, SIGNAL(newMountPoints(QStringList*)), this, SLOT(slotNewMountPoints(QStringList*))); dlg->exec(); delete dlg; } else if (msgBox.clickedButton() == buttonIP) { bncIpPort* ipp = new bncIpPort(this); connect(ipp, SIGNAL(newMountPoints(QStringList*)), this, SLOT(slotNewMountPoints(QStringList*))); ipp->exec(); delete ipp; } else if (msgBox.clickedButton() == buttonUDP) { bncUdpPort* udp = new bncUdpPort(this); connect(udp, SIGNAL(newMountPoints(QStringList*)), this, SLOT(slotNewMountPoints(QStringList*))); udp->exec(); delete udp; } else if (msgBox.clickedButton() == buttonSerial) { bncSerialPort* sep = new bncSerialPort(this); connect(sep, SIGNAL(newMountPoints(QStringList*)), this, SLOT(slotNewMountPoints(QStringList*))); sep->exec(); delete sep; } else if (msgBox.clickedButton() == buttonCancel) { // Cancel } } // Delete Selected Mount Points //////////////////////////////////////////////////////////////////////////// void bncWindow::slotDeleteMountPoints() { int nRows = _mountPointsTable->rowCount(); bool flg[nRows]; for (int iRow = 0; iRow < nRows; iRow++) { if (_mountPointsTable->isItemSelected(_mountPointsTable->item(iRow,1))) { flg[iRow] = true; } else { flg[iRow] = false; } } for (int iRow = nRows-1; iRow >= 0; iRow--) { if (flg[iRow]) { _mountPointsTable->removeRow(iRow); } } _actDeleteMountPoints->setEnabled(false); if (_mountPointsTable->rowCount() == 0) { _actGetData->setEnabled(false); } } // New Mount Points Selected //////////////////////////////////////////////////////////////////////////// void bncWindow::slotNewMountPoints(QStringList* mountPoints) { int iRow = 0; QListIterator it(*mountPoints); while (it.hasNext()) { QStringList hlp = it.next().split(" "); QUrl url(hlp[0]); QString fullPath = url.host() + QString(":%1").arg(url.port()) + url.path(); QString format(hlp[1]); QString latitude(hlp[2]); QString longitude(hlp[3]); QString nmea(hlp[4]); if (hlp[5] == "S") { fullPath = hlp[0].replace(0,2,""); } QString ntripVersion = "1"; if (hlp.size() >= 6) { ntripVersion = (hlp[5]); } _mountPointsTable->insertRow(iRow); QTableWidgetItem* it; it = new QTableWidgetItem(url.userInfo()); it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 0, it); it = new QTableWidgetItem(fullPath); it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 1, it); it = new QTableWidgetItem(format); _mountPointsTable->setItem(iRow, 2, it); if (nmea == "yes") { it = new QTableWidgetItem(latitude); _mountPointsTable->setItem(iRow, 3, it); it = new QTableWidgetItem(longitude); _mountPointsTable->setItem(iRow, 4, it); } else { it = new QTableWidgetItem(latitude); it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 3, it); it = new QTableWidgetItem(longitude); it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 4, it); } it = new QTableWidgetItem(nmea); it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 5, it); it = new QTableWidgetItem(ntripVersion); it->setFlags(it->flags() & ~Qt::ItemIsEditable); _mountPointsTable->setItem(iRow, 6, it); bncTableItem* bncIt = new bncTableItem(); _mountPointsTable->setItem(iRow, 7, bncIt); iRow++; } _mountPointsTable->hideColumn(0); _mountPointsTable->sortItems(1); if (mountPoints->count() > 0 && !_actStop->isEnabled()) { _actGetData->setEnabled(true); } delete mountPoints; } // Save Options //////////////////////////////////////////////////////////////////////////// void bncWindow::slotSaveOptions() { QStringList mountPoints; for (int iRow = 0; iRow < _mountPointsTable->rowCount(); iRow++) { if (_mountPointsTable->item(iRow, 6)->text() != "S") { QUrl url( "//" + _mountPointsTable->item(iRow, 0)->text() + "@" + _mountPointsTable->item(iRow, 1)->text() ); mountPoints.append(url.toString() + " " + _mountPointsTable->item(iRow, 2)->text() + " " + _mountPointsTable->item(iRow, 3)->text() + " " + _mountPointsTable->item(iRow, 4)->text() + " " + _mountPointsTable->item(iRow, 5)->text() + " " + _mountPointsTable->item(iRow, 6)->text()); } else { mountPoints.append( "//" + _mountPointsTable->item(iRow, 1)->text() + " " + _mountPointsTable->item(iRow, 2)->text() + " " + _mountPointsTable->item(iRow, 3)->text() + " " + _mountPointsTable->item(iRow, 4)->text() + " " + _mountPointsTable->item(iRow, 5)->text() + " " + _mountPointsTable->item(iRow, 6)->text()); } } bncSettings settings; settings.setValue("adviseFail", _adviseFailSpinBox->value()); settings.setValue("adviseReco", _adviseRecoSpinBox->value()); settings.setValue("adviseScript",_adviseScriptLineEdit->text()); settings.setValue("autoStart", _autoStartCheckBox->checkState()); settings.setValue("binSampl", _binSamplSpinBox->value()); settings.setValue("corrIntr", _corrIntrComboBox->currentText()); settings.setValue("corrPath", _corrPathLineEdit->text()); settings.setValue("corrPort", _corrPortLineEdit->text()); settings.setValue("corrTime", _corrTimeSpinBox->value()); settings.setValue("ephIntr", _ephIntrComboBox->currentText()); settings.setValue("ephPath", _ephPathLineEdit->text()); settings.setValue("ephV3", _ephV3CheckBox->checkState()); settings.setValue("logFile", _logFileLineEdit->text()); settings.setValue("rawOutFile", _rawOutFileLineEdit->text()); settings.setValue("miscMount", _miscMountLineEdit->text()); settings.setValue("pppMount", _pppMountLineEdit->text()); settings.setValue("pppSPP", _pppSPPComboBox->currentText()); settings.setValue("nmeaFile", _pppNMEALineEdit->text()); settings.setValue("nmeaPort", _pppNMEAPortLineEdit->text()); settings.setValue("pppSigmaCode",_pppSigCLineEdit->text()); settings.setValue("pppSigmaPhase",_pppSigPLineEdit->text()); settings.setValue("pppSigCrd0",_pppSigCrd0->text()); settings.setValue("pppSigCrdP",_pppSigCrdP->text()); settings.setValue("pppSigTrp0",_pppSigTrp0->text()); settings.setValue("pppSigTrpP",_pppSigTrpP->text()); settings.setValue("pppAverage", _pppAverageLineEdit->text()); settings.setValue("pppQuickStart", _pppQuickStartLineEdit->text()); settings.setValue("pppRefCrdX", _pppRefCrdXLineEdit->text()); settings.setValue("pppRefCrdY", _pppRefCrdYLineEdit->text()); settings.setValue("pppRefCrdZ", _pppRefCrdZLineEdit->text()); settings.setValue("pppSync", _pppSync->text()); settings.setValue("pppUsePhase", _pppUsePhaseCheckBox->checkState()); settings.setValue("pppPlotCoordinates", _pppPlotCoordinates->checkState()); settings.setValue("pppEstTropo", _pppEstTropoCheckBox->checkState()); settings.setValue("pppGLONASS", _pppGLONASSCheckBox->checkState()); settings.setValue("pppGalileo", _pppGalileoCheckBox->checkState()); settings.setValue("mountPoints", mountPoints); settings.setValue("obsRate", _obsRateComboBox->currentText()); settings.setValue("onTheFlyInterval", _onTheFlyComboBox->currentText()); settings.setValue("outEphPort", _outEphPortLineEdit->text()); settings.setValue("outFile", _outFileLineEdit->text()); settings.setValue("outPort", _outPortLineEdit->text()); settings.setValue("outUPort", _outUPortLineEdit->text()); settings.setValue("perfIntr", _perfIntrComboBox->currentText()); settings.setValue("proxyHost", _proxyHostLineEdit->text()); settings.setValue("proxyPort", _proxyPortLineEdit->text()); settings.setValue("rnxAppend", _rnxAppendCheckBox->checkState()); settings.setValue("rnxIntr", _rnxIntrComboBox->currentText()); settings.setValue("rnxPath", _rnxPathLineEdit->text()); settings.setValue("rnxSampl", _rnxSamplSpinBox->value()); settings.setValue("rnxScript", _rnxScrpLineEdit->text()); settings.setValue("rnxSkel", _rnxSkelLineEdit->text()); settings.setValue("rnxV3", _rnxV3CheckBox->checkState()); settings.setValue("scanRTCM", _scanRTCMCheckBox->checkState()); settings.setValue("serialFileNMEA",_serialFileNMEALineEdit->text()); settings.setValue("serialHeightNMEA",_serialHeightNMEALineEdit->text()); settings.setValue("serialAutoNMEA", _serialAutoNMEAComboBox->currentText()); settings.setValue("serialBaudRate", _serialBaudRateComboBox->currentText()); settings.setValue("serialDataBits", _serialDataBitsComboBox->currentText()); settings.setValue("serialMountPoint",_serialMountPointLineEdit->text()); settings.setValue("serialParity", _serialParityComboBox->currentText()); settings.setValue("serialPortName", _serialPortNameLineEdit->text()); settings.setValue("serialStopBits", _serialStopBitsComboBox->currentText()); settings.setValue("serialFlowControl",_serialFlowControlComboBox->currentText()); settings.setValue("startTab", _aogroup->currentIndex()); settings.setValue("statusTab", _loggroup->currentIndex()); settings.setValue("waitTime", _waitTimeSpinBox->value()); if (_caster) { _caster->slotReadMountPoints(); } settings.sync(); } // All get slots terminated //////////////////////////////////////////////////////////////////////////// void bncWindow::slotGetThreadsFinished() { ((bncApp*)qApp)->slotMessage("All Get Threads Terminated", true); delete _caster; _caster = 0; _actGetData->setEnabled(true); _actStop->setEnabled(false); } // Retrieve Data //////////////////////////////////////////////////////////////////////////// void bncWindow::slotGetData() { slotSaveOptions(); _bncFigurePPP->reset(); _actDeleteMountPoints->setEnabled(false); _actGetData->setEnabled(false); _actStop->setEnabled(true); _caster = new bncCaster(_outFileLineEdit->text(), _outPortLineEdit->text().toInt()); ((bncApp*)qApp)->setPort(_outEphPortLineEdit->text().toInt()); ((bncApp*)qApp)->setPortCorr(_corrPortLineEdit->text().toInt()); connect(_caster, SIGNAL(getThreadsFinished()), this, SLOT(slotGetThreadsFinished())); connect (_caster, SIGNAL(mountPointsRead(QList)), this, SLOT(slotMountPointsRead(QList))); ((bncApp*)qApp)->slotMessage("========== Start BNC v" BNCVERSION " =========", true); bncSettings settings; QDir rnxdir(settings.value("rnxPath").toString()); if (!rnxdir.exists()) ((bncApp*)qApp)->slotMessage("Cannot find RINEX Observations directory", true); QString rnx_file = settings.value("rnxScript").toString(); if ( !rnx_file.isEmpty() ) { QFile rnxfile(settings.value("rnxScript").toString()); if (!rnxfile.exists()) ((bncApp*)qApp)->slotMessage("Cannot find RINEX Observations script", true); } QDir ephdir(settings.value("ephPath").toString()); if (!ephdir.exists()) ((bncApp*)qApp)->slotMessage("Cannot find RINEX Ephemeris directory", true); QDir corrdir(settings.value("corrPath").toString()); if (!corrdir.exists()) ((bncApp*)qApp)->slotMessage("Cannot find Broadcast Corrections directory", true); QString advise_file = settings.value("adviseScript").toString(); if ( !advise_file.isEmpty() ) { QFile advisefile(settings.value("adviseScript").toString()); if (!advisefile.exists()) ((bncApp*)qApp)->slotMessage("Cannot find Outages script", true); } _caster->slotReadMountPoints(); } // Retrieve Data //////////////////////////////////////////////////////////////////////////// void bncWindow::slotStop() { int iRet = QMessageBox::question(this, "Stop", "Stop retrieving data?", QMessageBox::Yes, QMessageBox::No, QMessageBox::NoButton); if (iRet == QMessageBox::Yes) { delete _caster; _caster = 0; _actGetData->setEnabled(true); _actStop->setEnabled(false); } } // Close Application gracefully //////////////////////////////////////////////////////////////////////////// void bncWindow::closeEvent(QCloseEvent* event) { int iRet = QMessageBox::question(this, "Close", "Save Options?", QMessageBox::Yes, QMessageBox::No, QMessageBox::Cancel); if (iRet == QMessageBox::Cancel) { event->ignore(); return; } else if (iRet == QMessageBox::Yes) { slotSaveOptions(); } QMainWindow::closeEvent(event); } // User changed the selection of mountPoints //////////////////////////////////////////////////////////////////////////// void bncWindow::slotSelectionChanged() { if (_mountPointsTable->selectedItems().isEmpty()) { _actDeleteMountPoints->setEnabled(false); } else { _actDeleteMountPoints->setEnabled(true); } } // Display Program Messages //////////////////////////////////////////////////////////////////////////// void bncWindow::slotWindowMessage(const QByteArray msg, bool showOnScreen) { #ifdef DEBUG_RTCM2_2021 const int maxBufferSize = 1000; #else const int maxBufferSize = 10000; #endif if (! showOnScreen ) { return; } QString txt = _log->toPlainText() + "\n" + QDateTime::currentDateTime().toUTC().toString("yy-MM-dd hh:mm:ss ") + msg; _log->clear(); _log->append(txt.right(maxBufferSize)); } // About Message //////////////////////////////////////////////////////////////////////////// void bncWindow::slotAbout() { new bncAboutDlg(0); } //Flowchart //////////////////////////////////////////////////////////////////////////// void bncWindow::slotFlowchart() { new bncFlowchartDlg(0); } // Help Window //////////////////////////////////////////////////////////////////////////// void bncWindow::slotHelp() { QUrl url; url.setPath(":bnchelp.html"); new bncHlpDlg(0, url); } // Select Fonts //////////////////////////////////////////////////////////////////////////// void bncWindow::slotFontSel() { bool ok; QFont newFont = QFontDialog::getFont(&ok, this->font(), this); if (ok) { bncSettings settings; settings.setValue("font", newFont.toString()); QApplication::setFont(newFont); int ww = QFontMetrics(newFont).width('w'); setMinimumSize(60*ww, 80*ww); resize(60*ww, 80*ww); } } // Whats This Help void bncWindow::slotWhatsThis() { QWhatsThis::enterWhatsThisMode(); } // //////////////////////////////////////////////////////////////////////////// void bncWindow::slotMountPointsRead(QList threads) { _bncFigure->updateMountPoints(); _bncFigureLate->updateMountPoints(); populateMountPointsTable(); bncSettings settings; _binSamplSpinBox->setValue(settings.value("binSampl").toInt()); _waitTimeSpinBox->setValue(settings.value("waitTime").toInt()); QListIterator iTh(threads); while (iTh.hasNext()) { bncGetThread* thread = iTh.next(); for (int iRow = 0; iRow < _mountPointsTable->rowCount(); iRow++) { QUrl url( "//" + _mountPointsTable->item(iRow, 0)->text() + "@" + _mountPointsTable->item(iRow, 1)->text() ); if (url == thread->mountPoint() && _mountPointsTable->item(iRow, 3)->text() == thread->latitude() && _mountPointsTable->item(iRow, 4)->text() == thread->longitude() ) { ((bncTableItem*) _mountPointsTable->item(iRow, 7))->setGetThread(thread); disconnect(thread, SIGNAL(newBytes(QByteArray, double)), _bncFigure, SLOT(slotNewData(QByteArray, double))); connect(thread, SIGNAL(newBytes(QByteArray, double)), _bncFigure, SLOT(slotNewData(QByteArray, double))); disconnect(thread, SIGNAL(newLatency(QByteArray, double)), _bncFigureLate, SLOT(slotNewLatency(QByteArray, double))); connect(thread, SIGNAL(newLatency(QByteArray, double)), _bncFigureLate, SLOT(slotNewLatency(QByteArray, double))); if ( Qt::CheckState(settings.value("pppPlotCoordinates").toInt()) == Qt::Checked) { disconnect(thread, SIGNAL(newPosition(bncTime, double, double, double)), _bncFigurePPP, SLOT(slotNewPosition(bncTime, double, double, double))); connect(thread, SIGNAL(newPosition(bncTime, double, double, double)), _bncFigurePPP, SLOT(slotNewPosition(bncTime, double, double, double))); } break; } } } } // //////////////////////////////////////////////////////////////////////////// void bncWindow::CreateMenu() { // Create Menus // ------------ _menuFile = menuBar()->addMenu(tr("&File")); _menuFile->addAction(_actFontSel); _menuFile->addSeparator(); _menuFile->addAction(_actSaveOpt); _menuFile->addSeparator(); _menuFile->addAction(_actQuit); _menuHlp = menuBar()->addMenu(tr("&Help")); _menuHlp->addAction(_actHelp); _menuHlp->addAction(_actFlowchart); _menuHlp->addAction(_actAbout); } // Toolbar //////////////////////////////////////////////////////////////////////////// void bncWindow::AddToolbar() { // Tool (Command) Bar // ------------------ QToolBar* toolBar = new QToolBar; addToolBar(Qt::BottomToolBarArea, toolBar); toolBar->setMovable(false); toolBar->addAction(_actAddMountPoints); toolBar->addAction(_actDeleteMountPoints); toolBar->addAction(_actGetData); toolBar->addAction(_actStop); toolBar->addWidget(new QLabel(" ")); toolBar->addAction(_actwhatsthis); } // About //////////////////////////////////////////////////////////////////////////// bncAboutDlg::bncAboutDlg(QWidget* parent) : QDialog(parent) { QTextBrowser* tb = new QTextBrowser; QUrl url; url.setPath(":bncabout.html"); tb->setSource(url); tb->setReadOnly(true); int ww = QFontMetrics(font()).width('w'); QPushButton* _closeButton = new QPushButton("Close"); _closeButton->setMaximumWidth(10*ww); connect(_closeButton, SIGNAL(clicked()), this, SLOT(close())); QGridLayout* dlgLayout = new QGridLayout(); QLabel* img = new QLabel(); img->setPixmap(QPixmap(":ntrip-logo.png")); dlgLayout->addWidget(img, 0,0); dlgLayout->addWidget(new QLabel("BKG Ntrip Client (BNC) Version "BNCVERSION), 0,1); dlgLayout->addWidget(tb,1,0,1,2); dlgLayout->addWidget(_closeButton,2,1,Qt::AlignRight); setLayout(dlgLayout); resize(60*ww, 60*ww); setWindowTitle("About BNC"); show(); } // //////////////////////////////////////////////////////////////////////////// bncAboutDlg::~bncAboutDlg() { }; // Flowchart //////////////////////////////////////////////////////////////////////////// bncFlowchartDlg::bncFlowchartDlg(QWidget* parent) : QDialog(parent) { int ww = QFontMetrics(font()).width('w'); QPushButton* _closeButton = new QPushButton("Close"); _closeButton->setMaximumWidth(10*ww); connect(_closeButton, SIGNAL(clicked()), this, SLOT(close())); QGridLayout* dlgLayout = new QGridLayout(); QLabel* img = new QLabel(); img->setPixmap(QPixmap(":bncflowchart.png")); dlgLayout->addWidget(img, 0,0); dlgLayout->addWidget(_closeButton,1,0,Qt::AlignLeft); setLayout(dlgLayout); setWindowTitle("Flow Chart"); show(); } // //////////////////////////////////////////////////////////////////////////// bncFlowchartDlg::~bncFlowchartDlg() { }; // Bnc Text //////////////////////////////////////////////////////////////////////////// void bncWindow::slotBncTextChanged(){ QPalette palette_white(QColor(255, 255, 255)); QPalette palette_gray(QColor(230, 230, 230)); bncSettings settings; // Proxy //------ if (sender() == 0 || sender() == _proxyHostLineEdit) { if (!_proxyHostLineEdit->text().isEmpty()) { _proxyPortLineEdit->setStyleSheet("background-color: white"); _proxyPortLineEdit->setEnabled(true); } else { _proxyPortLineEdit->setStyleSheet("background-color: lightGray"); _proxyPortLineEdit->setEnabled(false); } } // RINEX Observations // ------------------ if (sender() == 0 || sender() == _rnxPathLineEdit) { if (!_rnxPathLineEdit->text().isEmpty()) { _rnxSamplSpinBox->setStyleSheet("background-color: white"); _rnxSkelLineEdit->setStyleSheet("background-color: white"); _rnxScrpLineEdit->setStyleSheet("background-color: white"); _rnxV3CheckBox->setPalette(palette_white); _rnxIntrComboBox->setStyleSheet("background-color: white"); _rnxSamplSpinBox->setEnabled(true); _rnxSkelLineEdit->setEnabled(true); _rnxScrpLineEdit->setEnabled(true); _rnxV3CheckBox->setEnabled(true); _rnxIntrComboBox->setEnabled(true); } else { _rnxSamplSpinBox->setStyleSheet("background-color: lightGray"); _rnxSkelLineEdit->setStyleSheet("background-color: lightGray"); _rnxScrpLineEdit->setStyleSheet("background-color: lightGray"); _rnxV3CheckBox->setPalette(palette_gray); _rnxIntrComboBox->setStyleSheet("background-color: lightGray"); _rnxSamplSpinBox->setEnabled(false); _rnxSkelLineEdit->setEnabled(false); _rnxScrpLineEdit->setEnabled(false); _rnxV3CheckBox->setEnabled(false); _rnxIntrComboBox->setEnabled(false); } } // RINEX Ephemeris // --------------- if (sender() == 0 || sender() == _ephPathLineEdit || sender() == _outEphPortLineEdit) { if (!_ephPathLineEdit->text().isEmpty() || !_outEphPortLineEdit->text().isEmpty()) { _ephIntrComboBox->setStyleSheet("background-color: white"); _ephV3CheckBox->setPalette(palette_white); _ephIntrComboBox->setEnabled(true); _ephV3CheckBox->setEnabled(true); } else { _ephIntrComboBox->setStyleSheet("background-color: lightGray"); _ephV3CheckBox->setPalette(palette_gray); _ephIntrComboBox->setEnabled(false); _ephV3CheckBox->setEnabled(false); } } // Broadcast Corrections // --------------------- if (sender() == 0 || sender() == _corrPathLineEdit || sender() == _corrPortLineEdit) { if (!_corrPathLineEdit->text().isEmpty() || !_corrPortLineEdit->text().isEmpty()) { _corrIntrComboBox->setStyleSheet("background-color: white"); _corrIntrComboBox->setEnabled(true); } else { _corrIntrComboBox->setStyleSheet("background-color: lightGray"); _corrIntrComboBox->setEnabled(false); } } // Feed Engine // ----------- if (sender() == 0 || sender() == _outPortLineEdit || sender() == _outFileLineEdit) { if ( !_outPortLineEdit->text().isEmpty() || !_outFileLineEdit->text().isEmpty()) { _waitTimeSpinBox->setStyleSheet("background-color: white"); _binSamplSpinBox->setStyleSheet("background-color: white"); _waitTimeSpinBox->setEnabled(true); _binSamplSpinBox->setEnabled(true); } else { _waitTimeSpinBox->setStyleSheet("background-color: lightGray"); _binSamplSpinBox->setStyleSheet("background-color: lightGray"); _waitTimeSpinBox->setEnabled(false); _binSamplSpinBox->setEnabled(false); } } // Serial Output // ------------- if (sender() == 0 || sender() == _serialMountPointLineEdit || sender() == _serialAutoNMEAComboBox) { if (!_serialMountPointLineEdit->text().isEmpty()) { _serialPortNameLineEdit->setStyleSheet("background-color: white"); _serialBaudRateComboBox->setStyleSheet("background-color: white"); _serialParityComboBox->setStyleSheet("background-color: white"); _serialDataBitsComboBox->setStyleSheet("background-color: white"); _serialStopBitsComboBox->setStyleSheet("background-color: white"); _serialFlowControlComboBox->setStyleSheet("background-color: white"); _serialAutoNMEAComboBox->setStyleSheet("background-color: white"); _serialPortNameLineEdit->setEnabled(true); _serialBaudRateComboBox->setEnabled(true); _serialParityComboBox->setEnabled(true); _serialDataBitsComboBox->setEnabled(true); _serialStopBitsComboBox->setEnabled(true); _serialFlowControlComboBox->setEnabled(true); _serialAutoNMEAComboBox->setEnabled(true); if (_serialAutoNMEAComboBox->currentText() != "Auto" ) { _serialHeightNMEALineEdit->setStyleSheet("background-color: white"); _serialHeightNMEALineEdit->setEnabled(true); _serialFileNMEALineEdit->setStyleSheet("background-color: lightGray"); _serialFileNMEALineEdit->setEnabled(false); } else { _serialHeightNMEALineEdit->setStyleSheet("background-color: lightGray"); _serialHeightNMEALineEdit->setEnabled(false); _serialFileNMEALineEdit->setStyleSheet("background-color: white"); _serialFileNMEALineEdit->setEnabled(true); } } else { _serialPortNameLineEdit->setStyleSheet("background-color: lightGray"); _serialBaudRateComboBox->setStyleSheet("background-color: lightGray"); _serialParityComboBox->setStyleSheet("background-color: lightGray"); _serialDataBitsComboBox->setStyleSheet("background-color: lightGray"); _serialStopBitsComboBox->setStyleSheet("background-color: lightGray"); _serialFlowControlComboBox->setStyleSheet("background-color: lightGray"); _serialAutoNMEAComboBox->setStyleSheet("background-color: lightGray"); _serialFileNMEALineEdit->setStyleSheet("background-color: lightGray"); _serialHeightNMEALineEdit->setStyleSheet("background-color: lightGray"); _serialPortNameLineEdit->setEnabled(false); _serialBaudRateComboBox->setEnabled(false); _serialParityComboBox->setEnabled(false); _serialDataBitsComboBox->setEnabled(false); _serialStopBitsComboBox->setEnabled(false); _serialFlowControlComboBox->setEnabled(false); _serialAutoNMEAComboBox->setEnabled(false); _serialHeightNMEALineEdit->setEnabled(false); _serialFileNMEALineEdit->setEnabled(false); } } // Outages // ------- if (sender() == 0 || sender() == _obsRateComboBox) { if (!_obsRateComboBox->currentText().isEmpty()) { _adviseScriptLineEdit->setStyleSheet("background-color: white"); _adviseFailSpinBox->setStyleSheet("background-color: white"); _adviseRecoSpinBox->setStyleSheet("background-color: white"); _adviseFailSpinBox->setEnabled(true); _adviseRecoSpinBox->setEnabled(true); _adviseScriptLineEdit->setEnabled(true); } else { _adviseScriptLineEdit->setStyleSheet("background-color: lightGray"); _adviseFailSpinBox->setStyleSheet("background-color: lightGray"); _adviseRecoSpinBox->setStyleSheet("background-color: lightGray"); _adviseFailSpinBox->setEnabled(false); _adviseRecoSpinBox->setEnabled(false); _adviseScriptLineEdit->setEnabled(false); } } // Miscellaneous // ------------- if (sender() == 0 || sender() == _miscMountLineEdit) { if (!_miscMountLineEdit->text().isEmpty()) { _perfIntrComboBox->setStyleSheet("background-color: white"); _scanRTCMCheckBox->setPalette(palette_white); _perfIntrComboBox->setEnabled(true); _scanRTCMCheckBox->setEnabled(true); } else { _perfIntrComboBox->setStyleSheet("background-color: lightGray"); _scanRTCMCheckBox->setPalette(palette_gray); _perfIntrComboBox->setEnabled(false); _scanRTCMCheckBox->setEnabled(false); } } // PPP Client // ---------- if (sender() == 0 || sender() == _pppMountLineEdit || sender() == _pppRefCrdXLineEdit || sender() == _pppRefCrdYLineEdit || sender() == _pppRefCrdZLineEdit || sender() == _pppSync || sender() == _pppSPPComboBox || sender() == _pppEstTropoCheckBox || sender() == _pppUsePhaseCheckBox ) { if (!_pppMountLineEdit->text().isEmpty()) { _pppSPPComboBox->setPalette(palette_white); _pppNMEALineEdit->setPalette(palette_white); _pppNMEAPortLineEdit->setPalette(palette_white); _pppRefCrdXLineEdit->setPalette(palette_white); _pppRefCrdYLineEdit->setPalette(palette_white); _pppRefCrdZLineEdit->setPalette(palette_white); _pppUsePhaseCheckBox->setPalette(palette_white); _pppPlotCoordinates->setPalette(palette_white); _pppEstTropoCheckBox->setPalette(palette_white); _pppGLONASSCheckBox->setPalette(palette_white); _pppGalileoCheckBox->setPalette(palette_white); _pppSPPComboBox->setEnabled(true); _pppNMEALineEdit->setEnabled(true); _pppNMEAPortLineEdit->setEnabled(true); _pppRefCrdXLineEdit->setEnabled(true); _pppRefCrdYLineEdit->setEnabled(true); _pppRefCrdZLineEdit->setEnabled(true); _pppUsePhaseCheckBox->setEnabled(true); _pppPlotCoordinates->setEnabled(true); _pppEstTropoCheckBox->setEnabled(true); _pppGLONASSCheckBox->setEnabled(true); _pppGalileoCheckBox->setEnabled(true); _pppRefCrdXLineEdit->setPalette(palette_white); _pppRefCrdXLineEdit->setEnabled(true); _pppRefCrdYLineEdit->setPalette(palette_white); _pppRefCrdYLineEdit->setEnabled(true); _pppRefCrdZLineEdit->setPalette(palette_white); _pppRefCrdZLineEdit->setEnabled(true); if (!_pppRefCrdXLineEdit->text().isEmpty() && !_pppRefCrdYLineEdit->text().isEmpty() && !_pppRefCrdZLineEdit->text().isEmpty()) { _pppAverageLineEdit->setPalette(palette_white); _pppAverageLineEdit->setEnabled(true); _pppQuickStartLineEdit->setPalette(palette_white); _pppQuickStartLineEdit->setEnabled(true); } else { _pppAverageLineEdit->setPalette(palette_gray); _pppAverageLineEdit->setEnabled(false); _pppQuickStartLineEdit->setPalette(palette_gray); _pppQuickStartLineEdit->setEnabled(false); } _pppSigCLineEdit->setPalette(palette_white); _pppSigCLineEdit->setEnabled(true); _pppSigCrd0->setPalette(palette_white); _pppSigCrd0->setEnabled(true); _pppSigCrdP->setPalette(palette_white); _pppSigCrdP->setEnabled(true); if (_pppEstTropoCheckBox->isChecked() && !_pppMountLineEdit->text().isEmpty()) { _pppSigTrp0->setPalette(palette_white); _pppSigTrp0->setEnabled(true); _pppSigTrpP->setPalette(palette_white); _pppSigTrpP->setEnabled(true); } else { _pppSigTrp0->setPalette(palette_gray); _pppSigTrp0->setEnabled(false); _pppSigTrpP->setPalette(palette_gray); _pppSigTrpP->setEnabled(false); } if (_pppUsePhaseCheckBox->isChecked() && !_pppMountLineEdit->text().isEmpty()) { _pppSigPLineEdit->setPalette(palette_white); _pppSigPLineEdit->setEnabled(true); } else { _pppSigPLineEdit->setPalette(palette_gray); _pppSigPLineEdit->setEnabled(false); } if (_pppSPPComboBox->currentText() == "PPP") { _pppSync->setPalette(palette_white); _pppSync->setEnabled(true); } else { _pppSync->setPalette(palette_gray); _pppSync->setEnabled(false); } } else { _pppSPPComboBox->setPalette(palette_gray); _pppNMEALineEdit->setPalette(palette_gray); _pppNMEAPortLineEdit->setPalette(palette_gray); _pppRefCrdXLineEdit->setPalette(palette_gray); _pppRefCrdYLineEdit->setPalette(palette_gray); _pppRefCrdZLineEdit->setPalette(palette_gray); _pppSync->setPalette(palette_gray); _pppUsePhaseCheckBox->setPalette(palette_gray); _pppPlotCoordinates->setPalette(palette_gray); _pppEstTropoCheckBox->setPalette(palette_gray); _pppGLONASSCheckBox->setPalette(palette_gray); _pppGalileoCheckBox->setPalette(palette_gray); _pppSigCLineEdit->setPalette(palette_gray); _pppSigPLineEdit->setPalette(palette_gray); _pppSigCrd0->setPalette(palette_gray); _pppSigCrdP->setPalette(palette_gray); _pppSigTrp0->setPalette(palette_gray); _pppSigTrpP->setPalette(palette_gray); _pppAverageLineEdit->setPalette(palette_gray); _pppQuickStartLineEdit->setPalette(palette_gray); _pppSPPComboBox->setEnabled(false); _pppNMEALineEdit->setEnabled(false); _pppNMEAPortLineEdit->setEnabled(false); _pppRefCrdXLineEdit->setEnabled(false); _pppRefCrdYLineEdit->setEnabled(false); _pppRefCrdZLineEdit->setEnabled(false); _pppSync->setEnabled(false); _pppUsePhaseCheckBox->setEnabled(false); _pppPlotCoordinates->setEnabled(false); _pppEstTropoCheckBox->setEnabled(false); _pppGLONASSCheckBox->setEnabled(false); _pppGalileoCheckBox->setEnabled(false); _pppSigCLineEdit->setEnabled(false); _pppSigPLineEdit->setEnabled(false); _pppSigCrd0->setEnabled(false); _pppSigCrdP->setEnabled(false); _pppSigTrp0->setEnabled(false); _pppSigTrpP->setEnabled(false); _pppAverageLineEdit->setEnabled(false); _pppQuickStartLineEdit->setEnabled(false); } } }