diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-09-23 17:28:38 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2001-09-23 17:28:38 (GMT) |
commit | 86502f97ecaea3254217d723b5f10b6405495184 (patch) | |
tree | 66859557d84fe96d692e8d6ee0a72d639a25b283 /src/htmlgen.cpp | |
parent | 4ce0e4344711a79781e2f6d64f2553ab4b45c4a5 (diff) | |
download | Doxygen-86502f97ecaea3254217d723b5f10b6405495184.zip Doxygen-86502f97ecaea3254217d723b5f10b6405495184.tar.gz Doxygen-86502f97ecaea3254217d723b5f10b6405495184.tar.bz2 |
Release-1.2.10-20010923
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 37 |
1 files changed, 24 insertions, 13 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 2320473..286b35d 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -49,8 +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.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" + "TD.mdname1 { background-color: #f2f2ff; font-weight: bold; color: #602020; }\n" + "TD.mdname { background-color: #f2f2ff; font-weight: bold; color: #602020; 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" @@ -801,21 +801,32 @@ void HtmlGenerator::endMemberSubtitle() void HtmlGenerator::startIndexList() { - t << "<ul>" << endl; - //if (Config_getBool("GENERATE_HTMLHELP")) - //{ - // if (htmlHelp->depth()==0) htmlHelp->addItem(lastTitle,lastFile); - // htmlHelp->incDepth(); - //} + t << "<table>" << endl; } void HtmlGenerator::endIndexList() { - t << "</ul>" << endl; - //if (Config_getBool("GENERATE_HTMLHELP")) - //{ - // htmlHelp->decDepth(); - //} + t << "</table>" << endl; +} + +void HtmlGenerator::startIndexKey() +{ + t << " <tr bgcolor=\"#f0f0f0\"><td>"; +} + +void HtmlGenerator::endIndexKey() +{ + t << "</td>"; +} + +void HtmlGenerator::startIndexValue() +{ + t << "<td>"; +} + +void HtmlGenerator::endIndexValue(const char *) +{ + t << "</td></tr>" << endl; } void HtmlGenerator::startAlphabeticalIndexList() |