Line | |
---|
1 |
|
---|
2 | #ifndef BNCWINDOW_H
|
---|
3 | #define BNCWINDOW_H
|
---|
4 |
|
---|
5 | #include <QtGui>
|
---|
6 |
|
---|
7 | #include "bncgetthread.h"
|
---|
8 | #include "bnccaster.h"
|
---|
9 |
|
---|
10 | class 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 slotNewMountPoints(QStringList* mountPoints);
|
---|
28 | void slotDeleteMountPoints();
|
---|
29 | void slotGetThreadErrors();
|
---|
30 | void slotSelectionChanged();
|
---|
31 |
|
---|
32 | protected:
|
---|
33 | virtual void closeEvent(QCloseEvent *);
|
---|
34 |
|
---|
35 | private:
|
---|
36 | QMenu* _menuHlp;
|
---|
37 | QMenu* _menuFile;
|
---|
38 |
|
---|
39 | QAction* _actHelp;
|
---|
40 | QAction* _actAbout;
|
---|
41 | QAction* _actFontSel;
|
---|
42 | QAction* _actSaveOpt;
|
---|
43 | QAction* _actQuit;
|
---|
44 | QAction* _actGetData;
|
---|
45 | QAction* _actAddMountPoints;
|
---|
46 | QAction* _actDeleteMountPoints;
|
---|
47 |
|
---|
48 | QLineEdit* _proxyHostLineEdit;
|
---|
49 | QLineEdit* _proxyPortLineEdit;
|
---|
50 | QLineEdit* _outFileLineEdit;
|
---|
51 | QLineEdit* _outPortLineEdit;
|
---|
52 | QLineEdit* _rnxPathLineEdit;
|
---|
53 | QLineEdit* _rnxSkelLineEdit;
|
---|
54 | QLineEdit* _rnxScrpLineEdit;
|
---|
55 | QLineEdit* _logFileLineEdit;
|
---|
56 | QComboBox* _rnxIntrComboBox;
|
---|
57 | QSpinBox* _rnxSamplSpinBox;
|
---|
58 | QSpinBox* _waitTimeSpinBox;
|
---|
59 | QTableWidget* _mountPointsTable;
|
---|
60 |
|
---|
61 | QTextEdit* _log;
|
---|
62 |
|
---|
63 | QWidget* _canvas;
|
---|
64 |
|
---|
65 | bncCaster* _bncCaster;
|
---|
66 | };
|
---|
67 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.