diff options
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r-- | src/htmlgen.cpp | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp index 24af9fc..28a363b 100644 --- a/src/htmlgen.cpp +++ b/src/htmlgen.cpp @@ -1026,6 +1026,13 @@ void HtmlGenerator::writeStyleInfo(int part) } } } + + Doxygen::indexList->addStyleSheetFile("jquery.js"); + Doxygen::indexList->addStyleSheetFile("dynsections.js"); + if (Config_getBool(INTERACTIVE_SVG)) + { + Doxygen::indexList->addStyleSheetFile("svgpan.js"); + } } } @@ -1045,9 +1052,12 @@ void HtmlGenerator::endDoxyAnchor(const char *,const char *) // t << endl << "<p>" << endl; //} -void HtmlGenerator::startParagraph() +void HtmlGenerator::startParagraph(const char *classDef) { - t << endl << "<p>"; + if (classDef) + t << endl << "<p class=\"" << classDef << "\">"; + else + t << endl << "<p>"; } void HtmlGenerator::endParagraph() @@ -1359,8 +1369,7 @@ void HtmlGenerator::endClassDiagram(const ClassDiagram &d, t << relPath << fileName << ".png\" usemap=\"#" << convertToId(name); t << "_map\" alt=\"\"/>" << endl; t << " <map id=\"" << convertToId(name); - t << "_map\" name=\""; - docify(name); + t << "_map\" name=\"" << convertToId(name); t << "_map\">" << endl; d.writeImage(t,dir,relPath,fileName); @@ -1561,7 +1570,7 @@ void HtmlGenerator::startMemberDoc( const char *clName, const char *memName, { DBG_HTML(t << "<!-- startMemberDoc -->" << endl;) t << "\n<h2 class=\"memtitle\">" - << "<span class=\"permalink\"><a href=\"#" << anchor << "\">§ </a></span>" + << "<span class=\"permalink\"><a href=\"#" << anchor << "\">◆ </a></span>" << title; if (memTotal>1) { |