/* SleepyHead Help Header * * Copyright (c) 2018 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the source code * for more details. */ #ifndef HELP_H #define HELP_H #include #include #include #include namespace Ui { class Help; } class HelpBrowser : public QTextBrowser { public: HelpBrowser(QHelpEngine* helpEngine, QWidget* parent = 0); virtual QVariant loadResource(int type, const QUrl &url) Q_DECL_OVERRIDE; private: QHelpEngine * helpEngine; }; class Help : public QWidget { Q_OBJECT public: explicit Help(QWidget *parent = 0); ~Help(); private slots: void on_backButton_clicked(); void on_forwardButton_clicked(); void on_homeButton_clicked(); void startup(); void on_searchBar_returnPressed(); void on_searchComplete(int results); void indexingFinished(); void forwardAvailable(bool b); void backwardAvailable(bool b); void requestShowLink(const QUrl & link); private: Ui::Help *ui; QHelpEngine *helpEngine; QTabWidget * tabWidget; HelpBrowser * helpBrowser; bool searchReady; }; #endif // HELP_H