source: ntrip/trunk/BNC/src/bncwindow.h@ 5308

Last change on this file since 5308 was 5308, checked in by weber, 11 years ago

Track plot completed

File size: 9.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#ifndef BNCWINDOW_H
26#define BNCWINDOW_H
27
28#include <QtGui>
29#include <QWhatsThis>
30
31#include "bncgetthread.h"
32#include "bnccaster.h"
33
34class bncAboutDlg : public QDialog {
35 Q_OBJECT
36 public:
37 bncAboutDlg(QWidget* parent);
38 ~bncAboutDlg();
39};
40
41class bncFlowchartDlg : public QDialog {
42 Q_OBJECT
43
44 public:
45 bncFlowchartDlg(QWidget* parent);
46 ~bncFlowchartDlg();
47};
48
49class bncFigure;
50class bncFigureLate;
51class bncFigurePPP;
52class bncBytesCounter;
53class bncEphUploadCaster;
54class qtFileChooser;
55class bncMapWin;
56class t_postProcessing;
57
58class bncWindow : public QMainWindow {
59 Q_OBJECT
60
61 public:
62 bncWindow();
63 ~bncWindow();
64 void CreateMenu();
65 void AddToolbar();
66
67 public slots:
68 void slotMountPointsRead(QList<bncGetThread*>);
69 void slotBncTextChanged();
70 void slotPostProgress(int);
71
72 private slots:
73 void slotWindowMessage(const QByteArray msg, bool showOnScreen);
74 void slotHelp();
75 void slotAbout();
76 void slotFlowchart();
77 void slotFontSel();
78 void slotSaveOptions();
79 void slotAddMountPoints();
80 void slotMapMountPoints();
81 void slotMapPPP();
82 void slotMapPPPClosed();
83 void slotStart();
84 void slotFinishedPostProcessingPPP();
85 void slotFinishedPostProcessingReqc();
86 void slotStop();
87 void slotNewMountPoints(QStringList* mountPoints);
88 void slotDeleteMountPoints();
89 void slotGetThreadsFinished();
90 void slotSelectionChanged();
91 void slotWhatsThis();
92 void slotAddCmbRow();
93 void slotDelCmbRow();
94 void slotAddUploadRow();
95 void slotDelUploadRow();
96 void slotSetUploadTrafo();
97 void slotReqcEditOption();
98
99 protected:
100 virtual void closeEvent(QCloseEvent *);
101
102 private:
103 void saveOptions();
104 void populateMountPointsTable();
105 void populateCmbTable();
106 void populateUploadTable();
107 void enableWidget(bool enable, QWidget* widget);
108 void startRealTime();
109 void startPostProcessingPPP();
110 void startPostProcessingReqc();
111 void enableStartStop();
112
113 QMenu* _menuHlp;
114 QMenu* _menuFile;
115
116 QAction* _actHelp;
117 QAction* _actAbout;
118 QAction* _actFlowchart;
119 QAction* _actFontSel;
120 QAction* _actSaveOpt;
121 QAction* _actQuit;
122 QAction* _actMapMountPoints;
123 QAction* _actStart;
124 QAction* _actStop;
125 QAction* _actAddMountPoints;
126 QAction* _actDeleteMountPoints;
127 QAction* _actwhatsthis;
128 QAction* _actwhatsthismenu;
129
130 QLineEdit* _proxyHostLineEdit;
131 QLineEdit* _proxyPortLineEdit;
132 QLineEdit* _mapWinDotSizeLineEdit;
133 QLineEdit* _sslCaCertPathLineEdit;
134 QCheckBox* _ignoreSslErrorsCheckBox;
135 QLineEdit* _outFileLineEdit;
136 QLineEdit* _outPortLineEdit;
137 QLineEdit* _outUPortLineEdit;
138 QLineEdit* _outEphPortLineEdit;
139 QLineEdit* _corrPortLineEdit;
140 QLineEdit* _rnxPathLineEdit;
141 QLineEdit* _ephPathLineEdit;
142 QLineEdit* _corrPathLineEdit;
143 QLineEdit* _miscMountLineEdit;
144 QLineEdit* _pppMountLineEdit;
145 QLineEdit* _pppCorrMountLineEdit;
146 QLineEdit* _pppNMEALineEdit;
147 QLineEdit* _pppNMEAPortLineEdit;
148 QLineEdit* _pppSigCLineEdit;
149 QLineEdit* _pppSigPLineEdit;
150 QLineEdit* _pppSigCrd0;
151 QLineEdit* _pppSigCrdP;
152 QLineEdit* _pppSigTrp0;
153 QLineEdit* _pppSigTrpP;
154 QLineEdit* _pppSync;
155 QLineEdit* _pppAverageLineEdit;
156 QLineEdit* _pppQuickStartLineEdit;
157 QLineEdit* _pppMaxSolGapLineEdit;
158 QLineEdit* _pppAudioResponseLineEdit;
159 QLineEdit* _pppRefCrdXLineEdit;
160 QLineEdit* _pppRefCrdYLineEdit;
161 QLineEdit* _pppRefCrdZLineEdit;
162 QLineEdit* _pppRefdNLineEdit;
163 QLineEdit* _pppRefdELineEdit;
164 QLineEdit* _pppRefdULineEdit;
165 QCheckBox* _pppPlotCoordinates;
166 QCheckBox* _pppUsePhaseCheckBox;
167 QCheckBox* _pppEstTropoCheckBox;
168 QCheckBox* _pppGLONASSCheckBox;
169 QCheckBox* _pppGalileoCheckBox;
170 QLineEdit* _pppAntennaLineEdit;
171 qtFileChooser* _pppAntexFileChooser;
172
173 qtFileChooser* _postObsFileChooser;
174 qtFileChooser* _postNavFileChooser;
175 qtFileChooser* _postCorrFileChooser;
176 QLineEdit* _postOutLineEdit;
177
178 QComboBox* _reqcActionComboBox;
179 QPushButton* _reqcEditOptionButton;
180 qtFileChooser* _reqcObsFileChooser;
181 qtFileChooser* _reqcNavFileChooser;
182 QLineEdit* _reqcOutObsLineEdit;
183 QLineEdit* _reqcOutNavLineEdit;
184 QLineEdit* _reqcOutLogLineEdit;
185 QLineEdit* _reqcPlotDirLineEdit;
186 QComboBox* _reqcSkyPlotSystems;
187
188 QCheckBox* _rnxV3CheckBox;
189 QCheckBox* _ephV3CheckBox;
190 QLineEdit* _rnxSkelLineEdit;
191 QLineEdit* _rnxScrpLineEdit;
192 QLineEdit* _logFileLineEdit;
193 QLineEdit* _rawOutFileLineEdit;
194 QComboBox* _pppSPPComboBox;
195 QComboBox* _rnxIntrComboBox;
196 QComboBox* _ephIntrComboBox;
197 QComboBox* _corrIntrComboBox;
198 QSpinBox* _rnxSamplSpinBox;
199 QSpinBox* _binSamplSpinBox;
200 QCheckBox* _rnxAppendCheckBox;
201 QCheckBox* _autoStartCheckBox;
202 QCheckBox* _scanRTCMCheckBox;
203 QSpinBox* _waitTimeSpinBox;
204 QSpinBox* _corrTimeSpinBox;
205 QComboBox* _obsRateComboBox;
206 QSpinBox* _adviseFailSpinBox;
207 QSpinBox* _adviseRecoSpinBox;
208 QLineEdit* _adviseScriptLineEdit;
209 QComboBox* _perfIntrComboBox;
210 QTableWidget* _mountPointsTable;
211
212 QLineEdit* _serialPortNameLineEdit;
213 QLineEdit* _serialMountPointLineEdit;
214 QComboBox* _serialBaudRateComboBox;
215 QComboBox* _serialParityComboBox;
216 QComboBox* _serialDataBitsComboBox;
217 QComboBox* _serialStopBitsComboBox;
218 QComboBox* _serialFlowControlComboBox;
219 QLineEdit* _serialHeightNMEALineEdit;
220 QLineEdit* _serialFileNMEALineEdit;
221 QComboBox* _serialAutoNMEAComboBox;
222
223 QLineEdit* _LatLineEdit;
224 QLineEdit* _LonLineEdit;
225
226 QComboBox* _onTheFlyComboBox;
227
228 QTextEdit* _log;
229
230 QWidget* _canvas;
231 QTabWidget* _aogroup;
232
233 QTabWidget* _loggroup;
234 bncFigure* _bncFigure;
235 bncFigureLate* _bncFigureLate;
236 bncFigurePPP* _bncFigurePPP;
237
238 QTableWidget* _cmbTable;
239 QLineEdit* _cmbMaxresLineEdit;
240 QComboBox* _cmbMethodComboBox;
241 QSpinBox* _cmbSamplSpinBox;
242
243 QTableWidget* _uploadTable;
244 QComboBox* _uploadIntrComboBox;
245 QSpinBox* _uploadSamplRtcmEphCorrSpinBox;
246 QSpinBox* _uploadSamplSp3SpinBox;
247 QSpinBox* _uploadSamplClkRnxSpinBox;
248
249 QLineEdit* _uploadEphHostLineEdit;
250 QLineEdit* _uploadEphPortLineEdit;
251 QLineEdit* _uploadEphPasswordLineEdit;
252 QLineEdit* _uploadEphMountpointLineEdit;
253 QSpinBox* _uploadEphSampleSpinBox;
254 bncBytesCounter* _uploadEphBytesCounter;
255
256 bncCaster* _caster;
257
258 bncEphUploadCaster* _casterEph;
259
260 bool _realTimeRunning;
261 bool _runningRealTime;
262 bool _runningPostProcessingPPP;
263 bool _runningPostProcessingReqc;
264 t_postProcessing* _postProcessing;
265
266 QPushButton* _mapWinButton;
267 QRadioButton* _gmRadioButton;
268 QRadioButton* _osmRadioButton;
269 QComboBox* _mapWinDotColorComboBox;
270 QSlider* _mapSpeedSlider;
271 bncMapWin* _mapWin;
272 QList<bncGetThread*> _threads;
273
274#ifdef RTROVER_INTERFACE
275 QComboBox* _rtroverModeComboBox;
276 QLineEdit* _rtroverRoverMountLineEdit;
277 QLineEdit* _rtroverCorrMountLineEdit;
278 QLineEdit* _rtroverBaseMountLineEdit;
279 QLineEdit* _rtroverRoverRefCrdXLineEdit;
280 QLineEdit* _rtroverRoverRefCrdYLineEdit;
281 QLineEdit* _rtroverRoverRefCrdZLineEdit;
282 QLineEdit* _rtroverBaseRefCrdXLineEdit;
283 QLineEdit* _rtroverBaseRefCrdYLineEdit;
284 QLineEdit* _rtroverBaseCrdZLineEdit;
285 QLineEdit* _rtroverRoverDNLineEdit;
286 QLineEdit* _rtroverRoverDELineEdit;
287 QLineEdit* _rtroverRoverDULineEdit;
288 QLineEdit* _rtroverBaseDNLineEdit;
289 QLineEdit* _rtroverBaseDELineEdit;
290 QLineEdit* _rtroverBaseDULineEdit;
291 QLineEdit* _rtroverRoverAntennaLineEdit;
292 QLineEdit* _rtroverBaseAntennaLineEdit;
293 qtFileChooser* _rtroverAntexFileChooser;
294 QLineEdit* _rtroverOutputLineEdit;
295#endif
296};
297
298#ifdef GNSSCENTER_PLUGIN
299#include "plugininterface.h"
300class t_bncFactory : public QObject, public GnssCenter::t_pluginFactoryInterface {
301 Q_OBJECT
302 Q_INTERFACES(GnssCenter::t_pluginFactoryInterface)
303 public:
304 virtual QWidget* create() {return new bncWindow();}
305 virtual QString getName() const {return QString("BNC");}
306};
307#endif
308
309#endif
Note: See TracBrowser for help on using the repository browser.