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

Last change on this file since 2870 was 2870, checked in by mervart, 13 years ago
File size: 5.2 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* _pppNMEALineEdit;
120 QLineEdit* _pppNMEAPortLineEdit;
121 QLineEdit* _pppSigCLineEdit;
122 QLineEdit* _pppSigPLineEdit;
123 QLineEdit* _pppSigCrd0;
124 QLineEdit* _pppSigCrdP;
125 QLineEdit* _pppSigTrp0;
126 QLineEdit* _pppSigTrpP;
127 QLineEdit* _pppSync;
128 QLineEdit* _pppAverageLineEdit;
129 QLineEdit* _pppQuickStartLineEdit;
130 QLineEdit* _pppRefCrdXLineEdit;
131 QLineEdit* _pppRefCrdYLineEdit;
132 QLineEdit* _pppRefCrdZLineEdit;
133 QCheckBox* _pppPlotCoordinates;
134 QCheckBox* _pppUsePhaseCheckBox;
135 QCheckBox* _pppEstTropoCheckBox;
136 QCheckBox* _pppGLONASSCheckBox;
137 QCheckBox* _pppGalileoCheckBox;
138 QCheckBox* _rnxV3CheckBox;
139 QCheckBox* _ephV3CheckBox;
140 QLineEdit* _rnxSkelLineEdit;
141 QLineEdit* _rnxScrpLineEdit;
142 QLineEdit* _logFileLineEdit;
143 QLineEdit* _rawOutFileLineEdit;
144 QComboBox* _pppSPPComboBox;
145 QComboBox* _rnxIntrComboBox;
146 QComboBox* _ephIntrComboBox;
147 QComboBox* _corrIntrComboBox;
148 QSpinBox* _rnxSamplSpinBox;
149 QSpinBox* _binSamplSpinBox;
150 QCheckBox* _rnxAppendCheckBox;
151 QCheckBox* _autoStartCheckBox;
152 QCheckBox* _scanRTCMCheckBox;
153 QSpinBox* _waitTimeSpinBox;
154 QSpinBox* _corrTimeSpinBox;
155 QComboBox* _obsRateComboBox;
156 QSpinBox* _adviseFailSpinBox;
157 QSpinBox* _adviseRecoSpinBox;
158 QLineEdit* _adviseScriptLineEdit;
159 QComboBox* _perfIntrComboBox;
160 QTableWidget* _mountPointsTable;
161
162 QLineEdit* _serialPortNameLineEdit;
163 QLineEdit* _serialMountPointLineEdit;
164 QComboBox* _serialBaudRateComboBox;
165 QComboBox* _serialParityComboBox;
166 QComboBox* _serialDataBitsComboBox;
167 QComboBox* _serialStopBitsComboBox;
168 QComboBox* _serialFlowControlComboBox;
169 QLineEdit* _serialHeightNMEALineEdit;
170 QLineEdit* _serialFileNMEALineEdit;
171 QComboBox* _serialAutoNMEAComboBox;
172
173 QLineEdit* _LatLineEdit;
174 QLineEdit* _LonLineEdit;
175
176 QComboBox* _onTheFlyComboBox;
177
178 QTextEdit* _log;
179
180 QWidget* _canvas;
181 QTabWidget* _aogroup;
182
183 QTabWidget* _loggroup;
184 bncFigure* _bncFigure;
185 bncFigureLate* _bncFigureLate;
186 bncFigurePPP* _bncFigurePPP;
187
188 QTableWidget* _cmbTable;
189
190 bncCaster* _caster;
191};
192#endif
Note: See TracBrowser for help on using the repository browser.