To apply the Qmi (Qt Minimal) theme to your Doxygen HTML documentation, you must modify your Doxyfile configuration. The theme mimics the official Qt4 documentation style.
Update the following keys in your Doxyfile:
Project section
Set BRIEF_MEMBER_DESC to NO to match the theme's layout.
HTML section
Point the header, footer, and stylesheet paths to the Qmi theme files using the absolute path to the theme directory (${path_to_qmi}).
Required Assets
Depending on which Doxygen features you have enabled, you must manually copy additional assets into your output HTML directory:
- Tree navigation panel: Copy the contents of the
navtree directory to your documentation's HTML output directory. - Search feature: Copy the contents of the
search directory to the html/search directory in your output.
# Project section
BRIEF_MEMBER_DESC = NO
# HTML section
HTML_HEADER = ${path_to_qmi}/header.html
HTML_FOOTER = ${path_to_qmi}/footer.html
HTML_STYLESHEET = ${path_to_qmi}/qmi.css