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

Last change on this file since 1176 was 1173, checked in by mervart, 16 years ago

* empty log message *

File size: 3.6 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
[679]34 class bncAboutDlg : public QDialog {
[35]35 Q_OBJECT
36
37 public:
[679]38 bncAboutDlg(QWidget* parent);
39 ~bncAboutDlg();
40};
41
[989]42 class bncFlowchartDlg : public QDialog {
43 Q_OBJECT
44
45 public:
46 bncFlowchartDlg(QWidget* parent);
47 ~bncFlowchartDlg();
48};
49
[679]50 class bncWindow : public QMainWindow {
51 Q_OBJECT
52
53 public:
[35]54 bncWindow();
[83]55 ~bncWindow();
[679]56 void CreateMenu();
57 void AddToolbar();
[83]58
59 public slots:
[1173]60 void slotNewGetThread(bncGetThread* thread);
[35]61
62 private slots:
[1172]63 void slotWindowMessage(const QByteArray msg);
[108]64 void slotHelp();
65 void slotAbout();
[989]66 void slotFlowchart();
[111]67 void slotFontSel();
[35]68 void slotSaveOptions();
69 void slotAddMountPoints();
70 void slotGetData();
[182]71 void slotStop();
[35]72 void slotNewMountPoints(QStringList* mountPoints);
73 void slotDeleteMountPoints();
74 void slotGetThreadErrors();
[83]75 void slotSelectionChanged();
[399]76 void slotWhatsThis();
[35]77
[83]78 protected:
79 virtual void closeEvent(QCloseEvent *);
80
[35]81 private:
82 QMenu* _menuHlp;
83 QMenu* _menuFile;
84
[108]85 QAction* _actHelp;
[35]86 QAction* _actAbout;
[989]87 QAction* _actFlowchart;
[111]88 QAction* _actFontSel;
[35]89 QAction* _actSaveOpt;
90 QAction* _actQuit;
91 QAction* _actGetData;
[182]92 QAction* _actStop;
[35]93 QAction* _actAddMountPoints;
94 QAction* _actDeleteMountPoints;
[399]95 QAction* _actwhatsthis;
96 QAction* _actwhatsthismenu;
[35]97
98 QLineEdit* _proxyHostLineEdit;
99 QLineEdit* _proxyPortLineEdit;
100 QLineEdit* _outFileLineEdit;
101 QLineEdit* _outPortLineEdit;
[588]102 QLineEdit* _outEphPortLineEdit;
[934]103 QLineEdit* _corrPortLineEdit;
[83]104 QLineEdit* _rnxPathLineEdit;
[533]105 QLineEdit* _ephPathLineEdit;
[934]106 QLineEdit* _corrPathLineEdit;
[1030]107 QLineEdit* _messTypesLineEdit;
[533]108 QCheckBox* _rnxV3CheckBox;
109 QCheckBox* _ephV3CheckBox;
[83]110 QLineEdit* _rnxSkelLineEdit;
[106]111 QLineEdit* _rnxScrpLineEdit;
[143]112 QLineEdit* _logFileLineEdit;
[106]113 QComboBox* _rnxIntrComboBox;
[560]114 QComboBox* _ephIntrComboBox;
[934]115 QComboBox* _corrIntrComboBox;
[106]116 QSpinBox* _rnxSamplSpinBox;
[740]117 QSpinBox* _binSamplSpinBox;
[259]118 QCheckBox* _rnxAppendCheckBox;
[722]119 QCheckBox* _makePauseCheckBox;
[135]120 QSpinBox* _waitTimeSpinBox;
[967]121 QSpinBox* _corrTimeSpinBox;
[686]122 QComboBox* _obsRateComboBox;
[668]123 QSpinBox* _adviseFailSpinBox;
124 QSpinBox* _adviseRecoSpinBox;
125 QLineEdit* _adviseScriptLineEdit;
[728]126 QComboBox* _perfIntrComboBox;
[83]127 QTableWidget* _mountPointsTable;
[35]128
[356]129 QLineEdit* _LatLineEdit;
130 QLineEdit* _LonLineEdit;
131
[1170]132 QComboBox* _onTheFlyComboBox;
133
[83]134 QTextEdit* _log;
135
[35]136 QWidget* _canvas;
[679]137 QTabWidget* aogroup;
[463]138
139 bncCaster* _caster;
[35]140};
141#endif
Note: See TracBrowser for help on using the repository browser.