[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"
|
---|
[35] | 33 |
|
---|
[679] | 34 | class bncAboutDlg : public QDialog {
|
---|
[35] | 35 | Q_OBJECT
|
---|
| 36 |
|
---|
| 37 | public:
|
---|
[679] | 38 | bncAboutDlg(QWidget* parent);
|
---|
| 39 | ~bncAboutDlg();
|
---|
| 40 | };
|
---|
| 41 |
|
---|
[989] | 42 | class bncFlowchartDlg : public QDialog {
|
---|
| 43 | Q_OBJECT
|
---|
| 44 |
|
---|
| 45 | public:
|
---|
| 46 | bncFlowchartDlg(QWidget* parent);
|
---|
| 47 | ~bncFlowchartDlg();
|
---|
| 48 | };
|
---|
| 49 |
|
---|
[679] | 50 | class bncWindow : public QMainWindow {
|
---|
| 51 | Q_OBJECT
|
---|
| 52 |
|
---|
| 53 | public:
|
---|
[35] | 54 | bncWindow();
|
---|
[83] | 55 | ~bncWindow();
|
---|
[679] | 56 | void CreateMenu();
|
---|
| 57 | void AddToolbar();
|
---|
[83] | 58 |
|
---|
| 59 | public slots:
|
---|
[1179] | 60 | void slotMountPointsRead(QList<bncGetThread*>);
|
---|
[1439] | 61 | void bncText(const QString &text);
|
---|
[35] | 62 |
|
---|
| 63 | private slots:
|
---|
[1299] | 64 | void slotWindowMessage(const QByteArray msg, bool showOnScreen);
|
---|
[108] | 65 | void slotHelp();
|
---|
| 66 | void slotAbout();
|
---|
[989] | 67 | void slotFlowchart();
|
---|
[111] | 68 | void slotFontSel();
|
---|
[35] | 69 | void slotSaveOptions();
|
---|
| 70 | void slotAddMountPoints();
|
---|
| 71 | void slotGetData();
|
---|
[182] | 72 | void slotStop();
|
---|
[35] | 73 | void slotNewMountPoints(QStringList* mountPoints);
|
---|
| 74 | void slotDeleteMountPoints();
|
---|
| 75 | void slotGetThreadErrors();
|
---|
[83] | 76 | void slotSelectionChanged();
|
---|
[399] | 77 | void slotWhatsThis();
|
---|
[35] | 78 |
|
---|
[83] | 79 | protected:
|
---|
| 80 | virtual void closeEvent(QCloseEvent *);
|
---|
| 81 |
|
---|
[35] | 82 | private:
|
---|
[1178] | 83 | void populateMountPointsTable();
|
---|
| 84 |
|
---|
[35] | 85 | QMenu* _menuHlp;
|
---|
| 86 | QMenu* _menuFile;
|
---|
| 87 |
|
---|
[108] | 88 | QAction* _actHelp;
|
---|
[35] | 89 | QAction* _actAbout;
|
---|
[989] | 90 | QAction* _actFlowchart;
|
---|
[111] | 91 | QAction* _actFontSel;
|
---|
[35] | 92 | QAction* _actSaveOpt;
|
---|
| 93 | QAction* _actQuit;
|
---|
| 94 | QAction* _actGetData;
|
---|
[182] | 95 | QAction* _actStop;
|
---|
[35] | 96 | QAction* _actAddMountPoints;
|
---|
| 97 | QAction* _actDeleteMountPoints;
|
---|
[399] | 98 | QAction* _actwhatsthis;
|
---|
| 99 | QAction* _actwhatsthismenu;
|
---|
[35] | 100 |
|
---|
| 101 | QLineEdit* _proxyHostLineEdit;
|
---|
| 102 | QLineEdit* _proxyPortLineEdit;
|
---|
| 103 | QLineEdit* _outFileLineEdit;
|
---|
| 104 | QLineEdit* _outPortLineEdit;
|
---|
[1222] | 105 | QLineEdit* _outUPortLineEdit;
|
---|
[588] | 106 | QLineEdit* _outEphPortLineEdit;
|
---|
[934] | 107 | QLineEdit* _corrPortLineEdit;
|
---|
[83] | 108 | QLineEdit* _rnxPathLineEdit;
|
---|
[533] | 109 | QLineEdit* _ephPathLineEdit;
|
---|
[934] | 110 | QLineEdit* _corrPathLineEdit;
|
---|
[1307] | 111 | QLineEdit* _miscMountLineEdit;
|
---|
[533] | 112 | QCheckBox* _rnxV3CheckBox;
|
---|
| 113 | QCheckBox* _ephV3CheckBox;
|
---|
[83] | 114 | QLineEdit* _rnxSkelLineEdit;
|
---|
[106] | 115 | QLineEdit* _rnxScrpLineEdit;
|
---|
[143] | 116 | QLineEdit* _logFileLineEdit;
|
---|
[106] | 117 | QComboBox* _rnxIntrComboBox;
|
---|
[560] | 118 | QComboBox* _ephIntrComboBox;
|
---|
[934] | 119 | QComboBox* _corrIntrComboBox;
|
---|
[106] | 120 | QSpinBox* _rnxSamplSpinBox;
|
---|
[740] | 121 | QSpinBox* _binSamplSpinBox;
|
---|
[259] | 122 | QCheckBox* _rnxAppendCheckBox;
|
---|
[1333] | 123 | QCheckBox* _autoStartCheckBox;
|
---|
[1307] | 124 | QCheckBox* _scanRTCMCheckBox;
|
---|
[722] | 125 | QCheckBox* _makePauseCheckBox;
|
---|
[135] | 126 | QSpinBox* _waitTimeSpinBox;
|
---|
[967] | 127 | QSpinBox* _corrTimeSpinBox;
|
---|
[686] | 128 | QComboBox* _obsRateComboBox;
|
---|
[668] | 129 | QSpinBox* _adviseFailSpinBox;
|
---|
| 130 | QSpinBox* _adviseRecoSpinBox;
|
---|
| 131 | QLineEdit* _adviseScriptLineEdit;
|
---|
[728] | 132 | QComboBox* _perfIntrComboBox;
|
---|
[83] | 133 | QTableWidget* _mountPointsTable;
|
---|
[1329] | 134 |
|
---|
[1327] | 135 | QLineEdit* _serialPortNameLineEdit;
|
---|
| 136 | QLineEdit* _serialMountPointLineEdit;
|
---|
[1329] | 137 | QComboBox* _serialBaudRateComboBox;
|
---|
| 138 | QComboBox* _serialParityComboBox;
|
---|
| 139 | QComboBox* _serialDataBitsComboBox;
|
---|
| 140 | QComboBox* _serialStopBitsComboBox;
|
---|
[1340] | 141 | QCheckBox* _serialAutoNMEACheckBox;
|
---|
[35] | 142 |
|
---|
[356] | 143 | QLineEdit* _LatLineEdit;
|
---|
| 144 | QLineEdit* _LonLineEdit;
|
---|
| 145 |
|
---|
[1170] | 146 | QComboBox* _onTheFlyComboBox;
|
---|
| 147 |
|
---|
[83] | 148 | QTextEdit* _log;
|
---|
| 149 |
|
---|
[35] | 150 | QWidget* _canvas;
|
---|
[679] | 151 | QTabWidget* aogroup;
|
---|
[463] | 152 |
|
---|
| 153 | bncCaster* _caster;
|
---|
[35] | 154 | };
|
---|
| 155 | #endif
|
---|