Questions tagged [doxygen-wizard]
69 questions
6
votes
1 answer
Doxygen does not generate function documentation
I'm trying to use doxygen for the first time.
I'm using it in order document some C library, and structures.
I think to use the correct tags, but the documentation is good only as far the define macros are concerned, but the function tags (\fn) are…

Daniel
- 141
- 3
- 14
5
votes
3 answers
How to generate CHM with Doxygen and HTML Help Compiler?
The short story: I can generate a CHM file with Doxygen. Launching the CHM file, I observe that the Contents and Index tabs do list the pages, namespaces, classes, and members of those classes. However, clicking on the items in those Contents and…

Mike Finch
- 746
- 1
- 7
- 20
5
votes
1 answer
Can't create graphviz graph inside Doxygen html
I've installed Graphviz, Doxygen on Windows 7. Now, I do have cygwin64 installed, but I don't care, I just want the doxyfiles to have graphs.
I use the CMD prompt or cygwin, it fails on both. everything is installed under Windows7
No matter what I…

user2966456
- 141
- 1
- 5
4
votes
1 answer
Remove "File Members"
I use Doxygen 1.8.4. for documenting some code. I configured a doxygen file for my purposes. After running doxygen there's a treeview on the generated index.html which shows the content:
MainPage
Files
File List
File Members
I want to know how…

MichaelXanadu
- 505
- 1
- 10
- 25
3
votes
1 answer
how to exclude private methods from graphviz/doxygen?
I have doxygen/graphiz running just fine for my java code (via the wizard), but the setting EXTRACT_PRIVATE = NO seems to only relate to the documentation, not the graphing. When using UML_LOOK = YES it includes private methods.
Is there a way to…

Neil Walker
- 6,400
- 14
- 57
- 86
3
votes
1 answer
Putting images side by side On Doxygen
I am trying to put several images on my main page of the Doxygen file but had no luck finding an answer online,
Doxygen puts the two pictures on top of each other.
Is there any way to make it side by side?

JimBamFeng
- 709
- 1
- 4
- 20
3
votes
0 answers
Doxygen: exclude file/directory NOT containing word
In Doxyfile I can exclude specific files or directories in the EXCLUDE option or by wildcard pattern in EXCLUDE_PATTERNS.
How can I exclude directories which not contain a pattern? Like this:
EXCLUDE_PATTERNS = */!(dirname1-*)/*
The other way…

neumann-d
- 31
- 2
3
votes
1 answer
generating subdocuments with doxygen
I have a large C++ software application documented with doxygen. How can I set it up so that I can generate subdocuments for specific classes? The classes are documented with in-source commenting, their own .dox files, and images/ directory. I need…

docho
- 31
- 2
3
votes
2 answers
Doxygen doesn't appear to recognise comments (Doxywizard)
I am sure this is something silly I've done but I can't see what it is:
So I have c++ project which has a main.cpp file and some classes. It was not written with doxygen in mind (error #1) but I'm looking to correct my mistake and generate some…

DomAyre
- 828
- 1
- 11
- 23
3
votes
4 answers
Doxywizard next button is disabled
I have installed Doxygen 1.8.7 on my Windows 7 pc. Downloaded a sample project from here
Started the Doxywizard filled the values on all the tabs (Project, Mode, Output, Diagram) but after completing all this the next button is still disabled.
find…

Dinesh
- 1,825
- 5
- 31
- 40
2
votes
0 answers
Create class diagram with doxygen
I'm using Doxygen to create a class documentation from my code, which is written in C++. I want to create a UML for the whole code in a single graph? Is it possible? Because Doxygen is trying to create a UML for each class but the thing I'm trying…

Mithridates the Great
- 473
- 1
- 4
- 14
2
votes
1 answer
doxygen not generating image files for dot
I am trying to use doxygen to scan a C# codebase and generating class diagrams/call graphs etc. using dot. I see dot files getting genarated but no images are generated. I have tried different image formats png and jpg with no change. As a result…

Eqbal
- 4,722
- 12
- 38
- 47
2
votes
1 answer
Doxygen & Latex error while creating pdf file
Im using the Doxygen GUI to create my documentation under windows. This is my project folder under "D:\Users\Jorge\Desktop\":
Pract3Copia+
|
+--Documentation (Empty Directory)
|
+-- dfa.cpp
|
…

Ediolot
- 501
- 2
- 6
- 19
2
votes
1 answer
Customize the doxygen to output the html file in class / hierarchy
I am using doxygen for creating JavaDoc for my project. but after running doxygen- all the output files is under the same folder- the output root folder.
for example- I have Foo class and in it- A and B structs.
What I want is the under the root…

chani
- 143
- 1
- 14
2
votes
1 answer
Doxygen only include interface
I need to generate a doc with Doxygen, but ONLY interface type. No class! The project is very big.
I can use "I*.cs" in FILE_PATTERNS but I will then take all class that start with "I". So this is not a solution.
I can add @cond and @endcond to call…

David Imboden
- 21
- 1