[5692] | 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 PPPWIDGETS_H
|
---|
| 26 | #define PPPWIDGETS_H
|
---|
| 27 |
|
---|
[8252] | 28 | #include <QCheckBox>
|
---|
| 29 | #include <QComboBox>
|
---|
| 30 | #include <QLineEdit>
|
---|
| 31 | #include <QObject>
|
---|
| 32 | #include <QPushButton>
|
---|
| 33 | #include <QRadioButton>
|
---|
| 34 | #include <QSpinBox>
|
---|
| 35 | #include <QTableWidget>
|
---|
[5692] | 36 |
|
---|
| 37 | class qtFileChooser;
|
---|
| 38 |
|
---|
[5699] | 39 | class t_pppWidgets : public QObject {
|
---|
| 40 | Q_OBJECT
|
---|
| 41 |
|
---|
[5692] | 42 | public:
|
---|
| 43 | t_pppWidgets();
|
---|
[7640] | 44 | ~t_pppWidgets();
|
---|
[5694] | 45 | void saveOptions();
|
---|
| 46 |
|
---|
[5692] | 47 | QComboBox* _dataSource;
|
---|
| 48 | qtFileChooser* _rinexObs;
|
---|
| 49 | qtFileChooser* _rinexNav;
|
---|
[7488] | 50 | QLineEdit* _corrMount;
|
---|
[9599] | 51 | QLineEdit* _ionoMount;
|
---|
[7488] | 52 | qtFileChooser* _corrFile;
|
---|
[9599] | 53 | qtFileChooser* _ionoFile;
|
---|
[5692] | 54 | qtFileChooser* _crdFile;
|
---|
| 55 | qtFileChooser* _antexFile;
|
---|
[7961] | 56 | qtFileChooser* _blqFile;
|
---|
[7506] | 57 | QLineEdit* _logPath;
|
---|
| 58 | QLineEdit* _nmeaPath;
|
---|
| 59 | QLineEdit* _snxtroPath;
|
---|
[8403] | 60 | QComboBox* _snxtroSampl;
|
---|
[7488] | 61 | QComboBox* _snxtroIntr;
|
---|
[7764] | 62 | QLineEdit* _snxtroAc;
|
---|
[10127] | 63 | QLineEdit* _snxtroSolId;
|
---|
| 64 | QLineEdit* _snxtroSolType;
|
---|
| 65 | QLineEdit* _snxtroCampId;
|
---|
[5692] | 66 | QTableWidget* _staTable;
|
---|
| 67 | QComboBox* _lcGPS;
|
---|
| 68 | QComboBox* _lcGLONASS;
|
---|
| 69 | QComboBox* _lcGalileo;
|
---|
[6883] | 70 | QComboBox* _lcBDS;
|
---|
[10251] | 71 | QComboBox* _constraints;
|
---|
[5692] | 72 | QLineEdit* _sigmaC1;
|
---|
| 73 | QLineEdit* _sigmaL1;
|
---|
[9302] | 74 | QLineEdit* _sigmaGIM;
|
---|
[5958] | 75 | QSpinBox* _minObs;
|
---|
| 76 | QSpinBox* _minEle;
|
---|
| 77 | QLineEdit* _maxResC1;
|
---|
| 78 | QLineEdit* _maxResL1;
|
---|
[9552] | 79 | QLineEdit* _maxResGIM;
|
---|
[5958] | 80 | QCheckBox* _eleWgtCode;
|
---|
| 81 | QCheckBox* _eleWgtPhase;
|
---|
| 82 | QLineEdit* _seedingTime;
|
---|
| 83 |
|
---|
[5960] | 84 | QSpinBox* _corrWaitTime;
|
---|
| 85 | QPushButton* _addStaButton;
|
---|
| 86 | QPushButton* _delStaButton;
|
---|
| 87 |
|
---|
[5893] | 88 | QLineEdit* _plotCoordinates;
|
---|
| 89 | QPushButton* _mapWinButton;
|
---|
[6728] | 90 | QLineEdit* _audioResponse;
|
---|
[5955] | 91 | QLineEdit* _mapWinDotSize;
|
---|
| 92 | QComboBox* _mapWinDotColor;
|
---|
[5893] | 93 | QSlider* _mapSpeedSlider;
|
---|
| 94 |
|
---|
[5699] | 95 | private slots:
|
---|
[7488] | 96 | void slotEnableWidgets();
|
---|
[5703] | 97 | void slotAddStation();
|
---|
| 98 | void slotDelStation();
|
---|
[6747] | 99 | void slotPPPTextChanged();
|
---|
[5699] | 100 |
|
---|
[5696] | 101 | private:
|
---|
| 102 | void readOptions();
|
---|
[5699] | 103 | QList <QWidget*> _widgets;
|
---|
[5692] | 104 | };
|
---|
| 105 |
|
---|
| 106 | #endif
|
---|