Rev | Line | |
---|
[177] | 1 |
|
---|
| 2 | #ifndef BNCHLPDLG_H
|
---|
| 3 | #define BNCHLPDLG_H
|
---|
| 4 |
|
---|
| 5 | #include <QtCore>
|
---|
| 6 | #include <QtGui>
|
---|
| 7 |
|
---|
| 8 | class bncHtml;
|
---|
| 9 |
|
---|
| 10 | class bncHlpDlg : public QDialog {
|
---|
| 11 | Q_OBJECT
|
---|
| 12 |
|
---|
| 13 | public:
|
---|
| 14 | bncHlpDlg(QWidget* parent, const QUrl& url);
|
---|
| 15 | ~bncHlpDlg();
|
---|
| 16 |
|
---|
| 17 | signals:
|
---|
| 18 |
|
---|
| 19 | public slots:
|
---|
| 20 | void backwardAvailable(bool);
|
---|
| 21 | void forwardAvailable(bool);
|
---|
| 22 |
|
---|
| 23 | private:
|
---|
| 24 | bncHtml* _tb;
|
---|
| 25 | QPushButton* _backButton;
|
---|
| 26 | QPushButton* _forwButton;
|
---|
| 27 | QPushButton* _closeButton;
|
---|
| 28 | };
|
---|
| 29 |
|
---|
| 30 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.