Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
qhelpengine.h
Go to the documentation of this file.
1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QHELPENGINE_H
5#define QHELPENGINE_H
6
7#include <QtHelp/qhelpenginecore.h>
8
9QT_BEGIN_NAMESPACE
10
11class QHelpContentModel;
12class QHelpContentWidget;
13class QHelpIndexModel;
14class QHelpIndexWidget;
16class QHelpSearchEngine;
17
18class QHELP_EXPORT QHelpEngine : public QHelpEngineCore
19{
20 Q_OBJECT
21
22public:
23 explicit QHelpEngine(const QString &collectionFile, QObject *parent = nullptr);
24 ~QHelpEngine();
25
26 QHelpContentModel *contentModel() const;
27 QHelpIndexModel *indexModel() const;
28
29 QHelpContentWidget *contentWidget();
30 QHelpIndexWidget *indexWidget();
31
32 QHelpSearchEngine *searchEngine();
33
34private:
35 QHelpEnginePrivate *d;
36
37 friend class HelpEngineWrapper;
38};
39
40QT_END_NAMESPACE
41
42#endif // QHELPENGINE_H
QHelpSearchEngine * searchEngine
QHelpIndexWidget * indexWidget
QHelpContentModel * contentModel
QHelpEnginePrivate(QHelpEngineCore *helpEngineCore)
QHelpEngineCore * m_helpEngineCore
bool m_isApplyCurrentFilterScheduled
QHelpIndexModel * indexModel
QHelpContentWidget * contentWidget
The QHelpEngine class provides access to contents and indices of the help engine.
Definition qhelpengine.h:19
Combined button and popup list for selecting options.