]> granicus.if.org Git - graphviz/commitdiff
Add template dot file for specifying attributes
authorerg <devnull@localhost>
Fri, 28 Mar 2008 15:34:22 +0000 (15:34 +0000)
committererg <devnull@localhost>
Fri, 28 Mar 2008 15:34:22 +0000 (15:34 +0000)
share/gui/Makefile.am
share/gui/template.dot [new file with mode: 0644]

index cc35a50f76ddfca3d24795c212f71a3cefd28860..36ffce4ad5effbb4716daec60358a007b3788a4d 100644 (file)
@@ -3,7 +3,7 @@
 #
 
 guidir = $(pkgdatadir)/gui
-gui = smyrna.glade attrs.txt arial.tga
+gui = smyrna.glade attrs.txt arial.tga template.dot
 
 if WITH_SMYRNA
 gui_DATA = $(gui)
diff --git a/share/gui/template.dot b/share/gui/template.dot
new file mode 100644 (file)
index 0000000..752febc
--- /dev/null
@@ -0,0 +1,19 @@
+strict digraph template {
+       graph [bgcolor=white,
+    bordercolor=green,
+    gridcolor=grey,
+    highlightednodecolor=blue,
+    highlightededgecolor=green,
+    selectednodecolor=red,
+    selectededgecolor=pink,
+    bordervisible=1,
+    gridvisible=1,
+    randomizenodecolors=1,
+    randomizeedgecolors=1,
+    usermode=1,
+    nodesizewithdegree=1,
+    antialiasing=1,
+    defaultfontname="Arial 16",
+    defaultnodeshape=1];
+       A -> B;
+}