source: ntrip/trunk/BNC/bncwindow.cpp@ 1932

Last change on this file since 1932 was 1932, checked in by mervart, 14 years ago

* empty log message *

File size: 74.0 KB
Line 
1// Part of BNC, a utility for retrieving decoding and
2// converting GNSS data streams from NTRIP broadcasters.
3//
4// Copyright (C) 2007
5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
7// Czech Technical University Prague, Department of Geodesy
8// http://www.fsv.cvut.cz
9//
10// Email: euref-ip@bkg.bund.de
11//
12// This program is free software; you can redistribute it and/or
13// modify it under the terms of the GNU General Public License
14// as published by the Free Software Foundation, version 2.
15//
16// This program is distributed in the hope that it will be useful,
17// but WITHOUT ANY WARRANTY; without even the implied warranty of
18// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19// GNU General Public License for more details.
20//
21// You should have received a copy of the GNU General Public License
22// along with this program; if not, write to the Free Software
23// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25/* -------------------------------------------------------------------------
26 * BKG NTRIP Client
27 * -------------------------------------------------------------------------
28 *
29 * Class: bncWindow
30 *
31 * Purpose: This class implements the main application window.
32 *
33 * Author: L. Mervart
34 *
35 * Created: 24-Dec-2005
36 *
37 * Changes:
38 *
39 * -----------------------------------------------------------------------*/
40
41#include <iostream>
42
43#include <unistd.h>
44#include "bncwindow.h"
45#include "bncapp.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"
53#include "bnctableitem.h"
54#include "bncsettings.h"
55#include "bncfigure.h"
56
57using namespace std;
58
59// Constructor
60////////////////////////////////////////////////////////////////////////////
61bncWindow::bncWindow() {
62
63 _caster = 0;
64
65 _bncFigure = new bncFigure(this);
66
67 int ww = QFontMetrics(this->font()).width('w');
68
69 static const QStringList labels = QString("account, Streams: resource loader / mountpoint,decoder,lat,long,nmea,ntrip,bytes").split(",");
70
71 setMinimumSize(85*ww, 65*ww);
72
73 setWindowTitle(tr("BKG Ntrip Client (BNC) Version 1.7"));
74
75 connect((bncApp*)qApp, SIGNAL(newMessage(QByteArray,bool)),
76 this, SLOT(slotWindowMessage(QByteArray,bool)));
77
78 QPalette palette;
79 QColor lightGray(230, 230, 230);
80
81 // Create Actions
82 // --------------
83 _actHelp = new QAction(tr("&Help Contents"),this);
84 connect(_actHelp, SIGNAL(triggered()), SLOT(slotHelp()));
85
86 _actAbout = new QAction(tr("&About BNC"),this);
87 connect(_actAbout, SIGNAL(triggered()), SLOT(slotAbout()));
88
89 _actFlowchart = new QAction(tr("&Flow Chart"),this);
90 connect(_actFlowchart, SIGNAL(triggered()), SLOT(slotFlowchart()));
91
92 _actFontSel = new QAction(tr("Select &Font"),this);
93 connect(_actFontSel, SIGNAL(triggered()), SLOT(slotFontSel()));
94
95 _actSaveOpt = new QAction(tr("&Save && Reread Configuration"),this);
96 connect(_actSaveOpt, SIGNAL(triggered()), SLOT(slotSaveOptions()));
97
98 _actQuit = new QAction(tr("&Quit"),this);
99 connect(_actQuit, SIGNAL(triggered()), SLOT(close()));
100
101 _actAddMountPoints = new QAction(tr("Add &Stream"),this);
102 connect(_actAddMountPoints, SIGNAL(triggered()), SLOT(slotAddMountPoints()));
103
104 _actDeleteMountPoints = new QAction(tr("&Delete Stream"),this);
105 connect(_actDeleteMountPoints, SIGNAL(triggered()), SLOT(slotDeleteMountPoints()));
106 _actDeleteMountPoints->setEnabled(false);
107
108 _actGetData = new QAction(tr("Sta&rt"),this);
109 connect(_actGetData, SIGNAL(triggered()), SLOT(slotGetData()));
110
111 _actStop = new QAction(tr("Sto&p"),this);
112 connect(_actStop, SIGNAL(triggered()), SLOT(slotStop()));
113 _actStop->setEnabled(false);
114
115 _actwhatsthis= new QAction(tr("Help=Shift+F1"),this);
116 connect(_actwhatsthis, SIGNAL(triggered()), SLOT(slotWhatsThis()));
117
118 CreateMenu();
119 AddToolbar();
120
121 bncSettings settings;
122
123 // Proxy Options
124 // -------------
125 _proxyHostLineEdit = new QLineEdit(settings.value("proxyHost").toString());
126 _proxyPortLineEdit = new QLineEdit(settings.value("proxyPort").toString());
127
128 // General Options
129 // ---------------
130 _logFileLineEdit = new QLineEdit(settings.value("logFile").toString());
131 _rnxAppendCheckBox = new QCheckBox();
132 _rnxAppendCheckBox->setCheckState(Qt::CheckState(
133 settings.value("rnxAppend").toInt()));
134 _onTheFlyComboBox = new QComboBox();
135 _onTheFlyComboBox->setEditable(false);
136 _onTheFlyComboBox->addItems(QString("1 day,1 hour,1 min").split(","));
137 int ii = _onTheFlyComboBox->findText(settings.value("onTheFlyInterval").toString());
138 if (ii != -1) {
139 _onTheFlyComboBox->setCurrentIndex(ii);
140 }
141 _autoStartCheckBox = new QCheckBox();
142 _autoStartCheckBox->setCheckState(Qt::CheckState(
143 settings.value("autoStart").toInt()));
144
145 // RINEX Observations Options
146 // --------------------------
147 _rnxPathLineEdit = new QLineEdit(settings.value("rnxPath").toString());
148 _rnxIntrComboBox = new QComboBox();
149 _rnxIntrComboBox->setEditable(false);
150 _rnxIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
151 ii = _rnxIntrComboBox->findText(settings.value("rnxIntr").toString());
152 if (ii != -1) {
153 _rnxIntrComboBox->setCurrentIndex(ii);
154 }
155 _rnxSamplSpinBox = new QSpinBox();
156 _rnxSamplSpinBox->setMinimum(0);
157 _rnxSamplSpinBox->setMaximum(60);
158 _rnxSamplSpinBox->setSingleStep(5);
159 _rnxSamplSpinBox->setValue(settings.value("rnxSampl").toInt());
160 _rnxSamplSpinBox->setSuffix(" sec");
161 _rnxSkelLineEdit = new QLineEdit(settings.value("rnxSkel").toString());
162 _rnxSkelLineEdit->setMaximumWidth(5*ww);
163 _rnxScrpLineEdit = new QLineEdit(settings.value("rnxScript").toString());
164 _rnxV3CheckBox = new QCheckBox();
165 _rnxV3CheckBox->setCheckState(Qt::CheckState(settings.value("rnxV3").toInt()));
166
167 // RINEX Ephemeris Options
168 // -----------------------
169 _ephPathLineEdit = new QLineEdit(settings.value("ephPath").toString());
170 _ephIntrComboBox = new QComboBox();
171 _ephIntrComboBox->setEditable(false);
172 _ephIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
173 int jj = _ephIntrComboBox->findText(settings.value("ephIntr").toString());
174 if (jj != -1) {
175 _ephIntrComboBox->setCurrentIndex(jj);
176 }
177 _outEphPortLineEdit = new QLineEdit(settings.value("outEphPort").toString());
178 _ephV3CheckBox = new QCheckBox();
179 _ephV3CheckBox->setCheckState(Qt::CheckState(settings.value("ephV3").toInt()));
180
181 // Broadcast Corrections Options
182 // -----------------------------
183 _corrPathLineEdit = new QLineEdit(settings.value("corrPath").toString());
184 _corrIntrComboBox = new QComboBox();
185 _corrIntrComboBox->setEditable(false);
186 _corrIntrComboBox->addItems(QString("1 min,2 min,5 min,10 min,15 min,30 min,1 hour,1 day").split(","));
187 int mm = _corrIntrComboBox->findText(settings.value("corrIntr").toString());
188 if (mm != -1) {
189 _corrIntrComboBox->setCurrentIndex(mm);
190 }
191 _corrPortLineEdit = new QLineEdit(settings.value("corrPort").toString());
192 _corrTimeSpinBox = new QSpinBox();
193 _corrTimeSpinBox->setMinimum(1);
194 _corrTimeSpinBox->setMaximum(30);
195 _corrTimeSpinBox->setSingleStep(1);
196 _corrTimeSpinBox->setSuffix(" sec");
197 _corrTimeSpinBox->setValue(settings.value("corrTime").toInt());
198
199 // Feed Engine Options
200 // -------------------
201 _outPortLineEdit = new QLineEdit(settings.value("outPort").toString());
202 _waitTimeSpinBox = new QSpinBox();
203 _waitTimeSpinBox->setMinimum(1);
204 _waitTimeSpinBox->setMaximum(30);
205 _waitTimeSpinBox->setSingleStep(1);
206 _waitTimeSpinBox->setSuffix(" sec");
207 _waitTimeSpinBox->setValue(settings.value("waitTime").toInt());
208 _binSamplSpinBox = new QSpinBox();
209 _binSamplSpinBox->setMinimum(0);
210 _binSamplSpinBox->setMaximum(60);
211 _binSamplSpinBox->setSingleStep(5);
212 _binSamplSpinBox->setValue(settings.value("binSampl").toInt());
213 _binSamplSpinBox->setSuffix(" sec");
214 _outFileLineEdit = new QLineEdit(settings.value("outFile").toString());
215 _outUPortLineEdit = new QLineEdit(settings.value("outUPort").toString());
216
217 // Serial Output Options
218 // ---------------------
219 _serialMountPointLineEdit = new QLineEdit(settings.value("serialMountPoint").toString());
220 _serialPortNameLineEdit = new QLineEdit(settings.value("serialPortName").toString());
221 _serialBaudRateComboBox = new QComboBox();
222 _serialBaudRateComboBox->addItems(QString("110,300,600,"
223 "1200,2400,4800,9600,19200,38400,57600,115200").split(","));
224 int kk = _serialBaudRateComboBox->findText(settings.value("serialBaudRate").toString());
225 if (kk != -1) {
226 _serialBaudRateComboBox->setCurrentIndex(kk);
227 }
228 _serialFlowControlComboBox = new QComboBox();
229 _serialFlowControlComboBox->addItems(QString("OFF,XONXOFF,HARDWARE").split(","));
230 kk = _serialFlowControlComboBox->findText(settings.value("serialFlowControl").toString());
231 if (kk != -1) {
232 _serialFlowControlComboBox->setCurrentIndex(kk);
233 }
234 _serialDataBitsComboBox = new QComboBox();
235 _serialDataBitsComboBox->addItems(QString("5,6,7,8").split(","));
236 kk = _serialDataBitsComboBox->findText(settings.value("serialDataBits").toString());
237 if (kk != -1) {
238 _serialDataBitsComboBox->setCurrentIndex(kk);
239 }
240 _serialParityComboBox = new QComboBox();
241 _serialParityComboBox->addItems(QString("NONE,ODD,EVEN,SPACE").split(","));
242 kk = _serialParityComboBox->findText(settings.value("serialParity").toString());
243 if (kk != -1) {
244 _serialParityComboBox->setCurrentIndex(kk);
245 }
246 _serialStopBitsComboBox = new QComboBox();
247 _serialStopBitsComboBox->addItems(QString("1,2").split(","));
248 kk = _serialStopBitsComboBox->findText(settings.value("serialStopBits").toString());
249 if (kk != -1) {
250 _serialStopBitsComboBox->setCurrentIndex(kk);
251 }
252 _serialAutoNMEAComboBox = new QComboBox();
253 _serialAutoNMEAComboBox->addItems(QString("Auto,Manual").split(","));
254 kk = _serialAutoNMEAComboBox->findText(settings.value("serialAutoNMEA").toString());
255 if (kk != -1) {
256 _serialAutoNMEAComboBox->setCurrentIndex(kk);
257 }
258 _serialFileNMEALineEdit = new QLineEdit(settings.value("serialFileNMEA").toString());
259 _serialHeightNMEALineEdit = new QLineEdit(settings.value("serialHeightNMEA").toString());
260
261 // Outages Options
262 // ---------------
263 _obsRateComboBox = new QComboBox();
264 _obsRateComboBox->setEditable(false);
265 _obsRateComboBox->addItems(QString(",0.1 Hz,0.2 Hz,0.5 Hz,1 Hz,5 Hz").split(","));
266 kk = _obsRateComboBox->findText(settings.value("obsRate").toString());
267 if (kk != -1) {
268 _obsRateComboBox->setCurrentIndex(kk);
269 }
270 _adviseFailSpinBox = new QSpinBox();
271 _adviseFailSpinBox->setMinimum(0);
272 _adviseFailSpinBox->setMaximum(60);
273 _adviseFailSpinBox->setSingleStep(1);
274 _adviseFailSpinBox->setSuffix(" min");
275 _adviseFailSpinBox->setValue(settings.value("adviseFail").toInt());
276 _adviseRecoSpinBox = new QSpinBox();
277 _adviseRecoSpinBox->setMinimum(0);
278 _adviseRecoSpinBox->setMaximum(60);
279 _adviseRecoSpinBox->setSingleStep(1);
280 _adviseRecoSpinBox->setSuffix(" min");
281 _adviseRecoSpinBox->setValue(settings.value("adviseReco").toInt());
282 _adviseScriptLineEdit = new QLineEdit(settings.value("adviseScript").toString());
283
284 // Miscellaneous Options
285 // ---------------------
286 _miscMountLineEdit = new QLineEdit(settings.value("miscMount").toString());
287 _perfIntrComboBox = new QComboBox();
288 _perfIntrComboBox->setEditable(false);
289 _perfIntrComboBox->addItems(QString(",2 sec, 10 sec,1 min,5 min,15 min,1 hour,6 hours,1 day").split(","));
290 int ll = _perfIntrComboBox->findText(settings.value("perfIntr").toString());
291 if (ll != -1) {
292 _perfIntrComboBox->setCurrentIndex(ll);
293 }
294 _scanRTCMCheckBox = new QCheckBox();
295 _scanRTCMCheckBox->setCheckState(Qt::CheckState(
296 settings.value("scanRTCM").toInt()));
297
298 // Streams
299 // -------
300 _mountPointsTable = new QTableWidget(0,8);
301
302 _mountPointsTable->horizontalHeader()->resizeSection(1,34*ww);
303 _mountPointsTable->horizontalHeader()->resizeSection(2,9*ww);
304 _mountPointsTable->horizontalHeader()->resizeSection(3,7*ww);
305 _mountPointsTable->horizontalHeader()->resizeSection(4,7*ww);
306 _mountPointsTable->horizontalHeader()->resizeSection(5,5*ww);
307 _mountPointsTable->horizontalHeader()->resizeSection(6,5*ww);
308 _mountPointsTable->horizontalHeader()->setResizeMode(QHeaderView::Interactive);
309 _mountPointsTable->horizontalHeader()->setStretchLastSection(true);
310 _mountPointsTable->setHorizontalHeaderLabels(labels);
311 _mountPointsTable->setGridStyle(Qt::NoPen);
312 _mountPointsTable->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
313 _mountPointsTable->setSelectionMode(QAbstractItemView::ExtendedSelection);
314 _mountPointsTable->setSelectionBehavior(QAbstractItemView::SelectRows);
315 _mountPointsTable->hideColumn(0);
316 connect(_mountPointsTable, SIGNAL(itemSelectionChanged()),
317 SLOT(slotSelectionChanged()));
318 populateMountPointsTable();
319
320 _log = new QTextBrowser();
321 _log->setReadOnly(true);
322
323 // WhatsThis
324 // ---------
325 _proxyHostLineEdit->setWhatsThis(tr("<p>If you are running BNC within a protected Local Area Network (LAN), you might need to use a proxy server to access the Internet. Enter your proxy server IP and port number in case one is operated in front of BNC. If you do not know the IP and port of your proxy server, check the proxy server settings in your Internet browser or ask your network administrator.</p><p>Note that IP streaming is sometimes not allowed in a LAN. In this case you need to ask your network administrator for an appropriate modification of the local security policy or for the installation of a TCP relay to the NTRIP broadcasters. If these are not possible, you might need to run BNC outside your LAN on a network that has unobstructed connection to the Internet.</p>"));
326 _proxyPortLineEdit->setWhatsThis(tr("<p>Enter your proxy server port number in case a proxy is operated in front of BNC.</p>"));
327 _waitTimeSpinBox->setWhatsThis(tr("<p>When feeding a real-time GNSS network engine waiting for synchronized input epoch by epoch, BNC drops whatever is received later than 'Wait for full epoch' seconds. A value of 3 to 5 seconds is recommended, depending on the latency of the incoming streams and the delay acceptable to your real-time GNSS network engine or products.</p>"));
328 _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."));
329 _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."));
330 _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."));
331 _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."));
332 _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."));
333 _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."));
334 _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."));
335 _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."));
336 _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."));
337 _rnxScrpLineEdit->setWhatsThis(tr("<p>Whenever a RINEX Observation file is saved, you might want to compress, copy or upload it immediately via FTP. BNC allows you to execute a script/batch file to carry out these operations. To do that specify the full path of the script/batch file here. BNC will pass the full RINEX Observation file path to the script as a command line parameter (%1 on Windows systems, $1 onUnix/Linux systems).</p>"));
338 _rnxSkelLineEdit->setWhatsThis(tr("<p>BNC allows using personal skeleton files that contain the header records you would like to include. You can derive a personal RINEX header skeleton file from the information given in an up to date sitelog.</p><p>A file in the RINEX Observations 'Directory' with a 'Skeleton extension' suffix is interpreted by BNC as a personal RINEX header skeleton file for the corresponding stream.</p>"));
339 _rnxAppendCheckBox->setWhatsThis(tr("<p>When BNC is started, new files are created by default and any existing files with the same name will be overwritten. However, users might want to append already existing files following a restart of BNC, a system crash or when BNC crashed. Tick 'Append files' to continue with existing files and keep what has been recorded so far.</p>"));
340 _autoStartCheckBox->setWhatsThis(tr("<p>Tick 'Auto start' for auto-start of BNC at startup time in window mode with preassigned processing options.</p>"));
341 _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', '1 hour', or '1 day' to force BNC to reread its configuration every full minute, hour, or day and let in between edited configuration options become effective on-the-fly without terminating uninvolved threads.</p><p>Note that when operating BNC in window mode, on-the-fly changeable configuration options become effective immediately through 'Save & Reread Configuration'.</p>"));
342 _rnxIntrComboBox->setWhatsThis(tr("<p>Select the length of the RINEX Observation file.</p>"));
343 _ephIntrComboBox->setWhatsThis(tr("<p>Select the length of the RINEX Navigation file.</p>"));
344 _corrIntrComboBox->setWhatsThis(tr("<p>Select the length of the Broadcast Ephemeris Correction files.</p>"));
345 _rnxSamplSpinBox->setWhatsThis(tr("<p>Select the RINEX Observation sampling interval in seconds. A value of zero '0' tells BNC to store all received epochs into RINEX.</p>"));
346 _binSamplSpinBox->setWhatsThis(tr("<p>Select the synchronized observation sampling interval in seconds. A value of zero '0' tells BNC to send/store all received epochs.</p>"));
347 _obsRateComboBox->setWhatsThis(tr("<p>BNC can collect all returns (success or failure) coming from a decoder within a certain short time span to then decide whether a stream has an outage or its content is corrupted. The procedure needs a rough estimate of the expected 'Observation rate' of the incoming streams. When a continuous problem is detected, BNC can inform its operator about this event through an advisory note.</p>"));
348 _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>"));
349 _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>"));
350 _logFileLineEdit->setWhatsThis(tr("<p>Records of BNC's activities are shown in the 'Logs' section on the bottom of this window. They can be saved into a file when a valid path is specified in the 'Logfile (full path)' field.</p><p>The logfile name will automatically be extended by a string '_YYMMDD' carrying the current date."));
351 _adviseScriptLineEdit->setWhatsThis(tr("<p>Specify the full path to a script or batch file to handle advisory notes generated in the event of corrupted streams or stream outages. The affected mountpoint and one of the comments 'Begin_Outage', 'End_Outage', 'Begin_Corrupted', or 'End_Corrupted' are passed on to the script as command line parameters.</p><p>The script may have the task to send the advisory notes by email to BNC's operator and/or to the affected stream provider. An empty option field (default) or invalid path means that you don't want to use this option.</p>"));
352 _perfIntrComboBox->setWhatsThis(tr("<p>BNC can average latencies per stream over a certain period of GPS time. The resulting mean latencies are recorded in the 'Logs' section 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>"));
353 _mountPointsTable->setWhatsThis(tr("<p>Streams selected for retrieval are listed in the 'Streams' section. Clicking on 'Add Stream' button will open a window that allows the user to select data streams from an NTRIP broadcaster according to their mountpoints. To remove a stream from the 'Streams' list, highlight it by clicking on it and hit the 'Delete Stream' button. You can also remove multiple streams by highlighting them using +Shift and +Ctrl.</p><p>BNC automatically allocates one of its internal decoders to a stream based on the stream's 'format' as given in the sourcetable. BNC allows users to change this selection by editing the decoder string. Double click on the 'decoder' field, enter your preferred decoder and then hit Enter. The accepted decoder strings are 'RTCM_2.x', 'RTCM_3.x', and 'RTIGS'.</p><p>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'.</p><p>BNC can also retrieve streams from virtual reference stations (VRS). VRS streams are indicated by a 'yes' in the 'nmea' column. To initiate these streams, the approximate latitude/longitude rover position is sent to the NTRIP broadcaster. The default values can be change according to your requirement. Double click on 'lat' and 'long' fields, enter the values you wish to send and then hit Enter.</p>"));
354 _log->setWhatsThis(tr("Records of BNC's activities are shown in the 'Logs' section. 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."));
355 _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."));
356 _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."));
357 _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>"));
358 _scanRTCMCheckBox->setWhatsThis(tr("<p>Tick 'Scan RTCM' to log the numbers of incomming message types as well as contained antenna coordinates, antenna heigt, and antenna descriptor.</p>"));
359 _serialMountPointLineEdit->setWhatsThis(tr("<p>Enter a 'Mountpoint' to forward the corresponding stream to a serial connected receiver.</p>"));
360 _serialPortNameLineEdit->setWhatsThis(tr("<p>Enter the serial 'Port name' selected for communication with your serial connected receiver. Valid port names are</p><pre>Windows: COM1, COM2<br>Linux: /dev/ttyS0, /dev/ttyS1<br>FreeBSD: /dev/ttyd0, /dev/ttyd1<br>Digital Unix: /dev/tty01, /dev/tty02<br>HP-UX: /dev/tty1p0, /dev/tty2p0<br>SGI/IRIX: /dev/ttyf1, /dev/ttyf2<br>SunOS/Solaris: /dev/ttya, /dev/ttyb</pre><p>Note that you must plug a serial cable in the port defined here before you start BNC.</p>"));
361 _serialBaudRateComboBox->setWhatsThis(tr("<p>Select a 'Baud rate' for the serial output link.</p><p>Note that your selection must equal the baud rate configured to the serial connected receiver. Note further that using a high baud rate is recommended.</p>"));
362 _serialParityComboBox->setWhatsThis(tr("<p>Select the 'Parity' for the serial output link.</p><p>Note that your selection must equal the parity selection configured to the serial connected receiver. Note further that parity is often set to 'NONE'.</p>"));
363 _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>"));
364 _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>"));
365 _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>"));
366 _serialAutoNMEAComboBox->setWhatsThis(tr("<p>Select 'Auto' to automatically forward NMEA-GGA messages coming from your serial connected receiver to the NTRIP broadcaster and/or save them in a file.</p><p>Select 'Manual' only when handling a VRS stream and your serial connected receiver doesn't generate NMEA-GGA messages.</p>"));
367 _serialFileNMEALineEdit->setWhatsThis(tr("<p>Specify the full path to a file where NMEA messages coming from your serial connected receiver are saved.</p>"));
368 _serialHeightNMEALineEdit->setWhatsThis(tr("<p>Specify an approximate 'Height' above mean sea level in meter for your VRS to simulate an inital NMEA-GGA message.</p><p>The setting of this option is ignored in case of streams coming from physical reference stations.</p>"));
369
370 // Canvas with Editable Fields
371 // ---------------------------
372 _canvas = new QWidget;
373 setCentralWidget(_canvas);
374
375 _aogroup = new QTabWidget();
376 QWidget* pgroup = new QWidget();
377 QWidget* ggroup = new QWidget();
378 QWidget* sgroup = new QWidget();
379 QWidget* egroup = new QWidget();
380 QWidget* agroup = new QWidget();
381 QWidget* cgroup = new QWidget();
382 QWidget* ogroup = new QWidget();
383 QWidget* rgroup = new QWidget();
384 QWidget* sergroup = new QWidget();
385 _aogroup->addTab(pgroup,tr("Proxy"));
386 _aogroup->addTab(ggroup,tr("General"));
387 _aogroup->addTab(ogroup,tr("RINEX Observations"));
388 _aogroup->addTab(egroup,tr("RINEX Ephemeris"));
389 _aogroup->addTab(cgroup,tr("Broadcast Corrections"));
390 _aogroup->addTab(sgroup,tr("Feed Engine"));
391 _aogroup->addTab(sergroup,tr("Serial Output"));
392 _aogroup->addTab(agroup,tr("Outages"));
393 _aogroup->addTab(rgroup,tr("Miscellaneous"));
394
395 _loggroup = new QTabWidget();
396 QWidget* log1group = new QWidget();
397 QWidget* log2group = new QWidget();
398 _loggroup->addTab(log1group,tr("Log"));
399 _loggroup->addTab(log2group,tr("Status"));
400
401 // log Tab
402 // -------
403 QGridLayout* log1Layout = new QGridLayout;
404 log1Layout->addWidget(_log, 0,0);
405 log1group->setLayout(log1Layout);
406
407 // Status Tab
408 // ----------
409 QGridLayout* log2Layout = new QGridLayout;
410 log2Layout->addWidget(_bncFigure, 0,0);
411 log2group->setLayout(log2Layout);
412
413 // Proxy Tab
414 // ---------
415 QGridLayout* pLayout = new QGridLayout;
416 pLayout->setColumnMinimumWidth(0,13*ww);
417 _proxyPortLineEdit->setMaximumWidth(9*ww);
418
419 pLayout->addWidget(new QLabel("Proxy host"), 0, 0);
420 pLayout->addWidget(_proxyHostLineEdit, 0, 1, 1,10);
421 pLayout->addWidget(new QLabel("Proxy port"), 1, 0);
422 pLayout->addWidget(_proxyPortLineEdit, 1, 1);
423 pLayout->addWidget(new QLabel("Settings for the proxy in protected networks, leave boxes blank if none."),2, 0, 1, 50, Qt::AlignLeft);
424 pLayout->addWidget(new QLabel(" "),3,0);
425 pLayout->addWidget(new QLabel(" "),4,0);
426 pLayout->addWidget(new QLabel(" "),5,0);
427 pgroup->setLayout(pLayout);
428
429
430 connect(_proxyHostLineEdit, SIGNAL(textChanged(const QString &)),
431 this, SLOT(bncText(const QString &)));
432 if (_proxyHostLineEdit->text().isEmpty()) {
433 _proxyPortLineEdit->setStyleSheet("background-color: lightGray");
434 _proxyPortLineEdit->setEnabled(false);
435 }
436
437 // General Tab
438 // -----------
439 QGridLayout* gLayout = new QGridLayout;
440 gLayout->setColumnMinimumWidth(0,14*ww);
441 _onTheFlyComboBox->setMaximumWidth(9*ww);
442
443 gLayout->addWidget(new QLabel("Logfile (full path)"), 0, 0);
444 gLayout->addWidget(_logFileLineEdit, 0, 1, 1,30); // 1
445 gLayout->addWidget(new QLabel("Append files"), 1, 0);
446 gLayout->addWidget(_rnxAppendCheckBox, 1, 1);
447 gLayout->addWidget(new QLabel("Reread configuration"), 2, 0);
448 gLayout->addWidget(_onTheFlyComboBox, 2, 1);
449 gLayout->addWidget(new QLabel("Auto start"), 3, 0);
450 gLayout->addWidget(_autoStartCheckBox, 3, 1);
451 gLayout->addWidget(new QLabel("General settings for logfile, file handling, configuration on-the-fly, and auto-start."),4, 0, 1, 50, Qt::AlignLeft); // 2
452 gLayout->addWidget(new QLabel(" "),5,0);
453 ggroup->setLayout(gLayout);
454
455 // RINEX Observations
456 // ------------------
457 QGridLayout* oLayout = new QGridLayout;
458 oLayout->setColumnMinimumWidth(0,14*ww);
459 _rnxIntrComboBox->setMaximumWidth(9*ww);
460 _rnxSamplSpinBox->setMaximumWidth(9*ww);
461
462 oLayout->addWidget(new QLabel("Directory"), 0, 0);
463 oLayout->addWidget(_rnxPathLineEdit, 0, 1,1,24);
464 oLayout->addWidget(new QLabel("Interval"), 1, 0);
465 oLayout->addWidget(_rnxIntrComboBox, 1, 1);
466 oLayout->addWidget(new QLabel(" Sampling"), 1, 2, Qt::AlignRight);
467 oLayout->addWidget(_rnxSamplSpinBox, 1, 3, Qt::AlignLeft);
468 oLayout->addWidget(new QLabel("Skeleton extension"), 2, 0);
469 oLayout->addWidget(_rnxSkelLineEdit, 2, 1,1,1, Qt::AlignLeft);
470 oLayout->addWidget(new QLabel("Script (full path)"), 3, 0);
471 oLayout->addWidget(_rnxScrpLineEdit, 3, 1,1,24);
472 oLayout->addWidget(new QLabel("Version 3"), 4, 0);
473 oLayout->addWidget(_rnxV3CheckBox, 4, 1);
474 oLayout->addWidget(new QLabel("Saving RINEX observation files."),5,0,1,50, Qt::AlignLeft);
475 ogroup->setLayout(oLayout);
476
477 connect(_rnxPathLineEdit, SIGNAL(textChanged(const QString &)),
478 this, SLOT(bncText(const QString &)));
479 if (_rnxPathLineEdit->text().isEmpty()) {
480 _rnxIntrComboBox->setStyleSheet("background-color: lightGray");
481 _rnxSamplSpinBox->setStyleSheet("background-color: lightGray");
482 _rnxSkelLineEdit->setStyleSheet("background-color: lightGray");
483 _rnxScrpLineEdit->setStyleSheet("background-color: lightGray");
484 palette.setColor(_rnxV3CheckBox->backgroundRole(), lightGray);
485 _rnxV3CheckBox->setPalette(palette);
486 _rnxIntrComboBox->setEnabled(false);
487 _rnxSamplSpinBox->setEnabled(false);
488 _rnxSkelLineEdit->setEnabled(false);
489 _rnxScrpLineEdit->setEnabled(false);
490 _rnxV3CheckBox->setEnabled(false);
491 }
492
493 // RINEX Ephemeris
494 // ---------------
495 QGridLayout* eLayout = new QGridLayout;
496 eLayout->setColumnMinimumWidth(0,14*ww);
497 _ephIntrComboBox->setMaximumWidth(9*ww);
498 _outEphPortLineEdit->setMaximumWidth(9*ww);
499
500 eLayout->addWidget(new QLabel("Directory"), 0, 0);
501 eLayout->addWidget(_ephPathLineEdit, 0, 1, 1,30);
502 eLayout->addWidget(new QLabel("Interval"), 1, 0);
503 eLayout->addWidget(_ephIntrComboBox, 1, 1);
504 eLayout->addWidget(new QLabel("Port"), 2, 0);
505 eLayout->addWidget(_outEphPortLineEdit, 2, 1);
506 eLayout->addWidget(new QLabel("Version 3"), 3, 0);
507 eLayout->addWidget(_ephV3CheckBox, 3, 1);
508 eLayout->addWidget(new QLabel("Saving RINEX ephemeris files and ephemeris output through IP port."),4,0,1,50,Qt::AlignLeft);
509 eLayout->addWidget(new QLabel(" "),5,0);
510 egroup->setLayout(eLayout);
511
512 connect(_ephPathLineEdit, SIGNAL(textChanged(const QString &)),
513 this, SLOT(bncText(const QString &)));
514 connect(_outEphPortLineEdit, SIGNAL(textChanged(const QString &)),
515 this, SLOT(bncText(const QString &)));
516
517 if (_ephPathLineEdit->text().isEmpty() && _outEphPortLineEdit->text().isEmpty()) {
518 _ephIntrComboBox->setStyleSheet("background-color: lightGray");
519 palette.setColor(_ephV3CheckBox->backgroundRole(), lightGray);
520 _ephV3CheckBox->setPalette(palette);
521 _ephIntrComboBox->setEnabled(false);
522 _ephV3CheckBox->setEnabled(false);
523 }
524 if (_ephPathLineEdit->text().isEmpty() && !_outEphPortLineEdit->text().isEmpty()) {
525 _ephIntrComboBox->setStyleSheet("background-color: lightGray");
526 _ephIntrComboBox->setEnabled(false);
527 }
528
529 // Broadcast Corrections
530 // ---------------------
531 QGridLayout* cLayout = new QGridLayout;
532 cLayout->setColumnMinimumWidth(0,14*ww);
533 _corrIntrComboBox->setMaximumWidth(9*ww);
534 _corrPortLineEdit->setMaximumWidth(9*ww);
535 _corrTimeSpinBox->setMaximumWidth(9*ww);
536
537 cLayout->addWidget(new QLabel("Directory"), 0, 0);
538 cLayout->addWidget(_corrPathLineEdit, 0, 1,1,20);
539 cLayout->addWidget(new QLabel("Interval"), 1, 0);
540 cLayout->addWidget(_corrIntrComboBox, 1, 1);
541 cLayout->addWidget(new QLabel("Port"), 2, 0);
542 cLayout->addWidget(_corrPortLineEdit, 2, 1);
543 cLayout->addWidget(new QLabel(" Wait for full epoch"), 2, 2, Qt::AlignRight);
544 cLayout->addWidget(_corrTimeSpinBox, 2, 3, Qt::AlignLeft);
545 cLayout->addWidget(new QLabel("Saving Broadcast Ephemeris correction files and correction output through IP port."),3,0,1,50);
546 cLayout->addWidget(new QLabel(" "),4,0);
547 cLayout->addWidget(new QLabel(" "),5,0);
548 cgroup->setLayout(cLayout);
549
550 connect(_corrPathLineEdit, SIGNAL(textChanged(const QString &)),
551 this, SLOT(bncText(const QString &)));
552 connect(_corrPortLineEdit, SIGNAL(textChanged(const QString &)),
553 this, SLOT(bncText(const QString &)));
554 if (_corrPathLineEdit->text().isEmpty()) {
555 _corrIntrComboBox->setStyleSheet("background-color: lightGray");
556 _corrIntrComboBox->setEnabled(false);
557 }
558 if (_corrPortLineEdit->text().isEmpty()) {
559 _corrTimeSpinBox->setStyleSheet("background-color: lightGray");
560 _corrTimeSpinBox->setEnabled(false);
561 }
562
563 // Feed Engine
564 // -----------
565 QGridLayout* sLayout = new QGridLayout;
566 sLayout->setColumnMinimumWidth(0,14*ww);
567 _outPortLineEdit->setMaximumWidth(9*ww);
568 _waitTimeSpinBox->setMaximumWidth(9*ww);
569 _binSamplSpinBox->setMaximumWidth(9*ww);
570 _outUPortLineEdit->setMaximumWidth(9*ww);
571
572 sLayout->addWidget(new QLabel("Port"), 0, 0);
573 sLayout->addWidget(_outPortLineEdit, 0, 1);
574 sLayout->addWidget(new QLabel("Wait for full epoch"), 0, 2, Qt::AlignRight);
575 sLayout->addWidget(_waitTimeSpinBox, 0, 3, Qt::AlignLeft);
576 sLayout->addWidget(new QLabel("Sampling"), 1, 0);
577 sLayout->addWidget(_binSamplSpinBox, 1, 1, Qt::AlignLeft);
578 sLayout->addWidget(new QLabel("File (full path)"), 2, 0);
579 sLayout->addWidget(_outFileLineEdit, 2, 1, 1, 20);
580 sLayout->addWidget(new QLabel("Port (unsynchronized)"), 3, 0);
581 sLayout->addWidget(_outUPortLineEdit, 3, 1);
582 sLayout->addWidget(new QLabel("Output decoded observations in a binary format to feed a real-time GNSS network engine."),4,0,1,50);
583 sLayout->addWidget(new QLabel(" "),5,0);
584 sgroup->setLayout(sLayout);
585
586 connect(_outPortLineEdit, SIGNAL(textChanged(const QString &)),
587 this, SLOT(bncText(const QString &)));
588 connect(_outFileLineEdit, SIGNAL(textChanged(const QString &)),
589 this, SLOT(bncText(const QString &)));
590 if (_outPortLineEdit->text().isEmpty() && _outFileLineEdit->text().isEmpty()) {
591 _waitTimeSpinBox->setStyleSheet("background-color: lightGray");
592 _binSamplSpinBox->setStyleSheet("background-color: lightGray");
593 _waitTimeSpinBox->setEnabled(false);
594 _binSamplSpinBox->setEnabled(false);
595 }
596
597 // Serial Output
598 // -------------
599 QGridLayout* serLayout = new QGridLayout;
600 serLayout->setColumnMinimumWidth(0,14*ww);
601 _serialBaudRateComboBox->setMaximumWidth(9*ww);
602 _serialFlowControlComboBox->setMaximumWidth(11*ww);
603 _serialDataBitsComboBox->setMaximumWidth(5*ww);
604 _serialParityComboBox->setMaximumWidth(9*ww);
605 _serialStopBitsComboBox->setMaximumWidth(5*ww);
606 _serialAutoNMEAComboBox->setMaximumWidth(9*ww);
607 _serialHeightNMEALineEdit->setMaximumWidth(8*ww);
608
609 serLayout->addWidget(new QLabel("Mountpoint"), 0,0, Qt::AlignLeft);
610 serLayout->addWidget(_serialMountPointLineEdit, 0,1,1,2);
611 serLayout->addWidget(new QLabel("Port name"), 1,0, Qt::AlignLeft);
612 serLayout->addWidget(_serialPortNameLineEdit, 1,1,1,2);
613 serLayout->addWidget(new QLabel("Baud rate"), 2,0, Qt::AlignLeft);
614 serLayout->addWidget(_serialBaudRateComboBox, 2,1);
615 serLayout->addWidget(new QLabel("Flow control"), 2,2, Qt::AlignRight);
616 serLayout->addWidget(_serialFlowControlComboBox, 2,3);
617 serLayout->addWidget(new QLabel("Data bits"), 3,0, Qt::AlignLeft);
618 serLayout->addWidget(_serialDataBitsComboBox, 3,1);
619 serLayout->addWidget(new QLabel("Parity"), 3,2, Qt::AlignRight);
620 serLayout->addWidget(_serialParityComboBox, 3,3);
621 serLayout->addWidget(new QLabel(" Stop bits"), 3,4, Qt::AlignRight);
622 serLayout->addWidget(_serialStopBitsComboBox, 3,5);
623 serLayout->addWidget(new QLabel("NMEA"), 4,0);
624 serLayout->addWidget(_serialAutoNMEAComboBox, 4,1);
625 serLayout->addWidget(new QLabel(" File (full path)"), 4,2, Qt::AlignRight);
626 serLayout->addWidget(_serialFileNMEALineEdit, 4,3,1,15);
627 serLayout->addWidget(new QLabel("Height"), 4,20, Qt::AlignRight);
628 serLayout->addWidget(_serialHeightNMEALineEdit, 4,21,1,11);
629 serLayout->addWidget(new QLabel("Port settings to feed a serial connected receiver."),5,0,1,30);
630
631 connect(_serialMountPointLineEdit, SIGNAL(textChanged(const QString &)),
632 this, SLOT(bncText(const QString &)));
633 connect(_serialAutoNMEAComboBox, SIGNAL(currentIndexChanged(const QString &)),
634 this, SLOT(bncText(const QString)));
635 if (_serialMountPointLineEdit->text().isEmpty()) {
636 _serialPortNameLineEdit->setStyleSheet("background-color: lightGray");
637 _serialBaudRateComboBox->setStyleSheet("background-color: lightGray");
638 _serialParityComboBox->setStyleSheet("background-color: lightGray");
639 _serialDataBitsComboBox->setStyleSheet("background-color: lightGray");
640 _serialStopBitsComboBox->setStyleSheet("background-color: lightGray");
641 _serialFlowControlComboBox->setStyleSheet("background-color: lightGray");
642 _serialAutoNMEAComboBox->setStyleSheet("background-color: lightGray");
643 _serialFileNMEALineEdit->setStyleSheet("background-color: lightGray");
644 _serialHeightNMEALineEdit->setStyleSheet("background-color: lightGray");
645 _serialPortNameLineEdit->setEnabled(false);
646 _serialBaudRateComboBox->setEnabled(false);
647 _serialParityComboBox->setEnabled(false);
648 _serialDataBitsComboBox->setEnabled(false);
649 _serialStopBitsComboBox->setEnabled(false);
650 _serialFlowControlComboBox->setEnabled(false);
651 _serialAutoNMEAComboBox->setEnabled(false);
652 _serialFileNMEALineEdit->setEnabled(false);
653 _serialHeightNMEALineEdit->setEnabled(false);
654 } else {
655 if (_serialAutoNMEAComboBox->currentText() == "Auto" ) {
656 _serialHeightNMEALineEdit->setStyleSheet("background-color: lightGray");
657 _serialHeightNMEALineEdit->setEnabled(false);
658 }
659 if (_serialAutoNMEAComboBox->currentText() != "Auto" ) {
660 _serialFileNMEALineEdit->setStyleSheet("background-color: lightGray");
661 _serialFileNMEALineEdit->setEnabled(false);
662 }
663 }
664
665 sergroup->setLayout(serLayout);
666
667 // Outages
668 // -------
669 QGridLayout* aLayout = new QGridLayout;
670 aLayout->setColumnMinimumWidth(0,14*ww);
671 _obsRateComboBox->setMaximumWidth(9*ww);
672 _adviseFailSpinBox->setMaximumWidth(9*ww);
673 _adviseRecoSpinBox->setMaximumWidth(9*ww);
674
675 aLayout->addWidget(new QLabel("Observation rate"), 0, 0);
676 aLayout->addWidget(_obsRateComboBox, 0, 1);
677 aLayout->addWidget(new QLabel("Failure threshold"), 1, 0);
678 aLayout->addWidget(_adviseFailSpinBox, 1, 1);
679 aLayout->addWidget(new QLabel("Recovery threshold"), 2, 0);
680 aLayout->addWidget(_adviseRecoSpinBox, 2, 1);
681 aLayout->addWidget(new QLabel("Script (full path)"), 3, 0);
682 aLayout->addWidget(_adviseScriptLineEdit, 3, 1,1,30);
683 aLayout->addWidget(new QLabel("Failure and recovery reports, advisory notes."),5,0,1,50,Qt::AlignLeft);
684 agroup->setLayout(aLayout);
685
686 connect(_obsRateComboBox, SIGNAL(currentIndexChanged(const QString &)),
687 this, SLOT(bncText(const QString)));
688 if (_obsRateComboBox->currentText().isEmpty()) {
689 _adviseFailSpinBox->setStyleSheet("background-color: lightGray");
690 _adviseRecoSpinBox->setStyleSheet("background-color: lightGray");
691 _adviseScriptLineEdit->setStyleSheet("background-color: lightGray");
692 _adviseFailSpinBox->setEnabled(false);
693 _adviseRecoSpinBox->setEnabled(false);
694 _adviseScriptLineEdit->setEnabled(false);
695 }
696
697 // Miscellaneous
698 // -------------
699 QGridLayout* rLayout = new QGridLayout;
700 rLayout->setColumnMinimumWidth(0,14*ww);
701 _perfIntrComboBox->setMaximumWidth(9*ww);
702
703 rLayout->addWidget(new QLabel("Mountpoint"), 0, 0);
704 rLayout->addWidget(_miscMountLineEdit, 0, 1, 1,7);
705 rLayout->addWidget(new QLabel("Log latency"), 1, 0);
706 rLayout->addWidget(_perfIntrComboBox, 1, 1);
707 rLayout->addWidget(new QLabel("Scan RTCM"), 2, 0);
708 rLayout->addWidget(_scanRTCMCheckBox, 2, 1);
709 rLayout->addWidget(new QLabel("Log latencies or scan RTCM streams for numbers of message types and antenna information."),3, 0,1,30);
710 rLayout->addWidget(new QLabel(" "), 4, 0);
711 rLayout->addWidget(new QLabel(" "), 5, 0);
712 rgroup->setLayout(rLayout);
713
714 connect(_miscMountLineEdit, SIGNAL(textChanged(const QString &)),
715 this, SLOT(bncText(const QString &)));
716 if (_miscMountLineEdit->text().isEmpty()) {
717 _perfIntrComboBox->setStyleSheet("background-color: lightGray");
718 palette.setColor(_scanRTCMCheckBox->backgroundRole(), lightGray);
719 _scanRTCMCheckBox->setPalette(palette);
720 _perfIntrComboBox->setEnabled(false);
721 _scanRTCMCheckBox->setEnabled(false);
722 }
723
724 // Main Layout
725 // -----------
726
727 QGridLayout* mLayout = new QGridLayout;
728 _aogroup->setCurrentIndex(settings.value("startTab").toInt());
729 mLayout->addWidget(_aogroup, 0,0);
730 mLayout->addWidget(_mountPointsTable, 1,0);
731 mLayout->addWidget(_loggroup, 2,0);
732
733 _canvas->setLayout(mLayout);
734
735 // Auto start
736 // ----------
737 if ( Qt::CheckState(settings.value("autoStart").toInt()) == Qt::Checked) {
738 slotGetData();
739 }
740}
741
742// Destructor
743////////////////////////////////////////////////////////////////////////////
744bncWindow::~bncWindow() {
745 delete _caster;
746}
747
748//
749////////////////////////////////////////////////////////////////////////////
750void bncWindow::populateMountPointsTable() {
751
752 for (int iRow = _mountPointsTable->rowCount()-1; iRow >=0; iRow--) {
753 _mountPointsTable->removeRow(iRow);
754 }
755
756 bncSettings settings;
757
758 QListIterator<QString> it(settings.value("mountPoints").toStringList());
759 if (!it.hasNext()) {
760 _actGetData->setEnabled(false);
761 }
762 int iRow = 0;
763 while (it.hasNext()) {
764 QStringList hlp = it.next().split(" ");
765 if (hlp.size() < 5) continue;
766 _mountPointsTable->insertRow(iRow);
767
768 QUrl url(hlp[0]);
769
770 QString fullPath = url.host() + QString(":%1").arg(url.port()) + url.path();
771 QString format(hlp[1]); QString latitude(hlp[2]); QString longitude(hlp[3]);
772 QString nmea(hlp[4]);
773 if (hlp[5] == "S") {
774 fullPath = hlp[0].replace(0,2,"");
775 }
776 QString ntripVersion = "1";
777 if (hlp.size() >= 6) {
778 ntripVersion = (hlp[5]);
779 }
780
781 QTableWidgetItem* it;
782 it = new QTableWidgetItem(url.userInfo());
783 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
784 _mountPointsTable->setItem(iRow, 0, it);
785
786 it = new QTableWidgetItem(fullPath);
787 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
788 _mountPointsTable->setItem(iRow, 1, it);
789
790 it = new QTableWidgetItem(format);
791 _mountPointsTable->setItem(iRow, 2, it);
792
793 if (nmea == "yes") {
794 it = new QTableWidgetItem(latitude);
795 _mountPointsTable->setItem(iRow, 3, it);
796 it = new QTableWidgetItem(longitude);
797 _mountPointsTable->setItem(iRow, 4, it);
798 } else {
799 it = new QTableWidgetItem(latitude);
800 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
801 _mountPointsTable->setItem(iRow, 3, it);
802 it = new QTableWidgetItem(longitude);
803 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
804 _mountPointsTable->setItem(iRow, 4, it);
805 }
806
807 it = new QTableWidgetItem(nmea);
808 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
809 _mountPointsTable->setItem(iRow, 5, it);
810
811 it = new QTableWidgetItem(ntripVersion);
812 //// it->setFlags(it->flags() & ~Qt::ItemIsEditable);
813 _mountPointsTable->setItem(iRow, 6, it);
814
815 bncTableItem* bncIt = new bncTableItem();
816 bncIt->setFlags(bncIt->flags() & ~Qt::ItemIsEditable);
817 _mountPointsTable->setItem(iRow, 7, bncIt);
818
819 iRow++;
820 }
821
822 _mountPointsTable->sortItems(1);
823}
824
825// Retrieve Table
826////////////////////////////////////////////////////////////////////////////
827void bncWindow::slotAddMountPoints() {
828
829 bncSettings settings;
830 QString proxyHost = settings.value("proxyHost").toString();
831 int proxyPort = settings.value("proxyPort").toInt();
832 if (proxyHost != _proxyHostLineEdit->text() ||
833 proxyPort != _proxyPortLineEdit->text().toInt()) {
834 int iRet = QMessageBox::question(this, "Question", "Proxy options "
835 "changed. Use the new ones?",
836 QMessageBox::Yes, QMessageBox::No,
837 QMessageBox::NoButton);
838 if (iRet == QMessageBox::Yes) {
839 settings.setValue("proxyHost", _proxyHostLineEdit->text());
840 settings.setValue("proxyPort", _proxyPortLineEdit->text());
841 settings.sync();
842 }
843 }
844
845 QMessageBox msgBox;
846 msgBox.setIcon(QMessageBox::Question);
847 msgBox.setWindowTitle("Add Stream");
848 msgBox.setText("Add stream(s) coming from:");
849
850 QPushButton* buttonNtrip = msgBox.addButton(tr("Caster"), QMessageBox::ActionRole);
851 QPushButton* buttonIP = msgBox.addButton(tr("TCP/IP port"), QMessageBox::ActionRole);
852 QPushButton* buttonUDP = msgBox.addButton(tr("UDP port"), QMessageBox::ActionRole);
853 QPushButton* buttonSerial = msgBox.addButton(tr("Serial port"), QMessageBox::ActionRole);
854 QPushButton* buttonCancel = msgBox.addButton(tr("Cancel"), QMessageBox::ActionRole);
855
856 msgBox.exec();
857
858 if (msgBox.clickedButton() == buttonNtrip) {
859 bncTableDlg* dlg = new bncTableDlg(this);
860 dlg->move(this->pos().x()+50, this->pos().y()+50);
861 connect(dlg, SIGNAL(newMountPoints(QStringList*)),
862 this, SLOT(slotNewMountPoints(QStringList*)));
863 dlg->exec();
864 delete dlg;
865 } else if (msgBox.clickedButton() == buttonIP) {
866 bncIpPort* ipp = new bncIpPort(this);
867 connect(ipp, SIGNAL(newMountPoints(QStringList*)),
868 this, SLOT(slotNewMountPoints(QStringList*)));
869 ipp->exec();
870 delete ipp;
871 } else if (msgBox.clickedButton() == buttonUDP) {
872 bncUdpPort* udp = new bncUdpPort(this);
873 connect(udp, SIGNAL(newMountPoints(QStringList*)),
874 this, SLOT(slotNewMountPoints(QStringList*)));
875 udp->exec();
876 delete udp;
877 } else if (msgBox.clickedButton() == buttonSerial) {
878 bncSerialPort* sep = new bncSerialPort(this);
879 connect(sep, SIGNAL(newMountPoints(QStringList*)),
880 this, SLOT(slotNewMountPoints(QStringList*)));
881 sep->exec();
882 delete sep;
883 } else if (msgBox.clickedButton() == buttonCancel) {
884 // Cancel
885 }
886}
887
888// Delete Selected Mount Points
889////////////////////////////////////////////////////////////////////////////
890void bncWindow::slotDeleteMountPoints() {
891
892 int nRows = _mountPointsTable->rowCount();
893 bool flg[nRows];
894 for (int iRow = 0; iRow < nRows; iRow++) {
895 if (_mountPointsTable->isItemSelected(_mountPointsTable->item(iRow,1))) {
896 flg[iRow] = true;
897 }
898 else {
899 flg[iRow] = false;
900 }
901 }
902 for (int iRow = nRows-1; iRow >= 0; iRow--) {
903 if (flg[iRow]) {
904 _mountPointsTable->removeRow(iRow);
905 }
906 }
907 _actDeleteMountPoints->setEnabled(false);
908
909 if (_mountPointsTable->rowCount() == 0) {
910 _actGetData->setEnabled(false);
911 }
912}
913
914// New Mount Points Selected
915////////////////////////////////////////////////////////////////////////////
916void bncWindow::slotNewMountPoints(QStringList* mountPoints) {
917 int iRow = 0;
918 QListIterator<QString> it(*mountPoints);
919 while (it.hasNext()) {
920 QStringList hlp = it.next().split(" ");
921 QUrl url(hlp[0]);
922 QString fullPath = url.host() + QString(":%1").arg(url.port()) + url.path();
923 QString format(hlp[1]); QString latitude(hlp[2]); QString longitude(hlp[3]);
924 QString nmea(hlp[4]);
925 if (hlp[5] == "S") {
926 fullPath = hlp[0].replace(0,2,"");
927 }
928 QString ntripVersion = "1";
929 if (hlp.size() >= 6) {
930 ntripVersion = (hlp[5]);
931 }
932
933 _mountPointsTable->insertRow(iRow);
934
935 QTableWidgetItem* it;
936 it = new QTableWidgetItem(url.userInfo());
937 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
938 _mountPointsTable->setItem(iRow, 0, it);
939
940 it = new QTableWidgetItem(fullPath);
941 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
942 _mountPointsTable->setItem(iRow, 1, it);
943
944 it = new QTableWidgetItem(format);
945 _mountPointsTable->setItem(iRow, 2, it);
946
947 if (nmea == "yes") {
948 it = new QTableWidgetItem(latitude);
949 _mountPointsTable->setItem(iRow, 3, it);
950 it = new QTableWidgetItem(longitude);
951 _mountPointsTable->setItem(iRow, 4, it);
952 } else {
953 it = new QTableWidgetItem(latitude);
954 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
955 _mountPointsTable->setItem(iRow, 3, it);
956 it = new QTableWidgetItem(longitude);
957 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
958 _mountPointsTable->setItem(iRow, 4, it);
959 }
960
961 it = new QTableWidgetItem(nmea);
962 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
963 _mountPointsTable->setItem(iRow, 5, it);
964
965 it = new QTableWidgetItem(ntripVersion);
966 it->setFlags(it->flags() & ~Qt::ItemIsEditable);
967 _mountPointsTable->setItem(iRow, 6, it);
968
969 bncTableItem* bncIt = new bncTableItem();
970 _mountPointsTable->setItem(iRow, 7, bncIt);
971
972 iRow++;
973 }
974 _mountPointsTable->hideColumn(0);
975 _mountPointsTable->sortItems(1);
976 if (mountPoints->count() > 0 && !_actStop->isEnabled()) {
977 _actGetData->setEnabled(true);
978 }
979 delete mountPoints;
980}
981
982// Save Options
983////////////////////////////////////////////////////////////////////////////
984void bncWindow::slotSaveOptions() {
985
986 QStringList mountPoints;
987 for (int iRow = 0; iRow < _mountPointsTable->rowCount(); iRow++) {
988
989 if (_mountPointsTable->item(iRow, 6)->text() != "S") {
990 QUrl url( "//" + _mountPointsTable->item(iRow, 0)->text() +
991 "@" + _mountPointsTable->item(iRow, 1)->text() );
992
993 mountPoints.append(url.toString() + " " +
994 _mountPointsTable->item(iRow, 2)->text()
995 + " " + _mountPointsTable->item(iRow, 3)->text()
996 + " " + _mountPointsTable->item(iRow, 4)->text()
997 + " " + _mountPointsTable->item(iRow, 5)->text()
998 + " " + _mountPointsTable->item(iRow, 6)->text());
999 } else {
1000 mountPoints.append(
1001 "//" + _mountPointsTable->item(iRow, 1)->text()
1002 + " " + _mountPointsTable->item(iRow, 2)->text()
1003 + " " + _mountPointsTable->item(iRow, 3)->text()
1004 + " " + _mountPointsTable->item(iRow, 4)->text()
1005 + " " + _mountPointsTable->item(iRow, 5)->text()
1006 + " " + _mountPointsTable->item(iRow, 6)->text());
1007 }
1008 }
1009
1010 bncSettings settings;
1011
1012 settings.setValue("adviseFail", _adviseFailSpinBox->value());
1013 settings.setValue("adviseReco", _adviseRecoSpinBox->value());
1014 settings.setValue("adviseScript",_adviseScriptLineEdit->text());
1015 settings.setValue("autoStart", _autoStartCheckBox->checkState());
1016 settings.setValue("binSampl", _binSamplSpinBox->value());
1017 settings.setValue("corrIntr", _corrIntrComboBox->currentText());
1018 settings.setValue("corrPath", _corrPathLineEdit->text());
1019 settings.setValue("corrPort", _corrPortLineEdit->text());
1020 settings.setValue("corrTime", _corrTimeSpinBox->value());
1021 settings.setValue("ephIntr", _ephIntrComboBox->currentText());
1022 settings.setValue("ephPath", _ephPathLineEdit->text());
1023 settings.setValue("ephV3", _ephV3CheckBox->checkState());
1024 settings.setValue("logFile", _logFileLineEdit->text());
1025 settings.setValue("miscMount", _miscMountLineEdit->text());
1026 settings.setValue("mountPoints", mountPoints);
1027 settings.setValue("obsRate", _obsRateComboBox->currentText());
1028 settings.setValue("onTheFlyInterval", _onTheFlyComboBox->currentText());
1029 settings.setValue("outEphPort", _outEphPortLineEdit->text());
1030 settings.setValue("outFile", _outFileLineEdit->text());
1031 settings.setValue("outPort", _outPortLineEdit->text());
1032 settings.setValue("outUPort", _outUPortLineEdit->text());
1033 settings.setValue("perfIntr", _perfIntrComboBox->currentText());
1034 settings.setValue("proxyHost", _proxyHostLineEdit->text());
1035 settings.setValue("proxyPort", _proxyPortLineEdit->text());
1036 settings.setValue("rnxAppend", _rnxAppendCheckBox->checkState());
1037 settings.setValue("rnxIntr", _rnxIntrComboBox->currentText());
1038 settings.setValue("rnxPath", _rnxPathLineEdit->text());
1039 settings.setValue("rnxSampl", _rnxSamplSpinBox->value());
1040 settings.setValue("rnxScript", _rnxScrpLineEdit->text());
1041 settings.setValue("rnxSkel", _rnxSkelLineEdit->text());
1042 settings.setValue("rnxV3", _rnxV3CheckBox->checkState());
1043 settings.setValue("scanRTCM", _scanRTCMCheckBox->checkState());
1044 settings.setValue("serialFileNMEA",_serialFileNMEALineEdit->text());
1045 settings.setValue("serialHeightNMEA",_serialHeightNMEALineEdit->text());
1046 settings.setValue("serialAutoNMEA", _serialAutoNMEAComboBox->currentText());
1047 settings.setValue("serialBaudRate", _serialBaudRateComboBox->currentText());
1048 settings.setValue("serialDataBits", _serialDataBitsComboBox->currentText());
1049 settings.setValue("serialMountPoint",_serialMountPointLineEdit->text());
1050 settings.setValue("serialParity", _serialParityComboBox->currentText());
1051 settings.setValue("serialPortName", _serialPortNameLineEdit->text());
1052 settings.setValue("serialStopBits", _serialStopBitsComboBox->currentText());
1053 settings.setValue("serialFlowControl",_serialFlowControlComboBox->currentText());
1054 settings.setValue("startTab", _aogroup->currentIndex());
1055 settings.setValue("waitTime", _waitTimeSpinBox->value());
1056
1057 if (_caster) {
1058 _caster->slotReadMountPoints();
1059 }
1060 settings.sync();
1061}
1062
1063// All get slots terminated
1064////////////////////////////////////////////////////////////////////////////
1065void bncWindow::slotGetThreadsFinished() {
1066 ((bncApp*)qApp)->slotMessage("All Get Threads Terminated", true);
1067 delete _caster; _caster = 0;
1068 _actGetData->setEnabled(true);
1069 _actStop->setEnabled(false);
1070}
1071
1072// Retrieve Data
1073////////////////////////////////////////////////////////////////////////////
1074void bncWindow::slotGetData() {
1075 slotSaveOptions();
1076
1077 _actDeleteMountPoints->setEnabled(false);
1078 _actGetData->setEnabled(false);
1079 _actStop->setEnabled(true);
1080
1081 _caster = new bncCaster(_outFileLineEdit->text(),
1082 _outPortLineEdit->text().toInt());
1083
1084 ((bncApp*)qApp)->setPort(_outEphPortLineEdit->text().toInt());
1085 ((bncApp*)qApp)->setPortCorr(_corrPortLineEdit->text().toInt());
1086
1087 connect(_caster, SIGNAL(getThreadsFinished()),
1088 this, SLOT(slotGetThreadsFinished()));
1089
1090 connect (_caster, SIGNAL(mountPointsRead(QList<bncGetThread*>)),
1091 this, SLOT(slotMountPointsRead(QList<bncGetThread*>)));
1092
1093 ((bncApp*)qApp)->slotMessage("============ Start BNC ============", true);
1094
1095 bncSettings settings;
1096
1097 QDir rnxdir(settings.value("rnxPath").toString());
1098 if (!rnxdir.exists()) ((bncApp*)qApp)->slotMessage("Cannot find RINEX Observations directory", true);
1099
1100 QString rnx_file = settings.value("rnxScript").toString();
1101 if ( !rnx_file.isEmpty() ) {
1102 QFile rnxfile(settings.value("rnxScript").toString());
1103 if (!rnxfile.exists()) ((bncApp*)qApp)->slotMessage("Cannot find RINEX Observations script", true);
1104 }
1105
1106 QDir ephdir(settings.value("ephPath").toString());
1107 if (!ephdir.exists()) ((bncApp*)qApp)->slotMessage("Cannot find RINEX Ephemeris directory", true);
1108
1109 QDir corrdir(settings.value("corrPath").toString());
1110 if (!corrdir.exists()) ((bncApp*)qApp)->slotMessage("Cannot find Broadcast Corrections directory", true);
1111
1112 QString advise_file = settings.value("adviseScript").toString();
1113 if ( !advise_file.isEmpty() ) {
1114 QFile advisefile(settings.value("adviseScript").toString());
1115 if (!advisefile.exists()) ((bncApp*)qApp)->slotMessage("Cannot find Outages script", true);
1116 }
1117
1118 _caster->slotReadMountPoints();
1119}
1120
1121// Retrieve Data
1122////////////////////////////////////////////////////////////////////////////
1123void bncWindow::slotStop() {
1124 int iRet = QMessageBox::question(this, "Stop", "Stop retrieving data?",
1125 QMessageBox::Yes, QMessageBox::No,
1126 QMessageBox::NoButton);
1127 if (iRet == QMessageBox::Yes) {
1128 delete _caster; _caster = 0;
1129 _actGetData->setEnabled(true);
1130 _actStop->setEnabled(false);
1131 }
1132}
1133
1134// Close Application gracefully
1135////////////////////////////////////////////////////////////////////////////
1136void bncWindow::closeEvent(QCloseEvent* event) {
1137
1138 int iRet = QMessageBox::question(this, "Close", "Save Options?",
1139 QMessageBox::Yes, QMessageBox::No,
1140 QMessageBox::Cancel);
1141
1142 if (iRet == QMessageBox::Cancel) {
1143 event->ignore();
1144 return;
1145 }
1146 else if (iRet == QMessageBox::Yes) {
1147 slotSaveOptions();
1148 }
1149
1150 QMainWindow::closeEvent(event);
1151}
1152
1153// User changed the selection of mountPoints
1154////////////////////////////////////////////////////////////////////////////
1155void bncWindow::slotSelectionChanged() {
1156 if (_mountPointsTable->selectedItems().isEmpty()) {
1157 _actDeleteMountPoints->setEnabled(false);
1158 }
1159 else {
1160 _actDeleteMountPoints->setEnabled(true);
1161 }
1162}
1163
1164// Display Program Messages
1165////////////////////////////////////////////////////////////////////////////
1166void bncWindow::slotWindowMessage(const QByteArray msg, bool showOnScreen) {
1167
1168#ifdef DEBUG_RTCM2_2021
1169 const int maxBufferSize = 1000;
1170#else
1171 const int maxBufferSize = 10000;
1172#endif
1173
1174 if (! showOnScreen ) {
1175 return;
1176 }
1177
1178 QString txt = _log->toPlainText() + "\n" +
1179 QDateTime::currentDateTime().toUTC().toString("yy-MM-dd hh:mm:ss ") + msg;
1180 _log->clear();
1181 _log->append(txt.right(maxBufferSize));
1182}
1183
1184// About Message
1185////////////////////////////////////////////////////////////////////////////
1186void bncWindow::slotAbout() {
1187 new bncAboutDlg(0);
1188}
1189
1190//Flowchart
1191////////////////////////////////////////////////////////////////////////////
1192void bncWindow::slotFlowchart() {
1193 new bncFlowchartDlg(0);
1194}
1195
1196// Help Window
1197////////////////////////////////////////////////////////////////////////////
1198void bncWindow::slotHelp() {
1199 QUrl url;
1200 url.setPath(":bnchelp.html");
1201 new bncHlpDlg(0, url);
1202}
1203
1204// Select Fonts
1205////////////////////////////////////////////////////////////////////////////
1206void bncWindow::slotFontSel() {
1207 bool ok;
1208 QFont newFont = QFontDialog::getFont(&ok, this->font(), this);
1209 if (ok) {
1210 bncSettings settings;
1211 settings.setValue("font", newFont.toString());
1212 QApplication::setFont(newFont);
1213 int ww = QFontMetrics(newFont).width('w');
1214 setMinimumSize(60*ww, 80*ww);
1215 resize(60*ww, 80*ww);
1216 }
1217}
1218
1219// Whats This Help
1220void bncWindow::slotWhatsThis() {
1221 QWhatsThis::enterWhatsThisMode();
1222}
1223
1224//
1225////////////////////////////////////////////////////////////////////////////
1226void bncWindow::slotMountPointsRead(QList<bncGetThread*> threads) {
1227 populateMountPointsTable();
1228 bncSettings settings;
1229 _binSamplSpinBox->setValue(settings.value("binSampl").toInt());
1230 _waitTimeSpinBox->setValue(settings.value("waitTime").toInt());
1231 QListIterator<bncGetThread*> iTh(threads);
1232 while (iTh.hasNext()) {
1233 bncGetThread* thread = iTh.next();
1234 for (int iRow = 0; iRow < _mountPointsTable->rowCount(); iRow++) {
1235 QUrl url( "//" + _mountPointsTable->item(iRow, 0)->text() +
1236 "@" + _mountPointsTable->item(iRow, 1)->text() );
1237 if (url == thread->mountPoint() &&
1238 _mountPointsTable->item(iRow, 3)->text() == thread->latitude() &&
1239 _mountPointsTable->item(iRow, 4)->text() == thread->longitude() ) {
1240 ((bncTableItem*) _mountPointsTable->item(iRow, 7))->setGetThread(thread);
1241 connect(thread, SIGNAL(newBytes(QByteArray, double)),
1242 _bncFigure, SLOT(slotNewData(QByteArray, double)));
1243
1244 break;
1245 }
1246 }
1247 }
1248}
1249
1250//
1251////////////////////////////////////////////////////////////////////////////
1252void bncWindow::CreateMenu() {
1253 // Create Menus
1254 // ------------
1255 _menuFile = menuBar()->addMenu(tr("&File"));
1256 _menuFile->addAction(_actFontSel);
1257 _menuFile->addSeparator();
1258 _menuFile->addAction(_actSaveOpt);
1259 _menuFile->addSeparator();
1260 _menuFile->addAction(_actQuit);
1261
1262 _menuHlp = menuBar()->addMenu(tr("&Help"));
1263 _menuHlp->addAction(_actHelp);
1264 _menuHlp->addAction(_actFlowchart);
1265 _menuHlp->addAction(_actAbout);
1266}
1267
1268// Toolbar
1269////////////////////////////////////////////////////////////////////////////
1270void bncWindow::AddToolbar() {
1271 // Tool (Command) Bar
1272 // ------------------
1273 QToolBar* toolBar = new QToolBar;
1274 addToolBar(Qt::BottomToolBarArea, toolBar);
1275 toolBar->setMovable(false);
1276 toolBar->addAction(_actAddMountPoints);
1277 toolBar->addAction(_actDeleteMountPoints);
1278 toolBar->addAction(_actGetData);
1279 toolBar->addAction(_actStop);
1280 toolBar->addWidget(new QLabel(" "));
1281 toolBar->addAction(_actwhatsthis);
1282}
1283
1284// About
1285////////////////////////////////////////////////////////////////////////////
1286bncAboutDlg::bncAboutDlg(QWidget* parent) :
1287 QDialog(parent) {
1288
1289 QTextBrowser* tb = new QTextBrowser;
1290 QUrl url; url.setPath(":bncabout.html");
1291 tb->setSource(url);
1292 tb->setReadOnly(true);
1293
1294 int ww = QFontMetrics(font()).width('w');
1295 QPushButton* _closeButton = new QPushButton("Close");
1296 _closeButton->setMaximumWidth(10*ww);
1297 connect(_closeButton, SIGNAL(clicked()), this, SLOT(close()));
1298
1299 QGridLayout* dlgLayout = new QGridLayout();
1300 QLabel* img = new QLabel();
1301 img->setPixmap(QPixmap(":ntrip-logo.png"));
1302 dlgLayout->addWidget(img, 0,0);
1303 dlgLayout->addWidget(new QLabel("BKG Ntrip Client (BNC) Version 1.7"), 0,1);
1304 dlgLayout->addWidget(tb,1,0,1,2);
1305 dlgLayout->addWidget(_closeButton,2,1,Qt::AlignRight);
1306
1307 setLayout(dlgLayout);
1308 resize(60*ww, 60*ww);
1309 setWindowTitle("About BNC");
1310 show();
1311}
1312
1313//
1314////////////////////////////////////////////////////////////////////////////
1315bncAboutDlg::~bncAboutDlg() {
1316};
1317
1318// Flowchart
1319////////////////////////////////////////////////////////////////////////////
1320bncFlowchartDlg::bncFlowchartDlg(QWidget* parent) :
1321 QDialog(parent) {
1322
1323 int ww = QFontMetrics(font()).width('w');
1324 QPushButton* _closeButton = new QPushButton("Close");
1325 _closeButton->setMaximumWidth(10*ww);
1326 connect(_closeButton, SIGNAL(clicked()), this, SLOT(close()));
1327
1328 QGridLayout* dlgLayout = new QGridLayout();
1329 QLabel* img = new QLabel();
1330 img->setPixmap(QPixmap(":bncflowchart.png"));
1331 dlgLayout->addWidget(img, 0,0);
1332 dlgLayout->addWidget(_closeButton,1,0,Qt::AlignLeft);
1333
1334 setLayout(dlgLayout);
1335 setWindowTitle("Flow Chart");
1336 show();
1337}
1338
1339//
1340////////////////////////////////////////////////////////////////////////////
1341bncFlowchartDlg::~bncFlowchartDlg() {
1342};
1343
1344// Bnc Text
1345////////////////////////////////////////////////////////////////////////////
1346void bncWindow::bncText(const QString &text){
1347
1348 bool isEmpty = text.isEmpty();
1349
1350 QPalette palette;
1351 QColor lightGray(230, 230, 230);
1352 QColor white(255, 255, 255);
1353
1354
1355 // Proxy
1356 //------
1357 if (_aogroup->currentIndex() == 0) {
1358 if (!isEmpty) {
1359 _proxyPortLineEdit->setStyleSheet("background-color: white");
1360 _proxyPortLineEdit->setEnabled(true);
1361 } else {
1362 _proxyPortLineEdit->setStyleSheet("background-color: lightGray");
1363 _proxyPortLineEdit->setEnabled(false);
1364 }
1365 }
1366
1367 // RINEX Observations
1368 // ------------------
1369 if (_aogroup->currentIndex() == 2) {
1370 if (!isEmpty) {
1371 _rnxSamplSpinBox->setStyleSheet("background-color: white");
1372 _rnxSkelLineEdit->setStyleSheet("background-color: white");
1373 _rnxScrpLineEdit->setStyleSheet("background-color: white");
1374 palette.setColor(_rnxV3CheckBox->backgroundRole(), white);
1375 _rnxV3CheckBox->setPalette(palette);
1376 _rnxIntrComboBox->setStyleSheet("background-color: white");
1377 _rnxSamplSpinBox->setEnabled(true);
1378 _rnxSkelLineEdit->setEnabled(true);
1379 _rnxScrpLineEdit->setEnabled(true);
1380 _rnxV3CheckBox->setEnabled(true);
1381 _rnxIntrComboBox->setEnabled(true);
1382 } else {
1383 _rnxSamplSpinBox->setStyleSheet("background-color: lightGray");
1384 _rnxSkelLineEdit->setStyleSheet("background-color: lightGray");
1385 _rnxScrpLineEdit->setStyleSheet("background-color: lightGray");
1386 palette.setColor(_rnxV3CheckBox->backgroundRole(), lightGray);
1387 _rnxV3CheckBox->setPalette(palette);
1388 _rnxIntrComboBox->setStyleSheet("background-color: lightGray");
1389 _rnxSamplSpinBox->setEnabled(false);
1390 _rnxSkelLineEdit->setEnabled(false);
1391 _rnxScrpLineEdit->setEnabled(false);
1392 _rnxV3CheckBox->setEnabled(false);
1393 _rnxIntrComboBox->setEnabled(false);
1394 }
1395 }
1396
1397 // RINEX Ephemeris
1398 // ---------------
1399 if (_aogroup->currentIndex() == 3) {
1400 if (!_ephPathLineEdit->text().isEmpty() && !_outEphPortLineEdit->text().isEmpty()) {
1401 _ephIntrComboBox->setStyleSheet("background-color: white");
1402 palette.setColor(_ephV3CheckBox->backgroundRole(), white);
1403 _ephV3CheckBox->setPalette(palette);
1404 _ephIntrComboBox->setEnabled(true);
1405 _ephV3CheckBox->setEnabled(true);
1406 }
1407 if (_ephPathLineEdit->text().isEmpty() && !_outEphPortLineEdit->text().isEmpty()) {
1408 _ephIntrComboBox->setStyleSheet("background-color: lightGray");
1409 palette.setColor(_ephV3CheckBox->backgroundRole(), white);
1410 _ephV3CheckBox->setPalette(palette);
1411 _ephIntrComboBox->setEnabled(false);
1412 _ephV3CheckBox->setEnabled(true);
1413 }
1414 if (!_ephPathLineEdit->text().isEmpty() && _outEphPortLineEdit->text().isEmpty()) {
1415 _ephIntrComboBox->setStyleSheet("background-color: white");
1416 palette.setColor(_ephV3CheckBox->backgroundRole(), white);
1417 _ephV3CheckBox->setPalette(palette);
1418 _ephIntrComboBox->setEnabled(true);
1419 _ephV3CheckBox->setEnabled(true);
1420 }
1421 if (_ephPathLineEdit->text().isEmpty() && _outEphPortLineEdit->text().isEmpty()) {
1422 _ephIntrComboBox->setStyleSheet("background-color: lightGray");
1423 palette.setColor(_ephV3CheckBox->backgroundRole(), lightGray);
1424 _ephV3CheckBox->setPalette(palette);
1425 _ephIntrComboBox->setEnabled(false);
1426 _ephV3CheckBox->setEnabled(false);
1427 }
1428 }
1429
1430 // Broadcast Corrections
1431 // ---------------------
1432 if (_aogroup->currentIndex() == 4) {
1433 if (!isEmpty) {
1434 if (!_corrPathLineEdit->text().isEmpty()) {
1435 _corrIntrComboBox->setStyleSheet("background-color: white");
1436 _corrPortLineEdit->setStyleSheet("background-color: white");
1437 _corrIntrComboBox->setEnabled(true);
1438 _corrPortLineEdit->setEnabled(true);
1439 }
1440 if (!_corrPortLineEdit->text().isEmpty()) {
1441 _corrTimeSpinBox->setStyleSheet("background-color: white");
1442 _corrTimeSpinBox->setEnabled(true);
1443 }
1444 } else {
1445 if (_corrPathLineEdit->text().isEmpty()) {
1446 _corrIntrComboBox->setStyleSheet("background-color: lightGray");
1447 _corrIntrComboBox->setEnabled(false);
1448 }
1449 if (_corrPortLineEdit->text().isEmpty()) {
1450 _corrTimeSpinBox->setStyleSheet("background-color: lightGray");
1451 _corrTimeSpinBox->setEnabled(false);
1452 }
1453 }
1454 }
1455
1456 // Feed Engine
1457 // -----------
1458 if (_aogroup->currentIndex() == 5) {
1459 if ( !_outPortLineEdit->text().isEmpty() || !_outFileLineEdit->text().isEmpty()) {
1460 _waitTimeSpinBox->setStyleSheet("background-color: white");
1461 _binSamplSpinBox->setStyleSheet("background-color: white");
1462 _waitTimeSpinBox->setEnabled(true);
1463 _binSamplSpinBox->setEnabled(true);
1464 } else {
1465 _waitTimeSpinBox->setStyleSheet("background-color: lightGray");
1466 _binSamplSpinBox->setStyleSheet("background-color: lightGray");
1467 _waitTimeSpinBox->setEnabled(false);
1468 _binSamplSpinBox->setEnabled(false);
1469 }
1470 }
1471
1472 // Serial Output
1473 // -------------
1474 if (_aogroup->currentIndex() == 6) {
1475 if (!isEmpty) {
1476 _serialPortNameLineEdit->setStyleSheet("background-color: white");
1477 _serialBaudRateComboBox->setStyleSheet("background-color: white");
1478 _serialParityComboBox->setStyleSheet("background-color: white");
1479 _serialDataBitsComboBox->setStyleSheet("background-color: white");
1480 _serialStopBitsComboBox->setStyleSheet("background-color: white");
1481 _serialFlowControlComboBox->setStyleSheet("background-color: white");
1482 _serialAutoNMEAComboBox->setStyleSheet("background-color: white");
1483 _serialPortNameLineEdit->setEnabled(true);
1484 _serialBaudRateComboBox->setEnabled(true);
1485 _serialParityComboBox->setEnabled(true);
1486 _serialDataBitsComboBox->setEnabled(true);
1487 _serialStopBitsComboBox->setEnabled(true);
1488 _serialFlowControlComboBox->setEnabled(true);
1489 _serialAutoNMEAComboBox->setEnabled(true);
1490 if (_serialAutoNMEAComboBox->currentText() != "Auto" ) {
1491 _serialHeightNMEALineEdit->setStyleSheet("background-color: white");
1492 _serialHeightNMEALineEdit->setEnabled(true);
1493 _serialFileNMEALineEdit->setStyleSheet("background-color: lightGray");
1494 _serialFileNMEALineEdit->setEnabled(false);
1495 } else {
1496 _serialHeightNMEALineEdit->setStyleSheet("background-color: lightGray");
1497 _serialHeightNMEALineEdit->setEnabled(false);
1498 _serialFileNMEALineEdit->setStyleSheet("background-color: white");
1499 _serialFileNMEALineEdit->setEnabled(true);
1500 }
1501 } else {
1502 _serialPortNameLineEdit->setStyleSheet("background-color: lightGray");
1503 _serialBaudRateComboBox->setStyleSheet("background-color: lightGray");
1504 _serialParityComboBox->setStyleSheet("background-color: lightGray");
1505 _serialDataBitsComboBox->setStyleSheet("background-color: lightGray");
1506 _serialStopBitsComboBox->setStyleSheet("background-color: lightGray");
1507 _serialFlowControlComboBox->setStyleSheet("background-color: lightGray");
1508 _serialAutoNMEAComboBox->setStyleSheet("background-color: lightGray");
1509 _serialFileNMEALineEdit->setStyleSheet("background-color: lightGray");
1510 _serialHeightNMEALineEdit->setStyleSheet("background-color: lightGray");
1511 _serialPortNameLineEdit->setEnabled(false);
1512 _serialBaudRateComboBox->setEnabled(false);
1513 _serialParityComboBox->setEnabled(false);
1514 _serialDataBitsComboBox->setEnabled(false);
1515 _serialStopBitsComboBox->setEnabled(false);
1516 _serialFlowControlComboBox->setEnabled(false);
1517 _serialAutoNMEAComboBox->setEnabled(false);
1518 _serialHeightNMEALineEdit->setEnabled(false);
1519 _serialFileNMEALineEdit->setEnabled(false);
1520 }
1521 }
1522
1523 // Outages
1524 // -------
1525 if (_aogroup->currentIndex() == 7) {
1526 if (!isEmpty) {
1527 _adviseScriptLineEdit->setStyleSheet("background-color: white");
1528 _adviseFailSpinBox->setStyleSheet("background-color: white");
1529 _adviseRecoSpinBox->setStyleSheet("background-color: white");
1530 _adviseFailSpinBox->setEnabled(true);
1531 _adviseRecoSpinBox->setEnabled(true);
1532 _adviseScriptLineEdit->setEnabled(true);
1533 } else {
1534 _adviseScriptLineEdit->setStyleSheet("background-color: lightGray");
1535 _adviseFailSpinBox->setStyleSheet("background-color: lightGray");
1536 _adviseRecoSpinBox->setStyleSheet("background-color: lightGray");
1537 _adviseFailSpinBox->setEnabled(false);
1538 _adviseRecoSpinBox->setEnabled(false);
1539 _adviseScriptLineEdit->setEnabled(false);
1540 }
1541 }
1542
1543 // Miscellaneous
1544 // -------------
1545 if (_aogroup->currentIndex() == 8) {
1546 if (!isEmpty) {
1547 _perfIntrComboBox->setStyleSheet("background-color: white");
1548 palette.setColor(_scanRTCMCheckBox->backgroundRole(), white);
1549 _scanRTCMCheckBox->setPalette(palette);
1550 _perfIntrComboBox->setEnabled(true);
1551 _scanRTCMCheckBox->setEnabled(true);
1552 } else {
1553 _perfIntrComboBox->setStyleSheet("background-color: lightGray");
1554 palette.setColor(_scanRTCMCheckBox->backgroundRole(), lightGray);
1555 _scanRTCMCheckBox->setPalette(palette);
1556 _perfIntrComboBox->setEnabled(false);
1557 _scanRTCMCheckBox->setEnabled(false);
1558 }
1559 }
1560}
1561
Note: See TracBrowser for help on using the repository browser.