aboutsummaryrefslogtreecommitdiffstats
path: root/helppage.h
diff options
context:
space:
mode:
Diffstat (limited to 'helppage.h')
-rw-r--r--helppage.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/helppage.h b/helppage.h
index 62678d9..8797b3b 100644
--- a/helppage.h
+++ b/helppage.h
@@ -25,6 +25,9 @@
#include <QWidget>
#include <QTextBrowser>
#include <QVBoxLayout>
+#include <QSettings>
+#include <QFile>
+#include <QLocale>
class HelpPage : public QWidget
{
@@ -36,9 +39,11 @@ public:
signals:
public slots:
+ void openUrl(QUrl url);
private:
QTextBrowser *browser; /** The textbrowser of the tab */
+ QUrl localizedHelp(QUrl path);
};