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

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

Imported sources

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 private slots:
18 void slotSaveOptions();
19 void slotAddMountPoints();
20 void slotGetData();
21 void slotNewMountPoints(QStringList* mountPoints);
22 void slotDeleteMountPoints();
23 void slotGetThreadErrors();
24
25 private:
26 QMenu* _menuHlp;
27 QMenu* _menuFile;
28
29 QAction* _actAbout;
30 QAction* _actSaveOpt;
31 QAction* _actQuit;
32 QAction* _actGetData;
33 QAction* _actAddMountPoints;
34 QAction* _actDeleteMountPoints;
35
36 QLabel* _proxyHostLabel;
37 QLabel* _proxyPortLabel;
38 QLabel* _userLabel;
39 QLabel* _passwordLabel;
40 QLabel* _mountPointsLabel;
41 QLabel* _outFileLabel;
42 QLabel* _outPortLabel;
43
44 QLineEdit* _proxyHostLineEdit;
45 QLineEdit* _proxyPortLineEdit;
46 QLineEdit* _userLineEdit;
47 QLineEdit* _passwordLineEdit;
48 QLineEdit* _outFileLineEdit;
49 QLineEdit* _outPortLineEdit;
50
51 QWidget* _canvas;
52
53 QTableWidget* _mountPointsTable;
54
55 bncCaster* _bncCaster;
56};
57#endif
Note: See TracBrowser for help on using the repository browser.