summaryrefslogtreecommitdiffstats
path: root/src/diagram.cpp
diff options
context:
space:
mode:
authormueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-02-08 18:36:07 (GMT)
committermueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-02-08 18:36:07 (GMT)
commit6e9c313b87a0daa86ca108e93d67fc4c9e5bec68 (patch)
tree918babf3afc522698cc5ff63bd28ff5f8897964a /src/diagram.cpp
parent5620fa248663fa5ee8b2d8a26d773df60c2a4994 (diff)
downloadDoxygen-6e9c313b87a0daa86ca108e93d67fc4c9e5bec68.zip
Doxygen-6e9c313b87a0daa86ca108e93d67fc4c9e5bec68.tar.gz
Doxygen-6e9c313b87a0daa86ca108e93d67fc4c9e5bec68.tar.bz2
mods for doxygen-1.0.0
Diffstat (limited to 'src/diagram.cpp')
-rw-r--r--src/diagram.cpp36
1 files changed, 32 insertions, 4 deletions
diff --git a/src/diagram.cpp b/src/diagram.cpp
index 4cbd7cb..af9650a 100644
--- a/src/diagram.cpp
+++ b/src/diagram.cpp
@@ -31,6 +31,7 @@
#include "util.h"
#include "latexgen.h"
#include "htmlgen.h"
+#include "doxygen.h"
//-----------------------------------------------------------------------------
@@ -150,9 +151,21 @@ static void writeMapArea(QTextStream &t,ClassDef *cd,int x,int y,int w,int h)
{
if (cd->isLinkable())
{
+ QCString *dest;
+ QCString ref=cd->getReference();
t << "<area ";
- if (cd->getReference()) t << "doxygen=\"" << cd->getReference() << ":\" ";
- t << "href=\"" << cd->getOutputFileBase() << ".html\" ";
+ if (!ref.isEmpty())
+ {
+ t << "doxygen=\"" << ref << ":";
+ if ((dest=tagDestinationDict[ref])) t << *dest << "/";
+ t << "\" ";
+ }
+ t << "href=\"";
+ if (!ref.isEmpty())
+ {
+ if ((dest=tagDestinationDict[ref])) t << *dest << "/";
+ }
+ t << cd->getOutputFileBase() << ".html\" ";
t << "ALT=\"" << cd->name();
t << "\" shape=\"rect\" coords=\"" << x << "," << y << ",";
t << (x+w) << "," << (y+h) << "\">" << endl;
@@ -217,8 +230,10 @@ void DiagramItem::addChild(DiagramItem *di)
void DiagramRow::insertClass(DiagramItem *parent,ClassDef *cd,bool doBases,
Protection prot,Specifier virt,const char *ts)
{
+ if (cd->visited) return; // error in the class diagram
DiagramItem *di=new DiagramItem(parent, diagram->at(level)->count(),
cd,prot,virt,ts);
+ cd->visited=TRUE;
if (parent) parent->addChild(di);
di->move(count()*gridWidth,level*gridHeight);
append(di);
@@ -229,7 +244,7 @@ void DiagramRow::insertClass(DiagramItem *parent,ClassDef *cd,bool doBases,
while (bcd)
{
ClassDef *ccd=bcd->classDef;
- if (ccd && ccd->isVisibleInHierarchy()) count++;
+ if (ccd && ccd->isVisibleInHierarchy() && !ccd->visited) count++;
bcd=bcl->next();
}
if (count>0 && (prot!=Private || !doBases))
@@ -249,7 +264,7 @@ void DiagramRow::insertClass(DiagramItem *parent,ClassDef *cd,bool doBases,
while (bcd)
{
ClassDef *ccd=bcd->classDef;
- if (ccd && ccd->isVisibleInHierarchy())
+ if (ccd && ccd->isVisibleInHierarchy() && !ccd->visited)
{
row->insertClass(di,ccd,doBases,bcd->prot,
doBases?bcd->virt:Normal,
@@ -883,10 +898,23 @@ void TreeDiagram::drawConnectors(QTextStream &t,Image *image,
}
}
+
+void clearVisitFlags()
+{
+ ClassListIterator cli(classList);
+ ClassDef *cd;
+ for (;(cd=cli.current());++cli)
+ {
+ cd->visited=FALSE;
+ }
+}
+
ClassDiagram::ClassDiagram(ClassDef *root)
{
+ clearVisitFlags();
base = new TreeDiagram(root,TRUE);
base->computeLayout();
+ clearVisitFlags();
super = new TreeDiagram(root,FALSE);
super->computeLayout();
DiagramItem *baseItem = base->first()->first();