source: ntrip/trunk/BNC/src/pppWidgets.h@ 10792

Last change on this file since 10792 was 10791, checked in by mervart, 4 days ago

BNC Multifrequency and PPPAR Client (initial version)

File size: 3.1 KB
Line 
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
37class qtFileChooser;
38
39class t_pppWidgets : public QObject {
40 Q_OBJECT
41
42public:
43 t_pppWidgets();
44 ~t_pppWidgets();
45 void saveOptions();
46
47 QComboBox* _dataSource;
48 qtFileChooser* _rinexObs;
49 qtFileChooser* _rinexNav;
50 QLineEdit* _corrMount;
51 QLineEdit* _biasMount;
52 QLineEdit* _ionoMount;
53 qtFileChooser* _corrFile;
54 qtFileChooser* _biasFile;
55 qtFileChooser* _ionoFile;
56 qtFileChooser* _crdFile;
57 qtFileChooser* _antexFile;
58 qtFileChooser* _blqFile;
59 QLineEdit* _logPath;
60 QComboBox* _logMode;
61 QLineEdit* _nmeaPath;
62 QLineEdit* _snxtroPath;
63 QComboBox* _snxtroSampl;
64 QComboBox* _snxtroIntr;
65 QLineEdit* _snxtroAc;
66 QLineEdit* _snxtroSolId;
67 QLineEdit* _snxtroSolType;
68 QLineEdit* _snxtroCampId;
69 QTableWidget* _staTable;
70 QComboBox* _lcGPS;
71 QComboBox* _lcGLONASS;
72 QComboBox* _lcGalileo;
73 QComboBox* _lcBDS;
74 QComboBox* _constraints;
75 QLineEdit* _sigmaC1;
76 QLineEdit* _sigmaL1;
77 QLineEdit* _sigmaGIM;
78 QSpinBox* _minObs;
79 QSpinBox* _minEle;
80 QLineEdit* _maxResC1;
81 QLineEdit* _maxResL1;
82 QLineEdit* _maxResGIM;
83 QCheckBox* _eleWgtCode;
84 QCheckBox* _eleWgtPhase;
85 QLineEdit* _seedingTime;
86
87 QSpinBox* _corrWaitTime;
88 QPushButton* _addStaButton;
89 QPushButton* _delStaButton;
90
91 QLineEdit* _plotCoordinates;
92 QPushButton* _mapWinButton;
93 QLineEdit* _audioResponse;
94 QLineEdit* _mapWinDotSize;
95 QComboBox* _mapWinDotColor;
96 QSlider* _mapSpeedSlider;
97
98 QCheckBox* _arGPS;
99 QCheckBox* _arGalileo;
100 QCheckBox* _arBDS;
101 QSpinBox* _arMinNumEpo;
102 QSpinBox* _arMinNumSat;
103 QCheckBox* _arUseYaw;
104 QLineEdit* _arMaxFrac;
105 QLineEdit* _arMaxSig;
106
107private slots:
108 void slotEnableWidgets();
109 void slotAddStation();
110 void slotDelStation();
111 void slotPPPTextChanged();
112
113private:
114 void readOptions();
115 QList <QWidget*> _widgets;
116};
117
118#endif
Note: See TracBrowser for help on using the repository browser.