summaryrefslogtreecommitdiffstats
path: root/templates/html/htmljsmenumembersdata.tpl
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-05-01 08:05:39 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2016-05-05 19:40:39 (GMT)
commit8480d35beef57ed08139b58972bfb83a3b37422c (patch)
tree13d486ed244ee6382a88d5d3312f0ea01b5131be /templates/html/htmljsmenumembersdata.tpl
parent33915cdce6b66af7e0f8d3e98d741df6e9cc5e32 (diff)
downloadDoxygen-8480d35beef57ed08139b58972bfb83a3b37422c.zip
Doxygen-8480d35beef57ed08139b58972bfb83a3b37422c.tar.gz
Doxygen-8480d35beef57ed08139b58972bfb83a3b37422c.tar.bz2
Applied responsive design to menu bar using smartmenus
Diffstat (limited to 'templates/html/htmljsmenumembersdata.tpl')
-rw-r--r--templates/html/htmljsmenumembersdata.tpl58
1 files changed, 58 insertions, 0 deletions
diff --git a/templates/html/htmljsmenumembersdata.tpl b/templates/html/htmljsmenumembersdata.tpl
new file mode 100644
index 0000000..fa2ab66
--- /dev/null
+++ b/templates/html/htmljsmenumembersdata.tpl
@@ -0,0 +1,58 @@
+{# all members #}
+{% with list=page.all section='' text=tr.all %}
+ {% include 'htmljsmenuletterdata.tpl' %}
+{% endwith %}
+{# functions #}
+{% if page.functions %}
+ {% with list=page.functions section='_func' text=tr.functions %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# variables #}
+{% if page.variables %}
+ {% with list=page.variables section='_vars' text=tr.variables %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# typedefs #}
+{% if page.typedefs %}
+ {% with list=page.typedefs section='_type' text=tr.typedefs %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# enums #}
+{% if page.enums %}
+ {% with list=page.enums section='_enum' text=tr.enums %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# enumValues #}
+{% if page.enumValues %}
+ {% with list=page.enumValues section='_eval' text=tr.enumValues %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# macros #}
+{% if page.macros %}
+ {% with list=page.macros section='_defs' text=tr.macros %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# properties #}
+{% if page.properties %}
+ {% with list=page.properties section='_prop' text=tr.properties %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# events #}
+{% if page.events %}
+ {% with list=page.events section='_evnt' text=tr.events %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}
+{# related #}
+{% if page.related %}
+ {% with list=page.related section='_rela' text=tr.related %}
+ ,{% include 'htmljsmenuletterdata.tpl' %}
+ {% endwith %}
+{% endif %}