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
1
vote
1 answer

doxygen is not searching the include directory

Sorry about the length of this post. I am using Doxygen 1.8.10 on a W7 64 bit machine. I have written and compiled my code in code::blocks 13.12. My file structure is as follows: D:/Base/CodeBlocksProjects/SFML_apps/Alarm Clock contains my cpp…
Jeremy Brown
  • 11
  • 1
  • 3
1
vote
0 answers

How can I see a produced by Doxygen class-diagramm?

I have read this two themes: How to use doxygen to create UML class diagrams from C++ source and Graphviz + Doxygen to generate UML class diagrams And I did all like guys wrote there, but I still have a problem - I can't find produced file with…
user1234567
  • 3,991
  • 3
  • 19
  • 25
1
vote
2 answers

Can't import/include external doxygen configuration file properly

I have a simple doxygen project consisting of Doxyfile and a configuration file, project.txt. In the project.txt file, I have some manually written documentation that uses cross-references to auto generated documentation from my code, and it all…
Cloud
  • 18,753
  • 15
  • 79
  • 153
1
vote
2 answers

Greek Characters in Doxygen Documentation

I need to briefly discuss some math in my code documentation and I'd like to insert an actual Greek letter (lower-case lambda) rather than using the word "lambda." How can I do this in Doxygen? I've only dabbled in HTML with a 500-foot pole once…
audiFanatic
  • 2,296
  • 8
  • 40
  • 56
0
votes
0 answers

Sorry, but "MiKTeX Compiler Driver" did not succeed. FATAL texify.core - TeX engine failed for some reason (see log file)

I tried to make pdf from Doxygen latex file refman.tex. The Doxywizard finished successfully. Then I opened the refman.tex, choose "pdfLaTex+MakeIndex+BibTex" and run it to get the pdf. Unfortunately, it ended up with the following message: Sorry,…
0
votes
0 answers

I want to embed a uml activity Diagram

I am trying to create an activity diagram of my code by embedding the UML syntax in code and using Doxygen with plant UML. this is my code int add_numbers(int a, int b) { /** @startuml*/ /** start */ return a + b; /**…
salem
  • 1
0
votes
1 answer

How to enable long descriptions on doxygen?

I'm using doxygen for my C code project and would like to hide the "More..." link on function description and just show the entire text. How? :)
Nati Unger
  • 43
  • 1
  • 7
0
votes
1 answer

Doxygen documentation of Fortran77 code (no line breaks, parameters not documented)

I want to write a comment before a Fortran77 routine (main or another subroutine), where the Doxygen (version 1.9.0) comment lines should appear in the Doxygen HTML documentation as in the source code (here four lines, with line breaks). The…
len
  • 749
  • 1
  • 8
  • 23
0
votes
0 answers

How can I ignore some directories in Doxygen?

I tried Doxygen to see how it documents a code. The big problem I encountered is that it scans all the subdirectories, however I need to avoid some of them because not needed in the final documentation (they are also inappropriate because not direct…
Filippo
  • 126
  • 1
  • 12
0
votes
1 answer

Why doesn't doxygen recognise comments in .tcl?

I got stuck with doxywizard, as it fails to recognise any comment, even on easier files. I have Doxygen 1.8.18, which is the last doxygen version that supports TCL (according to this site). I saved the code example from the previously mentioned…
Valentine
  • 31
  • 4
0
votes
0 answers

How to add a html page in Doxygen?

I'm using Doxywizard to generate the Doxygen document websites and I have another HTML page such as "some_page.html". Is it possible to add a link under the "Related Pages" to display this HTML? I read doxygen document. The "\page" command does not…
JOE
  • 353
  • 2
  • 11
0
votes
0 answers

Doxygen tool, script error "the value of property '$' is null or undefined, not a Function object"

Hi while opening the output of Doxygen tool. I am getting this error "The value of property '$' is null or undefined, not a Function object". I am not able to find the path of that Script in the directory.
MathiG
  • 1
  • 3
0
votes
0 answers

How to generate user manual using Doxygen?

I had some user manual with .docx extension. can i convert my manual similar to doxygen manual(with side navigation bar with headings)
0
votes
1 answer

Doxygen EXTRACT_ALL = YES does not extract all, also undocumented warnings are still shown

I am going mad with doxygen at the moment, i hope it is not too stupid on layer 8, but we will see... I want to extract static and undocumented stuff. That's why EXTRACT_ALL = YES for now. But EXTRACT_ALL seems to be not working as the documentation…
0
votes
1 answer

Doxygen not documenting headers in nested directories

Here is my demo project structure Demo │ Doxyfile │ hello.h │ ├───doc └───lib └───include bye.h Here are hello and bye files /** * @file * @author My Self * @date 9 Sep 2012 * @brief File containing example of doxygen usage…
Noman
  • 124
  • 2
  • 9