(isearch-mode-end-hook, isearch-mode-end-hook-quit):
[bpt/emacs.git] / lisp / ps-print.el
1 ;;; ps-print.el --- print text from the buffer as PostScript
2
3 ;; Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
4 ;; 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
5
6 ;; Author: Jim Thompson (was <thompson@wg2.waii.com>)
7 ;; Jacques Duthen (was <duthen@cegelec-red.fr>)
8 ;; Vinicius Jose Latorre <viniciusjl@ig.com.br>
9 ;; Kenichi Handa <handa@m17n.org> (multi-byte characters)
10 ;; Maintainer: Kenichi Handa <handa@m17n.org> (multi-byte characters)
11 ;; Vinicius Jose Latorre <viniciusjl@ig.com.br>
12 ;; Keywords: wp, print, PostScript
13 ;; Version: 6.8.1
14 ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre
15
16 (defconst ps-print-version "6.8.1"
17 "ps-print.el, v 6.8.1 <2007/11/09 vinicius>
18
19 Vinicius's last change version -- this file may have been edited as part of
20 Emacs without changes to the version number. When reporting bugs, please also
21 report the version of Emacs, if any, that ps-print was distributed with.
22
23 Please send all bug fixes and enhancements to
24 Vinicius Jose Latorre <viniciusjl@ig.com.br>.")
25
26 ;; This file is part of GNU Emacs.
27
28 ;; GNU Emacs is free software; you can redistribute it and/or modify it under
29 ;; the terms of the GNU General Public License as published by the Free
30 ;; Software Foundation; either version 3, or (at your option) any later
31 ;; version.
32
33 ;; GNU Emacs is distributed in the hope that it will be useful, but WITHOUT ANY
34 ;; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
35 ;; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
36 ;; details.
37
38 ;; You should have received a copy of the GNU General Public License along with
39 ;; GNU Emacs; see the file COPYING. If not, write to the Free Software
40 ;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
41
42 ;;; Commentary:
43
44 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
45 ;;
46 ;; About ps-print
47 ;; --------------
48 ;;
49 ;; This package provides printing of Emacs buffers on PostScript printers; the
50 ;; buffer's bold and italic text attributes are preserved in the printer
51 ;; output. ps-print is intended for use with Emacs or XEmacs, together with a
52 ;; fontifying package such as font-lock or hilit.
53 ;;
54 ;; ps-print uses the same face attributes defined through font-lock or hilit to
55 ;; print a PostScript file, but some faces are better seeing on the screen than
56 ;; on paper, specially when you have a black/white PostScript printer.
57 ;;
58 ;; ps-print allows a remap of face to another one that it is better to print,
59 ;; for example, the face font-lock-comment-face (if you are using font-lock)
60 ;; could have bold or italic attribute when printing, besides foreground color.
61 ;; This remap improves printing look (see How Ps-Print Maps Faces).
62 ;;
63 ;;
64 ;; Using ps-print
65 ;; --------------
66 ;;
67 ;; ps-print provides eight commands for generating PostScript images of Emacs
68 ;; buffers:
69 ;;
70 ;; ps-print-buffer
71 ;; ps-print-buffer-with-faces
72 ;; ps-print-region
73 ;; ps-print-region-with-faces
74 ;; ps-spool-buffer
75 ;; ps-spool-buffer-with-faces
76 ;; ps-spool-region
77 ;; ps-spool-region-with-faces
78 ;;
79 ;; These commands all perform essentially the same function: they generate
80 ;; PostScript images suitable for printing on a PostScript printer or
81 ;; displaying with GhostScript. These commands are collectively referred to as
82 ;; "ps-print- commands".
83 ;;
84 ;; The word "print" or "spool" in the command name determines when the
85 ;; PostScript image is sent to the printer:
86 ;;
87 ;; print - The PostScript image is immediately sent to the printer;
88 ;;
89 ;; spool - The PostScript image is saved temporarily in an Emacs
90 ;; buffer. Many images may be spooled locally before
91 ;; printing them. To send the spooled images to the
92 ;; printer, use the command `ps-despool'.
93 ;;
94 ;; The spooling mechanism was designed for printing lots of small files (mail
95 ;; messages or netnews articles) to save paper that would otherwise be wasted
96 ;; on banner pages, and to make it easier to find your output at the printer
97 ;; (it's easier to pick up one 50-page printout than to find 50 single-page
98 ;; printouts).
99 ;;
100 ;; ps-print has a hook in the `kill-emacs-hook' so that you won't accidentally
101 ;; quit from Emacs while you have unprinted PostScript waiting in the spool
102 ;; buffer. If you do attempt to exit with spooled PostScript, you'll be asked
103 ;; if you want to print it, and if you decline, you'll be asked to confirm the
104 ;; exit; this is modeled on the confirmation that Emacs uses for modified
105 ;; buffers.
106 ;;
107 ;; The word "buffer" or "region" in the command name determines how much of the
108 ;; buffer is printed:
109 ;;
110 ;; buffer - Print the entire buffer.
111 ;;
112 ;; region - Print just the current region.
113 ;;
114 ;; The -with-faces suffix on the command name means that the command will
115 ;; include font, color, and underline information in the PostScript image, so
116 ;; the printed image can look as pretty as the buffer. The ps-print- commands
117 ;; without the -with-faces suffix don't include font, color, or underline
118 ;; information; images printed with these commands aren't as pretty, but are
119 ;; faster to generate.
120 ;;
121 ;; Two ps-print- command examples:
122 ;;
123 ;; ps-print-buffer - print the entire buffer, without font,
124 ;; color, or underline information, and
125 ;; send it immediately to the printer.
126 ;;
127 ;; ps-spool-region-with-faces - print just the current region; include
128 ;; font, color, and underline information,
129 ;; and spool the image in Emacs to send to
130 ;; the printer later.
131 ;;
132 ;;
133 ;; Invoking Ps-Print
134 ;; -----------------
135 ;;
136 ;; To print your buffer, type
137 ;;
138 ;; M-x ps-print-buffer
139 ;;
140 ;; or substitute one of the other seven ps-print- commands. The command will
141 ;; generate the PostScript image and print or spool it as specified. By giving
142 ;; the command a prefix argument
143 ;;
144 ;; C-u M-x ps-print-buffer
145 ;;
146 ;; it will save the PostScript image to a file instead of sending it to the
147 ;; printer; you will be prompted for the name of the file to save the image to.
148 ;; The prefix argument is ignored by the commands that spool their images, but
149 ;; you may save the spooled images to a file by giving a prefix argument to
150 ;; `ps-despool':
151 ;;
152 ;; C-u M-x ps-despool
153 ;;
154 ;; When invoked this way, `ps-despool' will prompt you for the name of the file
155 ;; to save to.
156 ;;
157 ;; Any of the `ps-print-' commands can be bound to keys; I recommend binding
158 ;; `ps-spool-buffer-with-faces', `ps-spool-region-with-faces', and
159 ;; `ps-despool'. Here are the bindings I use on my Sun 4 keyboard:
160 ;;
161 ;; (global-set-key 'f22 'ps-spool-buffer-with-faces) ;f22 is prsc
162 ;; (global-set-key '(shift f22) 'ps-spool-region-with-faces)
163 ;; (global-set-key '(control f22) 'ps-despool)
164 ;;
165 ;;
166 ;; The Printer Interface
167 ;; ---------------------
168 ;;
169 ;; The variables `ps-lpr-command' and `ps-lpr-switches' determine what command
170 ;; is used to send the PostScript images to the printer, and what arguments to
171 ;; give the command. These are analogous to `lpr-command' and `lpr-switches'.
172 ;;
173 ;; Make sure that they contain appropriate values for your system;
174 ;; see the usage notes below and the documentation of these variables.
175 ;;
176 ;; The variable `ps-printer-name' determines the name of a local printer for
177 ;; printing PostScript files.
178 ;;
179 ;; The variable `ps-printer-name-option' determines the option used by some
180 ;; utilities to indicate the printer name, it's used only when
181 ;; `ps-printer-name' is a non-empty string. If you're using lpr utility to
182 ;; print, for example, `ps-printer-name-option' should be set to "-P".
183 ;;
184 ;; NOTE: `ps-lpr-command' and `ps-lpr-switches' take their initial values from
185 ;; the variables `lpr-command' and `lpr-switches'. If you have
186 ;; `lpr-command' set to invoke a pretty-printer such as `enscript', then
187 ;; ps-print won't work properly. `ps-lpr-command' must name a program
188 ;; that does not format the files it prints.
189 ;; `ps-printer-name' takes its initial value from the variable
190 ;; `printer-name'. `ps-printer-name-option' tries to guess which system
191 ;; Emacs is running and takes its initial value in accordance with this
192 ;; guess.
193 ;;
194 ;; The variable `ps-print-region-function' specifies a function to print the
195 ;; region on a PostScript printer.
196 ;; See definition of `call-process-region' for calling conventions. The fourth
197 ;; and the sixth arguments are both nil.
198 ;;
199 ;; The variable `ps-manual-feed' indicates if the printer will manually feed
200 ;; paper. If it's nil, automatic feeding takes place. If it's non-nil, manual
201 ;; feeding takes place. The default is nil (automatic feeding).
202 ;;
203 ;; The variable `ps-end-with-control-d' specifies whether C-d (\x04) should be
204 ;; inserted at end of PostScript generated. Non-nil means do so. The default
205 ;; is nil (don't insert).
206 ;;
207 ;; If you're using Emacs for Windows 95/98/NT or MS-DOS, don't forget to
208 ;; customize the following variables: `ps-printer-name',
209 ;; `ps-printer-name-option', `ps-lpr-command', `ps-lpr-switches' and
210 ;; `ps-spool-config'. See these variables documentation in the code or by
211 ;; typing, for example, C-h v ps-printer-name RET.
212 ;;
213 ;;
214 ;; The Page Layout
215 ;; ---------------
216 ;;
217 ;; All dimensions are floats in PostScript points.
218 ;; 1 inch == 2.54 cm == 72 points
219 ;; 1 cm == (/ 1 2.54) inch == (/ 72 2.54) points
220 ;;
221 ;; The variable `ps-paper-type' determines the size of paper ps-print formats
222 ;; for; it should contain one of the symbols: `a4' `a3' `letter' `legal'
223 ;; `letter-small' `tabloid' `ledger' `statement' `executive' `a4small' `b4'
224 ;; `b5'.
225 ;;
226 ;; If variable `ps-warn-paper-type' is nil, it's *not* given an error if
227 ;; PostScript printer doesn't have a paper with the size indicated by
228 ;; `ps-paper-type', instead it uses the default paper size. If variable
229 ;; `ps-warn-paper-type' is non-nil, it's given an error if PostScript printer
230 ;; doesn't have a paper with the size indicated by `ps-paper-type'. It's used
231 ;; when `ps-spool-config' is set to `setpagedevice' (see section Duplex
232 ;; Printers). The default value is non-nil (it gives an error).
233 ;;
234 ;; The variable `ps-landscape-mode' determines the orientation of the printing
235 ;; on the page: nil means `portrait' mode, non-nil means `landscape' mode.
236 ;; There is no oblique mode yet, though this is easy to do in ps.
237 ;;
238 ;; In landscape mode, the text is NOT scaled: you may print 70 lines in
239 ;; portrait mode and only 50 lines in landscape mode. The margins represent
240 ;; margins in the printed paper: the top margin is the margin between the top
241 ;; of the page and the printed header, whatever the orientation is.
242 ;;
243 ;; The variable `ps-number-of-columns' determines the number of columns both in
244 ;; landscape and portrait mode.
245 ;; You can use:
246 ;; - (the standard) one column portrait mode.
247 ;; - (my favorite) two columns landscape mode (which spares trees).
248 ;; but also:
249 ;; - one column landscape mode for files with very long lines.
250 ;; - multi-column portrait or landscape mode.
251 ;;
252 ;; The variable `ps-print-upside-down' determines other orientation for
253 ;; printing page: nil means `normal' printing, non-nil means `upside-down'
254 ;; printing (that is, the page is rotated by 180 grades). The default value is
255 ;; nil (`normal' printing).
256 ;;
257 ;; The `upside-down' orientation can be used in portrait or landscape mode.
258 ;;
259 ;; The variable `ps-selected-pages' specifies which pages to print. If it's
260 ;; nil, all pages are printed. If it's a list, the list element may be an
261 ;; integer or a cons cell (FROM . TO) designating FROM page to TO page; any
262 ;; invalid element is ignored, that is, an integer lesser than one or if FROM
263 ;; is greater than TO. Otherwise, it's treated as nil. The default value is
264 ;; nil (print all pages). After ps-print processing `ps-selected-pages' is set
265 ;; to nil. But the latest `ps-selected-pages' is saved in
266 ;; `ps-last-selected-pages' (see it for documentation). So you can restore the
267 ;; latest selected pages by using `ps-last-selected-pages' or by calling
268 ;; `ps-restore-selected-pages' command (see it for documentation).
269 ;;
270 ;; The variable `ps-even-or-odd-pages' specifies if it prints even/odd pages.
271 ;;
272 ;; Valid values are:
273 ;;
274 ;; nil print all pages.
275 ;;
276 ;; even-page print only even pages.
277 ;;
278 ;; odd-page print only odd pages.
279 ;;
280 ;; even-sheet print only even sheets.
281 ;;
282 ;; odd-sheet print only odd sheets.
283 ;;
284 ;; Any other value is treated as nil. The default value is nil.
285 ;;
286 ;; See `ps-even-or-odd-pages' for more detailed documentation.
287 ;;
288 ;;
289 ;; Horizontal layout
290 ;; -----------------
291 ;;
292 ;; The horizontal layout is determined by the variables
293 ;; `ps-left-margin' `ps-inter-column' `ps-right-margin'
294 ;; as follows:
295 ;;
296 ;; ------------------------------------------
297 ;; | | | | | | | |
298 ;; | lm | text | ic | text | ic | text | rm |
299 ;; | | | | | | | |
300 ;; ------------------------------------------
301 ;;
302 ;; If `ps-number-of-columns' is 1, `ps-inter-column' is not relevant.
303 ;; Usually, lm = rm > 0 and ic = lm
304 ;; If (ic < 0), the text of adjacent columns can overlap.
305 ;;
306 ;;
307 ;; Vertical layout
308 ;; ---------------
309 ;;
310 ;; The vertical layout is determined by the variables
311 ;; `ps-bottom-margin' `ps-top-margin' `ps-header-offset' `ps-footer-offset'
312 ;; as follows:
313 ;;
314 ;; |--------| |--------| |--------| |--------|
315 ;; | tm | | tm | | tm | | tm |
316 ;; |--------| |--------| |--------| |--------|
317 ;; | header | | | | header | | |
318 ;; |--------| | | |--------| | |
319 ;; | ho | | | | ho | | |
320 ;; |--------| | | |--------| | |
321 ;; | | | | | | | |
322 ;; | text | or | text | or | text | or | text |
323 ;; | | | | | | | |
324 ;; | | |--------| |--------| | |
325 ;; | | | fo | | fo | | |
326 ;; | | |--------| |--------| | |
327 ;; | | | footer | | footer | | |
328 ;; |--------| |--------| |--------| |--------|
329 ;; | bm | | bm | | bm | | bm |
330 ;; |--------| |--------| |--------| |--------|
331 ;;
332 ;; If `ps-print-header' is nil, `ps-header-offset' is not relevant.
333 ;; If `ps-print-footer' is nil, `ps-footer-offset' is not relevant.
334 ;; The margins represent margins in the printed paper:
335 ;; the top margin is the margin between the top of the page and the printed
336 ;; header, whatever the orientation is;
337 ;; the bottom margin is the margin between the bottom of the page and the
338 ;; printed footer, whatever the orientation is.
339 ;;
340 ;;
341 ;; Headers & Footers
342 ;; -----------------
343 ;;
344 ;; ps-print can print headers at the top of each column or at the top of each
345 ;; page; the default headers contain the following four items: on the left, the
346 ;; name of the buffer and, if the buffer is visiting a file, the file's
347 ;; directory; on the right, the page number and date of printing. The default
348 ;; headers look something like this:
349 ;;
350 ;; ps-print.el 1/21
351 ;; /home/jct/emacs-lisp/ps/new 94/12/31
352 ;;
353 ;; When printing on duplex printers, left and right are reversed so that the
354 ;; page numbers are toward the outside (cf. `ps-spool-duplex').
355 ;;
356 ;; Headers are configurable:
357 ;; To turn them off completely, set `ps-print-header' to nil.
358 ;; To turn off the header's gaudy framing box,
359 ;; set `ps-print-header-frame' to nil.
360 ;;
361 ;; The variable `ps-header-frame-alist' specifies header frame properties
362 ;; alist. Valid frame properties are:
363 ;;
364 ;; fore-color Specify the foreground frame color.
365 ;; It should be a float number between 0.0 (black color)
366 ;; and 1.0 (white color), a string which is a color name,
367 ;; or a list of 3 float numbers which corresponds to the
368 ;; Red Green Blue color scale, each float number between
369 ;; 0.0 (dark color) and 1.0 (bright color).
370 ;; The default is 0 ("black").
371 ;;
372 ;; back-color Specify the background frame color (similar to
373 ;; fore-color). The default is 0.9 ("gray90").
374 ;;
375 ;; shadow-color Specify the shadow color (similar to fore-color).
376 ;; The default is 0 ("black").
377 ;;
378 ;; border-color Specify the border color (similar to fore-color).
379 ;; The default is 0 ("black").
380 ;;
381 ;; border-width Specify the border width.
382 ;; The default is 0.4.
383 ;;
384 ;; Any other property is ignored.
385 ;;
386 ;; Don't change this alist directly, instead use customization, or `ps-value',
387 ;; `ps-get', `ps-put' and `ps-del' functions (see them for documentation).
388 ;;
389 ;; To print only one header at the top of each page, set
390 ;; `ps-print-only-one-header' to t.
391 ;;
392 ;; To switch headers, set `ps-switch-header' to:
393 ;;
394 ;; nil Never switch headers.
395 ;;
396 ;; t Always switch headers.
397 ;;
398 ;; duplex Switch headers only when duplexing is on, that is, when
399 ;; `ps-spool-duplex' is non-nil (see Duplex Printers).
400 ;;
401 ;; Any other value is treated as t. The default value is `duplex'.
402 ;;
403 ;; The font family and size of text in the header are determined by the
404 ;; variables `ps-header-font-family', `ps-header-font-size' and
405 ;; `ps-header-title-font-size' (see below).
406 ;;
407 ;; The variable `ps-header-line-pad' determines the portion of a header title
408 ;; line height to insert between the header frame and the text it contains,
409 ;; both in the vertical and horizontal directions: .5 means half a line.
410 ;;
411 ;; Page numbers are printed in `n/m' format, indicating page n of m pages; to
412 ;; omit the total page count and just print the page number, set
413 ;; `ps-show-n-of-n' to nil.
414 ;;
415 ;; The amount of information in the header can be changed by changing the
416 ;; number of lines. To show less, set `ps-header-lines' to 1, and the header
417 ;; will show only the buffer name and page number. To show more, set
418 ;; `ps-header-lines' to 3, and the header will show the time of printing below
419 ;; the date.
420 ;;
421 ;; To change the content of the headers, change the variables `ps-left-header'
422 ;; and `ps-right-header'.
423 ;; These variables are lists, specifying top-to-bottom the text to display on
424 ;; the left or right side of the header. Each element of the list should be a
425 ;; string or a symbol. Strings are inserted directly into the PostScript
426 ;; arrays, and should contain the PostScript string delimiters '(' and ')'.
427 ;;
428 ;; Symbols in the header format lists can either represent functions or
429 ;; variables. Functions are called, and should return a string to show in the
430 ;; header. Variables should contain strings to display in the header. In
431 ;; either case, function or variable, the PostScript string delimiters are
432 ;; added by ps-print, and should not be part of the returned value.
433 ;;
434 ;; Here's an example: say we want the left header to display the text
435 ;;
436 ;; Moe
437 ;; Larry
438 ;; Curly
439 ;;
440 ;; where we have a function to return "Moe"
441 ;;
442 ;; (defun moe-func ()
443 ;; "Moe")
444 ;;
445 ;; a variable specifying "Larry"
446 ;;
447 ;; (setq larry-var "Larry")
448 ;;
449 ;; and a literal for "Curly". Here's how `ps-left-header' should be set:
450 ;;
451 ;; (setq ps-left-header (list 'moe-func 'larry-var "(Curly)"))
452 ;;
453 ;; Note that Curly has the PostScript string delimiters inside his quotes --
454 ;; those aren't misplaced lisp delimiters!
455 ;;
456 ;; Without them, PostScript would attempt to call the undefined function Curly,
457 ;; which would result in a PostScript error.
458 ;;
459 ;; Since most printers don't report PostScript errors except by aborting the
460 ;; print job, this kind of error can be hard to track down.
461 ;;
462 ;; Consider yourself warned!
463 ;;
464 ;; ps-print also print footers. The footer variables are: `ps-print-footer',
465 ;; `ps-footer-offset', `ps-print-footer-frame', `ps-footer-font-family',
466 ;; `ps-footer-font-size', `ps-footer-line-pad', `ps-footer-lines',
467 ;; `ps-left-footer', `ps-right-footer' and `ps-footer-frame-alist'. These
468 ;; variables are similar to those one that control headers.
469 ;;
470 ;; The variables `ps-print-only-one-header' and `ps-switch-header' also control
471 ;; the footer (The same way that control header).
472 ;;
473 ;; As a footer example, if you want to have a centered page number in the
474 ;; footer but without headers, set:
475 ;;
476 ;; (setq ps-print-header nil
477 ;; ps-print-footer t
478 ;; ps-print-footer-frame nil
479 ;; ps-footer-lines 1
480 ;; ps-right-footer nil
481 ;; ps-left-footer
482 ;; (list (concat "{pagenumberstring dup stringwidth pop"
483 ;; " 2 div PrintWidth 2 div exch sub 0 rmoveto}")))
484 ;;
485 ;;
486 ;; PostScript Prologue Header
487 ;; --------------------------
488 ;;
489 ;; It is possible to add PostScript prologue header comments besides that
490 ;; ps-print generates by setting the variable `ps-print-prologue-header'.
491 ;;
492 ;; `ps-print-prologue-header' may be a string or a symbol function which
493 ;; returns a string. Note that this string is inserted on PostScript prologue
494 ;; header section which is used to define some document characteristic through
495 ;; PostScript special comments, like "%%Requirements: jog\n".
496 ;;
497 ;; By default `ps-print-prologue-header' is nil.
498 ;;
499 ;; ps-print always inserts the %%Requirements: comment, so if you need to
500 ;; insert more requirements put them first in `ps-print-prologue-header' using
501 ;; the "%%+" comment. For example, if you need to set numcopies to 3 and jog
502 ;; on requirements and set %%LanguageLevel: to 2, do:
503 ;;
504 ;; (setq ps-print-prologue-header
505 ;; "%%+ numcopies(3) jog\n%%LanguageLevel: 2\n")
506 ;;
507 ;; The duplex requirement is inserted by ps-print (see section Duplex
508 ;; Printers).
509 ;;
510 ;; Do not forget to terminate the string with "\n".
511 ;;
512 ;; For more information about PostScript document comments, see:
513 ;; PostScript Language Reference Manual (2nd edition)
514 ;; Adobe Systems Incorporated
515 ;; Appendix G: Document Structuring Conventions -- Version 3.0
516 ;;
517 ;; It is also possible to add an user defined PostScript prologue code before
518 ;; all generated prologue code by setting the variable
519 ;; `ps-user-defined-prologue'.
520 ;;
521 ;; `ps-user-defined-prologue' may be a string or a symbol function which
522 ;; returns a string. Note that this string is inserted after `ps-adobe-tag'
523 ;; and PostScript prologue comments, and before ps-print PostScript prologue
524 ;; code section. That is, this string is inserted after error handler
525 ;; initialization and before ps-print settings.
526 ;;
527 ;; By default `ps-user-defined-prologue' is nil.
528 ;;
529 ;; It's strongly recommended only insert PostScript code and/or comments
530 ;; specific for your printing system particularities. For example, some
531 ;; special initialization that only your printing system needs.
532 ;;
533 ;; Do not insert code for duplex printing, n-up printing or error handler,
534 ;; ps-print handles this in a suitable way.
535 ;;
536 ;; For more information about PostScript, see:
537 ;; PostScript Language Reference Manual (2nd edition)
538 ;; Adobe Systems Incorporated
539 ;;
540 ;; As an example for `ps-user-defined-prologue' setting:
541 ;;
542 ;; ;; Setting for HP PostScript printer
543 ;; (setq ps-user-defined-prologue
544 ;; (concat "<</DeferredMediaSelection true /PageSize [612 792] "
545 ;; "/MediaPosition 2 /MediaType (Plain)>> setpagedevice"))
546 ;;
547 ;;
548 ;; PostScript Error Handler
549 ;; ------------------------
550 ;;
551 ;; ps-print instruments generated PostScript code with an error handler.
552 ;;
553 ;; The variable `ps-error-handler-message' specifies where the error handler
554 ;; message should be sent.
555 ;;
556 ;; Valid values are:
557 ;;
558 ;; none catch the error and *DON'T* send any message.
559 ;;
560 ;; paper catch the error and print on paper the error message.
561 ;; This is the default value.
562 ;;
563 ;; system catch the error and send back the error message to
564 ;; printing system. This is useful only if printing
565 ;; system send back an email reporting the error, or if
566 ;; there is some other alternative way to report back the
567 ;; error from the system to you.
568 ;;
569 ;; paper-and-system catch the error, print on paper the error message and
570 ;; send back the error message to printing system.
571 ;;
572 ;; Any other value is treated as `paper'.
573 ;;
574 ;;
575 ;; Duplex Printers
576 ;; ---------------
577 ;;
578 ;; If you have a duplex-capable printer (one that prints both sides of the
579 ;; paper), set `ps-spool-duplex' to t.
580 ;; ps-print will insert blank pages to make sure each buffer starts on the
581 ;; correct side of the paper.
582 ;;
583 ;; The variable `ps-spool-config' specifies who is the responsible for setting
584 ;; duplex and page size. Valid values are:
585 ;;
586 ;; lpr-switches duplex and page size are configured by `ps-lpr-switches'.
587 ;; Don't forget to set `ps-lpr-switches' to select duplex
588 ;; printing for your printer.
589 ;;
590 ;; setpagedevice duplex and page size are configured by ps-print using the
591 ;; setpagedevice PostScript operator.
592 ;;
593 ;; nil duplex and page size are configured by ps-print *not* using
594 ;; the setpagedevice PostScript operator.
595 ;;
596 ;; Any other value is treated as nil.
597 ;;
598 ;; The default value is `lpr-switches'.
599 ;;
600 ;; WARNING: The setpagedevice PostScript operator affects ghostview utility
601 ;; when viewing file generated using landscape. Also on some
602 ;; printers, setpagedevice affects zebra stripes; on other printers,
603 ;; setpagedevice affects the left margin.
604 ;; Besides all that, if your printer does not have the paper size
605 ;; specified by setpagedevice, your printing will be aborted.
606 ;; So, if you need to use setpagedevice, set `ps-spool-config' to
607 ;; `setpagedevice', generate a test file and send it to your printer;
608 ;; if the printed file isn't ok, set `ps-spool-config' to nil.
609 ;;
610 ;; The variable `ps-spool-tumble' specifies how the page images on opposite
611 ;; sides of a sheet are oriented with respect to each other. If
612 ;; `ps-spool-tumble' is nil, produces output suitable for binding on the left
613 ;; or right. If `ps-spool-tumble' is non-nil, produces output suitable for
614 ;; binding at the top or bottom. It has effect only when `ps-spool-duplex' is
615 ;; non-nil. The default value is nil.
616 ;;
617 ;; Some printer system prints a header page and forces the first page be
618 ;; printed on header page back, when using duplex. If your printer system has
619 ;; this behavior, set variable `ps-banner-page-when-duplexing' to t.
620 ;;
621 ;; When `ps-banner-page-when-duplexing' is non-nil, it prints a blank page as
622 ;; the very first printed page. So, it behaves as the very first character of
623 ;; buffer (or region) is ^L (\014).
624 ;;
625 ;; The default for `ps-banner-page-when-duplexing' is nil (*don't* skip the
626 ;; very first page).
627 ;;
628 ;;
629 ;; N-up Printing
630 ;; -------------
631 ;;
632 ;; The variable `ps-n-up-printing' specifies the number of pages per sheet of
633 ;; paper. The value specified must be between 1 and 100. The default is 1.
634 ;;
635 ;; NOTE: some PostScript printer may crash printing if `ps-n-up-printing' is
636 ;; set to a high value (for example, 23). If this happens, set a lower value.
637 ;;
638 ;; The variable `ps-n-up-margin' specifies the margin in points between the
639 ;; sheet border and the n-up printing. The default is 1 cm (or 0.3937 inches,
640 ;; or 28.35 points).
641 ;;
642 ;; If variable `ps-n-up-border-p' is non-nil a border is drawn around each
643 ;; page. The default is t.
644 ;;
645 ;; The variable `ps-n-up-filling' specifies how page matrix is filled on each
646 ;; sheet of paper. Following are the valid values for `ps-n-up-filling' with a
647 ;; filling example using a 3x4 page matrix:
648 ;;
649 ;; left-top 1 2 3 4 left-bottom 9 10 11 12
650 ;; 5 6 7 8 5 6 7 8
651 ;; 9 10 11 12 1 2 3 4
652 ;;
653 ;; right-top 4 3 2 1 right-bottom 12 11 10 9
654 ;; 8 7 6 5 8 7 6 5
655 ;; 12 11 10 9 4 3 2 1
656 ;;
657 ;; top-left 1 4 7 10 bottom-left 3 6 9 12
658 ;; 2 5 8 11 2 5 8 11
659 ;; 3 6 9 12 1 4 7 10
660 ;;
661 ;; top-right 10 7 4 1 bottom-right 12 9 6 3
662 ;; 11 8 5 2 11 8 5 2
663 ;; 12 9 6 3 10 7 4 1
664 ;;
665 ;; Any other value is treated as `left-top'.
666 ;;
667 ;; The default value is left-top.
668 ;;
669 ;;
670 ;; Control And 8-bit Characters
671 ;; ----------------------------
672 ;;
673 ;; The variable `ps-print-control-characters' specifies whether you want to see
674 ;; a printable form for control and 8-bit characters, that is, instead of
675 ;; sending, for example, a ^D (\004) to printer, it is sent the string "^D".
676 ;;
677 ;; Valid values for `ps-print-control-characters' are:
678 ;;
679 ;; 8-bit This is the value to use when you want an ASCII encoding of
680 ;; any control or non-ASCII character. Control characters are
681 ;; encoded as "^D", and non-ASCII characters have an
682 ;; octal encoding.
683 ;;
684 ;; control-8-bit This is the value to use when you want an ASCII encoding of
685 ;; any control character, whether it is 7 or 8-bit.
686 ;; European 8-bits accented characters are printed according
687 ;; the current font.
688 ;;
689 ;; control Only ASCII control characters have an ASCII encoding.
690 ;; European 8-bits accented characters are printed according
691 ;; the current font.
692 ;;
693 ;; nil No ASCII encoding. Any character is printed according the
694 ;; current font.
695 ;;
696 ;; Any other value is treated as nil.
697 ;;
698 ;; The default is `control-8-bit'.
699 ;;
700 ;; Characters TAB, NEWLINE and FORMFEED are always treated by ps-print engine.
701 ;;
702 ;;
703 ;; Printing Multi-byte Buffer
704 ;; --------------------------
705 ;;
706 ;; See ps-mule.el for documentation.
707 ;;
708 ;;
709 ;; Line Number
710 ;; -----------
711 ;;
712 ;; The variable `ps-line-number' specifies whether to number each line;
713 ;; non-nil means do so. The default is nil (don't number each line).
714 ;;
715 ;; The variable `ps-line-number-color' specifies the color for line number.
716 ;; See `ps-zebra-color' for documentation. The default is "black" (or 0.0, or
717 ;; '(0.0 0.0 0.0)).
718 ;;
719 ;; The variable `ps-line-number-font' specifies the font for line number.
720 ;; The default is "Times-Italic".
721 ;;
722 ;; The variable `ps-line-number-font-size' specifies the font size in points
723 ;; for line number. See `ps-font-size' for documentation. The default is 6.
724 ;;
725 ;; The variable `ps-line-number-step' specifies the interval that line number
726 ;; is printed. For example, if `ps-line-number-step' is set to 2, the printing
727 ;; will look like:
728 ;;
729 ;; 1 one line
730 ;; one line
731 ;; 3 one line
732 ;; one line
733 ;; 5 one line
734 ;; one line
735 ;; ...
736 ;;
737 ;; Valid values are:
738 ;;
739 ;; integer an integer that specifies the interval that line number is
740 ;; printed. If it's lesser than or equal to zero, it's used the
741 ;; value 1.
742 ;;
743 ;; `zebra' specifies that only the line number of the first line in a
744 ;; zebra stripe is to be printed.
745 ;;
746 ;; Any other value is treated as `zebra'.
747 ;; The default value is 1, so each line number is printed.
748 ;;
749 ;; The variable `ps-line-number-start' specifies the starting point in the
750 ;; interval given by `ps-line-number-step'. For example, if
751 ;; `ps-line-number-step' is set to 3 and `ps-line-number-start' is set to 3,
752 ;; the printing will look like:
753 ;;
754 ;; one line
755 ;; one line
756 ;; 3 one line
757 ;; one line
758 ;; one line
759 ;; 6 one line
760 ;; one line
761 ;; one line
762 ;; 9 one line
763 ;; one line
764 ;; ...
765 ;;
766 ;; The values for `ps-line-number-start':
767 ;;
768 ;; * If `ps-line-number-step' is an integer, must be between 1 and the value
769 ;; of `ps-line-number-step' inclusive.
770 ;;
771 ;; * If `ps-line-number-step' is set to `zebra', must be between 1 and the
772 ;; value of `ps-zebra-stripe-height' inclusive.
773 ;;
774 ;; The default value is 1, so the line number of the first line of each
775 ;; interval is printed.
776 ;;
777 ;;
778 ;; Zebra Stripes
779 ;; -------------
780 ;;
781 ;; Zebra stripes are a kind of background that appear "underneath" the text and
782 ;; can make the text easier to read. They look like this:
783 ;;
784 ;; XXXXXXXXXXXXXXXXXXXXXXXX
785 ;; XXXXXXXXXXXXXXXXXXXXXXXX
786 ;; XXXXXXXXXXXXXXXXXXXXXXXX
787 ;;
788 ;;
789 ;;
790 ;; XXXXXXXXXXXXXXXXXXXXXXXX
791 ;; XXXXXXXXXXXXXXXXXXXXXXXX
792 ;; XXXXXXXXXXXXXXXXXXXXXXXX
793 ;;
794 ;; The blocks of X's represent rectangles filled with a light gray color.
795 ;; Each rectangle extends all the way across the page.
796 ;;
797 ;; The height, in lines, of each rectangle is controlled by the variable
798 ;; `ps-zebra-stripe-height', which is 3 by default. The distance between
799 ;; stripes equals the height of a stripe.
800 ;;
801 ;; The variable `ps-zebra-stripes' controls whether to print zebra stripes.
802 ;; Non-nil means yes, nil means no. The default is nil.
803 ;;
804 ;; The variable `ps-zebra-color' controls the zebra stripes gray scale or RGB
805 ;; color. It should be a float number between 0.0 (black color) and 1.0 (white
806 ;; color), a string which is a color name, or a list of 3 numbers which
807 ;; corresponds to the Red Green Blue color scale.
808 ;; The default is 0.95 (or "gray95", or '(0.95 0.95 0.95)).
809 ;;
810 ;; The variable `ps-zebra-stripe-follow' specifies how zebra stripes continue
811 ;; on next page. Visually, valid values are (the character `+' at right of
812 ;; each column indicates that a line is printed):
813 ;;
814 ;; `nil' `follow' `full' `full-follow'
815 ;; Current Page -------- ----------- --------- ----------------
816 ;; 1 XXXXX + 1 XXXXXXXX + 1 XXXXXX + 1 XXXXXXXXXXXXX +
817 ;; 2 XXXXX + 2 XXXXXXXX + 2 XXXXXX + 2 XXXXXXXXXXXXX +
818 ;; 3 XXXXX + 3 XXXXXXXX + 3 XXXXXX + 3 XXXXXXXXXXXXX +
819 ;; 4 + 4 + 4 + 4 +
820 ;; 5 + 5 + 5 + 5 +
821 ;; 6 + 6 + 6 + 6 +
822 ;; 7 XXXXX + 7 XXXXXXXX + 7 XXXXXX + 7 XXXXXXXXXXXXX +
823 ;; 8 XXXXX + 8 XXXXXXXX + 8 XXXXXX + 8 XXXXXXXXXXXXX +
824 ;; 9 XXXXX + 9 XXXXXXXX + 9 XXXXXX + 9 XXXXXXXXXXXXX +
825 ;; 10 + 10 +
826 ;; 11 + 11 +
827 ;; -------- ----------- --------- ----------------
828 ;; Next Page -------- ----------- --------- ----------------
829 ;; 12 XXXXX + 12 + 10 XXXXXX + 10 +
830 ;; 13 XXXXX + 13 XXXXXXXX + 11 XXXXXX + 11 +
831 ;; 14 XXXXX + 14 XXXXXXXX + 12 XXXXXX + 12 +
832 ;; 15 + 15 XXXXXXXX + 13 + 13 XXXXXXXXXXXXX +
833 ;; 16 + 16 + 14 + 14 XXXXXXXXXXXXX +
834 ;; 17 + 17 + 15 + 15 XXXXXXXXXXXXX +
835 ;; 18 XXXXX + 18 + 16 XXXXXX + 16 +
836 ;; 19 XXXXX + 19 XXXXXXXX + 17 XXXXXX + 17 +
837 ;; 20 XXXXX + 20 XXXXXXXX + 18 XXXXXX + 18 +
838 ;; 21 + 21 XXXXXXXX +
839 ;; 22 + 22 +
840 ;; -------- ----------- --------- ----------------
841 ;;
842 ;; Any other value is treated as nil.
843 ;;
844 ;; See also section How Ps-Print Has A Text And/Or Image On Background.
845 ;;
846 ;;
847 ;; Hooks
848 ;; -----
849 ;;
850 ;; ps-print has the following hook variables:
851 ;;
852 ;; `ps-print-hook'
853 ;; It is evaluated once before any printing process. This is the right
854 ;; place to initialize ps-print global data.
855 ;; For an example, see section Adding a New Font Family.
856 ;;
857 ;; `ps-print-begin-sheet-hook'
858 ;; It is evaluated on each beginning of sheet of paper.
859 ;; If `ps-n-up-printing' is equal to 1, `ps-print-begin-page-hook' is never
860 ;; evaluated.
861 ;;
862 ;; `ps-print-begin-page-hook'
863 ;; It is evaluated on each beginning of page, except in the beginning of
864 ;; page that `ps-print-begin-sheet-hook' is evaluated.
865 ;;
866 ;; `ps-print-begin-column-hook'
867 ;; It is evaluated on each beginning of column, except in the beginning of
868 ;; column that `ps-print-begin-page-hook' is evaluated or that
869 ;; `ps-print-begin-sheet-hook' is evaluated.
870 ;;
871 ;;
872 ;; Font Managing
873 ;; -------------
874 ;;
875 ;; ps-print now knows rather precisely some fonts: the variable
876 ;; `ps-font-info-database' contains information for a list of font families
877 ;; (currently mainly `Courier' `Helvetica' `Times' `Palatino'
878 ;; `Helvetica-Narrow' `NewCenturySchlbk'). Each font family contains the font
879 ;; names for standard, bold, italic and bold-italic characters, a reference
880 ;; size (usually 10) and the corresponding line height, width of a space and
881 ;; average character width.
882 ;;
883 ;; The variable `ps-font-family' determines which font family is to be used for
884 ;; ordinary text. If its value does not correspond to a known font family, an
885 ;; error message is printed into the `*Messages*' buffer, which lists the
886 ;; currently available font families.
887 ;;
888 ;; The variable `ps-font-size' determines the size (in points) of the font for
889 ;; ordinary text, when generating PostScript. Its value is a float or a cons
890 ;; of floats which has the following form:
891 ;;
892 ;; (LANDSCAPE-SIZE . PORTRAIT-SIZE)
893 ;;
894 ;; Similarly, the variable `ps-header-font-family' determines which font family
895 ;; is to be used for text in the header.
896 ;;
897 ;; The variable `ps-header-font-size' determines the font size, in points, for
898 ;; text in the header (similar to `ps-font-size').
899 ;;
900 ;; The variable `ps-header-title-font-size' determines the font size, in
901 ;; points, for the top line of text in the header (similar to `ps-font-size').
902 ;;
903 ;; The variable `ps-line-spacing' determines the line spacing, in points, for
904 ;; ordinary text, when generating PostScript (similar to `ps-font-size'). The
905 ;; default value is 0 (zero = no line spacing).
906 ;;
907 ;; The variable `ps-paragraph-spacing' determines the paragraph spacing, in
908 ;; points, for ordinary text, when generating PostScript (similar to
909 ;; `ps-font-size'). The default value is 0 (zero = no paragraph spacing).
910 ;;
911 ;; To get all lines with some spacing set both `ps-line-spacing' and
912 ;; `ps-paragraph-spacing' variables.
913 ;;
914 ;; The variable `ps-paragraph-regexp' specifies the paragraph delimiter. It
915 ;; should be a regexp or nil. The default value is "[ \t]*$", that is, an
916 ;; empty line or a line containing only spaces and tabs.
917 ;;
918 ;; The variable `ps-begin-cut-regexp' and `ps-end-cut-regexp' specify the start
919 ;; and end of a region to cut out when printing.
920 ;;
921 ;; As an example, variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' may
922 ;; be set to "^Local Variables:" and "^End:", respectively, in order to leave
923 ;; out some special printing instructions from the actual print. Special
924 ;; printing instructions may be appended to the end of the file just like any
925 ;; other buffer-local variables. See section "Local Variables in Files" on
926 ;; Emacs manual for more information.
927 ;;
928 ;; Variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' control together
929 ;; what actually gets printed. Both variables may be set to nil in which case
930 ;; no cutting occurs. By default, both variables are set to nil.
931 ;;
932 ;;
933 ;; Adding a New Font Family
934 ;; ------------------------
935 ;;
936 ;; To use a new font family, you MUST first teach ps-print this font, i.e., add
937 ;; its information to `ps-font-info-database', otherwise ps-print cannot
938 ;; correctly place line and page breaks.
939 ;;
940 ;; For example, assuming `Helvetica' is unknown, you first need to do the
941 ;; following ONLY ONCE:
942 ;;
943 ;; - create a new buffer
944 ;; - generate the PostScript image to a file (C-u M-x ps-print-buffer)
945 ;; - open this file and find the line:
946 ;; `% 3 cm 20 cm moveto 10/Courier ReportFontInfo showpage'
947 ;; - delete the leading `%' (which is the PostScript comment character)
948 ;; - replace in this line `Courier' by the new font (say `Helvetica') to get
949 ;; the line:
950 ;; `3 cm 20 cm moveto 10/Helvetica ReportFontInfo showpage'
951 ;; - send this file to the printer (or to ghostscript).
952 ;; You should read the following on the output page:
953 ;;
954 ;; For Helvetica 10 point, the line height is 11.56, the space width is 2.78
955 ;; and a crude estimate of average character width is 5.09243
956 ;;
957 ;; - Add these values to the `ps-font-info-database':
958 ;; (setq ps-font-info-database
959 ;; (append
960 ;; '((Helvetica ; the family key
961 ;; (fonts (normal . "Helvetica")
962 ;; (bold . "Helvetica-Bold")
963 ;; (italic . "Helvetica-Oblique")
964 ;; (bold-italic . "Helvetica-BoldOblique"))
965 ;; (size . 10.0)
966 ;; (line-height . 11.56)
967 ;; (space-width . 2.78)
968 ;; (avg-char-width . 5.09243)))
969 ;; ps-font-info-database))
970 ;; - Now you can use this font family with any size:
971 ;; (setq ps-font-family 'Helvetica)
972 ;; - if you want to use this family in another emacs session, you must put into
973 ;; your `~/.emacs':
974 ;; (require 'ps-print)
975 ;; (setq ps-font-info-database (append ...)))
976 ;; if you don't want to load ps-print, you have to copy the whole value:
977 ;; (setq ps-font-info-database '(<your stuff> <the standard stuff>))
978 ;; or, use `ps-print-hook' (see section Hooks):
979 ;; (add-hook 'ps-print-hook
980 ;; '(lambda ()
981 ;; (or (assq 'Helvetica ps-font-info-database)
982 ;; (setq ps-font-info-database (append ...)))))
983 ;;
984 ;; You can create new `mixed' font families like:
985 ;; (my-mixed-family
986 ;; (fonts (normal . "Courier-Bold")
987 ;; (bold . "Helvetica")
988 ;; (italic . "ZapfChancery-MediumItalic")
989 ;; (bold-italic . "NewCenturySchlbk-BoldItalic")
990 ;; (w3-table-hack-x-face . "LineDrawNormal"))
991 ;; (size . 10.0)
992 ;; (line-height . 10.55)
993 ;; (space-width . 6.0)
994 ;; (avg-char-width . 6.0))
995 ;;
996 ;; Now you can use your new font family with any size:
997 ;; (setq ps-font-family 'my-mixed-family)
998 ;;
999 ;; Note that on above example the `w3-table-hack-x-face' entry refers to a face
1000 ;; symbol, so when printing this face it'll be used the font `LineDrawNormal'.
1001 ;; If the face `w3-table-hack-x-face' is remapped to use bold and/or italic
1002 ;; attribute, the corresponding entry (bold, italic or bold-italic) will be
1003 ;; used instead of `w3-table-hack-x-face' entry.
1004 ;;
1005 ;; Note also that the font family entry order is irrelevant, so the above
1006 ;; example could also be written:
1007 ;; (my-mixed-family
1008 ;; (size . 10.0)
1009 ;; (fonts (w3-table-hack-x-face . "LineDrawNormal")
1010 ;; (bold . "Helvetica")
1011 ;; (bold-italic . "NewCenturySchlbk-BoldItalic")
1012 ;; (italic . "ZapfChancery-MediumItalic")
1013 ;; (normal . "Courier-Bold"))
1014 ;; (avg-char-width . 6.0)
1015 ;; (space-width . 6.0)
1016 ;; (line-height . 10.55))
1017 ;;
1018 ;; Despite the note above, it is recommended that some convention about
1019 ;; entry order be used.
1020 ;;
1021 ;; You can get information on all the fonts resident in YOUR printer
1022 ;; by uncommenting the line:
1023 ;; % 3 cm 20 cm moveto ReportAllFontInfo showpage
1024 ;;
1025 ;; The PostScript file should be sent to YOUR PostScript printer.
1026 ;; If you send it to ghostscript or to another PostScript printer, you may get
1027 ;; slightly different results.
1028 ;; Anyway, as ghostscript fonts are autoload, you won't get much font info.
1029 ;;
1030 ;; Note also that ps-print DOESN'T download any font to your printer, instead
1031 ;; it uses the fonts resident in your printer.
1032 ;;
1033 ;;
1034 ;; How Ps-Print Deals With Faces
1035 ;; -----------------------------
1036 ;;
1037 ;; The ps-print-*-with-faces commands attempt to determine which faces should
1038 ;; be printed in bold or italic, but their guesses aren't always right. For
1039 ;; example, you might want to map colors into faces so that blue faces print in
1040 ;; bold, and red faces in italic.
1041 ;;
1042 ;; It is possible to force ps-print to consider specific faces bold, italic or
1043 ;; underline, no matter what font they are displayed in, by setting the
1044 ;; variables `ps-bold-faces', `ps-italic-faces' and `ps-underlined-faces'.
1045 ;; These variables contain lists of faces that ps-print should consider bold,
1046 ;; italic or underline; to set them, put code like the following into your
1047 ;; .emacs file:
1048 ;;
1049 ;; (setq ps-bold-faces '(my-blue-face))
1050 ;; (setq ps-italic-faces '(my-red-face))
1051 ;; (setq ps-underlined-faces '(my-green-face))
1052 ;;
1053 ;; Faces like bold-italic that are both bold and italic should go in *both*
1054 ;; lists.
1055 ;;
1056 ;; ps-print keeps internal lists of which fonts are bold and which are italic;
1057 ;; these lists are built the first time you invoke ps-print.
1058 ;; For the sake of efficiency, the lists are built only once; the same lists
1059 ;; are referred in later invocations of ps-print.
1060 ;;
1061 ;; Because these lists are built only once, it's possible for them to get out
1062 ;; of sync, if a face changes, or if new faces are added. To get the lists
1063 ;; back in sync, you can set the variable `ps-build-face-reference' to t, and
1064 ;; the lists will be rebuilt the next time ps-print is invoked. If you need
1065 ;; that the lists always be rebuilt when ps-print is invoked, set the variable
1066 ;; `ps-always-build-face-reference' to t.
1067 ;;
1068 ;; If you need to print without worrying about face background color, set the
1069 ;; variable `ps-use-face-background' which specifies if face background should
1070 ;; be used. Valid values are:
1071 ;;
1072 ;; t always use face background color.
1073 ;; nil never use face background color.
1074 ;; (face...) list of faces whose background color will be used.
1075 ;;
1076 ;; Any other value will be treated as t.
1077 ;; The default value is nil.
1078 ;;
1079 ;;
1080 ;; How Ps-Print Deals With Color
1081 ;; -----------------------------
1082 ;;
1083 ;; ps-print detects faces with foreground and background colors defined and
1084 ;; embeds color information in the PostScript image.
1085 ;; The default foreground and background colors are defined by the variables
1086 ;; `ps-default-fg' and `ps-default-bg'.
1087 ;; On black/white printers, colors are displayed in gray scale.
1088 ;; To turn off color output, set `ps-print-color-p' to nil.
1089 ;; You can also set `ps-print-color-p' to 'black-white to have a better looking
1090 ;; on black/white printers. See also `ps-black-white-faces' for documentation.
1091 ;;
1092 ;; ps-print also detects if the text foreground and background colors are
1093 ;; equals when `ps-fg-validate-p' is non-nil. In this case, if these colors
1094 ;; are used, no text will appear. You can use `ps-fg-list' to give a list of
1095 ;; foreground colors to be used when text foreground and background colors are
1096 ;; equals. It'll be used the first foreground color in `ps-fg-list' which is
1097 ;; different from the background color. If `ps-fg-list' is nil, the default
1098 ;; foreground color is used.
1099 ;;
1100 ;;
1101 ;; How Ps-Print Maps Faces
1102 ;; -----------------------
1103 ;;
1104 ;; As ps-print uses PostScript to print buffers, it is possible to have other
1105 ;; attributes associated with faces. So the new attributes used by ps-print
1106 ;; are:
1107 ;;
1108 ;; strikeout - like underline, but the line is in middle of text.
1109 ;; overline - like underline, but the line is over the text.
1110 ;; shadow - text will have a shadow.
1111 ;; box - text will be surrounded by a box.
1112 ;; outline - print characters as hollow outlines.
1113 ;;
1114 ;; See the documentation for `ps-extend-face'.
1115 ;;
1116 ;; Let's, for example, remap `font-lock-keyword-face' to another foreground
1117 ;; color and bold attribute:
1118 ;;
1119 ;; (ps-extend-face '(font-lock-keyword-face "RoyalBlue" nil bold) 'MERGE)
1120 ;;
1121 ;; If you want to use a new face, define it first with `defface', and then call
1122 ;; `ps-extend-face' to specify how to print it.
1123 ;;
1124 ;;
1125 ;; How Ps-Print Has A Text And/Or Image On Background
1126 ;; --------------------------------------------------
1127 ;;
1128 ;; ps-print can print texts and/or EPS PostScript images on background; it is
1129 ;; possible to define the following text attributes: font name, font size,
1130 ;; initial position, angle, gray scale and pages to print.
1131 ;;
1132 ;; It has the following EPS PostScript images attributes: file name containing
1133 ;; the image, initial position, X and Y scales, angle and pages to print.
1134 ;;
1135 ;; See documentation for `ps-print-background-text' and
1136 ;; `ps-print-background-image'.
1137 ;;
1138 ;; For example, if we wish to print text "preliminary" on all pages and text
1139 ;; "special" on page 5 and from page 11 to page 17, we could specify:
1140 ;;
1141 ;; (setq ps-print-background-text
1142 ;; '(("preliminary")
1143 ;; ("special"
1144 ;; "LeftMargin" "BottomMargin PrintHeight add" ; X and Y position
1145 ;; ; (upper left corner)
1146 ;; nil nil nil
1147 ;; "PrintHeight neg PrintPageWidth atan" ; angle
1148 ;; 5 (11 . 17)) ; page list
1149 ;; ))
1150 ;;
1151 ;; Similarly, we could print image "~/images/EPS-image1.ps" on all pages and
1152 ;; image "~/images/EPS-image2.ps" on page 5 and from page 11 to page 17, we
1153 ;; specify:
1154 ;;
1155 ;; (setq ps-print-background-image
1156 ;; '(("~/images/EPS-image1.ps"
1157 ;; "LeftMargin" "BottomMargin") ; X and Y position (lower left corner)
1158 ;; ("~/images/EPS-image2.ps"
1159 ;; "LeftMargin" "BottomMargin PrintHeight 2 div add" ; X and Y pos.
1160 ;; ; (upper left corner)
1161 ;; nil nil nil
1162 ;; 5 (11 . 17)) ; page list
1163 ;; ))
1164 ;;
1165 ;; If it is not possible to read (or does not exist) an image file, that file
1166 ;; is ignored.
1167 ;;
1168 ;; The printing order is:
1169 ;;
1170 ;; 1. Print background color
1171 ;; 2. Print zebra stripes
1172 ;; 3. Print background texts that it should be on all pages
1173 ;; 4. Print background images that it should be on all pages
1174 ;; 5. Print background texts only for current page (if any)
1175 ;; 6. Print background images only for current page (if any)
1176 ;; 7. Print header
1177 ;; 8. Print buffer text (with faces, if specified) and line number
1178 ;;
1179 ;;
1180 ;; Utilities
1181 ;; ---------
1182 ;;
1183 ;; Some tools are provided to help you customize your font setup.
1184 ;;
1185 ;; `ps-setup' returns (some part of) the current setup.
1186 ;;
1187 ;; To avoid wrapping too many lines, you may want to adjust the left and right
1188 ;; margins and the font size. On UN*X systems, do:
1189 ;; pr -t file | awk '{printf "%3d %s\n", length($0), $0}' | sort -r | head
1190 ;; to determine the longest lines of your file.
1191 ;; Then, the command `ps-line-lengths' will give you the correspondence between
1192 ;; a line length (number of characters) and the maximum font size which doesn't
1193 ;; wrap such a line with the current ps-print setup.
1194 ;;
1195 ;; The commands `ps-nb-pages-buffer' and `ps-nb-pages-region' display the
1196 ;; correspondence between a number of pages and the maximum font size which
1197 ;; allow the number of lines of the current buffer or of its current region to
1198 ;; fit in this number of pages.
1199 ;;
1200 ;; NOTE: line folding is not taken into account in this process and could
1201 ;; change the results.
1202 ;;
1203 ;; The command `ps-print-customize' activates a customization buffer for
1204 ;; ps-print options.
1205 ;;
1206 ;;
1207 ;; New since version 1.5
1208 ;; ---------------------
1209 ;;
1210 ;; Color output capability.
1211 ;; Automatic detection of font attributes (bold, italic).
1212 ;; Configurable headers with page numbers.
1213 ;; Slightly faster.
1214 ;; Support for different paper sizes.
1215 ;; Better conformance to PostScript Document Structure Conventions.
1216 ;;
1217 ;;
1218 ;; New since version 2.8
1219 ;; ---------------------
1220 ;;
1221 ;; [vinicius] Vinicius Jose Latorre <viniciusjl@ig.com.br>
1222 ;;
1223 ;; 2007-10-27
1224 ;; `ps-fg-validate-p', `ps-fg-list'
1225 ;;
1226 ;; 2004-02-29
1227 ;; `ps-time-stamp-yyyy-mm-dd', `ps-time-stamp-iso8601'
1228 ;;
1229 ;; 2001-06-19
1230 ;; `ps-time-stamp-locale-default'
1231 ;;
1232 ;; 2001-05-30
1233 ;; Handle before-string and after-string overlay properties.
1234 ;;
1235 ;; 2001-04-07
1236 ;; `ps-line-number-color', `ps-print-footer', `ps-footer-offset',
1237 ;; `ps-print-footer-frame', `ps-footer-font-family',
1238 ;; `ps-footer-font-size', `ps-footer-line-pad', `ps-footer-lines',
1239 ;; `ps-left-footer', `ps-right-footer', `ps-footer-frame-alist' and
1240 ;; `ps-header-frame-alist'.
1241 ;;
1242 ;; 2001-03-28
1243 ;; `ps-line-spacing', `ps-paragraph-spacing', `ps-paragraph-regexp',
1244 ;; `ps-begin-cut-regexp' and `ps-end-cut-regexp'.
1245 ;;
1246 ;; 2000-11-22
1247 ;; `ps-line-number-font', `ps-line-number-font-size' and
1248 ;; `ps-end-with-control-d'.
1249 ;;
1250 ;; 2000-08-21
1251 ;; `ps-even-or-odd-pages'
1252 ;;
1253 ;; 2000-06-17
1254 ;; `ps-manual-feed', `ps-warn-paper-type', `ps-print-upside-down',
1255 ;; `ps-selected-pages', `ps-last-selected-pages',
1256 ;; `ps-restore-selected-pages', `ps-switch-header',
1257 ;; `ps-line-number-step', `ps-line-number-start',
1258 ;; `ps-zebra-stripe-follow' and `ps-use-face-background'.
1259 ;;
1260 ;; 2000-03-10
1261 ;; PostScript error handler.
1262 ;; `ps-user-defined-prologue' and `ps-error-handler-message'.
1263 ;;
1264 ;; 1999-12-11
1265 ;; `ps-print-customize'.
1266 ;;
1267 ;; 1999-07-03
1268 ;; Better customization.
1269 ;; `ps-banner-page-when-duplexing' and `ps-zebra-color'.
1270 ;;
1271 ;; 1999-05-13
1272 ;; N-up printing.
1273 ;; Hook: `ps-print-begin-sheet-hook'.
1274 ;;
1275 ;; [kenichi] 1999-05-09 Ken'ichi Handa <handa@m17n.org>
1276 ;;
1277 ;; `ps-print-region-function'
1278 ;;
1279 ;; [vinicius] Vinicius Jose Latorre <viniciusjl@ig.com.br>
1280 ;;
1281 ;; 1999-03-01
1282 ;; PostScript tumble and setpagedevice.
1283 ;;
1284 ;; 1998-09-22
1285 ;; PostScript prologue header comment insertion.
1286 ;; Skip invisible text better.
1287 ;;
1288 ;; [kenichi] 1998-08-19 Ken'ichi Handa <handa@m17n.org>
1289 ;;
1290 ;; Multi-byte buffer handling.
1291 ;;
1292 ;; [vinicius] Vinicius Jose Latorre <viniciusjl@ig.com.br>
1293 ;;
1294 ;; 1998-03-06
1295 ;; Skip invisible text.
1296 ;;
1297 ;; 1997-11-30
1298 ;; Hooks: `ps-print-hook', `ps-print-begin-page-hook' and
1299 ;; `ps-print-begin-column-hook'.
1300 ;; Put one header per page over the columns.
1301 ;; Better database font management.
1302 ;; Better control characters handling.
1303 ;;
1304 ;; 1997-11-21
1305 ;; Dynamic evaluation at print time of `ps-lpr-switches'.
1306 ;; Handle control characters.
1307 ;; Face remapping.
1308 ;; New face attributes.
1309 ;; Line number.
1310 ;; Zebra stripes.
1311 ;; Text and/or image on background.
1312 ;;
1313 ;; [jack] 1996-05-17 Jacques Duthen <duthen@cegelec-red.fr>
1314 ;;
1315 ;; Font family and float size for text and header.
1316 ;; Landscape mode.
1317 ;; Multiple columns.
1318 ;; Tools for page setup.
1319 ;;
1320 ;;
1321 ;; Known bugs and limitations of ps-print
1322 ;; --------------------------------------
1323 ;;
1324 ;; Although color printing will work in XEmacs 19.12, it doesn't work well; in
1325 ;; particular, bold or italic fonts don't print in the right background color.
1326 ;;
1327 ;; Invisible properties aren't correctly ignored in XEmacs 19.12.
1328 ;;
1329 ;; Automatic font-attribute detection doesn't work well, especially with
1330 ;; hilit19 and older versions of get-create-face. Users having problems with
1331 ;; auto-font detection should use the lists `ps-italic-faces', `ps-bold-faces'
1332 ;; and `ps-underlined-faces' and/or turn off automatic detection by setting
1333 ;; `ps-auto-font-detect' to nil.
1334 ;;
1335 ;; Automatic font-attribute detection doesn't work with XEmacs 19.12 in tty
1336 ;; mode; use the lists `ps-italic-faces', `ps-bold-faces' and
1337 ;; `ps-underlined-faces' instead.
1338 ;;
1339 ;; Still too slow; could use some hand-optimization.
1340 ;;
1341 ;; Default background color isn't working.
1342 ;;
1343 ;; Faces are always treated as opaque.
1344 ;;
1345 ;; Epoch, Lucid and Emacs 21 not supported. At all.
1346 ;;
1347 ;; Fixed-pitch fonts work better for line folding, but are not required.
1348 ;;
1349 ;; `ps-nb-pages-buffer' and `ps-nb-pages-region' don't take care of folding
1350 ;; lines.
1351 ;;
1352 ;;
1353 ;; Things to change
1354 ;; ----------------
1355 ;;
1356 ;; Avoid page break inside a paragraph.
1357 ;;
1358 ;; Add `ps-non-bold-faces' and `ps-non-italic-faces' (should be easy).
1359 ;;
1360 ;; Improve the memory management for big files (hard?).
1361 ;;
1362 ;; `ps-nb-pages-buffer' and `ps-nb-pages-region' should take care of folding
1363 ;; lines.
1364 ;;
1365 ;;
1366 ;; Acknowledgments
1367 ;; ---------------
1368 ;;
1369 ;; Thanks to Michael Piotrowski <mxp@dynalabs.de> for improving the DSC
1370 ;; compliance of the generated PostScript.
1371 ;;
1372 ;; Thanks to Adam Doppelt <adoppelt@avogadro.com> for face mapping suggestion
1373 ;; for black/white PostScript printers.
1374 ;;
1375 ;; Thanks to Toni Ronkko <tronkko@hytti.uku.fi> for line and paragraph spacing,
1376 ;; region to cut out when printing and footer suggestions.
1377 ;;
1378 ;; Thanks to Pavel Janik ml <Pavel@Janik.cz> for documentation correction.
1379 ;;
1380 ;; Thanks to Corinne Ilvedson <cilvedson@draper.com> for line number font size
1381 ;; suggestion.
1382 ;;
1383 ;; Thanks to Gord Wait <Gord_Wait@spectrumsignal.com> for
1384 ;; `ps-user-defined-prologue' example setting for HP PostScript printer.
1385 ;;
1386 ;; Thanks to Paul Furnanz <pfurnanz@synopsys.com> for XEmacs compatibility
1387 ;; suggestion for `ps-postscript-code-directory' variable.
1388 ;;
1389 ;; Thanks to David X Callaway <dxc@xprt.net> for helping debugging PostScript
1390 ;; level 1 compatibility.
1391 ;;
1392 ;; Thanks to Colin Marquardt <colin.marquardt@usa.alcatel.com> for:
1393 ;; - upside-down, line number step, line number start and zebra stripe
1394 ;; follow suggestions.
1395 ;; - `ps-time-stamp-yyyy-mm-dd' and `ps-time-stamp-iso8601' suggestion.
1396 ;; - and for XEmacs beta-tests.
1397 ;;
1398 ;; Thanks to Klaus Berndl <klaus.berndl@sdm.de> for user defined PostScript
1399 ;; prologue code suggestion, for odd/even printing suggestion and for
1400 ;; `ps-prologue-file' enhancement.
1401 ;;
1402 ;; Thanks to Ken'ichi Handa <handa@m17n.org> for multi-byte buffer handling.
1403 ;;
1404 ;; Thanks to Matthew O Persico <Matthew.Persico@lazard.com> for line number on
1405 ;; empty columns.
1406 ;;
1407 ;; Thanks to Theodore Jump <tjump@cais.com> for adjust PostScript code order on
1408 ;; last page.
1409 ;;
1410 ;; Thanks to Roland Ducournau <ducour@lirmm.fr> for
1411 ;; `ps-print-control-characters' variable documentation.
1412 ;;
1413 ;; Thanks to Marcus G Daniels <marcus@cathcart.sysc.pdx.edu> for a better
1414 ;; database font management.
1415 ;;
1416 ;; Thanks to Martin Boyer <gamin@videotron.ca> for some ideas on putting one
1417 ;; header per page over the columns and correct line numbers when printing a
1418 ;; region.
1419 ;;
1420 ;; Thanks to Steven L Baur <steve@miranova.com> for dynamic evaluation at
1421 ;; print time of `ps-lpr-switches'.
1422 ;;
1423 ;; Thanks to Kevin Rodgers <kevinr@ihs.com> for handling control characters
1424 ;; (his code was severely modified, but the main idea was kept).
1425 ;;
1426 ;; Thanks to some suggestions on:
1427 ;; * Face color map: Marco Melgazzi <marco@techie.com>
1428 ;; * XEmacs compatibility: William J. Henney <will@astrosmo.unam.mx>
1429 ;; * Check `ps-paper-type': Sudhakar Frederick <sfrederi@asc.corp.mot.com>
1430 ;;
1431 ;; Thanks to Jacques Duthen <duthen@cegelec-red.fr> (Jack) for version 3.4 I
1432 ;; started from. [vinicius]
1433 ;;
1434 ;; Thanks to Jim Thompson <?@?> for the 2.8 version I started from. [jack]
1435 ;;
1436 ;; Thanks to Kevin Rodgers <kevinr@ihs.com> for adding support for color and
1437 ;; the invisible property.
1438 ;;
1439 ;; Thanks to Avishai Yacobi, avishaiy@mcil.comm.mot.com, for writing the
1440 ;; initial port to Emacs 19. His code is no longer part of ps-print, but his
1441 ;; work is still appreciated.
1442 ;;
1443 ;; Thanks to Remi Houdaille and Michel Train <michel@metasoft.fdn.org> for
1444 ;; adding underline support. Their code also is no longer part of ps-print,
1445 ;; but their efforts are not forgotten.
1446 ;;
1447 ;; Thanks also to all of you who mailed code to add features to ps-print;
1448 ;; although I didn't use your code, I still appreciate your sharing it with me.
1449 ;;
1450 ;; Thanks to all who mailed comments, encouragement, and criticism.
1451 ;; Thanks also to all who responded to my survey; I had too many responses to
1452 ;; reply to them all, but I greatly appreciate your interest.
1453 ;;
1454 ;; Jim
1455 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1456
1457 ;;; Code:
1458
1459
1460 (require 'lpr)
1461
1462 (or (featurep 'lisp-float-type)
1463 (error "`ps-print' requires floating point support"))
1464
1465 (if (featurep 'xemacs)
1466 ()
1467 (unless (and (boundp 'emacs-major-version)
1468 (>= emacs-major-version 22))
1469 (error "`ps-print' only supports Emacs 22 and higher")))
1470
1471
1472 ;; GNU Emacs
1473 (or (fboundp 'line-beginning-position)
1474 (defun line-beginning-position (&optional n)
1475 (save-excursion
1476 (and n (/= n 1) (forward-line (1- n)))
1477 (beginning-of-line)
1478 (point))))
1479
1480
1481 ;; to avoid compilation gripes
1482
1483 ;; GNU Emacs
1484 (defalias 'ps-e-find-composition (if (fboundp 'find-composition)
1485 'find-composition
1486 'ignore))
1487
1488
1489 (defconst ps-windows-system
1490 (memq system-type '(emx win32 w32 mswindows ms-dos windows-nt)))
1491 (defconst ps-lp-system
1492 (memq system-type '(usg-unix-v dgux hpux irix)))
1493
1494
1495 (defun ps-xemacs-color-name (color)
1496 (when (featurep 'xemacs)
1497 (if (color-specifier-p color)
1498 (color-name color)
1499 color)))
1500
1501 (defalias 'ps-frame-parameter
1502 (if (fboundp 'frame-parameter) 'frame-parameter 'frame-property))
1503
1504 (defalias 'ps-mark-active-p
1505 (if (fboundp 'region-active-p)
1506 'region-active-p ; XEmacs
1507 (defvar mark-active) ; To shup up XEmacs's byte compiler.
1508 (lambda () mark-active))) ; Emacs
1509
1510 (defun ps-face-foreground-name (face)
1511 (if (featurep 'xemacs)
1512 (ps-xemacs-color-name (face-foreground face))
1513 (face-foreground face nil t)))
1514
1515 (defun ps-face-background-name (face)
1516 (if (featurep 'xemacs)
1517 (ps-xemacs-color-name (face-background face))
1518 (face-background face nil t)))
1519
1520 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1521 ;; User Variables:
1522
1523
1524 ;;; Interface to the command system
1525
1526 (defgroup postscript nil
1527 "PostScript Group."
1528 :tag "PostScript"
1529 :version "20"
1530 :group 'emacs)
1531
1532 (defgroup ps-print nil
1533 "PostScript generator for Emacs."
1534 :link '(emacs-library-link :tag "Source Lisp File" "ps-print.el")
1535 :prefix "ps-"
1536 :version "20"
1537 :group 'wp
1538 :group 'postscript)
1539
1540 (defgroup ps-print-horizontal nil
1541 "Horizontal page layout."
1542 :prefix "ps-"
1543 :tag "Horizontal"
1544 :version "20"
1545 :group 'ps-print)
1546
1547 (defgroup ps-print-vertical nil
1548 "Vertical page layout."
1549 :prefix "ps-"
1550 :tag "Vertical"
1551 :version "20"
1552 :group 'ps-print)
1553
1554 (defgroup ps-print-headers nil
1555 "Headers & footers layout."
1556 :prefix "ps-"
1557 :tag "Header & Footer"
1558 :version "20"
1559 :group 'ps-print)
1560
1561 (defgroup ps-print-font nil
1562 "Fonts customization."
1563 :prefix "ps-"
1564 :tag "Font"
1565 :version "20"
1566 :group 'ps-print)
1567
1568 (defgroup ps-print-color nil
1569 "Color customization."
1570 :prefix "ps-"
1571 :tag "Color"
1572 :version "20"
1573 :group 'ps-print)
1574
1575 (defgroup ps-print-face nil
1576 "Faces customization."
1577 :prefix "ps-"
1578 :tag "PS Faces"
1579 :version "20"
1580 :group 'ps-print
1581 :group 'faces)
1582
1583 (defgroup ps-print-n-up nil
1584 "N-up customization."
1585 :prefix "ps-"
1586 :tag "N-Up"
1587 :version "20"
1588 :group 'ps-print)
1589
1590 (defgroup ps-print-zebra nil
1591 "Zebra customization."
1592 :prefix "ps-"
1593 :tag "Zebra"
1594 :version "20"
1595 :group 'ps-print)
1596
1597 (defgroup ps-print-background nil
1598 "Background customization."
1599 :prefix "ps-"
1600 :tag "Background"
1601 :version "20"
1602 :group 'ps-print)
1603
1604 (defgroup ps-print-printer '((lpr custom-group))
1605 "Printer customization."
1606 :prefix "ps-"
1607 :tag "Printer"
1608 :version "20"
1609 :group 'ps-print)
1610
1611 (defgroup ps-print-page nil
1612 "Page customization."
1613 :prefix "ps-"
1614 :tag "Page"
1615 :version "20"
1616 :group 'ps-print)
1617
1618 (defgroup ps-print-miscellany nil
1619 "Miscellany customization."
1620 :prefix "ps-"
1621 :tag "Miscellany"
1622 :version "20"
1623 :group 'ps-print)
1624
1625
1626 (defcustom ps-error-handler-message 'paper
1627 "*Specify where the error handler message should be sent.
1628
1629 Valid values are:
1630
1631 `none' catch the error and *DON'T* send any message.
1632
1633 `paper' catch the error and print on paper the error message.
1634
1635 `system' catch the error and send back the error message to
1636 printing system. This is useful only if printing system
1637 send back an email reporting the error, or if there is
1638 some other alternative way to report back the error from
1639 the system to you.
1640
1641 `paper-and-system' catch the error, print on paper the error message and
1642 send back the error message to printing system.
1643
1644 Any other value is treated as `paper'."
1645 :type '(choice :menu-tag "Error Handler Message"
1646 :tag "Error Handler Message"
1647 (const none) (const paper)
1648 (const system) (const paper-and-system))
1649 :version "20"
1650 :group 'ps-print-miscellany)
1651
1652 (defcustom ps-user-defined-prologue nil
1653 "*User defined PostScript prologue code inserted before all prologue code.
1654
1655 `ps-user-defined-prologue' may be a string or a symbol function which returns a
1656 string. Note that this string is inserted after `ps-adobe-tag' and PostScript
1657 prologue comments, and before ps-print PostScript prologue code section. That
1658 is, this string is inserted after error handler initialization and before
1659 ps-print settings.
1660
1661 It's strongly recommended only insert PostScript code and/or comments specific
1662 for your printing system particularities. For example, some special
1663 initialization that only your printing system needs.
1664
1665 Do not insert code for duplex printing, n-up printing or error handler,
1666 ps-print handles this in a suitable way.
1667
1668 For more information about PostScript, see:
1669 PostScript Language Reference Manual (2nd edition)
1670 Adobe Systems Incorporated
1671
1672 As an example for `ps-user-defined-prologue' setting:
1673
1674 ;; Setting for HP PostScript printer
1675 (setq ps-user-defined-prologue
1676 (concat \"<</DeferredMediaSelection true /PageSize [612 792] \"
1677 \"/MediaPosition 2 /MediaType (Plain)>> setpagedevice\"))"
1678 :type '(choice :menu-tag "User Defined Prologue"
1679 :tag "User Defined Prologue"
1680 (const :tag "none" nil) string symbol)
1681 :version "20"
1682 :group 'ps-print-miscellany)
1683
1684 (defcustom ps-print-prologue-header nil
1685 "*PostScript prologue header comments besides that ps-print generates.
1686
1687 `ps-print-prologue-header' may be a string or a symbol function which returns a
1688 string. Note that this string is inserted on PostScript prologue header
1689 section which is used to define some document characteristic through PostScript
1690 special comments, like \"%%Requirements: jog\\n\".
1691
1692 ps-print always inserts the %%Requirements: comment, so if you need to insert
1693 more requirements put them first in `ps-print-prologue-header' using the
1694 \"%%+\" comment. For example, if you need to set numcopies to 3 and jog on
1695 requirements and set %%LanguageLevel: to 2, do:
1696
1697 (setq ps-print-prologue-header
1698 \"%%+ numcopies(3) jog\\n%%LanguageLevel: 2\\n\")
1699
1700 The duplex requirement is inserted by ps-print (see `ps-spool-duplex').
1701
1702 Do not forget to terminate the string with \"\\n\".
1703
1704 For more information about PostScript document comments, see:
1705 PostScript Language Reference Manual (2nd edition)
1706 Adobe Systems Incorporated
1707 Appendix G: Document Structuring Conventions -- Version 3.0"
1708 :type '(choice :menu-tag "Prologue Header"
1709 :tag "Prologue Header"
1710 (const :tag "none" nil) string symbol)
1711 :version "20"
1712 :group 'ps-print-miscellany)
1713
1714 (defcustom ps-printer-name (and (boundp 'printer-name)
1715 (symbol-value 'printer-name))
1716 "*The name of a local printer for printing PostScript files.
1717
1718 On Unix-like systems, a string value should be a name understood by lpr's -P
1719 option; a value of nil means use the value of `printer-name' instead.
1720
1721 On MS-DOS and MS-Windows systems, a string value is taken as the name of the
1722 printer device or port to which PostScript files are written, provided
1723 `ps-lpr-command' is \"\". By default it is the same as `printer-name'; typical
1724 non-default settings would be \"LPT1\" to \"LPT3\" for parallel printers, or
1725 \"COM1\" to \"COM4\" or \"AUX\" for serial printers, or \"\\\\hostname\\printer\"
1726 for a shared network printer. You can also set it to a name of a file, in
1727 which case the output gets appended to that file. \(Note that `ps-print'
1728 package already has facilities for printing to a file, so you might as well use
1729 them instead of changing the setting of this variable.\) If you want to
1730 silently discard the printed output, set this to \"NUL\".
1731
1732 Set to t, if the utility given by `ps-lpr-command' needs an empty printer name.
1733
1734 Any other value is treated as t, that is, an empty printer name.
1735
1736 See also `ps-printer-name-option' for documentation."
1737 :type '(choice :menu-tag "Printer Name"
1738 :tag "Printer Name"
1739 (const :tag "Same as printer-name" nil)
1740 (const :tag "No Printer Name" t)
1741 (file :tag "Print to file")
1742 (string :tag "Pipe to ps-lpr-command"))
1743 :version "20"
1744 :group 'ps-print-printer)
1745
1746 (defcustom ps-printer-name-option
1747 (cond (ps-windows-system
1748 "/D:")
1749 (ps-lp-system
1750 "-d")
1751 (t
1752 "-P" ))
1753 "*Option for `ps-printer-name' variable (see it).
1754
1755 On Unix-like systems, if `lpr' is in use, this should be the string
1756 \"-P\"; if `lp' is in use, this should be the string \"-d\".
1757
1758 On MS-DOS and MS-Windows systems, if `print' is in use, this should be
1759 the string \"/D:\".
1760
1761 For any other printing utility, see its documentation.
1762
1763 Set this to \"\" or nil, if the utility given by `ps-lpr-command'
1764 needs an empty printer name option--that is, pass the printer name
1765 with no special option preceding it.
1766
1767 Any value that is not a string is treated as nil.
1768
1769 This variable is used only when `ps-printer-name' is a non-empty string."
1770 :type '(choice :menu-tag "Printer Name Option"
1771 :tag "Printer Name Option"
1772 (const :tag "None" nil)
1773 (string :tag "Option"))
1774 :version "21.1"
1775 :group 'ps-print-printer)
1776
1777 (defcustom ps-lpr-command lpr-command
1778 "*Name of program for printing a PostScript file.
1779
1780 On MS-DOS and MS-Windows systems, if the value is an empty string then Emacs
1781 will write directly to the printer port named by `ps-printer-name'. The
1782 programs `print' and `nprint' (the standard print programs on Windows NT and
1783 Novell Netware respectively) are handled specially, using `ps-printer-name' as
1784 the destination for output; any other program is treated like `lpr' except that
1785 an explicit filename is given as the last argument."
1786 :type 'string
1787 :version "20"
1788 :group 'ps-print-printer)
1789
1790 (defcustom ps-lpr-switches lpr-switches
1791 "*A list of extra switches to pass to `ps-lpr-command'."
1792 :type '(repeat :tag "PostScript lpr Switches"
1793 (choice :menu-tag "PostScript lpr Switch"
1794 :tag "PostScript lpr Switch"
1795 string symbol (repeat sexp)))
1796 :version "20"
1797 :group 'ps-print-printer)
1798
1799 (defcustom ps-print-region-function nil
1800 "*Specify a function to print the region on a PostScript printer.
1801 See definition of `call-process-region' for calling conventions. The fourth
1802 and the sixth arguments are both nil."
1803 :type '(choice (const nil) function)
1804 :version "20"
1805 :group 'ps-print-printer)
1806
1807 (defcustom ps-manual-feed nil
1808 "*Non-nil means the printer will manually feed paper.
1809
1810 If it's nil, automatic feeding takes place."
1811 :type 'boolean
1812 :version "20"
1813 :group 'ps-print-printer)
1814
1815 (defcustom ps-end-with-control-d (and ps-windows-system t)
1816 "*Non-nil means insert C-d at end of PostScript file generated."
1817 :version "21.1"
1818 :type 'boolean
1819 :version "20"
1820 :group 'ps-print-printer)
1821
1822 ;;; Page layout
1823
1824 ;; All page dimensions are in PostScript points.
1825 ;; 1 inch == 2.54 cm == 72 points
1826 ;; 1 cm == (/ 1 2.54) inch == (/ 72 2.54) points
1827
1828 ;; Letter 8.5 inch x 11.0 inch
1829 ;; Legal 8.5 inch x 14.0 inch
1830 ;; A4 8.26 inch x 11.69 inch = 21.0 cm x 29.7 cm
1831
1832 ;; LetterSmall 7.68 inch x 10.16 inch
1833 ;; Tabloid 11.0 inch x 17.0 inch
1834 ;; Ledger 17.0 inch x 11.0 inch
1835 ;; Statement 5.5 inch x 8.5 inch
1836 ;; Executive 7.5 inch x 10.0 inch
1837 ;; A3 11.69 inch x 16.5 inch = 29.7 cm x 42.0 cm
1838 ;; A4Small 7.47 inch x 10.85 inch
1839 ;; B4 10.125 inch x 14.33 inch
1840 ;; B5 7.16 inch x 10.125 inch
1841
1842 ;;;###autoload
1843 (defcustom ps-page-dimensions-database
1844 (list (list 'a4 (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4")
1845 (list 'a3 (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3")
1846 (list 'letter (* 72 8.5) (* 72 11.0) "Letter")
1847 (list 'legal (* 72 8.5) (* 72 14.0) "Legal")
1848 (list 'letter-small (* 72 7.68) (* 72 10.16) "LetterSmall")
1849 (list 'tabloid (* 72 11.0) (* 72 17.0) "Tabloid")
1850 (list 'ledger (* 72 17.0) (* 72 11.0) "Ledger")
1851 (list 'statement (* 72 5.5) (* 72 8.5) "Statement")
1852 (list 'executive (* 72 7.5) (* 72 10.0) "Executive")
1853 (list 'a4small (* 72 7.47) (* 72 10.85) "A4Small")
1854 (list 'b4 (* 72 10.125) (* 72 14.33) "B4")
1855 (list 'b5 (* 72 7.16) (* 72 10.125) "B5"))
1856 "*List associating a symbolic paper type to its width, height and doc media.
1857 See `ps-paper-type'."
1858 :type '(repeat (list :tag "Paper Type"
1859 (symbol :tag "Name")
1860 (number :tag "Width")
1861 (number :tag "Height")
1862 (string :tag "Media")))
1863 :version "20"
1864 :group 'ps-print-page)
1865
1866 ;;;###autoload
1867 (defcustom ps-paper-type 'letter
1868 "*Specify the size of paper to format for.
1869 Should be one of the paper types defined in `ps-page-dimensions-database', for
1870 example `letter', `legal' or `a4'."
1871 :type '(symbol :validate (lambda (wid)
1872 (if (assq (widget-value wid)
1873 ps-page-dimensions-database)
1874 nil
1875 (widget-put wid :error "Unknown paper size")
1876 wid)))
1877 :version "20"
1878 :group 'ps-print-page)
1879
1880 (defcustom ps-warn-paper-type t
1881 "*Non-nil means give an error if paper size is not equal to `ps-paper-type'.
1882
1883 It's used when `ps-spool-config' is set to `setpagedevice'."
1884 :type 'boolean
1885 :version "20"
1886 :group 'ps-print-page)
1887
1888 (defcustom ps-landscape-mode nil
1889 "*Non-nil means print in landscape mode."
1890 :type 'boolean
1891 :version "20"
1892 :group 'ps-print-page)
1893
1894 (defcustom ps-print-upside-down nil
1895 "*Non-nil means print upside-down (that is, rotated by 180 degrees)."
1896 :type 'boolean
1897 :version "21.1"
1898 :group 'ps-print-page)
1899
1900 (defcustom ps-selected-pages nil
1901 "*Specify which pages to print.
1902
1903 If nil, print all pages.
1904
1905 If a list, the lists element may be an integer or a cons cell (FROM . TO)
1906 designating FROM page to TO page; any invalid element is ignored, that is, an
1907 integer lesser than one or if FROM is greater than TO.
1908
1909 Otherwise, it's treated as nil.
1910
1911 After ps-print processing `ps-selected-pages' is set to nil. But the
1912 latest `ps-selected-pages' is saved in `ps-last-selected-pages' (which
1913 see). So you can restore the latest selected pages by using
1914 `ps-last-selected-pages' or with the `ps-restore-selected-pages'
1915 command (which see).
1916
1917 See also `ps-even-or-odd-pages'."
1918 :type '(repeat :tag "Selected Pages"
1919 (radio :tag "Page"
1920 (integer :tag "Number")
1921 (cons :tag "Range"
1922 (integer :tag "From")
1923 (integer :tag "To"))))
1924 :version "20"
1925 :group 'ps-print-page)
1926
1927 (defcustom ps-even-or-odd-pages nil
1928 "*Specify if it prints even/odd pages.
1929
1930 Valid values are:
1931
1932 nil print all pages.
1933
1934 `even-page' print only even pages.
1935
1936 `odd-page' print only odd pages.
1937
1938 `even-sheet' print only even sheets.
1939 That is, if `ps-n-up-printing' is 1, it behaves as `even-page';
1940 but for values greater than 1, it'll print only the even sheet
1941 of paper.
1942
1943 `odd-sheet' print only odd sheets.
1944 That is, if `ps-n-up-printing' is 1, it behaves as `odd-page';
1945 but for values greater than 1, it'll print only the odd sheet
1946 of paper.
1947
1948 Any other value is treated as nil.
1949
1950 If you set `ps-selected-pages' (see it for documentation), first the pages are
1951 filtered by `ps-selected-pages' and then by `ps-even-or-odd-pages'. For
1952 example, if we have:
1953
1954 (setq ps-selected-pages '(1 4 (6 . 10) (12 . 16) 20))
1955
1956 Combining with `ps-even-or-odd-pages' and `ps-n-up-printing', we have:
1957
1958 `ps-n-up-printing' = 1:
1959 `ps-even-or-odd-pages' PAGES PRINTED
1960 nil 1, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 20
1961 even-page 4, 6, 8, 10, 12, 14, 16, 20
1962 odd-page 1, 7, 9, 13, 15
1963 even-sheet 4, 6, 8, 10, 12, 14, 16, 20
1964 odd-sheet 1, 7, 9, 13, 15
1965
1966 `ps-n-up-printing' = 2:
1967 `ps-even-or-odd-pages' PAGES PRINTED
1968 nil 1/4, 6/7, 8/9, 10/12, 13/14, 15/16, 20
1969 even-page 4/6, 8/10, 12/14, 16/20
1970 odd-page 1/7, 9/13, 15
1971 even-sheet 6/7, 10/12, 15/16
1972 odd-sheet 1/4, 8/9, 13/14, 20
1973
1974 So even-page/odd-page are about page parity and even-sheet/odd-sheet are about
1975 sheet parity."
1976 :type '(choice :menu-tag "Print Even/Odd Pages"
1977 :tag "Print Even/Odd Pages"
1978 (const :tag "All Pages" nil)
1979 (const :tag "Only Even Pages" even-page)
1980 (const :tag "Only Odd Pages" odd-page)
1981 (const :tag "Only Even Sheets" even-sheet)
1982 (const :tag "Only Odd Sheets" odd-sheet))
1983 :version "20"
1984 :group 'ps-print-page)
1985
1986 (defcustom ps-print-control-characters 'control-8-bit
1987 "*Specify the printable form for control and 8-bit characters.
1988 That is, instead of sending, for example, a ^D (\\004) to printer,
1989 it is sent the string \"^D\".
1990
1991 Valid values are:
1992
1993 `8-bit' This is the value to use when you want an ASCII encoding of
1994 any control or non-ASCII character. Control characters are
1995 encoded as \"^D\", and non-ASCII characters have an
1996 octal encoding.
1997
1998 `control-8-bit' This is the value to use when you want an ASCII encoding of
1999 any control character, whether it is 7 or 8-bit.
2000 European 8-bits accented characters are printed according
2001 the current font.
2002
2003 `control' Only ASCII control characters have an ASCII encoding.
2004 European 8-bits accented characters are printed according
2005 the current font.
2006
2007 nil No ASCII encoding. Any character is printed according the
2008 current font.
2009
2010 Any other value is treated as nil."
2011 :type '(choice :menu-tag "Control Char"
2012 :tag "Control Char"
2013 (const 8-bit) (const control-8-bit)
2014 (const control) (const :tag "nil" nil))
2015 :version "20"
2016 :group 'ps-print-miscellany)
2017
2018 (defcustom ps-n-up-printing 1
2019 "*Specify the number of pages per sheet paper."
2020 :type '(integer
2021 :tag "N Up Printing"
2022 :validate
2023 (lambda (wid)
2024 (if (and (< 0 (widget-value wid))
2025 (<= (widget-value wid) 100))
2026 nil
2027 (widget-put
2028 wid :error
2029 "Number of pages per sheet paper must be between 1 and 100.")
2030 wid)))
2031 :version "20"
2032 :group 'ps-print-n-up)
2033
2034 (defcustom ps-n-up-margin (/ (* 72 1.0) 2.54) ; 1 cm
2035 "*Specify the margin in points between the sheet border and n-up printing."
2036 :type 'number
2037 :version "20"
2038 :group 'ps-print-n-up)
2039
2040 (defcustom ps-n-up-border-p t
2041 "*Non-nil means a border is drawn around each page."
2042 :type 'boolean
2043 :version "20"
2044 :group 'ps-print-n-up)
2045
2046 (defcustom ps-n-up-filling 'left-top
2047 "*Specify how page matrix is filled on each sheet of paper.
2048
2049 Following are the valid values for `ps-n-up-filling' with a filling example
2050 using a 3x4 page matrix:
2051
2052 `left-top' 1 2 3 4 `left-bottom' 9 10 11 12
2053 5 6 7 8 5 6 7 8
2054 9 10 11 12 1 2 3 4
2055
2056 `right-top' 4 3 2 1 `right-bottom' 12 11 10 9
2057 8 7 6 5 8 7 6 5
2058 12 11 10 9 4 3 2 1
2059
2060 `top-left' 1 4 7 10 `bottom-left' 3 6 9 12
2061 2 5 8 11 2 5 8 11
2062 3 6 9 12 1 4 7 10
2063
2064 `top-right' 10 7 4 1 `bottom-right' 12 9 6 3
2065 11 8 5 2 11 8 5 2
2066 12 9 6 3 10 7 4 1
2067
2068 Any other value is treated as `left-top'."
2069 :type '(choice :menu-tag "N-Up Filling"
2070 :tag "N-Up Filling"
2071 (const left-top) (const left-bottom)
2072 (const right-top) (const right-bottom)
2073 (const top-left) (const bottom-left)
2074 (const top-right) (const bottom-right))
2075 :version "20"
2076 :group 'ps-print-n-up)
2077
2078 (defcustom ps-number-of-columns (if ps-landscape-mode 2 1)
2079 "*Specify the number of columns."
2080 :type 'number
2081 :version "20"
2082 :group 'ps-print-miscellany)
2083
2084 (defcustom ps-zebra-stripes nil
2085 "*Non-nil means print zebra stripes.
2086 See also documentation for `ps-zebra-stripe-height' and `ps-zebra-color'."
2087 :type 'boolean
2088 :version "20"
2089 :group 'ps-print-zebra)
2090
2091 (defcustom ps-zebra-stripe-height 3
2092 "*Number of zebra stripe lines.
2093 See also documentation for `ps-zebra-stripes' and `ps-zebra-color'."
2094 :type 'number
2095 :version "20"
2096 :group 'ps-print-zebra)
2097
2098 (defcustom ps-zebra-color 0.95
2099 "*Zebra stripe gray scale or RGB color.
2100 See also documentation for `ps-zebra-stripes' and `ps-zebra-stripe-height'."
2101 :type '(choice :menu-tag "Zebra Gray/Color"
2102 :tag "Zebra Gray/Color"
2103 (number :tag "Gray Scale" :value 0.95)
2104 (string :tag "Color Name" :value "gray95")
2105 (list :tag "RGB Color" :value (0.95 0.95 0.95)
2106 (number :tag "Red")
2107 (number :tag "Green")
2108 (number :tag "Blue")))
2109 :version "20"
2110 :group 'ps-print-zebra)
2111
2112 (defcustom ps-zebra-stripe-follow nil
2113 "*Specify how zebra stripes continue on next page.
2114
2115 Visually, valid values are (the character `+' at right of each column indicates
2116 that a line is printed):
2117
2118 `nil' `follow' `full' `full-follow'
2119 Current Page -------- ----------- --------- ----------------
2120 1 XXXXX + 1 XXXXXXXX + 1 XXXXXX + 1 XXXXXXXXXXXXX +
2121 2 XXXXX + 2 XXXXXXXX + 2 XXXXXX + 2 XXXXXXXXXXXXX +
2122 3 XXXXX + 3 XXXXXXXX + 3 XXXXXX + 3 XXXXXXXXXXXXX +
2123 4 + 4 + 4 + 4 +
2124 5 + 5 + 5 + 5 +
2125 6 + 6 + 6 + 6 +
2126 7 XXXXX + 7 XXXXXXXX + 7 XXXXXX + 7 XXXXXXXXXXXXX +
2127 8 XXXXX + 8 XXXXXXXX + 8 XXXXXX + 8 XXXXXXXXXXXXX +
2128 9 XXXXX + 9 XXXXXXXX + 9 XXXXXX + 9 XXXXXXXXXXXXX +
2129 10 + 10 +
2130 11 + 11 +
2131 -------- ----------- --------- ----------------
2132 Next Page -------- ----------- --------- ----------------
2133 12 XXXXX + 12 + 10 XXXXXX + 10 +
2134 13 XXXXX + 13 XXXXXXXX + 11 XXXXXX + 11 +
2135 14 XXXXX + 14 XXXXXXXX + 12 XXXXXX + 12 +
2136 15 + 15 XXXXXXXX + 13 + 13 XXXXXXXXXXXXX +
2137 16 + 16 + 14 + 14 XXXXXXXXXXXXX +
2138 17 + 17 + 15 + 15 XXXXXXXXXXXXX +
2139 18 XXXXX + 18 + 16 XXXXXX + 16 +
2140 19 XXXXX + 19 XXXXXXXX + 17 XXXXXX + 17 +
2141 20 XXXXX + 20 XXXXXXXX + 18 XXXXXX + 18 +
2142 21 + 21 XXXXXXXX +
2143 22 + 22 +
2144 -------- ----------- --------- ----------------
2145
2146 Any other value is treated as nil."
2147 :type '(choice :menu-tag "Zebra Stripe Follow"
2148 :tag "Zebra Stripe Follow"
2149 (const :tag "Always Restart" nil)
2150 (const :tag "Continue on Next Page" follow)
2151 (const :tag "Print Only Full Stripe" full)
2152 (const :tag "Continue on Full Stripe" full-follow))
2153 :version "20"
2154 :group 'ps-print-zebra)
2155
2156 (defcustom ps-line-number nil
2157 "*Non-nil means print line number."
2158 :type 'boolean
2159 :version "20"
2160 :group 'ps-print-miscellany)
2161
2162 (defcustom ps-line-number-step 1
2163 "*Specify the interval that line number is printed.
2164
2165 For example, `ps-line-number-step' is set to 2, the printing will look like:
2166
2167 1 one line
2168 one line
2169 3 one line
2170 one line
2171 5 one line
2172 one line
2173 ...
2174
2175 Valid values are:
2176
2177 integer an integer that specifies the interval that line number is
2178 printed. If it's lesser than or equal to zero, it's used the
2179 value 1.
2180
2181 `zebra' specifies that only the line number of the first line in a
2182 zebra stripe is to be printed.
2183
2184 Any other value is treated as `zebra'."
2185 :type '(choice :menu-tag "Line Number Step"
2186 :tag "Line Number Step"
2187 (integer :tag "Step Interval")
2188 (const :tag "Synchronize Zebra" zebra))
2189 :version "20"
2190 :group 'ps-print-miscellany)
2191
2192 (defcustom ps-line-number-start 1
2193 "*Specify the starting point in the interval given by `ps-line-number-step'.
2194
2195 For example, if `ps-line-number-step' is set to 3 and `ps-line-number-start' is
2196 set to 3, the printing will look like:
2197
2198 one line
2199 one line
2200 3 one line
2201 one line
2202 one line
2203 6 one line
2204 one line
2205 one line
2206 9 one line
2207 one line
2208 ...
2209
2210 The values for `ps-line-number-start':
2211
2212 * If `ps-line-number-step' is an integer, must be between 1 and the value of
2213 `ps-line-number-step' inclusive.
2214
2215 * If `ps-line-number-step' is set to `zebra', must be between 1 and the
2216 value of `ps-zebra-strip-height' inclusive. Use this combination if you
2217 wish that line number be relative to zebra stripes."
2218 :type '(integer :tag "Start Step Interval")
2219 :version "20"
2220 :group 'ps-print-miscellany)
2221
2222 (defcustom ps-print-background-image nil
2223 "*EPS image list to be printed on background.
2224
2225 The elements are:
2226
2227 (FILENAME X Y XSCALE YSCALE ROTATION PAGES...)
2228
2229 FILENAME is a file name which contains an EPS image or some PostScript
2230 programming like EPS.
2231 FILENAME is ignored, if it doesn't exist or is read protected.
2232
2233 X and Y are relative positions on paper to put the image.
2234 If X and Y are nil, the image is centered on paper.
2235
2236 XSCALE and YSCALE are scale factor to be applied to image before printing.
2237 If XSCALE and YSCALE are nil, the original size is used.
2238
2239 ROTATION is the image rotation angle; if nil, the default is 0.
2240
2241 PAGES designates the page to print background image.
2242 PAGES may be a number or a cons cell (FROM . TO) designating FROM page to TO
2243 page.
2244 If PAGES is nil, print background image on all pages.
2245
2246 X, Y, XSCALE, YSCALE and ROTATION may be a floating point number, an integer
2247 number or a string. If it is a string, the string should contain PostScript
2248 programming that returns a float or integer value.
2249
2250 For example, if you wish to print an EPS image on all pages do:
2251
2252 '((\"~/images/EPS-image.ps\"))"
2253 :type '(repeat
2254 (list
2255 (file :tag "EPS File")
2256 (choice :tag "X" (const :tag "default" nil) number string)
2257 (choice :tag "Y" (const :tag "default" nil) number string)
2258 (choice :tag "X Scale" (const :tag "default" nil) number string)
2259 (choice :tag "Y Scale" (const :tag "default" nil) number string)
2260 (choice :tag "Rotation" (const :tag "default" nil) number string)
2261 (repeat :tag "Pages" :inline t
2262 (radio (integer :tag "Page")
2263 (cons :tag "Range"
2264 (integer :tag "From")
2265 (integer :tag "To"))))))
2266 :version "20"
2267 :group 'ps-print-background)
2268
2269 (defcustom ps-print-background-text nil
2270 "*Text list to be printed on background.
2271
2272 The elements are:
2273
2274 (STRING X Y FONT FONTSIZE GRAY ROTATION PAGES...)
2275
2276 STRING is the text to be printed on background.
2277
2278 X and Y are positions on paper to put the text.
2279 If X and Y are nil, the text is positioned at lower left corner.
2280
2281 FONT is a font name to be used on printing the text.
2282 If nil, \"Times-Roman\" is used.
2283
2284 FONTSIZE is font size to be used, if nil, 200 is used.
2285
2286 GRAY is the text gray factor (should be very light like 0.8).
2287 If nil, the default is 0.85.
2288
2289 ROTATION is the text rotation angle; if nil, the angle is given by the diagonal
2290 from lower left corner to upper right corner.
2291
2292 PAGES designates the page to print background text.
2293 PAGES may be a number or a cons cell (FROM . TO) designating FROM page to TO
2294 page.
2295 If PAGES is nil, print background text on all pages.
2296
2297 X, Y, FONTSIZE, GRAY and ROTATION may be a floating point number, an integer
2298 number or a string. If it is a string, the string should contain PostScript
2299 programming that returns a float or integer value.
2300
2301 For example, if you wish to print text \"Preliminary\" on all pages do:
2302
2303 '((\"Preliminary\"))"
2304 :type '(repeat
2305 (list
2306 (string :tag "Text")
2307 (choice :tag "X" (const :tag "default" nil) number string)
2308 (choice :tag "Y" (const :tag "default" nil) number string)
2309 (choice :tag "Font" (const :tag "default" nil) string)
2310 (choice :tag "Fontsize" (const :tag "default" nil) number string)
2311 (choice :tag "Gray" (const :tag "default" nil) number string)
2312 (choice :tag "Rotation" (const :tag "default" nil) number string)
2313 (repeat :tag "Pages" :inline t
2314 (radio (integer :tag "Page")
2315 (cons :tag "Range"
2316 (integer :tag "From")
2317 (integer :tag "To"))))))
2318 :version "20"
2319 :group 'ps-print-background)
2320
2321 ;;; Horizontal layout
2322
2323 ;; ------------------------------------------
2324 ;; | | | | | | | |
2325 ;; | lm | text | ic | text | ic | text | rm |
2326 ;; | | | | | | | |
2327 ;; ------------------------------------------
2328
2329 (defcustom ps-left-margin (/ (* 72 2.0) 2.54) ; 2 cm
2330 "*Left margin in points (1/72 inch)."
2331 :type 'number
2332 :version "20"
2333 :group 'ps-print-horizontal)
2334
2335 (defcustom ps-right-margin (/ (* 72 2.0) 2.54) ; 2 cm
2336 "*Right margin in points (1/72 inch)."
2337 :type 'number
2338 :version "20"
2339 :group 'ps-print-horizontal)
2340
2341 (defcustom ps-inter-column (/ (* 72 2.0) 2.54) ; 2 cm
2342 "*Horizontal space between columns in points (1/72 inch)."
2343 :type 'number
2344 :version "20"
2345 :group 'ps-print-horizontal)
2346
2347 ;;; Vertical layout
2348
2349 ;; |--------|
2350 ;; | tm |
2351 ;; |--------|
2352 ;; | header |
2353 ;; |--------|
2354 ;; | ho |
2355 ;; |--------|
2356 ;; | text |
2357 ;; |--------|
2358 ;; | bm |
2359 ;; |--------|
2360
2361 (defcustom ps-bottom-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
2362 "*Bottom margin in points (1/72 inch)."
2363 :type 'number
2364 :version "20"
2365 :group 'ps-print-vertical)
2366
2367 (defcustom ps-top-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
2368 "*Top margin in points (1/72 inch)."
2369 :type 'number
2370 :version "20"
2371 :group 'ps-print-vertical)
2372
2373 (defcustom ps-header-offset (/ (* 72 1.0) 2.54) ; 1.0 cm
2374 "*Vertical space in points (1/72 inch) between the main text and the header."
2375 :type 'number
2376 :version "20"
2377 :group 'ps-print-vertical)
2378
2379 (defcustom ps-header-line-pad 0.15
2380 "*Portion of a header title line height to insert.
2381 The insertion is done between the header frame and the text it contains,
2382 both in the vertical and horizontal directions."
2383 :type 'number
2384 :version "20"
2385 :group 'ps-print-vertical)
2386
2387 (defcustom ps-footer-offset (/ (* 72 1.0) 2.54) ; 1.0 cm
2388 "*Vertical space in points (1/72 inch) between the main text and the footer."
2389 :type 'number
2390 :version "20"
2391 :group 'ps-print-vertical)
2392
2393 (defcustom ps-footer-line-pad 0.15
2394 "*Portion of a footer title line height to insert.
2395 The insertion is done between the footer frame and the text it contains,
2396 both in the vertical and horizontal directions."
2397 :type 'number
2398 :version "20"
2399 :group 'ps-print-vertical)
2400
2401 ;;; Header/Footer setup
2402
2403 (defcustom ps-print-header t
2404 "*Non-nil means print a header at the top of each page.
2405 By default, the header displays the buffer name, page number, and, if the
2406 buffer is visiting a file, the file's directory. Headers are customizable by
2407 changing variables `ps-left-header' and `ps-right-header'."
2408 :type 'boolean
2409 :version "20"
2410 :group 'ps-print-headers)
2411
2412 (defcustom ps-print-header-frame t
2413 "*Non-nil means draw a gaudy frame around the header."
2414 :type 'boolean
2415 :version "20"
2416 :group 'ps-print-headers)
2417
2418 (defcustom ps-header-frame-alist
2419 '((fore-color . 0.0)
2420 (back-color . 0.9)
2421 (border-width . 0.4)
2422 (border-color . 0.0)
2423 (shadow-color . 0.0))
2424 "*Specify header frame properties alist.
2425
2426 Valid frame properties are:
2427
2428 `fore-color' Specify the foreground frame color.
2429 It should be a float number between 0.0 (black color)
2430 and 1.0 (white color), a string which is a color name,
2431 or a list of 3 float numbers which corresponds to the
2432 Red Green Blue color scale, each float number between
2433 0.0 (dark color) and 1.0 (bright color).
2434
2435 `back-color' Specify the background frame color (similar to
2436 `fore-color').
2437
2438 `shadow-color' Specify the shadow color (similar to `fore-color').
2439
2440 `border-color' Specify the border color (similar to `fore-color').
2441
2442 `border-width' Specify the border width.
2443
2444 Any other property is ignored.
2445
2446 Don't change this alist directly, instead use customization, or `ps-value',
2447 `ps-get', `ps-put' and `ps-del' functions (see them for documentation)."
2448 :version "21.1"
2449 :type '(repeat
2450 (choice :menu-tag "Header Frame Element"
2451 :tag ""
2452 (cons :tag "Foreground Color" :format "%v"
2453 (const :format "" fore-color)
2454 (choice :menu-tag "Foreground Color"
2455 :tag "Foreground Color"
2456 (number :tag "Gray Scale" :value 0.0)
2457 (string :tag "Color Name" :value "black")
2458 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2459 (number :tag "Red")
2460 (number :tag "Green")
2461 (number :tag "Blue"))))
2462 (cons :tag "Background Color" :format "%v"
2463 (const :format "" back-color)
2464 (choice :menu-tag "Background Color"
2465 :tag "Background Color"
2466 (number :tag "Gray Scale" :value 0.9)
2467 (string :tag "Color Name" :value "gray90")
2468 (list :tag "RGB Color" :value (0.9 0.9 0.9)
2469 (number :tag "Red")
2470 (number :tag "Green")
2471 (number :tag "Blue"))))
2472 (cons :tag "Border Width" :format "%v"
2473 (const :format "" border-width)
2474 (number :tag "Border Width" :value 0.4))
2475 (cons :tag "Border Color" :format "%v"
2476 (const :format "" border-color)
2477 (choice :menu-tag "Border Color"
2478 :tag "Border Color"
2479 (number :tag "Gray Scale" :value 0.0)
2480 (string :tag "Color Name" :value "black")
2481 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2482 (number :tag "Red")
2483 (number :tag "Green")
2484 (number :tag "Blue"))))
2485 (cons :tag "Shadow Color" :format "%v"
2486 (const :format "" shadow-color)
2487 (choice :menu-tag "Shadow Color"
2488 :tag "Shadow Color"
2489 (number :tag "Gray Scale" :value 0.0)
2490 (string :tag "Color Name" :value "black")
2491 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2492 (number :tag "Red")
2493 (number :tag "Green")
2494 (number :tag "Blue"))))))
2495 :version "20"
2496 :group 'ps-print-headers)
2497
2498 (defcustom ps-header-lines 2
2499 "*Number of lines to display in page header, when generating PostScript."
2500 :type 'integer
2501 :version "20"
2502 :group 'ps-print-headers)
2503
2504 (defcustom ps-print-footer nil
2505 "*Non-nil means print a footer at the bottom of each page.
2506 By default, the footer displays page number.
2507 Footers are customizable by changing variables `ps-left-footer' and
2508 `ps-right-footer'."
2509 :type 'boolean
2510 :version "21.1"
2511 :group 'ps-print-headers)
2512
2513 (defcustom ps-print-footer-frame t
2514 "*Non-nil means draw a gaudy frame around the footer."
2515 :type 'boolean
2516 :version "21.1"
2517 :group 'ps-print-headers)
2518
2519 (defcustom ps-footer-frame-alist
2520 '((fore-color . 0.0)
2521 (back-color . 0.9)
2522 (border-width . 0.4)
2523 (border-color . 0.0)
2524 (shadow-color . 0.0))
2525 "*Specify footer frame properties alist.
2526
2527 Don't change this alist directly, instead use customization, or `ps-value',
2528 `ps-get', `ps-put' and `ps-del' functions (see them for documentation).
2529
2530 See also `ps-header-frame-alist' for documentation."
2531 :type '(repeat
2532 (choice :menu-tag "Header Frame Element"
2533 :tag ""
2534 (cons :tag "Foreground Color" :format "%v"
2535 (const :format "" fore-color)
2536 (choice :menu-tag "Foreground Color"
2537 :tag "Foreground Color"
2538 (number :tag "Gray Scale" :value 0.0)
2539 (string :tag "Color Name" :value "black")
2540 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2541 (number :tag "Red")
2542 (number :tag "Green")
2543 (number :tag "Blue"))))
2544 (cons :tag "Background Color" :format "%v"
2545 (const :format "" back-color)
2546 (choice :menu-tag "Background Color"
2547 :tag "Background Color"
2548 (number :tag "Gray Scale" :value 0.9)
2549 (string :tag "Color Name" :value "gray90")
2550 (list :tag "RGB Color" :value (0.9 0.9 0.9)
2551 (number :tag "Red")
2552 (number :tag "Green")
2553 (number :tag "Blue"))))
2554 (cons :tag "Border Width" :format "%v"
2555 (const :format "" border-width)
2556 (number :tag "Border Width" :value 0.4))
2557 (cons :tag "Border Color" :format "%v"
2558 (const :format "" border-color)
2559 (choice :menu-tag "Border Color"
2560 :tag "Border Color"
2561 (number :tag "Gray Scale" :value 0.0)
2562 (string :tag "Color Name" :value "black")
2563 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2564 (number :tag "Red")
2565 (number :tag "Green")
2566 (number :tag "Blue"))))
2567 (cons :tag "Shadow Color" :format "%v"
2568 (const :format "" shadow-color)
2569 (choice :menu-tag "Shadow Color"
2570 :tag "Shadow Color"
2571 (number :tag "Gray Scale" :value 0.0)
2572 (string :tag "Color Name" :value "black")
2573 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2574 (number :tag "Red")
2575 (number :tag "Green")
2576 (number :tag "Blue"))))))
2577 :version "21.1"
2578 :group 'ps-print-headers)
2579
2580 (defcustom ps-footer-lines 2
2581 "*Number of lines to display in page footer, when generating PostScript."
2582 :type 'integer
2583 :version "21.1"
2584 :group 'ps-print-headers)
2585
2586 (defcustom ps-print-only-one-header nil
2587 "*Non-nil means print only one header/footer at the top/bottom of each page.
2588 This is useful when printing more than one column, so it is possible to have
2589 only one header/footer over all columns or one header/footer per column.
2590 See also `ps-print-header' and `ps-print-footer'."
2591 :type 'boolean
2592 :version "20"
2593 :group 'ps-print-headers)
2594
2595 (defcustom ps-switch-header 'duplex
2596 "*Specify if headers/footers are switched or not.
2597
2598 Valid values are:
2599
2600 nil Never switch headers/footers.
2601
2602 t Always switch headers/footers.
2603
2604 duplex Switch headers/footers only when duplexing is on, that is, when
2605 `ps-spool-duplex' is non-nil.
2606
2607 Any other value is treated as t.
2608
2609 See also `ps-print-header' and `ps-print-footer'."
2610 :type '(choice :menu-tag "Switch Header/Footer"
2611 :tag "Switch Header/Footer"
2612 (const :tag "Never Switch" nil)
2613 (const :tag "Always Switch" t)
2614 (const :tag "Switch When Duplexing" duplex))
2615 :version "20"
2616 :group 'ps-print-headers)
2617
2618 (defcustom ps-show-n-of-n t
2619 "*Non-nil means show page numbers as N/M, meaning page N of M.
2620 NOTE: page numbers are displayed as part of headers,
2621 see variable `ps-print-header'."
2622 :type 'boolean
2623 :version "20"
2624 :group 'ps-print-headers)
2625
2626 (defcustom ps-spool-config
2627 (if ps-windows-system
2628 nil
2629 'lpr-switches)
2630 "*Specify who is responsible for setting duplex and page size.
2631
2632 Valid values are:
2633
2634 `lpr-switches' duplex and page size are configured by `ps-lpr-switches'.
2635 Don't forget to set `ps-lpr-switches' to select duplex
2636 printing for your printer.
2637
2638 `setpagedevice' duplex and page size are configured by ps-print using the
2639 setpagedevice PostScript operator.
2640
2641 nil duplex and page size are configured by ps-print *not* using
2642 the setpagedevice PostScript operator.
2643
2644 Any other value is treated as nil.
2645
2646 WARNING: The setpagedevice PostScript operator affects ghostview utility when
2647 viewing file generated using landscape. Also on some printers,
2648 setpagedevice affects zebra stripes; on other printers, setpagedevice
2649 affects the left margin.
2650 Besides all that, if your printer does not have the paper size
2651 specified by setpagedevice, your printing will be aborted.
2652 So, if you need to use setpagedevice, set `ps-spool-config' to
2653 `setpagedevice', generate a test file and send it to your printer; if
2654 the printed file isn't OK, set `ps-spool-config' to nil."
2655 :type '(choice :menu-tag "Spool Config"
2656 :tag "Spool Config"
2657 (const lpr-switches) (const setpagedevice)
2658 (const :tag "nil" nil))
2659 :version "20"
2660 :group 'ps-print-headers)
2661
2662 (defcustom ps-spool-duplex nil ; Not many people have duplex printers,
2663 ; so default to nil.
2664 "*Non-nil generates PostScript for a two-sided printer.
2665 For a duplex printer, the `ps-spool-*' and `ps-print-*' commands will insert
2666 blank pages as needed between print jobs so that the next buffer printed will
2667 start on the right page. Also, if headers are turned on, the headers will be
2668 reversed on duplex printers so that the page numbers fall to the left on
2669 even-numbered pages.
2670
2671 See also `ps-spool-tumble'."
2672 :type 'boolean
2673 :version "20"
2674 :group 'ps-print-headers)
2675
2676 (defcustom ps-spool-tumble nil
2677 "*Specify how the page images on opposite sides of a sheet are oriented.
2678 If `ps-spool-tumble' is nil, produces output suitable for binding on the left
2679 or right. If `ps-spool-tumble' is non-nil, produces output suitable for
2680 binding at the top or bottom.
2681
2682 It has effect only when `ps-spool-duplex' is non-nil."
2683 :type 'boolean
2684 :version "20"
2685 :group 'ps-print-headers)
2686
2687 ;;; Fonts
2688
2689 (defcustom ps-font-info-database
2690 '((Courier ; the family key
2691 (fonts (normal . "Courier")
2692 (bold . "Courier-Bold")
2693 (italic . "Courier-Oblique")
2694 (bold-italic . "Courier-BoldOblique"))
2695 (size . 10.0)
2696 (line-height . 10.55)
2697 (space-width . 6.0)
2698 (avg-char-width . 6.0))
2699 (Helvetica ; the family key
2700 (fonts (normal . "Helvetica")
2701 (bold . "Helvetica-Bold")
2702 (italic . "Helvetica-Oblique")
2703 (bold-italic . "Helvetica-BoldOblique"))
2704 (size . 10.0)
2705 (line-height . 11.56)
2706 (space-width . 2.78)
2707 (avg-char-width . 5.09243))
2708 (Times
2709 (fonts (normal . "Times-Roman")
2710 (bold . "Times-Bold")
2711 (italic . "Times-Italic")
2712 (bold-italic . "Times-BoldItalic"))
2713 (size . 10.0)
2714 (line-height . 11.0)
2715 (space-width . 2.5)
2716 (avg-char-width . 4.71432))
2717 (Palatino
2718 (fonts (normal . "Palatino-Roman")
2719 (bold . "Palatino-Bold")
2720 (italic . "Palatino-Italic")
2721 (bold-italic . "Palatino-BoldItalic"))
2722 (size . 10.0)
2723 (line-height . 12.1)
2724 (space-width . 2.5)
2725 (avg-char-width . 5.08676))
2726 (Helvetica-Narrow
2727 (fonts (normal . "Helvetica-Narrow")
2728 (bold . "Helvetica-Narrow-Bold")
2729 (italic . "Helvetica-Narrow-Oblique")
2730 (bold-italic . "Helvetica-Narrow-BoldOblique"))
2731 (size . 10.0)
2732 (line-height . 11.56)
2733 (space-width . 2.2796)
2734 (avg-char-width . 4.17579))
2735 (NewCenturySchlbk
2736 (fonts (normal . "NewCenturySchlbk-Roman")
2737 (bold . "NewCenturySchlbk-Bold")
2738 (italic . "NewCenturySchlbk-Italic")
2739 (bold-italic . "NewCenturySchlbk-BoldItalic"))
2740 (size . 10.0)
2741 (line-height . 12.15)
2742 (space-width . 2.78)
2743 (avg-char-width . 5.31162))
2744 ;; got no bold for the next ones
2745 (AvantGarde-Book
2746 (fonts (normal . "AvantGarde-Book")
2747 (italic . "AvantGarde-BookOblique"))
2748 (size . 10.0)
2749 (line-height . 11.77)
2750 (space-width . 2.77)
2751 (avg-char-width . 5.45189))
2752 (AvantGarde-Demi
2753 (fonts (normal . "AvantGarde-Demi")
2754 (italic . "AvantGarde-DemiOblique"))
2755 (size . 10.0)
2756 (line-height . 12.72)
2757 (space-width . 2.8)
2758 (avg-char-width . 5.51351))
2759 (Bookman-Demi
2760 (fonts (normal . "Bookman-Demi")
2761 (italic . "Bookman-DemiItalic"))
2762 (size . 10.0)
2763 (line-height . 11.77)
2764 (space-width . 3.4)
2765 (avg-char-width . 6.05946))
2766 (Bookman-Light
2767 (fonts (normal . "Bookman-Light")
2768 (italic . "Bookman-LightItalic"))
2769 (size . 10.0)
2770 (line-height . 11.79)
2771 (space-width . 3.2)
2772 (avg-char-width . 5.67027))
2773 ;; got no bold and no italic for the next ones
2774 (Symbol
2775 (fonts (normal . "Symbol"))
2776 (size . 10.0)
2777 (line-height . 13.03)
2778 (space-width . 2.5)
2779 (avg-char-width . 3.24324))
2780 (Zapf-Dingbats
2781 (fonts (normal . "Zapf-Dingbats"))
2782 (size . 10.0)
2783 (line-height . 9.63)
2784 (space-width . 2.78)
2785 (avg-char-width . 2.78))
2786 (ZapfChancery-MediumItalic
2787 (fonts (normal . "ZapfChancery-MediumItalic"))
2788 (size . 10.0)
2789 (line-height . 11.45)
2790 (space-width . 2.2)
2791 (avg-char-width . 4.10811))
2792 ;; We keep this wrong entry name (but with correct font name) for
2793 ;; backward compatibility.
2794 (Zapf-Chancery-MediumItalic
2795 (fonts (normal . "ZapfChancery-MediumItalic"))
2796 (size . 10.0)
2797 (line-height . 11.45)
2798 (space-width . 2.2)
2799 (avg-char-width . 4.10811))
2800 )
2801 "*Font info database.
2802 Each element comprises: font family (the key), name, bold, italic, bold-italic,
2803 reference size, line height, space width, average character width.
2804 To get the info for another specific font (say Helvetica), do the following:
2805 - create a new buffer
2806 - generate the PostScript image to a file (C-u M-x ps-print-buffer)
2807 - open this file and delete the leading `%' (which is the PostScript comment
2808 character) from the line
2809 `% 3 cm 20 cm moveto 10/Courier ReportFontInfo showpage'
2810 to get the line
2811 `3 cm 20 cm moveto 10/Helvetica ReportFontInfo showpage'
2812 - add the values to `ps-font-info-database'.
2813 You can get all the fonts of YOUR printer using `ReportAllFontInfo'.
2814
2815 Note also that ps-print DOESN'T download any font to your printer, instead it
2816 uses the fonts resident in your printer."
2817 :type '(repeat
2818 (list :tag "Font Definition"
2819 (symbol :tag "Font Family")
2820 (cons :format "%v"
2821 (const :format "" fonts)
2822 (repeat :tag "Faces"
2823 (cons (choice :menu-tag "Font Weight/Slant"
2824 :tag "Font Weight/Slant"
2825 (const normal)
2826 (const bold)
2827 (const italic)
2828 (const bold-italic)
2829 (symbol :tag "Face"))
2830 (string :tag "Font Name"))))
2831 (cons :format "%v"
2832 (const :format "" size)
2833 (number :tag "Reference Size"))
2834 (cons :format "%v"
2835 (const :format "" line-height)
2836 (number :tag "Line Height"))
2837 (cons :format "%v"
2838 (const :format "" space-width)
2839 (number :tag "Space Width"))
2840 (cons :format "%v"
2841 (const :format "" avg-char-width)
2842 (number :tag "Average Character Width"))))
2843 :version "20"
2844 :group 'ps-print-font)
2845
2846 (defcustom ps-font-family 'Courier
2847 "*Font family name for ordinary text, when generating PostScript."
2848 :type 'symbol
2849 :version "20"
2850 :group 'ps-print-font)
2851
2852 (defcustom ps-font-size '(7 . 8.5)
2853 "*Font size, in points, for ordinary text, when generating PostScript.
2854 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2855 :type '(choice :menu-tag "Ordinary Text Font Size"
2856 :tag "Ordinary Text Font Size"
2857 (number :tag "Text Size")
2858 (cons :tag "Landscape/Portrait"
2859 (number :tag "Landscape Text Size")
2860 (number :tag "Portrait Text Size")))
2861 :version "20"
2862 :group 'ps-print-font)
2863
2864 (defcustom ps-header-font-family 'Helvetica
2865 "*Font family name for text in the header, when generating PostScript."
2866 :type 'symbol
2867 :version "20"
2868 :group 'ps-print-font)
2869
2870 (defcustom ps-header-font-size '(10 . 12)
2871 "*Font size, in points, for text in the header, when generating PostScript.
2872 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2873 :type '(choice :menu-tag "Header Font Size"
2874 :tag "Header Font Size"
2875 (number :tag "Header Size")
2876 (cons :tag "Landscape/Portrait"
2877 (number :tag "Landscape Header Size")
2878 (number :tag "Portrait Header Size")))
2879 :version "20"
2880 :group 'ps-print-font)
2881
2882 (defcustom ps-header-title-font-size '(12 . 14)
2883 "*Font size, in points, for the top line of text in header, in PostScript.
2884 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2885 :type '(choice :menu-tag "Header Title Font Size"
2886 :tag "Header Title Font Size"
2887 (number :tag "Header Title Size")
2888 (cons :tag "Landscape/Portrait"
2889 (number :tag "Landscape Header Title Size")
2890 (number :tag "Portrait Header Title Size")))
2891 :version "20"
2892 :group 'ps-print-font)
2893
2894 (defcustom ps-footer-font-family 'Helvetica
2895 "*Font family name for text in the footer, when generating PostScript."
2896 :type 'symbol
2897 :version "21.1"
2898 :group 'ps-print-font)
2899
2900 (defcustom ps-footer-font-size '(10 . 12)
2901 "*Font size, in points, for text in the footer, when generating PostScript.
2902 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2903 :type '(choice :menu-tag "Footer Font Size"
2904 :tag "Footer Font Size"
2905 (number :tag "Footer Size")
2906 (cons :tag "Landscape/Portrait"
2907 (number :tag "Landscape Footer Size")
2908 (number :tag "Portrait Footer Size")))
2909 :version "21.1"
2910 :group 'ps-print-font)
2911
2912 (defcustom ps-line-number-color "black"
2913 "*Specify color for line-number, when generating PostScript."
2914 :type '(choice :menu-tag "Line Number Color"
2915 :tag "Line Number Color"
2916 (number :tag "Gray Scale" :value 0)
2917 (string :tag "Color Name" :value "black")
2918 (list :tag "RGB Color" :value (0 0 0)
2919 (number :tag "Red")
2920 (number :tag "Green")
2921 (number :tag "Blue")))
2922 :version "21.1"
2923 :group 'ps-print-font
2924 :group 'ps-print-miscellany)
2925
2926 (defcustom ps-line-number-font "Times-Italic"
2927 "*Font for line-number, when generating PostScript."
2928 :type 'string
2929 :version "20"
2930 :group 'ps-print-font
2931 :group 'ps-print-miscellany)
2932
2933 (defcustom ps-line-number-font-size 6
2934 "*Font size, in points, for line number, when generating PostScript.
2935 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2936 :type '(choice :menu-tag "Line Number Font Size"
2937 :tag "Line Number Font Size"
2938 (number :tag "Font Size")
2939 (cons :tag "Landscape/Portrait"
2940 (number :tag "Landscape Font Size")
2941 (number :tag "Portrait Font Size")))
2942 :version "20"
2943 :group 'ps-print-font
2944 :group 'ps-print-miscellany)
2945
2946 ;;; Colors
2947
2948 ;; Printing color requires x-color-values.
2949 ;; XEmacs change: Need autoload for the "Options->Printing->Color Printing"
2950 ;; widget to work.
2951 ;;;###autoload
2952 (defcustom ps-print-color-p
2953 (or (fboundp 'x-color-values) ; Emacs
2954 (fboundp 'color-instance-rgb-components))
2955 ; XEmacs
2956 "*Specify how buffer's text color is printed.
2957
2958 Valid values are:
2959
2960 nil Do not print colors.
2961
2962 t Print colors.
2963
2964 black-white Print colors on black/white printer.
2965 See also `ps-black-white-faces'.
2966
2967 Any other value is treated as t."
2968 :type '(choice :menu-tag "Print Color"
2969 :tag "Print Color"
2970 (const :tag "Do NOT Print Color" nil)
2971 (const :tag "Print Always Color" t)
2972 (const :tag "Print Black/White Color" black-white))
2973 :version "20"
2974 :group 'ps-print-color)
2975
2976 (defcustom ps-default-fg nil
2977 "*RGB values of the default foreground color.
2978
2979 The `ps-default-fg' variable contains the default foreground color used by
2980 ps-print, that is, if there is a face in a text that doesn't have a foreground
2981 color, the `ps-default-fg' color should be used.
2982
2983 Valid values are:
2984
2985 t The foreground color of Emacs session will be used.
2986
2987 frame-parameter The foreground-color frame parameter will be used.
2988
2989 NUMBER It's a real value between 0.0 (black) and 1.0 (white) that
2990 indicate the gray color.
2991
2992 COLOR-NAME It's a string which contains the color name. For example:
2993 \"yellow\".
2994
2995 LIST It's a list of RGB values, that is a list of three real values
2996 of the form:
2997
2998 (RED GREEN BLUE)
2999
3000 Where RED, GREEN and BLUE are reals between 0.0 (no color) and
3001 1.0 (full color).
3002
3003 Any other value is ignored and black color will be used.
3004
3005 This variable is used only when `ps-print-color-p' (which see) is neither nil
3006 nor black-white."
3007 :type '(choice :menu-tag "Default Foreground Gray/Color"
3008 :tag "Default Foreground Gray/Color"
3009 (const :tag "Session Foreground" t)
3010 (const :tag "Frame Foreground" frame-parameter)
3011 (number :tag "Gray Scale" :value 0.0)
3012 (string :tag "Color Name" :value "black")
3013 (list :tag "RGB Color" :value (0.0 0.0 0.0)
3014 (number :tag "Red")
3015 (number :tag "Green")
3016 (number :tag "Blue")))
3017 :version "20"
3018 :group 'ps-print-color)
3019
3020 (defcustom ps-default-bg nil
3021 "*RGB values of the default background color.
3022
3023 The `ps-default-bg' variable contains the default background color used by
3024 ps-print, that is, if there is a face in a text that doesn't have a background
3025 color, the `ps-default-bg' color should be used.
3026
3027 Valid values are:
3028
3029 t The background color of Emacs session will be used.
3030
3031 frame-parameter The background-color frame parameter will be used.
3032
3033 NUMBER It's a real value between 0.0 (black) and 1.0 (white) that
3034 indicate the gray color.
3035
3036 COLOR-NAME It's a string which contains the color name. For example:
3037 \"yellow\".
3038
3039 LIST It's a list of RGB values, that is a list of three real values
3040 of the form:
3041
3042 (RED GREEN BLUE)
3043
3044 Where RED, GREEN and BLUE are reals between 0.0 (no color) and
3045 1.0 (full color).
3046
3047 Any other value is ignored and white color will be used.
3048
3049 This variable is used only when `ps-print-color-p' (which see) is neither nil
3050 nor black-white.
3051
3052 See also `ps-use-face-background'."
3053 :type '(choice :menu-tag "Default Background Gray/Color"
3054 :tag "Default Background Gray/Color"
3055 (const :tag "Session Background" t)
3056 (const :tag "Frame Background" frame-parameter)
3057 (number :tag "Gray Scale" :value 1.0)
3058 (string :tag "Color Name" :value "white")
3059 (list :tag "RGB Color" :value (1.0 1.0 1.0)
3060 (number :tag "Red")
3061 (number :tag "Green")
3062 (number :tag "Blue")))
3063 :version "20"
3064 :group 'ps-print-color)
3065
3066 (defcustom ps-fg-list nil
3067 "*Specify foreground color list.
3068
3069 This list is used to chose a text foreground color which is different than the
3070 background color. It'll be used the first foreground color in `ps-fg-list'
3071 which is different from the background color.
3072
3073 If this list is nil, the default foreground color is used. See
3074 `ps-default-fg'.
3075
3076 The list element valid values are:
3077
3078 NUMBER It's a real value between 0.0 (black) and 1.0 (white) that
3079 indicate the gray color.
3080
3081 COLOR-NAME It's a string which contains the color name. For example:
3082 \"yellow\".
3083
3084 LIST It's a list of RGB values, that is a list of three real values
3085 of the form:
3086
3087 (RED GREEN BLUE)
3088
3089 Where RED, GREEN and BLUE are reals between 0.0 (no color) and
3090 1.0 (full color).
3091
3092 Any other value is ignored and black color will be used.
3093
3094 This variable is used only when `ps-fg-validate-p' (which see) is non-nil and
3095 when `ps-print-color-p' (which see) is neither nil nor black-white."
3096 :type '(repeat
3097 (choice :menu-tag "Foreground Gray/Color"
3098 :tag "Foreground Gray/Color"
3099 (number :tag "Gray Scale" :value 0.0)
3100 (string :tag "Color Name" :value "black")
3101 (list :tag "RGB Color" :value (0.0 0.0 0.0)
3102 (number :tag "Red")
3103 (number :tag "Green")
3104 (number :tag "Blue"))))
3105 :version "22"
3106 :group 'ps-print-color)
3107
3108 (defcustom ps-fg-validate-p t
3109 "*Non-nil means validate if foreground color is different than background.
3110
3111 If text foreground and background colors are equals, no text will appear.
3112
3113 See also `ps-fg-list'."
3114 :type 'boolean
3115 :version "22"
3116 :group 'ps-print-color)
3117
3118 (defcustom ps-auto-font-detect t
3119 "*Non-nil means automatically detect bold/italic/underline face attributes.
3120 If nil, we rely solely on the lists `ps-bold-faces', `ps-italic-faces', and
3121 `ps-underlined-faces'."
3122 :type 'boolean
3123 :version "20"
3124 :group 'ps-print-font)
3125
3126 (defcustom ps-black-white-faces
3127 '((font-lock-builtin-face "black" nil bold )
3128 (font-lock-comment-face "gray20" nil italic)
3129 (font-lock-constant-face "black" nil bold )
3130 (font-lock-function-name-face "black" nil bold )
3131 (font-lock-keyword-face "black" nil bold )
3132 (font-lock-string-face "black" nil italic)
3133 (font-lock-type-face "black" nil italic)
3134 (font-lock-variable-name-face "black" nil bold italic)
3135 (font-lock-warning-face "black" nil bold italic))
3136 "*Specify list of face attributes to print colors on black/white printers.
3137
3138 The list elements are the same as defined on `ps-extend-face' (which see).
3139
3140 This variable is used only when `ps-print-color-p' is set to `black-white'."
3141 :version "21.1"
3142 :type '(repeat
3143 (list :tag "Face Specification"
3144 (face :tag "Face Symbol")
3145 (choice :menu-tag "Foreground Color"
3146 :tag "Foreground Color"
3147 (const :tag "Black" nil)
3148 (string :tag "Color Name"))
3149 (choice :menu-tag "Background Color"
3150 :tag "Background Color"
3151 (const :tag "None" nil)
3152 (string :tag "Color Name"))
3153 (repeat :inline t
3154 (choice :menu-tag "Attribute"
3155 (const bold)
3156 (const italic)
3157 (const underline)
3158 (const strikeout)
3159 (const overline)
3160 (const shadow)
3161 (const box)
3162 (const outline)))))
3163 :version "20"
3164 :group 'ps-print-face)
3165
3166 (defcustom ps-bold-faces
3167 (unless ps-print-color-p
3168 '(font-lock-function-name-face
3169 font-lock-builtin-face
3170 font-lock-variable-name-face
3171 font-lock-keyword-face
3172 font-lock-warning-face))
3173 "*A list of the \(non-bold\) faces that should be printed in bold font.
3174 This applies to generating PostScript."
3175 :type '(repeat face)
3176 :version "20"
3177 :group 'ps-print-face)
3178
3179 (defcustom ps-italic-faces
3180 (unless ps-print-color-p
3181 '(font-lock-variable-name-face
3182 font-lock-type-face
3183 font-lock-string-face
3184 font-lock-comment-face
3185 font-lock-warning-face))
3186 "*A list of the \(non-italic\) faces that should be printed in italic font.
3187 This applies to generating PostScript."
3188 :type '(repeat face)
3189 :version "20"
3190 :group 'ps-print-face)
3191
3192 (defcustom ps-underlined-faces
3193 (unless ps-print-color-p
3194 '(font-lock-function-name-face
3195 font-lock-constant-face
3196 font-lock-warning-face))
3197 "*A list of the \(non-underlined\) faces that should be printed underlined.
3198 This applies to generating PostScript."
3199 :type '(repeat face)
3200 :version "20"
3201 :group 'ps-print-face)
3202
3203 (defcustom ps-use-face-background nil
3204 "*Specify if face background should be used.
3205
3206 Valid values are:
3207
3208 t always use face background color.
3209 nil never use face background color.
3210 (face...) list of faces whose background color will be used.
3211
3212 Any other value will be treated as t."
3213 :type '(choice :menu-tag "Use Face Background"
3214 :tag "Use Face Background"
3215 (const :tag "Always Use Face Background" t)
3216 (const :tag "Never Use Face Background" nil)
3217 (repeat :menu-tag "Face Background List"
3218 :tag "Face Background List"
3219 face))
3220 :version "20"
3221 :group 'ps-print-face)
3222
3223 (defcustom ps-left-header
3224 (list 'ps-get-buffer-name 'ps-header-dirpart)
3225 "*The items to display (each on a line) on the left part of the page header.
3226 This applies to generating PostScript.
3227
3228 The value should be a list of strings and symbols, each representing an entry
3229 in the PostScript array HeaderLinesLeft.
3230
3231 Strings are inserted unchanged into the array; those representing
3232 PostScript string literals should be delimited with PostScript string
3233 delimiters '(' and ')'.
3234
3235 For symbols with bound functions, the function is called and should return a
3236 string to be inserted into the array. For symbols with bound values, the value
3237 should be a string to be inserted into the array. In either case, function or
3238 variable, the string value has PostScript string delimiters added to it.
3239
3240 If symbols are unbounded, they are silently ignored."
3241 :type '(repeat (choice :menu-tag "Left Header"
3242 :tag "Left Header"
3243 string symbol))
3244 :version "20"
3245 :group 'ps-print-headers)
3246
3247 (defcustom ps-right-header
3248 (list "/pagenumberstring load"
3249 'ps-time-stamp-locale-default 'ps-time-stamp-hh:mm:ss)
3250 "*The items to display (each on a line) on the right part of the page header.
3251 This applies to generating PostScript.
3252
3253 See the variable `ps-left-header' for a description of the format of this
3254 variable.
3255
3256 There are the following basic functions implemented:
3257
3258 `ps-time-stamp-locale-default' Return the locale's \"preferred\" date
3259 as, for example, \"06/18/01\".
3260
3261 `ps-time-stamp-hh:mm:ss' Return time as \"17:28:31\".
3262
3263 `ps-time-stamp-mon-dd-yyyy' Return date as \"Jun 18 2001\".
3264
3265 `ps-time-stamp-yyyy-mm-dd' Return date as \"2001-06-18\" (ISO
3266 date).
3267
3268 `ps-time-stamp-iso8601' Alias for `ps-time-stamp-yyyy-mm-dd'.
3269
3270 You can also create your own time stamp function by using `format-time-string'
3271 \(which see)."
3272 :type '(repeat (choice :menu-tag "Right Header"
3273 :tag "Right Header"
3274 string symbol))
3275 :version "20"
3276 :group 'ps-print-headers)
3277
3278 (defcustom ps-left-footer
3279 (list 'ps-get-buffer-name 'ps-header-dirpart)
3280 "*The items to display (each on a line) on the left part of the page footer.
3281 This applies to generating PostScript.
3282
3283 The value should be a list of strings and symbols, each representing an entry
3284 in the PostScript array FooterLinesLeft.
3285
3286 Strings are inserted unchanged into the array; those representing PostScript
3287 string literals should be delimited with PostScript string delimiters '(' and
3288 ')'.
3289
3290 For symbols with bound functions, the function is called and should return a
3291 string to be inserted into the array. For symbols with bound values, the value
3292 should be a string to be inserted into the array. In either case, function or
3293 variable, the string value has PostScript string delimiters added to it.
3294
3295 If symbols are unbounded, they are silently ignored."
3296 :type '(repeat (choice :menu-tag "Left Footer"
3297 :tag "Left Footer"
3298 string symbol))
3299 :version "21.1"
3300 :group 'ps-print-headers)
3301
3302 (defcustom ps-right-footer
3303 (list "/pagenumberstring load"
3304 'ps-time-stamp-locale-default 'ps-time-stamp-hh:mm:ss)
3305 "*The items to display (each on a line) on the right part of the page footer.
3306 This applies to generating PostScript.
3307
3308 See the variable `ps-left-footer' for a description of the format of this
3309 variable.
3310
3311 There are the following basic functions implemented:
3312
3313 `ps-time-stamp-locale-default' Return the locale's \"preferred\" date
3314 as, for example, \"06/18/01\".
3315
3316 `ps-time-stamp-hh:mm:ss' Return time as \"17:28:31\".
3317
3318 `ps-time-stamp-mon-dd-yyyy' Return date as \"Jun 18 2001\".
3319
3320 `ps-time-stamp-yyyy-mm-dd' Return date as \"2001-06-18\" (ISO
3321 date).
3322
3323 `ps-time-stamp-iso8601' Alias for `ps-time-stamp-yyyy-mm-dd'.
3324
3325 You can also create your own time stamp function by using `format-time-string'
3326 \(which see)."
3327 :type '(repeat (choice :menu-tag "Right Footer"
3328 :tag "Right Footer"
3329 string symbol))
3330 :version "21.1"
3331 :group 'ps-print-headers)
3332
3333 (defcustom ps-razzle-dazzle t
3334 "*Non-nil means report progress while formatting buffer."
3335 :type 'boolean
3336 :version "20"
3337 :group 'ps-print-miscellany)
3338
3339 (defcustom ps-adobe-tag "%!PS-Adobe-3.0\n"
3340 "*Contains the header line identifying the output as PostScript.
3341 By default, `ps-adobe-tag' contains the standard identifier. Some printers
3342 require slightly different versions of this line."
3343 :type 'string
3344 :version "20"
3345 :group 'ps-print-miscellany)
3346
3347 (defcustom ps-build-face-reference t
3348 "*Non-nil means build the reference face lists.
3349
3350 ps-print sets this value to nil after it builds its internal reference lists of
3351 bold and italic faces. By setting its value back to t, you can force ps-print
3352 to rebuild the lists the next time you invoke one of the ...-with-faces
3353 commands.
3354
3355 You should set this value back to t after you change the attributes of any
3356 face, or create new faces. Most users shouldn't have to worry about its
3357 setting, though."
3358 :type 'boolean
3359 :version "20"
3360 :group 'ps-print-face)
3361
3362 (defcustom ps-always-build-face-reference nil
3363 "*Non-nil means always rebuild the reference face lists.
3364
3365 If this variable is non-nil, ps-print will rebuild its internal reference lists
3366 of bold and italic faces *every* time one of the ...-with-faces commands is
3367 called. Most users shouldn't need to set this variable."
3368 :type 'boolean
3369 :version "20"
3370 :group 'ps-print-face)
3371
3372 (defcustom ps-banner-page-when-duplexing nil
3373 "*Non-nil means the very first page is skipped.
3374 It's like the very first character of buffer (or region) is ^L (\\014)."
3375 :type 'boolean
3376 :version "20"
3377 :group 'ps-print-headers)
3378
3379 (defcustom ps-postscript-code-directory
3380 (or (if (featurep 'xemacs)
3381 (cond ((fboundp 'locate-data-directory) ; XEmacs
3382 (funcall 'locate-data-directory "ps-print"))
3383 ((boundp 'data-directory) ; XEmacs
3384 (symbol-value 'data-directory))
3385 (t ; don't know what to do
3386 nil))
3387 data-directory) ; Emacs
3388 (error "`ps-postscript-code-directory' isn't set properly"))
3389 "*Directory where it's located the PostScript prologue file used by ps-print.
3390 By default, this directory is the same as in the variable `data-directory'."
3391 :type 'directory
3392 :version "20"
3393 :group 'ps-print-miscellany)
3394
3395 (defcustom ps-line-spacing 0
3396 "*Specify line spacing, in points, for ordinary text.
3397
3398 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE).
3399
3400 See also `ps-paragraph-spacing' and `ps-paragraph-regexp'.
3401
3402 To get all lines with some spacing set both `ps-line-spacing' and
3403 `ps-paragraph-spacing' variables."
3404 :type '(choice :menu-tag "Line Spacing For Ordinary Text"
3405 :tag "Line Spacing For Ordinary Text"
3406 (number :tag "Line Spacing")
3407 (cons :tag "Landscape/Portrait"
3408 (number :tag "Landscape Line Spacing")
3409 (number :tag "Portrait Line Spacing")))
3410 :version "21.1"
3411 :group 'ps-print-miscellany)
3412
3413 (defcustom ps-paragraph-spacing 0
3414 "*Specify paragraph spacing, in points, for ordinary text.
3415
3416 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE).
3417
3418 See also `ps-line-spacing' and `ps-paragraph-regexp'.
3419
3420 To get all lines with some spacing set both `ps-line-spacing' and
3421 `ps-paragraph-spacing' variables."
3422 :type '(choice :menu-tag "Paragraph Spacing For Ordinary Text"
3423 :tag "Paragraph Spacing For Ordinary Text"
3424 (number :tag "Paragraph Spacing")
3425 (cons :tag "Landscape/Portrait"
3426 (number :tag "Landscape Paragraph Spacing")
3427 (number :tag "Portrait Paragraph Spacing")))
3428 :version "21.1"
3429 :group 'ps-print-miscellany)
3430
3431 (defcustom ps-paragraph-regexp "[ \t]*$"
3432 "*Specify paragraph delimiter.
3433
3434 It should be a regexp or nil.
3435
3436 See also `ps-paragraph-spacing'."
3437 :type '(choice :menu-tag "Paragraph Delimiter"
3438 (const :tag "No Delimiter" nil)
3439 (regexp :tag "Delimiter Regexp"))
3440 :version "21.1"
3441 :group 'ps-print-miscellany)
3442
3443 (defcustom ps-begin-cut-regexp nil
3444 "*Specify regexp which is start of a region to cut out when printing.
3445
3446 As an example, variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' may be
3447 set to \"^Local Variables:\" and \"^End:\", respectively, in order to leave out
3448 some special printing instructions from the actual print. Special printing
3449 instructions may be appended to the end of the file just like any other
3450 buffer-local variables. See section \"Local Variables in Files\" on Emacs
3451 manual for more information.
3452
3453 Variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' control together what
3454 actually gets printed. Both variables may be set to nil in which case no
3455 cutting occurs."
3456 :type '(choice (const :tag "No Delimiter" nil)
3457 (regexp :tag "Delimiter Regexp"))
3458 :version "21.1"
3459 :group 'ps-print-miscellany)
3460
3461 (defcustom ps-end-cut-regexp nil
3462 "*Specify regexp which is end of the region to cut out when printing.
3463
3464 See `ps-begin-cut-regexp' for more information."
3465 :type '(choice (const :tag "No Delimiter" nil)
3466 (regexp :tag "Delimiter Regexp"))
3467 :version "21.1"
3468 :group 'ps-print-miscellany)
3469
3470
3471 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3472 ;; Selected Pages
3473
3474
3475 (defvar ps-last-selected-pages nil
3476 "Latest `ps-selected-pages' value.")
3477
3478
3479 (defun ps-restore-selected-pages ()
3480 "Restore latest `ps-selected-pages' value."
3481 (interactive)
3482 (setq ps-selected-pages ps-last-selected-pages))
3483
3484
3485 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3486 ;; Customization
3487
3488
3489 ;;;###autoload
3490 (defun ps-print-customize ()
3491 "Customization of ps-print group."
3492 (interactive)
3493 (customize-group 'ps-print))
3494
3495
3496 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3497 ;; User commands
3498
3499
3500 ;;;###autoload
3501 (defun ps-print-buffer (&optional filename)
3502 "Generate and print a PostScript image of the buffer.
3503
3504 Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the
3505 user for a file name, and saves the PostScript image in that file instead of
3506 sending it to the printer.
3507
3508 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3509 send the image to the printer. If FILENAME is a string, save the PostScript
3510 image in a file with that name."
3511 (interactive (list (ps-print-preprint current-prefix-arg)))
3512 (ps-print-without-faces (point-min) (point-max) filename))
3513
3514
3515 ;;;###autoload
3516 (defun ps-print-buffer-with-faces (&optional filename)
3517 "Generate and print a PostScript image of the buffer.
3518 Like `ps-print-buffer', but includes font, color, and underline information in
3519 the generated image. This command works only if you are using a window system,
3520 so it has a way to determine color values."
3521 (interactive (list (ps-print-preprint current-prefix-arg)))
3522 (ps-print-with-faces (point-min) (point-max) filename))
3523
3524
3525 ;;;###autoload
3526 (defun ps-print-region (from to &optional filename)
3527 "Generate and print a PostScript image of the region.
3528 Like `ps-print-buffer', but prints just the current region."
3529 (interactive (ps-print-preprint-region current-prefix-arg))
3530 (ps-print-without-faces from to filename t))
3531
3532
3533 ;;;###autoload
3534 (defun ps-print-region-with-faces (from to &optional filename)
3535 "Generate and print a PostScript image of the region.
3536 Like `ps-print-region', but includes font, color, and underline information in
3537 the generated image. This command works only if you are using a window system,
3538 so it has a way to determine color values."
3539 (interactive (ps-print-preprint-region current-prefix-arg))
3540 (ps-print-with-faces from to filename t))
3541
3542
3543 ;;;###autoload
3544 (defun ps-spool-buffer ()
3545 "Generate and spool a PostScript image of the buffer.
3546 Like `ps-print-buffer' except that the PostScript image is saved in a local
3547 buffer to be sent to the printer later.
3548
3549 Use the command `ps-despool' to send the spooled images to the printer."
3550 (interactive)
3551 (ps-spool-without-faces (point-min) (point-max)))
3552
3553
3554 ;;;###autoload
3555 (defun ps-spool-buffer-with-faces ()
3556 "Generate and spool a PostScript image of the buffer.
3557 Like `ps-spool-buffer', but includes font, color, and underline information in
3558 the generated image. This command works only if you are using a window system,
3559 so it has a way to determine color values.
3560
3561 Use the command `ps-despool' to send the spooled images to the printer."
3562 (interactive)
3563 (ps-spool-with-faces (point-min) (point-max)))
3564
3565
3566 ;;;###autoload
3567 (defun ps-spool-region (from to)
3568 "Generate a PostScript image of the region and spool locally.
3569 Like `ps-spool-buffer', but spools just the current region.
3570
3571 Use the command `ps-despool' to send the spooled images to the printer."
3572 (interactive "r")
3573 (ps-spool-without-faces from to t))
3574
3575
3576 ;;;###autoload
3577 (defun ps-spool-region-with-faces (from to)
3578 "Generate a PostScript image of the region and spool locally.
3579 Like `ps-spool-region', but includes font, color, and underline information in
3580 the generated image. This command works only if you are using a window system,
3581 so it has a way to determine color values.
3582
3583 Use the command `ps-despool' to send the spooled images to the printer."
3584 (interactive "r")
3585 (ps-spool-with-faces from to t))
3586
3587 ;;;###autoload
3588 (defun ps-despool (&optional filename)
3589 "Send the spooled PostScript to the printer.
3590
3591 Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the
3592 user for a file name, and saves the spooled PostScript image in that file
3593 instead of sending it to the printer.
3594
3595 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3596 send the image to the printer. If FILENAME is a string, save the PostScript
3597 image in a file with that name."
3598 (interactive (list (ps-print-preprint current-prefix-arg)))
3599 (ps-do-despool filename))
3600
3601 ;;;###autoload
3602 (defun ps-line-lengths ()
3603 "Display the correspondence between a line length and a font size.
3604 Done using the current ps-print setup.
3605 Try: pr -t file | awk '{printf \"%3d %s\n\", length($0), $0}' | sort -r | head"
3606 (interactive)
3607 (ps-line-lengths-internal))
3608
3609 ;;;###autoload
3610 (defun ps-nb-pages-buffer (nb-lines)
3611 "Display number of pages to print this buffer, for various font heights.
3612 The table depends on the current ps-print setup."
3613 (interactive (ps-count-lines-preprint (point-min) (point-max)))
3614 (ps-nb-pages nb-lines))
3615
3616 ;;;###autoload
3617 (defun ps-nb-pages-region (nb-lines)
3618 "Display number of pages to print the region, for various font heights.
3619 The table depends on the current ps-print setup."
3620 (interactive (ps-count-lines-preprint (mark) (point)))
3621 (ps-nb-pages nb-lines))
3622
3623 (defvar ps-prefix-quote nil
3624 "Used for `ps-print-quote' (which see).")
3625
3626 ;;;###autoload
3627 (defun ps-setup ()
3628 "Return the current PostScript-generation setup."
3629 (let (ps-prefix-quote)
3630 (mapconcat
3631 #'ps-print-quote
3632 (list
3633 (concat "\n;;; (" (if (featurep 'xemacs) "XEmacs" "Emacs")
3634 ") ps-print version " ps-print-version "\n")
3635 ";; internal vars"
3636 (ps-comment-string "emacs-version " emacs-version)
3637 (ps-comment-string "ps-windows-system " ps-windows-system)
3638 (ps-comment-string "ps-lp-system " ps-lp-system)
3639 nil
3640 '(25 . ps-print-color-p)
3641 '(25 . ps-lpr-command)
3642 '(25 . ps-lpr-switches)
3643 '(25 . ps-printer-name)
3644 '(25 . ps-printer-name-option)
3645 '(25 . ps-print-region-function)
3646 '(25 . ps-manual-feed)
3647 '(25 . ps-end-with-control-d)
3648 nil
3649 '(23 . ps-paper-type)
3650 '(23 . ps-warn-paper-type)
3651 '(23 . ps-landscape-mode)
3652 '(23 . ps-print-upside-down)
3653 '(23 . ps-number-of-columns)
3654 nil
3655 '(23 . ps-zebra-stripes)
3656 '(23 . ps-zebra-stripe-height)
3657 '(23 . ps-zebra-stripe-follow)
3658 '(23 . ps-zebra-color)
3659 '(23 . ps-line-number)
3660 '(23 . ps-line-number-step)
3661 '(23 . ps-line-number-start)
3662 nil
3663 '(17 . ps-razzle-dazzle)
3664 '(17 . ps-default-bg)
3665 '(17 . ps-default-fg)
3666 '(17 . ps-fg-validate-p)
3667 '(17 . ps-fg-list)
3668 nil
3669 '(23 . ps-use-face-background)
3670 nil
3671 '(28 . ps-print-control-characters)
3672 nil
3673 '(26 . ps-print-background-image)
3674 nil
3675 '(25 . ps-print-background-text)
3676 nil
3677 '(29 . ps-error-handler-message)
3678 '(29 . ps-user-defined-prologue)
3679 '(29 . ps-print-prologue-header)
3680 '(29 . ps-postscript-code-directory)
3681 '(29 . ps-adobe-tag)
3682 nil
3683 '(30 . ps-left-margin)
3684 '(30 . ps-right-margin)
3685 '(30 . ps-inter-column)
3686 '(30 . ps-bottom-margin)
3687 '(30 . ps-top-margin)
3688 '(30 . ps-print-only-one-header)
3689 '(30 . ps-switch-header)
3690 '(30 . ps-print-header)
3691 '(30 . ps-header-lines)
3692 '(30 . ps-header-offset)
3693 '(30 . ps-header-line-pad)
3694 '(30 . ps-print-header-frame)
3695 '(30 . ps-header-frame-alist)
3696 '(30 . ps-print-footer)
3697 '(30 . ps-footer-lines)
3698 '(30 . ps-footer-offset)
3699 '(30 . ps-footer-line-pad)
3700 '(30 . ps-print-footer-frame)
3701 '(30 . ps-footer-frame-alist)
3702 '(30 . ps-show-n-of-n)
3703 '(30 . ps-spool-config)
3704 '(30 . ps-spool-duplex)
3705 '(30 . ps-spool-tumble)
3706 '(30 . ps-banner-page-when-duplexing)
3707 '(30 . ps-left-header)
3708 '(30 . ps-right-header)
3709 '(30 . ps-left-footer)
3710 '(30 . ps-right-footer)
3711 nil
3712 '(23 . ps-n-up-printing)
3713 '(23 . ps-n-up-margin)
3714 '(23 . ps-n-up-border-p)
3715 '(23 . ps-n-up-filling)
3716 nil
3717 '(26 . ps-multibyte-buffer)
3718 '(26 . ps-font-family)
3719 '(26 . ps-font-size)
3720 '(26 . ps-header-font-family)
3721 '(26 . ps-header-font-size)
3722 '(26 . ps-header-title-font-size)
3723 '(26 . ps-footer-font-family)
3724 '(26 . ps-footer-font-size)
3725 '(26 . ps-line-number-color)
3726 '(26 . ps-line-number-font)
3727 '(26 . ps-line-number-font-size)
3728 '(26 . ps-line-spacing)
3729 '(26 . ps-paragraph-spacing)
3730 '(26 . ps-paragraph-regexp)
3731 '(26 . ps-begin-cut-regexp)
3732 '(26 . ps-end-cut-regexp)
3733 nil
3734 '(23 . ps-even-or-odd-pages)
3735 '(23 . ps-selected-pages)
3736 '(23 . ps-last-selected-pages)
3737 nil
3738 '(31 . ps-build-face-reference)
3739 '(31 . ps-always-build-face-reference)
3740 nil
3741 '(20 . ps-auto-font-detect)
3742 '(20 . ps-bold-faces)
3743 '(20 . ps-italic-faces)
3744 '(20 . ps-underlined-faces)
3745 '(20 . ps-black-white-faces)
3746 " )\n
3747 \;; The following customized variables have long lists and are seldom modified:
3748 \;; ps-page-dimensions-database
3749 \;; ps-font-info-database
3750
3751 \;;; ps-print - end of settings\n")
3752 "\n")))
3753
3754
3755 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3756 ;; Utility functions and variables:
3757
3758
3759 (defun ps-print-quote (elt)
3760 "Quote ELT for printing (used for showing settings).
3761
3762 If ELT is nil, return an empty string.
3763 If ELT is string, return it.
3764 Otherwise, ELT should be a cons (LEN . SYM) where SYM is a variable symbol and
3765 LEN is the field length where SYM name will be inserted. The variable
3766 `ps-prefix-quote' is used to form the string, if `ps-prefix-quote' is nil, it's
3767 used \"(setq \" as prefix; otherwise, it's used \" \". So, the string
3768 generated is:
3769
3770 * If `ps-prefix-quote' is nil:
3771 \"(setq SYM-NAME SYM-VALUE\"
3772 |<------->|
3773 LEN
3774
3775 * If `ps-prefix-quote' is non-nil:
3776 \" SYM-NAME SYM-VALUE\"
3777 |<------->|
3778 LEN
3779
3780 If `ps-prefix-quote' is nil, it's set to t after generating string."
3781 (cond
3782 ((stringp elt) elt)
3783 ((and (consp elt) (integerp (car elt))
3784 (symbolp (cdr elt)) (boundp (cdr elt)))
3785 (let* ((col (car elt))
3786 (sym (cdr elt))
3787 (key (symbol-name sym))
3788 (len (length key))
3789 (val (symbol-value sym)))
3790 (concat (if ps-prefix-quote
3791 " "
3792 (setq ps-prefix-quote t)
3793 "(setq ")
3794 key
3795 (if (> col len)
3796 (make-string (- col len) ?\s)
3797 " ")
3798 (ps-value-string val))))
3799 (t "")
3800 ))
3801
3802
3803 (defun ps-value-string (val)
3804 "Return a string representation of VAL. Used by `ps-print-quote'."
3805 (cond ((null val)
3806 "nil")
3807 ((eq val t)
3808 "t")
3809 ((or (symbolp val) (listp val))
3810 (format "'%S" val))
3811 (t
3812 (format "%S" val))))
3813
3814
3815 (defun ps-comment-string (str value)
3816 "Return a comment string like \";; STR = VALUE\"."
3817 (format ";; %s = %s" str (ps-value-string value)))
3818
3819
3820 (defun ps-value (alist-sym key)
3821 "Return value from association list ALIST-SYM which car is `eq' to KEY."
3822 (cdr (assq key (symbol-value alist-sym))))
3823
3824
3825 (defun ps-get (alist-sym key)
3826 "Return element from association list ALIST-SYM which car is `eq' to KEY."
3827 (assq key (symbol-value alist-sym)))
3828
3829
3830 (defun ps-put (alist-sym key value)
3831 "Store element (KEY . VALUE) into association list ALIST-SYM.
3832 If KEY already exists in ALIST-SYM, modify cdr to VALUE.
3833 It can be retrieved with `(ps-get ALIST-SYM KEY)'."
3834 (let ((elt: (assq key (symbol-value alist-sym)))) ; to avoid name conflict
3835 (if elt:
3836 (setcdr elt: value)
3837 (setq elt: (cons key value))
3838 (set alist-sym (cons elt: (symbol-value alist-sym))))
3839 elt:))
3840
3841
3842 (defun ps-del (alist-sym key)
3843 "Delete by side effect element KEY from association list ALIST-SYM."
3844 (let ((a:list: (symbol-value alist-sym)) ; to avoid name conflict
3845 old)
3846 (while a:list:
3847 (if (eq key (car (car a:list:)))
3848 (progn
3849 (if old
3850 (setcdr old (cdr a:list:))
3851 (set alist-sym (cdr a:list:)))
3852 (setq a:list: nil))
3853 (setq old a:list:
3854 a:list: (cdr a:list:)))))
3855 (symbol-value alist-sym))
3856
3857
3858 (defun ps-time-stamp-locale-default ()
3859 "Return the locale's \"preferred\" date as, for example, \"06/18/01\"."
3860 (format-time-string "%x"))
3861
3862
3863 (defun ps-time-stamp-mon-dd-yyyy ()
3864 "Return date as \"Jun 18 2001\"."
3865 (format-time-string "%b %d %Y"))
3866
3867
3868 (defun ps-time-stamp-yyyy-mm-dd ()
3869 "Return date as \"2001-06-18\" (ISO date)."
3870 (format-time-string "%Y-%m-%d"))
3871
3872
3873 ;; Alias for `ps-time-stamp-yyyy-mm-dd' (which see).
3874 (defalias 'ps-time-stamp-iso8601 'ps-time-stamp-yyyy-mm-dd)
3875
3876
3877 (defun ps-time-stamp-hh:mm:ss ()
3878 "Return time as \"17:28:31\"."
3879 (format-time-string "%T"))
3880
3881
3882 (and (featurep 'xemacs)
3883 ;; XEmacs change: Need to check for emacs-major-version too.
3884 (or (< emacs-major-version 19)
3885 (and (= emacs-major-version 19) (< emacs-minor-version 12)))
3886 (setq ps-print-color-p nil))
3887
3888
3889 ;; Return t if the device (which can be changed during an emacs session)
3890 ;; can handle colors.
3891 ;; This function is not yet implemented for GNU emacs.
3892 (defalias 'ps-color-device
3893 (cond ((and (featurep 'xemacs)
3894 ;; XEmacs change: Need to check for emacs-major-version too.
3895 (or (> emacs-major-version 19)
3896 (and (= emacs-major-version 19)
3897 (>= emacs-minor-version 12)))) ; XEmacs >= 19.12
3898 (lambda ()
3899 (eq (device-class) 'color)))
3900
3901 (t ; Emacs
3902 (lambda ()
3903 (if (fboundp 'color-values)
3904 (color-values "Green")
3905 t)))))
3906
3907
3908 (defun ps-xemacs-mapper (extent list)
3909 (when (featurep 'xemacs)
3910 (nconc list
3911 (list (list (extent-start-position extent) 'push extent)
3912 (list (extent-end-position extent) 'pull extent))))
3913 nil)
3914
3915 (defun ps-xemacs-extent-sorter (a b)
3916 (when (featurep 'xemacs)
3917 (< (extent-priority a) (extent-priority b))))
3918
3919 (defun ps-xemacs-face-kind-p (face kind kind-regex)
3920 (when (featurep 'xemacs)
3921 (let* ((frame-font (or (face-font-instance face)
3922 (face-font-instance 'default)))
3923 (kind-cons
3924 (and frame-font
3925 (assq kind
3926 (font-instance-properties frame-font))))
3927 (kind-spec (cdr-safe kind-cons))
3928 (case-fold-search t))
3929 (and kind-spec (string-match kind-regex kind-spec)))))
3930
3931 (when (featurep 'xemacs)
3932 ;; to avoid XEmacs compilation gripes
3933 (defvar coding-system-for-write)
3934 (defvar coding-system-for-read)
3935 (defvar buffer-file-coding-system)
3936
3937 (and (fboundp 'find-coding-system)
3938 (or (find-coding-system 'raw-text-unix)
3939 (copy-coding-system 'no-conversion-unix 'raw-text-unix))))
3940
3941 (defun ps-color-values (x-color)
3942 (if (featurep 'xemacs)
3943 (let ((color (ps-xemacs-color-name x-color)))
3944 (cond
3945 ((fboundp 'x-color-values)
3946 (x-color-values color))
3947 ((and (fboundp 'color-instance-rgb-components)
3948 (ps-color-device))
3949 (color-instance-rgb-components
3950 (if (color-instance-p x-color)
3951 x-color
3952 (make-color-instance color))))
3953 (t
3954 (error "No available function to determine X color values"))))
3955 (cond
3956 ((fboundp 'color-values)
3957 (color-values x-color))
3958 ((fboundp 'x-color-values)
3959 (x-color-values x-color))
3960 (t
3961 (error "No available function to determine X color values")))))
3962
3963 (defun ps-face-bold-p (face)
3964 (if (featurep 'xemacs)
3965 (or (ps-xemacs-face-kind-p face 'WEIGHT_NAME "bold\\|demibold")
3966 (memq face ps-bold-faces)) ; Kludge-compatible
3967 (or (face-bold-p face)
3968 (memq face ps-bold-faces))))
3969
3970 (defun ps-face-italic-p (face)
3971 (if (featurep 'xemacs)
3972 (or (ps-xemacs-face-kind-p face 'ANGLE_NAME "i\\|o")
3973 (ps-xemacs-face-kind-p face 'SLANT "i\\|o")
3974 (memq face ps-italic-faces)) ; Kludge-compatible
3975 (or (face-italic-p face)
3976 (memq face ps-italic-faces))))
3977
3978 (defvar ps-print-color-scale 1.0)
3979
3980 (defun ps-color-scale (color)
3981 ;; Scale 16-bit X-COLOR-VALUE to PostScript color value in [0, 1] interval.
3982 (mapcar #'(lambda (value) (/ value ps-print-color-scale))
3983 (ps-color-values color)))
3984
3985
3986 (defun ps-face-underlined-p (face)
3987 (or (face-underline-p face)
3988 (memq face ps-underlined-faces)))
3989
3990
3991 (defun ps-prologue-file (filenumber)
3992 "If prologue FILENUMBER exists and is readable, return contents as string.
3993
3994 Note: No major/minor-mode is activated and no local variables are evaluated for
3995 FILENUMBER, but proper EOL-conversion and character interpretation is
3996 done!"
3997 (let ((filename (convert-standard-filename
3998 (expand-file-name (format "ps-prin%d.ps" filenumber)
3999 ps-postscript-code-directory))))
4000 (if (and (file-exists-p filename)
4001 (file-readable-p filename))
4002 (with-temp-buffer
4003 (insert-file-contents filename)
4004 (buffer-string))
4005 (error "ps-print PostScript prologue `%s' file was not found"
4006 filename))))
4007
4008
4009 (defvar ps-mark-code-directory nil)
4010
4011 (defvar ps-print-prologue-0 ""
4012 "ps-print PostScript error handler.")
4013
4014 (defvar ps-print-prologue-1 ""
4015 "ps-print PostScript prologue.")
4016
4017 ;; Start Editing Here:
4018
4019 (defvar ps-source-buffer nil)
4020 (defvar ps-spool-buffer-name "*PostScript*")
4021 (defvar ps-spool-buffer nil)
4022
4023 (defvar ps-output-head nil)
4024 (defvar ps-output-tail nil)
4025
4026 (defvar ps-page-postscript 0) ; page number
4027 (defvar ps-page-order 0) ; PostScript page counter
4028 (defvar ps-page-sheet 0) ; sheet counter
4029 (defvar ps-page-column 0) ; column counter
4030 (defvar ps-page-printed 0) ; total pages printed
4031 (defvar ps-page-n-up 0) ; n-up counter
4032 (defvar ps-lines-printed 0) ; total lines printed
4033 (defvar ps-showline-count 1) ; line number counter
4034 (defvar ps-first-page nil)
4035 (defvar ps-last-page nil)
4036 (defvar ps-print-page-p t)
4037
4038 (defvar ps-control-or-escape-regexp nil)
4039 (defvar ps-n-up-on nil)
4040
4041 (defvar ps-background-pages nil)
4042 (defvar ps-background-all-pages nil)
4043 (defvar ps-background-text-count 0)
4044 (defvar ps-background-image-count 0)
4045
4046 (defvar ps-current-font 0)
4047 (defvar ps-default-foreground nil)
4048 (defvar ps-default-background nil)
4049 (defvar ps-default-color nil)
4050 (defvar ps-current-color nil)
4051 (defvar ps-current-bg nil)
4052 (defvar ps-foreground-list nil)
4053
4054 (defvar ps-zebra-stripe-full-p nil)
4055 (defvar ps-razchunk 0)
4056
4057 (defvar ps-color-p nil)
4058 (defvar ps-color-format
4059 (if (featurep 'xemacs)
4060 ;; XEmacs will have to make do with %s (princ) for floats.
4061 "%s %s %s"
4062
4063 ;; Emacs understands the %f format; we'll use it to limit color RGB
4064 ;; values to three decimals to cut down some on the size of the
4065 ;; PostScript output.
4066 "%0.3f %0.3f %0.3f"))
4067
4068 ;; These values determine how much print-height to deduct when headers/footers
4069 ;; are turned on. This is a pretty clumsy way of handling it, but it'll do for
4070 ;; now.
4071
4072 (defvar ps-header-pad 0
4073 "Vertical and horizontal space between the header frame and the text.
4074 This is in units of points (1/72 inch).")
4075
4076 (defvar ps-footer-pad 0
4077 "Vertical and horizontal space between the footer frame and the text.
4078 This is in units of points (1/72 inch).")
4079
4080 ;; Define accessors to the dimensions list.
4081
4082 (defmacro ps-page-dimensions-get-width (dims) `(nth 0 ,dims))
4083 (defmacro ps-page-dimensions-get-height (dims) `(nth 1 ,dims))
4084 (defmacro ps-page-dimensions-get-media (dims) `(nth 2 ,dims))
4085
4086 (defvar ps-landscape-page-height nil)
4087
4088 (defvar ps-print-width nil)
4089 (defvar ps-print-height nil)
4090
4091 (defvar ps-height-remaining nil)
4092 (defvar ps-width-remaining nil)
4093
4094 (defvar ps-font-size-internal nil)
4095 (defvar ps-header-font-size-internal nil)
4096 (defvar ps-header-title-font-size-internal nil)
4097 (defvar ps-footer-font-size-internal nil)
4098 (defvar ps-line-spacing-internal nil)
4099 (defvar ps-paragraph-spacing-internal nil)
4100
4101 \f
4102 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4103 ;; Internal Variables
4104
4105
4106 (defvar ps-black-white-faces-alist nil
4107 "Alist of symbolic faces used for black/white PostScript printers.
4108 An element of this list has the same form as `ps-print-face-extension-alist'
4109 \(which see).
4110
4111 Don't change this list directly; instead,
4112 use `ps-extend-face' and `ps-extend-face-list'.
4113 See documentation for `ps-extend-face' for valid extension symbol.
4114 See also documentation for `ps-print-color-p'.")
4115
4116
4117 (defvar ps-print-face-extension-alist nil
4118 "Alist of symbolic faces *WITH* extension features (box, outline, etc).
4119 An element of this list has the following form:
4120
4121 (FACE . [BITS FG BG])
4122
4123 FACE is a symbol denoting a face name
4124 BITS is a bit vector, where each bit correspond
4125 to a feature (bold, underline, etc)
4126 (see documentation for `ps-print-face-map-alist')
4127 FG foreground color (string or nil)
4128 BG background color (string or nil)
4129
4130 Don't change this list directly; instead,
4131 use `ps-extend-face' and `ps-extend-face-list'.
4132 See documentation for `ps-extend-face' for valid extension symbol.")
4133
4134
4135 (defvar ps-print-face-alist nil
4136 "Alist of symbolic faces *WITHOUT* extension features (box, outline, etc).
4137
4138 An element of this list has the same form as an element of
4139 `ps-print-face-extension-alist'.
4140
4141 Don't change this list directly; this list is used by `ps-face-attributes',
4142 `ps-map-face' and `ps-build-reference-face-lists'.")
4143
4144
4145 (defconst ps-print-face-map-alist
4146 '((bold . 1)
4147 (italic . 2)
4148 (underline . 4)
4149 (strikeout . 8)
4150 (overline . 16)
4151 (shadow . 32)
4152 (box . 64)
4153 (outline . 128))
4154 "Alist of all features and the corresponding bit mask.
4155 Each symbol correspond to one bit in a bit vector.")
4156
4157 \f
4158 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4159 ;; Remapping Faces
4160
4161
4162 ;;;###autoload
4163 (defun ps-extend-face-list (face-extension-list &optional merge-p alist-sym)
4164 "Extend face in ALIST-SYM.
4165
4166 If optional MERGE-P is non-nil, extensions in FACE-EXTENSION-LIST are merged
4167 with face extension in ALIST-SYM; otherwise, overrides.
4168
4169 If optional ALIST-SYM is nil, `ps-print-face-extension-alist' is used;
4170 otherwise, it should be an alist symbol.
4171
4172 The elements in FACE-EXTENSION-LIST are like those for `ps-extend-face'.
4173
4174 See `ps-extend-face' for documentation."
4175 (while face-extension-list
4176 (ps-extend-face (car face-extension-list) merge-p alist-sym)
4177 (setq face-extension-list (cdr face-extension-list))))
4178
4179
4180 ;;;###autoload
4181 (defun ps-extend-face (face-extension &optional merge-p alist-sym)
4182 "Extend face in ALIST-SYM.
4183
4184 If optional MERGE-P is non-nil, extensions in FACE-EXTENSION list are merged
4185 with face extensions in ALIST-SYM; otherwise, overrides.
4186
4187 If optional ALIST-SYM is nil, `ps-print-face-extension-alist' is used;
4188 otherwise, it should be an alist symbol.
4189
4190 The elements of FACE-EXTENSION list have the form:
4191
4192 (FACE-NAME FOREGROUND BACKGROUND EXTENSION...)
4193
4194 FACE-NAME is a face name symbol.
4195
4196 FOREGROUND and BACKGROUND may be nil or a string that denotes the
4197 foreground and background colors respectively.
4198
4199 EXTENSION is one of the following symbols:
4200 bold - use bold font.
4201 italic - use italic font.
4202 underline - put a line under text.
4203 strikeout - like underline, but the line is in middle of text.
4204 overline - like underline, but the line is over the text.
4205 shadow - text will have a shadow.
4206 box - text will be surrounded by a box.
4207 outline - print characters as hollow outlines.
4208
4209 If EXTENSION is any other symbol, it is ignored."
4210 (or alist-sym
4211 (setq alist-sym 'ps-print-face-extension-alist))
4212 (let* ((background (nth 2 face-extension))
4213 (foreground (nth 1 face-extension))
4214 (face-name (nth 0 face-extension))
4215 (ps-face (cdr (assq face-name (symbol-value alist-sym))))
4216 (face-vector (or ps-face (vector 0 nil nil)))
4217 (face-bit (ps-extension-bit face-extension)))
4218 ;; extend face
4219 (aset face-vector 0 (if merge-p
4220 (logior (aref face-vector 0) face-bit)
4221 face-bit))
4222 (and (or (not merge-p) (and foreground (stringp foreground)))
4223 (aset face-vector 1 foreground))
4224 (and (or (not merge-p) (and background (stringp background)))
4225 (aset face-vector 2 background))
4226 ;; if face does not exist, insert it
4227 (or ps-face
4228 (set alist-sym (cons (cons face-name face-vector)
4229 (symbol-value alist-sym))))))
4230
4231
4232 (defun ps-extension-bit (face-extension)
4233 (let ((face-bit 0))
4234 ;; map valid symbol extension to bit vector
4235 (setq face-extension (cdr (cdr face-extension)))
4236 (while (setq face-extension (cdr face-extension))
4237 (setq face-bit (logior face-bit
4238 (or (cdr (assq (car face-extension)
4239 ps-print-face-map-alist))
4240 0))))
4241 face-bit))
4242
4243 \f
4244 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4245 ;; Adapted from font-lock: (obsolete stuff)
4246 ;; Originally face attributes were specified via `font-lock-face-attributes'.
4247 ;; Users then changed the default face attributes by setting that variable.
4248 ;; However, we try and be back-compatible and respect its value if set except
4249 ;; for faces where M-x customize has been used to save changes for the face.
4250
4251
4252 (defun ps-font-lock-face-attributes ()
4253 (and (boundp 'font-lock-mode) (symbol-value 'font-lock-mode)
4254 (boundp 'font-lock-face-attributes)
4255 (let ((face-attributes (symbol-value 'font-lock-face-attributes)))
4256 (while face-attributes
4257 (let* ((face-attribute
4258 (car (prog1 face-attributes
4259 (setq face-attributes (cdr face-attributes)))))
4260 (face (car face-attribute)))
4261 ;; Rustle up a `defface' SPEC from a
4262 ;; `font-lock-face-attributes' entry.
4263 (unless (get face 'saved-face)
4264 (let ((foreground (nth 1 face-attribute))
4265 (background (nth 2 face-attribute))
4266 (bold-p (nth 3 face-attribute))
4267 (italic-p (nth 4 face-attribute))
4268 (underline-p (nth 5 face-attribute))
4269 face-spec)
4270 (when foreground
4271 (setq face-spec (cons ':foreground
4272 (cons foreground face-spec))))
4273 (when background
4274 (setq face-spec (cons ':background
4275 (cons background face-spec))))
4276 (when bold-p
4277 (setq face-spec (append '(:weight bold) face-spec)))
4278 (when italic-p
4279 (setq face-spec (append '(:slant italic) face-spec)))
4280 (when underline-p
4281 (setq face-spec (append '(:underline t) face-spec)))
4282 (custom-declare-face face (list (list t face-spec)) nil)
4283 )))))))
4284
4285 \f
4286 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4287 ;; Internal functions and variables
4288
4289
4290 (defun ps-message-log-max ()
4291 (and (not (string= (buffer-name) "*Messages*"))
4292 (boundp 'message-log-max)
4293 message-log-max))
4294
4295
4296 (defvar ps-print-hook nil)
4297 (defvar ps-print-begin-sheet-hook nil)
4298 (defvar ps-print-begin-page-hook nil)
4299 (defvar ps-print-begin-column-hook nil)
4300
4301
4302 (defun ps-print-without-faces (from to &optional filename region-p)
4303 (ps-spool-without-faces from to region-p)
4304 (ps-do-despool filename))
4305
4306
4307 (defun ps-spool-without-faces (from to &optional region-p)
4308 (let ((message-log-max (ps-message-log-max))) ; to print *Messages* buffer
4309 (run-hooks 'ps-print-hook)
4310 (ps-printing-region region-p from to)
4311 (ps-generate (current-buffer) from to 'ps-generate-postscript)))
4312
4313
4314 (defun ps-print-with-faces (from to &optional filename region-p)
4315 (ps-spool-with-faces from to region-p)
4316 (ps-do-despool filename))
4317
4318
4319 (defun ps-spool-with-faces (from to &optional region-p)
4320 (let ((message-log-max (ps-message-log-max))) ; to print *Messages* buffer
4321 (run-hooks 'ps-print-hook)
4322 (ps-printing-region region-p from to)
4323 (ps-generate (current-buffer) from to 'ps-generate-postscript-with-faces)))
4324
4325
4326 (defun ps-count-lines-preprint (from to)
4327 (or (and from to)
4328 (error "The mark is not set now"))
4329 (let ((message-log-max (ps-message-log-max))) ; to count lines of *Messages*
4330 (list (count-lines from to))))
4331
4332
4333 (defun ps-count-lines (from to)
4334 (+ (count-lines from to)
4335 (save-excursion
4336 (goto-char to)
4337 (if (= (current-column) 0) 1 0))))
4338
4339
4340 (defvar ps-printing-region nil
4341 "Variable used to indicate the region that ps-print is printing.
4342 It is a cons, the car of which is the line number where the region begins, and
4343 its cdr is the total number of lines in the buffer. Formatting functions can
4344 use this information to print the original line number (and not the number of
4345 lines printed), and to indicate in the header that the printout is of a partial
4346 file.")
4347
4348
4349 (defvar ps-printing-region-p nil
4350 "Non-nil means ps-print is printing a region.")
4351
4352
4353 (defun ps-printing-region (region-p from to)
4354 (setq ps-printing-region-p region-p
4355 ps-printing-region
4356 (cons (if region-p
4357 (ps-count-lines (point-min) (min from to))
4358 1)
4359 (ps-count-lines (point-min) (point-max)))))
4360
4361 \f
4362 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4363 ;; Internal functions
4364
4365
4366 (defsubst ps-font-alist (font-sym)
4367 (get font-sym 'fonts))
4368
4369 (defun ps-font (font-sym font-type)
4370 "Font family name for text of `font-type', when generating PostScript."
4371 (let* ((font-list (ps-font-alist font-sym))
4372 (normal-font (cdr (assq 'normal font-list))))
4373 (while (and font-list (not (eq font-type (car (car font-list)))))
4374 (setq font-list (cdr font-list)))
4375 (or (cdr (car font-list)) normal-font)))
4376
4377 (defsubst ps-fonts (font-sym)
4378 (mapcar 'cdr (ps-font-alist font-sym)))
4379
4380 (defsubst ps-font-number (font-sym font-type)
4381 (or (ps-alist-position font-type (ps-font-alist font-sym))
4382 0))
4383
4384 (defsubst ps-line-height (font-sym)
4385 "The height of a line, for generating PostScript.
4386 This is the value that ps-print uses to determine the height,
4387 y-dimension, of the lines of text it has printed, and thus affects the
4388 point at which page-breaks are placed.
4389 The line-height is *not* the same as the point size of the font."
4390 (get font-sym 'line-height))
4391
4392 (defsubst ps-title-line-height (font-sym)
4393 "The height of a `title' line, for generating PostScript.
4394 This is the value that ps-print uses to determine the height,
4395 y-dimension, of the lines of text it has printed, and thus affects the
4396 point at which page-breaks are placed.
4397 The title-line-height is *not* the same as the point size of the font."
4398 (get font-sym 'title-line-height))
4399
4400 (defsubst ps-space-width (font-sym)
4401 "The width of a space character, for generating PostScript.
4402 This value is used in expanding tab characters."
4403 (get font-sym 'space-width))
4404
4405 (defsubst ps-avg-char-width (font-sym)
4406 "The average width, in points, of a character, for generating PostScript.
4407 This is the value that ps-print uses to determine the length,
4408 x-dimension, of the text it has printed, and thus affects the point at
4409 which long lines wrap around."
4410 (get font-sym 'avg-char-width))
4411
4412 (defun ps-line-lengths-internal ()
4413 "Display the correspondence between a line length and a font size.
4414 Done using the current ps-print setup.
4415 Try: pr -t file | awk '{printf \"%3d %s\n\", length($0), $0}' | sort -r | head"
4416 (let* ((ps-font-size-internal
4417 (or ps-font-size-internal
4418 (ps-get-font-size 'ps-font-size)))
4419 (ps-header-font-size-internal
4420 (or ps-header-font-size-internal
4421 (ps-get-font-size 'ps-header-font-size)))
4422 (ps-header-title-font-size-internal
4423 (or ps-header-title-font-size-internal
4424 (ps-get-font-size 'ps-header-title-font-size)))
4425 (buf (get-buffer-create "*Line-lengths*"))
4426 (ifs ps-font-size-internal) ; initial font size
4427 (icw (ps-avg-char-width 'ps-font-for-text)) ; initial character width
4428 (print-width (progn (ps-get-page-dimensions)
4429 ps-print-width))
4430 (ps-setup (ps-setup)) ; setup for the current buffer
4431 (fs-min 5) ; minimum font size
4432 cw-min ; minimum character width
4433 nb-cpl-max ; maximum nb of characters per line
4434 (fs-max 14) ; maximum font size
4435 cw-max ; maximum character width
4436 nb-cpl-min ; minimum nb of characters per line
4437 fs ; current font size
4438 cw ; current character width
4439 nb-cpl ; current nb of characters per line
4440 )
4441 (setq cw-min (/ (* icw fs-min) ifs)
4442 nb-cpl-max (floor (/ print-width cw-min))
4443 cw-max (/ (* icw fs-max) ifs)
4444 nb-cpl-min (floor (/ print-width cw-max))
4445 nb-cpl nb-cpl-min)
4446 (set-buffer buf)
4447 (goto-char (point-max))
4448 (or (bobp) (insert "\n" (make-string 75 ?\;) "\n"))
4449 (insert ps-setup
4450 "\nnb char per line / font size\n")
4451 (while (<= nb-cpl nb-cpl-max)
4452 (setq cw (/ print-width (float nb-cpl))
4453 fs (/ (* ifs cw) icw))
4454 (insert (format "%16d %s\n" nb-cpl fs))
4455 (setq nb-cpl (1+ nb-cpl)))
4456 (insert "\n")
4457 (display-buffer buf 'not-this-window)))
4458
4459 (defun ps-nb-pages (nb-lines)
4460 "Display correspondence between font size and the number of pages.
4461 The correspondence is based on having NB-LINES lines of text,
4462 and on the current ps-print setup."
4463 (let* ((ps-font-size-internal
4464 (or ps-font-size-internal
4465 (ps-get-font-size 'ps-font-size)))
4466 (ps-header-font-size-internal
4467 (or ps-header-font-size-internal
4468 (ps-get-font-size 'ps-header-font-size)))
4469 (ps-header-title-font-size-internal
4470 (or ps-header-title-font-size-internal
4471 (ps-get-font-size 'ps-header-title-font-size)))
4472 (ps-line-spacing-internal
4473 (or ps-line-spacing-internal
4474 (ps-get-size ps-line-spacing "line spacing")))
4475 (buf (get-buffer-create "*Nb-Pages*"))
4476 (ils ps-line-spacing-internal) ; initial line spacing
4477 (ifs ps-font-size-internal) ; initial font size
4478 (ilh (ps-line-height 'ps-font-for-text)) ; initial line height
4479 (page-height (progn (ps-get-page-dimensions)
4480 ps-print-height))
4481 (ps-setup (ps-setup)) ; setup for the current buffer
4482 (fs-min 4) ; minimum font size
4483 lh-min ; minimum line height
4484 nb-lpp-max ; maximum nb of lines per page
4485 nb-page-min ; minimum nb of pages
4486 (fs-max 14) ; maximum font size
4487 lh-max ; maximum line height
4488 nb-lpp-min ; minimum nb of lines per page
4489 nb-page-max ; maximum nb of pages
4490 fs ; current font size
4491 lh ; current line height
4492 nb-lpp ; current nb of lines per page
4493 nb-page ; current nb of pages
4494 )
4495 (setq lh-min (/ (- (* (+ ilh ils) fs-min) ils) ifs)
4496 nb-lpp-max (floor (/ page-height lh-min))
4497 nb-page-min (ceiling (/ (float nb-lines) nb-lpp-max))
4498 lh-max (/ (- (* (+ ilh ils) fs-max) ils) ifs)
4499 nb-lpp-min (floor (/ page-height lh-max))
4500 nb-page-max (ceiling (/ (float nb-lines) nb-lpp-min))
4501 nb-page nb-page-min)
4502 (set-buffer buf)
4503 (goto-char (point-max))
4504 (or (bobp) (insert "\n" (make-string 75 ?\;) "\n"))
4505 (insert ps-setup
4506 (format "\nThere are %d lines.\n\n" nb-lines)
4507 "nb page / font size\n")
4508 (while (<= nb-page nb-page-max)
4509 (setq nb-lpp (ceiling (/ nb-lines (float nb-page)))
4510 lh (/ page-height nb-lpp)
4511 fs (/ (* ifs lh) ilh))
4512 (insert (format "%7d %s\n" nb-page fs))
4513 (setq nb-page (1+ nb-page)))
4514 (insert "\n")
4515 (display-buffer buf 'not-this-window)))
4516
4517 ;; macros used in `ps-select-font'
4518 (defmacro ps-lookup (key) `(cdr (assq ,key font-entry)))
4519 (defmacro ps-size-scale (key) `(/ (* (ps-lookup ,key) font-size) size))
4520
4521 (defun ps-select-font (font-family sym font-size title-font-size)
4522 (let ((font-entry (cdr (assq font-family ps-font-info-database))))
4523 (or font-entry
4524 (error "Don't have data to scale font %s. Known fonts families are %s"
4525 font-family
4526 (mapcar 'car ps-font-info-database)))
4527 (let ((size (ps-lookup 'size)))
4528 (put sym 'fonts (ps-lookup 'fonts))
4529 (put sym 'space-width (ps-size-scale 'space-width))
4530 (put sym 'avg-char-width (ps-size-scale 'avg-char-width))
4531 (put sym 'line-height (ps-size-scale 'line-height))
4532 (put sym 'title-line-height
4533 (/ (* (ps-lookup 'line-height) title-font-size) size)))))
4534
4535 (defun ps-get-page-dimensions ()
4536 (let ((page-dimensions (cdr (assq ps-paper-type ps-page-dimensions-database)))
4537 page-width page-height)
4538 (cond
4539 ((null page-dimensions)
4540 (error "`ps-paper-type' must be one of:\n%s"
4541 (mapcar 'car ps-page-dimensions-database)))
4542 ((< ps-number-of-columns 1)
4543 (error "The number of columns %d should be positive"
4544 ps-number-of-columns)))
4545
4546 (ps-select-font ps-font-family 'ps-font-for-text
4547 ps-font-size-internal ps-font-size-internal)
4548 (ps-select-font ps-header-font-family 'ps-font-for-header
4549 ps-header-font-size-internal
4550 ps-header-title-font-size-internal)
4551 (ps-select-font ps-footer-font-family 'ps-font-for-footer
4552 ps-footer-font-size-internal ps-footer-font-size-internal)
4553
4554 (setq page-width (ps-page-dimensions-get-width page-dimensions)
4555 page-height (ps-page-dimensions-get-height page-dimensions))
4556
4557 ;; Landscape mode
4558 (if ps-landscape-mode
4559 ;; exchange width and height
4560 (setq page-width (prog1 page-height (setq page-height page-width))))
4561
4562 ;; It is used to get the lower right corner (only in landscape mode)
4563 (setq ps-landscape-page-height page-height)
4564
4565 ;; | lm | text | ic | text | ic | text | rm |
4566 ;; page-width == lm + n * pw + (n - 1) * ic + rm
4567 ;; => pw == (page-width - lm -rm - (n - 1) * ic) / n
4568 (setq ps-print-width (/ (- page-width
4569 ps-left-margin ps-right-margin
4570 (* (1- ps-number-of-columns) ps-inter-column))
4571 ps-number-of-columns))
4572 (if (<= ps-print-width 0)
4573 (error "Bad horizontal layout:
4574 page-width == %s
4575 ps-left-margin == %s
4576 ps-right-margin == %s
4577 ps-inter-column == %s
4578 ps-number-of-columns == %s
4579 | lm | text | ic | text | ic | text | rm |
4580 page-width == lm + n * print-width + (n - 1) * ic + rm
4581 => print-width == %d !"
4582 page-width
4583 ps-left-margin
4584 ps-right-margin
4585 ps-inter-column
4586 ps-number-of-columns
4587 ps-print-width))
4588
4589 (setq ps-print-height
4590 (- page-height ps-bottom-margin ps-top-margin))
4591 (if (<= ps-print-height 0)
4592 (error "Bad vertical layout:
4593 ps-top-margin == %s
4594 ps-bottom-margin == %s
4595 page-height == bm + print-height + tm
4596 => print-height == %d !"
4597 ps-top-margin
4598 ps-bottom-margin
4599 ps-print-height))
4600 ;; If headers are turned on, deduct the height of the header from the print
4601 ;; height.
4602 (if ps-print-header
4603 (setq ps-header-pad (* ps-header-line-pad
4604 (ps-title-line-height 'ps-font-for-header))
4605 ps-print-height (- ps-print-height
4606 ps-header-offset
4607 ps-header-pad
4608 (ps-title-line-height 'ps-font-for-header)
4609 (* (ps-line-height 'ps-font-for-header)
4610 (1- ps-header-lines))
4611 ps-header-pad)))
4612 (if (<= ps-print-height 0)
4613 (error "Bad vertical layout (header):
4614 ps-top-margin == %s
4615 ps-bottom-margin == %s
4616 ps-header-offset == %s
4617 ps-header-pad == %s
4618 header-height == %s
4619 page-height == bm + print-height + tm - ho - hh
4620 => print-height == %d !"
4621 ps-top-margin
4622 ps-bottom-margin
4623 ps-header-offset
4624 ps-header-pad
4625 (+ ps-header-pad
4626 (ps-title-line-height 'ps-font-for-header)
4627 (* (ps-line-height 'ps-font-for-header)
4628 (1- ps-header-lines))
4629 ps-header-pad)
4630 ps-print-height))
4631 ;; If footers are turned on, deduct the height of the footer from the print
4632 ;; height.
4633 (if ps-print-footer
4634 (setq ps-footer-pad (* ps-footer-line-pad
4635 (ps-title-line-height 'ps-font-for-footer))
4636 ps-print-height (- ps-print-height
4637 ps-footer-offset
4638 ps-footer-pad
4639 (* (ps-line-height 'ps-font-for-footer)
4640 (1- ps-footer-lines))
4641 ps-footer-pad)))
4642 (if (<= ps-print-height 0)
4643 (error "Bad vertical layout (footer):
4644 ps-top-margin == %s
4645 ps-bottom-margin == %s
4646 ps-footer-offset == %s
4647 ps-footer-pad == %s
4648 footer-height == %s
4649 page-height == bm + print-height + tm - fo - fh
4650 => print-height == %d !"
4651 ps-top-margin
4652 ps-bottom-margin
4653 ps-footer-offset
4654 ps-footer-pad
4655 (+ ps-footer-pad
4656 (* (ps-line-height 'ps-font-for-footer)
4657 (1- ps-footer-lines))
4658 ps-footer-pad)
4659 ps-print-height))
4660 ;; ps-zebra-stripe-follow is `full' or `full-follow'
4661 (if ps-zebra-stripe-full-p
4662 (let* ((line-height (ps-line-height 'ps-font-for-text))
4663 (zebra (* (+ line-height ps-line-spacing-internal)
4664 ps-zebra-stripe-height)))
4665 (setq ps-print-height (- (* (floor ps-print-height zebra) zebra)
4666 line-height))
4667 (if (<= ps-print-height 0)
4668 (error "Bad vertical layout (full zebra stripe follow):
4669 ps-zebra-stripe-follow == %s
4670 ps-zebra-stripe-height == %s
4671 font-text-height == %s
4672 line-spacing == %s
4673 page-height == ((floor print-height ((th + ls) * zh)) * ((th + ls) * zh)) - th
4674 => print-height == %d !"
4675 ps-zebra-stripe-follow
4676 ps-zebra-stripe-height
4677 (ps-line-height 'ps-font-for-text)
4678 ps-line-spacing-internal
4679 ps-print-height))))))
4680
4681
4682 (defun ps-print-preprint-region (prefix-arg)
4683 (or (ps-mark-active-p)
4684 (error "The mark is not set now"))
4685 (list (point) (mark) (ps-print-preprint prefix-arg)))
4686
4687
4688 (defun ps-print-preprint (prefix-arg)
4689 (and prefix-arg
4690 (or (numberp prefix-arg)
4691 (listp prefix-arg))
4692 (let* ((name (concat (file-name-nondirectory (or (buffer-file-name)
4693 (buffer-name)))
4694 ".ps"))
4695 (prompt (format "Save PostScript to file (default %s): " name))
4696 (res (read-file-name prompt default-directory name nil)))
4697 (while (cond ((file-directory-p res)
4698 (ding)
4699 (setq prompt "It's a directory"))
4700 ((not (file-writable-p res))
4701 (ding)
4702 (setq prompt "File is unwritable"))
4703 ((file-exists-p res)
4704 (setq prompt "File exists")
4705 (not (y-or-n-p (format "File `%s' exists; overwrite? "
4706 res))))
4707 (t nil))
4708 (setq res (read-file-name
4709 (format "%s; save PostScript to file: " prompt)
4710 (file-name-directory res) nil nil
4711 (file-name-nondirectory res))))
4712 (if (file-directory-p res)
4713 (expand-file-name name (file-name-as-directory res))
4714 res))))
4715
4716 ;; The following functions implement a simple list-buffering scheme so
4717 ;; that ps-print doesn't have to repeatedly switch between buffers
4718 ;; while spooling. The functions `ps-output' and `ps-output-string' build
4719 ;; up the lists; the function `ps-flush-output' takes the lists and
4720 ;; insert its contents into the spool buffer (*PostScript*).
4721
4722 (defvar ps-string-escape-codes
4723 (let ((table (make-vector 256 nil))
4724 (char ?\000))
4725 ;; control characters
4726 (while (<= char ?\037)
4727 (aset table char (format "\\%03o" char))
4728 (setq char (1+ char)))
4729 ;; printable characters
4730 (while (< char ?\177)
4731 (aset table char (format "%c" char))
4732 (setq char (1+ char)))
4733 ;; DEL and 8-bit characters
4734 (while (<= char ?\377)
4735 (aset table char (format "\\%o" char))
4736 (setq char (1+ char)))
4737 ;; Override ASCII formatting characters with named escape code:
4738 (aset table ?\n "\\n") ; [NL] linefeed
4739 (aset table ?\r "\\r") ; [CR] carriage return
4740 (aset table ?\t "\\t") ; [HT] horizontal tab
4741 (aset table ?\b "\\b") ; [BS] backspace
4742 (aset table ?\f "\\f") ; [NP] form feed
4743 ;; Escape PostScript escape and string delimiter characters:
4744 (aset table ?\\ "\\\\")
4745 (aset table ?\( "\\(")
4746 (aset table ?\) "\\)")
4747 table)
4748 "Vector used to map characters to PostScript string escape codes.")
4749
4750 (defsubst ps-output-string-prim (string)
4751 (insert "(") ;insert start-string delimiter
4752 (save-excursion ;insert string
4753 (insert (string-as-unibyte string)))
4754 ;; Find and quote special characters as necessary for PS
4755 ;; This skips everything except control chars, non-ASCII chars, (, ) and \.
4756 (while (progn (skip-chars-forward " -'*-[]-~") (not (eobp)))
4757 (let ((special (following-char)))
4758 (delete-char 1)
4759 (insert
4760 (if (and (<= 0 special) (<= special 255))
4761 (aref ps-string-escape-codes special)
4762 ;; insert hexadecimal representation if character code is out of range
4763 (format "\\%04X" special)
4764 ))))
4765 (goto-char (point-max))
4766 (insert ")")) ;insert end-string delimiter
4767
4768 (defsubst ps-init-output-queue ()
4769 (setq ps-output-head (list "")
4770 ps-output-tail ps-output-head))
4771
4772
4773 (defun ps-selected-pages ()
4774 (while (progn
4775 (setq ps-first-page (car (car ps-selected-pages))
4776 ps-last-page (cdr (car ps-selected-pages))
4777 ps-selected-pages (cdr ps-selected-pages))
4778 (and ps-selected-pages
4779 (< ps-last-page ps-page-postscript)))))
4780
4781
4782 (defsubst ps-print-page-p ()
4783 (setq ps-print-page-p
4784 (and (cond ((null ps-first-page))
4785 ((<= ps-page-postscript ps-last-page)
4786 (<= ps-first-page ps-page-postscript))
4787 (ps-selected-pages
4788 (ps-selected-pages)
4789 (and (<= ps-first-page ps-page-postscript)
4790 (<= ps-page-postscript ps-last-page)))
4791 (t
4792 nil))
4793 (cond ((eq ps-even-or-odd-pages 'even-page)
4794 (= (logand ps-page-postscript 1) 0))
4795 ((eq ps-even-or-odd-pages 'odd-page)
4796 (= (logand ps-page-postscript 1) 1))
4797 (t)
4798 ))))
4799
4800
4801 (defsubst ps-print-sheet-p ()
4802 (setq ps-print-page-p
4803 (cond ((eq ps-even-or-odd-pages 'even-sheet)
4804 (= (logand ps-page-sheet 1) 0))
4805 ((eq ps-even-or-odd-pages 'odd-sheet)
4806 (= (logand ps-page-sheet 1) 1))
4807 (t)
4808 )))
4809
4810
4811 (defun ps-output (&rest args)
4812 (when ps-print-page-p
4813 (setcdr ps-output-tail args)
4814 (while (cdr ps-output-tail)
4815 (setq ps-output-tail (cdr ps-output-tail)))))
4816
4817 (defun ps-output-string (string)
4818 (ps-output t string))
4819
4820 ;; Output strings in the list ARGS in the PostScript prologue part.
4821 (defun ps-output-prologue (args)
4822 (ps-output 'prologue (if (stringp args) (list args) args)))
4823
4824 (defun ps-flush-output ()
4825 (save-excursion
4826 (set-buffer ps-spool-buffer)
4827 (goto-char (point-max))
4828 (while ps-output-head
4829 (let ((it (car ps-output-head)))
4830 (cond
4831 ((eq t it)
4832 (setq ps-output-head (cdr ps-output-head))
4833 (ps-output-string-prim (car ps-output-head)))
4834 ((eq 'prologue it)
4835 (setq ps-output-head (cdr ps-output-head))
4836 (save-excursion
4837 (search-backward "\nBeginDoc")
4838 (forward-char 1)
4839 (apply 'insert (car ps-output-head))))
4840 (t
4841 (insert it))))
4842 (setq ps-output-head (cdr ps-output-head))))
4843 (ps-init-output-queue))
4844
4845 (defun ps-insert-file (fname)
4846 (ps-flush-output)
4847 (save-excursion
4848 (set-buffer ps-spool-buffer)
4849 (goto-char (point-max))
4850 (insert-file-contents fname)))
4851
4852 ;; These functions are used in `ps-mule' to get charset of header and footer.
4853 ;; To avoid unnecessary calls to functions in `ps-left-header',
4854 ;; `ps-right-header', `ps-left-footer' and `ps-right-footer'.
4855
4856 (defun ps-generate-string-list (content)
4857 (let (str)
4858 (while content
4859 (setq str (cons (cond
4860 ;; string
4861 ((stringp (car content))
4862 (car content))
4863 ;; function symbol
4864 ((functionp (car content))
4865 (concat "(" (funcall (car content)) ")"))
4866 ;; variable symbol
4867 ((and (symbolp (car content)) (boundp (car content)))
4868 (concat "(" (symbol-value (car content)) ")"))
4869 ;; otherwise, empty string
4870 (t
4871 ""))
4872 str)
4873 content (cdr content)))
4874 (nreverse str)))
4875
4876 (defvar ps-lh-cache nil)
4877 (defvar ps-rh-cache nil)
4878 (defvar ps-lf-cache nil)
4879 (defvar ps-rf-cache nil)
4880
4881 (defun ps-header-footer-string ()
4882 (and ps-print-header
4883 (setq ps-lh-cache (ps-generate-string-list ps-left-header)
4884 ps-rh-cache (ps-generate-string-list ps-right-header)))
4885 (and ps-print-footer
4886 (setq ps-lf-cache (ps-generate-string-list ps-left-footer)
4887 ps-rf-cache (ps-generate-string-list ps-right-footer)))
4888 (append ps-lh-cache ps-rh-cache ps-lf-cache ps-rf-cache))
4889
4890 ;; These functions insert the arrays that define the contents of the headers.
4891
4892 (defun ps-generate-header-line (fonttag &optional content)
4893 (ps-output " [" fonttag " ")
4894 (cond
4895 ;; Literal strings should be output as is -- the string must contain its own
4896 ;; PS string delimiters, '(' and ')', if necessary.
4897 ((stringp content)
4898 (ps-output (ps-mule-encode-header-string content fonttag)))
4899
4900 ;; Functions are called -- they should return strings; they will be inserted
4901 ;; as strings and the PS string delimiters added.
4902 ((functionp content)
4903 (ps-output-string (ps-mule-encode-header-string (funcall content)
4904 fonttag)))
4905
4906 ;; Variables will have their contents inserted. They should contain
4907 ;; strings, and will be inserted as strings.
4908 ((and (symbolp content) (boundp content))
4909 (ps-output-string (ps-mule-encode-header-string (symbol-value content)
4910 fonttag)))
4911
4912 ;; Anything else will get turned into an empty string.
4913 (t
4914 (ps-output-string "")))
4915 (ps-output "]\n"))
4916
4917 (defun ps-generate-header (name fonttag0 fonttag1 contents)
4918 (ps-output "/" name "[\n")
4919 (and contents (> ps-header-lines 0)
4920 (let ((count 1))
4921 (ps-generate-header-line fonttag0 (car contents))
4922 (while (and (< count ps-header-lines)
4923 (setq contents (cdr contents)))
4924 (ps-generate-header-line fonttag1 (car contents))
4925 (setq count (1+ count)))))
4926 (ps-output "]def\n"))
4927
4928
4929 (defun ps-output-boolean (name bool)
4930 (ps-output (format "/%s %s def\n" name (if bool "true" "false"))))
4931
4932
4933 (defun ps-output-frame-properties (name alist)
4934 (ps-output "/" name " ["
4935 (ps-format-color (cdr (assq 'fore-color alist)) 0.0)
4936 (ps-format-color (cdr (assq 'back-color alist)) 0.9)
4937 (ps-float-format (or (cdr (assq 'border-width alist)) 0.4))
4938 (ps-format-color (cdr (assq 'border-color alist)) 0.0)
4939 (ps-format-color (cdr (assq 'shadow-color alist)) 0.0)
4940 "]def\n"))
4941
4942
4943 (defun ps-background-pages (page-list func)
4944 (if page-list
4945 (mapcar
4946 #'(lambda (pages)
4947 (let ((start (if (consp pages) (car pages) pages))
4948 (end (if (consp pages) (cdr pages) pages)))
4949 (and (integerp start) (integerp end) (<= start end)
4950 (add-to-list 'ps-background-pages (vector start end func)))))
4951 page-list)
4952 (setq ps-background-all-pages (cons func ps-background-all-pages))))
4953
4954
4955 (defconst ps-boundingbox-re
4956 "^%%BoundingBox:\
4957 \\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)")
4958
4959
4960 (defun ps-get-boundingbox ()
4961 (save-excursion
4962 (set-buffer ps-spool-buffer)
4963 (save-excursion
4964 (if (re-search-forward ps-boundingbox-re nil t)
4965 (vector (string-to-number ; lower x
4966 (buffer-substring (match-beginning 1) (match-end 1)))
4967 (string-to-number ; lower y
4968 (buffer-substring (match-beginning 2) (match-end 2)))
4969 (string-to-number ; upper x
4970 (buffer-substring (match-beginning 3) (match-end 3)))
4971 (string-to-number ; upper y
4972 (buffer-substring (match-beginning 4) (match-end 4))))
4973 (vector 0 0 0 0)))))
4974
4975
4976 ;; Emacs understands the %f format; we'll use it to limit color RGB values
4977 ;; to three decimals to cut down some on the size of the PostScript output.
4978 ;; XEmacs will have to make do with %s (princ) for floats.
4979
4980 (defvar ps-float-format (if (featurep 'xemacs)
4981 "%s " ; XEmacs
4982 "%0.3f ")) ; Emacs
4983
4984
4985 (defun ps-float-format (value &optional default)
4986 (let ((literal (or value default)))
4987 (cond ((null literal)
4988 " ")
4989 ((numberp literal)
4990 (format ps-float-format (* literal 1.0))) ; force float number
4991 (t
4992 (format "%s " literal))
4993 )))
4994
4995
4996 (defun ps-background-text ()
4997 (mapcar
4998 #'(lambda (text)
4999 (setq ps-background-text-count (1+ ps-background-text-count))
5000 (ps-output (format "/ShowBackText-%d{\n" ps-background-text-count))
5001 (ps-output-string (nth 0 text)) ; text
5002 (ps-output
5003 "\n"
5004 (ps-float-format (nth 4 text) 200.0) ; font size
5005 (format "/%s " (or (nth 3 text) "Times-Roman")) ; font name
5006 (ps-float-format (nth 6 text)
5007 "PrintHeight PrintPageWidth atan") ; rotation
5008 (ps-float-format (nth 5 text) 0.85) ; gray
5009 (ps-float-format (nth 1 text) "0") ; x position
5010 (ps-float-format (nth 2 text) "0") ; y position
5011 "\nShowBackText}def\n")
5012 (ps-background-pages (nthcdr 7 text) ; page list
5013 (format "ShowBackText-%d\n"
5014 ps-background-text-count)))
5015 ps-print-background-text))
5016
5017
5018 (defun ps-background-image ()
5019 (mapcar
5020 #'(lambda (image)
5021 (let ((image-file (expand-file-name (nth 0 image))))
5022 (when (file-readable-p image-file)
5023 (setq ps-background-image-count (1+ ps-background-image-count))
5024 (ps-output
5025 (format "/ShowBackImage-%d{\n--back-- "
5026 ps-background-image-count)
5027 (ps-float-format (nth 5 image) 0.0) ; rotation
5028 (ps-float-format (nth 3 image) 1.0) ; x scale
5029 (ps-float-format (nth 4 image) 1.0) ; y scale
5030 (ps-float-format (nth 1 image) ; x position
5031 "PrintPageWidth 2 div")
5032 (ps-float-format (nth 2 image) ; y position
5033 "PrintHeight 2 div BottomMargin add")
5034 "\nBeginBackImage\n")
5035 (ps-insert-file image-file)
5036 ;; coordinate adjustment to center image
5037 ;; around x and y position
5038 (let ((box (ps-get-boundingbox)))
5039 (save-excursion
5040 (set-buffer ps-spool-buffer)
5041 (save-excursion
5042 (if (re-search-backward "^--back--" nil t)
5043 (replace-match
5044 (format "%s %s"
5045 (ps-float-format
5046 (- (+ (/ (- (aref box 2) (aref box 0)) 2.0)
5047 (aref box 0))))
5048 (ps-float-format
5049 (- (+ (/ (- (aref box 3) (aref box 1)) 2.0)
5050 (aref box 1)))))
5051 t)))))
5052 (ps-output "\nEndBackImage}def\n")
5053 (ps-background-pages (nthcdr 6 image) ; page list
5054 (format "ShowBackImage-%d\n"
5055 ps-background-image-count)))))
5056 ps-print-background-image))
5057
5058
5059 (defun ps-background (page-number)
5060 (let (has-local-background)
5061 (mapc #'(lambda (range)
5062 (and (<= (aref range 0) page-number)
5063 (<= page-number (aref range 1))
5064 (if has-local-background
5065 (ps-output (aref range 2))
5066 (setq has-local-background t)
5067 (ps-output "/printLocalBackground{\n"
5068 (aref range 2)))))
5069 ps-background-pages)
5070 (and has-local-background (ps-output "}def\n"))))
5071
5072
5073 ;; Return a list of the distinct elements of LIST.
5074 ;; Elements are compared with `equal'.
5075 (defun ps-remove-duplicates (list)
5076 (let (new (tail list))
5077 (while tail
5078 (or (member (car tail) new)
5079 (setq new (cons (car tail) new)))
5080 (setq tail (cdr tail)))
5081 (nreverse new)))
5082
5083
5084 ;; Find the first occurrence of ITEM in LIST.
5085 ;; Return the index of the matching item, or nil if not found.
5086 ;; Elements are compared with `eq'.
5087 (defun ps-alist-position (item list)
5088 (let ((tail list) (index 0) found)
5089 (while tail
5090 (if (setq found (eq (car (car tail)) item))
5091 (setq tail nil)
5092 (setq index (1+ index)
5093 tail (cdr tail))))
5094 (and found index)))
5095
5096
5097 (defconst ps-n-up-database
5098 '((a4
5099 (1 nil 1 1 0)
5100 (2 t 1 2 0)
5101 (4 nil 2 2 0)
5102 (6 t 2 3 1)
5103 (8 t 2 4 0)
5104 (9 nil 3 3 0)
5105 (12 t 3 4 2)
5106 (16 nil 4 4 0)
5107 (18 t 3 6 0)
5108 (20 nil 5 4 1)
5109 (25 nil 5 5 0)
5110 (30 nil 6 5 1)
5111 (32 t 4 8 0)
5112 (36 nil 6 6 0)
5113 (42 nil 7 6 1)
5114 (49 nil 7 7 0)
5115 (50 t 5 10 0)
5116 (56 nil 8 7 1)
5117 (64 nil 8 8 0)
5118 (72 nil 9 8 1)
5119 (81 nil 9 9 0)
5120 (90 nil 10 9 1)
5121 (100 nil 10 10 0))
5122 (a3
5123 (1 nil 1 1 0)
5124 (2 t 1 2 0)
5125 (4 nil 2 2 0)
5126 (6 t 2 3 1)
5127 (8 t 2 4 0)
5128 (9 nil 3 3 0)
5129 (12 nil 4 3 1)
5130 (16 nil 4 4 0)
5131 (18 t 3 6 0)
5132 (20 nil 5 4 1)
5133 (25 nil 5 5 0)
5134 (30 nil 6 5 1)
5135 (32 t 4 8 0)
5136 (36 nil 6 6 0)
5137 (42 nil 7 6 1)
5138 (49 nil 7 7 0)
5139 (50 t 5 10 0)
5140 (56 nil 8 7 1)
5141 (64 nil 8 8 0)
5142 (72 nil 9 8 1)
5143 (81 nil 9 9 0)
5144 (90 nil 10 9 1)
5145 (100 nil 10 10 0))
5146 (letter
5147 (1 nil 1 1 0)
5148 (2 t 1 2 0) ; adjusted by PostScript code
5149 (4 nil 2 2 0)
5150 (6 t 2 3 0)
5151 (9 nil 3 3 0)
5152 (12 nil 4 3 1)
5153 (16 nil 4 4 0)
5154 (20 nil 5 4 1)
5155 (25 nil 5 5 0)
5156 (30 nil 6 5 1)
5157 (36 nil 6 6 0)
5158 (40 t 5 8 0)
5159 (42 nil 7 6 1)
5160 (49 nil 7 7 0)
5161 (56 nil 8 7 1)
5162 (64 nil 8 8 0)
5163 (72 nil 9 8 1)
5164 (81 nil 9 9 0)
5165 (90 nil 10 9 1)
5166 (100 nil 10 10 0))
5167 (legal
5168 (1 nil 1 1 0)
5169 (2 t 1 2 0)
5170 (4 nil 2 2 0)
5171 (6 nil 3 2 1)
5172 (9 nil 3 3 0)
5173 (10 t 2 5 0)
5174 (12 nil 4 3 1)
5175 (16 nil 4 4 0)
5176 (20 nil 5 4 1)
5177 (25 nil 5 5 0)
5178 (30 nil 6 5 1)
5179 (36 nil 6 6 0)
5180 (42 nil 7 6 1)
5181 (49 nil 7 7 0)
5182 (56 nil 8 7 1)
5183 (64 nil 8 8 0)
5184 (70 t 5 14 0)
5185 (72 nil 9 8 1)
5186 (81 nil 9 9 0)
5187 (90 nil 10 9 1)
5188 (100 nil 10 10 0))
5189 (letter-small
5190 (1 nil 1 1 0)
5191 (2 t 1 2 0) ; adjusted by PostScript code
5192 (4 nil 2 2 0)
5193 (6 t 2 3 0)
5194 (9 nil 3 3 0)
5195 (12 t 3 4 1)
5196 (15 t 3 5 0)
5197 (16 nil 4 4 0)
5198 (20 nil 5 4 1)
5199 (25 nil 5 5 0)
5200 (28 t 4 7 0)
5201 (30 nil 6 5 1)
5202 (36 nil 6 6 0)
5203 (40 t 5 8 0)
5204 (42 nil 7 6 1)
5205 (49 nil 7 7 0)
5206 (56 nil 8 7 1)
5207 (60 t 6 10 0)
5208 (64 nil 8 8 0)
5209 (72 ni 9 8 1)
5210 (81 nil 9 9 0)
5211 (84 t 7 12 0)
5212 (90 nil 10 9 1)
5213 (100 nil 10 10 0))
5214 (tabloid
5215 (1 nil 1 1 0)
5216 (2 t 1 2 0)
5217 (4 nil 2 2 0)
5218 (6 t 2 3 1)
5219 (8 t 2 4 0)
5220 (9 nil 3 3 0)
5221 (12 nil 4 3 1)
5222 (16 nil 4 4 0)
5223 (20 nil 5 4 1)
5224 (25 nil 5 5 0)
5225 (30 nil 6 5 1)
5226 (36 nil 6 6 0)
5227 (42 nil 7 6 1)
5228 (49 nil 7 7 0)
5229 (56 nil 8 7 1)
5230 (64 nil 8 8 0)
5231 (72 nil 9 8 1)
5232 (81 nil 9 9 0)
5233 (84 t 6 14 0)
5234 (90 nil 10 9 1)
5235 (100 nil 10 10 0))
5236 ;; Ledger paper size is a special case, it is the only paper size where the
5237 ;; normal size is landscaped, that is, the height is smaller than width.
5238 ;; So, we use the special value `pag' in the `landscape' field.
5239 (ledger
5240 (1 nil 1 1 0)
5241 (2 pag 1 2 0)
5242 (4 nil 2 2 0)
5243 (6 pag 2 3 1)
5244 (8 pag 2 4 0)
5245 (9 nil 3 3 0)
5246 (12 nil 4 3 1)
5247 (16 nil 4 4 0)
5248 (20 nil 5 4 1)
5249 (25 nil 5 5 0)
5250 (30 nil 6 5 1)
5251 (36 nil 6 6 0)
5252 (42 nil 7 6 1)
5253 (49 nil 7 7 0)
5254 (56 nil 8 7 1)
5255 (64 nil 8 8 0)
5256 (72 nil 9 8 1)
5257 (81 nil 9 9 0)
5258 (84 pag 6 14 0)
5259 (90 nil 10 9 1)
5260 (100 nil 10 10 0))
5261 (statement
5262 (1 nil 1 1 0)
5263 (2 t 1 2 0)
5264 (4 nil 2 2 0)
5265 (6 nil 3 2 1)
5266 (9 nil 3 3 0)
5267 (10 t 2 5 0)
5268 (12 nil 4 3 1)
5269 (16 nil 4 4 0)
5270 (20 nil 5 4 1)
5271 (21 t 3 7 0)
5272 (25 nil 5 5 0)
5273 (30 nil 6 5 1)
5274 (36 nil 6 6 0)
5275 (40 t 4 10 0)
5276 (42 nil 7 6 1)
5277 (49 nil 7 7 0)
5278 (56 nil 8 7 1)
5279 (60 t 5 12 0)
5280 (64 nil 8 8 0)
5281 (72 nil 9 8 1)
5282 (81 nil 9 9 0)
5283 (90 nil 10 9 1)
5284 (100 nil 10 10 0))
5285 (executive
5286 (1 nil 1 1 0)
5287 (2 t 1 2 0) ; adjusted by PostScript code
5288 (4 nil 2 2 0)
5289 (6 t 2 3 0)
5290 (9 nil 3 3 0)
5291 (12 nil 4 3 1)
5292 (16 nil 4 4 0)
5293 (20 nil 5 4 1)
5294 (25 nil 5 5 0)
5295 (28 t 4 7 0)
5296 (30 nil 6 5 1)
5297 (36 nil 6 6 0)
5298 (42 nil 7 6 1)
5299 (45 t 5 9 0)
5300 (49 nil 7 7 0)
5301 (56 nil 8 7 1)
5302 (60 t 6 10 0)
5303 (64 nil 8 8 0)
5304 (72 nil 9 8 1)
5305 (81 nil 9 9 0)
5306 (84 t 7 12 0)
5307 (90 nil 10 9 1)
5308 (100 nil 10 10 0))
5309 (a4small
5310 (1 nil 1 1 0)
5311 (2 t 1 2 0)
5312 (4 nil 2 2 0)
5313 (6 t 2 3 1)
5314 (8 t 2 4 0)
5315 (9 nil 3 3 0)
5316 (12 nil 4 3 1)
5317 (16 nil 4 4 0)
5318 (18 t 3 6 0)
5319 (20 nil 5 4 1)
5320 (25 nil 5 5 0)
5321 (30 nil 6 5 1)
5322 (32 t 4 8 0)
5323 (36 nil 6 6 0)
5324 (42 nil 7 6 1)
5325 (49 nil 7 7 0)
5326 (50 t 5 10 0)
5327 (56 nil 8 7 1)
5328 (64 nil 8 8 0)
5329 (72 nil 9 8 1)
5330 (78 t 6 13 0)
5331 (81 nil 9 9 0)
5332 (90 nil 10 9 1)
5333 (100 nil 10 10 0))
5334 (b4
5335 (1 nil 1 1 0)
5336 (2 t 1 2 0)
5337 (4 nil 2 2 0)
5338 (6 t 2 3 1)
5339 (8 t 2 4 0)
5340 (9 nil 3 3 0)
5341 (12 nil 4 3 1)
5342 (16 nil 4 4 0)
5343 (18 t 3 6 0)
5344 (20 nil 5 4 1)
5345 (25 nil 5 5 0)
5346 (30 nil 6 5 1)
5347 (32 t 4 8 0)
5348 (36 nil 6 6 0)
5349 (42 nil 7 6 1)
5350 (49 nil 7 7 0)
5351 (50 t 5 10 0)
5352 (56 nil 8 7 1)
5353 (64 nil 8 8 0)
5354 (72 nil 9 8 1)
5355 (81 nil 9 9 0)
5356 (90 nil 10 9 1)
5357 (100 nil 10 10 0))
5358 (b5
5359 (1 nil 1 1 0)
5360 (2 t 1 2 0)
5361 (4 nil 2 2 0)
5362 (6 t 2 3 1)
5363 (8 t 2 4 0)
5364 (9 nil 3 3 0)
5365 (12 nil 4 3 1)
5366 (16 nil 4 4 0)
5367 (18 t 3 6 0)
5368 (20 nil 5 4 1)
5369 (25 nil 5 5 0)
5370 (30 nil 6 5 1)
5371 (32 t 4 8 0)
5372 (36 nil 6 6 0)
5373 (42 nil 7 6 1)
5374 (49 nil 7 7 0)
5375 (50 t 5 10 0)
5376 (56 nil 8 7 1)
5377 (64 nil 8 8 0)
5378 (72 nil 9 8 0)
5379 (81 nil 9 9 0)
5380 (90 nil 10 9 1)
5381 (98 t 7 14 0)
5382 (100 nil 10 10 0)))
5383 "Alist which is the page matrix database used for N-up printing.
5384
5385 Each element has the following form:
5386
5387 (PAGE
5388 (MAX LANDSCAPE LINES COLUMNS COL-MISSING)
5389 ...)
5390
5391 Where:
5392 PAGE is the page size used (see `ps-paper-type').
5393 MAX is the maximum elements of this page matrix.
5394 LANDSCAPE specifies if page matrix is landscaped, has the following valid
5395 values:
5396 nil the sheet is in portrait mode.
5397 t the sheet is in landscape mode.
5398 pag the sheet is in portrait mode and page is in landscape mode.
5399 LINES is the number of lines of page matrix.
5400 COLUMNS is the number of columns of page matrix.
5401 COL-MISSING is the number of columns missing to fill the sheet.")
5402
5403
5404 (defmacro ps-n-up-landscape (mat) `(nth 1 ,mat))
5405 (defmacro ps-n-up-lines (mat) `(nth 2 ,mat))
5406 (defmacro ps-n-up-columns (mat) `(nth 3 ,mat))
5407 (defmacro ps-n-up-missing (mat) `(nth 4 ,mat))
5408
5409
5410 (defun ps-n-up-printing ()
5411 ;; force `ps-n-up-printing' be in range 1 to 100.
5412 (setq ps-n-up-printing (max (min ps-n-up-printing 100) 1))
5413 ;; find suitable page matrix for a given `ps-paper-type'.
5414 (let ((the-list (cdr (assq ps-paper-type ps-n-up-database))))
5415 (and the-list
5416 (while (> ps-n-up-printing (caar the-list))
5417 (setq the-list (cdr the-list))))
5418 (car the-list)))
5419
5420
5421 (defconst ps-n-up-filling-database
5422 '((left-top
5423 "PageWidth" ; N-Up-XColumn
5424 "0" ; N-Up-YColumn
5425 "N-Up-End 1 sub PageWidth mul neg" ; N-Up-XLine
5426 "LandscapePageHeight neg" ; N-Up-YLine
5427 "N-Up-Lines" ; N-Up-Repeat
5428 "N-Up-Columns" ; N-Up-End
5429 "0" ; N-Up-XStart
5430 "0") ; N-Up-YStart
5431 (left-bottom
5432 "PageWidth" ; N-Up-XColumn
5433 "0" ; N-Up-YColumn
5434 "N-Up-End 1 sub PageWidth mul neg" ; N-Up-XLine
5435 "LandscapePageHeight" ; N-Up-YLine
5436 "N-Up-Lines" ; N-Up-Repeat
5437 "N-Up-Columns" ; N-Up-End
5438 "0" ; N-Up-XStart
5439 "N-Up-Repeat 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
5440 (right-top
5441 "PageWidth neg" ; N-Up-XColumn
5442 "0" ; N-Up-YColumn
5443 "N-Up-End 1 sub PageWidth mul" ; N-Up-XLine
5444 "LandscapePageHeight neg" ; N-Up-YLine
5445 "N-Up-Lines" ; N-Up-Repeat
5446 "N-Up-Columns" ; N-Up-End
5447 "N-Up-End 1 sub PageWidth mul" ; N-Up-XStart
5448 "0") ; N-Up-YStart
5449 (right-bottom
5450 "PageWidth neg" ; N-Up-XColumn
5451 "0" ; N-Up-YColumn
5452 "N-Up-End 1 sub PageWidth mul" ; N-Up-XLine
5453 "LandscapePageHeight" ; N-Up-YLine
5454 "N-Up-Lines" ; N-Up-Repeat
5455 "N-Up-Columns" ; N-Up-End
5456 "N-Up-End 1 sub PageWidth mul" ; N-Up-XStart
5457 "N-Up-Repeat 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
5458 (top-left
5459 "0" ; N-Up-XColumn
5460 "LandscapePageHeight neg" ; N-Up-YColumn
5461 "PageWidth" ; N-Up-XLine
5462 "N-Up-End 1 sub LandscapePageHeight mul" ; N-Up-YLine
5463 "N-Up-Columns" ; N-Up-Repeat
5464 "N-Up-Lines" ; N-Up-End
5465 "0" ; N-Up-XStart
5466 "0") ; N-Up-YStart
5467 (bottom-left
5468 "0" ; N-Up-XColumn
5469 "LandscapePageHeight" ; N-Up-YColumn
5470 "PageWidth" ; N-Up-XLine
5471 "N-Up-End 1 sub LandscapePageHeight mul neg" ; N-Up-YLine
5472 "N-Up-Columns" ; N-Up-Repeat
5473 "N-Up-Lines" ; N-Up-End
5474 "0" ; N-Up-XStart
5475 "N-Up-End 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
5476 (top-right
5477 "0" ; N-Up-XColumn
5478 "LandscapePageHeight neg" ; N-Up-YColumn
5479 "PageWidth neg" ; N-Up-XLine
5480 "N-Up-End 1 sub LandscapePageHeight mul" ; N-Up-YLine
5481 "N-Up-Columns" ; N-Up-Repeat
5482 "N-Up-Lines" ; N-Up-End
5483 "N-Up-Repeat 1 sub PageWidth mul" ; N-Up-XStart
5484 "0") ; N-Up-YStart
5485 (bottom-right
5486 "0" ; N-Up-XColumn
5487 "LandscapePageHeight" ; N-Up-YColumn
5488 "PageWidth neg" ; N-Up-XLine
5489 "N-Up-End 1 sub LandscapePageHeight mul neg" ; N-Up-YLine
5490 "N-Up-Columns" ; N-Up-Repeat
5491 "N-Up-Lines" ; N-Up-End
5492 "N-Up-Repeat 1 sub PageWidth mul" ; N-Up-XStart
5493 "N-Up-End 1 sub LandscapePageHeight mul neg")) ; N-Up-YStart
5494 "Alist for n-up printing initializations.
5495
5496 Each element has the following form:
5497
5498 (KIND XCOL YCOL XLIN YLIN REPEAT END XSTART YSTART)
5499
5500 Where:
5501 KIND is a valid value of `ps-n-up-filling'.
5502 XCOL YCOL are the relative position for the next column.
5503 XLIN YLIN are the relative position for the beginning of next line.
5504 REPEAT is the number of repetions for external loop.
5505 END is the number of repetions for internal loop and also the number of pages in
5506 a row.
5507 XSTART YSTART are the relative position for the first page in a sheet.")
5508
5509
5510 (defun ps-n-up-filling ()
5511 (cdr (or (assq ps-n-up-filling ps-n-up-filling-database)
5512 (assq 'left-top ps-n-up-filling-database))))
5513
5514
5515 (defmacro ps-n-up-xcolumn (init) `(nth 0 ,init))
5516 (defmacro ps-n-up-ycolumn (init) `(nth 1 ,init))
5517 (defmacro ps-n-up-xline (init) `(nth 2 ,init))
5518 (defmacro ps-n-up-yline (init) `(nth 3 ,init))
5519 (defmacro ps-n-up-repeat (init) `(nth 4 ,init))
5520 (defmacro ps-n-up-end (init) `(nth 5 ,init))
5521 (defmacro ps-n-up-xstart (init) `(nth 6 ,init))
5522 (defmacro ps-n-up-ystart (init) `(nth 7 ,init))
5523
5524
5525 (defconst ps-error-handler-alist
5526 '((none . 0)
5527 (paper . 1)
5528 (system . 2)
5529 (paper-and-system . 3))
5530 "Alist for error handler message.")
5531
5532
5533 (defconst ps-zebra-stripe-alist
5534 '((follow . 1)
5535 (full . 2)
5536 (full-follow . 3))
5537 "Alist for zebra stripe continuation.")
5538
5539
5540 (defun ps-begin-file ()
5541 (setq ps-page-order 0
5542 ps-page-printed 0
5543 ps-background-text-count 0
5544 ps-background-image-count 0
5545 ps-background-pages nil
5546 ps-background-all-pages nil)
5547
5548 (let ((dimensions (cdr (assq ps-paper-type ps-page-dimensions-database)))
5549 (tumble (if ps-landscape-mode (not ps-spool-tumble) ps-spool-tumble))
5550 (n-up (ps-n-up-printing))
5551 (n-up-filling (ps-n-up-filling)))
5552 (and ps-n-up-on (setq tumble (not tumble)))
5553 (ps-output
5554 ps-adobe-tag
5555 "%%Title: " (buffer-name) ; Take job name from name of
5556 ; first buffer printed
5557 "\n%%Creator: ps-print v" ps-print-version
5558 "\n%%For: " (user-full-name)
5559 "\n%%CreationDate: " (format-time-string "%T %b %d %Y")
5560 "\n%%Orientation: "
5561 (if ps-landscape-mode "Landscape" "Portrait")
5562 "\n%%DocumentNeededResources: font Times-Roman Times-Italic\n%%+ font "
5563 (mapconcat 'identity
5564 (ps-remove-duplicates
5565 (append (ps-fonts 'ps-font-for-text)
5566 (list (ps-font 'ps-font-for-header 'normal)
5567 (ps-font 'ps-font-for-header 'bold)
5568 (ps-font 'ps-font-for-footer 'normal)
5569 (ps-font 'ps-font-for-footer 'bold))))
5570 "\n%%+ font ")
5571 "\n%%DocumentSuppliedResources: procset PSPrintUserDefinedPrologue-" (user-login-name) " 0 0"
5572 "\n%%DocumentMedia: " (ps-page-dimensions-get-media dimensions)
5573 (format " %d" (round (ps-page-dimensions-get-width dimensions)))
5574 (format " %d" (round (ps-page-dimensions-get-height dimensions)))
5575 " 0 () ()\n%%PageOrder: Ascend\n%%Pages: (atend)\n%%Requirements:"
5576 (if ps-spool-duplex
5577 (if tumble " duplex(tumble)\n" " duplex\n")
5578 "\n"))
5579
5580 (ps-insert-string ps-print-prologue-header)
5581
5582 (ps-output "%%EndComments\n%%BeginDefaults\n%%PageMedia: "
5583 (ps-page-dimensions-get-media dimensions)
5584 "\n%%EndDefaults\n\n%%BeginProlog\n\n"
5585 "/languagelevel where{pop}{/languagelevel 1 def}ifelse\n"
5586 (format "/ErrorMessage %s def\n\n"
5587 (or (cdr (assoc ps-error-handler-message
5588 ps-error-handler-alist))
5589 1)) ; send to paper
5590 ps-print-prologue-0
5591 "\n%%BeginResource: procset PSPrintUserDefinedPrologue-" (user-login-name) " 0 0\n\n")
5592
5593 (ps-insert-string ps-user-defined-prologue)
5594
5595 (ps-output "\n%%EndResource\n\n")
5596
5597 (ps-output-boolean "LandscapeMode "
5598 (or ps-landscape-mode
5599 (eq (ps-n-up-landscape n-up) 'pag)))
5600 (ps-output-boolean "UpsideDown " ps-print-upside-down)
5601 (ps-output (format "/NumberOfColumns %d def\n" ps-number-of-columns)
5602
5603 (format "/LandscapePageHeight %s def\n" ps-landscape-page-height)
5604 (format "/PrintPageWidth %s def\n"
5605 (- (* (+ ps-print-width ps-inter-column)
5606 ps-number-of-columns)
5607 ps-inter-column))
5608 (format "/PrintWidth %s def\n" ps-print-width)
5609 (format "/PrintHeight %s def\n" ps-print-height)
5610
5611 (format "/LeftMargin %s def\n" ps-left-margin)
5612 (format "/RightMargin %s def\n" ps-right-margin)
5613 (format "/InterColumn %s def\n" ps-inter-column)
5614
5615 (format "/BottomMargin %s def\n" ps-bottom-margin)
5616 (format "/TopMargin %s def\n" ps-top-margin) ; not used
5617 (format "/HeaderOffset %s def\n" ps-header-offset)
5618 (format "/HeaderPad %s def\n" ps-header-pad)
5619 (format "/FooterOffset %s def\n" ps-footer-offset)
5620 (format "/FooterPad %s def\n" ps-footer-pad)
5621 (format "/FooterLines %s def\n" ps-footer-lines))
5622
5623 (ps-output-boolean "ShowNofN " ps-show-n-of-n)
5624 (ps-output-boolean "SwitchHeader " (if (eq ps-switch-header 'duplex)
5625 ps-spool-duplex
5626 ps-switch-header))
5627 (ps-output-boolean "PrintOnlyOneHeader" ps-print-only-one-header)
5628 (ps-output-boolean "PrintHeader " ps-print-header)
5629 (ps-output-boolean "PrintHeaderFrame " ps-print-header-frame)
5630 (ps-output-frame-properties "HeaderFrameProperties" ps-header-frame-alist)
5631 (ps-output-boolean "PrintFooter " ps-print-footer)
5632 (ps-output-boolean "PrintFooterFrame " ps-print-footer-frame)
5633 (ps-output-frame-properties "FooterFrameProperties" ps-footer-frame-alist)
5634
5635 (let ((line-height (ps-line-height 'ps-font-for-text)))
5636 (ps-output (format "/LineSpacing %s def\n" ps-line-spacing-internal)
5637 (format "/ParagraphSpacing %s def\n"
5638 ps-paragraph-spacing-internal)
5639 (format "/LineHeight %s def\n" line-height)
5640 (format "/LinesPerColumn %d def\n"
5641 (let ((height (+ line-height
5642 ps-line-spacing-internal)))
5643 (round (/ (+ ps-print-height
5644 (* height 0.45))
5645 height))))))
5646
5647 (ps-output-boolean "WarnPaperSize " ps-warn-paper-type)
5648 (ps-output-boolean "Zebra " ps-zebra-stripes)
5649 (ps-output-boolean "PrintLineNumber " ps-line-number)
5650 (ps-output-boolean "SyncLineZebra " (not (integerp ps-line-number-step)))
5651 (ps-output (format "/ZebraFollow %d def\n"
5652 (or (cdr (assq ps-zebra-stripe-follow
5653 ps-zebra-stripe-alist))
5654 0))
5655 (format "/PrintLineStep %d def\n"
5656 (if (integerp ps-line-number-step)
5657 ps-line-number-step
5658 ps-zebra-stripe-height))
5659 (format "/PrintLineStart %d def\n" ps-line-number-start)
5660 "/LineNumberColor "
5661 (ps-format-color ps-line-number-color 0.0)
5662 (format "def\n/ZebraHeight %d def\n"
5663 ps-zebra-stripe-height)
5664 "/ZebraColor "
5665 (ps-format-color ps-zebra-color 0.95)
5666 "def\n")
5667 (ps-output "/BackgroundColor "
5668 (ps-format-color ps-default-background 1.0)
5669 "def\n")
5670 (ps-output "/UseSetpagedevice "
5671 (if (eq ps-spool-config 'setpagedevice)
5672 "/setpagedevice where{pop languagelevel 2 eq}{false}ifelse"
5673 "false")
5674 " def\n\n/PageWidth "
5675 "PrintPageWidth LeftMargin add RightMargin add def\n\n"
5676 (format "/N-Up %d def\n" ps-n-up-printing))
5677 (ps-output-boolean "N-Up-Landscape" (eq (ps-n-up-landscape n-up) t))
5678 (ps-output-boolean "N-Up-Border " ps-n-up-border-p)
5679 (ps-output (format "/N-Up-Lines %d def\n" (ps-n-up-lines n-up))
5680 (format "/N-Up-Columns %d def\n" (ps-n-up-columns n-up))
5681 (format "/N-Up-Missing %d def\n" (ps-n-up-missing n-up))
5682 (format "/N-Up-Margin %s def\n" ps-n-up-margin)
5683 "/N-Up-Repeat "
5684 (if ps-landscape-mode
5685 (ps-n-up-end n-up-filling)
5686 (ps-n-up-repeat n-up-filling))
5687 " def\n/N-Up-End "
5688 (if ps-landscape-mode
5689 (ps-n-up-repeat n-up-filling)
5690 (ps-n-up-end n-up-filling))
5691 " def\n/N-Up-XColumn " (ps-n-up-xcolumn n-up-filling)
5692 " def\n/N-Up-YColumn " (ps-n-up-ycolumn n-up-filling)
5693 " def\n/N-Up-XLine " (ps-n-up-xline n-up-filling)
5694 " def\n/N-Up-YLine " (ps-n-up-yline n-up-filling)
5695 " def\n/N-Up-XStart " (ps-n-up-xstart n-up-filling)
5696 " def\n/N-Up-YStart " (ps-n-up-ystart n-up-filling) " def\n")
5697
5698 (ps-background-text)
5699 (ps-background-image)
5700 (setq ps-background-all-pages (nreverse ps-background-all-pages)
5701 ps-background-pages (nreverse ps-background-pages))
5702
5703 (ps-output "\n" ps-print-prologue-1
5704 "\n/printGlobalBackground{\n")
5705 (mapc 'ps-output ps-background-all-pages)
5706 (ps-output
5707 "}def\n/printLocalBackground{\n}def\n"
5708 "\n%%EndProlog\n\n%%BeginSetup\n"
5709 "\n%%IncludeResource: font Times-Roman"
5710 "\n%%IncludeResource: font Times-Italic"
5711 "\n%%IncludeResource: font "
5712 (mapconcat 'identity
5713 (ps-remove-duplicates
5714 (append (ps-fonts 'ps-font-for-text)
5715 (list (ps-font 'ps-font-for-header 'normal)
5716 (ps-font 'ps-font-for-header 'bold)
5717 (ps-font 'ps-font-for-footer 'normal)
5718 (ps-font 'ps-font-for-footer 'bold))))
5719 "\n%%IncludeResource: font ")
5720 ;; Header/line number fonts
5721 (format "\n/h0 %s(%s)cvn DefFont\n" ; /h0 14/Helvetica-Bold DefFont
5722 ps-header-title-font-size-internal
5723 (ps-font 'ps-font-for-header 'bold))
5724 (format "/h1 %s(%s)cvn DefFont\n" ; /h1 12/Helvetica DefFont
5725 ps-header-font-size-internal
5726 (ps-font 'ps-font-for-header 'normal))
5727 (format "/L0 %s(%s)cvn DefFont\n" ; /L0 6/Times-Italic DefFont
5728 (ps-get-font-size 'ps-line-number-font-size)
5729 ps-line-number-font)
5730 (format "/H0 %s(%s)cvn DefFont\n" ; /H0 12/Helvetica DefFont
5731 ps-footer-font-size-internal
5732 (ps-font 'ps-font-for-footer 'normal))
5733 "\n\n% ---- These lines must be kept together because...
5734
5735 /h0 F
5736 /HeaderTitleLineHeight FontHeight def
5737
5738 /h1 F
5739 /HeaderLineHeight FontHeight def
5740 /HeaderDescent Descent def
5741
5742 /H0 F
5743 /FooterLineHeight FontHeight def
5744 /FooterDescent Descent def
5745
5746 % ---- ...because `F' has a side-effect on `FontHeight' and `Descent'\n\n")
5747
5748 ;; Text fonts
5749 (let ((font (ps-font-alist 'ps-font-for-text))
5750 (i 0))
5751 (while font
5752 (ps-output (format "/f%d %s(%s)cvn DefFont\n"
5753 i
5754 ps-font-size-internal
5755 (ps-font 'ps-font-for-text (car (car font)))))
5756 (setq font (cdr font)
5757 i (1+ i))))
5758
5759 (let ((font-entry (cdr (assq ps-font-family ps-font-info-database))))
5760 (ps-output (format "/SpaceWidthRatio %f def\n"
5761 (/ (ps-lookup 'space-width) (ps-lookup 'size)))))
5762
5763 (unless (eq ps-spool-config 'lpr-switches)
5764 (ps-output "\n%%BeginFeature: *Duplex "
5765 (ps-boolean-capitalized ps-spool-duplex)
5766 " *Tumble "
5767 (ps-boolean-capitalized tumble)
5768 "\nUseSetpagedevice\n{BMark/Duplex "
5769 (ps-boolean-constant ps-spool-duplex)
5770 "/Tumble "
5771 (ps-boolean-constant tumble)
5772 " EMark setpagedevice}\n{statusdict begin "
5773 (ps-boolean-constant ps-spool-duplex)
5774 " setduplexmode "
5775 (ps-boolean-constant tumble)
5776 " settumble end}ifelse\n%%EndFeature\n")))
5777 (ps-output "\n%%BeginFeature: *ManualFeed "
5778 (ps-boolean-capitalized ps-manual-feed)
5779 "\nBMark /ManualFeed "
5780 (ps-boolean-constant ps-manual-feed)
5781 " EMark setpagedevice\n%%EndFeature\n\nBeginDoc\n%%EndSetup\n")
5782 (and ps-banner-page-when-duplexing
5783 (ps-output "\n%%Page: banner 0\nsave showpage restore\n")))
5784
5785
5786 (defun ps-format-color (color &optional default)
5787 (let ((the-color (if (stringp color)
5788 (ps-color-scale color)
5789 color)))
5790 (if (and the-color (listp the-color))
5791 (concat "["
5792 (format ps-color-format
5793 (* (nth 0 the-color) 1.0) ; force float number
5794 (* (nth 1 the-color) 1.0) ; force float number
5795 (* (nth 2 the-color) 1.0)) ; force float number
5796 "] ")
5797 (ps-float-format (if (numberp the-color) the-color default)))))
5798
5799
5800 (defun ps-insert-string (prologue)
5801 (let ((str (if (functionp prologue)
5802 (funcall prologue)
5803 prologue)))
5804 (and (stringp str)
5805 (ps-output str))))
5806
5807
5808 (defun ps-boolean-capitalized (bool)
5809 (if bool "True" "False"))
5810
5811
5812 (defun ps-boolean-constant (bool)
5813 (if bool "true" "false"))
5814
5815
5816 (defun ps-header-dirpart ()
5817 (let ((fname (buffer-file-name)))
5818 (if fname
5819 (if (string-equal (buffer-name) (file-name-nondirectory fname))
5820 (abbreviate-file-name (file-name-directory fname))
5821 fname)
5822 "")))
5823
5824
5825 (defun ps-get-buffer-name ()
5826 (cond
5827 ;; Indulge Jim this little easter egg:
5828 ((string= (buffer-name) "ps-print.el")
5829 "Hey, Cool! It's ps-print.el!!!")
5830 ;; Indulge Jack this other little easter egg:
5831 ((string= (buffer-name) "sokoban.el")
5832 "Super! C'est sokoban.el!")
5833 (t (concat
5834 (and ps-printing-region-p "Subset of: ")
5835 (buffer-name)
5836 (and (buffer-modified-p) " (unsaved)")))))
5837
5838
5839 (defun ps-get-size (size mess &optional arg)
5840 (let ((siz (cond ((numberp size)
5841 size)
5842 ((and (consp size)
5843 (numberp (car size))
5844 (numberp (cdr size)))
5845 (if ps-landscape-mode
5846 (car size)
5847 (cdr size)))
5848 (t
5849 -1))))
5850 (and (< siz 0)
5851 (error "Invalid %s `%S'%s"
5852 mess size
5853 (if arg
5854 (format " for `%S'" arg)
5855 "")))
5856 siz))
5857
5858
5859 (defun ps-get-font-size (font-sym)
5860 (ps-get-size (symbol-value font-sym) "font size" font-sym))
5861
5862
5863 (defun ps-rgb-color (color unspecified default)
5864 (cond
5865 ;; (float float float) ==> (R G B)
5866 ((and color (listp color) (= (length color) 3)
5867 (let ((cl color)
5868 (ok t) e)
5869 (while (and ok cl)
5870 (setq e (car cl)
5871 cl (cdr cl)
5872 ok (and (floatp e) (<= 0.0 e) (<= e 1.0))))
5873 ok))
5874 color)
5875 ;; float ==> 0.0 = black .. 1.0 = white
5876 ((and (floatp color) (<= 0.0 color) (<= color 1.0))
5877 (list color color color))
5878 ;; "colorName" but different from "unspecified-[bf]g"
5879 ((and (stringp color) (not (string= color unspecified)))
5880 (ps-color-scale color))
5881 ;; ok, use the default
5882 (t
5883 (list default default default))))
5884
5885
5886 (defun ps-begin-job (genfunc)
5887 ;; prologue files
5888 (or (equal ps-mark-code-directory ps-postscript-code-directory)
5889 (setq ps-print-prologue-0 (ps-prologue-file 0)
5890 ps-print-prologue-1 (ps-prologue-file 1)
5891 ps-mark-code-directory ps-postscript-code-directory))
5892 ;; selected pages
5893 (let (new page)
5894 (while ps-selected-pages
5895 (setq page (car ps-selected-pages)
5896 ps-selected-pages (cdr ps-selected-pages))
5897 (cond ((integerp page)
5898 (and (> page 0)
5899 (setq new (cons (cons page page) new))))
5900 ((consp page)
5901 (and (integerp (car page)) (integerp (cdr page))
5902 (> (car page) 0)
5903 (<= (car page) (cdr page))
5904 (setq new (cons page new))))))
5905 (setq ps-selected-pages (sort new #'(lambda (one other)
5906 (< (car one) (car other))))
5907 ps-last-selected-pages ps-selected-pages
5908 ps-first-page nil
5909 ps-last-page nil))
5910 ;; face background
5911 (or (listp ps-use-face-background)
5912 (setq ps-use-face-background t))
5913 ;; line number
5914 (and (integerp ps-line-number-step)
5915 (<= ps-line-number-step 0)
5916 (setq ps-line-number-step 1))
5917 (setq ps-n-up-on (> ps-n-up-printing 1)
5918 ps-line-number-start (max 1 (min ps-line-number-start
5919 (if (integerp ps-line-number-step)
5920 ps-line-number-step
5921 ps-zebra-stripe-height))))
5922 ;; spooling buffer
5923 (save-excursion
5924 (set-buffer ps-spool-buffer)
5925 (goto-char (point-max))
5926 (and (re-search-backward "^%%Trailer$" nil t)
5927 (delete-region (match-beginning 0) (point-max))))
5928 ;; miscellaneous
5929 (setq ps-zebra-stripe-full-p (memq ps-zebra-stripe-follow
5930 '(full full-follow))
5931 ps-page-postscript 0
5932 ps-page-sheet 0
5933 ps-page-n-up 0
5934 ps-page-column 0
5935 ps-lines-printed 0
5936 ps-print-page-p t
5937 ps-showline-count (car ps-printing-region)
5938 ps-line-spacing-internal (ps-get-size ps-line-spacing
5939 "line spacing")
5940 ps-paragraph-spacing-internal (ps-get-size ps-paragraph-spacing
5941 "paragraph spacing")
5942 ps-font-size-internal (ps-get-font-size 'ps-font-size)
5943 ps-header-font-size-internal (ps-get-font-size 'ps-header-font-size)
5944 ps-header-title-font-size-internal
5945 (ps-get-font-size 'ps-header-title-font-size)
5946 ps-footer-font-size-internal (ps-get-font-size 'ps-footer-font-size)
5947 ps-control-or-escape-regexp
5948 (cond ((eq ps-print-control-characters '8-bit)
5949 (string-as-unibyte "[\000-\037\177-\377]"))
5950 ((eq ps-print-control-characters 'control-8-bit)
5951 (string-as-unibyte "[\000-\037\177-\237]"))
5952 ((eq ps-print-control-characters 'control)
5953 "[\000-\037\177]")
5954 (t "[\t\n\f]"))
5955 ;; Set the color scale. We do it here instead of in the defvar so
5956 ;; that ps-print can be dumped into emacs. This expression can't be
5957 ;; evaluated at dump-time because X isn't initialized.
5958 ps-color-p (and ps-print-color-p (ps-color-device))
5959 ps-print-color-scale (if ps-color-p
5960 (float (car (ps-color-values "white")))
5961 1.0)
5962 ps-default-background (ps-rgb-color
5963 (cond
5964 ((or (member ps-print-color-p
5965 '(nil back-white))
5966 (eq genfunc 'ps-generate-postscript))
5967 nil)
5968 ((eq ps-default-bg 'frame-parameter)
5969 (ps-frame-parameter nil 'background-color))
5970 ((eq ps-default-bg t)
5971 (ps-face-background-name 'default))
5972 (t
5973 ps-default-bg))
5974 "unspecified-bg"
5975 1.0)
5976 ps-default-foreground (ps-rgb-color
5977 (cond
5978 ((or (member ps-print-color-p
5979 '(nil back-white))
5980 (eq genfunc 'ps-generate-postscript))
5981 nil)
5982 ((eq ps-default-fg 'frame-parameter)
5983 (ps-frame-parameter nil 'foreground-color))
5984 ((eq ps-default-fg t)
5985 (ps-face-foreground-name 'default))
5986 (t
5987 ps-default-fg))
5988 "unspecified-fg"
5989 0.0)
5990 ps-foreground-list (mapcar
5991 #'(lambda (arg)
5992 (ps-rgb-color arg "unspecified-fg" 0.0))
5993 (append (and (not (member ps-print-color-p
5994 '(nil back-white)))
5995 ps-fg-list)
5996 (list ps-default-foreground
5997 "black")))
5998 ps-default-color (and (not (member ps-print-color-p
5999 '(nil back-white)))
6000 ps-default-foreground)
6001 ps-current-color ps-default-color)
6002 ;; initialize page dimensions
6003 (ps-get-page-dimensions)
6004 ;; final check
6005 (and ps-color-p
6006 (equal ps-default-background ps-default-foreground)
6007 (error
6008 (concat
6009 "`ps-default-fg' and `ps-default-bg' have the same color.\n"
6010 "Text won't appear on page. Please, check these variables."))))
6011
6012
6013 (defun ps-page-number ()
6014 (if ps-print-only-one-header
6015 (1+ (/ (1- ps-page-column) ps-number-of-columns))
6016 ps-page-column))
6017
6018
6019 (defsubst ps-end-page ()
6020 (ps-output "EndPage\nEndDSCPage\n"))
6021
6022
6023 (defsubst ps-next-page ()
6024 (ps-end-page)
6025 (ps-flush-output)
6026 (ps-begin-page))
6027
6028
6029 (defun ps-end-sheet ()
6030 (and ps-print-page-p (> ps-page-sheet 0)
6031 (ps-output "EndSheet\n")))
6032
6033
6034 (defun ps-header-sheet ()
6035 ;; Print only when a new sheet begins.
6036 (ps-end-sheet)
6037 (setq ps-page-sheet (1+ ps-page-sheet))
6038 (when (ps-print-sheet-p)
6039 (setq ps-page-order (1+ ps-page-order))
6040 (ps-output (if ps-n-up-on
6041 (format "\n%%%%Page: (%d \\(%d\\)) %d\n"
6042 ps-page-order ps-page-postscript ps-page-order)
6043 (format "\n%%%%Page: %d %d\n"
6044 ps-page-postscript ps-page-order))
6045 ;; spooling needs to redefine Lines and PageCount on each page
6046 "/Lines 0 def\n/PageCount 0 def\n"
6047 (format "%d BeginSheet\nBeginDSCPage\n"
6048 ps-n-up-printing))))
6049
6050
6051 (defun ps-header-page ()
6052 ;; set total line and page number when printing has finished
6053 ;; (see `ps-generate')
6054 (if (zerop (mod ps-page-column ps-number-of-columns))
6055 (progn
6056 (setq ps-page-postscript (1+ ps-page-postscript))
6057 (when (ps-print-page-p)
6058 (ps-print-sheet-p)
6059 (if (zerop (mod ps-page-n-up ps-n-up-printing))
6060 ;; Print only when a new sheet begins.
6061 (progn
6062 (ps-header-sheet)
6063 (run-hooks 'ps-print-begin-sheet-hook))
6064 ;; Print only when a new page begins.
6065 (ps-output "BeginDSCPage\n")
6066 (run-hooks 'ps-print-begin-page-hook))
6067 (ps-background ps-page-postscript)
6068 (setq ps-page-n-up (1+ ps-page-n-up))
6069 (and ps-print-page-p
6070 (setq ps-page-printed (1+ ps-page-printed)))))
6071 ;; Print only when a new column begins.
6072 (ps-output "BeginDSCPage\n")
6073 (run-hooks 'ps-print-begin-column-hook))
6074 (setq ps-page-column (1+ ps-page-column)))
6075
6076 (defun ps-begin-page ()
6077 (setq ps-width-remaining ps-print-width
6078 ps-height-remaining ps-print-height)
6079
6080 (ps-header-page)
6081
6082 (ps-output (format "/LineNumber %d def\n" ps-showline-count)
6083 (format "/PageNumber %d def\n" (ps-page-number)))
6084
6085 (when ps-print-header
6086 (ps-generate-header "HeaderLinesLeft" "/h0" "/h1"
6087 (or ps-lh-cache ps-left-header))
6088 (ps-generate-header "HeaderLinesRight" "/h0" "/h1"
6089 (or ps-rh-cache ps-right-header))
6090 (ps-output (format "%d SetHeaderLines\n" ps-header-lines))
6091 (setq ps-lh-cache nil
6092 ps-rh-cache nil))
6093
6094 (when ps-print-footer
6095 (ps-generate-header "FooterLinesLeft" "/H0" "/H0"
6096 (or ps-lf-cache ps-left-footer))
6097 (ps-generate-header "FooterLinesRight" "/H0" "/H0"
6098 (or ps-rf-cache ps-right-footer))
6099 (ps-output (format "%d SetFooterLines\n" ps-footer-lines))
6100 (setq ps-lf-cache nil
6101 ps-rf-cache nil))
6102
6103 (ps-output (number-to-string ps-lines-printed) " BeginPage\n")
6104 (ps-set-font ps-current-font)
6105 (ps-set-bg ps-current-bg)
6106 (ps-set-color ps-current-color)
6107 (ps-mule-begin-page))
6108
6109 (defsubst ps-skip-newline (limit)
6110 (setq ps-showline-count (1+ ps-showline-count)
6111 ps-lines-printed (1+ ps-lines-printed))
6112 (and (< (point) limit)
6113 (forward-char 1)))
6114
6115 (defsubst ps-next-line ()
6116 (setq ps-showline-count (1+ ps-showline-count)
6117 ps-lines-printed (1+ ps-lines-printed))
6118 (let* ((paragraph-p (and ps-paragraph-regexp
6119 (looking-at ps-paragraph-regexp)))
6120 (lh (+ (ps-line-height 'ps-font-for-text)
6121 (if paragraph-p
6122 ps-paragraph-spacing-internal
6123 ps-line-spacing-internal))))
6124 (if (< ps-height-remaining lh)
6125 (ps-next-page)
6126 (setq ps-width-remaining ps-print-width
6127 ps-height-remaining (- ps-height-remaining lh))
6128 (ps-output (if paragraph-p "PHL\n" "LHL\n")))))
6129
6130 (defun ps-continue-line ()
6131 (setq ps-lines-printed (1+ ps-lines-printed))
6132 (let ((lh (+ (ps-line-height 'ps-font-for-text) ps-line-spacing-internal)))
6133 (if (< ps-height-remaining lh)
6134 (ps-next-page)
6135 (setq ps-width-remaining ps-print-width
6136 ps-height-remaining (- ps-height-remaining lh))
6137 (ps-output "SL\n"))))
6138
6139 (defun ps-find-wrappoint (from to char-width)
6140 (let ((avail (truncate (/ ps-width-remaining char-width)))
6141 (todo (- to from)))
6142 (if (< todo avail)
6143 (cons to (* todo char-width))
6144 (cons (+ from avail) ps-width-remaining))))
6145
6146 (defun ps-basic-plot-str (from to string)
6147 (let* ((wrappoint (ps-find-wrappoint from to
6148 (ps-avg-char-width 'ps-font-for-text)))
6149 (to (car wrappoint))
6150 (str (substring string from to)))
6151 (ps-mule-prepare-ascii-font str)
6152 (ps-output-string str)
6153 (ps-output " S\n")
6154 wrappoint))
6155
6156 (defun ps-basic-plot-string (from to &optional bg-color)
6157 (let* ((wrappoint (ps-find-wrappoint from to
6158 (ps-avg-char-width 'ps-font-for-text)))
6159 (to (car wrappoint))
6160 (string (buffer-substring-no-properties from to)))
6161 (ps-mule-prepare-ascii-font string)
6162 (ps-output-string string)
6163 (ps-output " S\n")
6164 wrappoint))
6165
6166 (defun ps-basic-plot-whitespace (from to &optional bg-color)
6167 (let* ((wrappoint (ps-find-wrappoint from to
6168 (ps-space-width 'ps-font-for-text)))
6169 (to (car wrappoint)))
6170 (ps-output (format "%d W\n" (- to from)))
6171 wrappoint))
6172
6173 (defun ps-plot (plotfunc from to &optional bg-color)
6174 (while (< from to)
6175 (let* ((wrappoint (funcall plotfunc from to bg-color))
6176 (plotted-to (car wrappoint))
6177 (plotted-width (cdr wrappoint)))
6178 (setq from plotted-to
6179 ps-width-remaining (- ps-width-remaining plotted-width))
6180 (if (< from to)
6181 (ps-continue-line))))
6182 (if ps-razzle-dazzle
6183 (let* ((q-todo (- (point-max) (point-min)))
6184 (q-done (- (point) (point-min)))
6185 (chunkfrac (/ q-todo 8))
6186 (chunksize (min chunkfrac 1000)))
6187 (if (> (- q-done ps-razchunk) chunksize)
6188 (progn
6189 (setq ps-razchunk q-done)
6190 (message "Formatting...%3d%%"
6191 (if (< q-todo 100)
6192 (/ (* 100 q-done) q-todo)
6193 (/ q-done (/ q-todo 100)))
6194 ))))))
6195
6196 (defvar ps-last-font nil)
6197
6198 (defun ps-set-font (font)
6199 (setq ps-last-font (format "f%d" (setq ps-current-font font)))
6200 (ps-output (format "/%s F\n" ps-last-font)))
6201
6202 (defun ps-set-bg (color)
6203 (if (setq ps-current-bg color)
6204 (ps-output (format ps-color-format
6205 (nth 0 color) (nth 1 color) (nth 2 color))
6206 " true BG\n")
6207 (ps-output "false BG\n")))
6208
6209 (defun ps-set-color (color)
6210 (setq ps-current-color (or color ps-default-foreground))
6211 (ps-output (format ps-color-format
6212 (nth 0 ps-current-color)
6213 (nth 1 ps-current-color) (nth 2 ps-current-color))
6214 " FG\n"))
6215
6216
6217 (defsubst ps-plot-string (string)
6218 (ps-plot 'ps-basic-plot-str 0 (length string) string))
6219
6220
6221 (defvar ps-current-effect 0)
6222
6223 (defvar ps-print-translation-table
6224 (let ((tbl (make-char-table 'translation-table nil)))
6225 (if (and (boundp 'ucs-mule-8859-to-mule-unicode)
6226 (char-table-p ucs-mule-8859-to-mule-unicode))
6227 (map-char-table
6228 #'(lambda (k v)
6229 (if (and v (eq (char-charset v) 'latin-iso8859-1) (/= k v))
6230 (aset tbl k v)))
6231 ucs-mule-8859-to-mule-unicode))
6232 tbl)
6233 "Translation table for PostScript printing.
6234 The default value is a table that translates non-Latin-1 Latin characters
6235 to the equivalent Latin-1 characters.")
6236
6237 (defun ps-plot-region (from to font &optional fg-color bg-color effects)
6238 (or (equal font ps-current-font)
6239 (ps-set-font font))
6240
6241 ;; Specify a foreground color only if:
6242 ;; one's specified,
6243 ;; it's different than the background (if `ps-fg-validate-p' is non-nil)
6244 ;; and it's different than the current.
6245 (let ((fg (or fg-color ps-default-foreground)))
6246 (if ps-fg-validate-p
6247 (let ((bg (or bg-color ps-default-background))
6248 (el ps-foreground-list))
6249 (while (and el (equal fg bg))
6250 (setq fg (car el)
6251 el (cdr el)))))
6252 (or (equal fg ps-current-color)
6253 (ps-set-color fg)))
6254
6255 (or (equal bg-color ps-current-bg)
6256 (ps-set-bg bg-color))
6257
6258 ;; Specify effects (underline, overline, box, etc.)
6259 (cond
6260 ((not (integerp effects))
6261 (ps-output "0 EF\n")
6262 (setq ps-current-effect 0))
6263 ((/= effects ps-current-effect)
6264 (ps-output (number-to-string effects) " EF\n")
6265 (setq ps-current-effect effects)))
6266
6267 ;; Starting at the beginning of the specified region...
6268 (save-excursion
6269 (goto-char from)
6270
6271 ;; ...break the region up into chunks separated by tabs, linefeeds,
6272 ;; pagefeeds, control characters, and plot each chunk.
6273 (while (< from to)
6274 ;; skip lines between cut markers
6275 (and ps-begin-cut-regexp ps-end-cut-regexp
6276 (looking-at ps-begin-cut-regexp)
6277 (progn
6278 (goto-char (match-end 0))
6279 (and (re-search-forward ps-end-cut-regexp to 'noerror)
6280 (= (following-char) ?\n)
6281 (forward-char 1))
6282 (setq from (point))))
6283 (if (re-search-forward ps-control-or-escape-regexp to t)
6284 ;; region with some control characters or some multi-byte characters
6285 (let* ((match-point (match-beginning 0))
6286 (match (char-after match-point))
6287 (composition (ps-e-find-composition from (1+ match-point))))
6288 (if composition
6289 (if (and (nth 2 composition)
6290 (<= (car composition) match-point))
6291 (progn
6292 (setq match-point (car composition)
6293 match 0)
6294 (goto-char (nth 1 composition)))
6295 (setq composition nil)))
6296 (when (< from match-point)
6297 (ps-mule-set-ascii-font)
6298 (ps-plot 'ps-basic-plot-string from match-point bg-color))
6299 (cond
6300 ((= match ?\t) ; tab
6301 (let ((linestart (line-beginning-position)))
6302 (forward-char -1)
6303 (setq from (+ linestart (current-column)))
6304 (when (re-search-forward "[ \t]+" to t)
6305 (ps-mule-set-ascii-font)
6306 (ps-plot 'ps-basic-plot-whitespace
6307 from (+ linestart (current-column))
6308 bg-color))))
6309
6310 ((= match ?\n) ; newline
6311 (if (looking-at "\f[^\n]")
6312 ;; \n\ftext\n ==>> next page, but keep line counting!!
6313 (progn
6314 (ps-skip-newline to)
6315 (ps-next-page))
6316 ;; \n\f\n ==>> it'll be handled by form feed
6317 ;; \ntext\n ==>> next line
6318 (ps-next-line)))
6319
6320 ((= match ?\f) ; form feed
6321 ;; do not skip page if previous character is NEWLINE and
6322 ;; it is a beginning of page.
6323 (unless (and (equal (char-after (1- match-point)) ?\n)
6324 (= ps-height-remaining ps-print-height))
6325 ;; \f\n ==>> skip \n, but keep line counting!!
6326 (and (equal (following-char) ?\n)
6327 (ps-skip-newline to))
6328 (ps-next-page)))
6329
6330 (composition ; a composite sequence
6331 (ps-plot 'ps-mule-plot-composition match-point (point) bg-color))
6332
6333 ((> match 255) ; a multi-byte character
6334 (setq match (or (aref ps-print-translation-table match) match))
6335 (let* ((charset (char-charset match))
6336 (composition (ps-e-find-composition match-point to))
6337 (stop (if (nth 2 composition) (car composition) to)))
6338 (or (eq charset 'composition)
6339 (while (and (< (point) stop)
6340 (let ((ch (following-char)))
6341 (setq ch
6342 (or (aref ps-print-translation-table ch)
6343 ch))
6344 (eq (char-charset ch) charset)))
6345 (forward-char 1)))
6346 (ps-plot 'ps-mule-plot-string match-point (point) bg-color)))
6347 ; characters from ^@ to ^_ and
6348 (t ; characters from 127 to 255
6349 (ps-control-character match)))
6350 (setq from (point)))
6351 ;; region without control characters nor multi-byte characters
6352 (ps-mule-set-ascii-font)
6353 (ps-plot 'ps-basic-plot-string from to bg-color)
6354 (setq from to)))))
6355
6356 (defvar ps-string-control-codes
6357 (let ((table (make-vector 256 nil))
6358 (char ?\000))
6359 ;; control character
6360 (while (<= char ?\037)
6361 (aset table char (format "^%c" (+ char ?@)))
6362 (setq char (1+ char)))
6363 ;; printable character
6364 (while (< char ?\177)
6365 (aset table char (format "%c" char))
6366 (setq char (1+ char)))
6367 ;; DEL
6368 (aset table char "^?")
6369 ;; 8-bit character
6370 (while (<= (setq char (1+ char)) ?\377)
6371 (aset table char (format "\\%o" char)))
6372 table)
6373 "Vector used to map characters to a printable string.")
6374
6375 (defun ps-control-character (char)
6376 (let* ((str (aref ps-string-control-codes char))
6377 (from (1- (point)))
6378 (len (length str))
6379 (to (+ from len))
6380 (char-width (ps-avg-char-width 'ps-font-for-text))
6381 (wrappoint (ps-find-wrappoint from to char-width)))
6382 (if (< (car wrappoint) to)
6383 (ps-continue-line))
6384 (setq ps-width-remaining (- ps-width-remaining (* len char-width)))
6385 (ps-mule-prepare-ascii-font str)
6386 (ps-output-string str)
6387 (ps-output " S\n")))
6388
6389
6390 (defsubst ps-face-foreground-color-p (attr)
6391 (memq attr '(foreground-color :foreground)))
6392
6393
6394 (defsubst ps-face-background-color-p (attr)
6395 (memq attr '(background-color :background)))
6396
6397
6398 (defsubst ps-face-color-p (attr)
6399 (memq attr '(foreground-color :foreground background-color :background)))
6400
6401
6402 (defun ps-face-attributes (face)
6403 "Return face attribute vector.
6404
6405 If FACE is not in `ps-print-face-extension-alist' or in
6406 `ps-print-face-alist', insert it on `ps-print-face-alist' and
6407 return the attribute vector.
6408
6409 If FACE is not a valid face name, use default face."
6410 (cond
6411 (ps-black-white-faces-alist
6412 (or (and (symbolp face)
6413 (cdr (assq face ps-black-white-faces-alist)))
6414 (vector 0 nil nil)))
6415 ((symbolp face)
6416 (cdr (or (assq face ps-print-face-extension-alist)
6417 (assq face ps-print-face-alist)
6418 (let* ((the-face (if (facep face) face 'default))
6419 (new-face (ps-screen-to-bit-face the-face)))
6420 (or (and (eq the-face 'default)
6421 (assq the-face ps-print-face-alist))
6422 (setq ps-print-face-alist
6423 (cons new-face ps-print-face-alist)))
6424 new-face))))
6425 ((ps-face-foreground-color-p (car face))
6426 (vector 0 (cdr face) nil))
6427 ((ps-face-background-color-p (car face))
6428 (vector 0 nil (cdr face)))
6429 (t
6430 (vector 0 nil nil))))
6431
6432
6433 (defun ps-face-background (face background)
6434 (and (cond ((eq ps-use-face-background t)) ; always
6435 ((null ps-use-face-background) nil) ; never
6436 ;; ps-user-face-background is a symbol face list
6437 ((symbolp face)
6438 (memq face ps-use-face-background))
6439 ((listp face)
6440 (or (ps-face-color-p (car face))
6441 (let (ok)
6442 (while face
6443 (if (or (memq (car face) ps-use-face-background)
6444 (ps-face-color-p (car face)))
6445 (setq face nil
6446 ok t)
6447 (setq face (cdr face))))
6448 ok)))
6449 (t
6450 nil)
6451 )
6452 background))
6453
6454
6455 (defun ps-face-attribute-list (face-or-list)
6456 (cond
6457 ;; simple face
6458 ((not (listp face-or-list))
6459 (ps-face-attributes face-or-list))
6460 ;; only foreground color, not a `real' face
6461 ((ps-face-foreground-color-p (car face-or-list))
6462 (vector 0 (cdr face-or-list) nil))
6463 ;; only background color, not a `real' face
6464 ((ps-face-background-color-p (car face-or-list))
6465 (vector 0 nil (cdr face-or-list)))
6466 ;; list of faces
6467 (t
6468 (let ((effects 0)
6469 foreground background face-attr face)
6470 (while face-or-list
6471 (setq face (car face-or-list)
6472 face-or-list (cdr face-or-list)
6473 face-attr (ps-face-attributes face)
6474 effects (logior effects (aref face-attr 0)))
6475 (or foreground (setq foreground (aref face-attr 1)))
6476 (or background
6477 (setq background (ps-face-background face (aref face-attr 2)))))
6478 (vector effects foreground background)))))
6479
6480
6481 (defconst ps-font-type (vector nil 'bold 'italic 'bold-italic))
6482
6483
6484 (defun ps-plot-with-face (from to face)
6485 (cond
6486 ((null face) ; print text with null face
6487 (ps-plot-region from to 0))
6488 ((eq face 'emacs--invisible--face)) ; skip invisible text!!!
6489 (t ; otherwise, text has a valid face
6490 (let* ((face-bit (ps-face-attribute-list face))
6491 (effect (aref face-bit 0))
6492 (foreground (aref face-bit 1))
6493 (background (ps-face-background face (aref face-bit 2)))
6494 (fg-color (if (and ps-color-p foreground)
6495 (ps-color-scale foreground)
6496 ps-default-color))
6497 (bg-color (and ps-color-p background
6498 (ps-color-scale background))))
6499 (ps-plot-region
6500 from to
6501 (ps-font-number 'ps-font-for-text
6502 (or (aref ps-font-type (logand effect 3))
6503 face))
6504 fg-color bg-color (lsh effect -2)))))
6505 (goto-char to))
6506
6507
6508 ;; Ensure that face-list is fbound.
6509 (or (fboundp 'face-list) (defalias 'face-list 'list-faces))
6510
6511
6512 (defun ps-build-reference-face-lists ()
6513 ;; Ensure that face database is updated with faces on
6514 ;; `font-lock-face-attributes' (obsolete stuff)
6515 (ps-font-lock-face-attributes)
6516 ;; Now, rebuild reference face lists
6517 (setq ps-print-face-alist nil)
6518 (if ps-auto-font-detect
6519 (mapc 'ps-map-face (face-list))
6520 (mapc 'ps-set-face-bold ps-bold-faces)
6521 (mapc 'ps-set-face-italic ps-italic-faces)
6522 (mapc 'ps-set-face-underline ps-underlined-faces))
6523 (setq ps-build-face-reference nil))
6524
6525
6526 (defun ps-set-face-bold (face)
6527 (ps-set-face-attribute face 1))
6528
6529 (defun ps-set-face-italic (face)
6530 (ps-set-face-attribute face 2))
6531
6532 (defun ps-set-face-underline (face)
6533 (ps-set-face-attribute face 4))
6534
6535
6536 (defun ps-set-face-attribute (face effect)
6537 (let ((face-bit (cdr (ps-map-face face))))
6538 (aset face-bit 0 (logior (aref face-bit 0) effect))))
6539
6540
6541 (defun ps-map-face (face)
6542 (let* ((face-map (ps-screen-to-bit-face face))
6543 (ps-face-bit (cdr (assq (car face-map) ps-print-face-alist))))
6544 (if ps-face-bit
6545 ;; if face exists, merge both
6546 (let ((face-bit (cdr face-map)))
6547 (aset ps-face-bit 0 (logior (aref ps-face-bit 0) (aref face-bit 0)))
6548 (or (aref ps-face-bit 1) (aset ps-face-bit 1 (aref face-bit 1)))
6549 (or (aref ps-face-bit 2) (aset ps-face-bit 2 (aref face-bit 2))))
6550 ;; if face does not exist, insert it
6551 (setq ps-print-face-alist (cons face-map ps-print-face-alist)))
6552 face-map))
6553
6554
6555 (defun ps-screen-to-bit-face (face)
6556 (cons face
6557 (vector (logior (if (ps-face-bold-p face) 1 0) ; bold
6558 (if (ps-face-italic-p face) 2 0) ; italic
6559 (if (ps-face-underlined-p face) 4 0)) ; underline
6560 (ps-face-foreground-name face)
6561 (ps-face-background-name face))))
6562
6563
6564 ;; to avoid compilation gripes
6565 (defalias 'ps-jitify 'jit-lock-fontify-now)
6566 (defalias 'ps-lazify 'lazy-lock-fontify-region)
6567
6568
6569 ;; to avoid compilation gripes
6570 (defun ps-print-ensure-fontified (start end)
6571 (cond ((and (boundp 'jit-lock-mode) (symbol-value 'jit-lock-mode))
6572 (ps-jitify start end))
6573 ((and (boundp 'lazy-lock-mode) (symbol-value 'lazy-lock-mode))
6574 (ps-lazify start end))))
6575
6576
6577 (defun ps-generate-postscript-with-faces (from to)
6578 ;; Some initialization...
6579 (setq ps-current-effect 0)
6580
6581 ;; Build the reference lists of faces if necessary.
6582 (when (or ps-always-build-face-reference
6583 ps-build-face-reference)
6584 (message "Collecting face information...")
6585 (ps-build-reference-face-lists))
6586
6587 ;; Black/white printer.
6588 (setq ps-black-white-faces-alist nil)
6589 (and (eq ps-print-color-p 'black-white)
6590 (ps-extend-face-list ps-black-white-faces nil
6591 'ps-black-white-faces-alist))
6592
6593 ;; Generate some PostScript.
6594 (save-restriction
6595 (narrow-to-region from to)
6596 (ps-print-ensure-fontified from to)
6597 (let ((face 'default)
6598 (position to))
6599 (cond
6600 ((featurep 'xemacs) ; XEmacs
6601 ;; Build the list of extents...
6602 (let ((a (cons 'dummy nil))
6603 record type extent extent-list)
6604 (map-extents 'ps-xemacs-mapper nil from to a)
6605 (setq a (sort (cdr a) 'car-less-than-car)
6606 extent-list nil)
6607
6608 ;; Loop through the extents...
6609 (while a
6610 (setq record (car a)
6611 position (car record)
6612
6613 record (cdr record)
6614 type (car record)
6615
6616 record (cdr record)
6617 extent (car record))
6618
6619 ;; Plot up to this record.
6620 ;; XEmacs 19.12: for some reason, we're getting into a
6621 ;; situation in which some of the records have
6622 ;; positions less than 'from'. Since we've narrowed
6623 ;; the buffer, this'll generate errors. This is a hack,
6624 ;; but don't call ps-plot-with-face unless from > point-min.
6625 (and (>= from (point-min))
6626 (ps-plot-with-face from (min position (point-max)) face))
6627
6628 (cond
6629 ((eq type 'push)
6630 (and (extent-face extent)
6631 (setq extent-list (sort (cons extent extent-list)
6632 'ps-xemacs-extent-sorter))))
6633
6634 ((eq type 'pull)
6635 (setq extent-list (sort (delq extent extent-list)
6636 'ps-xemacs-extent-sorter))))
6637
6638 (setq face (if extent-list
6639 (extent-face (car extent-list))
6640 'default)
6641 from position
6642 a (cdr a)))))
6643
6644 (t ; Emacs
6645 (let ((property-change from)
6646 (overlay-change from)
6647 (save-buffer-invisibility-spec buffer-invisibility-spec)
6648 (buffer-invisibility-spec nil)
6649 before-string after-string)
6650 (while (< from to)
6651 (and (< property-change to) ; Don't search for property change
6652 ; unless previous search succeeded.
6653 (setq property-change (next-property-change from nil to)))
6654 (and (< overlay-change to) ; Don't search for overlay change
6655 ; unless previous search succeeded.
6656 (setq overlay-change (min (next-overlay-change from)
6657 to)))
6658 (setq position (min property-change overlay-change)
6659 before-string nil
6660 after-string nil)
6661 ;; The code below is not quite correct,
6662 ;; because a non-nil overlay invisible property
6663 ;; which is inactive according to the current value
6664 ;; of buffer-invisibility-spec nonetheless overrides
6665 ;; a face text property.
6666 (setq face
6667 (cond ((let ((prop (get-text-property from 'invisible)))
6668 ;; Decide whether this invisible property
6669 ;; really makes the text invisible.
6670 (if (eq save-buffer-invisibility-spec t)
6671 (not (null prop))
6672 (or (memq prop save-buffer-invisibility-spec)
6673 (assq prop save-buffer-invisibility-spec))))
6674 'emacs--invisible--face)
6675 ((get-text-property from 'face))
6676 (t 'default)))
6677 (let ((overlays (overlays-at from))
6678 (face-priority -1)) ; text-property
6679 (while (and overlays
6680 (not (eq face 'emacs--invisible--face)))
6681 (let* ((overlay (car overlays))
6682 (overlay-invisible
6683 (overlay-get overlay 'invisible))
6684 (overlay-priority
6685 (or (overlay-get overlay 'priority) 0)))
6686 (and (> overlay-priority face-priority)
6687 (setq before-string
6688 (or (overlay-get overlay 'before-string)
6689 before-string)
6690 after-string
6691 (or (and (<= (overlay-end overlay) position)
6692 (overlay-get overlay 'after-string))
6693 after-string)
6694 face-priority overlay-priority
6695 face
6696 (cond
6697 ((if (eq save-buffer-invisibility-spec t)
6698 (not (null overlay-invisible))
6699 (or (memq overlay-invisible
6700 save-buffer-invisibility-spec)
6701 (assq overlay-invisible
6702 save-buffer-invisibility-spec)))
6703 'emacs--invisible--face)
6704 ((overlay-get overlay 'face))
6705 (t face)
6706 ))))
6707 (setq overlays (cdr overlays))))
6708 ;; Plot up to this record.
6709 (and before-string
6710 (ps-plot-string before-string))
6711 (ps-plot-with-face from position face)
6712 (and after-string
6713 (ps-plot-string after-string))
6714 (setq from position)))))
6715 (ps-plot-with-face from to face))))
6716
6717 (defun ps-generate-postscript (from to)
6718 (ps-plot-region from to 0))
6719
6720 (defun ps-generate (buffer from to genfunc)
6721 (save-excursion
6722 (let ((from (min to from))
6723 (to (max to from))
6724 ;; This avoids trouble if chars with read-only properties
6725 ;; are copied into ps-spool-buffer.
6726 (inhibit-read-only t))
6727 (save-restriction
6728 (narrow-to-region from to)
6729 (and ps-razzle-dazzle
6730 (message "Formatting...%3d%%" (setq ps-razchunk 0)))
6731 (setq ps-source-buffer buffer
6732 ps-spool-buffer (get-buffer-create ps-spool-buffer-name))
6733 (ps-init-output-queue)
6734 (let (safe-marker completed-safely needs-begin-file)
6735 (unwind-protect
6736 (progn
6737 (set-buffer ps-spool-buffer)
6738 (set-buffer-multibyte nil)
6739
6740 ;; Get a marker and make it point to the current end of the
6741 ;; buffer, If an error occurs, we'll delete everything from
6742 ;; the end of this marker onwards.
6743 (setq safe-marker (make-marker))
6744 (set-marker safe-marker (point-max))
6745
6746 (goto-char (point-min))
6747 (or (looking-at (regexp-quote ps-adobe-tag))
6748 (setq needs-begin-file t))
6749
6750 (set-buffer ps-source-buffer)
6751 (save-excursion
6752 (let ((ps-print-page-p t)
6753 ps-even-or-odd-pages)
6754 (ps-begin-job genfunc)
6755 (when needs-begin-file
6756 (ps-begin-file)
6757 (ps-mule-initialize))
6758 (ps-mule-begin-job from to)
6759 (ps-selected-pages)))
6760 (ps-begin-page)
6761 (funcall genfunc from to)
6762 (ps-end-page)
6763 (ps-end-job needs-begin-file)
6764
6765 ;; Setting this variable tells the unwind form that the
6766 ;; the PostScript was generated without error.
6767 (setq completed-safely t))
6768
6769 ;; Unwind form: If some bad mojo occurred while generating
6770 ;; PostScript, delete all the PostScript that was generated.
6771 ;; This protects the previously spooled files from getting
6772 ;; corrupted.
6773 (and (markerp safe-marker) (not completed-safely)
6774 (progn
6775 (set-buffer ps-spool-buffer)
6776 (delete-region (marker-position safe-marker) (point-max))))))
6777
6778 (and ps-razzle-dazzle (message "Formatting...done"))))))
6779
6780
6781 (defun ps-end-job (needs-begin-file)
6782 (let ((ps-print-page-p t))
6783 (ps-flush-output)
6784 (save-excursion
6785 (let ((pages-per-sheet (mod ps-page-printed ps-n-up-printing))
6786 (total-lines (cdr ps-printing-region))
6787 (total-pages (ps-page-number)))
6788 (set-buffer ps-spool-buffer)
6789 (let (case-fold-search)
6790 ;; Back to the PS output buffer to set the last page n-up printing
6791 (goto-char (point-max))
6792 (and (> pages-per-sheet 0)
6793 (re-search-backward "^[0-9]+ BeginSheet$" nil t)
6794 (replace-match (format "%d BeginSheet" pages-per-sheet) t))
6795 ;; Back to the PS output buffer to set the page count
6796 (goto-char (point-min))
6797 (while (re-search-forward "^/Lines 0 def\n/PageCount 0 def$" nil t)
6798 (replace-match (format "/Lines %d def\n/PageCount %d def"
6799 total-lines total-pages) t)))))
6800 ;; Set dummy page
6801 (and ps-spool-duplex (= (mod ps-page-order 2) 1)
6802 (let ((ps-n-up-printing 0))
6803 (ps-header-sheet)
6804 (ps-output "/PrintHeader false def\n/ColumnIndex 0 def\n"
6805 "/PrintLineNumber false def\n"
6806 (number-to-string ps-lines-printed) " BeginPage\n")
6807 (ps-end-page)))
6808 ;; Set end of PostScript file
6809 (ps-end-sheet)
6810 (ps-output "\n%%Trailer\n%%Pages: "
6811 (number-to-string
6812 (if (and needs-begin-file
6813 ps-banner-page-when-duplexing)
6814 (1+ ps-page-order)
6815 ps-page-order))
6816 "\n\nEndDoc\n\n%%EOF\n")
6817 (and ps-end-with-control-d
6818 (ps-output "\C-d"))
6819 (ps-flush-output))
6820 ;; disable selected pages
6821 (setq ps-selected-pages nil))
6822
6823
6824 ;; Permit dynamic evaluation at print time of `ps-lpr-switches'.
6825 (defun ps-do-despool (filename)
6826 (if (or (not (boundp 'ps-spool-buffer))
6827 (not (symbol-value 'ps-spool-buffer)))
6828 (message "No spooled PostScript to print")
6829 (if filename
6830 (save-excursion
6831 (and ps-razzle-dazzle (message "Saving..."))
6832 (set-buffer ps-spool-buffer)
6833 (setq filename (expand-file-name filename))
6834 (let ((coding-system-for-write 'raw-text-unix))
6835 (write-region (point-min) (point-max) filename))
6836 (and ps-razzle-dazzle (message "Wrote %s" filename)))
6837 ;; Else, spool to the printer
6838 (and ps-razzle-dazzle (message "Printing..."))
6839 (save-excursion
6840 (set-buffer ps-spool-buffer)
6841 (let* ((coding-system-for-write 'raw-text-unix)
6842 (ps-printer-name (or ps-printer-name
6843 (and (boundp 'printer-name)
6844 (symbol-value 'printer-name))))
6845 (ps-lpr-switches
6846 (append (if (listp ps-lpr-switches)
6847 ps-lpr-switches
6848 (list ps-lpr-switches))
6849 (and (stringp ps-printer-name)
6850 (string< "" ps-printer-name)
6851 (list (concat
6852 (and (stringp ps-printer-name-option)
6853 ps-printer-name-option)
6854 ps-printer-name))))))
6855 (or (stringp ps-printer-name)
6856 (setq ps-printer-name nil))
6857 (apply (or ps-print-region-function 'call-process-region)
6858 (point-min) (point-max) ps-lpr-command nil
6859 (and (fboundp 'start-process) 0)
6860 nil
6861 (ps-flatten-list ; dynamic evaluation
6862 (mapcar 'ps-eval-switch ps-lpr-switches)))))
6863 (and ps-razzle-dazzle (message "Printing...done")))
6864 (kill-buffer ps-spool-buffer)))
6865
6866 ;; Dynamic evaluation
6867 (defun ps-eval-switch (arg)
6868 (cond ((stringp arg) arg)
6869 ((functionp arg) (apply arg nil))
6870 ((symbolp arg) (symbol-value arg))
6871 ((consp arg) (apply (car arg) (cdr arg)))
6872 (t nil)))
6873
6874 ;; `ps-flatten-list' is defined here (copied from "message.el" and
6875 ;; enhanced to handle dotted pairs as well) until we can get some
6876 ;; sensible autoloads, or `flatten-list' gets put somewhere decent.
6877
6878 ;; (ps-flatten-list '((a . b) c (d . e) (f g h) i . j))
6879 ;; => (a b c d e f g h i j)
6880
6881 (defun ps-flatten-list (&rest list)
6882 (ps-flatten-list-1 list))
6883
6884 (defun ps-flatten-list-1 (list)
6885 (cond ((null list) nil)
6886 ((consp list) (append (ps-flatten-list-1 (car list))
6887 (ps-flatten-list-1 (cdr list))))
6888 (t (list list))))
6889
6890 (defun ps-kill-emacs-check ()
6891 (let (ps-buffer)
6892 (and (setq ps-buffer (get-buffer ps-spool-buffer-name))
6893 (buffer-name ps-buffer) ; check if it's not killed
6894 (buffer-modified-p ps-buffer)
6895 (y-or-n-p "Unprinted PostScript waiting; print now? ")
6896 (ps-despool))
6897 (and (setq ps-buffer (get-buffer ps-spool-buffer-name))
6898 (buffer-name ps-buffer) ; check if it's not killed
6899 (buffer-modified-p ps-buffer)
6900 (not (yes-or-no-p "Unprinted PostScript waiting; exit anyway? "))
6901 (error "Unprinted PostScript"))))
6902
6903 (cond ((fboundp 'add-hook)
6904 (funcall 'add-hook 'kill-emacs-hook 'ps-kill-emacs-check))
6905 (kill-emacs-hook
6906 (message "Won't override existing `kill-emacs-hook'"))
6907 (t
6908 (setq kill-emacs-hook 'ps-kill-emacs-check)))
6909
6910 \f
6911 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6912 ;;; Sample Setup Code:
6913
6914
6915 ;; This stuff is for anybody that's brave enough to look this far,
6916 ;; and able to figure out how to use it. It isn't really part of
6917 ;; ps-print, but I'll leave it here in hopes it might be useful:
6918
6919 ;; WARNING!!! The following code is *sample* code only.
6920 ;; Don't use it unless you understand what it does!
6921
6922 ;; The key `f22' should probably be replaced by `print'. --Stef
6923
6924 ;; A hook to bind to `rmail-mode-hook' to locally bind prsc and set the
6925 ;; `ps-left-headers' specially for mail messages.
6926 (defun ps-rmail-mode-hook ()
6927 (local-set-key [(f22)] 'ps-rmail-print-message-from-summary)
6928 (setq ps-header-lines 3
6929 ps-left-header
6930 ;; The left headers will display the message's subject, its
6931 ;; author, and the name of the folder it was in.
6932 '(ps-article-subject ps-article-author buffer-name)))
6933
6934 ;; See `ps-gnus-print-article-from-summary'. This function does the
6935 ;; same thing for rmail.
6936 (defun ps-rmail-print-message-from-summary ()
6937 (interactive)
6938 (ps-print-message-from-summary 'rmail-summary-buffer "RMAIL"))
6939
6940 ;; Used in `ps-rmail-print-article-from-summary',
6941 ;; `ps-gnus-print-article-from-summary' and `ps-vm-print-message-from-summary'.
6942 (defun ps-print-message-from-summary (summary-buffer summary-default)
6943 (let ((ps-buf (or (and (boundp summary-buffer)
6944 (symbol-value summary-buffer))
6945 summary-default)))
6946 (and (get-buffer ps-buf)
6947 (save-excursion
6948 (set-buffer ps-buf)
6949 (ps-spool-buffer-with-faces)))))
6950
6951 ;; Look in an article or mail message for the Subject: line. To be
6952 ;; placed in `ps-left-headers'.
6953 (defun ps-article-subject ()
6954 (save-excursion
6955 (goto-char (point-min))
6956 (if (re-search-forward "^Subject:[ \t]+\\(.*\\)$" nil t)
6957 (buffer-substring (match-beginning 1) (match-end 1))
6958 "Subject ???")))
6959
6960 ;; Look in an article or mail message for the From: line. Sorta-kinda
6961 ;; understands RFC-822 addresses and can pull the real name out where
6962 ;; it's provided. To be placed in `ps-left-headers'.
6963 (defun ps-article-author ()
6964 (save-excursion
6965 (goto-char (point-min))
6966 (if (re-search-forward "^From:[ \t]+\\(.*\\)$" nil t)
6967 (let ((fromstring (buffer-substring (match-beginning 1) (match-end 1))))
6968 (cond
6969
6970 ;; Try first to match addresses that look like
6971 ;; thompson@wg2.waii.com (Jim Thompson)
6972 ((string-match ".*[ \t]+(\\(.*\\))" fromstring)
6973 (substring fromstring (match-beginning 1) (match-end 1)))
6974
6975 ;; Next try to match addresses that look like
6976 ;; Jim Thompson <thompson@wg2.waii.com> or
6977 ;; "Jim Thompson" <thompson@wg2.waii.com>
6978 ((string-match "\\(\"?\\)\\(.*\\)\\1[ \t]+<.*>" fromstring)
6979 (substring fromstring (match-beginning 2) (match-end 2)))
6980
6981 ;; Couldn't find a real name -- show the address instead.
6982 (t fromstring)))
6983 "From ???")))
6984
6985 ;; A hook to bind to `gnus-article-prepare-hook'. This will set the
6986 ;; `ps-left-headers' specially for gnus articles. Unfortunately,
6987 ;; `gnus-article-mode-hook' is called only once, the first time the *Article*
6988 ;; buffer enters that mode, so it would only work for the first time
6989 ;; we ran gnus. The second time, this hook wouldn't get set up. The
6990 ;; only alternative is `gnus-article-prepare-hook'.
6991 (defun ps-gnus-article-prepare-hook ()
6992 (setq ps-header-lines 3
6993 ps-left-header
6994 ;; The left headers will display the article's subject, its
6995 ;; author, and the newsgroup it was in.
6996 '(ps-article-subject ps-article-author gnus-newsgroup-name)))
6997
6998 ;; A hook to bind to `vm-mode-hook' to locally bind prsc and set the
6999 ;; `ps-left-headers' specially for mail messages.
7000 (defun ps-vm-mode-hook ()
7001 (local-set-key [(f22)] 'ps-vm-print-message-from-summary)
7002 (setq ps-header-lines 3
7003 ps-left-header
7004 ;; The left headers will display the message's subject, its
7005 ;; author, and the name of the folder it was in.
7006 '(ps-article-subject ps-article-author buffer-name)))
7007
7008 ;; Every now and then I forget to switch from the *Summary* buffer to
7009 ;; the *Article* before hitting prsc, and a nicely formatted list of
7010 ;; article subjects shows up at the printer. This function, bound to
7011 ;; prsc for the gnus *Summary* buffer means I don't have to switch
7012 ;; buffers first.
7013 ;; sb: Updated for Gnus 5.
7014 (defun ps-gnus-print-article-from-summary ()
7015 (interactive)
7016 (ps-print-message-from-summary 'gnus-article-buffer "*Article*"))
7017
7018 ;; See `ps-gnus-print-article-from-summary'. This function does the
7019 ;; same thing for vm.
7020 (defun ps-vm-print-message-from-summary ()
7021 (interactive)
7022 (ps-print-message-from-summary 'vm-mail-buffer ""))
7023
7024 ;; A hook to bind to bind to `gnus-summary-setup-buffer' to locally bind
7025 ;; prsc.
7026 (defun ps-gnus-summary-setup ()
7027 (local-set-key [(f22)] 'ps-gnus-print-article-from-summary))
7028
7029 ;; Look in an article or mail message for the Subject: line. To be
7030 ;; placed in `ps-left-headers'.
7031 (defun ps-info-file ()
7032 (save-excursion
7033 (goto-char (point-min))
7034 (if (re-search-forward "File:[ \t]+\\([^, \t\n]*\\)" nil t)
7035 (buffer-substring (match-beginning 1) (match-end 1))
7036 "File ???")))
7037
7038 ;; Look in an article or mail message for the Subject: line. To be
7039 ;; placed in `ps-left-headers'.
7040 (defun ps-info-node ()
7041 (save-excursion
7042 (goto-char (point-min))
7043 (if (re-search-forward "Node:[ \t]+\\([^,\t\n]*\\)" nil t)
7044 (buffer-substring (match-beginning 1) (match-end 1))
7045 "Node ???")))
7046
7047 (defun ps-info-mode-hook ()
7048 (setq ps-left-header
7049 ;; The left headers will display the node name and file name.
7050 '(ps-info-node ps-info-file)))
7051
7052 ;; WARNING! The following function is a *sample* only, and is *not*
7053 ;; meant to be used as a whole unless you understand what the effects
7054 ;; will be! (In fact, this is a copy of Jim's setup for ps-print --
7055 ;; I'd be very surprised if it was useful to *anybody*, without
7056 ;; modification.)
7057
7058 (defun ps-jts-ps-setup ()
7059 (global-set-key [(f22)] 'ps-spool-buffer-with-faces) ;f22 is prsc
7060 (global-set-key [(shift f22)] 'ps-spool-region-with-faces)
7061 (global-set-key [(control f22)] 'ps-despool)
7062 (add-hook 'gnus-article-prepare-hook 'ps-gnus-article-prepare-hook)
7063 (add-hook 'gnus-summary-mode-hook 'ps-gnus-summary-setup)
7064 (add-hook 'vm-mode-hook 'ps-vm-mode-hook)
7065 (add-hook 'vm-mode-hooks 'ps-vm-mode-hook)
7066 (add-hook 'Info-mode-hook 'ps-info-mode-hook)
7067 (setq ps-spool-duplex t
7068 ps-print-color-p nil
7069 ps-lpr-command "lpr"
7070 ps-lpr-switches '("-Jjct,duplex_long"))
7071 'ps-jts-ps-setup)
7072
7073 ;; WARNING! The following function is a *sample* only, and is *not*
7074 ;; meant to be used as a whole unless it corresponds to your needs.
7075 ;; (In fact, this is a copy of Jack's setup for ps-print --
7076 ;; I would not be that surprised if it was useful to *anybody*,
7077 ;; without modification.)
7078
7079 (defun ps-jack-setup ()
7080 (setq ps-print-color-p nil
7081 ps-lpr-command "lpr"
7082 ps-lpr-switches nil
7083
7084 ps-paper-type 'a4
7085 ps-landscape-mode t
7086 ps-number-of-columns 2
7087
7088 ps-left-margin (/ (* 72 1.0) 2.54) ; 1.0 cm
7089 ps-right-margin (/ (* 72 1.0) 2.54) ; 1.0 cm
7090 ps-inter-column (/ (* 72 1.0) 2.54) ; 1.0 cm
7091 ps-bottom-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
7092 ps-top-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
7093 ps-header-offset (/ (* 72 1.0) 2.54) ; 1.0 cm
7094 ps-header-line-pad .15
7095 ps-print-header t
7096 ps-print-header-frame t
7097 ps-header-lines 2
7098 ps-show-n-of-n t
7099 ps-spool-duplex nil
7100
7101 ps-font-family 'Courier
7102 ps-font-size 5.5
7103 ps-header-font-family 'Helvetica
7104 ps-header-font-size 6
7105 ps-header-title-font-size 8)
7106 'ps-jack-setup)
7107
7108 \f
7109 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7110 ;; To make this file smaller, some commands go in a separate file.
7111 ;; But autoload them here to make the separation invisible.
7112 \f
7113 ;;;### (autoloads (ps-mule-begin-page ps-mule-begin-job ps-mule-encode-header-string
7114 ;;;;;; ps-mule-initialize ps-mule-plot-composition ps-mule-plot-string
7115 ;;;;;; ps-mule-set-ascii-font ps-mule-prepare-ascii-font ps-multibyte-buffer)
7116 ;;;;;; "ps-mule" "ps-mule.el" "586d0a4deeb89be9b80cc01def34481c")
7117 ;;; Generated autoloads from ps-mule.el
7118
7119 (defvar ps-multibyte-buffer nil "\
7120 *Specifies the multi-byte buffer handling.
7121
7122 Valid values are:
7123
7124 nil This is the value to use the default settings;
7125 by default, this only works to print buffers with
7126 only ASCII and Latin characters. But this default
7127 setting can be changed by setting the variable
7128 `ps-mule-font-info-database-default' differently.
7129 The initial value of this variable is
7130 `ps-mule-font-info-database-latin' (see
7131 documentation).
7132
7133 `non-latin-printer' This is the value to use when you have a Japanese
7134 or Korean PostScript printer and want to print
7135 buffer with ASCII, Latin-1, Japanese (JISX0208 and
7136 JISX0201-Kana) and Korean characters. At present,
7137 it was not tested with the Korean characters
7138 printing. If you have a korean PostScript printer,
7139 please, test it.
7140
7141 `bdf-font' This is the value to use when you want to print
7142 buffer with BDF fonts. BDF fonts include both latin
7143 and non-latin fonts. BDF (Bitmap Distribution
7144 Format) is a format used for distributing X's font
7145 source file. BDF fonts are included in
7146 `intlfonts-1.2' which is a collection of X11 fonts
7147 for all characters supported by Emacs. In order to
7148 use this value, be sure to have installed
7149 `intlfonts-1.2' and set the variable
7150 `bdf-directory-list' appropriately (see ps-bdf.el for
7151 documentation of this variable).
7152
7153 `bdf-font-except-latin' This is like `bdf-font' except that it uses
7154 PostScript default fonts to print ASCII and Latin-1
7155 characters. This is convenient when you want or
7156 need to use both latin and non-latin characters on
7157 the same buffer. See `ps-font-family',
7158 `ps-header-font-family' and `ps-font-info-database'.
7159
7160 Any other value is treated as nil.")
7161
7162 (custom-autoload 'ps-multibyte-buffer "ps-mule" t)
7163
7164 (autoload 'ps-mule-prepare-ascii-font "ps-mule" "\
7165 Setup special ASCII font for STRING.
7166 STRING should contain only ASCII characters.
7167
7168 \(fn STRING)" nil nil)
7169
7170 (autoload 'ps-mule-set-ascii-font "ps-mule" "\
7171 Not documented
7172
7173 \(fn)" nil nil)
7174
7175 (autoload 'ps-mule-plot-string "ps-mule" "\
7176 Generate PostScript code for plotting characters in the region FROM and TO.
7177
7178 It is assumed that all characters in this region belong to the same charset.
7179
7180 Optional argument BG-COLOR specifies background color.
7181
7182 Returns the value:
7183
7184 (ENDPOS . RUN-WIDTH)
7185
7186 Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
7187 the sequence.
7188
7189 \(fn FROM TO &optional BG-COLOR)" nil nil)
7190
7191 (autoload 'ps-mule-plot-composition "ps-mule" "\
7192 Generate PostScript code for plotting composition in the region FROM and TO.
7193
7194 It is assumed that all characters in this region belong to the same
7195 composition.
7196
7197 Optional argument BG-COLOR specifies background color.
7198
7199 Returns the value:
7200
7201 (ENDPOS . RUN-WIDTH)
7202
7203 Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
7204 the sequence.
7205
7206 \(fn FROM TO &optional BG-COLOR)" nil nil)
7207
7208 (autoload 'ps-mule-initialize "ps-mule" "\
7209 Initialize global data for printing multi-byte characters.
7210
7211 \(fn)" nil nil)
7212
7213 (autoload 'ps-mule-encode-header-string "ps-mule" "\
7214 Generate PostScript code for ploting STRING by font FONTTAG.
7215 FONTTAG should be a string \"/h0\" or \"/h1\".
7216
7217 \(fn STRING FONTTAG)" nil nil)
7218
7219 (autoload 'ps-mule-begin-job "ps-mule" "\
7220 Start printing job for multi-byte chars between FROM and TO.
7221 It checks if all multi-byte characters in the region are printable or not.
7222
7223 \(fn FROM TO)" nil nil)
7224
7225 (autoload 'ps-mule-begin-page "ps-mule" "\
7226 Not documented
7227
7228 \(fn)" nil nil)
7229
7230 ;;;***
7231 \f
7232 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7233
7234 (provide 'ps-print)
7235
7236 ;; arch-tag: fb06a585-1112-4206-885d-a57d95d50579
7237 ;;; ps-print.el ends here