File: htmlallmembers.tpl

package info (click to toggle)
doxygen 1.8.13-4
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 19,900 kB
  • ctags: 30,824
  • sloc: cpp: 238,031; lex: 36,069; xml: 8,294; python: 2,768; ansic: 630; tcl: 594; php: 446; perl: 370; makefile: 242; yacc: 237; objc: 14; sh: 11; java: 1
file content (73 lines) | stat: -rw-r--r-- 2,135 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{% extend 'htmlbase.tpl' %}

{% block title %}
  <div class="headertitle"><div class="title">{{ compound.name }} {{ tr.memberList }}</div></div>
{% endblock %}

{% block content %}
<div class="contents">
<p>{{ tr.theListOfAllMembers }} <a class="el" href="{{ compound.fileName }}{{ config.HTML_FILE_EXTENSION }}">{{ compound.name }}</a>{{ tr.incInheritedMembers }}</p>
<table class="directory">
{% for mi in compound.allMembersList %}
  <tr class="{% cycle 'even' 'odd' %}">
  {% spaceless %}
  {% with member=mi.member %}
  {% if member.language=='objc' %}
    <td class="entry">
    {% if member.isObjCMethod %}
      {% if member.isStatic %}+&#160;{% else %}-&#160;{% endif %}
    {% endif %}
    </td>
  {% endif %}
  {% if member.isObjCMethod %}
    <td class="entry">
      {% with obj=member text=member.name %}
        {% include 'htmlobjlink.tpl' %}
      {% endwith %}
    </td>
  {%else %}
    {# name #}
    <td class="entry">
      {% with obj=member text=mi.ambiguityScope|append:member.name %}
        {% include 'htmlobjlink.tpl' %}
      {% endwith %}
      {% if member.isEnumeration %}
      &#160;{{ tr.enumName }}
      {% elif member.isEnumValue %}
      &#160;{{ tr.enumValue }}
      {% elif member.isTypedef %}
      &#160;typedef
      {% elif member.isFriend and member.type=='friend class' %}
      &#160;class
      {% elif member.isFunction or member.isSignal or member.isSlot or (member.isFriend and member.hasParameters) %}
      {{ member.declArgs }}
      {% endif %}
    </td>
  {% endif %}
  {# class link #}
  <td class="entry">
  {% if member.category %}
    {% with obj=member.category text=member.category.name %}
      {% include 'htmlobjlink.tpl' %}
    {% endwith %}
  {% else %}
    {% with obj=member.class text=member.class.name %}
      {% include 'htmlobjlink.tpl' %}
    {% endwith %}
  {% endif %}
  </td>
  {# labels #}
  {% if member.labels %}
     <td class="entry">
     {% for label in member.labels %}
     <span class="mlabel">{{ label }}</span>
     {% endfor %}
     </td>
  {% endif %}
  {% endwith %}
  {% endspaceless %}
  </tr>
{% endfor %}
</table>
</div>
{% endblock %}