1 |
%!PS-Adobe-3.0 |
2 |
%%Creator: graphviz version 2.28.0 (20110507.0327) |
3 |
%%Title: G |
4 |
%%Pages: (atend) |
5 |
%%BoundingBox: (atend) |
6 |
%%EndComments |
7 |
save |
8 |
%%BeginProlog |
9 |
/DotDict 200 dict def |
10 |
DotDict begin |
11 |
|
12 |
/setupLatin1 { |
13 |
mark |
14 |
/EncodingVector 256 array def |
15 |
EncodingVector 0 |
16 |
|
17 |
ISOLatin1Encoding 0 255 getinterval putinterval |
18 |
EncodingVector 45 /hyphen put |
19 |
|
20 |
% Set up ISO Latin 1 character encoding |
21 |
/starnetISO { |
22 |
dup dup findfont dup length dict begin |
23 |
{ 1 index /FID ne { def }{ pop pop } ifelse |
24 |
} forall |
25 |
/Encoding EncodingVector def |
26 |
currentdict end definefont |
27 |
} def |
28 |
/Times-Roman starnetISO def |
29 |
/Times-Italic starnetISO def |
30 |
/Times-Bold starnetISO def |
31 |
/Times-BoldItalic starnetISO def |
32 |
/Helvetica starnetISO def |
33 |
/Helvetica-Oblique starnetISO def |
34 |
/Helvetica-Bold starnetISO def |
35 |
/Helvetica-BoldOblique starnetISO def |
36 |
/Courier starnetISO def |
37 |
/Courier-Oblique starnetISO def |
38 |
/Courier-Bold starnetISO def |
39 |
/Courier-BoldOblique starnetISO def |
40 |
cleartomark |
41 |
} bind def |
42 |
|
43 |
%%BeginResource: procset graphviz 0 0 |
44 |
/coord-font-family /Times-Roman def |
45 |
/default-font-family /Times-Roman def |
46 |
/coordfont coord-font-family findfont 8 scalefont def |
47 |
|
48 |
/InvScaleFactor 1.0 def |
49 |
/set_scale { |
50 |
dup 1 exch div /InvScaleFactor exch def |
51 |
scale |
52 |
} bind def |
53 |
|
54 |
% styles |
55 |
/solid { [] 0 setdash } bind def |
56 |
/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def |
57 |
/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def |
58 |
/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def |
59 |
/bold { 2 setlinewidth } bind def |
60 |
/filled { } bind def |
61 |
/unfilled { } bind def |
62 |
/rounded { } bind def |
63 |
/diagonals { } bind def |
64 |
|
65 |
% hooks for setting color |
66 |
/nodecolor { sethsbcolor } bind def |
67 |
/edgecolor { sethsbcolor } bind def |
68 |
/graphcolor { sethsbcolor } bind def |
69 |
/nopcolor {pop pop pop} bind def |
70 |
|
71 |
/beginpage { % i j npages |
72 |
/npages exch def |
73 |
/j exch def |
74 |
/i exch def |
75 |
/str 10 string def |
76 |
npages 1 gt { |
77 |
gsave |
78 |
coordfont setfont |
79 |
0 0 moveto |
80 |
(\() show i str cvs show (,) show j str cvs show (\)) show |
81 |
grestore |
82 |
} if |
83 |
} bind def |
84 |
|
85 |
/set_font { |
86 |
findfont exch |
87 |
scalefont setfont |
88 |
} def |
89 |
|
90 |
% draw text fitted to its expected width |
91 |
/alignedtext { % width text |
92 |
/text exch def |
93 |
/width exch def |
94 |
gsave |
95 |
width 0 gt { |
96 |
[] 0 setdash |
97 |
text stringwidth pop width exch sub text length div 0 text ashow |
98 |
} if |
99 |
grestore |
100 |
} def |
101 |
|
102 |
/boxprim { % xcorner ycorner xsize ysize |
103 |
4 2 roll |
104 |
moveto |
105 |
2 copy |
106 |
exch 0 rlineto |
107 |
0 exch rlineto |
108 |
pop neg 0 rlineto |
109 |
closepath |
110 |
} bind def |
111 |
|
112 |
/ellipse_path { |
113 |
/ry exch def |
114 |
/rx exch def |
115 |
/y exch def |
116 |
/x exch def |
117 |
matrix currentmatrix |
118 |
newpath |
119 |
x y translate |
120 |
rx ry scale |
121 |
0 0 1 0 360 arc |
122 |
setmatrix |
123 |
} bind def |
124 |
|
125 |
/endpage { showpage } bind def |
126 |
/showpage { } def |
127 |
|
128 |
/layercolorseq |
129 |
[ % layer color sequence - darkest to lightest |
130 |
[0 0 0] |
131 |
[.2 .8 .8] |
132 |
[.4 .8 .8] |
133 |
[.6 .8 .8] |
134 |
[.8 .8 .8] |
135 |
] |
136 |
def |
137 |
|
138 |
/layerlen layercolorseq length def |
139 |
|
140 |
/setlayer {/maxlayer exch def /curlayer exch def |
141 |
layercolorseq curlayer 1 sub layerlen mod get |
142 |
aload pop sethsbcolor |
143 |
/nodecolor {nopcolor} def |
144 |
/edgecolor {nopcolor} def |
145 |
/graphcolor {nopcolor} def |
146 |
} bind def |
147 |
|
148 |
/onlayer { curlayer ne {invis} if } def |
149 |
|
150 |
/onlayers { |
151 |
/myupper exch def |
152 |
/mylower exch def |
153 |
curlayer mylower lt |
154 |
curlayer myupper gt |
155 |
or |
156 |
{invis} if |
157 |
} def |
158 |
|
159 |
/curlayer 0 def |
160 |
|
161 |
%%EndResource |
162 |
%%EndProlog |
163 |
%%BeginSetup |
164 |
14 default-font-family set_font |
165 |
1 setmiterlimit |
166 |
% /arrowlength 10 def |
167 |
% /arrowwidth 5 def |
168 |
|
169 |
% make sure pdfmark is harmless for PS-interpreters other than Distiller |
170 |
/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse |
171 |
% make '<<' and '>>' safe on PS Level 1 devices |
172 |
/languagelevel where {pop languagelevel}{1} ifelse |
173 |
2 lt { |
174 |
userdict (<<) cvn ([) cvn load put |
175 |
userdict (>>) cvn ([) cvn load put |
176 |
} if |
177 |
|
178 |
%%EndSetup |
179 |
setupLatin1 |
180 |
%%Page: 1 1 |
181 |
%%PageBoundingBox: 36 36 263 142 |
182 |
%%PageOrientation: Portrait |
183 |
0 0 1 beginpage |
184 |
gsave |
185 |
36 36 227 106 boxprim clip newpath |
186 |
1 1 set_scale 0 rotate 40 41 translate |
187 |
% Node1 |
188 |
gsave |
189 |
0 0 0.74902 nodecolor |
190 |
newpath 63.5 .5 moveto |
191 |
63.5 19.5 lineto |
192 |
152.5 19.5 lineto |
193 |
152.5 .5 lineto |
194 |
closepath fill |
195 |
1 setlinewidth |
196 |
filled |
197 |
0 0 0 nodecolor |
198 |
newpath 63.5 .5 moveto |
199 |
63.5 19.5 lineto |
200 |
152.5 19.5 lineto |
201 |
152.5 .5 lineto |
202 |
closepath stroke |
203 |
0 0 0 nodecolor |
204 |
10 /Helvetica set_font |
205 |
71.5 7.5 moveto 73 (QuaZipFileInfo64) alignedtext |
206 |
grestore |
207 |
% Node2 |
208 |
gsave |
209 |
[ /Rect [ -.5 78 64 98 ] |
210 |
/Border [ 0 0 0 ] |
211 |
/Action << /Subtype /URI /URI (qtcore.tags$qdatetime.html) >> |
212 |
/Subtype /Link |
213 |
/ANN pdfmark |
214 |
0 0 1 nodecolor |
215 |
newpath -.5 78.5 moveto |
216 |
-.5 97.5 lineto |
217 |
64.5 97.5 lineto |
218 |
64.5 78.5 lineto |
219 |
closepath fill |
220 |
1 setlinewidth |
221 |
filled |
222 |
0 0 0 nodecolor |
223 |
newpath -.5 78.5 moveto |
224 |
-.5 97.5 lineto |
225 |
64.5 97.5 lineto |
226 |
64.5 78.5 lineto |
227 |
closepath stroke |
228 |
0 0 0 nodecolor |
229 |
10 /Helvetica set_font |
230 |
7.5 85.5 moveto 49 (QDateTime) alignedtext |
231 |
grestore |
232 |
% Node2->Node1 |
233 |
gsave |
234 |
1 setlinewidth |
235 |
dashed |
236 |
0.77647 0.75294 0.80392 edgecolor |
237 |
newpath 41.07 69.18 moveto |
238 |
46.74 59.22 54.71 47.03 64 38 curveto |
239 |
71.58 30.63 81.52 24.32 90.04 19.65 curveto |
240 |
stroke |
241 |
0.77647 0.75294 0.80392 edgecolor |
242 |
newpath 37.88 67.74 moveto |
243 |
36.21 78.2 lineto |
244 |
44.04 71.06 lineto |
245 |
closepath fill |
246 |
1 setlinewidth |
247 |
solid |
248 |
0.77647 0.75294 0.80392 edgecolor |
249 |
newpath 37.88 67.74 moveto |
250 |
36.21 78.2 lineto |
251 |
44.04 71.06 lineto |
252 |
closepath stroke |
253 |
0 0 0 edgecolor |
254 |
10 /Helvetica set_font |
255 |
64 46.5 moveto 40 (dateTime) alignedtext |
256 |
grestore |
257 |
% Node3 |
258 |
gsave |
259 |
[ /Rect [ 83 78 133 98 ] |
260 |
/Border [ 0 0 0 ] |
261 |
/Action << /Subtype /URI /URI (qtcore.tags$qstring.html) >> |
262 |
/Subtype /Link |
263 |
/ANN pdfmark |
264 |
0 0 1 nodecolor |
265 |
newpath 83 78.5 moveto |
266 |
83 97.5 lineto |
267 |
133 97.5 lineto |
268 |
133 78.5 lineto |
269 |
closepath fill |
270 |
1 setlinewidth |
271 |
filled |
272 |
0 0 0 nodecolor |
273 |
newpath 83 78.5 moveto |
274 |
83 97.5 lineto |
275 |
133 97.5 lineto |
276 |
133 78.5 lineto |
277 |
closepath stroke |
278 |
0 0 0 nodecolor |
279 |
10 /Helvetica set_font |
280 |
91 85.5 moveto 34 (QString) alignedtext |
281 |
grestore |
282 |
% Node3->Node1 |
283 |
gsave |
284 |
1 setlinewidth |
285 |
dashed |
286 |
0.77647 0.75294 0.80392 edgecolor |
287 |
newpath 108 68.22 moveto |
288 |
108 52.7 108 31.36 108 19.62 curveto |
289 |
stroke |
290 |
0.77647 0.75294 0.80392 edgecolor |
291 |
newpath 104.5 68.28 moveto |
292 |
108 78.28 lineto |
293 |
111.5 68.28 lineto |
294 |
closepath fill |
295 |
1 setlinewidth |
296 |
solid |
297 |
0.77647 0.75294 0.80392 edgecolor |
298 |
newpath 104.5 68.28 moveto |
299 |
108 78.28 lineto |
300 |
111.5 68.28 lineto |
301 |
closepath stroke |
302 |
0 0 0 edgecolor |
303 |
10 /Helvetica set_font |
304 |
108 52 moveto 41 (comment) alignedtext |
305 |
0 0 0 edgecolor |
306 |
10 /Helvetica set_font |
307 |
116 41 moveto 25 (name) alignedtext |
308 |
grestore |
309 |
% Node4 |
310 |
gsave |
311 |
[ /Rect [ 151 78 219 98 ] |
312 |
/Border [ 0 0 0 ] |
313 |
/Action << /Subtype /URI /URI (qtcore.tags$qbytearray.html) >> |
314 |
/Subtype /Link |
315 |
/ANN pdfmark |
316 |
0 0 1 nodecolor |
317 |
newpath 151 78.5 moveto |
318 |
151 97.5 lineto |
319 |
219 97.5 lineto |
320 |
219 78.5 lineto |
321 |
closepath fill |
322 |
1 setlinewidth |
323 |
filled |
324 |
0 0 0 nodecolor |
325 |
newpath 151 78.5 moveto |
326 |
151 97.5 lineto |
327 |
219 97.5 lineto |
328 |
219 78.5 lineto |
329 |
closepath stroke |
330 |
0 0 0 nodecolor |
331 |
10 /Helvetica set_font |
332 |
159 85.5 moveto 52 (QByteArray) alignedtext |
333 |
grestore |
334 |
% Node4->Node1 |
335 |
gsave |
336 |
1 setlinewidth |
337 |
dashed |
338 |
0.77647 0.75294 0.80392 edgecolor |
339 |
newpath 175.96 69.15 moveto |
340 |
170.31 59.17 162.33 46.98 153 38 curveto |
341 |
145.25 30.54 135.09 24.23 126.38 19.58 curveto |
342 |
stroke |
343 |
0.77647 0.75294 0.80392 edgecolor |
344 |
newpath 172.99 71.02 moveto |
345 |
180.81 78.18 lineto |
346 |
179.16 67.71 lineto |
347 |
closepath fill |
348 |
1 setlinewidth |
349 |
solid |
350 |
0.77647 0.75294 0.80392 edgecolor |
351 |
newpath 172.99 71.02 moveto |
352 |
180.81 78.18 lineto |
353 |
179.16 67.71 lineto |
354 |
closepath stroke |
355 |
0 0 0 edgecolor |
356 |
10 /Helvetica set_font |
357 |
170 46.5 moveto 22 (extra) alignedtext |
358 |
grestore |
359 |
endpage |
360 |
showpage |
361 |
grestore |
362 |
%%PageTrailer |
363 |
%%EndPage: 1 |
364 |
%%Trailer |
365 |
%%Pages: 1 |
366 |
%%BoundingBox: 36 36 263 142 |
367 |
end |
368 |
restore |
369 |
%%EOF |