2019-03-10 16:03:19 +00:00
|
|
|
|
/* OSCAR Help Header
|
2018-06-06 16:03:51 +00:00
|
|
|
|
*
|
2021-11-02 20:34:12 +00:00
|
|
|
|
* Copyright (c) 2019-2022 The OSCAR Team
|
2018-06-06 16:03:51 +00:00
|
|
|
|
* 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>
|
2018-06-06 16:03:51 +00:00
|
|
|
|
#include <QHelpEngine>
|
|
|
|
|
#include <QTabWidget>
|
|
|
|
|
#include <QWidget>
|
2018-06-08 05:43:03 +00:00
|
|
|
|
#include "mytextbrowser.h"
|
2018-06-06 16:03:51 +00:00
|
|
|
|
|
|
|
|
|
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;
|
2018-06-09 00:59:16 +00:00
|
|
|
|
QString helpNamespace;
|
2018-06-06 16:03:51 +00:00
|
|
|
|
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); }
|
2018-06-09 00:59:16 +00:00
|
|
|
|
|
2018-06-06 16:03:51 +00:00
|
|
|
|
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);
|
2018-06-09 00:59:16 +00:00
|
|
|
|
void on_languageWarningCheckbox_clicked(bool checked);
|
|
|
|
|
|
2018-06-06 16:03:51 +00:00
|
|
|
|
private:
|
|
|
|
|
Ui::Help *ui;
|
|
|
|
|
QHelpEngine *helpEngine;
|
|
|
|
|
QTabWidget * tabWidget;
|
|
|
|
|
HelpBrowser * helpBrowser;
|
2018-06-08 05:43:03 +00:00
|
|
|
|
MyTextBrowser * resultWidget;
|
2018-06-06 16:03:51 +00:00
|
|
|
|
bool searchReady;
|
2018-06-09 00:59:16 +00:00
|
|
|
|
QString helpNamespace;
|
|
|
|
|
bool helpLoaded;
|
|
|
|
|
QString language;
|
2018-06-06 16:03:51 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // HELP_H
|