Salome HOME
4d6e36ddcc2988520df20990cbe3177688fa0d44
[samples/hello.git] / resources / HELLO_en.ps
1 %!PS-Adobe-3.0
2 %%Title: PYHELLO_en.xml
3 %%For: Nicolas CROUZET - SFME/LGLS
4 %%Creator: a2ps version 4.13
5 %%CreationDate: Tue Nov  4 17:58:50 2003
6 %%BoundingBox: 24 24 588 768
7 %%DocumentData: Clean7Bit
8 %%Orientation: Landscape
9 %%Pages: 1
10 %%PageOrder: Ascend
11 %%DocumentMedia: Letter 612 792 0 () ()
12 %%DocumentNeededResources: font Courier
13 %%+ font Courier-Bold
14 %%+ font Courier-BoldOblique
15 %%+ font Courier-Oblique
16 %%+ font Helvetica
17 %%+ font Helvetica-Bold
18 %%+ font Symbol
19 %%+ font Times-Bold
20 %%+ font Times-Roman
21 %%DocumentProcessColors: Black 
22 %%DocumentSuppliedResources: procset a2ps-a2ps-hdr
23 %%+ procset a2ps-black+white-Prolog
24 %%+ encoding ISO-8859-1Encoding
25 %%EndComments
26 /a2psdict 200 dict def
27 a2psdict begin
28 %%BeginProlog
29 %%Copyright: (c) 1988, 89, 90, 91, 92, 93 Miguel Santana
30 %%Copyright: (c) 1995, 96, 97, 98 Akim Demaille, Miguel Santana
31 % Check PostScript language level.
32 /languagelevel where {
33   pop /gs_languagelevel languagelevel def
34 } {
35   /gs_languagelevel 1 def
36 } ifelse
37
38 % EPSF import as in the Red Book
39 /BeginInclude {
40   /b4_Inc_state save def                % Save state for cleanup
41   /dict_count countdictstack def        % Count objects on dict stack
42   /op_count count 1 sub def             % Count objects on operand stack 
43   userdict begin
44     0 setgray 0 setlinecap
45     1 setlinewidth 0 setlinejoin
46     10 setmiterlimit [ ] 0 setdash newpath
47     gs_languagelevel 1 ne {
48       false setstrokeadjust false setoverprint 
49     } if
50 } bind def
51
52 /EndInclude {
53   count op_count sub { pos } repeat     % Clean up stacks
54   countdictstack dict_count sub { end } repeat
55   b4_Inc_state restore
56 } bind def
57
58 /BeginEPSF {
59   BeginInclude
60   /showpage { } def
61 } bind def
62
63 /EndEPSF {
64   EndInclude
65 } bind def
66
67 % Page prefeed
68 /page_prefeed {         % bool -> -
69   statusdict /prefeed known {
70     statusdict exch /prefeed exch put
71   } {
72     pop
73   } ifelse
74 } bind def
75
76 /deffont {
77   findfont exch scalefont def
78 } bind def
79
80 /reencode_font {
81   findfont reencode 2 copy definefont pop def
82 } bind def
83
84 % Function c-show (str => -)
85 % centers text only according to x axis.
86 /c-show { 
87   dup stringwidth pop
88   2 div neg 0 rmoveto
89   show
90 } bind def
91
92 % Function l-show (str => -)
93 % prints texts so that it ends at currentpoint
94 /l-show {
95   dup stringwidth pop neg 
96   0 
97   rmoveto show
98 } bind def
99
100 % center-fit show (str w => -)
101 % show centered, and scale currentfont so that the width is less than w
102 /cfshow {
103   exch dup stringwidth pop
104   % If the title is too big, try to make it smaller
105   3 2 roll 2 copy
106   gt
107   { % if, i.e. too big
108     exch div
109     currentfont exch scalefont setfont
110   } { % ifelse
111     pop pop 
112   }
113   ifelse
114   c-show                        % center title
115 } bind def
116
117 % Return the y size of the current font
118 % - => fontsize
119 /currentfontsize {
120   currentfont /FontType get 0 eq {
121     currentfont /FontMatrix get 3 get
122   }{
123     currentfont /FontMatrix get 3 get 1000 mul
124   } ifelse
125 } bind def
126
127 % reencode the font
128 % <encoding-vector> <fontdict> -> <newfontdict>
129 /reencode { %def
130   dup length 5 add dict begin
131     { %forall
132       1 index /FID ne 
133       { def }{ pop pop } ifelse
134     } forall
135     /Encoding exch def
136
137     % Use the font's bounding box to determine the ascent, descent,
138     % and overall height; don't forget that these values have to be
139     % transformed using the font's matrix.
140     % We use `load' because sometimes BBox is executable, sometimes not.
141     % Since we need 4 numbers an not an array avoid BBox from being executed
142     /FontBBox load aload pop
143     FontMatrix transform /Ascent exch def pop
144     FontMatrix transform /Descent exch def pop
145     /FontHeight Ascent Descent sub def
146
147     % Define these in case they're not in the FontInfo (also, here
148     % they're easier to get to.
149     /UnderlinePosition 1 def
150     /UnderlineThickness 1 def
151     
152     % Get the underline position and thickness if they're defined.
153     currentdict /FontInfo known {
154       FontInfo
155       
156       dup /UnderlinePosition known {
157         dup /UnderlinePosition get
158         0 exch FontMatrix transform exch pop
159         /UnderlinePosition exch def
160       } if
161       
162       dup /UnderlineThickness known {
163         /UnderlineThickness get
164         0 exch FontMatrix transform exch pop
165         /UnderlineThickness exch def
166       } if
167       
168     } if
169     currentdict 
170   end 
171 } bind def
172
173 % composite fonts for ASCII-EUC mixed string
174 % Version 1.2 1/31/1990
175 % Orignal Ken'ichi HANDA (handa@etl.go.jp)
176 % Modified Norio Katayama (katayama@rd.nacsis.ac.jp),1998
177 % Extend & Fix Koji Nakamaru (maru@on.cs.keio.ac.jp), 1999
178 % Anyone can freely copy, modify, distribute this program.
179
180 /copyfont {     % font-dic extra-entry-count  copyfont  font-dic
181         1 index maxlength add dict begin
182         {       1 index /FID ne 2 index /UniqueID ne and
183                 {def} {pop pop} ifelse
184         } forall
185         currentdict
186         end
187 } bind def
188
189 /compositefont { % ASCIIFontName EUCFontName RomanScale RomanOffset Rot(T/F) compositefont font
190     /RomanRotation exch def
191     /RomanOffset exch def
192     /RomanScale exch def
193     userdict /fixeucfont_dict known not {
194         userdict begin
195             /fixeucfont_dict 2 dict begin
196                 /UpperByteEncoding [
197                     16#00 1 16#20 { pop 0 } for
198                     16#21 1 16#28 { 16#20 sub } for
199                     16#29 1 16#2F { pop 0 } for
200                     16#30 1 16#74 { 16#27 sub } for
201                     16#75 1 16#FF { pop 0 } for
202                 ] def
203                 /LowerByteEncoding [
204                     16#00 1 16#A0 { pop /.notdef } for
205                     16#A1 1 16#FE { 16#80 sub 16 2 string cvrs
206                                     (cXX) dup 1 4 -1 roll
207                                     putinterval cvn } for
208                     /.notdef
209                 ] def
210                 currentdict
211             end def
212         end
213     } if
214     findfont dup /FontType get 0 eq {
215         14 dict begin
216             %
217             % 7+8 bit EUC font
218             %
219             12 dict begin
220                 /EUCFont exch def
221                 /FontInfo (7+8 bit EUC font) readonly def
222                 /PaintType 0 def
223                 /FontType 0 def
224                 /FontMatrix matrix def
225                 % /FontName
226                 /Encoding fixeucfont_dict /UpperByteEncoding get def
227                 /FMapType 2 def
228                 EUCFont /WMode known
229                 { EUCFont /WMode get /WMode exch def }
230                 { /WMode 0 def } ifelse
231                 /FDepVector [
232                     EUCFont /FDepVector get 0 get
233                     [ 16#21 1 16#28 {} for 16#30 1 16#74 {} for ]
234                     {
235                         13 dict begin
236                             /EUCFont EUCFont def
237                             /UpperByte exch 16#80 add def       
238                             % /FontName
239                             /FontInfo (EUC lower byte font) readonly def
240                             /PaintType 0 def
241                             /FontType 3 def
242                             /FontMatrix matrix def
243                             /FontBBox {0 0 0 0} def
244                             /Encoding
245                                 fixeucfont_dict /LowerByteEncoding get def
246                             % /UniqueID
247                             % /WMode
248                             /BuildChar {
249                                 gsave
250                                 exch dup /EUCFont get setfont
251                                 /UpperByte get
252                                 2 string
253                                 dup 0 4 -1 roll put
254                                 dup 1 4 -1 roll put
255                                 dup stringwidth setcharwidth
256                                 0 0 moveto show
257                                 grestore
258                             } bind def
259                             currentdict
260                         end
261                         /lowerbytefont exch definefont
262                     } forall
263                 ] def
264                 currentdict
265             end
266             /eucfont exch definefont
267             exch
268             findfont 1 copyfont dup begin
269                 RomanRotation {
270                         /FontMatrix FontMatrix
271                         [ 0 RomanScale neg RomanScale 0 RomanOffset neg 0 ]
272                         matrix concatmatrix def
273                 }{
274                         /FontMatrix FontMatrix
275                         [ RomanScale 0 0 RomanScale 0 RomanOffset ] matrix concatmatrix
276                         def
277                         /CDevProc
278                             {pop pop pop pop 0 exch -1000 exch 2 div 880} def
279                 } ifelse
280             end
281             /asciifont exch definefont
282             exch
283             /FDepVector [ 4 2 roll ] def
284             /FontType 0 def
285             /WMode 0 def
286             /FMapType 4 def
287             /FontMatrix matrix def
288             /Encoding [0 1] def
289             /FontBBox {0 0 0 0} def
290 %           /FontHeight 1.0 def % XXXX
291             /FontHeight RomanScale 1.0 ge { RomanScale }{ 1.0 } ifelse def
292             /Descent -0.3 def   % XXXX
293             currentdict
294         end
295         /tmpfont exch definefont
296         pop
297         /tmpfont findfont
298     }{
299         pop findfont 0 copyfont
300     } ifelse
301 } def   
302
303 /slantfont {    % FontName slant-degree  slantfont  font'
304     exch findfont 1 copyfont begin
305     [ 1 0 4 -1 roll 1 0 0 ] FontMatrix exch matrix concatmatrix
306     /FontMatrix exch def
307     currentdict
308     end
309 } def
310
311 % Function print line number (<string> # -)
312 /# {
313   gsave
314     sx cw mul neg 2 div 0 rmoveto
315     f# setfont
316     c-show
317   grestore
318 } bind def
319
320 % -------- Some routines to enlight plain b/w printings ---------
321
322 % Underline
323 % width --
324 /dounderline {
325   currentpoint
326   gsave
327     moveto
328     0 currentfont /Descent get currentfontsize mul rmoveto
329     0 rlineto
330     stroke
331   grestore
332 } bind def
333
334 % Underline a string
335 % string --
336 /dounderlinestring {
337   stringwidth pop
338   dounderline
339 } bind def
340
341 /UL {
342   /ul exch store
343 } bind def
344
345 % Draw a box of WIDTH wrt current font
346 % width --
347 /dobox {
348   currentpoint
349   gsave
350     newpath
351     moveto
352     0 currentfont /Descent get currentfontsize mul rmoveto
353     dup 0 rlineto
354     0 currentfont /FontHeight get currentfontsize mul rlineto
355     neg 0 rlineto
356     closepath
357     stroke
358   grestore
359 } bind def
360
361 /BX {
362   /bx exch store
363 } bind def
364
365 % Box a string
366 % string --
367 /doboxstring {
368   stringwidth pop
369   dobox
370 } bind def
371
372 %
373 % ------------- Color routines ---------------
374 %
375 /FG /setrgbcolor load def
376
377 % Draw the background
378 % width --
379 /dobackground {
380   currentpoint
381   gsave
382     newpath
383     moveto
384     0 currentfont /Descent get currentfontsize mul rmoveto
385     dup 0 rlineto
386     0 currentfont /FontHeight get currentfontsize mul rlineto
387     neg 0 rlineto
388     closepath
389     bgcolor aload pop setrgbcolor
390     fill
391   grestore
392 } bind def
393
394 % Draw bg for a string
395 % string --
396 /dobackgroundstring {
397   stringwidth pop
398   dobackground
399 } bind def
400
401
402 /BG {
403   dup /bg exch store
404   { mark 4 1 roll ] /bgcolor exch store } if
405 } bind def
406
407
408 /Show {
409   bg { dup dobackgroundstring } if
410   ul { dup dounderlinestring } if
411   bx { dup doboxstring } if
412   show
413 } bind def
414
415 % Function T(ab), jumps to the n-th tabulation in the current line
416 /T {
417   cw mul x0 add
418   bg { dup currentpoint pop sub dobackground } if
419   ul { dup currentpoint pop sub dounderline } if
420   bx { dup currentpoint pop sub dobox } if
421   y0 moveto
422 } bind def
423
424 % Function n: move to the next line
425 /n {
426   /y0 y0 bfs sub store
427   x0 y0 moveto
428 } bind def
429
430 % Function N: show and move to the next line
431 /N {
432   Show
433   /y0 y0 bfs sub store
434   x0 y0 moveto
435 } bind def
436
437 /S {
438   Show
439 } bind def
440
441 %%BeginResource: procset a2ps-a2ps-hdr 2.0 2
442 %%Copyright: (c) 1988, 89, 90, 91, 92, 93 Miguel Santana
443 %%Copyright: (c) 1995, 96, 97, 98 Akim Demaille, Miguel Santana
444 % Function title: prints page header.
445 % <ct> <rt> <lt> are passed as argument
446 /title { 
447   % 1. Draw the background
448   x v get y v get moveto
449   gsave
450     0 th 2 div neg rmoveto 
451     th setlinewidth
452     0.95 setgray
453     pw 0 rlineto stroke
454   grestore
455   % 2. Border it
456   gsave
457     0.7 setlinewidth
458     pw 0 rlineto
459     0 th neg rlineto
460     pw neg 0 rlineto
461     closepath stroke
462   grestore
463   % stk: ct rt lt
464   x v get y v get th sub 1 add moveto
465 %%IncludeResource: font Helvetica
466   fHelvetica fnfs 0.8 mul scalefont setfont
467   % 3. The left title
468   gsave
469     dup stringwidth pop fnfs 0.8 mul add exch % leave space took on stack
470     fnfs 0.8 mul hm rmoveto
471     show                        % left title
472   grestore
473   exch
474   % stk: ct ltw rt
475   % 4. the right title
476   gsave
477     dup stringwidth pop fnfs 0.8 mul add exch % leave space took on stack
478     dup
479     pw exch stringwidth pop fnfs 0.8 mul add sub
480     hm
481     rmoveto
482     show                        % right title
483   grestore
484   % stk: ct ltw rtw
485   % 5. the center title
486   gsave
487     pw 3 1 roll
488     % stk: ct pw ltw rtw
489     3 copy 
490     % Move to the center of the left room
491     sub add 2 div hm rmoveto
492     % What is the available space in here?
493     add sub fnfs 0.8 mul sub fnfs 0.8 mul sub
494     % stk: ct space_left
495 %%IncludeResource: font Helvetica-Bold
496   fHelvetica-Bold fnfs scalefont setfont
497     cfshow
498   grestore
499 } bind def
500
501 % Function border: prints virtual page border
502 /border { %def
503   gsave                         % print four sides
504     0 setgray
505     x v get y v get moveto
506     0.7 setlinewidth            % of the square
507     pw 0 rlineto
508     0 ph neg rlineto
509     pw neg 0 rlineto
510     closepath stroke
511   grestore
512 } bind def
513
514 % Function water: prints a water mark in background
515 /water { %def
516   gsave
517     scx scy moveto rotate
518 %%IncludeResource: font Times-Bold
519   fTimes-Bold 100 scalefont setfont
520     .97 setgray
521     dup stringwidth pop 2 div neg -50 rmoveto
522     show
523   grestore
524 } bind def
525
526 % Function rhead: prints the right header
527 /rhead {  %def
528   lx ly moveto
529   fHelvetica fnfs 0.8 mul scalefont setfont
530   l-show
531 } bind def
532
533 % Function footer (cf rf lf -> -)
534 /footer {
535   fHelvetica fnfs 0.8 mul scalefont setfont
536   dx dy moveto
537   show
538
539   snx sny moveto
540   l-show
541   
542   fnx fny moveto
543   c-show
544 } bind def
545 %%EndResource
546 %%BeginResource: procset a2ps-black+white-Prolog 2.0 1
547
548 % Function T(ab), jumps to the n-th tabulation in the current line
549 /T { 
550   cw mul x0 add y0 moveto
551 } bind def
552
553 % Function n: move to the next line
554 /n { %def
555   /y0 y0 bfs sub store
556   x0 y0 moveto
557 } bind def
558
559 % Function N: show and move to the next line
560 /N {
561   Show
562   /y0 y0 bfs sub store
563   x0 y0 moveto
564 }  bind def
565
566 /S {
567   Show
568 } bind def
569
570 /p {
571   false UL
572   false BX
573   fCourier bfs scalefont setfont
574   Show
575 } bind def
576
577 /sy {
578   false UL
579   false BX
580   fSymbol bfs scalefont setfont
581   Show
582 } bind def
583
584 /k {
585   false UL
586   false BX
587   fCourier-Oblique bfs scalefont setfont
588   Show
589 } bind def
590
591 /K {
592   false UL
593   false BX
594   fCourier-Bold bfs scalefont setfont
595   Show
596 } bind def
597
598 /c {
599   false UL
600   false BX
601   fCourier-Oblique bfs scalefont setfont
602   Show
603 } bind def
604
605 /C {
606   false UL
607   false BX
608   fCourier-BoldOblique bfs scalefont setfont
609   Show 
610 } bind def
611
612 /l {
613   false UL
614   false BX
615   fHelvetica bfs scalefont setfont
616   Show
617 } bind def
618
619 /L {
620   false UL
621   false BX
622   fHelvetica-Bold bfs scalefont setfont
623   Show 
624 } bind def
625
626 /str{
627   false UL
628   false BX
629   fTimes-Roman bfs scalefont setfont
630   Show
631 } bind def
632
633 /e{
634   false UL
635   true BX
636   fHelvetica-Bold bfs scalefont setfont
637   Show
638 } bind def
639
640 %%EndResource
641 %%EndProlog
642 %%BeginSetup
643 %%IncludeResource: font Courier
644 %%IncludeResource: font Courier-Oblique
645 %%IncludeResource: font Courier-Bold
646 %%IncludeResource: font Times-Roman
647 %%IncludeResource: font Symbol
648 %%IncludeResource: font Courier-BoldOblique
649 %%BeginResource: encoding ISO-8859-1Encoding
650 /ISO-8859-1Encoding [
651 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 
652 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 
653 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 
654 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 
655 /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright 
656 /parenleft /parenright /asterisk /plus /comma /minus /period /slash 
657 /zero /one /two /three /four /five /six /seven 
658 /eight /nine /colon /semicolon /less /equal /greater /question 
659 /at /A /B /C /D /E /F /G 
660 /H /I /J /K /L /M /N /O 
661 /P /Q /R /S /T /U /V /W 
662 /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore 
663 /quoteleft /a /b /c /d /e /f /g 
664 /h /i /j /k /l /m /n /o 
665 /p /q /r /s /t /u /v /w 
666 /x /y /z /braceleft /bar /braceright /asciitilde /.notdef 
667 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 
668 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 
669 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 
670 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 
671 /space /exclamdown /cent /sterling /currency /yen /brokenbar /section 
672 /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron 
673 /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /bullet 
674 /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown 
675 /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla 
676 /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis 
677 /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply 
678 /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls 
679 /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla 
680 /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis 
681 /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide 
682 /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis 
683 ] def
684 %%EndResource
685 % Initialize page description variables.
686 /sh 612 def
687 /sw 792 def
688 /llx 24 def
689 /urx 768 def
690 /ury 588 def
691 /lly 24 def
692 /#copies 1 def
693 /th 20.000000 def
694 /fnfs 15 def
695 /bfs 8.000000 def
696 /cw 4.800000 def
697
698 % Dictionary for ISO-8859-1 support
699 /iso1dict 8 dict begin
700   /fCourier ISO-8859-1Encoding /Courier reencode_font
701   /fCourier-Bold ISO-8859-1Encoding /Courier-Bold reencode_font
702   /fCourier-BoldOblique ISO-8859-1Encoding /Courier-BoldOblique reencode_font
703   /fCourier-Oblique ISO-8859-1Encoding /Courier-Oblique reencode_font
704   /fHelvetica ISO-8859-1Encoding /Helvetica reencode_font
705   /fHelvetica-Bold ISO-8859-1Encoding /Helvetica-Bold reencode_font
706   /fTimes-Bold ISO-8859-1Encoding /Times-Bold reencode_font
707   /fTimes-Roman ISO-8859-1Encoding /Times-Roman reencode_font
708 currentdict end def
709 /bgcolor [ 0 0 0 ] def
710 /bg false def
711 /ul false def
712 /bx false def
713 % The font for line numbering
714 /f# /Helvetica findfont bfs .6 mul scalefont def
715 /fSymbol /Symbol findfont def
716 /hm fnfs 0.25 mul def
717 /pw
718    cw 154.400000 mul
719 def
720 /ph
721    517.600000 th add
722 def
723 /pmw 0 def
724 /pmh 0 def
725 /v 0 def
726 /x [
727   0
728 ] def
729 /y [
730   pmh ph add 0 mul ph add
731 ] def
732 /scx sw 2 div def
733 /scy sh 2 div def
734 /snx urx def
735 /sny lly 2 add def
736 /dx llx def
737 /dy sny def
738 /fnx scx def
739 /fny dy def
740 /lx snx def
741 /ly ury fnfs 0.8 mul sub def
742 /sx 0 def
743 /tab 8 def
744 /x0 0 def
745 /y0 0 def
746 %%EndSetup
747
748 %%Page: (1) 1
749 %%BeginPageSetup
750 /pagesave save def
751 sh 0 translate 90 rotate
752 %%EndPageSetup
753 iso1dict begin
754 gsave
755 llx lly 12 add translate
756 /v 0 store
757 /x0 x v get 3.360000 add sx cw mul add store
758 /y0 y v get bfs th add sub store
759 x0 y0 moveto
760 (<?xml version='1.0' encoding='us-ascii'?>) p n
761 (<!DOCTYPE application PUBLIC "" "desktop.dtd">) N
762 (<application title="PYHELLO component" date="9/12/2001" author="C Caremoli" appId="PYHELLO" >) N
763 (<desktop>) N
764 (<!-- ### MENUBAR ###  -->) N
765 (<menubar>) N
766 ( <menu-item label-id="PYHELLO" item-id="90" pos-id="3">) N
767 (  <popup-item item-id="941" label-id="Lancer IHM" icon-id="" tooltip-id="Lancer IHM PYHELLO" accel-id="" toggle-id="" execute-action=""/>) N
768 ( </menu-item>) N
769 (</menubar>) N
770 (<!-- ### TOOLBAR ###  -->) N
771 (<toolbar label-id="PYHELLO">) N
772 ( <toolbutton-item item-id="941" label-id="Lancer IHM" icon-id="ExecPYHELLO.png" tooltip-id="Lancer IHM PYHELLO" accel-id="" toggle-id="" execute-action=") N
773 ("/>) N
774 (</toolbar>) N
775 (</desktop>) N
776 (</application>) N
777 () N
778 (PYHELLO_en.xml) (Page 1/1) (Oct 14, 03 10:41) title
779 border
780 grestore
781 (Printed by Nicolas CROUZET - SFME/LGLS) rhead
782 (PYHELLO_en.xml) (1/1) (Tuesday November 04, 2003) footer
783 end % of iso1dict
784 pagesave restore
785 showpage
786
787 %%Trailer
788 end
789 %%EOF