| Line |  | 
|---|
| 1 |  | 
|---|
| 2 | #ifndef BNCTABLEDLG_H | 
|---|
| 3 | #define BNCTABLEDLG_H | 
|---|
| 4 |  | 
|---|
| 5 | #include <QtCore> | 
|---|
| 6 | #include <QtGui> | 
|---|
| 7 |  | 
|---|
| 8 | #include "bncconst.h" | 
|---|
| 9 |  | 
|---|
| 10 | class bncTableDlg : public QDialog { | 
|---|
| 11 | Q_OBJECT | 
|---|
| 12 |  | 
|---|
| 13 | public: | 
|---|
| 14 | bncTableDlg(QWidget* parent); | 
|---|
| 15 | ~bncTableDlg(); | 
|---|
| 16 | static t_irc getFullTable(const QString& casterHost, int casterPort, | 
|---|
| 17 | QStringList& allLines); | 
|---|
| 18 |  | 
|---|
| 19 | signals: | 
|---|
| 20 | void newMountPoints(QStringList* mountPoints); | 
|---|
| 21 |  | 
|---|
| 22 | private slots: | 
|---|
| 23 | virtual void accept(); | 
|---|
| 24 | void slotGetTable(); | 
|---|
| 25 | void slotSkl(); | 
|---|
| 26 | void slotSelectionChanged(); | 
|---|
| 27 |  | 
|---|
| 28 | private: | 
|---|
| 29 | QLineEdit*   _casterHostLineEdit; | 
|---|
| 30 | QLineEdit*   _casterPortLineEdit; | 
|---|
| 31 | QLineEdit*   _casterUserLineEdit; | 
|---|
| 32 | QLineEdit*   _casterPasswordLineEdit; | 
|---|
| 33 |  | 
|---|
| 34 | QPushButton* _buttonSkl; | 
|---|
| 35 | QPushButton* _buttonGet; | 
|---|
| 36 | QPushButton* _buttonCancel; | 
|---|
| 37 | QPushButton* _buttonOK; | 
|---|
| 38 |  | 
|---|
| 39 | QTableWidget* _table; | 
|---|
| 40 | QStringList   _allLines; | 
|---|
| 41 | }; | 
|---|
| 42 |  | 
|---|
| 43 | #endif | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.