summaryrefslogtreecommitdiffstats
path: root/lib_subgraphs.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib_subgraphs.py')
-rw-r--r--lib_subgraphs.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib_subgraphs.py b/lib_subgraphs.py
new file mode 100644
index 0000000..9d74e42
--- /dev/null
+++ b/lib_subgraphs.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+# vim: set fileencoding=UTF-8:
+# Copyright 2013 Red Hat, Inc.
+# Author: Jan Pokorný <jpokorny at redhat dot com>
+# Distributed under GPLv2+; generated content under CC-BY-SA 3.0
+# (to view a copy, visit http://creativecommons.org/licenses/by-sa/3.0/)
+"""Subgraph library incl. visual aspects"""
+
+from lib import LibSubgraph
+
+
+class SubgraphImportant(LibSubgraph):
+ def __init__(self, *args, **kwargs):
+ kwargs.setdefault('fillcolor', '#eaeaea')
+ kwargs.setdefault('style', 'bold, filled, rounded')
+ super(SubgraphImportant, self).__init__(*args, **kwargs)
+
+
+class SubgraphStandard(LibSubgraph):
+ def __init__(self, *args, **kwargs):
+ kwargs.setdefault('fillcolor', '#f5f5f5')
+ kwargs.setdefault('style', 'filled, rounded')
+ super(SubgraphStandard, self).__init__(*args, **kwargs)