OSCAR-code/sleepyhead/help.h

66 lines
1.3 KiB
C
Raw Normal View History

/* SleepyHead Help Header
*
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
*
* 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
2018-06-07 00:09:06 +00:00
#include <QPrinter>
#include <QHelpEngine>
#include <QTextBrowser>
#include <QTabWidget>
#include <QWidget>
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();
2018-06-07 00:09:06 +00:00
void print(QPrinter * printer) { helpBrowser->print(printer); }
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