summaryrefslogtreecommitdiff
path: root/fpcdocs/pics/ide/watchlst.eps
blob: 3ac5db63e241eef8c2d196ac3fb456c0a818e87a (plain)
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
%!PS-Adobe-3.0 EPSF-3.0
%%Creator: (ImageMagick)
%%Title: (watchlst.eps)
%%CreationDate: (Tue Nov 28 23:50:42 2000)
%%BoundingBox: 0 0 295 84
%%DocumentData: Clean7Bit
%%LanguageLevel: 1
%%Pages: 0
%%EndComments

%%BeginDefaults
%%PageOrientation: Portrait
%%EndDefaults

%%BeginProlog
%
% Display a color image.  The image is displayed in color on
% Postscript viewers or printers that support color, otherwise
% it is displayed as grayscale.
%
/buffer 512 string def
/byte 1 string def
/color_packet 3 string def
/pixels 768 string def

/DirectClassPacket
{
  %
  % Get a DirectClass packet.
  %
  % Parameters:
  %   red.
  %   green.
  %   blue.
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile color_packet readhexstring pop pop
  compression 0 gt
  {
    /number_pixels 3 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add 3 mul def
  } ifelse
  0 3 number_pixels 1 sub
  {
    pixels exch color_packet putinterval
  } for
  pixels 0 number_pixels getinterval
} bind def

/DirectClassImage
{
  %
  % Display a DirectClass image.
  %
  systemdict /colorimage known
  {
    columns rows 8
    [
      columns 0 0
      rows neg 0 rows
    ]
    { DirectClassPacket } false 3 colorimage
  }
  {
    %
    % No colorimage operator;  convert to grayscale.
    %
    columns rows 8
    [
      columns 0 0
      rows neg 0 rows
    ]
    { GrayDirectClassPacket } image
  } ifelse
} bind def

/GrayDirectClassPacket
{
  %
  % Get a DirectClass packet;  convert to grayscale.
  %
  % Parameters:
  %   red
  %   green
  %   blue
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile color_packet readhexstring pop pop
  color_packet 0 get 0.299 mul
  color_packet 1 get 0.587 mul add
  color_packet 2 get 0.114 mul add
  cvi
  /gray_packet exch def
  compression 0 gt
  {
    /number_pixels 1 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add def
  } ifelse
  0 1 number_pixels 1 sub
  {
    pixels exch gray_packet put
  } for
  pixels 0 number_pixels getinterval
} bind def

/GrayPseudoClassPacket
{
  %
  % Get a PseudoClass packet;  convert to grayscale.
  %
  % Parameters:
  %   index: index into the colormap.
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile byte readhexstring pop 0 get
  /offset exch 3 mul def
  /color_packet colormap offset 3 getinterval def
  color_packet 0 get 0.299 mul
  color_packet 1 get 0.587 mul add
  color_packet 2 get 0.114 mul add
  cvi
  /gray_packet exch def
  compression 0 gt
  {
    /number_pixels 1 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add def
  } ifelse
  0 1 number_pixels 1 sub
  {
    pixels exch gray_packet put
  } for
  pixels 0 number_pixels getinterval
} bind def

/PseudoClassPacket
{
  %
  % Get a PseudoClass packet.
  %
  % Parameters:
  %   index: index into the colormap.
  %   length: number of pixels minus one of this color (optional).
  %
  currentfile byte readhexstring pop 0 get
  /offset exch 3 mul def
  /color_packet colormap offset 3 getinterval def
  compression 0 gt
  {
    /number_pixels 3 def
  }
  {
    currentfile byte readhexstring pop 0 get
    /number_pixels exch 1 add 3 mul def
  } ifelse
  0 3 number_pixels 1 sub
  {
    pixels exch color_packet putinterval
  } for
  pixels 0 number_pixels getinterval
} bind def

