Index: trunk/BNS/bnshlpdlg.h
===================================================================
--- trunk/BNS/bnshlpdlg.h	(revision 751)
+++ trunk/BNS/bnshlpdlg.h	(revision 751)
@@ -0,0 +1,29 @@
+#ifndef BNSHLPDLG_H
+#define BNSHLPDLG_H
+
+#include <QtCore>
+#include <QtGui>
+
+class bnsHtml;
+
+class bnsHlpDlg : public QDialog {
+  Q_OBJECT
+
+  public:
+    bnsHlpDlg(QWidget* parent, const QUrl& url);
+    ~bnsHlpDlg();
+
+  signals:
+ 
+  public slots:
+    void backwardAvailable(bool);
+    void forwardAvailable(bool);
+
+  private:
+    bnsHtml*     _tb;
+    QPushButton* _backButton;
+    QPushButton* _forwButton;
+    QPushButton* _closeButton;
+};
+
+#endif
