]> gitweb.factorcode.org Git - factor.git/blob - extra/graphviz/attributes/attributes.factor
Switch to https urls
[factor.git] / extra / graphviz / attributes / attributes.factor
1 ! Copyright (C) 2011 Alex Vondrak.
2 ! See https://factorcode.org/license.txt for BSD license.
3 USING: kernel ;
4 IN: graphviz.attributes
5
6 TUPLE: graph-attributes
7 Damping
8 K
9 URL
10 aspect
11 bb
12 bgcolor
13 center
14 charset
15 clusterrank
16 color
17 colorscheme
18 comment
19 compound
20 concentrate
21 defaultdist
22 dim
23 dimen
24 diredgeconstraints
25 dpi
26 epsilon
27 esep
28 fillcolor
29 fontcolor
30 fontname
31 fontnames
32 fontpath
33 fontsize
34 id
35 label
36 labeljust
37 labelloc
38 landscape
39 layers
40 layersep
41 layout
42 levels
43 levelsgap
44 lheight
45 lp
46 lwidth
47 margin
48 maxiter
49 mclimit
50 mindist
51 mode
52 model
53 mosek
54 nodesep
55 nojustify
56 normalize
57 nslimit
58 nslimit1
59 ordering
60 orientation
61 outputorder
62 overlap
63 overlap_scaling
64 pack
65 packmode
66 pad
67 page
68 pagedir
69 pencolor
70 penwidth
71 peripheries
72 quadtree
73 quantum
74 rank
75 rankdir
76 ranksep
77 ratio
78 remincross
79 repulsiveforce
80 resolution
81 root
82 rotate
83 searchsize
84 sep
85 showboxes
86 size
87 smoothing
88 sortv
89 splines
90 start
91 style
92 stylesheet
93 target
94 tooltip
95 truecolor
96 viewport
97 voro_margin ;
98
99 TUPLE: node-attributes
100 URL
101 color
102 colorscheme
103 comment
104 distortion
105 fillcolor
106 fixedsize
107 fontcolor
108 fontname
109 fontsize
110 group
111 height
112 id
113 image
114 imagescale
115 label
116 labelloc
117 layer
118 margin
119 nojustify
120 orientation
121 penwidth
122 peripheries
123 pin
124 pos
125 rects
126 regular
127 root
128 samplepoints
129 shape
130 shapefile
131 showboxes
132 sides
133 skew
134 sortv
135 style
136 target
137 tooltip
138 vertices
139 width
140 z ;
141
142 TUPLE: edge-attributes
143 URL
144 arrowhead
145 arrowsize
146 arrowtail
147 color
148 colorscheme
149 comment
150 constraint
151 decorate
152 dir
153 edgeURL
154 edgehref
155 edgetarget
156 edgetooltip
157 fontcolor
158 fontname
159 fontsize
160 headURL
161 headclip
162 headhref
163 headlabel
164 headport
165 headtarget
166 headtooltip
167 href
168 id
169 label
170 labelURL
171 labelangle
172 labeldistance
173 labelfloat
174 labelfontcolor
175 labelfontname
176 labelfontsize
177 labelhref
178 labeltarget
179 labeltooltip
180 layer
181 len
182 lhead
183 lp
184 ltail
185 minlen
186 nojustify
187 penwidth
188 pos
189 samehead
190 sametail
191 showboxes
192 style
193 tailURL
194 tailclip
195 tailhref
196 taillabel
197 tailport
198 tailtarget
199 tailtooltip
200 target
201 tooltip
202 weight ;
203
204 : <graph-attributes> ( -- attrs )
205     graph-attributes new ;
206
207 : <edge-attributes> ( -- attrs )
208     edge-attributes new ;
209
210 : <node-attributes> ( -- attrs )
211     node-attributes new ;