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

Last change on this file since 88 was 88, 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 slotSaveOptions();
22 void slotAddMountPoints();
23 void slotGetData();
24 void slotNewMountPoints(QStringList* mountPoints);
25 void slotDeleteMountPoints();
26 void slotGetThreadErrors();
27 void slotSelectionChanged();
28
29 protected:
30 virtual void closeEvent(QCloseEvent *);
31
32 private:
33 QMenu* _menuHlp;
34 QMenu* _menuFile;
35
36 QAction* _actAbout;
37 QAction* _actSaveOpt;
38 QAction* _actQuit;
39 QAction* _actGetData;
40 QAction* _actAddMountPoints;
41 QAction* _actDeleteMountPoints;
42
43 QLabel* _proxyHostLabel;
44 QLabel* _proxyPortLabel;
45 QLabel* _timeOutLabel;
46 QLabel* _rnxPathLabel;
47 QLabel* _rnxSkelLabel;
48 QLabel* _rnxIntrLabel;
49 QLabel* _mountPointsLabel;
50 QLabel* _outFileLabel;
51 QLabel* _outPortLabel;
52 QLabel* _logLabel;
53
54 QLineEdit* _proxyHostLineEdit;
55 QLineEdit* _proxyPortLineEdit;
56 QLineEdit* _timeOutLineEdit;
57 QLineEdit* _outFileLineEdit;
58 QLineEdit* _outPortLineEdit;
59 QLineEdit* _rnxPathLineEdit;
60 QLineEdit* _rnxSkelLineEdit;
61 QSpinBox* _rnxIntrSpinBox;
62 QTableWidget* _mountPointsTable;
63
64 QTextEdit* _log;
65
66 QWidget* _canvas;
67
68 bncCaster* _bncCaster;
69};
70#endif
Note: See TracBrowser for help on using the repository browser.