2022-01-28 15:56:11 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-06-21 16:41:22 +02:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2022-01-28 15:56:11 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-08-25 19:58:52 +02:00
|
|
|
#ifndef HELPDIALOG_H
|
|
|
|
#define HELPDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2020-08-25 19:58:52 +02:00
|
|
|
#include <QTextBrowser>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QVariant>
|
2020-08-25 19:58:52 +02:00
|
|
|
|
2022-04-13 12:24:00 +02:00
|
|
|
class QHelpEngine;
|
|
|
|
class QUrl;
|
|
|
|
class QWidget;
|
2020-08-25 19:58:52 +02:00
|
|
|
namespace Ui {
|
|
|
|
class HelpDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class HelpBrowser : public QTextBrowser {
|
|
|
|
public:
|
2023-08-08 11:05:02 +02:00
|
|
|
explicit HelpBrowser(QWidget* parent = nullptr) : QTextBrowser(parent) {}
|
2022-07-13 21:09:53 +02:00
|
|
|
HelpBrowser(const HelpBrowser&) = delete;
|
|
|
|
HelpBrowser(HelpBrowser&&) = delete;
|
|
|
|
HelpBrowser& operator=(const HelpBrowser&) = delete;
|
|
|
|
HelpBrowser& operator=(HelpBrowser&&) = delete;
|
2020-08-25 19:58:52 +02:00
|
|
|
void setHelpEngine(QHelpEngine *helpEngine);
|
2022-03-13 20:07:58 +01:00
|
|
|
QVariant loadResource(int type, const QUrl& name) override;
|
2020-08-25 19:58:52 +02:00
|
|
|
private:
|
2023-08-08 11:05:02 +02:00
|
|
|
QHelpEngine* mHelpEngine{};
|
2020-08-25 19:58:52 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class HelpDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit HelpDialog(QWidget *parent = nullptr);
|
2022-03-13 20:07:58 +01:00
|
|
|
~HelpDialog() override;
|
2020-08-25 19:58:52 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::HelpDialog *mUi;
|
|
|
|
QHelpEngine* mHelpEngine;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // HELPDIALOG_H
|