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

Last change on this file since 10212 was 10127, checked in by stuerze, 16 months ago
File size: 2.8 KB
RevLine 
[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
37class qtFileChooser;
38
[5699]39class 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;
[8905]71 QComboBox* _modelObs;
72 QComboBox* _pseudoObs;
[5692]73 QLineEdit* _sigmaC1;
74 QLineEdit* _sigmaL1;
[9302]75 QLineEdit* _sigmaGIM;
[5958]76 QSpinBox* _minObs;
77 QSpinBox* _minEle;
78 QLineEdit* _maxResC1;
79 QLineEdit* _maxResL1;
[9552]80 QLineEdit* _maxResGIM;
[5958]81 QCheckBox* _eleWgtCode;
82 QCheckBox* _eleWgtPhase;
83 QLineEdit* _seedingTime;
84
[5960]85 QSpinBox* _corrWaitTime;
86 QPushButton* _addStaButton;
87 QPushButton* _delStaButton;
88
[5893]89 QLineEdit* _plotCoordinates;
90 QPushButton* _mapWinButton;
[6728]91 QLineEdit* _audioResponse;
[5955]92 QLineEdit* _mapWinDotSize;
93 QComboBox* _mapWinDotColor;
[5893]94 QSlider* _mapSpeedSlider;
95
[5699]96 private slots:
[7488]97 void slotEnableWidgets();
[5703]98 void slotAddStation();
99 void slotDelStation();
[6747]100 void slotPPPTextChanged();
[5699]101
[5696]102 private:
103 void readOptions();
[5699]104 QList <QWidget*> _widgets;
[5692]105};
106
107#endif
Note: See TracBrowser for help on using the repository browser.