1717# Project related configuration options
1818#---------------------------------------------------------------------------
1919
20+ PROJECT_ICON = images/favicon.ico
21+
2022# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
2123# double-quotes, unless you are using Doxywizard) that should identify the
2224# project for which the documentation is generated. This name is used in the
@@ -165,7 +167,7 @@ EXAMPLE_RECURSIVE = YES
165167# that contain images that are to be included in the documentation (see the
166168# \image command).
167169
168- IMAGE_PATH = .. /images
170+ IMAGE_PATH = ./images/
169171
170172# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
171173# is part of the input, its contents will be placed on the main page
@@ -174,6 +176,12 @@ IMAGE_PATH = ../images
174176
175177USE_MDFILE_AS_MAINPAGE = main_page.md
176178
179+ # Don't display the ugly/complicated "tree view" side menu.
180+ # And, restore the top (simpler) navigation bar.
181+ # As of doxygen v1.13.0, these default values changed from NO to YES
182+ GENERATE_TREEVIEW = NO
183+ DISABLE_INDEX = NO
184+
177185#---------------------------------------------------------------------------
178186# Configuration options related to source browsing
179187#---------------------------------------------------------------------------
@@ -232,6 +240,35 @@ HTML_EXTRA_STYLESHEET = doxygen-custom.css
232240
233241HTML_COLORSTYLE = TOGGLE
234242
243+ # If the TIMESTAMP tag is set different from NO then each generated page will contain
244+ # the date or date and time when the page was generated. Setting this to NO can help
245+ # when comparing the output of multiple runs.
246+ #
247+ # Possible values are: YES, NO, DATETIME and DATE.
248+ #
249+ # The default value is: NO.
250+
251+ TIMESTAMP = DATE
252+
253+ # If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
254+ # documentation will contain a main index with vertical navigation menus that
255+ # are dynamically created via JavaScript. If disabled, the navigation index will
256+ # consists of multiple levels of tabs that are statically embedded in every HTML
257+ # page. Disable this option to support browsers that do not have JavaScript,
258+ # like the Qt help browser.
259+ # The default value is: YES.
260+ # This tag requires that the tag GENERATE_HTML is set to YES.
261+
262+ HTML_DYNAMIC_MENUS = NO
263+
264+ # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
265+ # documentation will contain sections that can be hidden and shown after the
266+ # page has loaded.
267+ # The default value is: NO.
268+ # This tag requires that the tag GENERATE_HTML is set to YES.
269+
270+ HTML_DYNAMIC_SECTIONS = YES
271+
235272#---------------------------------------------------------------------------
236273# Configuration options related to the LaTeX output
237274#---------------------------------------------------------------------------
0 commit comments