source: ntrip/trunk/BNC/bncwindow.h@ 3111

Last change on this file since 3111 was 3111, checked in by weber, 13 years ago

Option Max Solution Gap added

File size: 5.6 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 BNCWINDOW_H
26#define BNCWINDOW_H
27
28#include <QtGui>
29#include <QWhatsThis>
30
31#include "bncgetthread.h"
32#include "bnccaster.h"
33
34class bncAboutDlg : public QDialog {
35 Q_OBJECT
36 public:
37 bncAboutDlg(QWidget* parent);
38 ~bncAboutDlg();
39};
40
41class bncFlowchartDlg : public QDialog {
42 Q_OBJECT
43
44 public:
45 bncFlowchartDlg(QWidget* parent);
46 ~bncFlowchartDlg();
47};
48
49class bncFigure;
50class bncFigureLate;
51class bncFigurePPP;
52
53class bncWindow : public QMainWindow {
54 Q_OBJECT
55
56 public:
57 bncWindow();
58 ~bncWindow();
59 void CreateMenu();
60 void AddToolbar();
61
62 public slots:
63 void slotMountPointsRead(QList<bncGetThread*>);
64 void slotBncTextChanged();
65
66 private slots:
67 void slotWindowMessage(const QByteArray msg, bool showOnScreen);
68 void slotHelp();
69 void slotAbout();
70 void slotFlowchart();
71 void slotFontSel();
72 void slotSaveOptions();
73 void slotAddMountPoints();
74 void slotGetData();
75 void slotStop();
76 void slotNewMountPoints(QStringList* mountPoints);
77 void slotDeleteMountPoints();
78 void slotGetThreadsFinished();
79 void slotSelectionChanged();
80 void slotWhatsThis();
81 void slotAddCmbRow();
82 void slotDelCmbRow();
83
84 protected:
85 virtual void closeEvent(QCloseEvent *);
86
87 private:
88 void populateMountPointsTable();
89 void populateCmbTable();
90
91 QMenu* _menuHlp;
92 QMenu* _menuFile;
93
94 QAction* _actHelp;
95 QAction* _actAbout;
96 QAction* _actFlowchart;
97 QAction* _actFontSel;
98 QAction* _actSaveOpt;
99 QAction* _actQuit;
100 QAction* _actGetData;
101 QAction* _actStop;
102 QAction* _actAddMountPoints;
103 QAction* _actDeleteMountPoints;
104 QAction* _actwhatsthis;
105 QAction* _actwhatsthismenu;
106
107 QLineEdit* _proxyHostLineEdit;
108 QLineEdit* _proxyPortLineEdit;
109 QLineEdit* _outFileLineEdit;
110 QLineEdit* _outPortLineEdit;
111 QLineEdit* _outUPortLineEdit;
112 QLineEdit* _outEphPortLineEdit;
113 QLineEdit* _corrPortLineEdit;
114 QLineEdit* _rnxPathLineEdit;
115 QLineEdit* _ephPathLineEdit;
116 QLineEdit* _corrPathLineEdit;
117 QLineEdit* _miscMountLineEdit;
118 QLineEdit* _pppMountLineEdit;
119 QLineEdit* _pppCorrMountLineEdit;
120 QLineEdit* _pppNMEALineEdit;
121 QLineEdit* _pppNMEAPortLineEdit;
122 QLineEdit* _pppSigCLineEdit;
123 QLineEdit* _pppSigPLineEdit;
124 QLineEdit* _pppSigCrd0;
125 QLineEdit* _pppSigCrdP;
126 QLineEdit* _pppSigTrp0;
127 QLineEdit* _pppSigTrpP;
128 QLineEdit* _pppSync;
129 QLineEdit* _pppAverageLineEdit;
130 QLineEdit* _pppQuickStartLineEdit;
131 QLineEdit* _pppMaxSolGapLineEdit;
132 QLineEdit* _pppRefCrdXLineEdit;
133 QLineEdit* _pppRefCrdYLineEdit;
134 QLineEdit* _pppRefCrdZLineEdit;
135 QCheckBox* _pppPlotCoordinates;
136 QCheckBox* _pppUsePhaseCheckBox;
137 QCheckBox* _pppEstTropoCheckBox;
138 QCheckBox* _pppGLONASSCheckBox;
139 QCheckBox* _pppGalileoCheckBox;
140 QLineEdit* _pppAntennaLineEdit;
141 QLineEdit* _pppAntexLineEdit;
142 QCheckBox* _pppApplySatAntCheckBox;
143 QCheckBox* _rnxV3CheckBox;
144 QCheckBox* _ephV3CheckBox;
145 QLineEdit* _rnxSkelLineEdit;
146 QLineEdit* _rnxScrpLineEdit;
147 QLineEdit* _logFileLineEdit;
148 QLineEdit* _rawOutFileLineEdit;
149 QComboBox* _pppSPPComboBox;
150 QComboBox* _rnxIntrComboBox;
151 QComboBox* _ephIntrComboBox;
152 QComboBox* _corrIntrComboBox;
153 QSpinBox* _rnxSamplSpinBox;
154 QSpinBox* _binSamplSpinBox;
155 QCheckBox* _rnxAppendCheckBox;
156 QCheckBox* _autoStartCheckBox;
157 QCheckBox* _scanRTCMCheckBox;
158 QSpinBox* _waitTimeSpinBox;
159 QSpinBox* _corrTimeSpinBox;
160 QComboBox* _obsRateComboBox;
161 QSpinBox* _adviseFailSpinBox;
162 QSpinBox* _adviseRecoSpinBox;
163 QLineEdit* _adviseScriptLineEdit;
164 QComboBox* _perfIntrComboBox;
165 QTableWidget* _mountPointsTable;
166
167 QLineEdit* _serialPortNameLineEdit;
168 QLineEdit* _serialMountPointLineEdit;
169 QComboBox* _serialBaudRateComboBox;
170 QComboBox* _serialParityComboBox;
171 QComboBox* _serialDataBitsComboBox;
172 QComboBox* _serialStopBitsComboBox;
173 QComboBox* _serialFlowControlComboBox;
174 QLineEdit* _serialHeightNMEALineEdit;
175 QLineEdit* _serialFileNMEALineEdit;
176 QComboBox* _serialAutoNMEAComboBox;
177
178 QLineEdit* _LatLineEdit;
179 QLineEdit* _LonLineEdit;
180
181 QComboBox* _onTheFlyComboBox;
182
183 QTextEdit* _log;
184
185 QWidget* _canvas;
186 QTabWidget* _aogroup;
187
188 QTabWidget* _loggroup;
189 bncFigure* _bncFigure;
190 bncFigureLate* _bncFigureLate;
191 bncFigurePPP* _bncFigurePPP;
192
193 QTableWidget* _cmbTable;
194 QLineEdit* _cmbOutHostLineEdit;
195 QLineEdit* _cmbOutPortLineEdit;
196 QLineEdit* _cmbMountpointLineEdit;
197 QLineEdit* _cmbPasswordLineEdit;
198 QLineEdit* _cmbOutPathLineEdit;
199 QLineEdit* _cmbSP3PathLineEdit;
200
201 bncCaster* _caster;
202};
203#endif
Note: See TracBrowser for help on using the repository browser.