Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I customize doxygen's top link bar?

Tags:

html

doxygen

I would like to modify Doxygen's top link bar from the standard bar (below)

enter image description here

to a customized bar, kind of like what Doxygen's documentation site does. (below)

enter image description here

I've looked through the config file, but I haven't found anything. What should I do? Thanks!

like image 208
Nisala Avatar asked Oct 27 '25 14:10

Nisala


1 Answers

You want to add a custom Doxygen Layout file.

Run doxygen using doxygen -l to generate the default layout file DoxygenLayout.xml. Then add it to your Doxyfile

LAYOUT_FILE = DoxygenLayout.xml

To change the top bar you want to change entries under <navindex>

More info on this: http://www.doxygen.nl/manual/customize.html#layout

like image 90
Artur Kink Avatar answered Oct 30 '25 05:10

Artur Kink