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

Last change on this file since 182 was 182, checked in by mervart, 18 years ago

* empty log message *

File size: 1.5 KB
Line 
1
2#ifndef BNCWINDOW_H
3#define BNCWINDOW_H
4
5#include <QtGui>
6
7#include "bncgetthread.h"
8#include "bnccaster.h"
9
10class bncWindow : public QMainWindow {
11 Q_OBJECT
12
13 public:
14 bncWindow();
15 ~bncWindow();
16
17 public slots:
18 void slotMessage(const QByteArray& msg);
19
20 private slots:
21 void slotHelp();
22 void slotAbout();
23 void slotFontSel();
24 void slotSaveOptions();
25 void slotAddMountPoints();
26 void slotGetData();
27 void slotStop();
28 void slotNewMountPoints(QStringList* mountPoints);
29 void slotDeleteMountPoints();
30 void slotGetThreadErrors();
31 void slotSelectionChanged();
32
33 protected:
34 virtual void closeEvent(QCloseEvent *);
35
36 private:
37 QMenu* _menuHlp;
38 QMenu* _menuFile;
39
40 QAction* _actHelp;
41 QAction* _actAbout;
42 QAction* _actFontSel;
43 QAction* _actSaveOpt;
44 QAction* _actQuit;
45 QAction* _actGetData;
46 QAction* _actStop;
47 QAction* _actAddMountPoints;
48 QAction* _actDeleteMountPoints;
49
50 QLineEdit* _proxyHostLineEdit;
51 QLineEdit* _proxyPortLineEdit;
52 QLineEdit* _outFileLineEdit;
53 QLineEdit* _outPortLineEdit;
54 QLineEdit* _rnxPathLineEdit;
55 QLineEdit* _rnxSkelLineEdit;
56 QLineEdit* _rnxScrpLineEdit;
57 QLineEdit* _logFileLineEdit;
58 QComboBox* _rnxIntrComboBox;
59 QSpinBox* _rnxSamplSpinBox;
60 QSpinBox* _waitTimeSpinBox;
61 QTableWidget* _mountPointsTable;
62
63 QTextEdit* _log;
64
65 QWidget* _canvas;
66
67 bncCaster* _bncCaster;
68};
69#endif
Note: See TracBrowser for help on using the repository browser.