1

I wanted to be able to change the displayed text in Doxygen generated documentation. Something like, if I pressed this buttons the following text would change:

enter image description here

This is what I have right now (only displaying the buttons):

Language
--------

@htmlonly
 <button type="button" >C++</button>
 <button type="button" >Python</button>
 <button type="button" >Java</button>
@endhtmlonly

Goal
----

We have multiple ways to acquire digital images...
Rory McCrossan
  • 331,213
  • 40
  • 305
  • 339
João Cartucho
  • 3,688
  • 32
  • 39

1 Answers1

0

Embed JS in the page and the worlds your oyster. You can generate the default headers and footers

http://www.doxygen.nl/manual/doxygen_usage.html

Then embed the JS in the header. Or embed it directly...

/** @mainpage Stuff
@htmlonly
 <script type="text/javascript">
 alert();
 </script>
@endhtmlonly
*/
albert
  • 8,285
  • 3
  • 19
  • 32
Harry
  • 11,298
  • 1
  • 29
  • 43