00001
00002
00003
00004
00005
00006
00007
00008 #ifndef HELPBROWSER_H
00009 #define HELPBROWSER_H
00010
00011 #include <QMainWindow>
00012 #include "ui_helpbrowser.h"
00013
00014
00020 class HelpBrowser : public QMainWindow
00021 {
00022 Q_OBJECT
00023
00024 public:
00025 HelpBrowser(const QString & lang, QWidget * parent = 0);
00026 ~HelpBrowser(){};
00027
00028 private:
00029 Ui::HelpBrowser ui;
00030 void closeEvent(QCloseEvent *e);
00031
00032 private slots:
00033 void forward();
00034 void backward();
00035 };
00036
00037 #endif