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