PostscriptPrinterStream.st
author Claus Gittinger <cg@exept.de>
Thu, 09 Jun 2016 12:36:55 +0200
changeset 3898 c90424dba938
parent 3827 c0411e2ffe2a
child 4012 87692af9cae9
permissions -rw-r--r--
#UI_ENHANCEMENT by cg class: HTMLPrinterStream changed: #initialize lazy package dependency
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
     1
"
4
1f66800df351 *** empty log message ***
claus
parents: 2
diff changeset
     2
 COPYRIGHT (c) 1988 by Claus Gittinger
71
claus
parents: 36
diff changeset
     3
	      All Rights Reserved
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
     4
1cf8d1747859 Initial revision
claus
parents:
diff changeset
     5
 This software is furnished under a license and may be used
1cf8d1747859 Initial revision
claus
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
1cf8d1747859 Initial revision
claus
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
1cf8d1747859 Initial revision
claus
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
1cf8d1747859 Initial revision
claus
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
1cf8d1747859 Initial revision
claus
parents:
diff changeset
    10
 hereby transferred.
1cf8d1747859 Initial revision
claus
parents:
diff changeset
    11
"
913
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
    12
"{ Package: 'stx:libbasic2' }"
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
    13
3827
c0411e2ffe2a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
    14
"{ NameSpace: Smalltalk }"
c0411e2ffe2a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
    15
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
    16
PrinterStream subclass:#PostscriptPrinterStream
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
    17
	instanceVariableNames:'xPos yPos lineStream colNr lineNr fFamily fStyle pageStartAction
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
    18
		pageEndAction pageCount sendXPosition'
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    19
	classVariableNames:'Prolog Trailer PageProlog PageTrailer FontNames FontHeight
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
    20
		FontWidth LeftX TopY PageHeight LinesPerPage PhysicalPageHeight
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
    21
		Italic Bold Normal BoldItalic Courier Times Helvetica TopMargin
2109
edfb1b251b62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1907
diff changeset
    22
		LeftMargin BottomMargin RightMargin SupportsColor Resolution
edfb1b251b62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1907
diff changeset
    23
		SupportsGreyscale'
186
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
    24
	poolDictionaries:''
1650
8eec99801a7e category change
fm
parents: 1569
diff changeset
    25
	category:'Interface-Printing'
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
    26
!
1cf8d1747859 Initial revision
claus
parents:
diff changeset
    27
467
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
    28
!PostscriptPrinterStream class methodsFor:'documentation'!
6
claus
parents: 4
diff changeset
    29
31
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    30
copyright
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    31
"
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    32
 COPYRIGHT (c) 1988 by Claus Gittinger
71
claus
parents: 36
diff changeset
    33
	      All Rights Reserved
31
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    34
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    35
 This software is furnished under a license and may be used
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    36
 only in accordance with the terms of that license and with the
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    37
 inclusion of the above copyright notice.   This software may not
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    38
 be provided or otherwise made available to, or used by, any
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    39
 other person.  No title to or ownership of the software is
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    40
 hereby transferred.
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    41
"
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    42
!
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    43
6
claus
parents: 4
diff changeset
    44
documentation
claus
parents: 4
diff changeset
    45
"
28
350f8e9493a4 *** empty log message ***
claus
parents: 10
diff changeset
    46
    This class provides simple text output to postscript printers;
31
e223f3cf2995 *** empty log message ***
claus
parents: 28
diff changeset
    47
    to use it, evaluate 
1297
b64daacfb5fe comment
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    48
        Smalltalk at:#Printer put:PostscriptPrinterStream
1773
cf124aecd818 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1650
diff changeset
    49
    (usually in some rc file) or change it via the launchers settings-menu.
179
38773360f4b7 more on printing (printerType-query)
Claus Gittinger <cg@exept.de>
parents: 170
diff changeset
    50
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    51
    See examples on how to send something to the printer.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    52
1297
b64daacfb5fe comment
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    53
    For now, only Helvetica, Courier and Times fonts in italic, roman and bold are supported.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    54
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    55
    It does not directly support graphics and other fancy features of Postscript,
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    56
    but provides a compatible interface for simple text line-printing 
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    57
    (see other subclasses of PrinterStream).
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    58
1297
b64daacfb5fe comment
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    59
    If you already have a postscript string at hand, this can be sent to the printer in native mode.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    60
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    61
    To output graphics, you need the PSGraphicsContext (and friend-) classes.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    62
    These provide protocol similar to the one provided by display graphicContexts.
1297
b64daacfb5fe comment
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    63
    PSGraphicsContext generates its own postscript - not caring for the margin/font settings
