Questions tagged [doxywizard]

a GUI front-end for configuring and running doxygen.

Doxywizard is a graphical user interface (GUI) front-end for configuring and running , a documentation generation system. Usage instructions may be found in the Doxywizard usage section of the doxygen manual.

65 questions
3
votes
1 answer

Doxygen links to subroutines in other modules/files in Fortran

I have a Fortran subroutine proc that calls Fortran subroutine uv. uv is in a different module with it's own module page in Doxygen. I would like to add a link so that you can click on uv on the Doxygen page for proc and it will take you to the uv…
byrdman1982
  • 109
  • 7
3
votes
2 answers

Adding new user Tab in the doxygen Layout

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…
sdd
  • 143
  • 7
  • 21
2
votes
1 answer

Doxygen - generating include graph - where is it supposed to be?

I'm trying to find the interfile (i.e. which files include which other files) dependencies in a project using doxygen. Tbh, all I want is some pictures summarising that, but it doesn't seem to be possible to get just that. My relevant settings…
Alistair
  • 31
  • 2
  • 3
2
votes
1 answer

How to comment the file itself using Javadoc and Doxygen

I have a problem with documenting the file itself using javadoc style and doxygen. I can generate nice documentation for variables and functions but for the file itself, the doxygen always thinks the header of the file is the documentation for the…
Dumbo
  • 13,555
  • 54
  • 184
  • 288
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
2 answers

Making a relative path HTML Shortcut

I have pretty much no experience with HTML, but I am using Doxygen to create code documentation. I have all the Doxygen generated HTML files in a sub-directory within my C project. This documentation is for a library I have built and I would like…
audiFanatic
  • 2,296
  • 8
  • 40
  • 56
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…
2
votes
2 answers

Same comment for multiple variables

I'm having the same problem as this person: doxygen comment multiple variables at once I've already tried the suggested solutions in the thread and like the OP, I wasn't able to make doxygen have the same comment for multiple variables. Can someone…
Bilal
  • 109
  • 1
  • 6
2
votes
1 answer

Doxygen Create Tables

I have a program that multiple people write and edit. Some parts of the program link software values to specific pins specified by the user. The pins that are in use, are spread out between multiple files, and I would like to create one central…
Reid
  • 4,376
  • 11
  • 43
  • 75
1
vote
1 answer

How can I organize files in sections according to an architecture with doxygen?

I am trying document my code using Doxygen. I want the resulting HTML to organize the tree view acording to a SW architecture for simple and fast understanding of the project. I have a project organized like this: │ …
Ricard Molins
  • 408
  • 1
  • 6
  • 20
1
vote
1 answer

Doxygen: \include test.dox in mainpage.dox adds as a text

I have created a Doxygne documentation for a python project. In-order to add a high level introduction about the project with a high level class architecture, I created a mainpage.dox file which has the following format. /* \mainpage #…
radar101
  • 67
  • 10
1
vote
0 answers

Doxygen document structure with python superclass

This is my first question in stack overflow: This is my Python project structure: superclass1: module class1 and it's modules class2 and it's modules superclass2: module class2-1 and it's modules class2-2 and it's modules How can I replace…
1
vote
1 answer

How do I place two images side by side in my doxygen mainpage

I am inexperienced with html so I am having trouble placing the images how I want (side by side). This is what I have in mainpage: 68 * \htmlonly …
1
vote
1 answer

How to hide private class declaration on doxygen documentation

class class1: public: ... private: class impl; //the class that i wanna hide std::unique_ptr impl_; //my doxygen file: EXTRACT_ALL = YES EXTRACT_PRIVATE = NO EXTRACT_PACKAGE = NO EXTRACT_STATIC =…
1
vote
0 answers

Doxygen for verilog code

I need to document my verilog code using Doxygen. I've installed doxygen version 1.8.10 and doxverilog version 2.6. Moreover, I've xilinx 12.0 and microsoft visual studio 2010 for windows 64 bit. I've followed the following steps and need guidance…