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
61
votes
2 answers

Use the README.md file as main page in Doxygen

The documentation of Doxygen states, that I can use PHP Markdown Extra title labelling in a markdown file, but neither # Main Page # {#mainpage} nor # Main Page # {#index} works, but the label is not present in the output as plain text either.…
Adam L. S.
  • 825
  • 1
  • 7
  • 14
21
votes
5 answers

How to install Doxygen GUI on Ubuntu?

I can't figure out how to install the Doxygen GUI (doxywizard) on Ubuntu. Where can I get it?
Pieter
  • 31,619
  • 76
  • 167
  • 242
18
votes
2 answers

How do you create a line break in Doxygen markdown?

I'm having a hard time locating the documentation explaining how to add a line break in Doxygen markdown. I've tried using two spaces at the end of the line, and I've also tried a single or double newline, but none of these are working for me. I'm…
user2211907
12
votes
2 answers

How do i remove the source path in doxygen

I am using doxygen to generate a chm document for my header files. I have a problem in removing the path of the source (i.e header files) in my chm. For example if the path of my header files is c:\users\dx\Desktop\myprogram, my path seems to appear…
Dan K
  • 218
  • 5
  • 12
11
votes
1 answer

Can Doxygen output members purely in order of declaration?

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?
Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607
10
votes
5 answers

Use of doxygen's \link command

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…
Jason
  • 15,017
  • 23
  • 85
  • 116
9
votes
2 answers

Doxygen isn't generating documentation for source files

First time using Doxygen here. Using the Doxygen Wizard, and I'm pretty sure I'm setting all the directories and everything correctly but for some reason the outputted documentation only has the header files. My project is written in C, and it's…
Mikkel Bang
  • 574
  • 2
  • 13
  • 27
6
votes
2 answers

Doxygen, doxywizard encoding problem

I work under Windows XP and I'm using Doxygen (actually Doxywizard) to create documentation. I have a problem with encoding. In Doxywizard's bookmark expert->proect->DOXYFILE_ENCODING I wrote cp1250 (I've tried also Windows-1250) but it still…
Marwroc
  • 131
  • 2
  • 5
6
votes
3 answers

Doxygen won't process main.cpp

So I'm new to using Doxygen and I was able to get it to work smoothly. I was able to document my classes and structs and it generates the HTML files perfectly. The issue I'm running into is it won't parse my main.cpp file. All the classes and…
Alex
  • 1,082
  • 17
  • 27
6
votes
1 answer

Generating Function Call-Graph Doxygen+Graphviz

How can I generate a function call graph using Doxywizard with Graphviz installed? (I'm aware of how to get doxygen to produce call & caller graphs for c functions, but it didn't help) Currently, I've tried the following config:…
gcandal
  • 937
  • 8
  • 23
5
votes
1 answer

How to get plain text files in Doxygen documentation?

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…
Pietro
  • 12,086
  • 26
  • 100
  • 193
4
votes
0 answers

How can I create sequence diagram by using mscgen through doxygen?

Graviz is working fine with doxygen, but I am having hard time using mscgen. In doxywizard I have set the mscgen_path to the mscgen bin folder. However the output html does not show any sequence diagram.
4
votes
1 answer

doxygen not producing output from input filter (doxyqml)

I'm trying to use doxyqml to produce QML documentation through doxygen, but the documentation pages are not being created. As per the doxyqml documentation I've added a *.qml entry to FILE_PATTERNS, and added *.qml=doxyqml to FILTER_PATTERNS…
cmannett85
  • 21,725
  • 8
  • 76
  • 119
4
votes
1 answer

Doxygen - How to show all places where a class is used?

Can doxygen+graphviz generate a list or a graph of all usage of a class/struct/typedef/enum/etc.? It would be like a caller graph, but not for functions. The ideal graph would be like a reversed collaboration diagram. It would have all classes that…
BW0
  • 757
  • 8
  • 14
3
votes
1 answer

How to give description for directory in Doxygen

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…
1
2 3 4 5