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

Last change on this file since 10793 was 10791, checked in by mervart, 6 months ago

BNC Multifrequency and PPPAR Client (initial version)

File size: 3.1 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 {
[10791]40 Q_OBJECT
[5699]41
[10791]42public:
[5692]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;
[10791]51 QLineEdit* _biasMount;
[9599]52 QLineEdit* _ionoMount;
[7488]53 qtFileChooser* _corrFile;
[10791]54 qtFileChooser* _biasFile;
[9599]55 qtFileChooser* _ionoFile;
[5692]56 qtFileChooser* _crdFile;
57 qtFileChooser* _antexFile;
[7961]58 qtFileChooser* _blqFile;
[7506]59 QLineEdit* _logPath;
[10791]60 QComboBox* _logMode;
[7506]61 QLineEdit* _nmeaPath;
62 QLineEdit* _snxtroPath;
[8403]63 QComboBox* _snxtroSampl;
[7488]64 QComboBox* _snxtroIntr;
[7764]65 QLineEdit* _snxtroAc;
[10127]66 QLineEdit* _snxtroSolId;
67 QLineEdit* _snxtroSolType;
68 QLineEdit* _snxtroCampId;
[5692]69 QTableWidget* _staTable;
70 QComboBox* _lcGPS;
71 QComboBox* _lcGLONASS;
72 QComboBox* _lcGalileo;
[6883]73 QComboBox* _lcBDS;
[10251]74 QComboBox* _constraints;
[5692]75 QLineEdit* _sigmaC1;
76 QLineEdit* _sigmaL1;
[9302]77 QLineEdit* _sigmaGIM;
[5958]78 QSpinBox* _minObs;
79 QSpinBox* _minEle;
80 QLineEdit* _maxResC1;
81 QLineEdit* _maxResL1;
[9552]82 QLineEdit* _maxResGIM;
[5958]83 QCheckBox* _eleWgtCode;
84 QCheckBox* _eleWgtPhase;
85 QLineEdit* _seedingTime;
86
[5960]87 QSpinBox* _corrWaitTime;
88 QPushButton* _addStaButton;
89 QPushButton* _delStaButton;
90
[5893]91 QLineEdit* _plotCoordinates;
92 QPushButton* _mapWinButton;
[6728]93 QLineEdit* _audioResponse;
[5955]94 QLineEdit* _mapWinDotSize;
95 QComboBox* _mapWinDotColor;
[5893]96 QSlider* _mapSpeedSlider;
97
[10791]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:
[7488]108 void slotEnableWidgets();
[5703]109 void slotAddStation();
110 void slotDelStation();
[6747]111 void slotPPPTextChanged();
[5699]112
[10791]113private:
[5696]114 void readOptions();
[5699]115 QList <QWidget*> _widgets;
[5692]116};
117
118#endif
Note: See TracBrowser for help on using the repository browser.