diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-08-26 14:15:46 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-08-26 14:15:46 (GMT) |
commit | c822eb3d9ce727dd69954661edcabcad479c1481 (patch) | |
tree | 9acee8d8d8b91289eb8173fd93a8f16891fc2a92 /src/htmlgen.cpp | |
parent | 2f7902073680b977b74f3faeada95119ec767eb3 (diff) | |
download | Doxygen-c822eb3d9ce727dd69954661edcabcad479c1481.zip Doxygen-c822eb3d9ce727dd69954661edcabcad479c1481.tar.gz Doxygen-c822eb3d9ce727dd69954661edcabcad479c1481.tar.bz2 |
Release-1.2.10
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 568906a..31c24fc 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -49,7 +49,8 @@ static const char *defaultStyleSheet = "DIV.fragment { width: 100%; border: none; background-color: #eeeeee }\n" "DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px }\n" "TD.md { background-color: #f2f2ff; font-weight: bold; }\n" - "TD.mdname { background-color: #f2f2ff; font-weight: bold; font-style: italic }\n" + "TD.mdname1 { background-color: #f2f2ff; font-weight: bold; font-style: italic; }\n" + "TD.mdname { background-color: #f2f2ff; font-weight: bold; font-style: italic; width: 600px; }\n" "DIV.groupHeader { margin-left: 16px; margin-top: 12px; margin-bottom: 6px; font-weight: bold }\n" "DIV.groupText { margin-left: 16px; font-style: italic; font-size: smaller }\n" "FONT.keyword { color: #008000 }\n" @@ -911,7 +912,7 @@ void HtmlGenerator::startMemberDocPrefixItem() void HtmlGenerator::endMemberDocPrefixItem() { DBG_HTML(t << "<!-- endMemberDocPrefixItem -->" << endl;) - t << " </td>" << endl; + t << "</td>" << endl; t << " </tr>" << endl; } @@ -919,14 +920,13 @@ void HtmlGenerator::startMemberDocName() { DBG_HTML(t << "<!-- startMemberDocName -->" << endl;) t << " <tr>" << endl; - t << " <td class=\"md\" nowrap valign=\"top\"> " << endl; + t << " <td class=\"md\" nowrap valign=\"top\"> "; } void HtmlGenerator::endMemberDocName() { DBG_HTML(t << "<!-- endMemberDocName -->" << endl;) - t << endl; - t << " </td>" << endl; + t << "</td>" << endl; } void HtmlGenerator::startParameterList() @@ -955,13 +955,15 @@ void HtmlGenerator::startParameterType(bool first) void HtmlGenerator::endParameterType() { DBG_HTML(t << "<!-- endParameterType -->" << endl;) - t << " </td>" << endl; + t << "</td>" << endl; } -void HtmlGenerator::startParameterName() +void HtmlGenerator::startParameterName(bool oneArgOnly) { DBG_HTML(t << "<!-- startParameterName -->" << endl;) - t << " <td class=\"mdname\">"; + t << " <td class=\"mdname"; + if (oneArgOnly) t << "1"; + t << "\"> "; } void HtmlGenerator::endParameterName(bool last,bool emptyList) @@ -977,7 +979,7 @@ void HtmlGenerator::endParameterName(bool last,bool emptyList) } else { - t << " </td>" << endl; + t << "</td>" << endl; t << " </tr>" << endl; t << " <tr>" << endl; t << " <td></td>" << endl; @@ -987,7 +989,7 @@ void HtmlGenerator::endParameterName(bool last,bool emptyList) } else { - t << " </td>" << endl; + t << "</td>" << endl; t << " </tr>" << endl; } } @@ -995,7 +997,7 @@ void HtmlGenerator::endParameterName(bool last,bool emptyList) void HtmlGenerator::endParameterList() { DBG_HTML(t << "<!-- endParameterList -->" << endl;) - t << " </td>" << endl; + t << "</td>" << endl; t << " </tr>" << endl; } |