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

Last change on this file since 1487 was 1487, checked in by weber, 15 years ago

* empty log message *

File size: 4.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
34 class bncAboutDlg : public QDialog {
35 Q_OBJECT
36
37 public:
38 bncAboutDlg(QWidget* parent);
39 ~bncAboutDlg();
40};
41
42 class bncFlowchartDlg : public QDialog {
43 Q_OBJECT
44
45 public:
46 bncFlowchartDlg(QWidget* parent);
47 ~bncFlowchartDlg();
48};
49
50 class bncWindow : public QMainWindow {
51 Q_OBJECT
52
53 public:
54 bncWindow();
55 ~bncWindow();
56 void CreateMenu();
57 void AddToolbar();
58
59 public slots:
60 void slotMountPointsRead(QList<bncGetThread*>);
61 void bncText(const QString &text);
62
63 private slots:
64 void slotWindowMessage(const QByteArray msg, bool showOnScreen);
65 void slotHelp();
66 void slotAbout();
67 void slotFlowchart();
68 void slotFontSel();
69 void slotSaveOptions();
70 void slotResetOptions();
71 void slotAddMountPoints();
72 void slotGetData();
73 void slotStop();
74 void slotNewMountPoints(QStringList* mountPoints);
75 void slotDeleteMountPoints();
76 void slotGetThreadErrors();
77 void slotSelectionChanged();
78 void slotWhatsThis();
79
80 protected:
81 virtual void closeEvent(QCloseEvent *);
82
83 private:
84 void populateMountPointsTable();
85
86 QMenu* _menuHlp;
87 QMenu* _menuFile;
88
89 QAction* _actHelp;
90 QAction* _actAbout;
91 QAction* _actFlowchart;
92 QAction* _actFontSel;
93 QAction* _actSaveOpt;
94 QAction* _actResetOpt;
95 QAction* _actQuit;
96 QAction* _actGetData;
97 QAction* _actStop;
98 QAction* _actAddMountPoints;
99 QAction* _actDeleteMountPoints;
100 QAction* _actwhatsthis;
101 QAction* _actwhatsthismenu;
102
103 QLineEdit* _proxyHostLineEdit;
104 QLineEdit* _proxyPortLineEdit;
105 QLineEdit* _outFileLineEdit;
106 QLineEdit* _outPortLineEdit;
107 QLineEdit* _outUPortLineEdit;
108 QLineEdit* _outEphPortLineEdit;
109 QLineEdit* _corrPortLineEdit;
110 QLineEdit* _rnxPathLineEdit;
111 QLineEdit* _ephPathLineEdit;
112 QLineEdit* _corrPathLineEdit;
113 QLineEdit* _miscMountLineEdit;
114 QCheckBox* _rnxV3CheckBox;
115 QCheckBox* _ephV3CheckBox;
116 QLineEdit* _rnxSkelLineEdit;
117 QLineEdit* _rnxScrpLineEdit;
118 QLineEdit* _logFileLineEdit;
119 QComboBox* _rnxIntrComboBox;
120 QComboBox* _ephIntrComboBox;
121 QComboBox* _corrIntrComboBox;
122 QSpinBox* _rnxSamplSpinBox;
123 QSpinBox* _binSamplSpinBox;
124 QCheckBox* _rnxAppendCheckBox;
125 QCheckBox* _autoStartCheckBox;
126 QCheckBox* _scanRTCMCheckBox;
127 QCheckBox* _makePauseCheckBox;
128 QSpinBox* _waitTimeSpinBox;
129 QSpinBox* _corrTimeSpinBox;
130 QComboBox* _obsRateComboBox;
131 QSpinBox* _adviseFailSpinBox;
132 QSpinBox* _adviseRecoSpinBox;
133 QLineEdit* _adviseScriptLineEdit;
134 QComboBox* _perfIntrComboBox;
135 QTableWidget* _mountPointsTable;
136
137 QLineEdit* _serialPortNameLineEdit;
138 QLineEdit* _serialMountPointLineEdit;
139 QComboBox* _serialBaudRateComboBox;
140 QComboBox* _serialParityComboBox;
141 QComboBox* _serialDataBitsComboBox;
142 QComboBox* _serialStopBitsComboBox;
143 QCheckBox* _serialAutoNMEACheckBox;
144
145 QLineEdit* _LatLineEdit;
146 QLineEdit* _LonLineEdit;
147
148 QComboBox* _onTheFlyComboBox;
149
150 QTextEdit* _log;
151
152 QWidget* _canvas;
153 QTabWidget* aogroup;
154
155 bncCaster* _caster;
156};
157#endif
Note: See TracBrowser for help on using the repository browser.