{#-
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/html/nav.html" %}
{{ fullTitle }}
{% if default(brief, "") != "" %}
{{ brief }}
{% endif %}
{% if hasCollection %}
{% if existsIn(collection, "state") %}
Status: {{ escape_html(collection.state) }}
{% endif %}
{% if collection.isModule and (existsIn(collection, "cmakePackage") or existsIn(collection, "qtVariable")) %}
{% if existsIn(collection, "cmakePackage") %}
| CMake: |
find_package({{ escape_html(collection.cmakePackage) }}{{ " " }}{% if existsIn(collection, "cmakeComponent") %}REQUIRED COMPONENTS {{ escape_html(collection.cmakeComponent) }}{% else %}REQUIRED{% endif %}){% if existsIn(collection, "cmakeTargetItem") %}
target_link_libraries(mytarget PRIVATE {{ escape_html(collection.cmakeTargetItem) }}){% endif %} |
{% endif %}
{% if existsIn(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 collection.isConcept %}
{% if length(collection.members) > 0 %}
Used by
{% for entry in collection.members %}
| {% 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/html/footer.html" %}