{#-
Copyright (C) 2026 The Qt Company Ltd.
SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
-#}
{% include "partials/html/head.html" %}
{% include "partials/qt-branded/header-bar.html" %}
{{ fullTitle }}
{% if default(brief, "") != "" %}
{{ brief }}
{% endif %}
{% include "partials/qt-branded/toolbar.html" %}
{% if hasCollection %}
{% if existsIn(collection, "state") %}
Status: {{ escape_html(collection.state) }}
{% endif %}
{% if collection.isModule %}
{% if collection.cmakePackage %}
| CMake: |
find_package({{ escape_html(collection.cmakePackage) }} REQUIRED COMPONENTS {{ escape_html(collection.cmakeComponent) }})
target_link_libraries(mytarget PRIVATE {{ escape_html(collection.cmakeTargetItem) }}) |
{% endif %}
{% if collection.qtVariable %}
| qmake: |
QT += {{ escape_html(collection.qtVariable) }} |
{% endif %}
{% endif %}
{% endif %}
{% include "partials/html/content_blocks.html" %}
{% if hasCollection %}{% if not collection.noAutoList %}
{% if collection.isModule %}
{% if length(collection.namespaces) > 0 %}
Namespaces
{% for entry in collection.namespaces %}
| {% if entry.href != "" %}{{ escape_html(entry.name) }}{% else %}{{ escape_html(entry.name) }}{% endif %} | {{ escape_html(entry.brief) }} |
{% endfor %}
{% endif %}
{% if length(collection.classes) > 0 %}
Classes
{% for entry in collection.classes %}
| {% if entry.href != "" %}{{ escape_html(entry.name) }}{% else %}{{ escape_html(entry.name) }}{% endif %} | {{ escape_html(entry.brief) }} |
{% endfor %}
{% endif %}
{% else %}
{% if length(collection.members) > 0 %}
{% for entry in collection.members %}
| {% if entry.href != "" %}{{ escape_html(entry.name) }}{% else %}{{ escape_html(entry.name) }}{% endif %} | {{ escape_html(entry.brief) }} |
{% endfor %}
{% endif %}
{% endif %}
{% endif %}{% endif %}
{% include "partials/qt-branded/footer.html" %}