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

Last change on this file since 3284 was 3284, checked in by mervart, 13 years ago
File size: 6.1 KB
RevLine 
[280]1// Part of BNC, a utility for retrieving decoding and
[464]2// converting GNSS data streams from NTRIP broadcasters.
[280]3//
[464]4// Copyright (C) 2007
[280]5// German Federal Agency for Cartography and Geodesy (BKG)
6// http://www.bkg.bund.de
[464]7// Czech Technical University Prague, Department of Geodesy
[280]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.
[35]24
25#ifndef BNCWINDOW_H
26#define BNCWINDOW_H
27
28#include <QtGui>
[399]29#include <QWhatsThis>
[35]30
31#include "bncgetthread.h"
[463]32#include "bnccaster.h"
[35]33
[1925]34class bncAboutDlg : public QDialog {
[35]35 Q_OBJECT
36 public:
[679]37 bncAboutDlg(QWidget* parent);
38 ~bncAboutDlg();
39};
40
[1932]41class bncFlowchartDlg : public QDialog {
[989]42 Q_OBJECT
43
44 public:
45 bncFlowchartDlg(QWidget* parent);
46 ~bncFlowchartDlg();
47};
48
[1932]49class bncFigure;
[1972]50class bncFigureLate;
[2141]51class bncFigurePPP;
[3245]52class bncBytesCounter;
[3249]53class bncEphUploadCaster;
[1932]54
55class bncWindow : public QMainWindow {
[679]56 Q_OBJECT
57
58 public:
[35]59 bncWindow();
[83]60 ~bncWindow();
[679]61 void CreateMenu();
62 void AddToolbar();
[1912]63
[83]64 public slots:
[1179]65 void slotMountPointsRead(QList<bncGetThread*>);
[2128]66 void slotBncTextChanged();
[35]67
68 private slots:
[1299]69 void slotWindowMessage(const QByteArray msg, bool showOnScreen);
[108]70 void slotHelp();
71 void slotAbout();
[989]72 void slotFlowchart();
[111]73 void slotFontSel();
[35]74 void slotSaveOptions();
75 void slotAddMountPoints();
76 void slotGetData();
[182]77 void slotStop();
[35]78 void slotNewMountPoints(QStringList* mountPoints);
79 void slotDeleteMountPoints();
[1556]80 void slotGetThreadsFinished();
[83]81 void slotSelectionChanged();
[399]82 void slotWhatsThis();
[2869]83 void slotAddCmbRow();
84 void slotDelCmbRow();
[3164]85 void slotAddUploadRow();
86 void slotDelUploadRow();
87 void slotSetUploadTrafo();
[35]88
[83]89 protected:
90 virtual void closeEvent(QCloseEvent *);
91
[35]92 private:
[1178]93 void populateMountPointsTable();
[2870]94 void populateCmbTable();
[3164]95 void populateUploadTable();
[1178]96
[35]97 QMenu* _menuHlp;
98 QMenu* _menuFile;
99
[108]100 QAction* _actHelp;
[35]101 QAction* _actAbout;
[989]102 QAction* _actFlowchart;
[111]103 QAction* _actFontSel;
[35]104 QAction* _actSaveOpt;
105 QAction* _actQuit;
106 QAction* _actGetData;
[182]107 QAction* _actStop;
[35]108 QAction* _actAddMountPoints;
109 QAction* _actDeleteMountPoints;
[399]110 QAction* _actwhatsthis;
111 QAction* _actwhatsthismenu;
[35]112
113 QLineEdit* _proxyHostLineEdit;
114 QLineEdit* _proxyPortLineEdit;
115 QLineEdit* _outFileLineEdit;
116 QLineEdit* _outPortLineEdit;
[1222]117 QLineEdit* _outUPortLineEdit;
[588]118 QLineEdit* _outEphPortLineEdit;
[934]119 QLineEdit* _corrPortLineEdit;
[83]120 QLineEdit* _rnxPathLineEdit;
[533]121 QLineEdit* _ephPathLineEdit;
[934]122 QLineEdit* _corrPathLineEdit;
[1307]123 QLineEdit* _miscMountLineEdit;
[2003]124 QLineEdit* _pppMountLineEdit;
[2967]125 QLineEdit* _pppCorrMountLineEdit;
[2126]126 QLineEdit* _pppNMEALineEdit;
[2185]127 QLineEdit* _pppNMEAPortLineEdit;
[2473]128 QLineEdit* _pppSigCLineEdit;
129 QLineEdit* _pppSigPLineEdit;
[2718]130 QLineEdit* _pppSigCrd0;
131 QLineEdit* _pppSigCrdP;
132 QLineEdit* _pppSigTrp0;
133 QLineEdit* _pppSigTrpP;
[2811]134 QLineEdit* _pppSync;
[2597]135 QLineEdit* _pppAverageLineEdit;
[2719]136 QLineEdit* _pppQuickStartLineEdit;
[3111]137 QLineEdit* _pppMaxSolGapLineEdit;
[2165]138 QLineEdit* _pppRefCrdXLineEdit;
139 QLineEdit* _pppRefCrdYLineEdit;
140 QLineEdit* _pppRefCrdZLineEdit;
[3284]141 QLineEdit* _pppRefdNLineEdit;
142 QLineEdit* _pppRefdELineEdit;
143 QLineEdit* _pppRefdULineEdit;
[2718]144 QCheckBox* _pppPlotCoordinates;
[2083]145 QCheckBox* _pppUsePhaseCheckBox;
[2086]146 QCheckBox* _pppEstTropoCheckBox;
[2137]147 QCheckBox* _pppGLONASSCheckBox;
[2794]148 QCheckBox* _pppGalileoCheckBox;
[2876]149 QLineEdit* _pppAntennaLineEdit;
150 QLineEdit* _pppAntexLineEdit;
[2950]151 QCheckBox* _pppApplySatAntCheckBox;
[533]152 QCheckBox* _rnxV3CheckBox;
153 QCheckBox* _ephV3CheckBox;
[83]154 QLineEdit* _rnxSkelLineEdit;
[106]155 QLineEdit* _rnxScrpLineEdit;
[143]156 QLineEdit* _logFileLineEdit;
[2386]157 QLineEdit* _rawOutFileLineEdit;
[2341]158 QComboBox* _pppSPPComboBox;
[106]159 QComboBox* _rnxIntrComboBox;
[560]160 QComboBox* _ephIntrComboBox;
[934]161 QComboBox* _corrIntrComboBox;
[106]162 QSpinBox* _rnxSamplSpinBox;
[740]163 QSpinBox* _binSamplSpinBox;
[259]164 QCheckBox* _rnxAppendCheckBox;
[1333]165 QCheckBox* _autoStartCheckBox;
[1307]166 QCheckBox* _scanRTCMCheckBox;
[135]167 QSpinBox* _waitTimeSpinBox;
[967]168 QSpinBox* _corrTimeSpinBox;
[686]169 QComboBox* _obsRateComboBox;
[668]170 QSpinBox* _adviseFailSpinBox;
171 QSpinBox* _adviseRecoSpinBox;
172 QLineEdit* _adviseScriptLineEdit;
[728]173 QComboBox* _perfIntrComboBox;
[83]174 QTableWidget* _mountPointsTable;
[1329]175
[1327]176 QLineEdit* _serialPortNameLineEdit;
177 QLineEdit* _serialMountPointLineEdit;
[1329]178 QComboBox* _serialBaudRateComboBox;
179 QComboBox* _serialParityComboBox;
180 QComboBox* _serialDataBitsComboBox;
181 QComboBox* _serialStopBitsComboBox;
[1636]182 QComboBox* _serialFlowControlComboBox;
[1595]183 QLineEdit* _serialHeightNMEALineEdit;
[1601]184 QLineEdit* _serialFileNMEALineEdit;
[1595]185 QComboBox* _serialAutoNMEAComboBox;
[35]186
[356]187 QLineEdit* _LatLineEdit;
188 QLineEdit* _LonLineEdit;
189
[1170]190 QComboBox* _onTheFlyComboBox;
191
[83]192 QTextEdit* _log;
193
[1912]194 QWidget* _canvas;
[1925]195 QTabWidget* _aogroup;
[463]196
[1925]197 QTabWidget* _loggroup;
[1932]198 bncFigure* _bncFigure;
[1972]199 bncFigureLate* _bncFigureLate;
[2141]200 bncFigurePPP* _bncFigurePPP;
[1912]201
[2868]202 QTableWidget* _cmbTable;
203
[3164]204 QTableWidget* _uploadTable;
[3197]205 QComboBox* _uploadIntrComboBox;
206 QSpinBox* _uploadSamplSpinBox;
[3152]207
[3245]208 QLineEdit* _uploadEphHostLineEdit;
209 QLineEdit* _uploadEphPortLineEdit;
210 QLineEdit* _uploadEphPasswordLineEdit;
211 QLineEdit* _uploadEphMountpointLineEdit;
212 QSpinBox* _uploadEphSampleSpinBox;
213 bncBytesCounter* _uploadEphBytesCounter;
[3240]214
[463]215 bncCaster* _caster;
[3249]216
217 bncEphUploadCaster* _casterEph;
[35]218};
219#endif
Note: See TracBrowser for help on using the repository browser.