diff options
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 |