Rev | Line | |
---|
[35] | 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();
|
---|
[83] | 15 | ~bncWindow();
|
---|
| 16 |
|
---|
| 17 | public slots:
|
---|
| 18 | void slotMessage(const QByteArray& msg);
|
---|
[35] | 19 |
|
---|
| 20 | private slots:
|
---|
| 21 | void slotSaveOptions();
|
---|
| 22 | void slotAddMountPoints();
|
---|
| 23 | void slotGetData();
|
---|
| 24 | void slotNewMountPoints(QStringList* mountPoints);
|
---|
| 25 | void slotDeleteMountPoints();
|
---|
| 26 | void slotGetThreadErrors();
|
---|
[83] | 27 | void slotSelectionChanged();
|
---|
[35] | 28 |
|
---|
[83] | 29 | protected:
|
---|
| 30 | virtual void closeEvent(QCloseEvent *);
|
---|
| 31 |
|
---|
[35] | 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;
|
---|
[88] | 45 | QLabel* _timeOutLabel;
|
---|
[83] | 46 | QLabel* _rnxPathLabel;
|
---|
| 47 | QLabel* _rnxSkelLabel;
|
---|
| 48 | QLabel* _rnxIntrLabel;
|
---|
[35] | 49 | QLabel* _mountPointsLabel;
|
---|
| 50 | QLabel* _outFileLabel;
|
---|
| 51 | QLabel* _outPortLabel;
|
---|
[83] | 52 | QLabel* _logLabel;
|
---|
[35] | 53 |
|
---|
| 54 | QLineEdit* _proxyHostLineEdit;
|
---|
| 55 | QLineEdit* _proxyPortLineEdit;
|
---|
[88] | 56 | QLineEdit* _timeOutLineEdit;
|
---|
[35] | 57 | QLineEdit* _outFileLineEdit;
|
---|
| 58 | QLineEdit* _outPortLineEdit;
|
---|
[83] | 59 | QLineEdit* _rnxPathLineEdit;
|
---|
| 60 | QLineEdit* _rnxSkelLineEdit;
|
---|
| 61 | QSpinBox* _rnxIntrSpinBox;
|
---|
| 62 | QTableWidget* _mountPointsTable;
|
---|
[35] | 63 |
|
---|
[83] | 64 | QTextEdit* _log;
|
---|
| 65 |
|
---|
[35] | 66 | QWidget* _canvas;
|
---|
| 67 |
|
---|
| 68 | bncCaster* _bncCaster;
|
---|
| 69 | };
|
---|
| 70 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.