diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-12-07 21:08:27 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-12-07 21:08:27 (GMT) |
commit | 6f118034b4528e83e5668bb4bfbcc2947bd180c7 (patch) | |
tree | 17668f7d76b3d88c791ebb8eec8dc386256af3e6 /src/htmldocvisitor.cpp | |
parent | f3e7209fed9703e8be668753d1083ba335121a6e (diff) | |
download | Doxygen-6f118034b4528e83e5668bb4bfbcc2947bd180c7.zip Doxygen-6f118034b4528e83e5668bb4bfbcc2947bd180c7.tar.gz Doxygen-6f118034b4528e83e5668bb4bfbcc2947bd180c7.tar.bz2 |
Release-1.3-rc1-20021207
Diffstat (limited to 'src/htmldocvisitor.cpp')
-rw-r--r-- | src/htmldocvisitor.cpp | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/htmldocvisitor.cpp b/src/htmldocvisitor.cpp index 6d127c6..a5bcb1b 100644 --- a/src/htmldocvisitor.cpp +++ b/src/htmldocvisitor.cpp @@ -91,6 +91,8 @@ void HtmlDocVisitor::visit(DocSymbol *s) case DocSymbol::Hash: m_t << "#"; break; case DocSymbol::Percent: m_t << "%"; break; case DocSymbol::Copy: m_t << "©"; break; + case DocSymbol::Tm: m_t << "&tm;"; break; + case DocSymbol::Reg: m_t << "®"; break; case DocSymbol::Apos: m_t << "'"; break; case DocSymbol::Quot: m_t << "\""; break; case DocSymbol::Uml: m_t << "&" << s->letter() << "uml;"; break; @@ -364,11 +366,12 @@ void HtmlDocVisitor::visitPre(DocSimpleSect *s) case DocSimpleSect::Attention: m_t << theTranslator->trAttention(); break; case DocSimpleSect::User: break; + case DocSimpleSect::Rcs: break; case DocSimpleSect::Unknown: break; } // special case 1: user defined title - if (s->type()!=DocSimpleSect::User) + if (s->type()!=DocSimpleSect::User && s->type()!=DocSimpleSect::Rcs) { m_t << ":</b></dt><dd>"; } @@ -644,9 +647,13 @@ void HtmlDocVisitor::visitPre(DocDotFile *df) QString outDir = Config_getString("HTML_OUTPUT"); writeDotGraphFromFile(df->file(),outDir,baseName,BITMAP); m_t << "<div align=\"center\">" << endl; + QString mapName = baseName+".map"; + QString mapFile = df->file()+".map"; m_t << "<img src=\"" << baseName << "." << Config_getEnum("DOT_IMAGE_FORMAT") << "\" alt=\"" - << baseName << "\">" << endl; + << baseName << "\" border=\"0\" usemap=\"#" << mapName << "\">" << endl; + QString imap = getDotImageMapFromFile(df->file(),outDir); + m_t << "<map name=\"" << mapName << "\">" << imap << "</map>" << endl; if (df->hasCaption()) { m_t << "<p><strong>"; |