@@ -1560,7 +1560,7 @@ void DocbookDocVisitor::writeMscFile(const QCString &fileName, const DocVerbatim
15601560DB_VIS_C
15611561 QCString shortName = makeBaseName (fileName," .msc" );
15621562 QCString outDir = Config_getString (DOCBOOK_OUTPUT);
1563- if (newFile) writeMscGraphFromFile (fileName,outDir,shortName,MscOutputFormat::BITMAP,s.srcFile (),s.srcLine ());
1563+ if (newFile) writeMscGraphFromFile (fileName,outDir,shortName,MscOutputFormat::BITMAP,s.srcFile (),s.srcLine (), false );
15641564 visitPreStart (m_t , s.children (), s.hasCaption (), s.relPath () + shortName + " .png" , s.width (), s.height ());
15651565 visitCaption (s.children ());
15661566 visitPostEnd (m_t , s.hasCaption ());
@@ -1571,7 +1571,7 @@ void DocbookDocVisitor::writePlantUMLFile(const QCString &baseName, const DocVer
15711571DB_VIS_C
15721572 QCString shortName = stripPath (baseName);
15731573 QCString outDir = Config_getString (DOCBOOK_OUTPUT);
1574- PlantumlManager::instance ().generatePlantUMLOutput (baseName,outDir,PlantumlManager::PUML_BITMAP);
1574+ PlantumlManager::instance ().generatePlantUMLOutput (baseName,outDir,PlantumlManager::PUML_BITMAP, false );
15751575 visitPreStart (m_t , s.children (), s.hasCaption (), s.relPath () + shortName + " .png" , s.width (),s.height ());
15761576 visitCaption (s.children ());
15771577 visitPostEnd (m_t , s.hasCaption ());
@@ -1597,7 +1597,7 @@ DB_VIS_C
15971597 for (const auto &bName: baseNameVector)
15981598 {
15991599 QCString baseName=makeBaseName (bName," .pu" );
1600- PlantumlManager::instance ().generatePlantUMLOutput (baseName,outDir,PlantumlManager::PUML_BITMAP);
1600+ PlantumlManager::instance ().generatePlantUMLOutput (baseName,outDir,PlantumlManager::PUML_BITMAP, false );
16011601 if (!first) endPlantUmlFile (hasCaption);
16021602 first = false ;
16031603 m_t << " <para>\n " ;
@@ -1620,7 +1620,7 @@ DB_VIS_C
16201620 if (Config_getBool (MERMAID_RENDER_MODE)==MERMAID_RENDER_MODE_t::CLIENT_SIDE) return ;
16211621 QCString shortName = stripPath (baseName);
16221622 QCString outDir = Config_getString (DOCBOOK_OUTPUT);
1623- MermaidManager::instance ().generateMermaidOutput (baseName,outDir,MermaidManager::OutputFormat::Bitmap);
1623+ MermaidManager::instance ().generateMermaidOutput (baseName,outDir,MermaidManager::OutputFormat::Bitmap, false );
16241624 visitPreStart (m_t , s.children (), s.hasCaption (), s.relPath () + shortName + " .png" , s.width (),s.height ());
16251625 visitCaption (s.children ());
16261626 visitPostEnd (m_t , s.hasCaption ());
@@ -1644,7 +1644,7 @@ DB_VIS_C
16441644 QCString baseName = MermaidManager::instance ().writeMermaidSource (outDir,
16451645 QCString (),inBuf,MermaidManager::OutputFormat::Bitmap,srcFile,srcLine);
16461646 QCString shortName = stripPath (baseName);
1647- MermaidManager::instance ().generateMermaidOutput (baseName,outDir,MermaidManager::OutputFormat::Bitmap);
1647+ MermaidManager::instance ().generateMermaidOutput (baseName,outDir,MermaidManager::OutputFormat::Bitmap, false );
16481648 m_t << " <para>\n " ;
16491649 visitPreStart (m_t , children, hasCaption, relPath + shortName + " .png" , width, height);
16501650}
@@ -1672,7 +1672,7 @@ DB_VIS_C
16721672 QCString baseName=makeBaseName (fileName," .msc" );
16731673 baseName.prepend (" msc_" );
16741674 QCString outDir = Config_getString (DOCBOOK_OUTPUT);
1675- if (newFile) writeMscGraphFromFile (fileName,outDir,baseName,MscOutputFormat::BITMAP,srcFile,srcLine);
1675+ if (newFile) writeMscGraphFromFile (fileName,outDir,baseName,MscOutputFormat::BITMAP,srcFile,srcLine, false );
16761676 m_t << " <para>\n " ;
16771677 visitPreStart (m_t , children, hasCaption, relPath + baseName + " .png" , width, height);
16781678}
@@ -1690,7 +1690,7 @@ void DocbookDocVisitor::writeDiaFile(const QCString &baseName, const DocVerbatim
16901690DB_VIS_C
16911691 QCString shortName = stripPath (baseName);
16921692 QCString outDir = Config_getString (DOCBOOK_OUTPUT);
1693- writeDiaGraphFromFile (baseName+" .dia" ,outDir,shortName,DiaOutputFormat::BITMAP,s.srcFile (),s.srcLine ());
1693+ writeDiaGraphFromFile (baseName+" .dia" ,outDir,shortName,DiaOutputFormat::BITMAP,s.srcFile (),s.srcLine (), false );
16941694 visitPreStart (m_t , s.children (), s.hasCaption (), shortName, s.width (),s.height ());
16951695 visitCaption (s.children ());
16961696 visitPostEnd (m_t , s.hasCaption ());
@@ -1710,7 +1710,7 @@ DB_VIS_C
17101710 QCString baseName=makeBaseName (fileName," .dia" );
17111711 baseName.prepend (" dia_" );
17121712 QCString outDir = Config_getString (DOCBOOK_OUTPUT);
1713- if (newFile) writeDiaGraphFromFile (fileName,outDir,baseName,DiaOutputFormat::BITMAP,srcFile,srcLine);
1713+ if (newFile) writeDiaGraphFromFile (fileName,outDir,baseName,DiaOutputFormat::BITMAP,srcFile,srcLine, false );
17141714 m_t << " <para>\n " ;
17151715 visitPreStart (m_t , children, hasCaption, relPath + baseName + " .png" , width, height);
17161716}
@@ -1728,7 +1728,7 @@ void DocbookDocVisitor::writeDotFile(const QCString &fileName, const DocVerbatim
17281728DB_VIS_C
17291729 QCString shortName = makeBaseName (fileName," .dot" );
17301730 QCString outDir = Config_getString (DOCBOOK_OUTPUT);
1731- if (newFile) writeDotGraphFromFile (fileName,outDir,shortName,GraphOutputFormat::BITMAP,s.srcFile (),s.srcLine ());
1731+ if (newFile) writeDotGraphFromFile (fileName,outDir,shortName,GraphOutputFormat::BITMAP,s.srcFile (),s.srcLine (), false );
17321732 visitPreStart (m_t , s.children (), s.hasCaption (), s.relPath () + shortName + " ." + getDotImageExtension (), s.width (),s.height ());
17331733 visitCaption (s.children ());
17341734 visitPostEnd (m_t , s.hasCaption ());
@@ -1749,7 +1749,7 @@ DB_VIS_C
17491749 baseName.prepend (" dot_" );
17501750 QCString outDir = Config_getString (DOCBOOK_OUTPUT);
17511751 QCString imgExt = getDotImageExtension ();
1752- if (newFile) writeDotGraphFromFile (fileName,outDir,baseName,GraphOutputFormat::BITMAP,srcFile,srcLine);
1752+ if (newFile) writeDotGraphFromFile (fileName,outDir,baseName,GraphOutputFormat::BITMAP,srcFile,srcLine, false );
17531753 m_t << " <para>\n " ;
17541754 visitPreStart (m_t , children, hasCaption, relPath + baseName + " ." + imgExt, width, height);
17551755}
0 commit comments