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

Last change on this file since 9889 was 9783, checked in by stuerze, 22 months ago

some changes regarding PPP

File size: 2.8 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
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* _snxtroSol;
64 QTableWidget* _staTable;
65 QComboBox* _lcGPS;
66 QComboBox* _lcGLONASS;
67 QComboBox* _lcGalileo;
68 QComboBox* _lcBDS;
69 QComboBox* _modelObs;
70 QComboBox* _pseudoObs;
71 QLineEdit* _sigmaC1;
72 QLineEdit* _sigmaL1;
73 QLineEdit* _sigmaGIM;
74 QSpinBox* _minObs;
75 QSpinBox* _minEle;
76 QLineEdit* _maxResC1;
77 QLineEdit* _maxResL1;
78 QLineEdit* _maxResGIM;
79 QCheckBox* _eleWgtCode;
80 QCheckBox* _eleWgtPhase;
81 QLineEdit* _seedingTime;
82
83 QSpinBox* _corrWaitTime;
84 QPushButton* _addStaButton;
85 QPushButton* _delStaButton;
86
87 QLineEdit* _plotCoordinates;
88 QPushButton* _mapWinButton;
89 QLineEdit* _audioResponse;
90 QLineEdit* _mapWinDotSize;
91 QComboBox* _mapWinDotColor;
92 QSlider* _mapSpeedSlider;
93
94 private slots:
95 void slotEnableWidgets();
96 void slotAddStation();
97 void slotDelStation();
98 void slotPPPTextChanged();
99
100 private:
101 void readOptions();
102 QList <QWidget*> _widgets;
103};
104
105#endif
Note: See TracBrowser for help on using the repository browser.