/PseudoClassImage
{
  %
  % Display a PseudoClass image.
  %
  % Parameters:
  %   class: 0-PseudoClass or 1-Grayscale.
  %
  currentfile buffer readline pop
  token pop /class exch def pop
  class 0 gt
  {
    currentfile buffer readline pop
    token pop /depth exch def pop
    /grays columns 8 add depth sub depth mul 8 idiv string def
    columns rows depth
    [
      columns 0 0
      rows neg 0 rows
    ]
    { currentfile grays readhexstring pop } image
  }
  {
    %
    % Parameters:
    %   colors: number of colors in the colormap.
    %   colormap: red, green, blue color packets.
    %
    currentfile buffer readline pop
    token pop /colors exch def pop
    /colors colors 3 mul def
    /colormap colors string def
    currentfile colormap readhexstring pop pop
    systemdict /colorimage known
    {
      columns rows 8
      [
        columns 0 0
        rows neg 0 rows
      ]
      { PseudoClassPacket } false 3 colorimage
    }
    {
      %
      % No colorimage operator;  convert to grayscale.
      %
      columns rows 8
      [
        columns 0 0
        rows neg 0 rows
      ]
      { GrayPseudoClassPacket } image
    } ifelse
  } ifelse
} bind def

/DisplayImage
{
  %
  % Display a DirectClass or PseudoClass image.
  %
  % Parameters:
  %   x & y translation.
  %   x & y scale.
  %   label pointsize.
  %   image label.
  %   image columns & rows.
  %   class: 0-DirectClass or 1-PseudoClass.
  %   compression: 0-RunlengthEncodedCompression or 1-NoCompression.
  %   hex color packets.
  %
  gsave
  currentfile buffer readline pop
  token pop /x exch def
  token pop /y exch def pop
  x y translate
  currentfile buffer readline pop
  token pop /x exch def
  token pop /y exch def pop
  currentfile buffer readline pop
  token pop /pointsize exch def pop
  /Helvetica findfont pointsize scalefont setfont
  x y scale
  currentfile buffer readline pop
  token pop /columns exch def
  token pop /rows exch def pop
  currentfile buffer readline pop
  token pop /class exch def pop
  currentfile buffer readline pop
  token pop /compression exch def pop
  class 0 gt { PseudoClassImage } { DirectClassImage } ifelse
  grestore
} bind def
%%EndProlog
%%Page:  1 1
%%PageBoundingBox: 0 0 296 85
userdict begin
%%BeginData:
DisplayImage
0 0
296 85
12.000000
296 85
1
0
0
7
008080
f8fcf8
00fc00
008000
000080
c0c0c0
000000
00ff002700120103000b010300510101000201010018010200550103000c010300040201
0004010300100012010100050203000501010051010100020101000a0100000d01010054
010100010101000b01010005020300050101001000120101000502030005010100510101
0002010100090101000d01010054010100010101000b0101000402050004010100100001
010e00010101000502030005010100010147000701010002010100010103000201050002
010300030101000001010002010300030103000a01370003010100010107000101010006
0201000601010001010e00010101000e0101000502030005010100510101000001000000
010100040101000201010004010100010101000201020000010100000101000101010001
01010001010100440101000c01010006020100060101000e010100010101000e01010005
020300050101005101010000010000000101000101040002010100040101000601010001
0101000001050002010100460101000d01010006020100060101000e0101000101010001
010a00010101000502030005010100010147000801010000010100010101000101010002
01010004010100060101000101010000010100080101000a013700000101000401070001
010100060201000601010001010a000101010001010100010101000a0101000502030005
010100520101000001010001010100010101000201010000010100010101000101010002
010100010101000001010001010100010101000101010041010100010101000b01010006
020100060101000a0101000101010001010100010101000a010300030203000301030052
010100000101000201020000010100020102000301030002010200010101000101030003
010300420105000b01030004020100040103000a010100010101000101010001010100ff
0019010100010101000101010001010100ff001901010001010100010101000101010000
03ff031704060001010100010101000003230101030101010301010103090102033d0103
031301010384040600010101000101010000032201010302010103010101030a0101033f
010103140101038304020000040200010101000101010000032101010303010103010101
030a0101033f01010315010103820402000004020001010100010101000003100103030b
010103040101030101010301010403030101030101010300010403030103030201010302
010103000104030a01010301010103020103030501010302010103010101030201030306
010103810401000204010001010100010101000003130101030901010305010103010101
030101010301010103020101030001010301010103010101030101010301010103010101
030201010300010103010101030901010301010103050101030401010302010103010101
03010101030101010306010103800401000204010001010100010101000003100104030a
010103040101030101010301010103010101030201030302010103010101030101010301
010103010101030001000300010103000101030101010309010103010101030201040304
010103020101030101010301010503050101038104000004040000010101000101010000
030f010103010101030b0101030301010301010103010101030101010302010103000101
030101010301010103010101030101010301010103000100030001010300010103010101
030901010301010103010101030101010304010103020101030101010301010103080101
038204000004040000010101000101010000030f010103010101030c0101030201010301
010103010101030101010302010103010101030001010301010103010101030101010302
0101030001010301010103010101030a0103030201010301010103040101030201010301
010103010101030101010303010103830006000101010001010100000310010203000101
030c01010302010303020101030101010301010203010101030001010301010103020103
03030101030001010301010103010101030b010103040102030001010301010503010102
030001010301010303030101038400060001010100010101000003ff0317040600010101
00010101000003ff03170406000101010001010100ff0018040000010400000104000001
01010001010100ff001a0400000104000000000101010001010100ff0019040000010400
0001000101010001010100ff001804000001040000010400000101010001010100ff001a
0400000104000000000101010001010100ff001904000001040000010001010100010101
00ff001804000001040000010400000101010001010100ff001a04000001040000000001
01010001010100ff00190400000104000001000101010001010100ff0018040000010400
00010400000101010001010100ff001a0400000104000000000101010001010100ff0019
0400000104000001000101010001010100ff001804000001040000010400000101010001
010100ff001a0400000104000000000101010001010100ff001904000001040000010001
01010001010100ff001804000001040000010400000101010001010100ff001a04000001
04000000000101010001010100ff00190400000104000001000101010001010100ff0018
04000001040000010400000101010001010100ff001a0400000104000000000101010001
010100ff00190400000104000001000101010001010100ff001804000001040000010400
000101010001010100ff001a0400000104000000000101010001010100ff001904000001
04000001000101010001010100ff001804000001040000010400000101010001010100ff
001a0400000104000000000101010001010100ff00190400000104000001000101010001
010100ff001804000001040000010400000101010001010100ff001a0400000104000000
000101010001010100ff00190400000104000001000101010001010100ff001804000001
040000010400000101010001010100ff001a0400000104000000000101010001010100ff
00190400000104000001000101010001010100ff00180400000104000001040000010101
0001010100ff001a0400000104000000000101010001010100ff00190400000104000001
000101010001010100ff00180406000101010001010100ff001804060001010100010101
00ff001f000101010001010100ff001f000101010001010100ff00180400000404000001
01010001010100ff0018040000040400000101010001010100ff00180401000204010001
01010001010100ff0018040100020401000101010001010100ff00180402000004020001
01010001010100ff0018040200000402000101010001010100ff00180406000101010001
010100ff0018040600010101000101010000040800010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040700020201000100010101000101010000
040500000400000104000001040000030400000104000003040000010400000304000001
040000030400000104000003040000010400000304000001040000030400000104000003
040000010400000304000001040000030400000104000003040000010400000304000001
040000030400000104000003040000010400000304000001040000030400000104000003
040000010400000304000001040000030400000104000003040000010400000304000001
040000030400000104000003040000010400000304000001040000030400000104000003
040000010400000304000001040000030400000104000003040000010400000304000001
040000030400000104000003040000010400000204060002020100010001010100010101
000004040001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000010405000202010001000101010001010100000403000204010001
040000010400000004000001040000010400000004000001040000010400000004000001
040000010400000004000001040000010400000004000001040000010400000004000001
040000010400000004000001040000010400000004000001040000010400000004000001
040000010400000004000001040000010400000004000001040000010400000004000001
040000010400000004000001040000010400000004000001040000010400000004000001
040000010400000004000001040000010400000004000001040000010400000004000001
040000010400000004000001040000010400000004000001040000010400000004000001
040000010400000004000001040000010400000004000001040000010400000004000001
040000010400000004000001040000010400000004000001040000010400000004000001
040000010400000004000001040000010400000004000001040000010400000004000001
040000010400000004000001040000010400000004000001040000010400000304040002
020100010001010100010102040100040400000104000001040000030400000104000003
040000010400000304000001040000030400000104000003040000010400000304000001
040000030400000104000003040000010400000304000001040000030400000104000003
040000010400000304000001040000030400000104000003040000010400000304000001
040000030400000104000003040000010400000304000001040000030400000104000003
040000010400000304000001040000030400000104000003040000010400000304000001
040000030400000104000003040000010400000304000001040000030400000104000003
040000010400000304000001040000030400000104000003040000010400000604020002
0201000100010101000b0400000004000001040000010400000004000001040000010400
000004000001040000010400000004000001040000010400000004000001040000010400
000004000001040000010400000004000001040000010400000004000001040000010400
000004000001040000010400000004000001040000010400000004000001040000010400
000004000001040000010400000004000001040000010400000004000001040000010400
000004000001040000010400000004000001040000010400000004000001040000010400
000004000001040000010400000004000001040000010400000004000001040000010400
000004000001040000010400000004000001040000010400000004000001040000010400
000004000001040000010400000004000001040000010400000004000001040000010400
000004000001040000010400000004000001040000010400000004000001040000010400
000004000001040000010400000004000001040000010400000004000001040000010400
000004000001040000010400000604000204000100010101000404010004040100010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000005040200060001
010604030002040000010400000104000003040000010400000304000001040000030400
000104000003040000010400000304000001040000030400000104000003040000010400
000304000001040000030400000104000003040000010400000304000001040000030400
000104000003040000010400000304000001040000030400000104000003040000010400
000304000001040000030400000104000003040000010400000304000001040000030400
000104000003040000010400000304000001040000030400000104000003040000010400
000304000001040000030400000104000003040000010400000304000001040000030400
000104000003040000010400000304000001040000040404000600080404000104000000
040000010400000104000000040000010400000104000000040000010400000104000000
040000010400000104000000040000010400000104000000040000010400000104000000
040000010400000104000000040000010400000104000000040000010400000104000000
040000010400000104000000040000010400000104000000040000010400000104000000
040000010400000104000000040000010400000104000000040000010400000104000000
040000010400000104000000040000010400000104000000040000010400000104000000
040000010400000104000000040000010400000104000000040000010400000104000000
040000010400000104000000040000010400000104000000040000010400000104000000
040000010400000104000000040000010400000104000000040000010400000104000000
040000010400000104000000040000010400000104000000040000010400000104000000
040000010400000104000000040000010400000104000000040000010400000104000001
040500060008040500000401000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000000400000104000001040000000400000104000001040000000400
000104000001040000010406000600080407000104000001040000030400000104000003
040000010400000304000001040000030400000104000003040000010400000304000001
040000030400000104000003040000010400000304000001040000030400000104000003
040000010400000304000001040000030400000104000003040000010400000304000001
040000030400000104000003040000010400000304000001040000030400000104000003
040000010400000304000001040000030400000104000003040000010400000304000001
040000030400000104000003040000010400000304000001040000030400000104000003
040000010400000304000001040000030400000104000003040000010400000104070006
000804070000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
000104000000040000010400000104000000040000010400000104000000040000010400
00010408000605020400050104000503040005010400050106ff0616
%%EndData
end
%%PageTrailer
%%Trailer
%%BoundingBox: 0 0 295 84
%%EOF