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
RevLine 
[280]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.
[35]25
26#ifndef BNCWINDOW_H
27#define BNCWINDOW_H
28
29#include <QtGui>
[399]30#include <QWhatsThis>
[35]31
32#include "bncgetthread.h"
[463]33#include "bnccaster.h"
[35]34
35class bncWindow : public QMainWindow {
36 Q_OBJECT
37
38 public:
39 bncWindow();
[83]40 ~bncWindow();
41
42 public slots:
[458]43 void slotMessage(const QByteArray msg);
[35]44
45 private slots:
[108]46 void slotHelp();
47 void slotAbout();
[111]48 void slotFontSel();
[35]49 void slotSaveOptions();
50 void slotAddMountPoints();
51 void slotGetData();
[182]52 void slotStop();
[35]53 void slotNewMountPoints(QStringList* mountPoints);
54 void slotDeleteMountPoints();
55 void slotGetThreadErrors();
[83]56 void slotSelectionChanged();
[399]57 void slotWhatsThis();
[35]58
[83]59 protected:
60 virtual void closeEvent(QCloseEvent *);
61
[35]62 private:
63 QMenu* _menuHlp;
64 QMenu* _menuFile;
65
[108]66 QAction* _actHelp;
[35]67 QAction* _actAbout;
[111]68 QAction* _actFontSel;
[35]69 QAction* _actSaveOpt;
70 QAction* _actQuit;
71 QAction* _actGetData;
[182]72 QAction* _actStop;
[35]73 QAction* _actAddMountPoints;
74 QAction* _actDeleteMountPoints;
[399]75 QAction* _actwhatsthis;
76 QAction* _actwhatsthismenu;
[35]77
78 QLineEdit* _proxyHostLineEdit;
79 QLineEdit* _proxyPortLineEdit;
80 QLineEdit* _outFileLineEdit;
81 QLineEdit* _outPortLineEdit;
[83]82 QLineEdit* _rnxPathLineEdit;
83 QLineEdit* _rnxSkelLineEdit;
[106]84 QLineEdit* _rnxScrpLineEdit;
[143]85 QLineEdit* _logFileLineEdit;
[106]86 QComboBox* _rnxIntrComboBox;
87 QSpinBox* _rnxSamplSpinBox;
[259]88 QCheckBox* _rnxAppendCheckBox;
[135]89 QSpinBox* _waitTimeSpinBox;
[83]90 QTableWidget* _mountPointsTable;
[35]91
[356]92 QLineEdit* _LatLineEdit;
93 QLineEdit* _LonLineEdit;
94
[83]95 QTextEdit* _log;
96
[35]97 QWidget* _canvas;
[463]98
99 bncCaster* _caster;
[35]100};
101#endif
Note: See TracBrowser for help on using the repository browser.