Rev | Line | |
---|
[35] | 1 |
|
---|
| 2 | #ifndef BNCWINDOW_H
|
---|
| 3 | #define BNCWINDOW_H
|
---|
| 4 |
|
---|
| 5 | #include <QtGui>
|
---|
| 6 |
|
---|
| 7 | #include "bncgetthread.h"
|
---|
| 8 |
|
---|
| 9 | class bncWindow : public QMainWindow {
|
---|
| 10 | Q_OBJECT
|
---|
| 11 |
|
---|
| 12 | public:
|
---|
| 13 | bncWindow();
|
---|
[83] | 14 | ~bncWindow();
|
---|
| 15 |
|
---|
| 16 | public slots:
|
---|
| 17 | void slotMessage(const QByteArray& msg);
|
---|
[35] | 18 |
|
---|
| 19 | private slots:
|
---|
[108] | 20 | void slotHelp();
|
---|
| 21 | void slotAbout();
|
---|
[111] | 22 | void slotFontSel();
|
---|
[35] | 23 | void slotSaveOptions();
|
---|
| 24 | void slotAddMountPoints();
|
---|
| 25 | void slotGetData();
|
---|
[182] | 26 | void slotStop();
|
---|
[35] | 27 | void slotNewMountPoints(QStringList* mountPoints);
|
---|
| 28 | void slotDeleteMountPoints();
|
---|
| 29 | void slotGetThreadErrors();
|
---|
[83] | 30 | void slotSelectionChanged();
|
---|
[35] | 31 |
|
---|
[83] | 32 | protected:
|
---|
| 33 | virtual void closeEvent(QCloseEvent *);
|
---|
| 34 |
|
---|
[35] | 35 | private:
|
---|
| 36 | QMenu* _menuHlp;
|
---|
| 37 | QMenu* _menuFile;
|
---|
| 38 |
|
---|
[108] | 39 | QAction* _actHelp;
|
---|
[35] | 40 | QAction* _actAbout;
|
---|
[111] | 41 | QAction* _actFontSel;
|
---|
[35] | 42 | QAction* _actSaveOpt;
|
---|
| 43 | QAction* _actQuit;
|
---|
| 44 | QAction* _actGetData;
|
---|
[182] | 45 | QAction* _actStop;
|
---|
[35] | 46 | QAction* _actAddMountPoints;
|
---|
| 47 | QAction* _actDeleteMountPoints;
|
---|
| 48 |
|
---|
| 49 | QLineEdit* _proxyHostLineEdit;
|
---|
| 50 | QLineEdit* _proxyPortLineEdit;
|
---|
| 51 | QLineEdit* _outFileLineEdit;
|
---|
| 52 | QLineEdit* _outPortLineEdit;
|
---|
[83] | 53 | QLineEdit* _rnxPathLineEdit;
|
---|
| 54 | QLineEdit* _rnxSkelLineEdit;
|
---|
[106] | 55 | QLineEdit* _rnxScrpLineEdit;
|
---|
[143] | 56 | QLineEdit* _logFileLineEdit;
|
---|
[106] | 57 | QComboBox* _rnxIntrComboBox;
|
---|
| 58 | QSpinBox* _rnxSamplSpinBox;
|
---|
[259] | 59 | QCheckBox* _rnxAppendCheckBox;
|
---|
[135] | 60 | QSpinBox* _waitTimeSpinBox;
|
---|
[83] | 61 | QTableWidget* _mountPointsTable;
|
---|
[35] | 62 |
|
---|
[83] | 63 | QTextEdit* _log;
|
---|
| 64 |
|
---|
[35] | 65 | QWidget* _canvas;
|
---|
| 66 | };
|
---|
| 67 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.