File: ps.h

package info (click to toggle)
graphviz 14.1.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 139,440 kB
  • sloc: ansic: 142,129; cpp: 11,960; python: 7,770; makefile: 4,043; yacc: 3,030; xml: 2,972; tcl: 2,495; sh: 1,388; objc: 1,159; java: 560; lex: 423; perl: 243; awk: 156; pascal: 139; php: 58; ruby: 49; cs: 31; sed: 1
file content (180 lines) | stat: -rw-r--r-- 5,096 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
#pragma once

#include <stddef.h>

static const char *ps_txt[] = {
    // clang-format off
    "%%BeginProlog\n"
    "/DotDict 200 dict def\n"
    "DotDict begin\n"
    "\n"
    "/setupLatin1 {\n"
    "mark\n"
    "/EncodingVector 256 array def\n"
    " EncodingVector 0\n"
    "\n"
    "ISOLatin1Encoding 0 255 getinterval putinterval\n"
    "EncodingVector 45 /hyphen put\n"
    "\n"
    "% Set up ISO Latin 1 character encoding\n"
    "/starnetISO {\n"
    "        dup dup findfont dup length dict begin\n"
    "        { 1 index /FID ne { def }{ pop pop } ifelse\n"
    "        } forall\n"
    "        /Encoding EncodingVector def\n"
    "        currentdict end definefont\n"
    "} def\n"
    "/Times-Roman starnetISO def\n"
    "/Times-Italic starnetISO def\n"
    "/Times-Bold starnetISO def\n"
    "/Times-BoldItalic starnetISO def\n"
    "/Helvetica starnetISO def\n"
    "/Helvetica-Oblique starnetISO def\n"
    "/Helvetica-Bold starnetISO def\n"
    "/Helvetica-BoldOblique starnetISO def\n"
    "/Courier starnetISO def\n"
    "/Courier-Oblique starnetISO def\n"
    "/Courier-Bold starnetISO def\n"
    "/Courier-BoldOblique starnetISO def\n"
    "cleartomark\n"
    "} bind def\n"
    "\n"
    "%%BeginResource: procset graphviz 0 0\n"
    "/coord-font-family /Times-Roman def\n"
    "/default-font-family /Times-Roman def\n"
    "/coordfont coord-font-family findfont 8 scalefont def\n"
    "\n"
    "/InvScaleFactor 1.0 def\n"
    "/set_scale {\n"
    "       dup 1 exch div /InvScaleFactor exch def\n"
    "       scale\n"
    "} bind def\n"
    "\n"
    "% styles\n"
    "/solid { [] 0 setdash } bind def\n"
    "/dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def\n"
    "/dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def\n"
    "/invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def\n"
    "/bold { 2 setlinewidth } bind def\n"
    "/filled { } bind def\n"
    "/unfilled { } bind def\n"
    "/rounded { } bind def\n"
    "/diagonals { } bind def\n"
    "/tapered { } bind def\n"
    "\n"
    "% hooks for setting color \n"
    "/nodecolor { sethsbcolor } bind def\n"
    "/edgecolor { sethsbcolor } bind def\n"
    "/graphcolor { sethsbcolor } bind def\n"
    "/nopcolor {pop pop pop} bind def\n"
    "\n"
    "/beginpage {	% i j npages\n"
    "	/npages exch def\n"
    "	/j exch def\n"
    "	/i exch def\n"
    "	/str 10 string def\n"
    "	npages 1 gt {\n"
    "		gsave\n"
    "			coordfont setfont\n"
    "			0 0 moveto\n"
    "			(\\() show i str cvs show (,) show j str cvs show (\\)) show\n"
    "		grestore\n"
    "	} if\n"
    "} bind def\n"
    "\n"
    "/set_font {\n"
    "	findfont exch\n"
    "	scalefont setfont\n"
    "} def\n"
    "\n"
    "% draw text fitted to its expected width\n"
    "/alignedtext {			% width text\n"
    "	/text exch def\n"
    "	/width exch def\n"
    "	gsave\n"
    "		width 0 gt {\n"
    "			[] 0 setdash\n"
    "			text stringwidth pop width exch sub text length div 0 text ashow\n"
    "		} if\n"
    "	grestore\n"
    "} def\n"
    "\n"
    "/boxprim {				% xcorner ycorner xsize ysize\n"
    "		4 2 roll\n"
    "		moveto\n"
    "		2 copy\n"
    "		exch 0 rlineto\n"
    "		0 exch rlineto\n"
    "		pop neg 0 rlineto\n"
    "		closepath\n"
    "} bind def\n"
    "\n"
    "/ellipse_path {\n"
    "	/ry exch def\n"
    "	/rx exch def\n"
    "	/y exch def\n"
    "	/x exch def\n"
    "	matrix currentmatrix\n"
    "	newpath\n"
    "	x y translate\n"
    "	rx ry scale\n"
    "	0 0 1 0 360 arc\n"
    "	setmatrix\n"
    "} bind def\n"
    "\n"
    "/endpage { showpage } bind def\n"
    "/showpage { } def\n"
    "\n"
    "/layercolorseq\n"
    "	[	% layer color sequence - darkest to lightest\n"
    "		[0 0 0]\n"
    "		[.2 .8 .8]\n"
    "		[.4 .8 .8]\n"
    "		[.6 .8 .8]\n"
    "		[.8 .8 .8]\n"
    "	]\n"
    "def\n"
    "\n"
    "/layerlen layercolorseq length def\n"
    "\n"
    "/setlayer {/maxlayer exch def /curlayer exch def\n"
    "	layercolorseq curlayer 1 sub layerlen mod get\n"
    "	aload pop sethsbcolor\n"
    "	/nodecolor {nopcolor} def\n"
    "	/edgecolor {nopcolor} def\n"
    "	/graphcolor {nopcolor} def\n"
    "} bind def\n"
    "\n"
    "/onlayer { curlayer ne {invis} if } def\n"
    "\n"
    "/onlayers {\n"
    "	/myupper exch def\n"
    "	/mylower exch def\n"
    "	curlayer mylower lt\n"
    "	curlayer myupper gt\n"
    "	or\n"
    "	{invis} if\n"
    "} def\n"
    "\n"
    "/curlayer 0 def\n"
    "\n"
    "%%EndResource\n"
    "%%EndProlog\n"
    "%%BeginSetup\n"
    "14 default-font-family set_font\n"
    "% /arrowlength 10 def\n"
    "% /arrowwidth 5 def\n"
    "\n"
    "% make sure pdfmark is harmless for PS-interpreters other than Distiller\n"
    "/pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse\n"
    "% make '<<' and '>>' safe on PS Level 1 devices\n"
    "/languagelevel where {pop languagelevel}{1} ifelse\n"
    "2 lt {\n"
    "    userdict (<<) cvn ([) cvn load put\n"
    "    userdict (>>) cvn ([) cvn load put\n"
    "} if\n"
    "\n"
    "%%EndSetup",
    NULL,
    // clang-format on
};