diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-09 19:45:37 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-09 19:45:37 (GMT) |
commit | 61a83f312ce95090dc02ca3b8ce8dd3319d97df1 (patch) | |
tree | 2dbdf12fc6696bf3a9d133e8e23ef223690e919a /src/index.cpp | |
parent | e3baf8c5ec430e5f09f00384ebdfa35242fd3316 (diff) | |
download | Doxygen-61a83f312ce95090dc02ca3b8ce8dd3319d97df1.zip Doxygen-61a83f312ce95090dc02ca3b8ce8dd3319d97df1.tar.gz Doxygen-61a83f312ce95090dc02ca3b8ce8dd3319d97df1.tar.bz2 |
Release-1.1.5_20000709
Diffstat (limited to 'src/index.cpp')
-rw-r--r-- | src/index.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/index.cpp b/src/index.cpp index aabdcdc..d59a3a0 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -1491,6 +1491,23 @@ void writeGroupList(OutputList &ol) //---------------------------------------------------------------------------- +void writeGraphInfo(OutputList &ol) +{ + if (!Config::haveDotFlag) return; + ol.pushGeneratorState(); + ol.disableAllBut(OutputGenerator::Html); + generateGraphLegend(Config::htmlOutputDir); + startFile(ol,"graph_legend","Graph Legend"); + startTitle(ol,0); + parseText(ol,theTranslator->trLegendTitle()); + endTitle(ol,0,0); + parseDoc(ol,"graph_legend",1,0,0,theTranslator->trLegendDocs()); + endFile(ol); + ol.popGeneratorState(); +} + +//---------------------------------------------------------------------------- + void writeGroupIndex(OutputList &ol) { if (documentedGroups==0) return; @@ -1522,6 +1539,8 @@ void writeGroupIndex(OutputList &ol) ol.popGeneratorState(); } +//---------------------------------------------------------------------------- + void writeIndex(OutputList &ol) { // save old generator state |