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