我希望能够在Doxygen生成的文档中更改显示的文本。有点像,如果我按下这个按钮,下面的文字就会改变:
这就是我现在所拥有的(仅显示按钮):
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...
答案 0 :(得分:0)
在页面中嵌入JS,在世界中嵌入你的牡蛎。您可以生成默认页眉和页脚
http://www.doxygen.nl/manual/doxygen_usage.html
然后将JS嵌入标题中。或直接嵌入......
/** @mainpage Stuff
@htmlonly
<script type="text/javascript">
alert();
</script>
@endhtmlonly
*/