File indexing completed on 2024-05-12 03:53:40

0001 {% extends "base.html" %}
0002 {% block page_title %}{{ dox.projectname }} - {{ dox.title }}{% endblock %}
0003 
0004 {% block title %}
0005 {% if fullname %}
0006 {{ fullname }}
0007 {% else %}
0008 {{ dox.projectname }}
0009 {% endif %}
0010 {% endblock title %}
0011 
0012 {% block content %}
0013 
0014 {% if classname %}
0015 <p><a href="https://lxr.kde.org/ident?v=kf5-qt5&amp;_i={{ classname }}">Search for usage in LXR</a></p>
0016 {% endif %}
0017 
0018 {{ dox.content }}
0019 
0020 <div class="copyrights mt-5">
0021   This file is part of the KDE documentation.<br/>
0022   Documentation copyright &copy; {{copyright}}.<br/>
0023   Generated on {{ dox.datetime }} by
0024   <a href="https://www.doxygen.org/">doxygen</a> {{ dox.doxygenversion }} written
0025   by <a href="mailto:dimitri@stack.nl">Dimitri van Heesch</a>, &copy;&nbsp;1997-2006
0026   <p>
0027   KDE's <a href="https://community.kde.org/Frameworks/Frameworks_Documentation_Policy">Doxygen guidelines</a> are available online.
0028   </p>
0029 </div>
0030 
0031 {% endblock %}
0032 
0033 {% block sidebar %}
0034     {% include "library-sidebar.html" %}
0035 {% endblock %} {# sidebar #}