Line | |
---|
1 |
|
---|
2 | #ifndef BNCTABLEDLG_H
|
---|
3 | #define BNCTABLEDLG_H
|
---|
4 |
|
---|
5 | #include <QtGui>
|
---|
6 |
|
---|
7 | class bncTableDlg : public QDialog {
|
---|
8 | Q_OBJECT
|
---|
9 |
|
---|
10 | public:
|
---|
11 | bncTableDlg(QWidget* parent);
|
---|
12 | ~bncTableDlg();
|
---|
13 |
|
---|
14 | signals:
|
---|
15 | void newMountPoints(QStringList* mountPoints);
|
---|
16 |
|
---|
17 | private slots:
|
---|
18 | virtual void accept();
|
---|
19 | void slotGetTable();
|
---|
20 |
|
---|
21 | private:
|
---|
22 | QLineEdit* _casterHostLineEdit;
|
---|
23 | QLineEdit* _casterPortLineEdit;
|
---|
24 | QLineEdit* _casterUserLineEdit;
|
---|
25 | QLineEdit* _casterPasswordLineEdit;
|
---|
26 |
|
---|
27 | QPushButton* _buttonGet;
|
---|
28 | QPushButton* _buttonCancel;
|
---|
29 | QPushButton* _buttonOK;
|
---|
30 |
|
---|
31 | QTableWidget* _table;
|
---|
32 | };
|
---|
33 |
|
---|
34 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.