summaryrefslogtreecommitdiffstats
path: root/lib_attributes.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib_attributes.py')
-rw-r--r--lib_attributes.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib_attributes.py b/lib_attributes.py
new file mode 100644
index 0000000..a129fe9
--- /dev/null
+++ b/lib_attributes.py
@@ -0,0 +1,23 @@
+# 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/)
+"""Attribute library incl. visual aspects"""
+
+# XXX: perhaps validators, unificators (symbolic colors), ...
+
+from lib import LibAttribute
+
+g = globals()
+for i in (
+ 'ARROWHEAD',
+ 'COLOR',
+ 'CONSTRAINT',
+ 'DIR',
+ 'FILLCOLOR',
+ 'FONTCOLOR',
+ 'LABEL',
+ 'SHAPE',
+ 'STYLE'):
+ g[i] = type(i, (LibAttribute,), {})