Author Topic: Doxygen script plugin  (Read 65911 times)

Offline rockstar1707

  • Single posting newcomer
  • *
  • Posts: 4
Re: Doxygen script plugin
« Reply #15 on: December 22, 2008, 07:58:54 pm »
Hi jomeggs,

thanks for the help. Changing of input encoding to UTF-8 really fixed the problem. Though it took me some time till I figured out that you have to delete "doxygen.cfg" file and to restart Code::Blocks for the changes to take effect :)

However, things work as expected now :)

Thanks again.

Offline vri

  • Multiple posting newcomer
  • *
  • Posts: 18
Re: Doxygen script plugin
« Reply #16 on: February 23, 2009, 02:18:27 pm »
Jomeggs,

Thank you very much for this splendid plugin. I find it very useful.

Theo.

Offline nanyu

  • Almost regular
  • **
  • Posts: 188
  • nanyu
Re: Doxygen script plugin
« Reply #17 on: February 24, 2009, 02:02:19 am »
my suggestion:

line 100 ~ 101 , pls modify these two lines to :

    entries.Add(_("&Tools")+_T("/")+_("0:Generate documentation"), 1);
    entries.Add(_("&Tools")+_T("/")+_("1:Generate documentation with dependants"), 2);

then , it can work well with c::b which a Chinese local language.



Offline jomeggs

  • Multiple posting newcomer
  • *
  • Posts: 92
Re: Doxygen script plugin
« Reply #18 on: March 15, 2009, 03:06:10 pm »
@vri  :)

@nanyu
I followed your suggestion and furthermore removed the second (yet not working) menue entry. The download is to be found
on page one, first post.

However, I don't really understand the difference between my code and your version. Apart from the additional ampersand, what is the sense behind the now splitted string? In my eyes _() and _T() should do the same, am I wrong at this point?

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: Doxygen script plugin
« Reply #19 on: March 15, 2009, 03:14:57 pm »
In my eyes _() and _T() should do the same, am I wrong at this point?

Yes, see quotes from wxWidgets docu:

Quote
_

const wxChar * _(const char *s)

This macro expands into a call to wxGetTranslation function, so it marks the message for the extraction by xgettext just as wxTRANSLATE does, but also returns the translation of the string for the current locale during execution.

Don't confuse this macro with _T()!
Quote
_T

wxChar _T(char ch)

const wxChar * _T(const wxChar ch)

This macro is exactly the same as wxT and is defined in wxWidgets simply because it may be more intuitive for Windows programmers as the standard Win32 headers also define it (as well as yet another name for the same macro which is _TEXT()).

Don't confuse this macro with _()!

Offline jomeggs

  • Multiple posting newcomer
  • *
  • Posts: 92
Re: Doxygen script plugin
« Reply #20 on: March 15, 2009, 03:19:24 pm »
@jens
That clarifies the problem with Chinese characters, thank you!

Offline elfunesto

  • Single posting newcomer
  • *
  • Posts: 5
Re: Doxygen script plugin
« Reply #21 on: July 03, 2009, 02:30:38 pm »
Sorry,
Were can I download the plugin: it seems that it has been deleted.
Thanks by advance. Cheers,
Hilaire
« Last Edit: July 03, 2009, 03:10:53 pm by elfunesto »

Offline jomeggs

  • Multiple posting newcomer
  • *
  • Posts: 92
Doxygen script plugin deleted by admin
« Reply #22 on: July 05, 2009, 01:09:03 pm »

Changelog version 04 (15.03.2009)
  • menue entries changed for Cinese users (nanyu and friends...)
  • CHM file is executed after generation for windows systems only
  • removed menue entry "Generate documentation with dependants", it's not working currently
  • proper error message when no active project has been opened as yet

[attachment deleted by admin]

