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

Last change on this file since 463 was 463, checked in by mervart, 17 years ago

* empty log message *

File size: 2.7 KB
Line 
1// Part of BNC, a utility for retrieving decoding and
2// converting GNSS data streams from NTRIP broadcasters,
3// written by Leos Mervart.
4//
5// Copyright (C) 2006
6// German Federal Agency for Cartography and Geodesy (BKG)
7// http://www.bkg.bund.de
8// Czech Technical University Prague, Department of Advanced Geodesy
9// http://www.fsv.cvut.cz
10//
11// Email: euref-ip@bkg.bund.de
12//
13// This program is free software; you can redistribute it and/or
14// modify it under the terms of the GNU General Public License
15// as published by the Free Software Foundation, version 2.
16//
17// This program is distributed in the hope that it will be useful,
18// but WITHOUT ANY WARRANTY; without even the implied warranty of
19// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20// GNU General Public License for more details.
21//
22// You should have received a copy of the GNU General Public License
23// along with this program; if not, write to the Free Software
24// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26#ifndef BNCWINDOW_H
27#define BNCWINDOW_H
28
29#include <QtGui>
30#include <QWhatsThis>
31
32#include "bncgetthread.h"
33#include "bnccaster.h"
34
35class bncWindow : public QMainWindow {
36 Q_OBJECT
37
38 public:
39 bncWindow();
40 ~bncWindow();
41
42 public slots:
43 void slotMessage(const QByteArray msg);
44
45 private slots:
46 void slotHelp();
47 void slotAbout();
48 void slotFontSel();
49 void slotSaveOptions();
50 void slotAddMountPoints();
51 void slotGetData();
52 void slotStop();
53 void slotNewMountPoints(QStringList* mountPoints);
54 void slotDeleteMountPoints();
55 void slotGetThreadErrors();
56 void slotSelectionChanged();
57 void slotWhatsThis();
58
59 protected:
60 virtual void closeEvent(QCloseEvent *);
61
62 private:
63 QMenu* _menuHlp;
64 QMenu* _menuFile;
65
66 QAction* _actHelp;
67 QAction* _actAbout;
68 QAction* _actFontSel;
69 QAction* _actSaveOpt;
70 QAction* _actQuit;
71 QAction* _actGetData;
72 QAction* _actStop;
73 QAction* _actAddMountPoints;
74 QAction* _actDeleteMountPoints;
75 QAction* _actwhatsthis;
76 QAction* _actwhatsthismenu;
77
78 QLineEdit* _proxyHostLineEdit;
79 QLineEdit* _proxyPortLineEdit;
80 QLineEdit* _outFileLineEdit;
81 QLineEdit* _outPortLineEdit;
82 QLineEdit* _rnxPathLineEdit;
83 QLineEdit* _rnxSkelLineEdit;
84 QLineEdit* _rnxScrpLineEdit;
85 QLineEdit* _logFileLineEdit;
86 QComboBox* _rnxIntrComboBox;
87 QSpinBox* _rnxSamplSpinBox;
88 QCheckBox* _rnxAppendCheckBox;
89 QSpinBox* _waitTimeSpinBox;
90 QTableWidget* _mountPointsTable;
91
92 QLineEdit* _LatLineEdit;
93 QLineEdit* _LonLineEdit;
94
95 QTextEdit* _log;
96
97 QWidget* _canvas;
98
99 bncCaster* _caster;
100};
101#endif
Note: See TracBrowser for help on using the repository browser.