diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-23 15:31:35 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-23 15:31:35 (GMT) |
commit | 7295388a3c6b3a12a77dc7a56862333c97e4ccb6 (patch) | |
tree | 191fcbf13137ceda80267e217af7556d5a1f194e /src/dot.cpp | |
parent | 4c7970f62fae48e85aee5b1d2a6d3d505e25c9b0 (diff) | |
download | Doxygen-7295388a3c6b3a12a77dc7a56862333c97e4ccb6.zip Doxygen-7295388a3c6b3a12a77dc7a56862333c97e4ccb6.tar.gz Doxygen-7295388a3c6b3a12a77dc7a56862333c97e4ccb6.tar.bz2 |
Release-1.2.0
Diffstat (limited to 'src/dot.cpp')
-rw-r--r-- | src/dot.cpp | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/src/dot.cpp b/src/dot.cpp index 37d06f1..02a0b07 100644 --- a/src/dot.cpp +++ b/src/dot.cpp @@ -1104,7 +1104,20 @@ void DotClassGraph::writeGraph(QTextStream &out, return; } out << "<p><center><img src=\"" << baseName << ".gif\" border=\"0\" usemap=\"#" - << m_startNode->m_label << "_" << mapName << "\"></center>" << endl; + << m_startNode->m_label << "_" << mapName << "\" alt=\""; + switch (m_graphType) + { + case Implementation: + out << "Collaboration graph"; + break; + case Interface: + out << "Interface dependency graph"; + break; + case Inheritance: + out << "Inheritance graph"; + break; + } + out << "\"></center>" << endl; out << "<map name=\"" << m_startNode->m_label << "_" << mapName << "\">" << endl; convertMapFile(out,baseName+".map"); out << "</map><p>" << endl; @@ -1140,7 +1153,7 @@ void DotClassGraph::writeGraph(QTextStream &out, "\\end{center}\n" "\\end{figure}\n"; } - //thisDir.remove(baseName+".dot"); + thisDir.remove(baseName+".dot"); QDir::setCurrent(oldDir); } @@ -1280,7 +1293,9 @@ void DotInclDepGraph::writeGraph(QTextStream &out, } out << "<p><center><img src=\"" << baseName << ".gif\" border=\"0\" usemap=\"#" - << mapName << "_map\">"; + << mapName << "_map\" alt=\""; + if (m_inverse) out << "Included by dependency graph"; else out << "Include dependency graph"; + out << "\">"; out << "</center>" << endl; out << "<map name=\"" << mapName << "_map\">" << endl; convertMapFile(out,baseName+".map"); |