[280] | 1 | // Part of BNC, a utility for retrieving decoding and
|
---|
[464] | 2 | // converting GNSS data streams from NTRIP broadcasters.
|
---|
[280] | 3 | //
|
---|
[464] | 4 | // Copyright (C) 2007
|
---|
[280] | 5 | // German Federal Agency for Cartography and Geodesy (BKG)
|
---|
| 6 | // http://www.bkg.bund.de
|
---|
[464] | 7 | // Czech Technical University Prague, Department of Geodesy
|
---|
[280] | 8 | // http://www.fsv.cvut.cz
|
---|
| 9 | //
|
---|
| 10 | // Email: euref-ip@bkg.bund.de
|
---|
| 11 | //
|
---|
| 12 | // This program is free software; you can redistribute it and/or
|
---|
| 13 | // modify it under the terms of the GNU General Public License
|
---|
| 14 | // as published by the Free Software Foundation, version 2.
|
---|
| 15 | //
|
---|
| 16 | // This program is distributed in the hope that it will be useful,
|
---|
| 17 | // but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 18 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 19 | // GNU General Public License for more details.
|
---|
| 20 | //
|
---|
| 21 | // You should have received a copy of the GNU General Public License
|
---|
| 22 | // along with this program; if not, write to the Free Software
|
---|
| 23 | // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
---|
[35] | 24 |
|
---|
| 25 | #ifndef BNCWINDOW_H
|
---|
| 26 | #define BNCWINDOW_H
|
---|
| 27 |
|
---|
[8252] | 28 | #include <QDialog>
|
---|
| 29 | #include <QList>
|
---|
[8127] | 30 | #include <QMainWindow>
|
---|
[8252] | 31 | #include <QTextEdit>
|
---|
[399] | 32 | #include <QWhatsThis>
|
---|
[35] | 33 |
|
---|
| 34 | #include "bncgetthread.h"
|
---|
[463] | 35 | #include "bnccaster.h"
|
---|
[6040] | 36 | #include "pppWidgets.h"
|
---|
[35] | 37 |
|
---|
[1925] | 38 | class bncAboutDlg : public QDialog {
|
---|
[35] | 39 | Q_OBJECT
|
---|
| 40 | public:
|
---|
[679] | 41 | bncAboutDlg(QWidget* parent);
|
---|
| 42 | ~bncAboutDlg();
|
---|
| 43 | };
|
---|
| 44 |
|
---|
[1932] | 45 | class bncFlowchartDlg : public QDialog {
|
---|
[989] | 46 | Q_OBJECT
|
---|
| 47 |
|
---|
| 48 | public:
|
---|
| 49 | bncFlowchartDlg(QWidget* parent);
|
---|
| 50 | ~bncFlowchartDlg();
|
---|
| 51 | };
|
---|
| 52 |
|
---|
[1932] | 53 | class bncFigure;
|
---|
[1972] | 54 | class bncFigureLate;
|
---|
[2141] | 55 | class bncFigurePPP;
|
---|
[3245] | 56 | class bncBytesCounter;
|
---|
[3249] | 57 | class bncEphUploadCaster;
|
---|
[3602] | 58 | class qtFileChooser;
|
---|
[5179] | 59 | class bncMapWin;
|
---|
[1932] | 60 |
|
---|
| 61 | class bncWindow : public QMainWindow {
|
---|
[679] | 62 | Q_OBJECT
|
---|
| 63 |
|
---|
| 64 | public:
|
---|
[35] | 65 | bncWindow();
|
---|
[83] | 66 | ~bncWindow();
|
---|
[679] | 67 | void CreateMenu();
|
---|
| 68 | void AddToolbar();
|
---|
[1912] | 69 |
|
---|
[7889] | 70 | public slots:
|
---|
[1179] | 71 | void slotMountPointsRead(QList<bncGetThread*>);
|
---|
[2128] | 72 | void slotBncTextChanged();
|
---|
[35] | 73 |
|
---|
| 74 | private slots:
|
---|
[1299] | 75 | void slotWindowMessage(const QByteArray msg, bool showOnScreen);
|
---|
[108] | 76 | void slotHelp();
|
---|
| 77 | void slotAbout();
|
---|
[989] | 78 | void slotFlowchart();
|
---|
[111] | 79 | void slotFontSel();
|
---|
[35] | 80 | void slotSaveOptions();
|
---|
| 81 | void slotAddMountPoints();
|
---|
[5162] | 82 | void slotMapMountPoints();
|
---|
| 83 | void slotMapPPP();
|
---|
[5235] | 84 | void slotMapPPPClosed();
|
---|
[3782] | 85 | void slotStart();
|
---|
[182] | 86 | void slotStop();
|
---|
[35] | 87 | void slotNewMountPoints(QStringList* mountPoints);
|
---|
| 88 | void slotDeleteMountPoints();
|
---|
[1556] | 89 | void slotGetThreadsFinished();
|
---|
[83] | 90 | void slotSelectionChanged();
|
---|
[399] | 91 | void slotWhatsThis();
|
---|
[2869] | 92 | void slotAddCmbRow();
|
---|
| 93 | void slotDelCmbRow();
|
---|
[3164] | 94 | void slotAddUploadRow();
|
---|
| 95 | void slotDelUploadRow();
|
---|
[7889] | 96 | void slotAddUploadEphRow();
|
---|
| 97 | void slotDelUploadEphRow();
|
---|
[3164] | 98 | void slotSetUploadTrafo();
|
---|
[3892] | 99 | void slotReqcEditOption();
|
---|
[5971] | 100 | void slotPostProcessingFinished();
|
---|
| 101 | void slotPostProcessingProgress(int);
|
---|
[35] | 102 |
|
---|
[83] | 103 | protected:
|
---|
| 104 | virtual void closeEvent(QCloseEvent *);
|
---|
| 105 |
|
---|
[35] | 106 | private:
|
---|
[4076] | 107 | void saveOptions();
|
---|
[1178] | 108 | void populateMountPointsTable();
|
---|
[2870] | 109 | void populateCmbTable();
|
---|
[3164] | 110 | void populateUploadTable();
|
---|
[7889] | 111 | void populateUploadEphTable();
|
---|
[3605] | 112 | void enableWidget(bool enable, QWidget* widget);
|
---|
[3782] | 113 | void startRealTime();
|
---|
[3787] | 114 | void enableStartStop();
|
---|
[1178] | 115 |
|
---|
[35] | 116 | QMenu* _menuHlp;
|
---|
| 117 | QMenu* _menuFile;
|
---|
| 118 |
|
---|
[108] | 119 | QAction* _actHelp;
|
---|
[35] | 120 | QAction* _actAbout;
|
---|
[989] | 121 | QAction* _actFlowchart;
|
---|
[111] | 122 | QAction* _actFontSel;
|
---|
[35] | 123 | QAction* _actSaveOpt;
|
---|
[7889] | 124 | QAction* _actQuit;
|
---|
[5162] | 125 | QAction* _actMapMountPoints;
|
---|
[3782] | 126 | QAction* _actStart;
|
---|
[182] | 127 | QAction* _actStop;
|
---|
[35] | 128 | QAction* _actAddMountPoints;
|
---|
| 129 | QAction* _actDeleteMountPoints;
|
---|
[399] | 130 | QAction* _actwhatsthis;
|
---|
| 131 | QAction* _actwhatsthismenu;
|
---|
[35] | 132 |
|
---|
| 133 | QLineEdit* _proxyHostLineEdit;
|
---|
| 134 | QLineEdit* _proxyPortLineEdit;
|
---|
[3356] | 135 | QLineEdit* _sslCaCertPathLineEdit;
|
---|
[9795] | 136 | QLineEdit* _sslClientCertPathLineEdit;
|
---|
[7513] | 137 | QCheckBox* _sslIgnoreErrorsCheckBox;
|
---|
[35] | 138 | QLineEdit* _outFileLineEdit;
|
---|
| 139 | QLineEdit* _outPortLineEdit;
|
---|
[1222] | 140 | QLineEdit* _outUPortLineEdit;
|
---|
[8621] | 141 | QCheckBox* _outLockTimeCheckBox;
|
---|
[7325] | 142 | QLineEdit* _ephOutPortLineEdit;
|
---|
[934] | 143 | QLineEdit* _corrPortLineEdit;
|
---|
[83] | 144 | QLineEdit* _rnxPathLineEdit;
|
---|
[9184] | 145 | QLineEdit* _rnxSkelPathLineEdit;
|
---|
[533] | 146 | QLineEdit* _ephPathLineEdit;
|
---|
[934] | 147 | QLineEdit* _corrPathLineEdit;
|
---|
[1307] | 148 | QLineEdit* _miscMountLineEdit;
|
---|
[5641] | 149 | QLineEdit* _miscPortLineEdit;
|
---|
[3602] | 150 |
|
---|
[3892] | 151 | QComboBox* _reqcActionComboBox;
|
---|
| 152 | QPushButton* _reqcEditOptionButton;
|
---|
| 153 | qtFileChooser* _reqcObsFileChooser;
|
---|
| 154 | qtFileChooser* _reqcNavFileChooser;
|
---|
| 155 | QLineEdit* _reqcOutObsLineEdit;
|
---|
| 156 | QLineEdit* _reqcOutNavLineEdit;
|
---|
| 157 | QLineEdit* _reqcOutLogLineEdit;
|
---|
[4449] | 158 | QLineEdit* _reqcPlotDirLineEdit;
|
---|
[6408] | 159 | QLineEdit* _reqcSkyPlotSignals;
|
---|
[6299] | 160 | QCheckBox* _reqcLogSummaryOnly;
|
---|
[3731] | 161 |
|
---|
[6332] | 162 | qtFileChooser* _sp3CompFileChooser;
|
---|
[6430] | 163 | QLineEdit* _sp3CompExclude;
|
---|
[6332] | 164 | QLineEdit* _sp3CompLogLineEdit;
|
---|
[10102] | 165 | QCheckBox* _sp3CompSummaryOnly;
|
---|
[6332] | 166 |
|
---|
[9760] | 167 | QComboBox* _rnxVersComboBox;
|
---|
[6237] | 168 | QLineEdit* _rnxV2Priority;
|
---|
[9760] | 169 | QComboBox* _ephVersComboBox;
|
---|
[10091] | 170 | //QCheckBox* _ephFilePerStation;
|
---|
[6796] | 171 | QCheckBox* _rnxFileCheckBox;
|
---|
[106] | 172 | QLineEdit* _rnxScrpLineEdit;
|
---|
[143] | 173 | QLineEdit* _logFileLineEdit;
|
---|
[2386] | 174 | QLineEdit* _rawOutFileLineEdit;
|
---|
[106] | 175 | QComboBox* _rnxIntrComboBox;
|
---|
[560] | 176 | QComboBox* _ephIntrComboBox;
|
---|
[934] | 177 | QComboBox* _corrIntrComboBox;
|
---|
[9760] | 178 | QComboBox* _rnxSamplComboBox;
|
---|
| 179 | QComboBox* _rnxSkelExtComboBox;
|
---|
| 180 | QComboBox* _outSamplComboBox;
|
---|
[259] | 181 | QCheckBox* _rnxAppendCheckBox;
|
---|
[1333] | 182 | QCheckBox* _autoStartCheckBox;
|
---|
[7420] | 183 | QCheckBox* _miscScanRTCMCheckBox;
|
---|
[7393] | 184 | QSpinBox* _outWaitSpinBox;
|
---|
[7332] | 185 | QComboBox* _adviseObsRateComboBox;
|
---|
[668] | 186 | QSpinBox* _adviseFailSpinBox;
|
---|
| 187 | QSpinBox* _adviseRecoSpinBox;
|
---|
| 188 | QLineEdit* _adviseScriptLineEdit;
|
---|
[7420] | 189 | QComboBox* _miscIntrComboBox;
|
---|
[83] | 190 | QTableWidget* _mountPointsTable;
|
---|
[1329] | 191 |
|
---|
[1327] | 192 | QLineEdit* _serialPortNameLineEdit;
|
---|
| 193 | QLineEdit* _serialMountPointLineEdit;
|
---|
[1329] | 194 | QComboBox* _serialBaudRateComboBox;
|
---|
| 195 | QComboBox* _serialParityComboBox;
|
---|
| 196 | QComboBox* _serialDataBitsComboBox;
|
---|
| 197 | QComboBox* _serialStopBitsComboBox;
|
---|
[1636] | 198 | QComboBox* _serialFlowControlComboBox;
|
---|
[1595] | 199 | QLineEdit* _serialHeightNMEALineEdit;
|
---|
[1601] | 200 | QLineEdit* _serialFileNMEALineEdit;
|
---|
[1595] | 201 | QComboBox* _serialAutoNMEAComboBox;
|
---|
[10420] | 202 | QSpinBox* _serialNMEASamplingSpinBox;
|
---|
[35] | 203 |
|
---|
[356] | 204 | QLineEdit* _LatLineEdit;
|
---|
| 205 | QLineEdit* _LonLineEdit;
|
---|
| 206 |
|
---|
[1170] | 207 | QComboBox* _onTheFlyComboBox;
|
---|
| 208 |
|
---|
[83] | 209 | QTextEdit* _log;
|
---|
| 210 |
|
---|
[1912] | 211 | QWidget* _canvas;
|
---|
[1925] | 212 | QTabWidget* _aogroup;
|
---|
[463] | 213 |
|
---|
[1925] | 214 | QTabWidget* _loggroup;
|
---|
[1932] | 215 | bncFigure* _bncFigure;
|
---|
[1972] | 216 | bncFigureLate* _bncFigureLate;
|
---|
[2141] | 217 | bncFigurePPP* _bncFigurePPP;
|
---|
[1912] | 218 |
|
---|
[6172] | 219 | QTableWidget* _cmbTable;
|
---|
| 220 | QLineEdit* _cmbMaxresLineEdit;
|
---|
[10451] | 221 | QLineEdit* _cmbMaxdisplacementLineEdit;
|
---|
[6172] | 222 | QComboBox* _cmbMethodComboBox;
|
---|
| 223 | QSpinBox* _cmbSamplSpinBox;
|
---|
[10480] | 224 | QLineEdit* _cmbLogPath;
|
---|
[9292] | 225 | QCheckBox* _cmbGpsCheckBox;
|
---|
| 226 | QCheckBox* _cmbGloCheckBox;
|
---|
| 227 | QCheckBox* _cmbGalCheckBox;
|
---|
| 228 | QCheckBox* _cmbBdsCheckBox;
|
---|
| 229 | QCheckBox* _cmbQzssCheckBox;
|
---|
| 230 | QCheckBox* _cmbSbasCheckBox;
|
---|
| 231 | QCheckBox* _cmbIrnssCheckBox;
|
---|
[9635] | 232 | qtFileChooser* _cmbBsxFile;
|
---|
[2868] | 233 |
|
---|
[6666] | 234 | QTableWidget* _uploadTable;
|
---|
| 235 | QComboBox* _uploadIntrComboBox;
|
---|
| 236 | QSpinBox* _uploadSamplRtcmEphCorrSpinBox;
|
---|
[10095] | 237 | QComboBox* _uploadSamplSp3ComboBox;
|
---|
[6666] | 238 | QSpinBox* _uploadSamplClkRnxSpinBox;
|
---|
[9635] | 239 | QSpinBox* _uploadSamplBiaSnxSpinBox;
|
---|
[6666] | 240 | qtFileChooser* _uploadAntexFile;
|
---|
[3152] | 241 |
|
---|
[7889] | 242 | QTableWidget* _uploadEphTable;
|
---|
| 243 | QSpinBox* _uploadSamplRtcmEphSpinBox;
|
---|
[3240] | 244 |
|
---|
[5729] | 245 | bncCaster* _caster;
|
---|
[3249] | 246 | bncEphUploadCaster* _casterEph;
|
---|
[3735] | 247 |
|
---|
[3782] | 248 | bool _runningRealTime;
|
---|
[5971] | 249 | bool _runningPPP;
|
---|
| 250 | bool _runningEdit;
|
---|
| 251 | bool _runningQC;
|
---|
[6332] | 252 | bool _runningSp3Comp;
|
---|
[4766] | 253 |
|
---|
[7889] | 254 | bool running() {return _runningRealTime || _runningPPP || _runningEdit ||
|
---|
[6332] | 255 | _runningQC || _runningSp3Comp;}
|
---|
[5971] | 256 |
|
---|
[5187] | 257 | bncMapWin* _mapWin;
|
---|
[5861] | 258 |
|
---|
[5187] | 259 | QList<bncGetThread*> _threads;
|
---|
[5179] | 260 |
|
---|
[5686] | 261 | t_pppWidgets _pppWidgets;
|
---|
[35] | 262 | };
|
---|
[5063] | 263 |
|
---|
| 264 | #ifdef GNSSCENTER_PLUGIN
|
---|
| 265 | #include "plugininterface.h"
|
---|
| 266 | class t_bncFactory : public QObject, public GnssCenter::t_pluginFactoryInterface {
|
---|
| 267 | Q_OBJECT
|
---|
| 268 | Q_INTERFACES(GnssCenter::t_pluginFactoryInterface)
|
---|
| 269 | public:
|
---|
[7889] | 270 | virtual QWidget* create() {return new bncWindow();}
|
---|
[5063] | 271 | virtual QString getName() const {return QString("BNC");}
|
---|
| 272 | };
|
---|
[35] | 273 | #endif
|
---|
[5063] | 274 |
|
---|
| 275 | #endif
|
---|