Questions tagged [doxygen-wizard]

69 questions
1
vote
1 answer

Doxygen auto param generate

Is there any tool or plugin for visual studio c++ to generate an auto pre-structure of doxygen comments, based on the definition of function? Thank you. something like this example: /** …
Vision
  • 35
  • 2
  • 7
1
vote
0 answers

Can't Parse Chromium Source Code with Doxygen

I got Doxygen yesterday and was able to set it up (with graphviz) with one of my personal projects (which had none of the "special" comments that Doxygen usually uses to setup a document). However when I tried with the same settings on Chromium I…
afree100
  • 191
  • 1
  • 8
0
votes
1 answer

Doxygen output not having search box

My doxygen file is having search enabled . Doxygen 1.9.7 The resultant output is not having search box even though i have this in doxywizard My Doxygywizard looks like
MAG
  • 2,841
  • 6
  • 27
  • 47
0
votes
0 answers

Is there a way to force Doxygen to show only cyclic header dependencies?

I'm using the Doxygen GUI frontend app on Windows, and for the Diagrams topic, I choose the 2 "Include dependency graphs" and "Included by dependency graphs" options under the "Use dot tool from the GraphViz package" option. However, I don't need to…
Marsupito
  • 59
  • 1
  • 9
0
votes
0 answers

How to use Doxygen to generate documents for Eigen?

I've tried on my windows PC and in wsl, but it doesn't work, and I'm using the Doxyfile.in it gives in eigen-3.4.0\doc error: tag HTML_HEADER: header file '${Eigen_BINARY_DIR}/doc/eigendoxy_header.html' does not exist It seems that it can't…
0
votes
1 answer

Is there a way to specify a colour scheme for GraphViz dots in Doxygen?

The default scheme isn't very bright and dots has different schemes that can be set when making graphs from the command-line. Doxygen exposes DOT_FONTNAME to pass a font argument to dots but doesn't seem to have that for the color scheme? Does…
0
votes
0 answers

Organizing Doxygen index list differently/properly

I'm trying to generate properly organized Doxygen documentation for a work project. The issue I'm having is related to the image below: Everything under the "State Machine" tab are the data structures, macros, typedefs, etc. in that order that…
potatoheadgear
  • 49
  • 1
  • 10
0
votes
1 answer

Prevent unprocessed DOT files from being deleted when using Doxywizard

I'm using Doxygen wizard to generate documentation for a big embedded C project. I'm able to generate graphs and class diagrams using Dot and Graphviz. However, I would like to edit some dependency graphs by hand - there's information that is not…
potatoheadgear
  • 49
  • 1
  • 10
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
0 answers

C++ doxygen documentation only works for static function

It's my first time learning how to do documentation using Doxygen and I do this by practicing on doxy'd codes of ADXL345 in Github as basis here. I was able to generate the Doxygen html site by changing the comments but while my Adafruit_ADXL345_U.h…
0
votes
1 answer

How to configure doxyfile and get documentation for .doc file as input to generate html output in Doxygen?

I have a task of documenting a file with extension .doc using doxygen tool. I am able to generate html output for a .cpp file but stuck to set the correct configuration of doxyfile to generate html output for file with .doc extension as input file…
0
votes
1 answer

How to add files without extension in doxygen configuration file(e.g iostream library)?

In my configuration file in the INPUT tag I added one directory. Inside that iostream is there without any extension. After running the configuration file I'm not getting information related to iostream. I want to know how to add the files without…
0
votes
0 answers

Documenting error code implementation in doxygen

I am trying to generate documentation for some 'Error Codes' implemented in the code. To start my work, I used the reference from: Custom tags with Doxygen Using the \xrefitem and ALIASES option, I did the following. ALIASES = "error{1}=\ref…
sidG
  • 1
  • 2
0
votes
1 answer

How to add our own defined tab in the doxygen docs

Output of your code Hi I want to add one more tab to the page i.e I want "Lokesh" tab in between Main Pages and Related pages I have attached screenshot for reference.
0
votes
1 answer

Illegal alias format `ALIASES '

I added below codes into doxywizard ALIASES but I get error. How can I solve this? ALIASES += global_START="
Globals
" ALIASES += global_{2}="
\1:…
mathco
  • 107
  • 11