summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-05-14 18:44:15 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-05-14 18:44:15 (GMT)
commit8013b5fe71402e6c6bfd867e348b6cad73bd7386 (patch)
treeaca56008d3ed43483f7f8f2f4fb55a3b4e5f75f2 /src/htmlgen.cpp
parent6c268019f8ce8b58058e7f7f8204c82b8d0ac190 (diff)
downloadDoxygen-8013b5fe71402e6c6bfd867e348b6cad73bd7386.zip
Doxygen-8013b5fe71402e6c6bfd867e348b6cad73bd7386.tar.gz
Doxygen-8013b5fe71402e6c6bfd867e348b6cad73bd7386.tar.bz2
Release-1.1.3-20000514
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp95
1 files changed, 71 insertions, 24 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index b71f7a0..0b58044 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -207,9 +207,13 @@ void HtmlGenerator::writeStyleInfo(int part)
t << "TD.md { background-color: #f2f2ff }" << endl;
t << "DIV.groupHeader { margin-left: 16; margin-top: 12; margin-bottom: 6; font-weight: bold }" << endl;
t << "DIV.groupText { margin-left: 16; font-style: italic; font-size: smaller }" << endl;
- t << "FONT.keyword { color: #008000 }" << endl;
- t << "FONT.comment { color: #800000 }" << endl;
- t << "FONT.preprocessor { color: #806020 }" << endl;
+ t << "FONT.keyword { color: #008000 }" << endl;
+ t << "FONT.keywordtype { color: #604020 }" << endl;
+ t << "FONT.keywordflow { color: #e08000 }" << endl;
+ t << "FONT.comment { color: #800000 }" << endl;
+ t << "FONT.preprocessor { color: #806020 }" << endl;
+ t << "FONT.stringliteral { color: #002080 }" << endl;
+ t << "FONT.charliteral { color: #008080 }" << endl;
//t << "TD.groupLine { background-color: #3080ff }" << endl;
t << endl;
endPlainFile();
@@ -603,24 +607,6 @@ void HtmlGenerator::endMemberItem(bool)
t << endl;
}
-void HtmlGenerator::startParameter(bool first)
-{
- if (first)
- {
- t << endl << "</b></td>" << endl;
- t << "<td valign=bottom><b>" << endl;
- }
- else
- {
- t << "<tr><td></td><td><b>" << endl;
- }
-}
-
-void HtmlGenerator::endParameter(bool)
-{
- t << "</b></td></tr>" << endl;
-}
-
void HtmlGenerator::insertMemberAlign()
{
@@ -764,20 +750,81 @@ void HtmlGenerator::writeImage(const char *name,const char *,const char *)
void HtmlGenerator::startMemberDoc(const char *,const char *,const char *,const char *)
{
+ DBG_HTML(t << "<!-- startMemberDoc -->" << endl;)
t << "<p>" << endl;
t << "<table width=100% cellpadding=2 cellspacing=0 border=0>" << endl;
t << " <tr>" << endl;
t << " <td class=\"md\"><b>" << endl;
t << " <table cellspadding=0 cellspacing=0 border=0>" << endl;
+}
+
+void HtmlGenerator::startMemberDocPrefixItem()
+{
+ DBG_HTML(t << "<!-- startMemberDocPrefixItem -->" << endl;)
t << " <tr>" << endl;
- t << " <td valign=top><b>" << endl;
+ t << " <td colspan=\"2\"><b>" << endl;
+}
+
+void HtmlGenerator::endMemberDocPrefixItem()
+{
+ DBG_HTML(t << "<!-- endMemberDocPrefixItem -->" << endl;)
+ t << " </b></td>" << endl;
+ t << " </tr>" << endl;
+}
+
+void HtmlGenerator::startMemberDocName()
+{
+ DBG_HTML(t << "<!-- startMemberDocName -->" << endl;)
+ t << " <tr>" << endl;
+ t << " <td nowrap valign=\"top\"><b> " << endl;
+}
+
+void HtmlGenerator::endMemberDocName()
+{
+ DBG_HTML(t << "<!-- endMemberDocName -->" << endl;)
+ t << endl;
+ t << " </b></td>" << endl;
+}
+
+void HtmlGenerator::startParameter(bool first)
+{
+ if (first)
+ {
+ DBG_HTML(t << "<!-- startFirstParameter -->" << endl;)
+ t << " <td valign=\"bottom\"><b>" << endl;
+ }
+ else
+ {
+ DBG_HTML(t << "<!-- startParameter -->" << endl;)
+ t << " <tr>" << endl;
+ t << " <td></td>" << endl;
+ t << " <td><b>" << endl;
+ }
+}
+
+void HtmlGenerator::endParameter(bool first)
+{
+ if (first)
+ {
+ DBG_HTML(t << "<!-- endFirstParameter -->" << endl;)
+ t << endl;
+ t << " </b></td>" << endl;
+ //t << " <td width=\"300\"><img src=\"null.gif\"></td>" << endl;
+ t << " </tr>" << endl;
+ }
+ else
+ {
+ DBG_HTML(t << "<!-- endParameter -->" << endl;)
+ t << endl;
+ t << " </b></td>" << endl;
+ t << " </tr>" << endl;
+ }
}
void HtmlGenerator::endMemberDoc()
{
+ DBG_HTML(t << "<!-- endMemberDoc -->" << endl;)
t << endl;
- t << " </b></td>" << endl;
- t << " </tr>" << endl;
t << " </table>" << endl;
t << " </td>" << endl;
t << " </tr>" << endl;