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

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

* empty log message *

File size: 1.2 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 QLineEdit* _proxyHostLineEdit;
44 QLineEdit* _proxyPortLineEdit;
45 QLineEdit* _timeOutLineEdit;
46 QLineEdit* _outFileLineEdit;
47 QLineEdit* _outPortLineEdit;
48 QLineEdit* _rnxPathLineEdit;
49 QLineEdit* _rnxSkelLineEdit;
50 QSpinBox* _rnxIntrSpinBox;
51 QTableWidget* _mountPointsTable;
52
53 QTextEdit* _log;
54
55 QWidget* _canvas;
56
57 bncCaster* _bncCaster;
58};
59#endif
Note: See TracBrowser for help on using the repository browser.