Doxygen

Doxygen

Anonymous
Not applicable
312 Views
4 Replies
Message 1 of 5

Doxygen

Anonymous
Not applicable
Anyone uses it? alex
0 Likes
313 Views
4 Replies
Replies (4)
Message 2 of 5

Anonymous
Not applicable
On Sat, 5 Jun 2004 08:51:49 +0200, alex wrote: > Anyone uses it? > Yes!! It's really nice when I return to a project that has been dormant for a period of time (>2 weeks, I have a fast memory) There are some nice add-in's that make Doxygen easy to use at CodeProject: For VC++ 6.0 http://www.codeproject.com/tips/doxysetup.asp For .NET http://www.codeproject.com/macro/kingstools.asp // Anders -- My software never has bugs. It just develops random features.
0 Likes
Message 3 of 5

Anonymous
Not applicable
Thank you for answering and, well, I have a question: I started using doxygen a few days ago and I am trying a few things without much success. I don't know if I'm doing wrong or it just can't be done: 1. I want to include in the documentation a shortcut to a .htm file on the disk. 2. Can the general appearance of the generated docs be changed? (fonts, line spacing, colors etc). BTW, I read the doxygen docs, did I miss something?. TIA, alex "Anders Eriksson" wrote in message news:qomb8vhmfkyi.dlg@morateknikutveckling.se... > On Sat, 5 Jun 2004 08:51:49 +0200, alex wrote: > > > Anyone uses it? > > > Yes!! > > It's really nice when I return to a project that has been dormant for a > period of time (>2 weeks, I have a fast memory) > > There are some nice add-in's that make Doxygen easy to use at CodeProject: > > For VC++ 6.0 > http://www.codeproject.com/tips/doxysetup.asp > > For .NET > http://www.codeproject.com/macro/kingstools.asp > > // Anders > > -- > My software never has bugs. It just develops random features.
0 Likes
Message 4 of 5

Anonymous
Not applicable
On Mon, 7 Jun 2004 21:02:31 +0200, alex wrote: > Thank you for answering and, well, I have a question: > I started using doxygen a few days ago and I am trying a few things without > much success. > I don't know if I'm doing wrong or it just can't be done: > 1. I want to include in the documentation a shortcut to a .htm file on the > disk. Normally the URL should be replaced with a link, but if it doesn't you can just add the html code into your C++ code. Then it depends on where you want the link. If you want it in the description of a class, function, variable just put the html code where your description is. E.g. file:///C:/Documents and Settings/ame/My Document/MyHtml.html or MyHtml NB! The row may wrap!! NB!!! Doxygen doesn't handle URL's with spaces in them!!! so the above url has to be written: file:///C:/Documents%20and%20Settings/ame/My%20Documents/MyHtml.html > 2. Can the general appearance of the generated docs be changed? (fonts, line > spacing, colors etc). If you are creating html based documentation, i.e. html, chm, then you can use CSS to control the look. Use the tag HTML_STYLESHEET in Doxygen configuration file to point to the CSS stylesheet that should be used. If HTML_STYLESHEET is blank a default stylesheet is created. It's called doxygen.css. If your are creating LaTex or RTF then I don't know, but it sounds reasonable that it is possible. Let me know if your are using this and I will look into it a bit further. If you are creating Man pages. Well, then you're out of luck (.I think and if I'm wrong then I sure someone will tell me.) > BTW, I read the doxygen docs, did I miss something?. > Yes, but it's hard to read documentations ;-) There are so many possibilities with Doxygen so it's almost impossible to grasp. The only way I have found is to experiment and try different things and then for each new thing read the documentation!! I hope that this will get you going and if you have any more questions just ask! // Anders
0 Likes
Message 5 of 5

Anonymous
Not applicable
"Anders Eriksson" wrote in message news:1tg20yb89xh40$.dlg@morateknikutveckling.se... > > Normally the URL should be replaced with a link, but if it doesn't you can > just add the html code into your C++ code. Then it depends on where you > want the link. If you want it in the description of a class, function, > variable just put the html code where your description is. > Just tried it and it works. I just didn't think of embedding the html code in the description, and the docs are silent (i think) about that. They say however that any file name (i.e. a string with a dot in it,) will be translated into a link to the file, but it didn't work for me. Thank you very much for your help. > I hope that this will get you going and if you have any more questions just > ask! > thanks again, alex
0 Likes