{#- Copyright (C) 2025 The Qt Company Ltd. SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause -#} {{ escape_html(title) }} {%- if stylesheetEnabled %} {%- endif %}

{{ escape_html(fullTitle) }}

{% if default(brief, "") != "" %}

{{ escape_html(brief) }}

{% endif %} {% if exists("since") %} Since {{ escape_html(since) }} {% endif %} {% set ai_prompt = "I'm reading the Qt documentation page '" + title + "'" %} {% if exists("genus") %}{% set ai_prompt = ai_prompt + " (" + genus.label + ")" %}{% endif %} {% if brief %}{% set ai_prompt = ai_prompt + ". Summary: " + brief %}{% endif %} {% set ai_prompt = ai_prompt + ". Explain the key concepts and typical usage patterns." %}
Markdown
Ask AI
{% include "partials/html/content_blocks.html" %} {% if length(sections) > 0 %} {% for section in sections %}

{{ escape_html(section.title) }}

{% if length(section.members) > 0 %} {% for member in section.members %} {% endfor %}
{% if existsIn(member, "href") and member.href != "" %}{{ escape_html(member.signature) }}{% else %}{{ escape_html(member.signature) }}{% endif %} {{ escape_html(default(member.brief, "")) }}
{% endif %} {% if existsIn(section, "reimplementedMembers") %}

Reimplemented {{ escape_html(section.plural) }}

{% for member in section.reimplementedMembers %} {% endfor %}
{% if existsIn(member, "href") and member.href != "" %}{{ escape_html(member.signature) }}{% else %}{{ escape_html(member.signature) }}{% endif %} {{ escape_html(default(member.brief, "")) }}
{% endif %} {% if existsIn(section, "inheritedMembers") %} {% for inherited in section.inheritedMembers %}

{{ inherited.count }} {{ escape_html(section.plural) }} inherited from {% if inherited.href != "" %}{{ escape_html(inherited.className) }}{% else %}{{ escape_html(inherited.className) }}{% endif %}

{% endfor %} {% endif %}
{% endfor %} {% endif %}