doxywizard

Illegal alias format `ALIASES '

余生长醉 提交于 2020-08-10 20:23:37
问题 I added below codes into doxywizard ALIASES but I get error . How can I solve this ALIASES += global_START="<dl class=\"params\"><dt>Globals</dt><dd><table class=\"params\">" ALIASES += global_{2}="<tr><td class=\"paramname\">\1</td><td>: \2</td></tr>" ALIASES += global_END="</table></dd></dl>" [![enter image description here][1]][1] Error message: error: Illegal alias format `ALIASES += global_START=" Globals \1 : \2 "'. Use "name=value" or "name(n)=value", where n is the number of arguments

How to get plain text files in Doxygen documentation?

China☆狼群 提交于 2020-05-27 08:51:09
问题 I cannot include any text file in my Doxygen documentation. The only exception is a README.md file that I set as the main page. In particular, I would like to see the Changelog.txt file in the documentation. I tried to add it explicitly in the INPUT field and in the FILE_PATTERNS field, without success. In the generated HTML documentation, I cannot find anything neither in the file list nor making a search. The only trace is in Doxygen's log file: Preprocessing C:/Source/Changelog.txt...

Can Doxygen output members purely in order of declaration?

元气小坏坏 提交于 2019-12-22 05:08:12
问题 Which Doxygen option can completely disable sorting members by type (Private / Public / Method / Variable), and output members purely based on the order in which they were declared? 回答1: This is impossible via the config options. The best you can do is: SORT_MEMBER_DOCS = NO which disables alphabetical sorting of members. 来源: https://stackoverflow.com/questions/1385775/can-doxygen-output-members-purely-in-order-of-declaration

Adding new user Tab in the doxygen Layout

▼魔方 西西 提交于 2019-12-20 03:21:15
问题 I am new to using doxygen 1.8.7. I am trying to add the Architecture diagram to be the part of the API documentation generated for my C# project using doxygen. I generated the default doxygen Layout file (DoxygenLayout.xml) and edited it by adding the below changes - <navindex> <tab type="mainpage" visible="yes" title=""> <tab type="mainpage" visible="yes" title="Audience" /> <tab type="user" url="@ref Architecture" title="My Page" /> </tab> <tab type="pages" visible="yes" title="" intro=""/>

Adding new user Tab in the doxygen Layout

孤者浪人 提交于 2019-12-20 03:21:07
问题 I am new to using doxygen 1.8.7. I am trying to add the Architecture diagram to be the part of the API documentation generated for my C# project using doxygen. I generated the default doxygen Layout file (DoxygenLayout.xml) and edited it by adding the below changes - <navindex> <tab type="mainpage" visible="yes" title=""> <tab type="mainpage" visible="yes" title="Audience" /> <tab type="user" url="@ref Architecture" title="My Page" /> </tab> <tab type="pages" visible="yes" title="" intro=""/>

Use of doxygen's \link command

我的未来我决定 提交于 2019-12-19 05:48:13
问题 I have an external HTML file I'd like to have linked form either my doxygen "Related Pages" tab or the left hand frame. It seems I need to use the \link command but I can't find a good example of how to use it or where. I am currently using doxywizard to generate the HTML. So, is \link something I incorporate into my doxygen config file or do I add it when I build the HTML somehow? Update So I ended up having to do the following: Create a new page (docs_main.html) that had the following: /*!

How to give description for directory in Doxygen

删除回忆录丶 提交于 2019-12-11 12:59:36
问题 I am working with Doxygen to document my project. I know, by using the below Doxygen commands, we can give a description for source files. /** * \file example.cpp * \brief Implementation of example functions */ Is there any way to give a description for a directory/folder in Doxygen? 回答1: Use the \dir doxygen command. I asked a similar question how to link to documentation of directory in which I show /// \dir cpp/vtutil /// /// \brief Brief description of the dir cpp/vtutil goes here /// ///

Can Doxygen output members purely in order of declaration?

白昼怎懂夜的黑 提交于 2019-12-05 05:40:12
Which Doxygen option can completely disable sorting members by type (Private / Public / Method / Variable), and output members purely based on the order in which they were declared? This is impossible via the config options. The best you can do is: SORT_MEMBER_DOCS = NO which disables alphabetical sorting of members. 来源: https://stackoverflow.com/questions/1385775/can-doxygen-output-members-purely-in-order-of-declaration