mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
64 lines
1.3 KiB
C++
64 lines
1.3 KiB
C++
/* 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
|
|
|
|
#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();
|
|
|
|
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
|