diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-02-27 20:01:29 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-02-27 20:01:29 (GMT) |
commit | d745dd3737ece0f328e515b1cf10306da0901597 (patch) | |
tree | 2d189d04d6f9413eb324fae5f56f273f3855ff8b /src/htmlgen.cpp | |
parent | 11de530ba769e4e2735a20a74262380d51f8772f (diff) | |
download | Doxygen-d745dd3737ece0f328e515b1cf10306da0901597.zip Doxygen-d745dd3737ece0f328e515b1cf10306da0901597.tar.gz Doxygen-d745dd3737ece0f328e515b1cf10306da0901597.tar.bz2 |
Release-1.4.1-20050227
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 39 |
1 files changed, 11 insertions, 28 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index d40c6d1..a9583e6 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -78,6 +78,17 @@ static const char *defaultStyleSheet = " padding: 2px;\n" " line-height: 140%;\n" "}\n" +"DIV.navtab {\n" +" background-color: #eeeeff;\n" +" border: 1px solid #b0b0b0;\n" +" text-align: center;\n" +" margin: 2px;\n" +" margin-right: 15px;\n" +" padding: 2px;\n" +"}\n" +"TD.navtab {\n" +" font-size: 70%;\n" +"}\n" "A.qindex {\n" " text-decoration: none;\n" " font-weight: bold;\n" @@ -495,34 +506,6 @@ void HtmlGenerator::startFile(const char *name,const char *, << versionString << " -->" << endl; } -//void HtmlGenerator::startQuickIndexItem(const char *s,const char *l) -//{ -// QCString *dest; -// if (s) -// { -// t << "<a class=\"qindexRef\" "; -// t << "doxygen=\"" << s << ":"; -// if ((dest=Doxygen::tagDestinationDict[s])) t << *dest; -// if (strcmp(s,"_cgi")!=0) t << "/"; // small hack to get the cgi binary link right -// t << "\" "; -// } -// else -// { -// t << "<a class=\"qindex\" "; -// } -// t << "href=\""; -// if (s) -// { -// if ((dest=Doxygen::tagDestinationDict[s])) t << *dest; -// if (strcmp(s,"_cgi")!=0) t << "/"; -// } -// t << l << "\">"; -//} -// -//void HtmlGenerator::endQuickIndexItem() -//{ -// t << "</a> "; -//} static void writePageFooter(QTextStream &t,const QCString &lastTitle, const QCString relPath) |