[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 |
|
---|
| 28 | #include <QtGui>
|
---|
[399] | 29 | #include <QWhatsThis>
|
---|
[35] | 30 |
|
---|
| 31 | #include "bncgetthread.h"
|
---|
[463] | 32 | #include "bnccaster.h"
|
---|
[6040] | 33 | #include "pppWidgets.h"
|
---|
[35] | 34 |
|
---|
[1925] | 35 | class bncAboutDlg : public QDialog {
|
---|
[35] | 36 | Q_OBJECT
|
---|
| 37 | public:
|
---|
[679] | 38 | bncAboutDlg(QWidget* parent);
|
---|
| 39 | ~bncAboutDlg();
|
---|
| 40 | };
|
---|
| 41 |
|
---|
[1932] | 42 | class bncFlowchartDlg : public QDialog {
|
---|
[989] | 43 | Q_OBJECT
|
---|
| 44 |
|
---|
| 45 | public:
|
---|
| 46 | bncFlowchartDlg(QWidget* parent);
|
---|
| 47 | ~bncFlowchartDlg();
|
---|
| 48 | };
|
---|
| 49 |
|
---|
[1932] | 50 | class bncFigure;
|
---|
[1972] | 51 | class bncFigureLate;
|
---|
[2141] | 52 | class bncFigurePPP;
|
---|
[3245] | 53 | class bncBytesCounter;
|
---|
[3249] | 54 | class bncEphUploadCaster;
|
---|
[3602] | 55 | class qtFileChooser;
|
---|
[5179] | 56 | class bncMapWin;
|
---|
[1932] | 57 |
|
---|
| 58 | class bncWindow : public QMainWindow {
|
---|
[679] | 59 | Q_OBJECT
|
---|
| 60 |
|
---|
| 61 | public:
|
---|
[35] | 62 | bncWindow();
|
---|
[83] | 63 | ~bncWindow();
|
---|
[679] | 64 | void CreateMenu();
|
---|
| 65 | void AddToolbar();
|
---|
[1912] | 66 |
|
---|
[83] | 67 | public slots:
|
---|
[1179] | 68 | void slotMountPointsRead(QList<bncGetThread*>);
|
---|
[2128] | 69 | void slotBncTextChanged();
|
---|
[35] | 70 |
|
---|
| 71 | private slots:
|
---|
[1299] | 72 | void slotWindowMessage(const QByteArray msg, bool showOnScreen);
|
---|
[108] | 73 | void slotHelp();
|
---|
| 74 | void slotAbout();
|
---|
[989] | 75 | void slotFlowchart();
|
---|
[111] | 76 | void slotFontSel();
|
---|
[35] | 77 | void slotSaveOptions();
|
---|
| 78 | void slotAddMountPoints();
|
---|
[5162] | 79 | void slotMapMountPoints();
|
---|
| 80 | void slotMapPPP();
|
---|
[5235] | 81 | void slotMapPPPClosed();
|
---|
[3782] | 82 | void slotStart();
|
---|
[182] | 83 | void slotStop();
|
---|
[35] | 84 | void slotNewMountPoints(QStringList* mountPoints);
|
---|
| 85 | void slotDeleteMountPoints();
|
---|
[1556] | 86 | void slotGetThreadsFinished();
|
---|
[83] | 87 | void slotSelectionChanged();
|
---|
[399] | 88 | void slotWhatsThis();
|
---|
[2869] | 89 | void slotAddCmbRow();
|
---|
| 90 | void slotDelCmbRow();
|
---|
[3164] | 91 | void slotAddUploadRow();
|
---|
| 92 | void slotDelUploadRow();
|
---|
| 93 | void slotSetUploadTrafo();
|
---|
[3892] | 94 | void slotReqcEditOption();
|
---|
[5971] | 95 | void slotPostProcessingFinished();
|
---|
| 96 | void slotPostProcessingProgress(int);
|
---|
[35] | 97 |
|
---|
[83] | 98 | protected:
|
---|
| 99 | virtual void closeEvent(QCloseEvent *);
|
---|
| 100 |
|
---|
[35] | 101 | private:
|
---|
[4076] | 102 | void saveOptions();
|
---|
[1178] | 103 | void populateMountPointsTable();
|
---|
[2870] | 104 | void populateCmbTable();
|
---|
[3164] | 105 | void populateUploadTable();
|
---|
[3605] | 106 | void enableWidget(bool enable, QWidget* widget);
|
---|
[3782] | 107 | void startRealTime();
|
---|
[3787] | 108 | void enableStartStop();
|
---|
[1178] | 109 |
|
---|
[35] | 110 | QMenu* _menuHlp;
|
---|
| 111 | QMenu* _menuFile;
|
---|
| 112 |
|
---|
[108] | 113 | QAction* _actHelp;
|
---|
[35] | 114 | QAction* _actAbout;
|
---|
[989] | 115 | QAction* _actFlowchart;
|
---|
[111] | 116 | QAction* _actFontSel;
|
---|
[35] | 117 | QAction* _actSaveOpt;
|
---|
| 118 | QAction* _actQuit;
|
---|
[5162] | 119 | QAction* _actMapMountPoints;
|
---|
[3782] | 120 | QAction* _actStart;
|
---|
[182] | 121 | QAction* _actStop;
|
---|
[35] | 122 | QAction* _actAddMountPoints;
|
---|
| 123 | QAction* _actDeleteMountPoints;
|
---|
[399] | 124 | QAction* _actwhatsthis;
|
---|
| 125 | QAction* _actwhatsthismenu;
|
---|
[35] | 126 |
|
---|
| 127 | QLineEdit* _proxyHostLineEdit;
|
---|
| 128 | QLineEdit* _proxyPortLineEdit;
|
---|
[3356] | 129 | QLineEdit* _sslCaCertPathLineEdit;
|
---|
| 130 | QCheckBox* _ignoreSslErrorsCheckBox;
|
---|
[35] | 131 | QLineEdit* _outFileLineEdit;
|
---|
| 132 | QLineEdit* _outPortLineEdit;
|
---|
[1222] | 133 | QLineEdit* _outUPortLineEdit;
|
---|
[588] | 134 | QLineEdit* _outEphPortLineEdit;
|
---|
[934] | 135 | QLineEdit* _corrPortLineEdit;
|
---|
[83] | 136 | QLineEdit* _rnxPathLineEdit;
|
---|
[533] | 137 | QLineEdit* _ephPathLineEdit;
|
---|
[934] | 138 | QLineEdit* _corrPathLineEdit;
|
---|
[1307] | 139 | QLineEdit* _miscMountLineEdit;
|
---|
[5641] | 140 | QLineEdit* _miscPortLineEdit;
|
---|
[3602] | 141 |
|
---|
[3892] | 142 | QComboBox* _reqcActionComboBox;
|
---|
| 143 | QPushButton* _reqcEditOptionButton;
|
---|
| 144 | qtFileChooser* _reqcObsFileChooser;
|
---|
| 145 | qtFileChooser* _reqcNavFileChooser;
|
---|
| 146 | QLineEdit* _reqcOutObsLineEdit;
|
---|
| 147 | QLineEdit* _reqcOutNavLineEdit;
|
---|
| 148 | QLineEdit* _reqcOutLogLineEdit;
|
---|
[4449] | 149 | QLineEdit* _reqcPlotDirLineEdit;
|
---|
[5144] | 150 | QComboBox* _reqcSkyPlotSystems;
|
---|
[3731] | 151 |
|
---|
[533] | 152 | QCheckBox* _rnxV3CheckBox;
|
---|
| 153 | QCheckBox* _ephV3CheckBox;
|
---|
[83] | 154 | QLineEdit* _rnxSkelLineEdit;
|
---|
[106] | 155 | QLineEdit* _rnxScrpLineEdit;
|
---|
[143] | 156 | QLineEdit* _logFileLineEdit;
|
---|
[2386] | 157 | QLineEdit* _rawOutFileLineEdit;
|
---|
[106] | 158 | QComboBox* _rnxIntrComboBox;
|
---|
[560] | 159 | QComboBox* _ephIntrComboBox;
|
---|
[934] | 160 | QComboBox* _corrIntrComboBox;
|
---|
[106] | 161 | QSpinBox* _rnxSamplSpinBox;
|
---|
[740] | 162 | QSpinBox* _binSamplSpinBox;
|
---|
[259] | 163 | QCheckBox* _rnxAppendCheckBox;
|
---|
[1333] | 164 | QCheckBox* _autoStartCheckBox;
|
---|
[1307] | 165 | QCheckBox* _scanRTCMCheckBox;
|
---|
[135] | 166 | QSpinBox* _waitTimeSpinBox;
|
---|
[686] | 167 | QComboBox* _obsRateComboBox;
|
---|
[668] | 168 | QSpinBox* _adviseFailSpinBox;
|
---|
| 169 | QSpinBox* _adviseRecoSpinBox;
|
---|
| 170 | QLineEdit* _adviseScriptLineEdit;
|
---|
[728] | 171 | QComboBox* _perfIntrComboBox;
|
---|
[83] | 172 | QTableWidget* _mountPointsTable;
|
---|
[1329] | 173 |
|
---|
[1327] | 174 | QLineEdit* _serialPortNameLineEdit;
|
---|
| 175 | QLineEdit* _serialMountPointLineEdit;
|
---|
[1329] | 176 | QComboBox* _serialBaudRateComboBox;
|
---|
| 177 | QComboBox* _serialParityComboBox;
|
---|
| 178 | QComboBox* _serialDataBitsComboBox;
|
---|
| 179 | QComboBox* _serialStopBitsComboBox;
|
---|
[1636] | 180 | QComboBox* _serialFlowControlComboBox;
|
---|
[1595] | 181 | QLineEdit* _serialHeightNMEALineEdit;
|
---|
[1601] | 182 | QLineEdit* _serialFileNMEALineEdit;
|
---|
[1595] | 183 | QComboBox* _serialAutoNMEAComboBox;
|
---|
[35] | 184 |
|
---|
[356] | 185 | QLineEdit* _LatLineEdit;
|
---|
| 186 | QLineEdit* _LonLineEdit;
|
---|
| 187 |
|
---|
[1170] | 188 | QComboBox* _onTheFlyComboBox;
|
---|
| 189 |
|
---|
[83] | 190 | QTextEdit* _log;
|
---|
| 191 |
|
---|
[1912] | 192 | QWidget* _canvas;
|
---|
[1925] | 193 | QTabWidget* _aogroup;
|
---|
[463] | 194 |
|
---|
[1925] | 195 | QTabWidget* _loggroup;
|
---|
[1932] | 196 | bncFigure* _bncFigure;
|
---|
[1972] | 197 | bncFigureLate* _bncFigureLate;
|
---|
[2141] | 198 | bncFigurePPP* _bncFigurePPP;
|
---|
[1912] | 199 |
|
---|
[6172] | 200 | QTableWidget* _cmbTable;
|
---|
| 201 | QLineEdit* _cmbMaxresLineEdit;
|
---|
| 202 | QComboBox* _cmbMethodComboBox;
|
---|
| 203 | QSpinBox* _cmbSamplSpinBox;
|
---|
| 204 | qtFileChooser* _cmbAntexFile;
|
---|
| 205 | QCheckBox* _cmbUseGlonass;
|
---|
[2868] | 206 |
|
---|
[3164] | 207 | QTableWidget* _uploadTable;
|
---|
[3197] | 208 | QComboBox* _uploadIntrComboBox;
|
---|
[4172] | 209 | QSpinBox* _uploadSamplRtcmEphCorrSpinBox;
|
---|
| 210 | QSpinBox* _uploadSamplSp3SpinBox;
|
---|
| 211 | QSpinBox* _uploadSamplClkRnxSpinBox;
|
---|
[3152] | 212 |
|
---|
[3245] | 213 | QLineEdit* _uploadEphHostLineEdit;
|
---|
| 214 | QLineEdit* _uploadEphPortLineEdit;
|
---|
| 215 | QLineEdit* _uploadEphPasswordLineEdit;
|
---|
| 216 | QLineEdit* _uploadEphMountpointLineEdit;
|
---|
| 217 | QSpinBox* _uploadEphSampleSpinBox;
|
---|
| 218 | bncBytesCounter* _uploadEphBytesCounter;
|
---|
[3240] | 219 |
|
---|
[5729] | 220 | bncCaster* _caster;
|
---|
[3249] | 221 | bncEphUploadCaster* _casterEph;
|
---|
[3735] | 222 |
|
---|
[3782] | 223 | bool _runningRealTime;
|
---|
[5971] | 224 | bool _runningPPP;
|
---|
| 225 | bool _runningEdit;
|
---|
| 226 | bool _runningQC;
|
---|
[4766] | 227 |
|
---|
[5971] | 228 | bool running() {return _runningRealTime || _runningPPP || _runningEdit || _runningQC;}
|
---|
| 229 |
|
---|
[5187] | 230 | bncMapWin* _mapWin;
|
---|
[5861] | 231 |
|
---|
[5187] | 232 | QList<bncGetThread*> _threads;
|
---|
[5179] | 233 |
|
---|
[5686] | 234 | t_pppWidgets _pppWidgets;
|
---|
[35] | 235 | };
|
---|
[5063] | 236 |
|
---|
| 237 | #ifdef GNSSCENTER_PLUGIN
|
---|
| 238 | #include "plugininterface.h"
|
---|
| 239 | class t_bncFactory : public QObject, public GnssCenter::t_pluginFactoryInterface {
|
---|
| 240 | Q_OBJECT
|
---|
| 241 | Q_INTERFACES(GnssCenter::t_pluginFactoryInterface)
|
---|
| 242 | public:
|
---|
| 243 | virtual QWidget* create() {return new bncWindow();}
|
---|
| 244 | virtual QString getName() const {return QString("BNC");}
|
---|
| 245 | };
|
---|
[35] | 246 | #endif
|
---|
[5063] | 247 |
|
---|
| 248 | #endif
|
---|