summaryrefslogtreecommitdiffstats
path: root/src/htmlgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/htmlgen.cpp')
-rw-r--r--src/htmlgen.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/htmlgen.cpp b/src/htmlgen.cpp
index 8223562..757c72c 100644
--- a/src/htmlgen.cpp
+++ b/src/htmlgen.cpp
@@ -319,8 +319,16 @@ static const char *defaultStyleSheet =
"}\n"
"a:visited {\n"
" color: #3D2185;\n"
+"}\n"
+".dirtab { padding: 4px;\n"
+" border-collapse: collapse;\n"
+" border: 1px solid #b0b0b0;\n"
+"}\n"
+"TH.dirtab { background: #eeeeff;\n"
+" font-weight: bold;\n"
"}\n";
+
static QCString g_header;
static QCString g_footer;
@@ -1246,6 +1254,15 @@ void HtmlGenerator::endCallGraph(DotCallGraph &g)
g.writeGraph(t,BITMAP,dir,relPath);
}
+void HtmlGenerator::startDirDepGraph()
+{
+}
+
+void HtmlGenerator::endDirDepGraph(DotDirDeps &g)
+{
+ g.writeGraph(t,BITMAP,dir,relPath);
+}
+
void HtmlGenerator::writeGraphicalHierarchy(DotGfxHierarchyTable &g)
{
g.writeGraph(t,dir);