Blame templates/html/htmlfile.tpl

Packit 1c1d7e
{% extend 'htmlbase.tpl' %}
Packit 1c1d7e
{% msg %}Generating HTML output for file {{ compound.name }}{% endmsg %}
Packit 1c1d7e
Packit 1c1d7e
{% block navpath %}
Packit 1c1d7e
  {% if not config.GENERATE_TREEVIEW %}
Packit 1c1d7e
    {% with navpath=compound.navigationPath %}
Packit 1c1d7e
      {% include 'htmlnavpath.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
{% endblock %}
Packit 1c1d7e
Packit 1c1d7e
{% block title %}
Packit 1c1d7e
  {# write summary links in the title area #}
Packit 1c1d7e
  
Packit 1c1d7e
  {% with first=True %}
Packit 1c1d7e
    {% if compound.classes %}
Packit 1c1d7e
      {{ tr.classes }}
Packit 1c1d7e
      {% set first=False %}
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
    {% if compound.namespaces %}
Packit 1c1d7e
      {% if not first %} | {% endif %}
Packit 1c1d7e
      {{ tr.namespaces }}
Packit 1c1d7e
      {% set first=False %}
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
    {% if compound.constantgroups %}
Packit 1c1d7e
      {% if not first %} | {% endif %}
Packit 1c1d7e
      {{ tr.constantgroups }}
Packit 1c1d7e
      {% set first=False %}
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
    {% with memberListInfo=compound.macros %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.typedefs %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.enums %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.functions %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
    {% with memberListInfo=compound.variables %}
Packit 1c1d7e
      {% include 'htmlmemsummary.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {% endwith %}
Packit 1c1d7e
  
Packit 1c1d7e
  {{ block.super }}
Packit 1c1d7e
{% endblock %}
Packit 1c1d7e
Packit 1c1d7e
{% block content %}
Packit 1c1d7e
Packit 1c1d7e
{# brief description #}
Packit 1c1d7e
  {% if compound.brief %}
Packit 1c1d7e
    {{ compound.brief }}
Packit 1c1d7e
    {% if compound.hasDetails %}
Packit 1c1d7e
      {{ tr.more }}
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
{# includes #}
Packit 1c1d7e
  {% if compound.includeList %}
Packit 1c1d7e
    
Packit 1c1d7e
    {% for ii in compound.includeList %}
Packit 1c1d7e
      {% include 'htmlinclude.tpl' %}
Packit 1c1d7e
      
Packit 1c1d7e
    {% endfor %}
Packit 1c1d7e
    
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
{# include graph #}
Packit 1c1d7e
  {% if compound.hasIncludeGraph %}
Packit 1c1d7e
    {% with obj=compound %}
Packit 1c1d7e
      {% include 'htmldynheader.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
      {{ tr.includeDependencyGraph:compound.name }}
Packit 1c1d7e
    
Packit 1c1d7e
    {% with obj=compound %}
Packit 1c1d7e
      {% include 'htmldyncontents.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
      {{ compound.includeGraph }}
Packit 1c1d7e
    
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
{# included by graph #}
Packit 1c1d7e
  {% if compound.hasIncludedByGraph %}
Packit 1c1d7e
    {% with obj=compound %}
Packit 1c1d7e
      {% include 'htmldynheader.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
      {{ tr.includedByDependencyGraph }}
Packit 1c1d7e
    
Packit 1c1d7e
    {% with obj=compound %}
Packit 1c1d7e
      {% include 'htmldyncontents.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
      {{ compound.includedByGraph }}
Packit 1c1d7e
    
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
{# source link #}
Packit 1c1d7e
  {% if compound.hasSourceFile %}
Packit 1c1d7e
   

{{ tr.gotoSourceCode }}

Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
{# member declarations #}
Packit 1c1d7e
  {# classes #}
Packit 1c1d7e
    {% with list=compound.classes label='nested-classes' title=tr.classes local=False %}
Packit 1c1d7e
      {% include 'htmldeclcomp.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# namespaces #}
Packit 1c1d7e
    {% with list=compound.namespaces, label='namespaces' title=tr.namespaces local=False %}
Packit 1c1d7e
      {% include 'htmldeclcomp.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# constantgroups #}
Packit 1c1d7e
    {% with list=compound.constantgroups, label='constantgroups' title=tr.constantgroups local=False %}
Packit 1c1d7e
      {% include 'htmldeclcomp.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# defines #}
Packit 1c1d7e
    {% with memberListInfo=compound.macros %}
Packit 1c1d7e
      {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# typedefs #}
Packit 1c1d7e
    {% with memberListInfo=compound.typedefs %}
Packit 1c1d7e
      {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# enums #}
Packit 1c1d7e
    {% with memberListInfo=compound.enums %}
Packit 1c1d7e
      {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# functions #}
Packit 1c1d7e
    {% with memberListInfo=compound.functions %}
Packit 1c1d7e
      {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# variables #}
Packit 1c1d7e
    {% with memberListInfo=compound.variables %}
Packit 1c1d7e
      {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# membergroups #}
Packit 1c1d7e
    {% if compound.memberGroups %}
Packit 1c1d7e
      {% for memberListInfo in compound.memberGroups %}
Packit 1c1d7e
        {% include 'htmlmemdecls.tpl' %}
Packit 1c1d7e
      {% endfor %}
Packit 1c1d7e
    {% endif %}
Packit 1c1d7e
{# end member declarations #}
Packit 1c1d7e
{# detailed description #}
Packit 1c1d7e
{% if compound.hasDetails %}
Packit 1c1d7e
  {# anchor #}
Packit 1c1d7e
  
Packit 1c1d7e
  {# header #}
Packit 1c1d7e
  

{{ tr.detailedDesc }}

Packit 1c1d7e
  
Packit 1c1d7e
  {# brief #}
Packit 1c1d7e
  {% if compound.brief and config.REPEAT_BRIEF %}
Packit 1c1d7e
    

Packit 1c1d7e
    {{ compound.brief }}
Packit 1c1d7e
    

Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
  {# details #}
Packit 1c1d7e
  {{ compound.details }}
Packit 1c1d7e
  {# source definition #}
Packit 1c1d7e
  {% if compound.sourceDef %}
Packit 1c1d7e
    {% markers obj in compound.sourceDef with tr.definedAtLineInSourceFile %}
Packit 1c1d7e
      {% with text=obj.text %}
Packit 1c1d7e
        {% include 'htmlobjlink.tpl' %}
Packit 1c1d7e
      {% endwith %}
Packit 1c1d7e
    {% endmarkers %}
Packit 1c1d7e
  {% endif %}
Packit 1c1d7e
  
Packit 1c1d7e
{% endif %}
Packit 1c1d7e
{# member definitions #}
Packit 1c1d7e
  {# inline classes #}
Packit 1c1d7e
    {% with classList=compound.inlineClasses %}
Packit 1c1d7e
      {% include 'htmlinlineclasses.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# defines #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedMacros %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# typedefs #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedTypedefs %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# enums #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedEnums %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# functions #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedFunctions %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
  {# variables #}
Packit 1c1d7e
    {% with memberListInfo=compound.detailedVariables %}
Packit 1c1d7e
      {% include 'htmlmemdef.tpl' %}
Packit 1c1d7e
    {% endwith %}
Packit 1c1d7e
{# end member definitions #}
Packit 1c1d7e
Packit 1c1d7e
{% endblock %}
Packit 1c1d7e