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

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

* empty log message *

File size: 1.3 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 slotSaveOptions();
24 void slotAddMountPoints();
25 void slotGetData();
26 void slotNewMountPoints(QStringList* mountPoints);
27 void slotDeleteMountPoints();
28 void slotGetThreadErrors();
29 void slotSelectionChanged();
30
31 protected:
32 virtual void closeEvent(QCloseEvent *);
33
34 private:
35 QMenu* _menuHlp;
36 QMenu* _menuFile;
37
38 QAction* _actHelp;
39 QAction* _actAbout;
40 QAction* _actSaveOpt;
41 QAction* _actQuit;
42 QAction* _actGetData;
43 QAction* _actAddMountPoints;
44 QAction* _actDeleteMountPoints;
45
46 QLineEdit* _proxyHostLineEdit;
47 QLineEdit* _proxyPortLineEdit;
48 QLineEdit* _timeOutLineEdit;
49 QLineEdit* _outFileLineEdit;
50 QLineEdit* _outPortLineEdit;
51 QLineEdit* _rnxPathLineEdit;
52 QLineEdit* _rnxSkelLineEdit;
53 QLineEdit* _rnxScrpLineEdit;
54 QComboBox* _rnxIntrComboBox;
55 QSpinBox* _rnxSamplSpinBox;
56 QTableWidget* _mountPointsTable;
57
58 QTextEdit* _log;
59
60 QWidget* _canvas;
61
62 bncCaster* _bncCaster;
63};
64#endif
Note: See TracBrowser for help on using the repository browser.