diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-03-19 17:44:21 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-03-19 17:44:21 (GMT) |
commit | 92fa8641e981d7a6e9f5d2c7e16e8ffbe78d06fe (patch) | |
tree | cf16207c2ec24e065b19418ceabdc18560052288 /src/memberdef.cpp | |
parent | 2c5c887899dcce964bbed13a3d022efc26fa2b46 (diff) | |
download | Doxygen-92fa8641e981d7a6e9f5d2c7e16e8ffbe78d06fe.zip Doxygen-92fa8641e981d7a6e9f5d2c7e16e8ffbe78d06fe.tar.gz Doxygen-92fa8641e981d7a6e9f5d2c7e16e8ffbe78d06fe.tar.bz2 |
Release 1.1.1-20000319
Diffstat (limited to 'src/memberdef.cpp')
-rw-r--r-- | src/memberdef.cpp | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/src/memberdef.cpp b/src/memberdef.cpp index 67a3dd3..b4fdc2d 100644 --- a/src/memberdef.cpp +++ b/src/memberdef.cpp @@ -99,11 +99,24 @@ static void writeDefArgumentList(OutputList &ol,ClassDef *cd, } } //printf("~~~ %s cName=%s\n",md->name().data(),cName.data()); + + // You can set the next to TRUE to experiment with multiline parameter lists. + // I'll add this in some form in a future release. + bool multiLineArgs = FALSE; /* argList->count()>2; */ while (a) { QRegExp re(")("); int vp; - if (!a->attrib.isEmpty()) + if (multiLineArgs) + { + ol.pushGeneratorState(); + ol.disableAllBut(OutputGenerator::Html); + ol.lineBreak(); + ol.writeNonBreakableSpace(); + ol.writeNonBreakableSpace(); + ol.popGeneratorState(); + } + if (!a->attrib.isEmpty()) // argument has an IDL attribute { ol.docify(a->attrib+" "); } @@ -149,6 +162,13 @@ static void writeDefArgumentList(OutputList &ol,ClassDef *cd, a=argList->next(); if (a) ol.docify(", "); // there are more arguments } + if (multiLineArgs) + { + ol.pushGeneratorState(); + ol.disableAllBut(OutputGenerator::Html); + ol.lineBreak(); + ol.popGeneratorState(); + } ol.docify(")"); // end argument list if (argList->constSpecifier) { @@ -746,7 +766,7 @@ void MemberDef::writeDeclaration(OutputList &ol, { ol.startMemberDescription(); parseDoc(ol,cname,name(),briefDescription()); - if (!documentation().isEmpty()) + if (/*!documentation().isEmpty()*/ detailsAreVisible()) { ol.disableAllBut(OutputGenerator::Html); ol.endEmphasis(); @@ -1297,7 +1317,8 @@ bool MemberDef::detailsAreVisible() const (!Config::briefMemDescFlag || Config::alwaysDetailsFlag) && Config::repeatBriefFlag // has brief description inside detailed area ) || - (initLines>0 && initLines<maxInitLines) + (initLines>0 && initLines<maxInitLines) || + (argList!=0 && argList->hasDocumentation()) ; } @@ -1305,3 +1326,8 @@ void MemberDef::setEnumDecl(OutputList &ed) { enumDeclList=new OutputList(&ed); } + +bool MemberDef::hasDocumentation() +{ + return Definition::hasDocumentation() || (argList!=0 && argList->hasDocumentation()); +} |