How do I produce Qt-style documentation (Trolltech's C++ Qt or Riverbank's PyQt docs) with Doxygen? I am documenting Python, and I would like to be able to improve the default function brief that it produces.
In particular, I would like to be able to see the return type (which can be user specified) and the parameters in the function brief.
For example:
Functions:
int getNumber(self)
str getString(self)
tuple getTuple(self, int numberOfElements=2)
Function Documentation:
int getNumber(self)
gets the number of items within a list as specified...
Definition at line 63 of ....
etc...
If this isn't possible without modifying the source, maybe there is another tool other than Doxygen that handles Python documentation in this kind of way?