b64daacfb5fe comment
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    64
    here (these are only used if the printer-stream protocol is used (i.e. nextPut, cr etc.)
b64daacfb5fe comment
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    65
b64daacfb5fe comment
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    66
    Notice, that these postscript classes are derived from public domain code; there is no warranty.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    67
1297
b64daacfb5fe comment
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    68
    
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    69
    [see also:]
1297
b64daacfb5fe comment
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    70
        PSGraphicsContext 
b64daacfb5fe comment
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    71
        EpsonFX1PrinterStream HPLjetIIPrinterStream PrinterStream
259
6d36f3ac42a2 documentation
Claus Gittinger <cg@exept.de>
parents: 249
diff changeset
    72
6d36f3ac42a2 documentation
Claus Gittinger <cg@exept.de>
parents: 249
diff changeset
    73
    [author:]
1297
b64daacfb5fe comment
Claus Gittinger <cg@exept.de>
parents: 1220
diff changeset
    74
        Claus Gittinger
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    75
"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    76
!
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    77
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    78
examples
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
    79
"
223
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
    80
    For text printing, use:
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    81
                                                                        [exBegin]
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    82
        |s|
223
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
    83
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    84
        s := Printer new.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    85
        s nextPutAll:'hello'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    86
        s nextPutAll:'normal '.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    87
        s bold; nextPutAll:'this is bold'; normal; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    88
        s nextPutAll:'normal '.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    89
        s italic; nextPutAll:'this is italic'; normal; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    90
        s nextPutAll:'normal '.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    91
        s boldItalic; nextPutAll:'this is boldItalic'; normal; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    92
        s nextPutAll:'normal '.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    93
        s underline; nextPutAll:'this is underlined'; noUnderline; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    94
        s nextPutAll:'normal again '.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    95
        s strikeout; nextPutAll:'this is strikedout'; noStrikeout; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    96
        s helvetica.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    97
        s nextPutAll:'helvetica '.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    98
        s underline; nextPutAll:' helv-underline'; noUnderline;
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
    99
          space; strikeout; nextPutAll:'helv-strikeout'; noStrikeout;
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   100
          bold; nextPutAll:' helv-bold'; normal; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   101
        s times.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   102
        s nextPutAll:'times'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   103
        s courier.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   104
        s nextPutAll:'courier'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   105
        s close
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   106
                                                                        [exEnd]
349
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   107
    or, if you already have emphasized text at hand:
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   108
                                                                        [exBegin]
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   109
        |s|
349
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   110
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   111
        s := Printer new.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   112
        s nextPutAll:'hello'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   113
        s nextPutAll:'this is '; 
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   114
          nextPutAll:(Text string:'bold' emphasis:#bold); 
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   115
          cr;
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   116
          nextPutAll:'this is '; 
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   117
          nextPutAll:(Text string:'italic' emphasis:#italic); 
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   118
          cr;
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   119
          nextPutAll:'this is ';
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   120
          nextPutAll:(Text string:'boldItalic' emphasis:#(bold italic)); 
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   121
          cr;
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   122
          nextPutAll:'normal again'; 
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   123
          cr;
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   124
          helvetica;
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   125
          nextPutAll:'helvetica';
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   126
          cr;
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   127
          times;
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   128
          nextPutAll:'times'; 
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   129
          cr;
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   130
          courier;
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   131
          nextPutAll:'courier';
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   132
          cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   133
        s close
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   134
                                                                        [exEnd]
179
38773360f4b7 more on printing (printerType-query)
Claus Gittinger <cg@exept.de>
parents: 170
diff changeset
   135
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   136
    placing a page-hook, to add a page number:
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   137
    (page hooks require that you understand some postscript ...
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   138
     ... and have a look at how this class generates its postscript code)
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   139
                                                                        [exBegin]
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   140
        |s hook pageNr|
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   141
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   142
        s := Printer new.
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   143
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   144
        pageNr := 0.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   145
        hook := [ 
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   146
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   147
                    pageNr := pageNr + 1.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   148
                    s placeString:('page ' , pageNr printString) at:(5500 @ 400).
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   149
                ].
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   150
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   151
        s pageEndAction:hook.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   152
        (1 to:200) do:[:lineNr |
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   153
            s nextPutAll:'line ' , lineNr printString.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   154
            s cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   155
        ].
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   156
        s close.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   157
                                                                        [exEnd]
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   158
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   159
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   160
    placing a page-hook, to add a custom frame, logo or company letter-head:
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   161
    (page hooks require that you understand some postscript ...
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   162
     ... and have a look at how this class generates its postscript code.
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   163
     ... and notice that the code below is a q&d demo, working with letter-sized
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   164
     pages only; a real program should ask the printerStream about the actual 
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   165
     pageHeight/pageWidth.)
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   166
                                                                        [exBegin]
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   167
        |s hook pageNr|
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   168
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   169
        s := Printer new.
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   170
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   171
        pageNr := 0.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   172
        hook := [ 
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   173
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   174
                    pageNr := pageNr + 1.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   175
                    s placeString:('page ' , pageNr printString) at:(5500 @ 400).
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   176
                    s placeString:('Document revision:') at:(900 @ 1200).
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   177
                    s placeString:('Revieved by:')       at:(900 @ 900).
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   178
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   179
                    s setNative:true.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   180
                    s nextPutAll:'0 setlinewidth'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   181
                    s nextPutAll:'800 800 moveto'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   182
                    s nextPutAll:'11000 800 lineto'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   183
                    s nextPutAll:'11000 15500 lineto'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   184
                    s nextPutAll:'800 15500 lineto'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   185
                    s nextPutAll:'800 800 lineto'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   186
                    s nextPutAll:'stroke'; cr.
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   187
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   188
                    s nextPutAll:'800 1100 moveto'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   189
                    s nextPutAll:'11000 1100 lineto'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   190
                    s nextPutAll:'stroke'; cr.
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   191
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   192
                    s nextPutAll:'800 1400 moveto'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   193
                    s nextPutAll:'11000 1400 lineto'; cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   194
                    s nextPutAll:'stroke'; cr.
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   195
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   196
                    s setNative:false.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   197
                ].
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   198
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   199
        s pageEndAction:hook.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   200
        (1 to:200) do:[:lineNr |
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   201
            s nextPutAll:'line ' , lineNr printString.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   202
            s cr.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   203
        ].
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   204
        s close.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   205
                                                                        [exEnd]
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   206
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   207
223
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
   208
    If you already have a postscript string at hand, this can be sent to
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
   209
    the printer in native mode:
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   210
                                                                        [exBegin]
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   211
        |s|
223
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
   212
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   213
        s := Printer newNative.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   214
        s nextPutAll:<your postscript string>.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   215
                                                                        [exEnd]
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   216
        s close
223
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
   217
179
38773360f4b7 more on printing (printerType-query)
Claus Gittinger <cg@exept.de>
parents: 170
diff changeset
   218
    To output graphics, you need the PSGraphicsContext (and friend-) classes.
38773360f4b7 more on printing (printerType-query)
Claus Gittinger <cg@exept.de>
parents: 170
diff changeset
   219
    These provide protocol similar to the one provided by display graphicContexts.
223
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
   220
    Notice, that these postscript classes are derived from public domain code;
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
   221
    there is no warranty.
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
   222
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
   223
    Usage:
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   224
                                                                        [exBegin]
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   225
        |drawable s|
223
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
   226
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   227
        s := Printer newNative.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   228
        drawable := PSGraphicsContext on:s.
223
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
   229
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   230
        drawable displayLineFrom:(0@0) to:(100@100).
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   231
        drawable displayLineFrom:(100@0) to:(0@100).
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   232
        drawable displayCircle:(150@150) radius:50.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   233
        (Image fromFile:'bitmaps/SBrowser.xbm') displayOn:drawable at:(50@30).
223
a204fe6b665c commentary & image fixes
Claus Gittinger <cg@exept.de>
parents: 222
diff changeset
   234
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   235
        drawable close.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   236
                                                                        [exEnd]
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   237
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   238
      the same in a view:
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   239
                                                                        [exBegin]
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   240
        |drawable|
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   241
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   242
        drawable := (View extent:200@200) openAndWait.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   243
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   244
        drawable displayLineFrom:(0@0) to:(100@100).
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   245
        drawable displayLineFrom:(100@0) to:(0@100).
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   246
        drawable displayCircle:(150@150) radius:50.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   247
        (Image fromFile:'bitmaps/SBrowser.xbm') displayOn:drawable at:(50@30).
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   248
                                                                        [exEnd]
6
claus
parents: 4
diff changeset
   249
"
claus
parents: 4
diff changeset
   250
! !
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   251
467
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   252
!PostscriptPrinterStream class methodsFor:'initialization'!
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   253
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   254
initCharacterSize
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   255
    "setup the character parameters"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   256
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   257
    FontHeight := 200.   "/ used to scale fonts - corresponds to a 10 point font size
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   258
    FontWidth := 120.    "/ used to compute width of tabs
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   259
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   260
    "Created: 23.4.1996 / 19:53:34 / cg"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   261
    "Modified: 23.4.1996 / 20:05:17 / cg"
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   262
    "Modified: 30.5.1996 / 17:24:05 / ca"
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   263
!
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   264
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   265
initFonts
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   266
    "setup the font names.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   267
     initProlog uses those parameters."
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   268
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   269
    Italic := 0.     "/ offset from base-font# to italic version
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   270
    Bold := 1.       "/ offset from base-font# to bold version
349
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   271
    BoldItalic := 2. "/ offset from base-font# to boldItalic version
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   272
    Normal := 3.     "/ offset from base-font# to normal version
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   273
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   274
    Helvetica := 0.  "/ # of helvetica base font
349
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   275
    Times := 4.      "/ # of times base font
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   276
    Courier := 8.    "/ # of courier base font
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   277
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   278
    FontNames := #( 
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   279
                    'Helvetica-Oblique'
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   280
                    'Helvetica-Bold'
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   281
                    'Helvetica-BoldOblique'
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   282
                    'Helvetica'
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   283
                    'Times-Italic'
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   284
                    'Times-Bold'
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   285
                    'Times-BoldItalic'
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   286
                    'Times'
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   287
                    'Courier-Oblique'
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   288
                    'Courier-Bold'
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   289
                    'Courier-BoldOblique'
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   290
                    'Courier' 
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   291
                  )
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   292
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   293
    "
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   294
     PostscriptPrinterStream initFonts
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   295
    "
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   296
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   297
!
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   298
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   299
initPage
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   300
    "setup the page parameters.
370
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   301
     All coordinates are scaled by 20 w.r.t the PS coordinates (i.e. in twips)."
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   302
2968
bb3ea109cbe6 lazy initialization
Claus Gittinger <cg@exept.de>
parents: 2109
diff changeset
   303
    self pageFormat isNil ifTrue:[
2970
cdbd92380580 class: PostscriptPrinterStream
Stefan Vogel <sv@exept.de>
parents: 2968
diff changeset
   304
        self pageFormat:#a4
370
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   305
    ].
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   306
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   307
    TopMargin isNil ifTrue:[
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   308
        TopMargin := 0.6.      "/ inches
370
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   309
    ].
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   310
    BottomMargin isNil ifTrue:[
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   311
        BottomMargin := 1.2    "/ inches
370
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   312
    ].
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   313
    LeftMargin isNil ifTrue:[
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   314
        LeftMargin := 0.6.     "/ inches
370
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   315
    ].
437
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   316
    RightMargin isNil ifTrue:[
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   317
        RightMargin := 0.6.    "/ inches
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   318
    ].
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   319
    Resolution isNil ifTrue:[
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   320
        Resolution := 300@300. "/ DPI
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   321
    ].
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   322
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   323
    "/     +-----------------------------------------------+  PageHeight
437
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   324
    "/     |                   TOPMARGIN             |     |
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   325
    "/     | LeftX +---------------------------------------|  TopY
437
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   326
    "/     |       |1st printed line                 |     |
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   327
    "/     |       |                                 |     |
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   328
    "/     | LEFT  |                                 |RIGHT| (only used by
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   329
    "/     | MARGIN|                                 |MARG.|  PSGraphicsContext)
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   330
    "/     |       |                                 |     |
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   331
    "/     |       |last line (linesPerPage)         |     |
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   332
    "/     |       +---------------------------------------|
437
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   333
    "/     |                   BOTTOMMARGIN          |     |
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   334
    "/     (0/0)-------------------------------------------+  0
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   335
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   336
    LeftX := (UnitConverter convert:LeftMargin from:#inch to:#twip) rounded.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   337
2970
cdbd92380580 class: PostscriptPrinterStream
Stefan Vogel <sv@exept.de>
parents: 2968
diff changeset
   338
    PhysicalPageHeight := (UnitConverter convert:1 from:(self pageFormat , 'H') to:#twip) rounded.
2968
bb3ea109cbe6 lazy initialization
Claus Gittinger <cg@exept.de>
parents: 2109
diff changeset
   339
    self landscape == true ifTrue:[
2970
cdbd92380580 class: PostscriptPrinterStream
Stefan Vogel <sv@exept.de>
parents: 2968
diff changeset
   340
        PageHeight := (UnitConverter convert:1 from:(self pageFormat , 'lH') to:#twip) rounded.
370
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   341
    ] ifFalse:[
2970
cdbd92380580 class: PostscriptPrinterStream
Stefan Vogel <sv@exept.de>
parents: 2968
diff changeset
   342
        PageHeight := (UnitConverter convert:1 from:(self pageFormat , 'H') to:#twip) rounded.
370
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   343
    ].
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   344
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   345
    TopY := PageHeight - (UnitConverter convert:TopMargin from:#inch to:#twip) rounded.
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   346
    LinesPerPage := TopY - (UnitConverter convert:BottomMargin from:#inch to:#twip) rounded // 200.
370
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   347
386
cebdfb2e9cf0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 382
diff changeset
   348
    "
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   349
     TopMargin := LeftMargin := BottomMargin := nil.
386
cebdfb2e9cf0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 382
diff changeset
   350
     self initPage
cebdfb2e9cf0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 382
diff changeset
   351
    "
cebdfb2e9cf0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 382
diff changeset
   352
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   353
    "Modified: 30.5.1996 / 17:24:55 / ca"
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   354
    "Modified: 5.9.1996 / 21:43:00 / cg"
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   355
!
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   356
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   357
initPageProlog
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   358
    "define the page prolog"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   359
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   360
    PageProlog :=
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   361
'StartPage
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   362
'.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   363
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   364
    "Created: 23.4.1996 / 19:56:16 / cg"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   365
!
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   366
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   367
initPageTrailer
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   368
    "define the page epilog"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   369
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   370
    PageTrailer :=
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   371
'EndPage
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   372
'.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   373
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   374
    "Modified: 23.4.1996 / 19:55:50 / cg"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   375
    "Created: 23.4.1996 / 19:56:30 / cg"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   376
!
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   377
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   378
initProlog
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   379
    "define the documents prolog"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   380
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   381
    |tmpString t fontNr|
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   382
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   383
    tmpString :=
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   384
'%!!PS-Adobe-2.0
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   385
%%Creator: Smalltalk/X
1437
e8f0a47618dc Use Timestamp/#asTimestamp instead of AbsoluteTime/#asAbsoluteTime
Stefan Vogel <sv@exept.de>
parents: 1416
diff changeset
   386
%%CreationDate: ' , Timestamp now printString , '
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   387
%%DocumentFonts: '.
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   388
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   389
    FontNames do:[:aName |
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   390
        tmpString := tmpString , aName , ' '
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   391
    ].
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   392
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   393
    tmpString := tmpString , '
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   394
%%Pages: (atend)
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   395
%%EndComments
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   396
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   397
save /SmalltalkJob exch def
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   398
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   399
/OriginalState gstate def
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   400
/StartSmalltalkDoc{$smalltalk begin}def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   401
/$smalltalk 50 dict def $smalltalk begin
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   402
/EndSmalltalkDoc{end}def
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   403
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   404
/S/show load def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   405
/X{exch 0 rmoveto S}def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   406
/Y{exch 0 exch rmoveto S}def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   407
/B{3 1 roll moveto S}def
382
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   408
/SUL {gsave currentpoint currentfont /FontInfo get /UnderlinePosition get
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   409
 0 exch currentfont /FontMatrix get dtransform exch pop add newpath moveto
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   410
 dup stringwidth rlineto stroke grestore S} def
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   411
/SSO {gsave currentpoint 300
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   412
 0 exch currentfont /FontMatrix get dtransform exch pop add 
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   413
 newpath moveto dup stringwidth rlineto stroke grestore S} def
382
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   414
/BUL{3 1 roll moveto SUL}def
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   415
/BSO{3 1 roll moveto SSO}def
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   416
/F{$fd exch get setfont}def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   417
/StartPage{/svpg save def .05 dup scale}def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   418
/EndPage{svpg restore showpage}def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   419
/DoPreFeed{/statusdict where{pop
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   420
 statusdict/prefeed known{statusdict exch/prefeed exch put 0}if}if pop}def
373
6834d6a61ea9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
   421
/Landscape{90 rotate 0 -' , PageHeight printString "15840", ' translate}def
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   422
/ISOrecode {findfont dup length dict begin
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   423
 {1 index /FID ne {def} {pop pop} ifelse} forall
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   424
 /Encoding ISOLatin1Encoding def
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   425
 currentdict end definefont pop} def
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   426
/SetUpFonts
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   427
 {dup/$fd exch array def{findfont exch scalefont $fd 3 1 roll put}repeat}def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   428
/InitGaudy{/TwoColumn exch def /BarLength exch def
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   429
/ftD /ISO-Times-Bold findfont 12 UP scalefont def
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   430
/ftF /ISO-Times-Roman findfont 14 UP scalefont def
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   431
/ftP /ISO-Helvetica-Bold findfont 30 UP scalefont def}def
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   432
/U{1440 mul}def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   433
/UP{U 72 div}def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   434
/LB{/pts exch UP def /charcolor exch def /boxcolor exch def /font exch def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   435
 /label exch def /dy exch def /dx exch def /lly exch def /llx exch def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   436
 gsave boxcolor setgray
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   437
 llx lly moveto dx 0 rlineto 0 dy rlineto dx neg 0 rlineto closepath fill
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   438
 /lines label length def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   439
 /yp lly dy add dy lines pts mul sub 2 div sub pts .85 mul sub def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   440
 font setfont charcolor setgray
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   441
 label {dup stringwidth pop 2 div llx dx 2 div add exch sub yp moveto show
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   442
   /yp yp pts sub def}forall grestore}def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   443
/Gaudy{/Page exch def /Date exch def /File exch def /Comment exch def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   444
 .25 U 10.2 U BarLength .1 sub U .25 U [File] ftF .97 0 14 LB
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   445
 .25 U 10.45 U BarLength .1 sub U .25 U [Comment] ftF 1 0 14 LB
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   446
 .25 U 10.2 U 1 U .5 U Date ftD .7 0 12 LB
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   447
 BarLength .75 sub U 10.2 U 1 U .5 U [Page] ftP .7 1 30 LB
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   448
 TwoColumn{BarLength 2 div .19 add U 10.2 U moveto 0 -10 U rlineto stroke}if
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   449
}def
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   450
end
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   451
StartSmalltalkDoc 
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   452
% end of fixed prolog
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   453
'.
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   454
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   455
    t := ''.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   456
    FontNames do:[:aName |
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   457
        t := t , '/ISO-' , aName , ' /' , aName , ' ISOrecode
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   458
'.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   459
    ].
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   460
    t := t , '
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   461
'.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   462
    tmpString := tmpString , t.
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   463
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   464
    t := ''.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   465
    fontNr := 0.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   466
    FontNames do:[:aName |
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   467
        t := t , (fontNr printString) , ' ' 
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   468
               , (FontHeight printString) , ' '
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   469
               , '/ISO-' , aName , (Character nl) asString.
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   470
        fontNr := fontNr + 1
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   471
    ].
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   472
    tmpString := tmpString , t.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   473
    tmpString := tmpString , fontNr printString , ' SetUpFonts
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   474
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   475
% end of prolog
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   476
%%EndProlog
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   477
'.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   478
    Prolog := tmpString.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   479
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   480
    "
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   481
     PostscriptPrinterStream initProlog
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   482
    "
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   483
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   484
    "Created: 23.4.1996 / 19:40:44 / cg"
438
c38453be27ae put cleanup stuff after %%Trailer
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
   485
    "Modified: 7.9.1996 / 16:01:52 / cg"
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   486
!
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   487
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   488
initTrailer
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   489
    "define the documents epilog"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   490
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   491
        Trailer :=
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   492
'
438
c38453be27ae put cleanup stuff after %%Trailer
Claus Gittinger <cg@exept.de>
parents: 437
diff changeset
   493
%%Trailer
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   494
EndSmalltalkDoc
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   495
SmalltalkJob restore
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   496
'
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   497
440
da568c775e8b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
   498
    "Modified: 7.9.1996 / 16:27:49 / cg"
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   499
!
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   500
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   501
initialize
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   502
    Normal isNil ifTrue:[
965
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   503
        self initFonts.
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   504
        self initPage.
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   505
        self initCharacterSize.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   506
965
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   507
        "/ self initProlog.   - now done lazy
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   508
        "/ self initTrailer.  - now done lazy
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   509
965
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   510
        self initPageProlog.
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   511
        self initPageTrailer
170
7194ef17f5b8 only init once
Claus Gittinger <cg@exept.de>
parents: 126
diff changeset
   512
    ]
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   513
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   514
    "
349
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   515
     Normal := nil.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   516
     self initialize
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   517
    "
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   518
349
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   519
    "Modified: 18.5.1996 / 09:46:15 / cg"
370
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   520
!
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   521
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   522
reInitPage
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   523
    self initPage.
965
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   524
    Prolog := nil.
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   525
    "/ self initProlog.   - now done lazy
370
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   526
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   527
    "Created: 31.5.1996 / 23:35:18 / cg"
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   528
! !
705453f00711 keep per-printer defaults
Claus Gittinger <cg@exept.de>
parents: 368
diff changeset
   529
1220
33fa58c0596d category
Claus Gittinger <cg@exept.de>
parents: 1108
diff changeset
   530
!PostscriptPrinterStream class methodsFor:'accessing-defaults'!
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   531
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   532
bottomMargin
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   533
    "return the bottom margin (in inches)"
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   534
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   535
    ^ BottomMargin
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   536
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   537
    "Modified: 3.6.1996 / 10:44:44 / cg"
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   538
    "Created: 5.9.1996 / 21:42:08 / cg"
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   539
!
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   540
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   541
bottomMargin:inches
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   542
    "set the bottom margin (in inches)"
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   543
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   544
    BottomMargin := inches.
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   545
    self reInitPage.
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   546
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   547
    "Modified: 3.6.1996 / 10:47:16 / cg"
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   548
    "Created: 5.9.1996 / 21:42:13 / cg"
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   549
!
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   550
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   551
leftMargin
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   552
    "return the left margin (in inches)"
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   553
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   554
    ^ LeftMargin
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   555
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   556
    "Modified: 3.6.1996 / 10:45:11 / cg"
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   557
    "Created: 5.9.1996 / 21:42:16 / cg"
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   558
!
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   559
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   560
leftMargin:inches
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   561
    "set the left margin (in inches)"
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   562
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   563
    LeftMargin := inches.
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   564
    self reInitPage.
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   565
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   566
    "Created: 3.6.1996 / 10:46:33 / cg"
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   567
    "Modified: 5.9.1996 / 21:42:19 / cg"
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   568
!
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   569
965
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   570
psProlog
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   571
    Prolog isNil ifTrue:[
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   572
        self initProlog
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   573
    ].
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   574
    ^ Prolog
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   575
!
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   576
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   577
psTrailer
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   578
    Trailer isNil ifTrue:[
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   579
        self initTrailer
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   580
    ].
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   581
    ^ Trailer
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   582
!
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   583
437
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   584
resolution
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   585
    "return the printers actual resolution (if known)"
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   586
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   587
    ^ Resolution
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   588
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   589
    "Modified: 3.6.1996 / 10:45:17 / cg"
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   590
    "Created: 5.9.1996 / 21:41:49 / cg"
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   591
!
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   592
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   593
resolution:dpiValuePoint
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   594
    "set the printers actual resolution (if known)"
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   595
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   596
    Resolution := dpiValuePoint
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   597
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   598
    "Modified: 3.6.1996 / 10:45:17 / cg"
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   599
    "Created: 5.9.1996 / 21:41:49 / cg"
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   600
!
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   601
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   602
rightMargin
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   603
    "return the right margin (in inches)"
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   604
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   605
    ^ RightMargin
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   606
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   607
    "Modified: 3.6.1996 / 10:45:11 / cg"
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   608
    "Created: 5.9.1996 / 21:42:16 / cg"
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   609
!
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   610
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   611
rightMargin:inches
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   612
    "set the right margin (in inches)"
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   613
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   614
    RightMargin := inches.
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   615
    self reInitPage.
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   616
!
59142d78f87d rightMargin
ca
parents: 436
diff changeset
   617
431
4d66e2730d76 supports color
ca
parents: 391
diff changeset
   618
supportsColor
4d66e2730d76 supports color
ca
parents: 391
diff changeset
   619
    SupportsColor notNil ifTrue:[^ SupportsColor].
4d66e2730d76 supports color
ca
parents: 391
diff changeset
   620
    ^ false
4d66e2730d76 supports color
ca
parents: 391
diff changeset
   621
!
4d66e2730d76 supports color
ca
parents: 391
diff changeset
   622
4d66e2730d76 supports color
ca
parents: 391
diff changeset
   623
supportsColor:aBoolean
4d66e2730d76 supports color
ca
parents: 391
diff changeset
   624
    SupportsColor := aBoolean.
4d66e2730d76 supports color
ca
parents: 391
diff changeset
   625
!
4d66e2730d76 supports color
ca
parents: 391
diff changeset
   626
2109
edfb1b251b62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1907
diff changeset
   627
supportsGreyscale
edfb1b251b62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1907
diff changeset
   628
    SupportsGreyscale notNil ifTrue:[^ SupportsGreyscale].
edfb1b251b62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1907
diff changeset
   629
    ^ true
edfb1b251b62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1907
diff changeset
   630
!
edfb1b251b62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1907
diff changeset
   631
edfb1b251b62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1907
diff changeset
   632
supportsGreyscale:aBoolean
edfb1b251b62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1907
diff changeset
   633
    SupportsGreyscale := aBoolean.
edfb1b251b62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1907
diff changeset
   634
!
edfb1b251b62 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1907
diff changeset
   635
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   636
topMargin
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   637
    "return the top margin (in inches)"
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   638
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   639
    ^ TopMargin
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   640
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   641
    "Modified: 3.6.1996 / 10:45:17 / cg"
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   642
    "Created: 5.9.1996 / 21:41:49 / cg"
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   643
!
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   644
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   645
topMargin:inches
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   646
    "set the top margin (in inches)"
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   647
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   648
    TopMargin := inches.
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   649
    self reInitPage.
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   650
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   651
    "Modified: 3.6.1996 / 10:47:26 / cg"
433
2b5b9df0981c renamed *Inset to *Margin; cleanup.
Claus Gittinger <cg@exept.de>
parents: 432
diff changeset
   652
    "Created: 5.9.1996 / 21:41:55 / cg"
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   653
! !
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   654
467
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   655
!PostscriptPrinterStream class methodsFor:'queries'!
186
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   656
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   657
printerTypeName
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   658
    "return a descriptive name"
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   659
1907
839cd32bb1d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1773
diff changeset
   660
    ^ 'Postscript Printer'
839cd32bb1d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1773
diff changeset
   661
839cd32bb1d8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1773
diff changeset
   662
    "Modified: / 08-11-2007 / 12:14:05 / cg"
186
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   663
!
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   664
378
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   665
supportsMargins
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   666
    "return true if this printer supports margins"
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   667
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   668
    ^ true
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   669
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   670
    "Created: 3.6.1996 / 10:48:04 / cg"
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   671
!
91abcf70e0c3 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 375
diff changeset
   672
368
423cf3f4e522 added query if printer supports pages at all (only PS does)
Claus Gittinger <cg@exept.de>
parents: 361
diff changeset
   673
supportsPageSizes
423cf3f4e522 added query if printer supports pages at all (only PS does)
Claus Gittinger <cg@exept.de>
parents: 361
diff changeset
   674
    "return true if this printer supports different page sizes"
423cf3f4e522 added query if printer supports pages at all (only PS does)
Claus Gittinger <cg@exept.de>
parents: 361
diff changeset
   675
423cf3f4e522 added query if printer supports pages at all (only PS does)
Claus Gittinger <cg@exept.de>
parents: 361
diff changeset
   676
    ^ true
423cf3f4e522 added query if printer supports pages at all (only PS does)
Claus Gittinger <cg@exept.de>
parents: 361
diff changeset
   677
423cf3f4e522 added query if printer supports pages at all (only PS does)
Claus Gittinger <cg@exept.de>
parents: 361
diff changeset
   678
    "Created: 31.5.1996 / 22:35:39 / cg"
423cf3f4e522 added query if printer supports pages at all (only PS does)
Claus Gittinger <cg@exept.de>
parents: 361
diff changeset
   679
!
423cf3f4e522 added query if printer supports pages at all (only PS does)
Claus Gittinger <cg@exept.de>
parents: 361
diff changeset
   680
186
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   681
supportsPostscript
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   682
    "return true if this is a postscript printer"
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   683
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   684
    ^ true
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   685
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   686
    "Created: 10.2.1996 / 16:23:23 / cg"
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   687
! !
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
   688
879
e69bf56dc758 category change
Claus Gittinger <cg@exept.de>
parents: 866
diff changeset
   689
!PostscriptPrinterStream methodsFor:'access-writing'!
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   690
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   691
cr
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   692
    "send line termination"
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   693
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   694
    self flushLine.
1317
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   695
    native == true ifTrue:[
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   696
        stream cr.
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   697
        ^ self
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   698
    ].
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   699
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   700
    xPos := LeftX.
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   701
    colNr := 0.
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   702
    sendXPosition := true.
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   703
    yPos := yPos - FontHeight.
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   704
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   705
    lineNr := lineNr + 1.
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   706
    lineNr > LinesPerPage ifTrue:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   707
        self nextPage
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   708
    ]
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   709
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
   710
    "Modified: 1.6.1996 / 13:09:30 / cg"
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   711
!
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   712
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   713
nextPut:aCharacter
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   714
    |code|
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   715
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   716
    (aCharacter == Character cr) ifTrue:[
913
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   717
        ^ self cr
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   718
    ].
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   719
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   720
    native == true ifTrue:[
1317
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   721
        stream nextPut:aCharacter.
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   722
        ^ self.
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   723
    ].
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   724
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   725
    (aCharacter == $( ) ifTrue:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   726
        lineStream nextPutAll:'\(' .
913
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   727
        ^ self
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   728
    ].
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   729
    (aCharacter == $) ) ifTrue:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   730
        lineStream nextPutAll:'\)' .
913
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   731
        ^ self
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   732
    ].
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   733
    (aCharacter == $\ ) ifTrue:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   734
        lineStream nextPutAll:'\\' .
913
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   735
        ^ self
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   736
    ].
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   737
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   738
    (aCharacter == Character tab ) ifTrue:[
913
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   739
        self flushLine.
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   740
        colNr := ((colNr + 8) // 8) * 8. 
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   741
        xPos := LeftX + (colNr * FontWidth).
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   742
        sendXPosition := true.
913
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   743
        ^ self
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   744
    ].
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   745
1416
6b6269a08973 Use #codePoint instead of deprecated #asciiValue
Stefan Vogel <sv@exept.de>
parents: 1317
diff changeset
   746
    (code := aCharacter codePoint) > 16r7F ifTrue:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   747
        lineStream nextPut:$\ ; nextPutAll:(code printStringRadix:8)
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   748
    ] ifFalse:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   749
        lineStream nextPut:aCharacter
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   750
    ].
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   751
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   752
    "Modified: 23.4.1996 / 20:05:59 / cg"
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   753
! !
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   754
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   755
!PostscriptPrinterStream methodsFor:'accessing'!
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   756
467
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   757
colNr
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   758
    "return the current column-Nr (within the line)"
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   759
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   760
    ^ colNr
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   761
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   762
    "Created: 2.1.1997 / 13:29:55 / cg"
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   763
!
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   764
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   765
lineNr
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   766
    "return the current line-Nr (within the page)"
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   767
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   768
    ^ lineNr
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   769
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   770
    "Created: 2.1.1997 / 13:29:38 / cg"
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   771
!
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
   772
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   773
pageCount
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   774
    "returns the number of the currently printed page"
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   775
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   776
    ^ pageCount
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   777
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   778
    "Created: 5.9.1996 / 18:29:23 / cg"
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   779
!
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   780
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   781
pageEndAction:something
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   782
    "set pageEndAction - if non-nil, that will be called before
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   783
     and EndPage is emmitted. 
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   784
     An example use is a private block,
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   785
     which draws a company frame around the page ..."
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   786
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   787
    pageEndAction := something.
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   788
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   789
    "Modified: 30.5.1996 / 16:45:09 / ca"
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   790
!
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   791
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   792
pageStartAction:something
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   793
    "set pageStartAction - if nonNil, that is evaluated prior to every page."
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   794
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   795
    pageStartAction := something.
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   796
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   797
    "Modified: 30.5.1996 / 16:44:20 / ca"
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   798
! !
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
   799
348
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   800
!PostscriptPrinterStream methodsFor:'emphasis change'!
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   801
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   802
bold
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   803
    "further printing is in bold"
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   804
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   805
    (fStyle ~~ Bold) ifTrue:[
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   806
	self flushLine.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   807
	fStyle := Bold.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   808
	self setFont.
382
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   809
    ].
348
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   810
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   811
    "Modified: 8.6.1996 / 08:17:15 / cg"
348
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   812
!
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   813
349
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   814
boldItalic
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   815
    "further printing is in boldItalic"
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   816
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   817
    (fStyle ~~ BoldItalic) ifTrue:[
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   818
	self flushLine.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   819
	fStyle := BoldItalic.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   820
	self setFont.
382
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   821
    ].
349
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   822
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   823
    "Created: 18.5.1996 / 09:36:36 / cg"
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   824
    "Modified: 8.6.1996 / 08:17:21 / cg"
349
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   825
!
e2806ca1c634 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 348
diff changeset
   826
348
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   827
italic
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   828
    "further printing is in italic"
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   829
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   830
    (fStyle ~~ Italic) ifTrue:[
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   831
	self flushLine.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   832
	fStyle := Italic.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   833
	self setFont.
382
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   834
    ].
348
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   835
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   836
    "Modified: 8.6.1996 / 08:17:28 / cg"
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   837
!
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   838
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   839
noStrikeout
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   840
    "further printing is not strikedout"
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   841
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   842
    strikeout ifTrue:[
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   843
	self flushLine.
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   844
	strikeout := false
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   845
    ]
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   846
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   847
    "Modified: 8.6.1996 / 08:15:56 / cg"
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   848
    "Created: 8.6.1996 / 08:16:35 / cg"
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   849
!
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   850
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   851
noUnderline
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   852
    "further printing is not underlined"
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   853
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   854
    underline ifTrue:[
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   855
	self flushLine.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   856
	underline := false
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   857
    ]
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   858
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   859
    "Created: 8.6.1996 / 08:11:07 / cg"
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   860
    "Modified: 8.6.1996 / 08:15:56 / cg"
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   861
!
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   862
348
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   863
normal
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   864
    "further printing is in normal style (i.e. non-bold/non-italic)"
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   865
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   866
    (fStyle ~~ Normal) ifTrue:[
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   867
	self flushLine.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   868
	fStyle := Normal.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   869
	self setFont.
380
fa5adc326473 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 378
diff changeset
   870
    ].
348
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   871
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   872
    "Modified: 8.6.1996 / 08:17:34 / cg"
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   873
!
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   874
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   875
strikeout
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   876
    "further printing is strikedout"
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   877
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   878
    strikeout ifFalse:[
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   879
	self flushLine.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   880
	strikeout := true
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   881
    ]
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   882
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   883
    "Modified: 8.6.1996 / 08:10:49 / cg"
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   884
    "Created: 8.6.1996 / 08:16:18 / cg"
382
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   885
!
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   886
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   887
underline
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   888
    "further printing is underlined"
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   889
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   890
    underline ifFalse:[
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   891
	self flushLine.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   892
	underline := true
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   893
    ]
382
113b013200d3 implement underline
Claus Gittinger <cg@exept.de>
parents: 380
diff changeset
   894
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   895
    "Modified: 8.6.1996 / 08:16:05 / cg"
348
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   896
! !
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   897
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   898
!PostscriptPrinterStream methodsFor:'font change'!
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   899
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   900
courier
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   901
    "further printing is in the courier font"
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   902
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   903
    self flushLine.
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   904
    fFamily := Courier.
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   905
    self setFont
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   906
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   907
    "Modified: 10.4.1996 / 13:34:49 / cg"
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   908
!
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   909
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   910
helvetica
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   911
    "further printing is in the helvetica font"
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   912
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   913
    self flushLine.
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   914
    fFamily := Helvetica.
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   915
    self setFont
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   916
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   917
    "Modified: 10.4.1996 / 13:34:58 / cg"
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   918
!
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   919
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   920
times
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   921
    "further printing is in the times font"
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   922
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   923
    self flushLine.
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   924
    fFamily := Times.
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   925
    self setFont
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   926
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   927
    "Modified: 10.4.1996 / 13:36:07 / cg"
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   928
! !
e4790af5d077 comments & category rename
Claus Gittinger <cg@exept.de>
parents: 270
diff changeset
   929
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   930
!PostscriptPrinterStream methodsFor:'open/close'!
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   931
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   932
endPrint
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   933
    "finish a document - finish page; then send documentTrailer.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   934
     Send nothing if nativePrinting."
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   935
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   936
    native == true ifFalse:[
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   937
        self endPage.
1317
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   938
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   939
        self nextPutAllUntranslated:(self class psTrailer).
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   940
        self nextPutAllUntranslated:'%%Pages: ' , pageCount printString.
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   941
        self nextPutUntranslated:(Character cr).
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   942
        self nextPutAllUntranslated:'%%EOF'.
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   943
        self nextPutUntranslated:(Character cr).
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   944
    ].
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   945
    super endPrint
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   946
440
da568c775e8b *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 439
diff changeset
   947
    "Modified: 7.9.1996 / 16:28:20 / cg"
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   948
!
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   949
913
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   950
setNative:aBoolean
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   951
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   952
    aBoolean ifTrue:[self flushLine].
965
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   953
    super setNative:aBoolean.
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   954
!
913
99228537653d Speed up native printing: #nextPutAll
Stefan Vogel <sv@exept.de>
parents: 879
diff changeset
   955
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   956
startPrint
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   957
    "start a document - send documentProlog & start a page.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   958
     Send nothing if nativePrinting."
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   959
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   960
    pageCount := 1.
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   961
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   962
    fFamily := Courier.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   963
    fStyle := Normal.
390
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   964
    underline := false.
3f22865fa873 fixed handling of underline; no longer affects bold/italic setting.
Claus Gittinger <cg@exept.de>
parents: 386
diff changeset
   965
    strikeout := false.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   966
914
7db1f3375ac9 Use startPrint from superclass.
Stefan Vogel <sv@exept.de>
parents: 913
diff changeset
   967
    super startPrint.
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   968
    native == true ifFalse:[
1317
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   969
        self nextPutAllUntranslated:(self class psProlog).
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
   970
        self startPage
222
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   971
    ]
15d1c9a82bc6 suppress trailer in native printing (used to disturb the output of html printouts)
Claus Gittinger <cg@exept.de>
parents: 186
diff changeset
   972
965
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   973
    "Modified: / 26.5.1999 / 16:15:27 / cg"
21f25a87c5c6 prolog initialization now lazy (when needed, not when class is initialized)
Claus Gittinger <cg@exept.de>
parents: 914
diff changeset
   974
! !
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   975
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   976
!PostscriptPrinterStream methodsFor:'private'!
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   977
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   978
endPage
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   979
    "end a page - flush buffered text & send pageTrailer"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   980
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   981
    self flushLine.
1569
6373292f574f code cleanup
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
   982
    pageEndAction value.
1317
890b41076c7c changed inheritance;
Claus Gittinger <cg@exept.de>
parents: 1297
diff changeset
   983
    self nextPutAllUntranslated:PageTrailer
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   984
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   985
    "Modified: 23.4.1996 / 20:00:01 / cg"
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   986
!
1cf8d1747859 Initial revision
claus
parents:
diff changeset
   987
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   988
flushLine
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   989
    "flush buffered line text"
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
   990
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   991
    |lineBuffer|
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   992
1091
153d101d7015 fixed: flushLine -> access on unspecified lineStream
tm
parents: 1075
diff changeset
   993
    lineStream isNil ifTrue:[^ self].
153d101d7015 fixed: flushLine -> access on unspecified lineStream
tm
parents: 1075
diff changeset
   994
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   995
    lineBuffer := lineStream contents.
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
   996
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
   997
    (lineBuffer size > 0) ifTrue:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   998
        sendXPosition ifTrue:[
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
   999
            self nextPutAllUntranslated:(xPos printString).
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1000
            self nextPutUntranslated:Character space.
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1001
            self nextPutAllUntranslated:(yPos printString).
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1002
        ].
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1003
        self nextPutUntranslated:$(.
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1004
        self nextPutAllUntranslated:lineBuffer.
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1005
        self nextPutUntranslated:$).
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1006
        sendXPosition ifTrue:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1007
            self nextPutUntranslated:$B.
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1008
            sendXPosition := false.
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1009
        ] ifFalse:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1010
            self nextPutUntranslated:$S.
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1011
        ].
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1012
        underline == true ifTrue:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1013
            self nextPutAllUntranslated:'UL'.
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1014
        ] ifFalse:[
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1015
            strikeout == true ifTrue:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1016
                self nextPutAllUntranslated:'SO'.
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1017
            ]
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1018
        ].
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1019
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1020
        self nextPutUntranslated:(Character cr).
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1021
        xPos := xPos + (FontWidth * lineBuffer size).
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1022
        colNr := colNr + lineBuffer size
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1023
    ].
