|
Packit Service |
50c9f2 |
{% extend 'htmlbase.tpl' %}
|
|
Packit Service |
50c9f2 |
{% msg %}Generating HTML output for file {{ compound.name }}{% endmsg %}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% block navpath %}
|
|
Packit Service |
50c9f2 |
{% if not config.GENERATE_TREEVIEW %}
|
|
Packit Service |
50c9f2 |
{% with navpath=compound.navigationPath %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlnavpath.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{% endblock %}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% block title %}
|
|
Packit Service |
50c9f2 |
{# write summary links in the title area #}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% with first=True %}
|
|
Packit Service |
50c9f2 |
{% if compound.classes %}
|
|
Packit Service |
50c9f2 |
{{ tr.classes }}
|
|
Packit Service |
50c9f2 |
{% set first=False %}
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{% if compound.namespaces %}
|
|
Packit Service |
50c9f2 |
{% if not first %} | {% endif %}
|
|
Packit Service |
50c9f2 |
{{ tr.namespaces }}
|
|
Packit Service |
50c9f2 |
{% set first=False %}
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{% if compound.constantgroups %}
|
|
Packit Service |
50c9f2 |
{% if not first %} | {% endif %}
|
|
Packit Service |
50c9f2 |
{{ tr.constantgroups }}
|
|
Packit Service |
50c9f2 |
{% set first=False %}
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.macros %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemsummary.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.typedefs %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemsummary.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.enums %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemsummary.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.functions %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemsummary.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.variables %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemsummary.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{{ block.super }}
|
|
Packit Service |
50c9f2 |
{% endblock %}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% block content %}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{# brief description #}
|
|
Packit Service |
50c9f2 |
{% if compound.brief %}
|
|
Packit Service |
50c9f2 |
{{ compound.brief }}
|
|
Packit Service |
50c9f2 |
{% if compound.hasDetails %}
|
|
Packit Service |
50c9f2 |
{{ tr.more }}
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{# includes #}
|
|
Packit Service |
50c9f2 |
{% if compound.includeList %}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% for ii in compound.includeList %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlinclude.tpl' %}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% endfor %}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{# include graph #}
|
|
Packit Service |
50c9f2 |
{% if compound.hasIncludeGraph %}
|
|
Packit Service |
50c9f2 |
{% with obj=compound %}
|
|
Packit Service |
50c9f2 |
{% include 'htmldynheader.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{{ tr.includeDependencyGraph:compound.name }}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% with obj=compound %}
|
|
Packit Service |
50c9f2 |
{% include 'htmldyncontents.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{{ compound.includeGraph }}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{# included by graph #}
|
|
Packit Service |
50c9f2 |
{% if compound.hasIncludedByGraph %}
|
|
Packit Service |
50c9f2 |
{% with obj=compound %}
|
|
Packit Service |
50c9f2 |
{% include 'htmldynheader.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{{ tr.includedByDependencyGraph }}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% with obj=compound %}
|
|
Packit Service |
50c9f2 |
{% include 'htmldyncontents.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{{ compound.includedByGraph }}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{# source link #}
|
|
Packit Service |
50c9f2 |
{% if compound.hasSourceFile %}
|
|
Packit Service |
50c9f2 |
{{ tr.gotoSourceCode }}
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{# member declarations #}
|
|
Packit Service |
50c9f2 |
{# classes #}
|
|
Packit Service |
50c9f2 |
{% with list=compound.classes label='nested-classes' title=tr.classes local=False %}
|
|
Packit Service |
50c9f2 |
{% include 'htmldeclcomp.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# namespaces #}
|
|
Packit Service |
50c9f2 |
{% with list=compound.namespaces, label='namespaces' title=tr.namespaces local=False %}
|
|
Packit Service |
50c9f2 |
{% include 'htmldeclcomp.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# constantgroups #}
|
|
Packit Service |
50c9f2 |
{% with list=compound.constantgroups, label='constantgroups' title=tr.constantgroups local=False %}
|
|
Packit Service |
50c9f2 |
{% include 'htmldeclcomp.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# defines #}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.macros %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemdecls.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# typedefs #}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.typedefs %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemdecls.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# enums #}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.enums %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemdecls.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# functions #}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.functions %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemdecls.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# variables #}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.variables %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemdecls.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# membergroups #}
|
|
Packit Service |
50c9f2 |
{% if compound.memberGroups %}
|
|
Packit Service |
50c9f2 |
{% for memberListInfo in compound.memberGroups %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemdecls.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endfor %}
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{# end member declarations #}
|
|
Packit Service |
50c9f2 |
{# detailed description #}
|
|
Packit Service |
50c9f2 |
{% if compound.hasDetails %}
|
|
Packit Service |
50c9f2 |
{# anchor #}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{# header #}
|
|
Packit Service |
50c9f2 |
{{ tr.detailedDesc }}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{# brief #}
|
|
Packit Service |
50c9f2 |
{% if compound.brief and config.REPEAT_BRIEF %}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{{ compound.brief }}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{# details #}
|
|
Packit Service |
50c9f2 |
{{ compound.details }}
|
|
Packit Service |
50c9f2 |
{# source definition #}
|
|
Packit Service |
50c9f2 |
{% if compound.sourceDef %}
|
|
Packit Service |
50c9f2 |
{% markers obj in compound.sourceDef with tr.definedAtLineInSourceFile %}
|
|
Packit Service |
50c9f2 |
{% with text=obj.text %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlobjlink.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{% endmarkers %}
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% endif %}
|
|
Packit Service |
50c9f2 |
{# member definitions #}
|
|
Packit Service |
50c9f2 |
{# inline classes #}
|
|
Packit Service |
50c9f2 |
{% with classList=compound.inlineClasses %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlinlineclasses.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# defines #}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.detailedMacros %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemdef.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# typedefs #}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.detailedTypedefs %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemdef.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# enums #}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.detailedEnums %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemdef.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# functions #}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.detailedFunctions %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemdef.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# variables #}
|
|
Packit Service |
50c9f2 |
{% with memberListInfo=compound.detailedVariables %}
|
|
Packit Service |
50c9f2 |
{% include 'htmlmemdef.tpl' %}
|
|
Packit Service |
50c9f2 |
{% endwith %}
|
|
Packit Service |
50c9f2 |
{# end member definitions #}
|
|
Packit Service |
50c9f2 |
|
|
Packit Service |
50c9f2 |
{% endblock %}
|
|
Packit Service |
50c9f2 |
|