my doxygen script has been deleted by somebody :(, was there a reason for?



Offline elfunesto

  • Single posting newcomer
  • *
  • Posts: 5
Re: Doxygen script plugin
« Reply #23 on: July 05, 2009, 01:32:21 pm »
Hi jomeggs, I would really appreciate if you can send me a version of your script. I was used to use it on a previous computer and I found it very very useful!
Thanks by advance.
Hilaire

Offline MortenMacFly

  • Administrator
  • Lives here!
  • *****
  • Posts: 9694
Re: Doxygen script plugin deleted by admin
« Reply #24 on: July 06, 2009, 07:37:30 am »
my doxygen script has been deleted by somebody :(, was there a reason for?
Not really. We have limited forums space which we need to clean from time to time. But we cannot select the content by erm... content. So we delete yb time. If you want to persist nice gotchas, please use the patch tracker. Forum attachments are not persistent!
Compiler logging: Settings->Compiler & Debugger->tab "Other"->Compiler logging="Full command line"
C::B Manual: https://www.codeblocks.org/docs/main_codeblocks_en.html
C::B FAQ: https://wiki.codeblocks.org/index.php?title=FAQ

Offline kfmfe04

  • Multiple posting newcomer
  • *
  • Posts: 27
Re: Doxygen script plugin deleted by admin
« Reply #25 on: July 06, 2009, 04:30:49 pm »
my doxygen script has been deleted by somebody :(, was there a reason for?
Not really. We have limited forums space which we need to clean from time to time. But we cannot select the content by erm... content. So we delete yb time. If you want to persist nice gotchas, please use the patch tracker. Forum attachments are not persistent!

 :(  I'm too late!!!  Where can I get a copy of this plugin/script?
I would very much like to try Doxygen in C::B...



Offline jomeggs

  • Multiple posting newcomer
  • *
  • Posts: 92
Re: Doxygen script plugin deleted by admin
« Reply #26 on: July 07, 2009, 01:03:24 am »
:(  I'm too late!!!  Where can I get a copy of this plugin/script?

Don't worry, its back! :lol: It took a time to find it, but finally: Have a look at my first post

@MortonMacFly:
I'll follow your advice, but currently I'm a bit short of time...
« Last Edit: July 07, 2009, 08:07:02 pm by jomeggs »

Offline kfmfe04

  • Multiple posting newcomer
  • *
  • Posts: 27
Re: Doxygen script plugin deleted by admin
« Reply #27 on: July 07, 2009, 10:30:28 am »
:(  I'm too late!!!  Where can I get a copy of this plugin/script?

Don't worry, its back! :lol: It took a time to find it, but finally: Have a look at my first post

Wow!  This is >FANTASTIC<!  

The call graphs are especially useful for detecting loops and avoiding "calling upwards" - excellent!

Thank you so much!!!

- Ken
« Last Edit: July 07, 2009, 11:06:22 am by kfmfe04 »

Offline elfunesto

  • Single posting newcomer
  • *
  • Posts: 5
Re: Doxygen script plugin
« Reply #28 on: July 07, 2009, 10:31:22 am »
Thank you very much jomeggs!

Offline kfmfe04

  • Multiple posting newcomer
  • *
  • Posts: 27
Re: Doxygen script plugin
« Reply #29 on: July 07, 2009, 12:12:13 pm »
I am new to Doxygen so I copied and pasted into MyClass.hpp (the first lines):

/*! \brief Brief description.
 *         Brief description continued.
 *
 *  Detailed description starts here.
 */

into a header file and reran the Doxygen plug-in.  I can't seem to find these comments anywhere in the html documentation for MyClass Class Reference.

- Ken

Update:  I tried the class Test example in Qt style 1/3 the way down:

http://www.stack.nl/~dimitri/doxygen/docblocks.html

Everything inside the class seems to work, but the Detailed Description normally under the Public Attributes appear to be missing.  Any idea what might cause this?

« Last Edit: July 07, 2009, 05:03:18 pm by kfmfe04 »