866
2b25a5a53929 physical flush after flushLine
ca
parents: 751
diff changeset
  1024
    self flush.
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1025
    lineStream reset.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1026
391
244f0e731912 added strikeout
Claus Gittinger <cg@exept.de>
parents: 390
diff changeset
  1027
    "Modified: 8.6.1996 / 11:40:29 / cg"
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1028
!
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1029
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1030
nextPage
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1031
    "new page - finish previous page & start enew.
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1032
     Should not be sent when nativePrinting."
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1033
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1034
    self endPage.
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
  1035
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
  1036
    pageCount := pageCount + 1.
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1037
    self startPage
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1038
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
  1039
    "Modified: 5.9.1996 / 18:30:00 / cg"
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
  1040
!
1cf8d1747859 Initial revision
claus
parents:
diff changeset
  1041
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1042
placeString:aString at:pos
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1043
    "special entry: place a string at some particular position in my ps-coordinate
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1044
     system. Can be used with endPageActions to place a page-number."
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1045
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1046
    self flushLine;
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1047
         nextPutAllUntranslated:(pos x printString);
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1048
         nextPutUntranslated:Character space;
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1049
         nextPutAllUntranslated:(pos y printString);
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1050
         nextPutUntranslated:$(;
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1051
         nextPutAllUntranslated:aString;
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1052
         nextPutAllUntranslated:')B';
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1053
         nextPutUntranslated:(Character cr).
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1054
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1055
    "Created: 30.5.1996 / 17:06:36 / ca"
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1056
!
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1057
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1058
setFont
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1059
    "change the font. 
3827
c0411e2ffe2a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
  1060
     Uses current fFamily and fStyle (which give the font's nr)"
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1061
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1062
    |fontNumber|
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1063
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1064
    fontNumber := fFamily + fStyle.
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1065
    self nextPutAllUntranslated:fontNumber printString;
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1066
         nextPutAllUntranslated:' F'; 
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1067
         nextPutUntranslated:(Character cr).
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1068
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1069
    "Modified: 23.4.1996 / 20:01:28 / cg"
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
  1070
!
1cf8d1747859 Initial revision
claus
parents:
diff changeset
  1071
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1072
startPage
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1073
    "start a page - send pageProlog, reset x/y position and line/col."
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1074
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1075
    self nextPutAllUntranslated:'%%Page: ' , pageCount printString , ' ' , pageCount printString.
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1076
    self nextPutUntranslated:(Character cr).
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
  1077
1569
6373292f574f code cleanup
Claus Gittinger <cg@exept.de>
parents: 1437
diff changeset
  1078
    pageStartAction value.
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1079
    self nextPutAllUntranslated:PageProlog.
373
6834d6a61ea9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
  1080
    self class landscape ifTrue:[
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1081
        self nextPutAllUntranslated:'Landscape
373
6834d6a61ea9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
  1082
'.
6834d6a61ea9 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 372
diff changeset
  1083
    ].
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1084
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1085
    self setFont.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1086
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1087
    yPos := TopY.
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1088
    xPos := LeftX.
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1089
    lineStream isNil ifTrue:[
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1090
        lineStream := WriteStream on:''.
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1091
    ] ifFalse:[
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1092
        lineStream reset.
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1093
    ].
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1094
    lineNr := 1.
1075
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1095
    colNr := 0.
7272338c6b53 Speed up everything.
Stefan Vogel <sv@exept.de>
parents: 965
diff changeset
  1096
    sendXPosition := true.
246
ba03a2af594c fixed ISO-latin1 encoding (national characters)
Claus Gittinger <cg@exept.de>
parents: 223
diff changeset
  1097
432
c8b2fa21b747 count pages (for ghostview to be able to page)
Claus Gittinger <cg@exept.de>
parents: 431
diff changeset
  1098
    "Modified: 5.9.1996 / 18:30:08 / cg"
0
1cf8d1747859 Initial revision
claus
parents:
diff changeset
  1099
! !
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1100
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1101
!PostscriptPrinterStream methodsFor:'queries'!
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1102
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1103
fontHeight
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1104
    "the used fonts height in my postscript coordinate system 
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1105
     (i.e. in twips, which is 1/20th of a point)"
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1106
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1107
    ^ FontHeight
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1108
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1109
    "Modified: 30.5.1996 / 16:47:37 / ca"
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1110
    "Modified: 1.6.1996 / 13:14:51 / cg"
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1111
!
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1112
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1113
leftX
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1114
    "the left x startPosition (i.e. leftMargin) in my postscript coordinate system.
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1115
     (i.e. in twips, which is 1/20th of a point)"
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1116
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1117
    ^ LeftX
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1118
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1119
    "Modified: 30.5.1996 / 16:48:56 / ca"
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1120
    "Modified: 1.6.1996 / 13:14:59 / cg"
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1121
!
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1122
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1123
linesPerPage
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1124
    "the number of lines per page"
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1125
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1126
    ^ LinesPerPage
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1127
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1128
    "Modified: 30.5.1996 / 16:48:20 / ca"
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1129
!
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1130
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1131
overAllPageSize
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1132
    "the overAll pageSize in my postscript coordinate system.
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1133
     (i.e. in twips, which is 1/20th of a point)"
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1134
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1135
    ^ PageHeight
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1136
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1137
    "Created: 30.5.1996 / 16:56:51 / ca"
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1138
    "Modified: 30.5.1996 / 16:58:01 / ca"
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1139
    "Modified: 1.6.1996 / 13:15:06 / cg"
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1140
!
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1141
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1142
topY
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1143
    "the top y startPosition (i.e. page-size - topMargin) in my own coordinate system
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1144
     (i.e. in twips, which is 1/20th of a point)"
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1145
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1146
    ^ TopY
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1147
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1148
    "Modified: 30.5.1996 / 16:48:48 / ca"
375
ab43222a70ce added access methods for margins
Claus Gittinger <cg@exept.de>
parents: 373
diff changeset
  1149
    "Modified: 1.6.1996 / 13:15:23 / cg"
361
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1150
! !
4b3d82315b8a added hooks & query methods (see hook-example)
ca
parents: 349
diff changeset
  1151
467
10cca849db9e added #lineNr & #colNr
Claus Gittinger <cg@exept.de>
parents: 447
diff changeset
  1152
!PostscriptPrinterStream class methodsFor:'documentation'!
186
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
  1153
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
  1154
version
3827
c0411e2ffe2a #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 2970
diff changeset
  1155
    ^ '$Header$'
186
bc1b056b097c added #supportsPostscript query
Claus Gittinger <cg@exept.de>
parents: 179
diff changeset
  1156
! !
1091
153d101d7015 fixed: flushLine -> access on unspecified lineStream
tm
parents: 1075
diff changeset
  1157
2968
bb3ea109cbe6 lazy initialization
Claus Gittinger <cg@exept.de>
parents: 2109
diff changeset
  1158
126
fca9404da9d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 112
diff changeset
  1159
PostscriptPrinterStream initialize!