/**************************************************************************** ** ** Copyright (C) 2021 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the Qt Assistant of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:COMM$ ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** $QT_END_LICENSE$ ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ****************************************************************************/ #ifndef QHELPDATAINTERFACE_H #define QHELPDATAINTERFACE_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of the help generator tools. This header file may change from version // to version without notice, or even be removed. // // We mean it. // #include #include #include QT_BEGIN_NAMESPACE class QHelpDataContentItem { public: QHelpDataContentItem(QHelpDataContentItem *parent, const QString &title, const QString &reference); ~QHelpDataContentItem(); QString title() const; QString reference() const; QList children() const; private: QString m_title; QString m_reference; QList m_children; }; struct QHelpDataIndexItem { QHelpDataIndexItem() {} QHelpDataIndexItem(const QString &n, const QString &id, const QString &r) : name(n), identifier(id), reference(r) {} QString name; QString identifier; QString reference; bool operator==(const QHelpDataIndexItem & other) const; }; class QHelpDataFilterSectionData : public QSharedData { public: ~QHelpDataFilterSectionData() { qDeleteAll(contents); } QStringList filterAttributes; QList indices; QList contents; QStringList files; }; class QHelpDataFilterSection { public: QHelpDataFilterSection(); void addFilterAttribute(const QString &filter); QStringList filterAttributes() const; void addIndex(const QHelpDataIndexItem &index); void setIndices(const QList &indices); QList indices() const; void addContent(QHelpDataContentItem *content); void setContents(const QList &contents); QList contents() const; void addFile(const QString &file); void setFiles(const QStringList &files); QStringList files() const; private: QSharedDataPointer d; }; struct QHelpDataCustomFilter { QStringList filterAttributes; QString name; }; QT_END_NAMESPACE #endif // QHELPDATAINTERFACE_H