Allow 'browse-url-emacs' to fetch URL in the selected window
[emacs.git] / lisp / ps-print.el
blob28f93f4e2037731604501203b305632e7954cc39
1 ;;; ps-print.el --- print text from the buffer as PostScript -*- lexical-binding: t -*-
3 ;; Copyright (C) 1993-2018 Free Software Foundation, Inc.
5 ;; Author: Jim Thompson (was <thompson@wg2.waii.com>)
6 ;; Jacques Duthen (was <duthen@cegelec-red.fr>)
7 ;; Vinicius Jose Latorre <viniciusjl.gnu@gmail.com>
8 ;; Kenichi Handa <handa@m17n.org> (multi-byte characters)
9 ;; Maintainer: Kenichi Handa <handa@m17n.org> (multi-byte characters)
10 ;; Vinicius Jose Latorre <viniciusjl.gnu@gmail.com>
11 ;; Keywords: wp, print, PostScript
12 ;; Version: 7.3.5
13 ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre
15 (defconst ps-print-version "7.3.5"
16 "ps-print.el, v 7.3.5 <2009/12/23 vinicius>
18 Vinicius's last change version -- this file may have been edited as part of
19 Emacs without changes to the version number. When reporting bugs, please also
20 report the version of Emacs, if any, that ps-print was distributed with.
22 Please send all bug fixes and enhancements to
23 bug-gnu-emacs@gnu.org and Vinicius Jose Latorre <viniciusjl.gnu@gmail.com>.")
25 ;; This file is part of GNU Emacs.
27 ;; GNU Emacs is free software: you can redistribute it and/or modify
28 ;; it under the terms of the GNU General Public License as published by
29 ;; the Free Software Foundation, either version 3 of the License, or
30 ;; (at your option) any later version.
32 ;; GNU Emacs is distributed in the hope that it will be useful,
33 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
34 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 ;; GNU General Public License for more details.
37 ;; You should have received a copy of the GNU General Public License
38 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
40 ;;; Commentary:
42 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
44 ;; About ps-print
45 ;; --------------
47 ;; This package provides printing of Emacs buffers on PostScript printers; the
48 ;; buffer's bold and italic text attributes are preserved in the printer
49 ;; output. ps-print is intended for use with Emacs or XEmacs, together with a
50 ;; fontifying package such as font-lock or hilit.
52 ;; ps-print uses the same face attributes defined through font-lock or hilit to
53 ;; print a PostScript file, but some faces are better seeing on the screen than
54 ;; on paper, specially when you have a black/white PostScript printer.
56 ;; ps-print allows a remap of face to another one that it is better to print,
57 ;; for example, the face font-lock-comment-face (if you are using font-lock)
58 ;; could have bold or italic attribute when printing, besides foreground color.
59 ;; This remap improves printing look (see How Ps-Print Maps Faces).
62 ;; Using ps-print
63 ;; --------------
65 ;; ps-print provides eight commands for generating PostScript images of Emacs
66 ;; buffers:
68 ;; ps-print-buffer
69 ;; ps-print-buffer-with-faces
70 ;; ps-print-region
71 ;; ps-print-region-with-faces
72 ;; ps-spool-buffer
73 ;; ps-spool-buffer-with-faces
74 ;; ps-spool-region
75 ;; ps-spool-region-with-faces
77 ;; These commands all perform essentially the same function: they generate
78 ;; PostScript images suitable for printing on a PostScript printer or
79 ;; displaying with GhostScript. These commands are collectively referred to as
80 ;; "ps-print- commands".
82 ;; The word "print" or "spool" in the command name determines when the
83 ;; PostScript image is sent to the printer:
85 ;; print - The PostScript image is immediately sent to the printer;
87 ;; spool - The PostScript image is saved temporarily in an Emacs
88 ;; buffer. Many images may be spooled locally before
89 ;; printing them. To send the spooled images to the
90 ;; printer, use the command `ps-despool'.
92 ;; The spooling mechanism was designed for printing lots of small files (mail
93 ;; messages or netnews articles) to save paper that would otherwise be wasted
94 ;; on banner pages, and to make it easier to find your output at the printer
95 ;; (it's easier to pick up one 50-page printout than to find 50 single-page
96 ;; printouts).
98 ;; ps-print has a hook in the `kill-emacs-hook' so that you won't accidentally
99 ;; quit from Emacs while you have unprinted PostScript waiting in the spool
100 ;; buffer. If you do attempt to exit with spooled PostScript, you'll be asked
101 ;; if you want to print it, and if you decline, you'll be asked to confirm the
102 ;; exit; this is modeled on the confirmation that Emacs uses for modified
103 ;; buffers.
105 ;; The word "buffer" or "region" in the command name determines how much of the
106 ;; buffer is printed:
108 ;; buffer - Print the entire buffer.
110 ;; region - Print just the current region.
112 ;; The -with-faces suffix on the command name means that the command will
113 ;; include font, color, and underline information in the PostScript image, so
114 ;; the printed image can look as pretty as the buffer. The ps-print- commands
115 ;; without the -with-faces suffix don't include font, color, or underline
116 ;; information; images printed with these commands aren't as pretty, but are
117 ;; faster to generate.
119 ;; Two ps-print- command examples:
121 ;; ps-print-buffer - print the entire buffer, without font,
122 ;; color, or underline information, and
123 ;; send it immediately to the printer.
125 ;; ps-spool-region-with-faces - print just the current region; include
126 ;; font, color, and underline information,
127 ;; and spool the image in Emacs to send to
128 ;; the printer later.
131 ;; Invoking Ps-Print
132 ;; -----------------
134 ;; To print your buffer, type
136 ;; M-x ps-print-buffer
138 ;; or substitute one of the other seven ps-print- commands. The command will
139 ;; generate the PostScript image and print or spool it as specified. By giving
140 ;; the command a prefix argument
142 ;; C-u M-x ps-print-buffer
144 ;; it will save the PostScript image to a file instead of sending it to the
145 ;; printer; you will be prompted for the name of the file to save the image to.
146 ;; The prefix argument is ignored by the commands that spool their images, but
147 ;; you may save the spooled images to a file by giving a prefix argument to
148 ;; `ps-despool':
150 ;; C-u M-x ps-despool
152 ;; When invoked this way, `ps-despool' will prompt you for the name of the file
153 ;; to save to.
155 ;; Any of the `ps-print-' commands can be bound to keys; I recommend binding
156 ;; `ps-spool-buffer-with-faces', `ps-spool-region-with-faces', and
157 ;; `ps-despool'. Here are the bindings I use on my Sun 4 keyboard:
159 ;; (global-set-key 'f22 'ps-spool-buffer-with-faces) ;f22 is prsc
160 ;; (global-set-key '(shift f22) 'ps-spool-region-with-faces)
161 ;; (global-set-key '(control f22) 'ps-despool)
164 ;; The Printer Interface
165 ;; ---------------------
167 ;; The variables `ps-lpr-command' and `ps-lpr-switches' determine what command
168 ;; is used to send the PostScript images to the printer, and what arguments to
169 ;; give the command. These are analogous to `lpr-command' and `lpr-switches'.
171 ;; Make sure that they contain appropriate values for your system;
172 ;; see the usage notes below and the documentation of these variables.
174 ;; The variable `ps-printer-name' determines the name of a local printer for
175 ;; printing PostScript files.
177 ;; The variable `ps-printer-name-option' determines the option used by some
178 ;; utilities to indicate the printer name, it's used only when
179 ;; `ps-printer-name' is a non-empty string. If you're using lpr utility to
180 ;; print, for example, `ps-printer-name-option' should be set to "-P".
182 ;; NOTE: `ps-lpr-command' and `ps-lpr-switches' take their initial values from
183 ;; the variables `lpr-command' and `lpr-switches'. If you have
184 ;; `lpr-command' set to invoke a pretty-printer such as `enscript', then
185 ;; ps-print won't work properly. `ps-lpr-command' must name a program
186 ;; that does not format the files it prints.
187 ;; `ps-printer-name' takes its initial value from the variable
188 ;; `printer-name'. `ps-printer-name-option' tries to guess which system
189 ;; Emacs is running and takes its initial value in accordance with this
190 ;; guess.
192 ;; The variable `ps-print-region-function' specifies a function to print the
193 ;; region on a PostScript printer.
194 ;; See definition of `call-process-region' for calling conventions. The fourth
195 ;; and the sixth arguments are both nil.
197 ;; The variable `ps-manual-feed' indicates if the printer will manually feed
198 ;; paper. If it's nil, automatic feeding takes place. If it's non-nil, manual
199 ;; feeding takes place. The default is nil (automatic feeding).
201 ;; The variable `ps-end-with-control-d' specifies whether C-d (\x04) should be
202 ;; inserted at end of PostScript generated. Non-nil means do so. The default
203 ;; is nil (don't insert).
205 ;; If you're using Emacs for Windows 95/98/NT or MS-DOS, don't forget to
206 ;; customize the following variables: `ps-printer-name',
207 ;; `ps-printer-name-option', `ps-lpr-command', `ps-lpr-switches' and
208 ;; `ps-spool-config'. See these variables documentation in the code or by
209 ;; typing, for example, C-h v ps-printer-name RET.
212 ;; The Page Layout
213 ;; ---------------
215 ;; All dimensions are floats in PostScript points.
216 ;; 1 inch == 2.54 cm == 72 points
217 ;; 1 cm == (/ 1 2.54) inch == (/ 72 2.54) points
219 ;; The variable `ps-paper-type' determines the size of paper ps-print formats
220 ;; for; it should contain one of the symbols: `a4' `a3' `letter' `legal'
221 ;; `letter-small' `tabloid' `ledger' `statement' `executive' `a4small' `b4'
222 ;; `b5'.
224 ;; If variable `ps-warn-paper-type' is nil, it's *not* given an error if
225 ;; PostScript printer doesn't have a paper with the size indicated by
226 ;; `ps-paper-type', instead it uses the default paper size. If variable
227 ;; `ps-warn-paper-type' is non-nil, it's given an error if PostScript printer
228 ;; doesn't have a paper with the size indicated by `ps-paper-type'. It's used
229 ;; when `ps-spool-config' is set to `setpagedevice' (see section Duplex
230 ;; Printers). The default value is non-nil (it gives an error).
232 ;; The variable `ps-landscape-mode' determines the orientation of the printing
233 ;; on the page: nil means `portrait' mode, non-nil means `landscape' mode.
234 ;; There is no oblique mode yet, though this is easy to do in ps.
236 ;; In landscape mode, the text is NOT scaled: you may print 70 lines in
237 ;; portrait mode and only 50 lines in landscape mode. The margins represent
238 ;; margins in the printed paper: the top margin is the margin between the top
239 ;; of the page and the printed header, whatever the orientation is.
241 ;; The variable `ps-number-of-columns' determines the number of columns both in
242 ;; landscape and portrait mode.
243 ;; You can use:
244 ;; - (the standard) one column portrait mode.
245 ;; - (my favorite) two columns landscape mode (which spares trees).
246 ;; but also:
247 ;; - one column landscape mode for files with very long lines.
248 ;; - multi-column portrait or landscape mode.
250 ;; The variable `ps-print-upside-down' determines other orientation for
251 ;; printing page: nil means `normal' printing, non-nil means `upside-down'
252 ;; printing (that is, the page is rotated by 180 grades). The default value is
253 ;; nil (`normal' printing).
255 ;; The `upside-down' orientation can be used in portrait or landscape mode.
257 ;; The variable `ps-selected-pages' specifies which pages to print. If it's
258 ;; nil, all pages are printed. If it's a list, the list element may be an
259 ;; integer or a cons cell (FROM . TO) designating FROM page to TO page; any
260 ;; invalid element is ignored, that is, an integer lesser than one or if FROM
261 ;; is greater than TO. Otherwise, it's treated as nil. The default value is
262 ;; nil (print all pages). After ps-print processing `ps-selected-pages' is set
263 ;; to nil. But the latest `ps-selected-pages' is saved in
264 ;; `ps-last-selected-pages' (see it for documentation). So you can restore the
265 ;; latest selected pages by using `ps-last-selected-pages' or by calling
266 ;; `ps-restore-selected-pages' command (see it for documentation).
268 ;; The variable `ps-even-or-odd-pages' specifies if it prints even/odd pages.
270 ;; Valid values are:
272 ;; nil print all pages.
274 ;; even-page print only even pages.
276 ;; odd-page print only odd pages.
278 ;; even-sheet print only even sheets.
280 ;; odd-sheet print only odd sheets.
282 ;; Any other value is treated as nil. The default value is nil.
284 ;; See `ps-even-or-odd-pages' for more detailed documentation.
287 ;; Horizontal layout
288 ;; -----------------
290 ;; The horizontal layout is determined by the variables
291 ;; `ps-left-margin' `ps-inter-column' `ps-right-margin'
292 ;; as follows:
294 ;; ------------------------------------------
295 ;; | | | | | | | |
296 ;; | lm | text | ic | text | ic | text | rm |
297 ;; | | | | | | | |
298 ;; ------------------------------------------
300 ;; If `ps-number-of-columns' is 1, `ps-inter-column' is not relevant.
301 ;; Usually, lm = rm > 0 and ic = lm
302 ;; If (ic < 0), the text of adjacent columns can overlap.
305 ;; Vertical layout
306 ;; ---------------
308 ;; The vertical layout is determined by the variables
309 ;; `ps-bottom-margin' `ps-top-margin' `ps-header-offset' `ps-footer-offset'
310 ;; as follows:
312 ;; |--------| |--------| |--------| |--------|
313 ;; | tm | | tm | | tm | | tm |
314 ;; |--------| |--------| |--------| |--------|
315 ;; | header | | | | header | | |
316 ;; |--------| | | |--------| | |
317 ;; | ho | | | | ho | | |
318 ;; |--------| | | |--------| | |
319 ;; | | | | | | | |
320 ;; | text | or | text | or | text | or | text |
321 ;; | | | | | | | |
322 ;; | | |--------| |--------| | |
323 ;; | | | fo | | fo | | |
324 ;; | | |--------| |--------| | |
325 ;; | | | footer | | footer | | |
326 ;; |--------| |--------| |--------| |--------|
327 ;; | bm | | bm | | bm | | bm |
328 ;; |--------| |--------| |--------| |--------|
330 ;; If `ps-print-header' is nil, `ps-header-offset' is not relevant.
331 ;; If `ps-print-footer' is nil, `ps-footer-offset' is not relevant.
332 ;; The margins represent margins in the printed paper:
333 ;; the top margin is the margin between the top of the page and the printed
334 ;; header, whatever the orientation is;
335 ;; the bottom margin is the margin between the bottom of the page and the
336 ;; printed footer, whatever the orientation is.
339 ;; Headers & Footers
340 ;; -----------------
342 ;; ps-print can print headers at the top of each column or at the top of each
343 ;; page; the default headers contain the following four items: on the left, the
344 ;; name of the buffer and, if the buffer is visiting a file, the file's
345 ;; directory; on the right, the page number and date of printing. The default
346 ;; headers look something like this:
348 ;; ps-print.el 1/21
349 ;; /home/jct/emacs-lisp/ps/new 94/12/31
351 ;; When printing on duplex printers, left and right are reversed so that the
352 ;; page numbers are toward the outside (cf. `ps-spool-duplex').
354 ;; Headers are configurable:
355 ;; To turn them off completely, set `ps-print-header' to nil.
356 ;; To turn off the header's gaudy framing box,
357 ;; set `ps-print-header-frame' to nil.
359 ;; The variable `ps-header-frame-alist' specifies header frame properties
360 ;; alist. Valid frame properties are:
362 ;; fore-color Specify the foreground frame color.
363 ;; It should be a float number between 0.0 (black color)
364 ;; and 1.0 (white color), a string which is a color name,
365 ;; or a list of 3 float numbers which corresponds to the
366 ;; Red Green Blue color scale, each float number between
367 ;; 0.0 (dark color) and 1.0 (bright color).
368 ;; The default is 0 ("black").
370 ;; back-color Specify the background frame color (similar to
371 ;; fore-color). The default is 0.9 ("gray90").
373 ;; shadow-color Specify the shadow color (similar to fore-color).
374 ;; The default is 0 ("black").
376 ;; border-color Specify the border color (similar to fore-color).
377 ;; The default is 0 ("black").
379 ;; border-width Specify the border width.
380 ;; The default is 0.4.
382 ;; Any other property is ignored.
384 ;; Don't change this alist directly, instead use customization, or `ps-value',
385 ;; `ps-get', `ps-put' and `ps-del' functions (see them for documentation).
387 ;; To print only one header at the top of each page, set
388 ;; `ps-print-only-one-header' to t.
390 ;; To switch headers, set `ps-switch-header' to:
392 ;; nil Never switch headers.
394 ;; t Always switch headers.
396 ;; duplex Switch headers only when duplexing is on, that is, when
397 ;; `ps-spool-duplex' is non-nil (see Duplex Printers).
399 ;; Any other value is treated as t. The default value is `duplex'.
401 ;; The font family and size of text in the header are determined by the
402 ;; variables `ps-header-font-family', `ps-header-font-size' and
403 ;; `ps-header-title-font-size' (see below).
405 ;; The variable `ps-header-line-pad' determines the portion of a header title
406 ;; line height to insert between the header frame and the text it contains,
407 ;; both in the vertical and horizontal directions: .5 means half a line.
409 ;; Page numbers are printed in `n/m' format, indicating page n of m pages; to
410 ;; omit the total page count and just print the page number, set
411 ;; `ps-show-n-of-n' to nil.
413 ;; The amount of information in the header can be changed by changing the
414 ;; number of lines. To show less, set `ps-header-lines' to 1, and the header
415 ;; will show only the buffer name and page number. To show more, set
416 ;; `ps-header-lines' to 3, and the header will show the time of printing below
417 ;; the date.
419 ;; To change the content of the headers, change the variables `ps-left-header'
420 ;; and `ps-right-header'.
421 ;; These variables are lists, specifying top-to-bottom the text to display on
422 ;; the left or right side of the header. Each element of the list should be a
423 ;; string or a symbol. Strings are inserted directly into the PostScript
424 ;; arrays, and should contain the PostScript string delimiters '(' and ')'.
426 ;; Symbols in the header format lists can either represent functions or
427 ;; variables. Functions are called, and should return a string to show in the
428 ;; header. Variables should contain strings to display in the header. In
429 ;; either case, function or variable, the PostScript string delimiters are
430 ;; added by ps-print, and should not be part of the returned value.
432 ;; Here's an example: say we want the left header to display the text
434 ;; Moe
435 ;; Larry
436 ;; Curly
438 ;; where we have a function to return "Moe"
440 ;; (defun moe-func ()
441 ;; "Moe")
443 ;; a variable specifying "Larry"
445 ;; (setq larry-var "Larry")
447 ;; and a literal for "Curly". Here's how `ps-left-header' should be set:
449 ;; (setq ps-left-header (list 'moe-func 'larry-var "(Curly)"))
451 ;; Note that Curly has the PostScript string delimiters inside his quotes --
452 ;; those aren't misplaced lisp delimiters!
454 ;; Without them, PostScript would attempt to call the undefined function Curly,
455 ;; which would result in a PostScript error.
457 ;; Since most printers don't report PostScript errors except by aborting the
458 ;; print job, this kind of error can be hard to track down.
460 ;; Consider yourself warned!
462 ;; ps-print also print footers. The footer variables are: `ps-print-footer',
463 ;; `ps-footer-offset', `ps-print-footer-frame', `ps-footer-font-family',
464 ;; `ps-footer-font-size', `ps-footer-line-pad', `ps-footer-lines',
465 ;; `ps-left-footer', `ps-right-footer' and `ps-footer-frame-alist'. These
466 ;; variables are similar to those one that control headers.
468 ;; The variables `ps-print-only-one-header' and `ps-switch-header' also control
469 ;; the footer (The same way that control header).
471 ;; As a footer example, if you want to have a centered page number in the
472 ;; footer but without headers, set:
474 ;; (setq ps-print-header nil
475 ;; ps-print-footer t
476 ;; ps-print-footer-frame nil
477 ;; ps-footer-lines 1
478 ;; ps-right-footer nil
479 ;; ps-left-footer
480 ;; (list (concat "{pagenumberstring dup stringwidth pop"
481 ;; " 2 div PrintWidth 2 div exch sub 0 rmoveto}")))
484 ;; PostScript Prologue Header
485 ;; --------------------------
487 ;; It is possible to add PostScript prologue header comments besides that
488 ;; ps-print generates by setting the variable `ps-print-prologue-header'.
490 ;; `ps-print-prologue-header' may be a string or a symbol function which
491 ;; returns a string. Note that this string is inserted on PostScript prologue
492 ;; header section which is used to define some document characteristic through
493 ;; PostScript special comments, like "%%Requirements: jog\n".
495 ;; By default `ps-print-prologue-header' is nil.
497 ;; ps-print always inserts the %%Requirements: comment, so if you need to
498 ;; insert more requirements put them first in `ps-print-prologue-header' using
499 ;; the "%%+" comment. For example, if you need to set numcopies to 3 and jog
500 ;; on requirements and set %%LanguageLevel: to 2, do:
502 ;; (setq ps-print-prologue-header
503 ;; "%%+ numcopies(3) jog\n%%LanguageLevel: 2\n")
505 ;; The duplex requirement is inserted by ps-print (see section Duplex
506 ;; Printers).
508 ;; Do not forget to terminate the string with "\n".
510 ;; For more information about PostScript document comments, see:
511 ;; PostScript Language Reference Manual (2nd edition)
512 ;; Adobe Systems Incorporated
513 ;; Appendix G: Document Structuring Conventions -- Version 3.0
515 ;; It is also possible to add an user defined PostScript prologue code before
516 ;; all generated prologue code by setting the variable
517 ;; `ps-user-defined-prologue'.
519 ;; `ps-user-defined-prologue' may be a string or a symbol function which
520 ;; returns a string. Note that this string is inserted after `ps-adobe-tag'
521 ;; and PostScript prologue comments, and before ps-print PostScript prologue
522 ;; code section. That is, this string is inserted after error handler
523 ;; initialization and before ps-print settings.
525 ;; By default `ps-user-defined-prologue' is nil.
527 ;; It's strongly recommended only insert PostScript code and/or comments
528 ;; specific for your printing system particularities. For example, some
529 ;; special initialization that only your printing system needs.
531 ;; Do not insert code for duplex printing, n-up printing or error handler,
532 ;; ps-print handles this in a suitable way.
534 ;; For more information about PostScript, see:
535 ;; PostScript Language Reference Manual (2nd edition)
536 ;; Adobe Systems Incorporated
538 ;; As an example for `ps-user-defined-prologue' setting:
540 ;; ;; Setting for HP PostScript printer
541 ;; (setq ps-user-defined-prologue
542 ;; (concat "<</DeferredMediaSelection true /PageSize [612 792] "
543 ;; "/MediaPosition 2 /MediaType (Plain)>> setpagedevice"))
546 ;; PostScript Error Handler
547 ;; ------------------------
549 ;; ps-print instruments generated PostScript code with an error handler.
551 ;; The variable `ps-error-handler-message' specifies where the error handler
552 ;; message should be sent.
554 ;; Valid values are:
556 ;; none catch the error and *DON'T* send any message.
558 ;; paper catch the error and print on paper the error message.
559 ;; This is the default value.
561 ;; system catch the error and send back the error message to
562 ;; printing system. This is useful only if printing
563 ;; system send back an email reporting the error, or if
564 ;; there is some other alternative way to report back the
565 ;; error from the system to you.
567 ;; paper-and-system catch the error, print on paper the error message and
568 ;; send back the error message to printing system.
570 ;; Any other value is treated as `paper'.
573 ;; Duplex Printers
574 ;; ---------------
576 ;; If you have a duplex-capable printer (one that prints both sides of the
577 ;; paper), set `ps-spool-duplex' to t.
578 ;; ps-print will insert blank pages to make sure each buffer starts on the
579 ;; correct side of the paper.
581 ;; The variable `ps-spool-config' specifies who is the responsible for setting
582 ;; duplex and page size. Valid values are:
584 ;; lpr-switches duplex and page size are configured by `ps-lpr-switches'.
585 ;; Don't forget to set `ps-lpr-switches' to select duplex
586 ;; printing for your printer.
588 ;; setpagedevice duplex and page size are configured by ps-print using the
589 ;; setpagedevice PostScript operator.
591 ;; nil duplex and page size are configured by ps-print *not* using
592 ;; the setpagedevice PostScript operator.
594 ;; Any other value is treated as nil.
596 ;; The default value is `lpr-switches'.
598 ;; WARNING: The setpagedevice PostScript operator affects ghostview utility
599 ;; when viewing file generated using landscape. Also on some
600 ;; printers, setpagedevice affects zebra stripes; on other printers,
601 ;; setpagedevice affects the left margin.
602 ;; Besides all that, if your printer does not have the paper size
603 ;; specified by setpagedevice, your printing will be aborted.
604 ;; So, if you need to use setpagedevice, set `ps-spool-config' to
605 ;; `setpagedevice', generate a test file and send it to your printer;
606 ;; if the printed file isn't ok, set `ps-spool-config' to nil.
608 ;; The variable `ps-spool-tumble' specifies how the page images on opposite
609 ;; sides of a sheet are oriented with respect to each other. If
610 ;; `ps-spool-tumble' is nil, produces output suitable for binding on the left
611 ;; or right. If `ps-spool-tumble' is non-nil, produces output suitable for
612 ;; binding at the top or bottom. It has effect only when `ps-spool-duplex' is
613 ;; non-nil. The default value is nil.
615 ;; Some printer system prints a header page and forces the first page be
616 ;; printed on header page back, when using duplex. If your printer system has
617 ;; this behavior, set variable `ps-banner-page-when-duplexing' to t.
619 ;; When `ps-banner-page-when-duplexing' is non-nil, it prints a blank page as
620 ;; the very first printed page. So, it behaves as the very first character of
621 ;; buffer (or region) is ^L (\014).
623 ;; The default for `ps-banner-page-when-duplexing' is nil (*don't* skip the
624 ;; very first page).
627 ;; N-up Printing
628 ;; -------------
630 ;; The variable `ps-n-up-printing' specifies the number of pages per sheet of
631 ;; paper. The value specified must be between 1 and 100. The default is 1.
633 ;; NOTE: some PostScript printer may crash printing if `ps-n-up-printing' is
634 ;; set to a high value (for example, 23). If this happens, set a lower value.
636 ;; The variable `ps-n-up-margin' specifies the margin in points between the
637 ;; sheet border and the n-up printing. The default is 1 cm (or 0.3937 inches,
638 ;; or 28.35 points).
640 ;; If variable `ps-n-up-border-p' is non-nil a border is drawn around each
641 ;; page. The default is t.
643 ;; The variable `ps-n-up-filling' specifies how page matrix is filled on each
644 ;; sheet of paper. Following are the valid values for `ps-n-up-filling' with a
645 ;; filling example using a 3x4 page matrix:
647 ;; left-top 1 2 3 4 left-bottom 9 10 11 12
648 ;; 5 6 7 8 5 6 7 8
649 ;; 9 10 11 12 1 2 3 4
651 ;; right-top 4 3 2 1 right-bottom 12 11 10 9
652 ;; 8 7 6 5 8 7 6 5
653 ;; 12 11 10 9 4 3 2 1
655 ;; top-left 1 4 7 10 bottom-left 3 6 9 12
656 ;; 2 5 8 11 2 5 8 11
657 ;; 3 6 9 12 1 4 7 10
659 ;; top-right 10 7 4 1 bottom-right 12 9 6 3
660 ;; 11 8 5 2 11 8 5 2
661 ;; 12 9 6 3 10 7 4 1
663 ;; Any other value is treated as `left-top'.
665 ;; The default value is left-top.
668 ;; Control And 8-bit Characters
669 ;; ----------------------------
671 ;; The variable `ps-print-control-characters' specifies whether you want to see
672 ;; a printable form for control and 8-bit characters, that is, instead of
673 ;; sending, for example, a ^D (\004) to printer, it is sent the string "^D".
675 ;; Valid values for `ps-print-control-characters' are:
677 ;; 8-bit This is the value to use when you want an ASCII encoding of
678 ;; any control or non-ASCII character. Control characters are
679 ;; encoded as "^D", and non-ASCII characters have an
680 ;; octal encoding.
682 ;; control-8-bit This is the value to use when you want an ASCII encoding of
683 ;; any control character, whether it is 7 or 8-bit.
684 ;; European 8-bits accented characters are printed according
685 ;; the current font.
687 ;; control Only ASCII control characters have an ASCII encoding.
688 ;; European 8-bits accented characters are printed according
689 ;; the current font.
691 ;; nil No ASCII encoding. Any character is printed according the
692 ;; current font.
694 ;; Any other value is treated as nil.
696 ;; The default is `control-8-bit'.
698 ;; Characters TAB, NEWLINE and FORMFEED are always treated by ps-print engine.
701 ;; Printing Multi-byte Buffer
702 ;; --------------------------
704 ;; See ps-mule.el for documentation.
707 ;; Line Number
708 ;; -----------
710 ;; The variable `ps-line-number' specifies whether to number each line;
711 ;; non-nil means do so. The default is nil (don't number each line).
713 ;; The variable `ps-line-number-color' specifies the color for line number.
714 ;; See `ps-zebra-color' for documentation. The default is "black" (or 0.0, or
715 ;; '(0.0 0.0 0.0)).
717 ;; The variable `ps-line-number-font' specifies the font for line number.
718 ;; The default is "Times-Italic".
720 ;; The variable `ps-line-number-font-size' specifies the font size in points
721 ;; for line number. See `ps-font-size' for documentation. The default is 6.
723 ;; The variable `ps-line-number-step' specifies the interval that line number
724 ;; is printed. For example, if `ps-line-number-step' is set to 2, the printing
725 ;; will look like:
727 ;; 1 one line
728 ;; one line
729 ;; 3 one line
730 ;; one line
731 ;; 5 one line
732 ;; one line
733 ;; ...
735 ;; Valid values are:
737 ;; integer an integer that specifies the interval that line number is
738 ;; printed. If it's lesser than or equal to zero, it's used the
739 ;; value 1.
741 ;; `zebra' specifies that only the line number of the first line in a
742 ;; zebra stripe is to be printed.
744 ;; Any other value is treated as `zebra'.
745 ;; The default value is 1, so each line number is printed.
747 ;; The variable `ps-line-number-start' specifies the starting point in the
748 ;; interval given by `ps-line-number-step'. For example, if
749 ;; `ps-line-number-step' is set to 3 and `ps-line-number-start' is set to 3,
750 ;; the printing will look like:
752 ;; one line
753 ;; one line
754 ;; 3 one line
755 ;; one line
756 ;; one line
757 ;; 6 one line
758 ;; one line
759 ;; one line
760 ;; 9 one line
761 ;; one line
762 ;; ...
764 ;; The values for `ps-line-number-start':
766 ;; * If `ps-line-number-step' is an integer, must be between 1 and the value
767 ;; of `ps-line-number-step' inclusive.
769 ;; * If `ps-line-number-step' is set to `zebra', must be between 1 and the
770 ;; value of `ps-zebra-stripe-height' inclusive.
772 ;; The default value is 1, so the line number of the first line of each
773 ;; interval is printed.
776 ;; Zebra Stripes
777 ;; -------------
779 ;; Zebra stripes are a kind of background that appear "underneath" the text and
780 ;; can make the text easier to read. They look like this:
782 ;; XXXXXXXXXXXXXXXXXXXXXXXX
783 ;; XXXXXXXXXXXXXXXXXXXXXXXX
784 ;; XXXXXXXXXXXXXXXXXXXXXXXX
788 ;; XXXXXXXXXXXXXXXXXXXXXXXX
789 ;; XXXXXXXXXXXXXXXXXXXXXXXX
790 ;; XXXXXXXXXXXXXXXXXXXXXXXX
792 ;; The blocks of X's represent rectangles filled with a light gray color.
793 ;; Each rectangle extends all the way across the page.
795 ;; The height, in lines, of each rectangle is controlled by the variable
796 ;; `ps-zebra-stripe-height', which is 3 by default. The distance between
797 ;; stripes equals the height of a stripe.
799 ;; The variable `ps-zebra-stripes' controls whether to print zebra stripes.
800 ;; Non-nil means yes, nil means no. The default is nil.
802 ;; The variable `ps-zebra-color' controls the zebra stripes gray scale or RGB
803 ;; color. It should be a float number between 0.0 (black color) and 1.0 (white
804 ;; color), a string which is a color name, or a list of 3 numbers which
805 ;; corresponds to the Red Green Blue color scale.
806 ;; The default is 0.95 (or "gray95", or '(0.95 0.95 0.95)).
808 ;; The variable `ps-zebra-stripe-follow' specifies how zebra stripes continue
809 ;; on next page. Visually, valid values are (the character `+' at right of
810 ;; each column indicates that a line is printed):
812 ;; nil `follow' `full' `full-follow'
813 ;; Current Page -------- ----------- --------- ----------------
814 ;; 1 XXXXX + 1 XXXXXXXX + 1 XXXXXX + 1 XXXXXXXXXXXXX +
815 ;; 2 XXXXX + 2 XXXXXXXX + 2 XXXXXX + 2 XXXXXXXXXXXXX +
816 ;; 3 XXXXX + 3 XXXXXXXX + 3 XXXXXX + 3 XXXXXXXXXXXXX +
817 ;; 4 + 4 + 4 + 4 +
818 ;; 5 + 5 + 5 + 5 +
819 ;; 6 + 6 + 6 + 6 +
820 ;; 7 XXXXX + 7 XXXXXXXX + 7 XXXXXX + 7 XXXXXXXXXXXXX +
821 ;; 8 XXXXX + 8 XXXXXXXX + 8 XXXXXX + 8 XXXXXXXXXXXXX +
822 ;; 9 XXXXX + 9 XXXXXXXX + 9 XXXXXX + 9 XXXXXXXXXXXXX +
823 ;; 10 + 10 +
824 ;; 11 + 11 +
825 ;; -------- ----------- --------- ----------------
826 ;; Next Page -------- ----------- --------- ----------------
827 ;; 12 XXXXX + 12 + 10 XXXXXX + 10 +
828 ;; 13 XXXXX + 13 XXXXXXXX + 11 XXXXXX + 11 +
829 ;; 14 XXXXX + 14 XXXXXXXX + 12 XXXXXX + 12 +
830 ;; 15 + 15 XXXXXXXX + 13 + 13 XXXXXXXXXXXXX +
831 ;; 16 + 16 + 14 + 14 XXXXXXXXXXXXX +
832 ;; 17 + 17 + 15 + 15 XXXXXXXXXXXXX +
833 ;; 18 XXXXX + 18 + 16 XXXXXX + 16 +
834 ;; 19 XXXXX + 19 XXXXXXXX + 17 XXXXXX + 17 +
835 ;; 20 XXXXX + 20 XXXXXXXX + 18 XXXXXX + 18 +
836 ;; 21 + 21 XXXXXXXX +
837 ;; 22 + 22 +
838 ;; -------- ----------- --------- ----------------
840 ;; Any other value is treated as nil.
842 ;; See also section How Ps-Print Has A Text And/Or Image On Background.
845 ;; Hooks
846 ;; -----
848 ;; ps-print has the following hook variables:
850 ;; `ps-print-hook'
851 ;; It is evaluated once before any printing process. This is the right
852 ;; place to initialize ps-print global data.
853 ;; For an example, see section Adding a New Font Family.
855 ;; `ps-print-begin-sheet-hook'
856 ;; It is evaluated on each beginning of sheet of paper.
857 ;; If `ps-n-up-printing' is equal to 1, `ps-print-begin-page-hook' is never
858 ;; evaluated.
860 ;; `ps-print-begin-page-hook'
861 ;; It is evaluated on each beginning of page, except in the beginning of
862 ;; page that `ps-print-begin-sheet-hook' is evaluated.
864 ;; `ps-print-begin-column-hook'
865 ;; It is evaluated on each beginning of column, except in the beginning of
866 ;; column that `ps-print-begin-page-hook' is evaluated or that
867 ;; `ps-print-begin-sheet-hook' is evaluated.
870 ;; Font Managing
871 ;; -------------
873 ;; ps-print now knows rather precisely some fonts: the variable
874 ;; `ps-font-info-database' contains information for a list of font families
875 ;; (currently mainly `Courier' `Helvetica' `Times' `Palatino'
876 ;; `Helvetica-Narrow' `NewCenturySchlbk'). Each font family contains the font
877 ;; names for standard, bold, italic and bold-italic characters, a reference
878 ;; size (usually 10) and the corresponding line height, width of a space and
879 ;; average character width.
881 ;; The variable `ps-font-family' determines which font family is to be used for
882 ;; ordinary text. If its value does not correspond to a known font family, an
883 ;; error message is printed into the `*Messages*' buffer, which lists the
884 ;; currently available font families.
886 ;; The variable `ps-font-size' determines the size (in points) of the font for
887 ;; ordinary text, when generating PostScript. Its value is a float or a cons
888 ;; of floats which has the following form:
890 ;; (LANDSCAPE-SIZE . PORTRAIT-SIZE)
892 ;; Similarly, the variable `ps-header-font-family' determines which font family
893 ;; is to be used for text in the header.
895 ;; The variable `ps-header-font-size' determines the font size, in points, for
896 ;; text in the header (similar to `ps-font-size').
898 ;; The variable `ps-header-title-font-size' determines the font size, in
899 ;; points, for the top line of text in the header (similar to `ps-font-size').
901 ;; The variable `ps-line-spacing' determines the line spacing, in points, for
902 ;; ordinary text, when generating PostScript (similar to `ps-font-size'). The
903 ;; default value is 0 (zero = no line spacing).
905 ;; The variable `ps-paragraph-spacing' determines the paragraph spacing, in
906 ;; points, for ordinary text, when generating PostScript (similar to
907 ;; `ps-font-size'). The default value is 0 (zero = no paragraph spacing).
909 ;; To get all lines with some spacing set both `ps-line-spacing' and
910 ;; `ps-paragraph-spacing' variables.
912 ;; The variable `ps-paragraph-regexp' specifies the paragraph delimiter. It
913 ;; should be a regexp or nil. The default value is "[ \t]*$", that is, an
914 ;; empty line or a line containing only spaces and tabs.
916 ;; The variable `ps-begin-cut-regexp' and `ps-end-cut-regexp' specify the start
917 ;; and end of a region to cut out when printing.
919 ;; As an example, variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' may
920 ;; be set to "^Local Variables:" and "^End:", respectively, in order to leave
921 ;; out some special printing instructions from the actual print. Special
922 ;; printing instructions may be appended to the end of the file just like any
923 ;; other buffer-local variables. See section "Local Variables in Files" on
924 ;; Emacs manual for more information.
926 ;; Variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' control together
927 ;; what actually gets printed. Both variables may be set to nil in which case
928 ;; no cutting occurs. By default, both variables are set to nil.
931 ;; Adding a New Font Family
932 ;; ------------------------
934 ;; To use a new font family, you MUST first teach ps-print this font, i.e., add
935 ;; its information to `ps-font-info-database', otherwise ps-print cannot
936 ;; correctly place line and page breaks.
938 ;; For example, assuming `Helvetica' is unknown, you first need to do the
939 ;; following ONLY ONCE:
941 ;; - create a new buffer
942 ;; - generate the PostScript image to a file (C-u M-x ps-print-buffer)
943 ;; - open this file and find the line:
944 ;; `% 3 cm 20 cm moveto 10/Courier ReportFontInfo showpage'
945 ;; - delete the leading `%' (which is the PostScript comment character)
946 ;; - replace in this line `Courier' by the new font (say `Helvetica') to get
947 ;; the line:
948 ;; `3 cm 20 cm moveto 10/Helvetica ReportFontInfo showpage'
949 ;; - send this file to the printer (or to ghostscript).
950 ;; You should read the following on the output page:
952 ;; For Helvetica 10 point, the line height is 11.56, the space width is 2.78
953 ;; and a crude estimate of average character width is 5.09243
955 ;; - Add these values to the `ps-font-info-database':
956 ;; (setq ps-font-info-database
957 ;; (append
958 ;; '((Helvetica ; the family key
959 ;; (fonts (normal . "Helvetica")
960 ;; (bold . "Helvetica-Bold")
961 ;; (italic . "Helvetica-Oblique")
962 ;; (bold-italic . "Helvetica-BoldOblique"))
963 ;; (size . 10.0)
964 ;; (line-height . 11.56)
965 ;; (space-width . 2.78)
966 ;; (avg-char-width . 5.09243)))
967 ;; ps-font-info-database))
968 ;; - Now you can use this font family with any size:
969 ;; (setq ps-font-family 'Helvetica)
970 ;; - if you want to use this family in another emacs session, you must put into
971 ;; your `~/.emacs':
972 ;; (require 'ps-print)
973 ;; (setq ps-font-info-database (append ...)))
974 ;; if you don't want to load ps-print, you have to copy the whole value:
975 ;; (setq ps-font-info-database '(<your stuff> <the standard stuff>))
976 ;; or, use `ps-print-hook' (see section Hooks):
977 ;; (add-hook 'ps-print-hook
978 ;; (lambda ()
979 ;; (or (assq 'Helvetica ps-font-info-database)
980 ;; (setq ps-font-info-database (append ...)))))
982 ;; You can create new `mixed' font families like:
983 ;; (my-mixed-family
984 ;; (fonts (normal . "Courier-Bold")
985 ;; (bold . "Helvetica")
986 ;; (italic . "ZapfChancery-MediumItalic")
987 ;; (bold-italic . "NewCenturySchlbk-BoldItalic")
988 ;; (w3-table-hack-x-face . "LineDrawNormal"))
989 ;; (size . 10.0)
990 ;; (line-height . 10.55)
991 ;; (space-width . 6.0)
992 ;; (avg-char-width . 6.0))
994 ;; Now you can use your new font family with any size:
995 ;; (setq ps-font-family 'my-mixed-family)
997 ;; Note that on above example the `w3-table-hack-x-face' entry refers to a face
998 ;; symbol, so when printing this face it'll be used the font `LineDrawNormal'.
999 ;; If the face `w3-table-hack-x-face' is remapped to use bold and/or italic
1000 ;; attribute, the corresponding entry (bold, italic or bold-italic) will be
1001 ;; used instead of `w3-table-hack-x-face' entry.
1003 ;; Note also that the font family entry order is irrelevant, so the above
1004 ;; example could also be written:
1005 ;; (my-mixed-family
1006 ;; (size . 10.0)
1007 ;; (fonts (w3-table-hack-x-face . "LineDrawNormal")
1008 ;; (bold . "Helvetica")
1009 ;; (bold-italic . "NewCenturySchlbk-BoldItalic")
1010 ;; (italic . "ZapfChancery-MediumItalic")
1011 ;; (normal . "Courier-Bold"))
1012 ;; (avg-char-width . 6.0)
1013 ;; (space-width . 6.0)
1014 ;; (line-height . 10.55))
1016 ;; Despite the note above, it is recommended that some convention about
1017 ;; entry order be used.
1019 ;; You can get information on all the fonts resident in YOUR printer
1020 ;; by uncommenting the line:
1021 ;; % 3 cm 20 cm moveto ReportAllFontInfo showpage
1023 ;; The PostScript file should be sent to YOUR PostScript printer.
1024 ;; If you send it to ghostscript or to another PostScript printer, you may get
1025 ;; slightly different results.
1026 ;; Anyway, as ghostscript fonts are autoload, you won't get much font info.
1028 ;; Note also that ps-print DOESN'T download any font to your printer, instead
1029 ;; it uses the fonts resident in your printer.
1032 ;; How Ps-Print Deals With Faces
1033 ;; -----------------------------
1035 ;; The ps-print-*-with-faces commands attempt to determine which faces should
1036 ;; be printed in bold or italic, but their guesses aren't always right. For
1037 ;; example, you might want to map colors into faces so that blue faces print in
1038 ;; bold, and red faces in italic.
1040 ;; It is possible to force ps-print to consider specific faces bold, italic or
1041 ;; underline, no matter what font they are displayed in, by setting the
1042 ;; variables `ps-bold-faces', `ps-italic-faces' and `ps-underlined-faces'.
1043 ;; These variables contain lists of faces that ps-print should consider bold,
1044 ;; italic or underline; to set them, put code like the following into your
1045 ;; init file:
1047 ;; (setq ps-bold-faces '(my-blue-face))
1048 ;; (setq ps-italic-faces '(my-red-face))
1049 ;; (setq ps-underlined-faces '(my-green-face))
1051 ;; Faces like bold-italic that are both bold and italic should go in *both*
1052 ;; lists.
1054 ;; ps-print keeps internal lists of which fonts are bold and which are italic;
1055 ;; these lists are built the first time you invoke ps-print.
1056 ;; For the sake of efficiency, the lists are built only once; the same lists
1057 ;; are referred in later invocations of ps-print.
1059 ;; Because these lists are built only once, it's possible for them to get out
1060 ;; of sync, if a face changes, or if new faces are added. To get the lists
1061 ;; back in sync, you can set the variable `ps-build-face-reference' to t, and
1062 ;; the lists will be rebuilt the next time ps-print is invoked. If you need
1063 ;; that the lists always be rebuilt when ps-print is invoked, set the variable
1064 ;; `ps-always-build-face-reference' to t.
1066 ;; If you need to print without worrying about face background color, set the
1067 ;; variable `ps-use-face-background' which specifies if face background should
1068 ;; be used. Valid values are:
1070 ;; t always use face background color.
1071 ;; nil never use face background color.
1072 ;; (face...) list of faces whose background color will be used.
1074 ;; Any other value will be treated as t.
1075 ;; The default value is nil.
1078 ;; How Ps-Print Deals With Color
1079 ;; -----------------------------
1081 ;; ps-print detects faces with foreground and background colors defined and
1082 ;; embeds color information in the PostScript image.
1083 ;; The default foreground and background colors are defined by the variables
1084 ;; `ps-default-fg' and `ps-default-bg'.
1085 ;; On black/white printers, colors are displayed in gray scale.
1086 ;; To turn off color output, set `ps-print-color-p' to nil.
1087 ;; You can also set `ps-print-color-p' to 'black-white to have a better looking
1088 ;; on black/white printers. See also `ps-black-white-faces' for documentation.
1090 ;; ps-print also detects if the text foreground and background colors are
1091 ;; equals when `ps-fg-validate-p' is non-nil. In this case, if these colors
1092 ;; are used, no text will appear. You can use `ps-fg-list' to give a list of
1093 ;; foreground colors to be used when text foreground and background colors are
1094 ;; equals. It'll be used the first foreground color in `ps-fg-list' which is
1095 ;; different from the background color. If `ps-fg-list' is nil, the default
1096 ;; foreground color is used.
1099 ;; How Ps-Print Maps Faces
1100 ;; -----------------------
1102 ;; As ps-print uses PostScript to print buffers, it is possible to have other
1103 ;; attributes associated with faces. So the new attributes used by ps-print
1104 ;; are:
1106 ;; strikeout - like underline, but the line is in middle of text.
1107 ;; overline - like underline, but the line is over the text.
1108 ;; shadow - text will have a shadow.
1109 ;; box - text will be surrounded by a box.
1110 ;; outline - print characters as hollow outlines.
1112 ;; See the documentation for `ps-extend-face'.
1114 ;; Let's, for example, remap `font-lock-keyword-face' to another foreground
1115 ;; color and bold attribute:
1117 ;; (ps-extend-face '(font-lock-keyword-face "RoyalBlue" nil bold) 'MERGE)
1119 ;; If you want to use a new face, define it first with `defface', and then call
1120 ;; `ps-extend-face' to specify how to print it.
1123 ;; How Ps-Print Has A Text And/Or Image On Background
1124 ;; --------------------------------------------------
1126 ;; ps-print can print texts and/or EPS PostScript images on background; it is
1127 ;; possible to define the following text attributes: font name, font size,
1128 ;; initial position, angle, gray scale and pages to print.
1130 ;; It has the following EPS PostScript images attributes: file name containing
1131 ;; the image, initial position, X and Y scales, angle and pages to print.
1133 ;; See documentation for `ps-print-background-text' and
1134 ;; `ps-print-background-image'.
1136 ;; For example, if we wish to print text "preliminary" on all pages and text
1137 ;; "special" on page 5 and from page 11 to page 17, we could specify:
1139 ;; (setq ps-print-background-text
1140 ;; '(("preliminary")
1141 ;; ("special"
1142 ;; "LeftMargin" "BottomMargin PrintHeight add" ; X and Y position
1143 ;; ; (upper left corner)
1144 ;; nil nil nil
1145 ;; "PrintHeight neg PrintPageWidth atan" ; angle
1146 ;; 5 (11 . 17)) ; page list
1147 ;; ))
1149 ;; Similarly, we could print image "~/images/EPS-image1.ps" on all pages and
1150 ;; image "~/images/EPS-image2.ps" on page 5 and from page 11 to page 17, we
1151 ;; specify:
1153 ;; (setq ps-print-background-image
1154 ;; '(("~/images/EPS-image1.ps"
1155 ;; "LeftMargin" "BottomMargin") ; X and Y position (lower left corner)
1156 ;; ("~/images/EPS-image2.ps"
1157 ;; "LeftMargin" "BottomMargin PrintHeight 2 div add" ; X and Y pos.
1158 ;; ; (upper left corner)
1159 ;; nil nil nil
1160 ;; 5 (11 . 17)) ; page list
1161 ;; ))
1163 ;; If it is not possible to read (or does not exist) an image file, that file
1164 ;; is ignored.
1166 ;; The printing order is:
1168 ;; 1. Print background color
1169 ;; 2. Print zebra stripes
1170 ;; 3. Print background texts that it should be on all pages
1171 ;; 4. Print background images that it should be on all pages
1172 ;; 5. Print background texts only for current page (if any)
1173 ;; 6. Print background images only for current page (if any)
1174 ;; 7. Print header
1175 ;; 8. Print buffer text (with faces, if specified) and line number
1178 ;; Utilities
1179 ;; ---------
1181 ;; Some tools are provided to help you customize your font setup.
1183 ;; `ps-setup' returns (some part of) the current setup.
1185 ;; To avoid wrapping too many lines, you may want to adjust the left and right
1186 ;; margins and the font size. On UN*X systems, do:
1187 ;; pr -t file | awk '{printf "%3d %s\n", length($0), $0}' | sort -r | head
1188 ;; to determine the longest lines of your file.
1189 ;; Then, the command `ps-line-lengths' will give you the correspondence between
1190 ;; a line length (number of characters) and the maximum font size which doesn't
1191 ;; wrap such a line with the current ps-print setup.
1193 ;; The commands `ps-nb-pages-buffer' and `ps-nb-pages-region' display the
1194 ;; correspondence between a number of pages and the maximum font size which
1195 ;; allow the number of lines of the current buffer or of its current region to
1196 ;; fit in this number of pages.
1198 ;; NOTE: line folding is not taken into account in this process and could
1199 ;; change the results.
1201 ;; The command `ps-print-customize' activates a customization buffer for
1202 ;; ps-print options.
1205 ;; New since version 1.5
1206 ;; ---------------------
1208 ;; Color output capability.
1209 ;; Automatic detection of font attributes (bold, italic).
1210 ;; Configurable headers with page numbers.
1211 ;; Slightly faster.
1212 ;; Support for different paper sizes.
1213 ;; Better conformance to PostScript Document Structure Conventions.
1216 ;; New since version 2.8
1217 ;; ---------------------
1219 ;; [vinicius] Vinicius Jose Latorre <viniciusjl.gnu@gmail.com>
1221 ;; 2007-10-27
1222 ;; `ps-fg-validate-p', `ps-fg-list'
1224 ;; 2004-02-29
1225 ;; `ps-time-stamp-yyyy-mm-dd', `ps-time-stamp-iso8601'
1227 ;; 2001-06-19
1228 ;; `ps-time-stamp-locale-default'
1230 ;; 2001-05-30
1231 ;; Handle before-string and after-string overlay properties.
1233 ;; 2001-04-07
1234 ;; `ps-line-number-color', `ps-print-footer', `ps-footer-offset',
1235 ;; `ps-print-footer-frame', `ps-footer-font-family',
1236 ;; `ps-footer-font-size', `ps-footer-line-pad', `ps-footer-lines',
1237 ;; `ps-left-footer', `ps-right-footer', `ps-footer-frame-alist' and
1238 ;; `ps-header-frame-alist'.
1240 ;; 2001-03-28
1241 ;; `ps-line-spacing', `ps-paragraph-spacing', `ps-paragraph-regexp',
1242 ;; `ps-begin-cut-regexp' and `ps-end-cut-regexp'.
1244 ;; 2000-11-22
1245 ;; `ps-line-number-font', `ps-line-number-font-size' and
1246 ;; `ps-end-with-control-d'.
1248 ;; 2000-08-21
1249 ;; `ps-even-or-odd-pages'
1251 ;; 2000-06-17
1252 ;; `ps-manual-feed', `ps-warn-paper-type', `ps-print-upside-down',
1253 ;; `ps-selected-pages', `ps-last-selected-pages',
1254 ;; `ps-restore-selected-pages', `ps-switch-header',
1255 ;; `ps-line-number-step', `ps-line-number-start',
1256 ;; `ps-zebra-stripe-follow' and `ps-use-face-background'.
1258 ;; 2000-03-10
1259 ;; PostScript error handler.
1260 ;; `ps-user-defined-prologue' and `ps-error-handler-message'.
1262 ;; 1999-12-11
1263 ;; `ps-print-customize'.
1265 ;; 1999-07-03
1266 ;; Better customization.
1267 ;; `ps-banner-page-when-duplexing' and `ps-zebra-color'.
1269 ;; 1999-05-13
1270 ;; N-up printing.
1271 ;; Hook: `ps-print-begin-sheet-hook'.
1273 ;; [kenichi] 1999-05-09 Ken'ichi Handa <handa@m17n.org>
1275 ;; `ps-print-region-function'
1277 ;; [vinicius] Vinicius Jose Latorre <viniciusjl.gnu@gmail.com>
1279 ;; 1999-03-01
1280 ;; PostScript tumble and setpagedevice.
1282 ;; 1998-09-22
1283 ;; PostScript prologue header comment insertion.
1284 ;; Skip invisible text better.
1286 ;; [kenichi] 1998-08-19 Ken'ichi Handa <handa@m17n.org>
1288 ;; Multi-byte buffer handling.
1290 ;; [vinicius] Vinicius Jose Latorre <viniciusjl.gnu@gmail.com>
1292 ;; 1998-03-06
1293 ;; Skip invisible text.
1295 ;; 1997-11-30
1296 ;; Hooks: `ps-print-hook', `ps-print-begin-page-hook' and
1297 ;; `ps-print-begin-column-hook'.
1298 ;; Put one header per page over the columns.
1299 ;; Better database font management.
1300 ;; Better control characters handling.
1302 ;; 1997-11-21
1303 ;; Dynamic evaluation at print time of `ps-lpr-switches'.
1304 ;; Handle control characters.
1305 ;; Face remapping.
1306 ;; New face attributes.
1307 ;; Line number.
1308 ;; Zebra stripes.
1309 ;; Text and/or image on background.
1311 ;; [jack] 1996-05-17 Jacques Duthen <duthen@cegelec-red.fr>
1313 ;; Font family and float size for text and header.
1314 ;; Landscape mode.
1315 ;; Multiple columns.
1316 ;; Tools for page setup.
1319 ;; Known bugs and limitations of ps-print
1320 ;; --------------------------------------
1322 ;; Although color printing will work in XEmacs 19.12, it doesn't work well; in
1323 ;; particular, bold or italic fonts don't print in the right background color.
1325 ;; Invisible properties aren't correctly ignored in XEmacs 19.12.
1327 ;; Automatic font-attribute detection doesn't work well, especially with
1328 ;; hilit19 and older versions of get-create-face. Users having problems with
1329 ;; auto-font detection should use the lists `ps-italic-faces', `ps-bold-faces'
1330 ;; and `ps-underlined-faces' and/or turn off automatic detection by setting
1331 ;; `ps-auto-font-detect' to nil.
1333 ;; Automatic font-attribute detection doesn't work with XEmacs 19.12 in tty
1334 ;; mode; use the lists `ps-italic-faces', `ps-bold-faces' and
1335 ;; `ps-underlined-faces' instead.
1337 ;; Still too slow; could use some hand-optimization.
1339 ;; Default background color isn't working.
1341 ;; Faces are always treated as opaque.
1343 ;; Epoch, Lucid and Emacs 22 not supported. At all.
1345 ;; Fixed-pitch fonts work better for line folding, but are not required.
1347 ;; `ps-nb-pages-buffer' and `ps-nb-pages-region' don't take care of folding
1348 ;; lines.
1351 ;; Things to change
1352 ;; ----------------
1354 ;; Avoid page break inside a paragraph.
1356 ;; Add `ps-non-bold-faces' and `ps-non-italic-faces' (should be easy).
1358 ;; Improve the memory management for big files (hard?).
1360 ;; `ps-nb-pages-buffer' and `ps-nb-pages-region' should take care of folding
1361 ;; lines.
1364 ;; Acknowledgments
1365 ;; ---------------
1367 ;; Thanks to Eduard Wiebe <usenet@pusto.de> for fixing face
1368 ;; background/foreground extraction.
1370 ;; Thanks to Friedrich Delgado Friedrichs <friedel@nomaden.org> for new label
1371 ;; printer page sizes.
1373 ;; Thanks to Michael Piotrowski <mxp@dynalabs.de> for improving the DSC
1374 ;; compliance of the generated PostScript.
1376 ;; Thanks to Adam Doppelt <adoppelt@avogadro.com> for face mapping suggestion
1377 ;; for black/white PostScript printers.
1379 ;; Thanks to Toni Ronkko <tronkko@hytti.uku.fi> for line and paragraph spacing,
1380 ;; region to cut out when printing and footer suggestions.
1382 ;; Thanks to Pavel Janik ml <Pavel@Janik.cz> for documentation correction.
1384 ;; Thanks to Corinne Ilvedson <cilvedson@draper.com> for line number font size
1385 ;; suggestion.
1387 ;; Thanks to Gord Wait <Gord_Wait@spectrumsignal.com> for
1388 ;; `ps-user-defined-prologue' example setting for HP PostScript printer.
1390 ;; Thanks to Paul Furnanz <pfurnanz@synopsys.com> for XEmacs compatibility
1391 ;; suggestion for `ps-postscript-code-directory' variable.
1393 ;; Thanks to David X Callaway <dxc@xprt.net> for helping debugging PostScript
1394 ;; level 1 compatibility.
1396 ;; Thanks to Colin Marquardt <colin.marquardt@usa.alcatel.com> for:
1397 ;; - upside-down, line number step, line number start and zebra stripe
1398 ;; follow suggestions.
1399 ;; - `ps-time-stamp-yyyy-mm-dd' and `ps-time-stamp-iso8601' suggestion.
1400 ;; - and for XEmacs beta-tests.
1402 ;; Thanks to Klaus Berndl <klaus.berndl@sdm.de> for user defined PostScript
1403 ;; prologue code suggestion, for odd/even printing suggestion and for
1404 ;; `ps-prologue-file' enhancement.
1406 ;; Thanks to Ken'ichi Handa <handa@m17n.org> for multi-byte buffer handling.
1408 ;; Thanks to Matthew O Persico <Matthew.Persico@lazard.com> for line number on
1409 ;; empty columns.
1411 ;; Thanks to Theodore Jump <tjump@cais.com> for adjust PostScript code order on
1412 ;; last page.
1414 ;; Thanks to Roland Ducournau <ducour@lirmm.fr> for
1415 ;; `ps-print-control-characters' variable documentation.
1417 ;; Thanks to Marcus G Daniels <marcus@cathcart.sysc.pdx.edu> for a better
1418 ;; database font management.
1420 ;; Thanks to Martin Boyer <gamin@videotron.ca> for some ideas on putting one
1421 ;; header per page over the columns and correct line numbers when printing a
1422 ;; region.
1424 ;; Thanks to Steven L Baur <steve@miranova.com> for dynamic evaluation at
1425 ;; print time of `ps-lpr-switches'.
1427 ;; Thanks to Kevin Rodgers <kevinr@ihs.com> for handling control characters
1428 ;; (his code was severely modified, but the main idea was kept).
1430 ;; Thanks to some suggestions on:
1431 ;; * Face color map: Marco Melgazzi <marco@techie.com>
1432 ;; * XEmacs compatibility: William J. Henney <will@astrosmo.unam.mx>
1433 ;; * Check `ps-paper-type': Sudhakar Frederick <sfrederi@asc.corp.mot.com>
1435 ;; Thanks to Jacques Duthen <duthen@cegelec-red.fr> (Jack) for version 3.4 I
1436 ;; started from. [vinicius]
1438 ;; Thanks to Jim Thompson <?@?> for the 2.8 version I started from. [jack]
1440 ;; Thanks to Kevin Rodgers <kevinr@ihs.com> for adding support for color and
1441 ;; the invisible property.
1443 ;; Thanks to Avishai Yacobi, avishaiy@mcil.comm.mot.com, for writing the
1444 ;; initial port to Emacs 19. His code is no longer part of ps-print, but his
1445 ;; work is still appreciated.
1447 ;; Thanks to Remi Houdaille and Michel Train <michel@metasoft.fdn.org> for
1448 ;; adding underline support. Their code also is no longer part of ps-print,
1449 ;; but their efforts are not forgotten.
1451 ;; Thanks also to all of you who mailed code to add features to ps-print;
1452 ;; although I didn't use your code, I still appreciate your sharing it with me.
1454 ;; Thanks to all who mailed comments, encouragement, and criticism.
1455 ;; Thanks also to all who responded to my survey; I had too many responses to
1456 ;; reply to them all, but I greatly appreciate your interest.
1458 ;; Jim
1459 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1461 ;;; Code:
1464 (require 'lpr)
1467 (if (featurep 'xemacs)
1468 (or (featurep 'lisp-float-type)
1469 (error "`ps-print' requires floating point support"))
1470 (unless (and (boundp 'emacs-major-version)
1471 (>= emacs-major-version 23))
1472 (error "`ps-print' only supports Emacs 23 and higher")))
1475 ;; Load XEmacs/Emacs definitions
1476 (require 'ps-def)
1478 ;; autoloads for secondary file
1479 (require 'ps-print-loaddefs)
1481 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1482 ;; User Variables:
1485 ;;; Interface to the command system
1487 (defgroup postscript nil
1488 "Support for printing and PostScript."
1489 :tag "PostScript"
1490 :version "20"
1491 :group 'external)
1493 (defgroup ps-print nil
1494 "PostScript generator for Emacs."
1495 :link '(emacs-library-link :tag "Source Lisp File" "ps-print.el")
1496 :prefix "ps-"
1497 :version "20"
1498 :group 'text
1499 :group 'postscript)
1501 (defgroup ps-print-horizontal nil
1502 "Horizontal page layout."
1503 :prefix "ps-"
1504 :tag "Horizontal"
1505 :version "20"
1506 :group 'ps-print)
1508 (defgroup ps-print-vertical nil
1509 "Vertical page layout."
1510 :prefix "ps-"
1511 :tag "Vertical"
1512 :version "20"
1513 :group 'ps-print)
1515 (defgroup ps-print-headers nil
1516 "Headers & footers layout."
1517 :prefix "ps-"
1518 :tag "Header & Footer"
1519 :version "20"
1520 :group 'ps-print)
1522 (defgroup ps-print-font nil
1523 "Fonts customization."
1524 :prefix "ps-"
1525 :tag "Font"
1526 :version "20"
1527 :group 'ps-print)
1529 (defgroup ps-print-color nil
1530 "Color customization."
1531 :prefix "ps-"
1532 :tag "Color"
1533 :version "20"
1534 :group 'ps-print)
1536 (defgroup ps-print-face nil
1537 "Faces customization."
1538 :prefix "ps-"
1539 :tag "PS Faces"
1540 :version "20"
1541 :group 'ps-print
1542 :group 'faces)
1544 (defgroup ps-print-n-up nil
1545 "N-up customization."
1546 :prefix "ps-"
1547 :tag "N-Up"
1548 :version "20"
1549 :group 'ps-print)
1551 (defgroup ps-print-zebra nil
1552 "Zebra customization."
1553 :prefix "ps-"
1554 :tag "Zebra"
1555 :version "20"
1556 :group 'ps-print)
1558 (defgroup ps-print-background nil
1559 "Background customization."
1560 :prefix "ps-"
1561 :tag "Background"
1562 :version "20"
1563 :group 'ps-print)
1565 (defgroup ps-print-printer '((lpr custom-group))
1566 "Printer customization."
1567 :prefix "ps-"
1568 :tag "Printer"
1569 :version "20"
1570 :group 'ps-print)
1572 (defgroup ps-print-page nil
1573 "Page customization."
1574 :prefix "ps-"
1575 :tag "Page"
1576 :version "20"
1577 :group 'ps-print)
1579 (defgroup ps-print-miscellany nil
1580 "Miscellany customization."
1581 :prefix "ps-"
1582 :tag "Miscellany"
1583 :version "20"
1584 :group 'ps-print)
1587 (defcustom ps-error-handler-message 'paper
1588 "Specify where the error handler message should be sent.
1590 Valid values are:
1592 `none' catch the error and *DON'T* send any message.
1594 `paper' catch the error and print on paper the error message.
1596 `system' catch the error and send back the error message to
1597 printing system. This is useful only if printing system
1598 send back an email reporting the error, or if there is
1599 some other alternative way to report back the error from
1600 the system to you.
1602 `paper-and-system' catch the error, print on paper the error message and
1603 send back the error message to printing system.
1605 Any other value is treated as `paper'."
1606 :type '(choice :menu-tag "Error Handler Message"
1607 :tag "Error Handler Message"
1608 (const none) (const paper)
1609 (const system) (const paper-and-system))
1610 :version "20"
1611 :group 'ps-print-miscellany)
1613 (defcustom ps-user-defined-prologue nil
1614 "User defined PostScript prologue code inserted before all prologue code.
1616 `ps-user-defined-prologue' may be a string or a symbol function which returns a
1617 string. Note that this string is inserted after `ps-adobe-tag' and PostScript
1618 prologue comments, and before ps-print PostScript prologue code section. That
1619 is, this string is inserted after error handler initialization and before
1620 ps-print settings.
1622 It's strongly recommended only insert PostScript code and/or comments specific
1623 for your printing system particularities. For example, some special
1624 initialization that only your printing system needs.
1626 Do not insert code for duplex printing, n-up printing or error handler,
1627 ps-print handles this in a suitable way.
1629 For more information about PostScript, see:
1630 PostScript Language Reference Manual (2nd edition)
1631 Adobe Systems Incorporated
1633 As an example for `ps-user-defined-prologue' setting:
1635 ;; Setting for HP PostScript printer
1636 (setq ps-user-defined-prologue
1637 (concat \"<</DeferredMediaSelection true /PageSize [612 792] \"
1638 \"/MediaPosition 2 /MediaType (Plain)>> setpagedevice\"))"
1639 :type '(choice :menu-tag "User Defined Prologue"
1640 :tag "User Defined Prologue"
1641 (const :tag "none" nil) string symbol)
1642 :version "20"
1643 :group 'ps-print-miscellany)
1645 (defcustom ps-print-prologue-header nil
1646 "PostScript prologue header comments besides that ps-print generates.
1648 `ps-print-prologue-header' may be a string or a symbol function which returns a
1649 string. Note that this string is inserted on PostScript prologue header
1650 section which is used to define some document characteristic through PostScript
1651 special comments, like \"%%Requirements: jog\\n\".
1653 ps-print always inserts the %%Requirements: comment, so if you need to insert
1654 more requirements put them first in `ps-print-prologue-header' using the
1655 \"%%+\" comment. For example, if you need to set numcopies to 3 and jog on
1656 requirements and set %%LanguageLevel: to 2, do:
1658 (setq ps-print-prologue-header
1659 \"%%+ numcopies(3) jog\\n%%LanguageLevel: 2\\n\")
1661 The duplex requirement is inserted by ps-print (see `ps-spool-duplex').
1663 Do not forget to terminate the string with \"\\n\".
1665 For more information about PostScript document comments, see:
1666 PostScript Language Reference Manual (2nd edition)
1667 Adobe Systems Incorporated
1668 Appendix G: Document Structuring Conventions -- Version 3.0"
1669 :type '(choice :menu-tag "Prologue Header"
1670 :tag "Prologue Header"
1671 (const :tag "none" nil) string symbol)
1672 :version "20"
1673 :group 'ps-print-miscellany)
1675 (defcustom ps-printer-name nil
1676 "The name of a local printer for printing PostScript files.
1678 On Unix-like systems, a string value should be a name understood by lpr's -P
1679 option; a value of nil means use the value of `printer-name' instead.
1681 On MS-DOS and MS-Windows systems, a string value is taken as the name of the
1682 printer device or port to which PostScript files are written, provided
1683 `ps-lpr-command' is \"\". By default it is the same as `printer-name'; typical
1684 non-default settings would be \"LPT1\" to \"LPT3\" for parallel printers, or
1685 \"COM1\" to \"COM4\" or \"AUX\" for serial printers, or \"\\\\hostname\\printer\"
1686 for a shared network printer. You can also set it to a name of a file, in
1687 which case the output gets appended to that file. \(Note that `ps-print'
1688 package already has facilities for printing to a file, so you might as well use
1689 them instead of changing the setting of this variable.) If you want to
1690 silently discard the printed output, set this to \"NUL\".
1692 Set to t, if the utility given by `ps-lpr-command' needs an empty printer name.
1694 Any other value is treated as t, that is, an empty printer name.
1696 See also `ps-printer-name-option' for documentation."
1697 :type '(choice :menu-tag "Printer Name"
1698 :tag "Printer Name"
1699 (const :tag "Same as printer-name" nil)
1700 (const :tag "No Printer Name" t)
1701 (file :tag "Print to file")
1702 (string :tag "Pipe to ps-lpr-command"))
1703 :version "20"
1704 :group 'ps-print-printer)
1706 (defcustom ps-printer-name-option
1707 (cond (lpr-windows-system "/D:")
1708 (t lpr-printer-switch))
1709 "Option for `ps-printer-name' variable (see it).
1711 On Unix-like systems, if `lpr' is in use, this should be the string
1712 \"-P\"; if `lp' is in use, this should be the string \"-d\".
1714 On MS-DOS and MS-Windows systems, if `print' is in use, this should be
1715 the string \"/D:\".
1717 For any other printing utility, see its documentation.
1719 Set this to \"\" or nil, if the utility given by `ps-lpr-command'
1720 needs an empty printer name option--that is, pass the printer name
1721 with no special option preceding it.
1723 This variable is used only when `ps-printer-name' is a non-empty string."
1724 :type '(choice :menu-tag "Printer Name Option"
1725 :tag "Printer Name Option"
1726 (const :tag "None" nil)
1727 (string :tag "Option"))
1728 :version "21.1"
1729 :group 'ps-print-printer)
1731 (defcustom ps-lpr-command lpr-command
1732 "Name of program for printing a PostScript file.
1734 On MS-DOS and MS-Windows systems, if the value is an empty string then Emacs
1735 will write directly to the printer port named by `ps-printer-name'. The
1736 programs `print' and `nprint' (the standard print programs on Windows NT and
1737 Novell Netware respectively) are handled specially, using `ps-printer-name' as
1738 the destination for output; any other program is treated like `lpr' except that
1739 an explicit filename is given as the last argument."
1740 :type 'string
1741 :version "20"
1742 :group 'ps-print-printer)
1744 (defcustom ps-lpr-switches lpr-switches
1745 "List of extra switches to pass to `ps-lpr-command'.
1747 The list element can be:
1749 string it should be an option for `ps-lpr-command' (which see).
1750 For example: \"-o Duplex=DuplexNoTumble\"
1752 symbol it can be a function or variable symbol. If it's a function
1753 symbol, it should be a function with no argument. The result
1754 of the function or the variable value should be a string or a
1755 list of strings.
1757 list the header should be a symbol function and the tail is the
1758 arguments for this function. This function should return a
1759 string or a list of strings.
1761 Any other value is silently ignored.
1763 It is recommended to set `ps-printer-name' (which see) instead of including an
1764 explicit switch on this list.
1766 See `ps-lpr-command'."
1767 :type '(repeat :tag "PostScript lpr Switches"
1768 (choice :menu-tag "PostScript lpr Switch"
1769 :tag "PostScript lpr Switch"
1770 string symbol (repeat sexp)))
1771 :version "20"
1772 :group 'ps-print-printer)
1774 (defcustom ps-print-region-function
1775 (if (memq system-type '(ms-dos windows-nt))
1776 'w32-direct-ps-print-region-function
1777 #'call-process-region)
1778 "Specify a function to print the region on a PostScript printer.
1779 See definition of `call-process-region' for calling conventions. The fourth
1780 and the sixth arguments are both nil."
1781 :type 'function
1782 :version "20"
1783 :group 'ps-print-printer)
1785 (defcustom ps-manual-feed nil
1786 "Non-nil means the printer will manually feed paper.
1788 If it's nil, automatic feeding takes place."
1789 :type 'boolean
1790 :version "20"
1791 :group 'ps-print-printer)
1793 (defcustom ps-end-with-control-d (and lpr-windows-system t)
1794 "Non-nil means insert C-d at end of PostScript file generated."
1795 :version "21.1"
1796 :type 'boolean
1797 :version "20"
1798 :group 'ps-print-printer)
1800 ;;; Page layout
1802 ;; All page dimensions are in PostScript points.
1803 ;; 1 inch == 2.54 cm == 72 points
1804 ;; 1 cm == (/ 1 2.54) inch == (/ 72 2.54) points
1806 ;; Letter 8.5 inch x 11.0 inch
1807 ;; Legal 8.5 inch x 14.0 inch
1808 ;; A4 8.26 inch x 11.69 inch = 21.0 cm x 29.7 cm
1810 ;; LetterSmall 7.68 inch x 10.16 inch
1811 ;; Tabloid 11.0 inch x 17.0 inch
1812 ;; Ledger 17.0 inch x 11.0 inch
1813 ;; Statement 5.5 inch x 8.5 inch
1814 ;; Executive 7.5 inch x 10.0 inch
1815 ;; A3 11.69 inch x 16.5 inch = 29.7 cm x 42.0 cm
1816 ;; A4Small 7.47 inch x 10.85 inch
1817 ;; B4 10.125 inch x 14.33 inch
1818 ;; B5 7.16 inch x 10.125 inch
1820 ;;;###autoload
1821 (defcustom ps-page-dimensions-database
1822 (purecopy
1823 (list (list 'a4 (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4")
1824 (list 'a3 (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3")
1825 (list 'letter (* 72 8.5) (* 72 11.0) "Letter")
1826 (list 'legal (* 72 8.5) (* 72 14.0) "Legal")
1827 (list 'letter-small (* 72 7.68) (* 72 10.16) "LetterSmall")
1828 (list 'tabloid (* 72 11.0) (* 72 17.0) "Tabloid")
1829 (list 'ledger (* 72 17.0) (* 72 11.0) "Ledger")
1830 (list 'statement (* 72 5.5) (* 72 8.5) "Statement")
1831 (list 'executive (* 72 7.5) (* 72 10.0) "Executive")
1832 (list 'a4small (* 72 7.47) (* 72 10.85) "A4Small")
1833 (list 'b4 (* 72 10.125) (* 72 14.33) "B4")
1834 (list 'b5 (* 72 7.16) (* 72 10.125) "B5")
1835 ;; page sizes for label printer
1836 ;; NOTE: the page sizes below don't have n-up > 1.
1837 '(addresslarge 236.0 99.0 "AddressLarge")
1838 '(addresssmall 236.0 68.0 "AddressSmall")
1839 '(cuthanging13 90.0 222.0 "CutHanging13")
1840 '(cuthanging15 90.0 114.0 "CutHanging15")
1841 '(diskette 181.0 136.0 "Diskette")
1842 '(eurofilefolder 139.0 112.0 "EuropeanFilefolder")
1843 '(eurofoldernarrow 526.0 107.0 "EuroFolderNarrow")
1844 '(eurofolderwide 526.0 136.0 "EuroFolderWide")
1845 '(euronamebadge 189.0 108.0 "EuroNameBadge")
1846 '(euronamebadgelarge 223.0 136.0 "EuroNameBadgeLarge")
1847 '(filefolder 230.0 37.0 "FileFolder")
1848 '(jewelry 76.0 136.0 "Jewelry")
1849 '(mediabadge 180.0 136.0 "MediaBadge")
1850 '(multipurpose 126.0 68.0 "MultiPurpose")
1851 '(retaillabel 90.0 104.0 "RetailLabel")
1852 '(shipping 271.0 136.0 "Shipping")
1853 '(slide35mm 26.0 104.0 "Slide35mm")
1854 '(spine8mm 187.0 26.0 "Spine8mm")
1855 '(topcoated 425.19685 136.0 "TopCoatedPaper")
1856 '(topcoatedpaper 396.0 136.0 "TopcoatedPaper150")
1857 '(vhsface 205.0 127.0 "VHSFace")
1858 '(vhsspine 400.0 50.0 "VHSSpine")
1859 '(zipdisk 156.0 136.0 "ZipDisk")))
1860 "List associating a symbolic paper type to its width, height and doc media.
1861 See `ps-paper-type'."
1862 :type '(repeat (list :tag "Paper Type"
1863 (symbol :tag "Symbol Name")
1864 (number :tag "Width in points")
1865 (number :tag "Height in points")
1866 (string :tag "Media")))
1867 :version "20"
1868 :group 'ps-print-page)
1870 ;;;###autoload
1871 (defcustom ps-paper-type 'letter
1872 "Specify the size of paper to format for.
1873 Should be one of the paper types defined in `ps-page-dimensions-database', for
1874 example `letter', `legal' or `a4'."
1875 :type '(symbol :validate (lambda (wid)
1876 (if (assq (widget-value wid)
1877 ps-page-dimensions-database)
1879 (widget-put wid :error "Unknown paper size")
1880 wid)))
1881 :version "20"
1882 :group 'ps-print-page)
1884 (defcustom ps-warn-paper-type t
1885 "Non-nil means give an error if paper size is not equal to `ps-paper-type'.
1887 It's used when `ps-spool-config' is set to `setpagedevice'."
1888 :type 'boolean
1889 :version "20"
1890 :group 'ps-print-page)
1892 (defcustom ps-landscape-mode nil
1893 "Non-nil means print in landscape mode."
1894 :type 'boolean
1895 :version "20"
1896 :group 'ps-print-page)
1898 (defcustom ps-print-upside-down nil
1899 "Non-nil means print upside-down (that is, rotated by 180 degrees)."
1900 :type 'boolean
1901 :version "21.1"
1902 :group 'ps-print-page)
1904 (defcustom ps-selected-pages nil
1905 "Specify which pages to print.
1907 If nil, print all pages.
1909 If a list, the lists element may be an integer or a cons cell (FROM . TO)
1910 designating FROM page to TO page; any invalid element is ignored, that is, an
1911 integer lesser than one or if FROM is greater than TO.
1913 Otherwise, it's treated as nil.
1915 After ps-print processing `ps-selected-pages' is set to nil. But the
1916 latest `ps-selected-pages' is saved in `ps-last-selected-pages' (which
1917 see). So you can restore the latest selected pages by using
1918 `ps-last-selected-pages' or with the `ps-restore-selected-pages'
1919 command (which see).
1921 See also `ps-even-or-odd-pages'."
1922 :type '(repeat :tag "Selected Pages"
1923 (radio :tag "Page"
1924 (integer :tag "Number")
1925 (cons :tag "Range"
1926 (integer :tag "From")
1927 (integer :tag "To"))))
1928 :version "20"
1929 :group 'ps-print-page)
1931 (defcustom ps-even-or-odd-pages nil
1932 "Specify if it prints even/odd pages.
1934 Valid values are:
1936 nil print all pages.
1938 `even-page' print only even pages.
1940 `odd-page' print only odd pages.
1942 `even-sheet' print only even sheets.
1943 That is, if `ps-n-up-printing' is 1, it behaves as `even-page';
1944 but for values greater than 1, it'll print only the even sheet
1945 of paper.
1947 `odd-sheet' print only odd sheets.
1948 That is, if `ps-n-up-printing' is 1, it behaves as `odd-page';
1949 but for values greater than 1, it'll print only the odd sheet
1950 of paper.
1952 Any other value is treated as nil.
1954 If you set option `ps-selected-pages', first the pages are
1955 filtered by option `ps-selected-pages' and then by `ps-even-or-odd-pages'.
1956 For example, if we have:
1958 (setq ps-selected-pages \\='(1 4 (6 . 10) (12 . 16) 20))
1960 Combining with `ps-even-or-odd-pages' and option `ps-n-up-printing', we have:
1962 `ps-n-up-printing' = 1:
1963 `ps-even-or-odd-pages' PAGES PRINTED
1964 nil 1, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 20
1965 even-page 4, 6, 8, 10, 12, 14, 16, 20
1966 odd-page 1, 7, 9, 13, 15
1967 even-sheet 4, 6, 8, 10, 12, 14, 16, 20
1968 odd-sheet 1, 7, 9, 13, 15
1970 `ps-n-up-printing' = 2:
1971 `ps-even-or-odd-pages' PAGES PRINTED
1972 nil 1/4, 6/7, 8/9, 10/12, 13/14, 15/16, 20
1973 even-page 4/6, 8/10, 12/14, 16/20
1974 odd-page 1/7, 9/13, 15
1975 even-sheet 6/7, 10/12, 15/16
1976 odd-sheet 1/4, 8/9, 13/14, 20
1978 So even-page/odd-page are about page parity and even-sheet/odd-sheet are about
1979 sheet parity."
1980 :type '(choice :menu-tag "Print Even/Odd Pages"
1981 :tag "Print Even/Odd Pages"
1982 (const :tag "All Pages" nil)
1983 (const :tag "Only Even Pages" even-page)
1984 (const :tag "Only Odd Pages" odd-page)
1985 (const :tag "Only Even Sheets" even-sheet)
1986 (const :tag "Only Odd Sheets" odd-sheet))
1987 :version "20"
1988 :group 'ps-print-page)
1990 (defcustom ps-print-control-characters 'control-8-bit
1991 "Specify the printable form for control and 8-bit characters.
1992 That is, instead of sending, for example, a ^D (\\004) to printer,
1993 it is sent the string \"^D\".
1995 Valid values are:
1997 `8-bit' This is the value to use when you want an ASCII encoding of
1998 any control or non-ASCII character. Control characters are
1999 encoded as \"^D\", and non-ASCII characters have an
2000 octal encoding.
2002 `control-8-bit' This is the value to use when you want an ASCII encoding of
2003 any control character, whether it is 7 or 8-bit.
2004 European 8-bits accented characters are printed according
2005 the current font.
2007 `control' Only ASCII control characters have an ASCII encoding.
2008 European 8-bits accented characters are printed according
2009 the current font.
2011 nil No ASCII encoding. Any character is printed according the
2012 current font.
2014 Any other value is treated as nil."
2015 :type '(choice :menu-tag "Control Char"
2016 :tag "Control Char"
2017 (const 8-bit) (const control-8-bit)
2018 (const control) (const :tag "nil" nil))
2019 :version "20"
2020 :group 'ps-print-miscellany)
2022 (defcustom ps-n-up-printing 1
2023 "Specify the number of pages per sheet paper."
2024 :type '(integer
2025 :tag "N Up Printing"
2026 :validate
2027 (lambda (wid)
2028 (if (and (< 0 (widget-value wid))
2029 (<= (widget-value wid) 100))
2031 (widget-put
2032 wid :error
2033 "Number of pages per sheet paper must be between 1 and 100.")
2034 wid)))
2035 :version "20"
2036 :group 'ps-print-n-up)
2038 (defcustom ps-n-up-margin (/ (* 72 1.0) 2.54) ; 1 cm
2039 "Specify the margin in points between the sheet border and n-up printing."
2040 :type 'number
2041 :version "20"
2042 :group 'ps-print-n-up)
2044 (defcustom ps-n-up-border-p t
2045 "Non-nil means a border is drawn around each page."
2046 :type 'boolean
2047 :version "20"
2048 :group 'ps-print-n-up)
2050 (defcustom ps-n-up-filling 'left-top
2051 "Specify how page matrix is filled on each sheet of paper.
2053 Following are the valid values for `ps-n-up-filling' with a filling example
2054 using a 3x4 page matrix:
2056 `left-top' 1 2 3 4 `left-bottom' 9 10 11 12
2057 5 6 7 8 5 6 7 8
2058 9 10 11 12 1 2 3 4
2060 `right-top' 4 3 2 1 `right-bottom' 12 11 10 9
2061 8 7 6 5 8 7 6 5
2062 12 11 10 9 4 3 2 1
2064 `top-left' 1 4 7 10 `bottom-left' 3 6 9 12
2065 2 5 8 11 2 5 8 11
2066 3 6 9 12 1 4 7 10
2068 `top-right' 10 7 4 1 `bottom-right' 12 9 6 3
2069 11 8 5 2 11 8 5 2
2070 12 9 6 3 10 7 4 1
2072 Any other value is treated as `left-top'."
2073 :type '(choice :menu-tag "N-Up Filling"
2074 :tag "N-Up Filling"
2075 (const left-top) (const left-bottom)
2076 (const right-top) (const right-bottom)
2077 (const top-left) (const bottom-left)
2078 (const top-right) (const bottom-right))
2079 :version "20"
2080 :group 'ps-print-n-up)
2082 (defcustom ps-number-of-columns (if ps-landscape-mode 2 1)
2083 "Specify the number of columns."
2084 :type 'number
2085 :version "20"
2086 :group 'ps-print-miscellany)
2088 (defcustom ps-zebra-stripes nil
2089 "Non-nil means print zebra stripes.
2090 See also documentation for `ps-zebra-stripe-height' and `ps-zebra-color'."
2091 :type 'boolean
2092 :version "20"
2093 :group 'ps-print-zebra)
2095 (defcustom ps-zebra-stripe-height 3
2096 "Number of zebra stripe lines.
2097 See also documentation for `ps-zebra-stripes' and `ps-zebra-color'."
2098 :type 'number
2099 :version "20"
2100 :group 'ps-print-zebra)
2102 (defcustom ps-zebra-color 0.95
2103 "Zebra stripe gray scale or RGB color.
2104 See also documentation for `ps-zebra-stripes' and `ps-zebra-stripe-height'."
2105 :type '(choice :menu-tag "Zebra Gray/Color"
2106 :tag "Zebra Gray/Color"
2107 (number :tag "Gray Scale" :value 0.95)
2108 (string :tag "Color Name" :value "gray95")
2109 (list :tag "RGB Color" :value (0.95 0.95 0.95)
2110 (number :tag "Red")
2111 (number :tag "Green")
2112 (number :tag "Blue")))
2113 :version "20"
2114 :group 'ps-print-zebra)
2116 (defcustom ps-zebra-stripe-follow nil
2117 "Specify how zebra stripes continue on next page.
2119 Visually, valid values are (the character `+' at right of each column indicates
2120 that a line is printed):
2122 nil `follow' `full' `full-follow'
2123 Current Page -------- ----------- --------- ----------------
2124 1 XXXXX + 1 XXXXXXXX + 1 XXXXXX + 1 XXXXXXXXXXXXX +
2125 2 XXXXX + 2 XXXXXXXX + 2 XXXXXX + 2 XXXXXXXXXXXXX +
2126 3 XXXXX + 3 XXXXXXXX + 3 XXXXXX + 3 XXXXXXXXXXXXX +
2127 4 + 4 + 4 + 4 +
2128 5 + 5 + 5 + 5 +
2129 6 + 6 + 6 + 6 +
2130 7 XXXXX + 7 XXXXXXXX + 7 XXXXXX + 7 XXXXXXXXXXXXX +
2131 8 XXXXX + 8 XXXXXXXX + 8 XXXXXX + 8 XXXXXXXXXXXXX +
2132 9 XXXXX + 9 XXXXXXXX + 9 XXXXXX + 9 XXXXXXXXXXXXX +
2133 10 + 10 +
2134 11 + 11 +
2135 -------- ----------- --------- ----------------
2136 Next Page -------- ----------- --------- ----------------
2137 12 XXXXX + 12 + 10 XXXXXX + 10 +
2138 13 XXXXX + 13 XXXXXXXX + 11 XXXXXX + 11 +
2139 14 XXXXX + 14 XXXXXXXX + 12 XXXXXX + 12 +
2140 15 + 15 XXXXXXXX + 13 + 13 XXXXXXXXXXXXX +
2141 16 + 16 + 14 + 14 XXXXXXXXXXXXX +
2142 17 + 17 + 15 + 15 XXXXXXXXXXXXX +
2143 18 XXXXX + 18 + 16 XXXXXX + 16 +
2144 19 XXXXX + 19 XXXXXXXX + 17 XXXXXX + 17 +
2145 20 XXXXX + 20 XXXXXXXX + 18 XXXXXX + 18 +
2146 21 + 21 XXXXXXXX +
2147 22 + 22 +
2148 -------- ----------- --------- ----------------
2150 Any other value is treated as nil."
2151 :type '(choice :menu-tag "Zebra Stripe Follow"
2152 :tag "Zebra Stripe Follow"
2153 (const :tag "Always Restart" nil)
2154 (const :tag "Continue on Next Page" follow)
2155 (const :tag "Print Only Full Stripe" full)
2156 (const :tag "Continue on Full Stripe" full-follow))
2157 :version "20"
2158 :group 'ps-print-zebra)
2160 (defcustom ps-line-number nil
2161 "Non-nil means print line number."
2162 :type 'boolean
2163 :version "20"
2164 :group 'ps-print-miscellany)
2166 (defcustom ps-line-number-step 1
2167 "Specify the interval that line number is printed.
2169 For example, `ps-line-number-step' is set to 2, the printing will look like:
2171 1 one line
2172 one line
2173 3 one line
2174 one line
2175 5 one line
2176 one line
2179 Valid values are:
2181 integer an integer that specifies the interval that line number is
2182 printed. If it's lesser than or equal to zero, it's used the
2183 value 1.
2185 `zebra' specifies that only the line number of the first line in a
2186 zebra stripe is to be printed.
2188 Any other value is treated as `zebra'."
2189 :type '(choice :menu-tag "Line Number Step"
2190 :tag "Line Number Step"
2191 (integer :tag "Step Interval")
2192 (const :tag "Synchronize Zebra" zebra))
2193 :version "20"
2194 :group 'ps-print-miscellany)
2196 (defcustom ps-line-number-start 1
2197 "Specify the starting point in the interval given by `ps-line-number-step'.
2199 For example, if `ps-line-number-step' is set to 3 and `ps-line-number-start' is
2200 set to 3, the printing will look like:
2202 one line
2203 one line
2204 3 one line
2205 one line
2206 one line
2207 6 one line
2208 one line
2209 one line
2210 9 one line
2211 one line
2214 The values for `ps-line-number-start':
2216 * If `ps-line-number-step' is an integer, must be between 1 and the value of
2217 `ps-line-number-step' inclusive.
2219 * If `ps-line-number-step' is set to `zebra', must be between 1 and the
2220 value of `ps-zebra-strip-height' inclusive. Use this combination if you
2221 wish that line number be relative to zebra stripes."
2222 :type '(integer :tag "Start Step Interval")
2223 :version "20"
2224 :group 'ps-print-miscellany)
2226 (defcustom ps-print-background-image nil
2227 "EPS image list to be printed on background.
2229 The elements are:
2231 (FILENAME X Y XSCALE YSCALE ROTATION PAGES...)
2233 FILENAME is a file name which contains an EPS image or some PostScript
2234 programming like EPS.
2235 FILENAME is ignored, if it doesn't exist or is read protected.
2237 X and Y are relative positions on paper to put the image.
2238 If X and Y are nil, the image is centered on paper.
2240 XSCALE and YSCALE are scale factor to be applied to image before printing.
2241 If XSCALE and YSCALE are nil, the original size is used.
2243 ROTATION is the image rotation angle; if nil, the default is 0.
2245 PAGES designates the page to print background image.
2246 PAGES may be a number or a cons cell (FROM . TO) designating FROM page to TO
2247 page.
2248 If PAGES is nil, print background image on all pages.
2250 X, Y, XSCALE, YSCALE and ROTATION may be a floating point number, an integer
2251 number or a string. If it is a string, the string should contain PostScript
2252 programming that returns a float or integer value.
2254 For example, if you wish to print an EPS image on all pages use:
2256 ((\"~/images/EPS-image.ps\"))"
2257 :type '(repeat
2258 (list
2259 (file :tag "EPS File")
2260 (choice :tag "X" (const :tag "default" nil) number string)
2261 (choice :tag "Y" (const :tag "default" nil) number string)
2262 (choice :tag "X Scale" (const :tag "default" nil) number string)
2263 (choice :tag "Y Scale" (const :tag "default" nil) number string)
2264 (choice :tag "Rotation" (const :tag "default" nil) number string)
2265 (repeat :tag "Pages" :inline t
2266 (radio (integer :tag "Page")
2267 (cons :tag "Range"
2268 (integer :tag "From")
2269 (integer :tag "To"))))))
2270 :version "20"
2271 :group 'ps-print-background)
2273 (defcustom ps-print-background-text nil
2274 "Text list to be printed on background.
2276 The elements are:
2278 (STRING X Y FONT FONTSIZE GRAY ROTATION PAGES...)
2280 STRING is the text to be printed on background.
2282 X and Y are positions on paper to put the text.
2283 If X and Y are nil, the text is positioned at lower left corner.
2285 FONT is a font name to be used on printing the text.
2286 If nil, \"Times-Roman\" is used.
2288 FONTSIZE is font size to be used, if nil, 200 is used.
2290 GRAY is the text gray factor (should be very light like 0.8).
2291 If nil, the default is 0.85.
2293 ROTATION is the text rotation angle; if nil, the angle is given by the diagonal
2294 from lower left corner to upper right corner.
2296 PAGES designates the page to print background text.
2297 PAGES may be a number or a cons cell (FROM . TO) designating FROM page to TO
2298 page.
2299 If PAGES is nil, print background text on all pages.
2301 X, Y, FONTSIZE, GRAY and ROTATION may be a floating point number, an integer
2302 number or a string. If it is a string, the string should contain PostScript
2303 programming that returns a float or integer value.
2305 For example, if you wish to print text \"Preliminary\" on all pages use:
2307 ((\"Preliminary\"))"
2308 :type '(repeat
2309 (list
2310 (string :tag "Text")
2311 (choice :tag "X" (const :tag "default" nil) number string)
2312 (choice :tag "Y" (const :tag "default" nil) number string)
2313 (choice :tag "Font" (const :tag "default" nil) string)
2314 (choice :tag "Fontsize" (const :tag "default" nil) number string)
2315 (choice :tag "Gray" (const :tag "default" nil) number string)
2316 (choice :tag "Rotation" (const :tag "default" nil) number string)
2317 (repeat :tag "Pages" :inline t
2318 (radio (integer :tag "Page")
2319 (cons :tag "Range"
2320 (integer :tag "From")
2321 (integer :tag "To"))))))
2322 :version "20"
2323 :group 'ps-print-background)
2325 ;;; Horizontal layout
2327 ;; ------------------------------------------
2328 ;; | | | | | | | |
2329 ;; | lm | text | ic | text | ic | text | rm |
2330 ;; | | | | | | | |
2331 ;; ------------------------------------------
2333 (defcustom ps-left-margin (/ (* 72 2.0) 2.54) ; 2 cm
2334 "Left margin in points (1/72 inch)."
2335 :type 'number
2336 :version "20"
2337 :group 'ps-print-horizontal)
2339 (defcustom ps-right-margin (/ (* 72 2.0) 2.54) ; 2 cm
2340 "Right margin in points (1/72 inch)."
2341 :type 'number
2342 :version "20"
2343 :group 'ps-print-horizontal)
2345 (defcustom ps-inter-column (/ (* 72 2.0) 2.54) ; 2 cm
2346 "Horizontal space between columns in points (1/72 inch)."
2347 :type 'number
2348 :version "20"
2349 :group 'ps-print-horizontal)
2351 ;;; Vertical layout
2353 ;; |--------|
2354 ;; | tm |
2355 ;; |--------|
2356 ;; | header |
2357 ;; |--------|
2358 ;; | ho |
2359 ;; |--------|
2360 ;; | text |
2361 ;; |--------|
2362 ;; | bm |
2363 ;; |--------|
2365 (defcustom ps-bottom-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
2366 "Bottom margin in points (1/72 inch)."
2367 :type 'number
2368 :version "20"
2369 :group 'ps-print-vertical)
2371 (defcustom ps-top-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
2372 "Top margin in points (1/72 inch)."
2373 :type 'number
2374 :version "20"
2375 :group 'ps-print-vertical)
2377 (defcustom ps-header-offset (/ (* 72 1.0) 2.54) ; 1.0 cm
2378 "Vertical space in points (1/72 inch) between the main text and the header."
2379 :type 'number
2380 :version "20"
2381 :group 'ps-print-vertical)
2383 (defcustom ps-header-line-pad 0.15
2384 "Portion of a header title line height to insert.
2385 The insertion is done between the header frame and the text it contains,
2386 both in the vertical and horizontal directions."
2387 :type 'number
2388 :version "20"
2389 :group 'ps-print-vertical)
2391 (defcustom ps-footer-offset (/ (* 72 1.0) 2.54) ; 1.0 cm
2392 "Vertical space in points (1/72 inch) between the main text and the footer."
2393 :type 'number
2394 :version "20"
2395 :group 'ps-print-vertical)
2397 (defcustom ps-footer-line-pad 0.15
2398 "Portion of a footer title line height to insert.
2399 The insertion is done between the footer frame and the text it contains,
2400 both in the vertical and horizontal directions."
2401 :type 'number
2402 :version "20"
2403 :group 'ps-print-vertical)
2405 ;;; Header/Footer setup
2407 (defcustom ps-print-header t
2408 "Non-nil means print a header at the top of each page.
2409 By default, the header displays the buffer name, page number, and, if the
2410 buffer is visiting a file, the file's directory. Headers are customizable by
2411 changing variables `ps-left-header' and `ps-right-header'."
2412 :type 'boolean
2413 :version "20"
2414 :group 'ps-print-headers)
2416 (defcustom ps-print-header-frame t
2417 "Non-nil means draw a gaudy frame around the header."
2418 :type 'boolean
2419 :version "20"
2420 :group 'ps-print-headers)
2422 (defcustom ps-header-frame-alist
2423 '((fore-color . 0.0)
2424 (back-color . 0.9)
2425 (border-width . 0.4)
2426 (border-color . 0.0)
2427 (shadow-color . 0.0))
2428 "Specify header frame properties alist.
2430 Valid frame properties are:
2432 `fore-color' Specify the foreground frame color.
2433 It should be a float number between 0.0 (black color)
2434 and 1.0 (white color), a string which is a color name,
2435 or a list of 3 float numbers which corresponds to the
2436 Red Green Blue color scale, each float number between
2437 0.0 (dark color) and 1.0 (bright color).
2439 `back-color' Specify the background frame color (similar to
2440 `fore-color').
2442 `shadow-color' Specify the shadow color (similar to `fore-color').
2444 `border-color' Specify the border color (similar to `fore-color').
2446 `border-width' Specify the border width.
2448 Any other property is ignored.
2450 Don't change this alist directly, instead use customization, or `ps-value',
2451 `ps-get', `ps-put' and `ps-del' functions (see them for documentation)."
2452 :version "21.1"
2453 :type '(repeat
2454 (choice :menu-tag "Header Frame Element"
2455 :tag ""
2456 (cons :tag "Foreground Color" :format "%v"
2457 (const :format "" fore-color)
2458 (choice :menu-tag "Foreground Color"
2459 :tag "Foreground Color"
2460 (number :tag "Gray Scale" :value 0.0)
2461 (string :tag "Color Name" :value "black")
2462 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2463 (number :tag "Red")
2464 (number :tag "Green")
2465 (number :tag "Blue"))))
2466 (cons :tag "Background Color" :format "%v"
2467 (const :format "" back-color)
2468 (choice :menu-tag "Background Color"
2469 :tag "Background Color"
2470 (number :tag "Gray Scale" :value 0.9)
2471 (string :tag "Color Name" :value "gray90")
2472 (list :tag "RGB Color" :value (0.9 0.9 0.9)
2473 (number :tag "Red")
2474 (number :tag "Green")
2475 (number :tag "Blue"))))
2476 (cons :tag "Border Width" :format "%v"
2477 (const :format "" border-width)
2478 (number :tag "Border Width" :value 0.4))
2479 (cons :tag "Border Color" :format "%v"
2480 (const :format "" border-color)
2481 (choice :menu-tag "Border Color"
2482 :tag "Border Color"
2483 (number :tag "Gray Scale" :value 0.0)
2484 (string :tag "Color Name" :value "black")
2485 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2486 (number :tag "Red")
2487 (number :tag "Green")
2488 (number :tag "Blue"))))
2489 (cons :tag "Shadow Color" :format "%v"
2490 (const :format "" shadow-color)
2491 (choice :menu-tag "Shadow Color"
2492 :tag "Shadow Color"
2493 (number :tag "Gray Scale" :value 0.0)
2494 (string :tag "Color Name" :value "black")
2495 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2496 (number :tag "Red")
2497 (number :tag "Green")
2498 (number :tag "Blue"))))))
2499 :version "20"
2500 :group 'ps-print-headers)
2502 (defcustom ps-header-lines 2
2503 "Number of lines to display in page header, when generating PostScript."
2504 :type 'integer
2505 :version "20"
2506 :group 'ps-print-headers)
2508 (defcustom ps-print-footer nil
2509 "Non-nil means print a footer at the bottom of each page.
2510 By default, the footer displays page number.
2511 Footers are customizable by changing variables `ps-left-footer' and
2512 `ps-right-footer'."
2513 :type 'boolean
2514 :version "21.1"
2515 :group 'ps-print-headers)
2517 (defcustom ps-print-footer-frame t
2518 "Non-nil means draw a gaudy frame around the footer."
2519 :type 'boolean
2520 :version "21.1"
2521 :group 'ps-print-headers)
2523 (defcustom ps-footer-frame-alist
2524 '((fore-color . 0.0)
2525 (back-color . 0.9)
2526 (border-width . 0.4)
2527 (border-color . 0.0)
2528 (shadow-color . 0.0))
2529 "Specify footer frame properties alist.
2531 Don't change this alist directly, instead use customization, or `ps-value',
2532 `ps-get', `ps-put' and `ps-del' functions (see them for documentation).
2534 See also `ps-header-frame-alist' for documentation."
2535 :type '(repeat
2536 (choice :menu-tag "Header Frame Element"
2537 :tag ""
2538 (cons :tag "Foreground Color" :format "%v"
2539 (const :format "" fore-color)
2540 (choice :menu-tag "Foreground Color"
2541 :tag "Foreground Color"
2542 (number :tag "Gray Scale" :value 0.0)
2543 (string :tag "Color Name" :value "black")
2544 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2545 (number :tag "Red")
2546 (number :tag "Green")
2547 (number :tag "Blue"))))
2548 (cons :tag "Background Color" :format "%v"
2549 (const :format "" back-color)
2550 (choice :menu-tag "Background Color"
2551 :tag "Background Color"
2552 (number :tag "Gray Scale" :value 0.9)
2553 (string :tag "Color Name" :value "gray90")
2554 (list :tag "RGB Color" :value (0.9 0.9 0.9)
2555 (number :tag "Red")
2556 (number :tag "Green")
2557 (number :tag "Blue"))))
2558 (cons :tag "Border Width" :format "%v"
2559 (const :format "" border-width)
2560 (number :tag "Border Width" :value 0.4))
2561 (cons :tag "Border Color" :format "%v"
2562 (const :format "" border-color)
2563 (choice :menu-tag "Border Color"
2564 :tag "Border Color"
2565 (number :tag "Gray Scale" :value 0.0)
2566 (string :tag "Color Name" :value "black")
2567 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2568 (number :tag "Red")
2569 (number :tag "Green")
2570 (number :tag "Blue"))))
2571 (cons :tag "Shadow Color" :format "%v"
2572 (const :format "" shadow-color)
2573 (choice :menu-tag "Shadow Color"
2574 :tag "Shadow Color"
2575 (number :tag "Gray Scale" :value 0.0)
2576 (string :tag "Color Name" :value "black")
2577 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2578 (number :tag "Red")
2579 (number :tag "Green")
2580 (number :tag "Blue"))))))
2581 :version "21.1"
2582 :group 'ps-print-headers)
2584 (defcustom ps-footer-lines 2
2585 "Number of lines to display in page footer, when generating PostScript."
2586 :type 'integer
2587 :version "21.1"
2588 :group 'ps-print-headers)
2590 (defcustom ps-print-only-one-header nil
2591 "Non-nil means print only one header/footer at the top/bottom of each page.
2592 This is useful when printing more than one column, so it is possible to have
2593 only one header/footer over all columns or one header/footer per column.
2594 See also `ps-print-header' and `ps-print-footer'."
2595 :type 'boolean
2596 :version "20"
2597 :group 'ps-print-headers)
2599 (defcustom ps-switch-header 'duplex
2600 "Specify if headers/footers are switched or not.
2602 Valid values are:
2604 nil Never switch headers/footers.
2606 t Always switch headers/footers.
2608 duplex Switch headers/footers only when duplexing is on, that is, when
2609 `ps-spool-duplex' is non-nil.
2611 Any other value is treated as t.
2613 See also `ps-print-header' and `ps-print-footer'."
2614 :type '(choice :menu-tag "Switch Header/Footer"
2615 :tag "Switch Header/Footer"
2616 (const :tag "Never Switch" nil)
2617 (const :tag "Always Switch" t)
2618 (const :tag "Switch When Duplexing" duplex))
2619 :version "20"
2620 :group 'ps-print-headers)
2622 (defcustom ps-show-n-of-n t
2623 "Non-nil means show page numbers as N/M, meaning page N of M.
2624 NOTE: page numbers are displayed as part of headers,
2625 see variable `ps-print-header'."
2626 :type 'boolean
2627 :version "20"
2628 :group 'ps-print-headers)
2630 (defcustom ps-spool-config
2631 (if lpr-windows-system
2633 'lpr-switches)
2634 "Specify who is responsible for setting duplex and page size.
2636 Valid values are:
2638 `lpr-switches' duplex and page size are configured by `ps-lpr-switches'.
2639 Don't forget to set `ps-lpr-switches' to select duplex
2640 printing for your printer.
2642 `setpagedevice' duplex and page size are configured by ps-print using the
2643 setpagedevice PostScript operator.
2645 nil duplex and page size are configured by ps-print *not* using
2646 the setpagedevice PostScript operator.
2648 Any other value is treated as nil.
2650 WARNING: The setpagedevice PostScript operator affects ghostview utility when
2651 viewing file generated using landscape. Also on some printers,
2652 setpagedevice affects zebra stripes; on other printers, setpagedevice
2653 affects the left margin.
2654 Besides all that, if your printer does not have the paper size
2655 specified by setpagedevice, your printing will be aborted.
2656 So, if you need to use setpagedevice, set `ps-spool-config' to
2657 `setpagedevice', generate a test file and send it to your printer; if
2658 the printed file isn't OK, set `ps-spool-config' to nil."
2659 :type '(choice :menu-tag "Spool Config"
2660 :tag "Spool Config"
2661 (const lpr-switches) (const setpagedevice)
2662 (const :tag "nil" nil))
2663 :version "20"
2664 :group 'ps-print-headers)
2666 (defcustom ps-spool-duplex nil ; Not many people have duplex printers,
2667 ; so default to nil.
2668 "Non-nil generates PostScript for a two-sided printer.
2669 For a duplex printer, the `ps-spool-*' and `ps-print-*' commands will insert
2670 blank pages as needed between print jobs so that the next buffer printed will
2671 start on the right page. Also, if headers are turned on, the headers will be
2672 reversed on duplex printers so that the page numbers fall to the left on
2673 even-numbered pages.
2675 See also `ps-spool-tumble'."
2676 :type 'boolean
2677 :version "20"
2678 :group 'ps-print-headers)
2680 (defcustom ps-spool-tumble nil
2681 "Specify how the page images on opposite sides of a sheet are oriented.
2682 If `ps-spool-tumble' is nil, produces output suitable for binding on the left
2683 or right. If `ps-spool-tumble' is non-nil, produces output suitable for
2684 binding at the top or bottom.
2686 It has effect only when `ps-spool-duplex' is non-nil."
2687 :type 'boolean
2688 :version "20"
2689 :group 'ps-print-headers)
2691 ;;; Fonts
2693 (defcustom ps-font-info-database
2694 '((Courier ; the family key
2695 (fonts (normal . "Courier")
2696 (bold . "Courier-Bold")
2697 (italic . "Courier-Oblique")
2698 (bold-italic . "Courier-BoldOblique"))
2699 (size . 10.0)
2700 (line-height . 10.55)
2701 (space-width . 6.0)
2702 (avg-char-width . 6.0))
2703 (Helvetica ; the family key
2704 (fonts (normal . "Helvetica")
2705 (bold . "Helvetica-Bold")
2706 (italic . "Helvetica-Oblique")
2707 (bold-italic . "Helvetica-BoldOblique"))
2708 (size . 10.0)
2709 (line-height . 11.56)
2710 (space-width . 2.78)
2711 (avg-char-width . 5.09243))
2712 (Times
2713 (fonts (normal . "Times-Roman")
2714 (bold . "Times-Bold")
2715 (italic . "Times-Italic")
2716 (bold-italic . "Times-BoldItalic"))
2717 (size . 10.0)
2718 (line-height . 11.0)
2719 (space-width . 2.5)
2720 (avg-char-width . 4.71432))
2721 (Palatino
2722 (fonts (normal . "Palatino-Roman")
2723 (bold . "Palatino-Bold")
2724 (italic . "Palatino-Italic")
2725 (bold-italic . "Palatino-BoldItalic"))
2726 (size . 10.0)
2727 (line-height . 12.1)
2728 (space-width . 2.5)
2729 (avg-char-width . 5.08676))
2730 (Helvetica-Narrow
2731 (fonts (normal . "Helvetica-Narrow")
2732 (bold . "Helvetica-Narrow-Bold")
2733 (italic . "Helvetica-Narrow-Oblique")
2734 (bold-italic . "Helvetica-Narrow-BoldOblique"))
2735 (size . 10.0)
2736 (line-height . 11.56)
2737 (space-width . 2.2796)
2738 (avg-char-width . 4.17579))
2739 (NewCenturySchlbk
2740 (fonts (normal . "NewCenturySchlbk-Roman")
2741 (bold . "NewCenturySchlbk-Bold")
2742 (italic . "NewCenturySchlbk-Italic")
2743 (bold-italic . "NewCenturySchlbk-BoldItalic"))
2744 (size . 10.0)
2745 (line-height . 12.15)
2746 (space-width . 2.78)
2747 (avg-char-width . 5.31162))
2748 ;; got no bold for the next ones
2749 (AvantGarde-Book
2750 (fonts (normal . "AvantGarde-Book")
2751 (italic . "AvantGarde-BookOblique"))
2752 (size . 10.0)
2753 (line-height . 11.77)
2754 (space-width . 2.77)
2755 (avg-char-width . 5.45189))
2756 (AvantGarde-Demi
2757 (fonts (normal . "AvantGarde-Demi")
2758 (italic . "AvantGarde-DemiOblique"))
2759 (size . 10.0)
2760 (line-height . 12.72)
2761 (space-width . 2.8)
2762 (avg-char-width . 5.51351))
2763 (Bookman-Demi
2764 (fonts (normal . "Bookman-Demi")
2765 (italic . "Bookman-DemiItalic"))
2766 (size . 10.0)
2767 (line-height . 11.77)
2768 (space-width . 3.4)
2769 (avg-char-width . 6.05946))
2770 (Bookman-Light
2771 (fonts (normal . "Bookman-Light")
2772 (italic . "Bookman-LightItalic"))
2773 (size . 10.0)
2774 (line-height . 11.79)
2775 (space-width . 3.2)
2776 (avg-char-width . 5.67027))
2777 ;; got no bold and no italic for the next ones
2778 (Symbol
2779 (fonts (normal . "Symbol"))
2780 (size . 10.0)
2781 (line-height . 13.03)
2782 (space-width . 2.5)
2783 (avg-char-width . 3.24324))
2784 (Zapf-Dingbats
2785 (fonts (normal . "Zapf-Dingbats"))
2786 (size . 10.0)
2787 (line-height . 9.63)
2788 (space-width . 2.78)
2789 (avg-char-width . 2.78))
2790 (ZapfChancery-MediumItalic
2791 (fonts (normal . "ZapfChancery-MediumItalic"))
2792 (size . 10.0)
2793 (line-height . 11.45)
2794 (space-width . 2.2)
2795 (avg-char-width . 4.10811))
2796 ;; We keep this wrong entry name (but with correct font name) for
2797 ;; backward compatibility.
2798 (Zapf-Chancery-MediumItalic
2799 (fonts (normal . "ZapfChancery-MediumItalic"))
2800 (size . 10.0)
2801 (line-height . 11.45)
2802 (space-width . 2.2)
2803 (avg-char-width . 4.10811))
2805 "Font info database.
2806 Each element comprises: font family (the key), name, bold, italic, bold-italic,
2807 reference size, line height, space width, average character width.
2808 To get the info for another specific font (say Helvetica), do the following:
2809 - create a new buffer
2810 - generate the PostScript image to a file (C-u M-x ps-print-buffer)
2811 - open this file and delete the leading `%' (which is the PostScript comment
2812 character) from the line
2813 `% 3 cm 20 cm moveto 10/Courier ReportFontInfo showpage'
2814 to get the line
2815 `3 cm 20 cm moveto 10/Helvetica ReportFontInfo showpage'
2816 - add the values to `ps-font-info-database'.
2817 You can get all the fonts of YOUR printer using `ReportAllFontInfo'.
2819 Note also that ps-print DOESN'T download any font to your printer, instead it
2820 uses the fonts resident in your printer."
2821 :type '(repeat
2822 (list :tag "Font Definition"
2823 (symbol :tag "Font Family")
2824 (cons :format "%v"
2825 (const :format "" fonts)
2826 (repeat :tag "Faces"
2827 (cons (choice :menu-tag "Font Weight/Slant"
2828 :tag "Font Weight/Slant"
2829 (const normal)
2830 (const bold)
2831 (const italic)
2832 (const bold-italic)
2833 (symbol :tag "Face"))
2834 (string :tag "Font Name"))))
2835 (cons :format "%v"
2836 (const :format "" size)
2837 (number :tag "Reference Size"))
2838 (cons :format "%v"
2839 (const :format "" line-height)
2840 (number :tag "Line Height"))
2841 (cons :format "%v"
2842 (const :format "" space-width)
2843 (number :tag "Space Width"))
2844 (cons :format "%v"
2845 (const :format "" avg-char-width)
2846 (number :tag "Average Character Width"))))
2847 :version "20"
2848 :group 'ps-print-font)
2850 (defcustom ps-font-family 'Courier
2851 "Font family name for ordinary text, when generating PostScript."
2852 :type 'symbol
2853 :version "20"
2854 :group 'ps-print-font)
2856 (defcustom ps-font-size '(7 . 8.5)
2857 "Font size, in points, for ordinary text, when generating PostScript.
2858 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2859 :type '(choice :menu-tag "Ordinary Text Font Size"
2860 :tag "Ordinary Text Font Size"
2861 (number :tag "Text Size")
2862 (cons :tag "Landscape/Portrait"
2863 (number :tag "Landscape Text Size")
2864 (number :tag "Portrait Text Size")))
2865 :version "20"
2866 :group 'ps-print-font)
2868 (defcustom ps-header-font-family 'Helvetica
2869 "Font family name for text in the header, when generating PostScript."
2870 :type 'symbol
2871 :version "20"
2872 :group 'ps-print-font)
2874 (defcustom ps-header-font-size '(10 . 12)
2875 "Font size, in points, for text in the header, when generating PostScript.
2876 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2877 :type '(choice :menu-tag "Header Font Size"
2878 :tag "Header Font Size"
2879 (number :tag "Header Size")
2880 (cons :tag "Landscape/Portrait"
2881 (number :tag "Landscape Header Size")
2882 (number :tag "Portrait Header Size")))
2883 :version "20"
2884 :group 'ps-print-font)
2886 (defcustom ps-header-title-font-size '(12 . 14)
2887 "Font size, in points, for the top line of text in header, in PostScript.
2888 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2889 :type '(choice :menu-tag "Header Title Font Size"
2890 :tag "Header Title Font Size"
2891 (number :tag "Header Title Size")
2892 (cons :tag "Landscape/Portrait"
2893 (number :tag "Landscape Header Title Size")
2894 (number :tag "Portrait Header Title Size")))
2895 :version "20"
2896 :group 'ps-print-font)
2898 (defcustom ps-footer-font-family 'Helvetica
2899 "Font family name for text in the footer, when generating PostScript."
2900 :type 'symbol
2901 :version "21.1"
2902 :group 'ps-print-font)
2904 (defcustom ps-footer-font-size '(10 . 12)
2905 "Font size, in points, for text in the footer, when generating PostScript.
2906 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2907 :type '(choice :menu-tag "Footer Font Size"
2908 :tag "Footer Font Size"
2909 (number :tag "Footer Size")
2910 (cons :tag "Landscape/Portrait"
2911 (number :tag "Landscape Footer Size")
2912 (number :tag "Portrait Footer Size")))
2913 :version "21.1"
2914 :group 'ps-print-font)
2916 (defcustom ps-line-number-color "black"
2917 "Specify color for line-number, when generating PostScript."
2918 :type '(choice :menu-tag "Line Number Color"
2919 :tag "Line Number Color"
2920 (number :tag "Gray Scale" :value 0)
2921 (string :tag "Color Name" :value "black")
2922 (list :tag "RGB Color" :value (0 0 0)
2923 (number :tag "Red")
2924 (number :tag "Green")
2925 (number :tag "Blue")))
2926 :version "21.1"
2927 :group 'ps-print-font
2928 :group 'ps-print-miscellany)
2930 (defcustom ps-line-number-font "Times-Italic"
2931 "Font for line-number, when generating PostScript."
2932 :type 'string
2933 :version "20"
2934 :group 'ps-print-font
2935 :group 'ps-print-miscellany)
2937 (defcustom ps-line-number-font-size 6
2938 "Font size, in points, for line number, when generating PostScript.
2939 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE)."
2940 :type '(choice :menu-tag "Line Number Font Size"
2941 :tag "Line Number Font Size"
2942 (number :tag "Font Size")
2943 (cons :tag "Landscape/Portrait"
2944 (number :tag "Landscape Font Size")
2945 (number :tag "Portrait Font Size")))
2946 :version "20"
2947 :group 'ps-print-font
2948 :group 'ps-print-miscellany)
2950 ;;; Colors
2952 ;; Printing color requires x-color-values.
2953 ;; XEmacs change: Need autoload for the "Options->Printing->Color Printing"
2954 ;; widget to work.
2955 ;;;###autoload
2956 (defcustom ps-print-color-p
2957 (or (fboundp 'x-color-values) ; Emacs
2958 (fboundp 'color-instance-rgb-components))
2959 ; XEmacs
2960 "Specify how buffer's text color is printed.
2962 Valid values are:
2964 nil Do not print colors.
2966 t Print colors.
2968 black-white Print colors on black/white printer.
2969 See also `ps-black-white-faces'.
2971 Any other value is treated as t."
2972 :type '(choice :menu-tag "Print Color"
2973 :tag "Print Color"
2974 (const :tag "Do NOT Print Color" nil)
2975 (const :tag "Print Always Color" t)
2976 (const :tag "Print Black/White Color" black-white))
2977 :version "20"
2978 :group 'ps-print-color)
2980 (defcustom ps-default-fg nil
2981 "RGB values of the default foreground color.
2983 The `ps-default-fg' variable contains the default foreground color used by
2984 ps-print, that is, if there is a face in a text that doesn't have a foreground
2985 color, the `ps-default-fg' color should be used.
2987 Valid values are:
2989 t The foreground color of Emacs session will be used.
2991 frame-parameter The foreground-color frame parameter will be used.
2993 NUMBER It's a real value between 0.0 (black) and 1.0 (white) that
2994 indicate the gray color.
2996 COLOR-NAME It's a string which contains the color name. For example:
2997 \"yellow\".
2999 LIST It's a list of RGB values, that is a list of three real values
3000 of the form:
3002 (RED GREEN BLUE)
3004 Where RED, GREEN and BLUE are reals between 0.0 (no color) and
3005 1.0 (full color).
3007 Any other value is ignored and black color will be used.
3009 This variable is used only when `ps-print-color-p' (which see) is neither nil
3010 nor black-white."
3011 :type '(choice :menu-tag "Default Foreground Gray/Color"
3012 (const :tag "Session Foreground" t)
3013 (const :tag "Frame Foreground" frame-parameter)
3014 (number :tag "Gray Scale" :value 0.0)
3015 (string :tag "Color Name" :value "black")
3016 (list :tag "RGB Color" :value (0.0 0.0 0.0)
3017 (number :tag "Red")
3018 (number :tag "Green")
3019 (number :tag "Blue"))
3020 (other :tag "Default Foreground Gray/Color" nil))
3021 :version "20"
3022 :group 'ps-print-color)
3024 (defcustom ps-default-bg nil
3025 "RGB values of the default background color.
3027 The `ps-default-bg' variable contains the default background color used by
3028 ps-print, that is, if there is a face in a text that doesn't have a background
3029 color, the `ps-default-bg' color should be used.
3031 Valid values are:
3033 t The background color of Emacs session will be used.
3035 frame-parameter The background-color frame parameter will be used.
3037 NUMBER It's a real value between 0.0 (black) and 1.0 (white) that
3038 indicate the gray color.
3040 COLOR-NAME It's a string which contains the color name. For example:
3041 \"yellow\".
3043 LIST It's a list of RGB values, that is a list of three real values
3044 of the form:
3046 (RED GREEN BLUE)
3048 Where RED, GREEN and BLUE are reals between 0.0 (no color) and
3049 1.0 (full color).
3051 Any other value is ignored and white color will be used.
3053 This variable is used only when `ps-print-color-p' (which see) is neither nil
3054 nor black-white.
3056 See also `ps-use-face-background'."
3057 :type '(choice :menu-tag "Default Background Gray/Color"
3058 (const :tag "Session Background" t)
3059 (const :tag "Frame Background" frame-parameter)
3060 (number :tag "Gray Scale" :value 1.0)
3061 (string :tag "Color Name" :value "white")
3062 (list :tag "RGB Color" :value (1.0 1.0 1.0)
3063 (number :tag "Red")
3064 (number :tag "Green")
3065 (number :tag "Blue"))
3066 (other :tag "Default Background Gray/Color" nil))
3067 :version "20"
3068 :group 'ps-print-color)
3070 (defcustom ps-fg-list nil
3071 "Specify foreground color list.
3073 This list is used to chose a text foreground color which is different than the
3074 background color. It'll be used the first foreground color in `ps-fg-list'
3075 which is different from the background color.
3077 If this list is nil, the default foreground color is used. See
3078 `ps-default-fg'.
3080 The list element valid values are:
3082 NUMBER It's a real value between 0.0 (black) and 1.0 (white) that
3083 indicate the gray color.
3085 COLOR-NAME It's a string which contains the color name. For example:
3086 \"yellow\".
3088 LIST It's a list of RGB values, that is a list of three real values
3089 of the form:
3091 (RED GREEN BLUE)
3093 Where RED, GREEN and BLUE are reals between 0.0 (no color) and
3094 1.0 (full color).
3096 Any other value is ignored and black color will be used.
3098 This variable is used only when `ps-fg-validate-p' (which see) is non-nil and
3099 when `ps-print-color-p' (which see) is neither nil nor black-white."
3100 :type '(repeat
3101 (choice :menu-tag "Foreground Gray/Color"
3102 :tag "Foreground Gray/Color"
3103 (number :tag "Gray Scale" :value 0.0)
3104 (string :tag "Color Name" :value "black")
3105 (list :tag "RGB Color" :value (0.0 0.0 0.0)
3106 (number :tag "Red")
3107 (number :tag "Green")
3108 (number :tag "Blue"))))
3109 :version "22"
3110 :group 'ps-print-color)
3112 (defcustom ps-fg-validate-p t
3113 "Non-nil means validate if foreground color is different than background.
3115 If text foreground and background colors are equals, no text will appear.
3117 See also `ps-fg-list'."
3118 :type 'boolean
3119 :version "22"
3120 :group 'ps-print-color)
3122 (defcustom ps-auto-font-detect t
3123 "Non-nil means automatically detect bold/italic/underline face attributes.
3124 If nil, we rely solely on the lists `ps-bold-faces', `ps-italic-faces', and
3125 `ps-underlined-faces'."
3126 :type 'boolean
3127 :version "20"
3128 :group 'ps-print-font)
3130 (defcustom ps-black-white-faces
3131 '((font-lock-builtin-face "black" nil bold )
3132 (font-lock-comment-face "gray20" nil italic)
3133 (font-lock-constant-face "black" nil bold )
3134 (font-lock-function-name-face "black" nil bold )
3135 (font-lock-keyword-face "black" nil bold )
3136 (font-lock-string-face "black" nil italic)
3137 (font-lock-type-face "black" nil italic)
3138 (font-lock-variable-name-face "black" nil bold italic)
3139 (font-lock-warning-face "black" nil bold italic))
3140 "Specify list of face attributes to print colors on black/white printers.
3142 The list elements are the same as defined on `ps-extend-face' (which see).
3144 This variable is used only when `ps-print-color-p' is set to `black-white'."
3145 :version "21.1"
3146 :type '(repeat
3147 (list :tag "Face Specification"
3148 (face :tag "Face Symbol")
3149 (choice :menu-tag "Foreground Color"
3150 :tag "Foreground Color"
3151 (const :tag "Black" nil)
3152 (string :tag "Color Name"))
3153 (choice :menu-tag "Background Color"
3154 :tag "Background Color"
3155 (const :tag "None" nil)
3156 (string :tag "Color Name"))
3157 (repeat :inline t
3158 (choice :menu-tag "Attribute"
3159 (const bold)
3160 (const italic)
3161 (const underline)
3162 (const strikeout)
3163 (const overline)
3164 (const shadow)
3165 (const box)
3166 (const outline)))))
3167 :version "20"
3168 :group 'ps-print-face)
3170 (defcustom ps-bold-faces
3171 (unless ps-print-color-p
3172 '(font-lock-function-name-face
3173 font-lock-builtin-face
3174 font-lock-variable-name-face
3175 font-lock-keyword-face
3176 font-lock-warning-face))
3177 "A list of the (non-bold) faces that should be printed in bold font.
3178 This applies to generating PostScript."
3179 :type '(repeat face)
3180 :version "20"
3181 :group 'ps-print-face)
3183 (defcustom ps-italic-faces
3184 (unless ps-print-color-p
3185 '(font-lock-variable-name-face
3186 font-lock-type-face
3187 font-lock-string-face
3188 font-lock-comment-face
3189 font-lock-warning-face))
3190 "A list of the (non-italic) faces that should be printed in italic font.
3191 This applies to generating PostScript."
3192 :type '(repeat face)
3193 :version "20"
3194 :group 'ps-print-face)
3196 (defcustom ps-underlined-faces
3197 (unless ps-print-color-p
3198 '(font-lock-function-name-face
3199 font-lock-constant-face
3200 font-lock-warning-face))
3201 "A list of the (non-underlined) faces that should be printed underlined.
3202 This applies to generating PostScript."
3203 :type '(repeat face)
3204 :version "20"
3205 :group 'ps-print-face)
3207 (defcustom ps-use-face-background nil
3208 "Specify if face background should be used.
3210 Valid values are:
3212 t always use face background color.
3213 nil never use face background color.
3214 (face...) list of faces whose background color will be used.
3216 Any other value will be treated as t."
3217 :type '(choice :menu-tag "Use Face Background"
3218 :tag "Use Face Background"
3219 (const :tag "Always Use Face Background" t)
3220 (const :tag "Never Use Face Background" nil)
3221 (repeat :menu-tag "Face Background List"
3222 :tag "Face Background List"
3223 face))
3224 :version "20"
3225 :group 'ps-print-face)
3227 (defcustom ps-left-header
3228 (list 'ps-get-buffer-name 'ps-header-dirpart)
3229 "The items to display (each on a line) on the left part of the page header.
3230 This applies to generating PostScript.
3232 The value should be a list of strings and symbols, each representing an entry
3233 in the PostScript array HeaderLinesLeft.
3235 Strings are inserted unchanged into the array; those representing
3236 PostScript string literals should be delimited with PostScript string
3237 delimiters `(' and `)'.
3239 For symbols with bound functions, the function is called and should return a
3240 string to be inserted into the array. For symbols with bound values, the value
3241 should be a string to be inserted into the array. In either case, function or
3242 variable, the string value has PostScript string delimiters added to it.
3244 If symbols are unbounded, they are silently ignored."
3245 :type '(repeat (choice :menu-tag "Left Header"
3246 :tag "Left Header"
3247 string symbol))
3248 :version "20"
3249 :group 'ps-print-headers)
3251 (defcustom ps-right-header
3252 (list "/pagenumberstring load"
3253 'ps-time-stamp-locale-default 'ps-time-stamp-hh:mm:ss)
3254 "The items to display (each on a line) on the right part of the page header.
3255 This applies to generating PostScript.
3257 See the variable `ps-left-header' for a description of the format of this
3258 variable.
3260 There are the following basic functions implemented:
3262 `ps-time-stamp-locale-default' Return the locale's \"preferred\" date
3263 as, for example, \"06/18/01\".
3265 `ps-time-stamp-hh:mm:ss' Return time as \"17:28:31\".
3267 `ps-time-stamp-mon-dd-yyyy' Return date as \"Jun 18 2001\".
3269 `ps-time-stamp-yyyy-mm-dd' Return date as \"2001-06-18\" (ISO
3270 date).
3272 `ps-time-stamp-iso8601' Alias for `ps-time-stamp-yyyy-mm-dd'.
3274 You can also create your own time stamp function by using `format-time-string'
3275 \(which see)."
3276 :type '(repeat (choice :menu-tag "Right Header"
3277 :tag "Right Header"
3278 string symbol))
3279 :version "20"
3280 :group 'ps-print-headers)
3282 (defcustom ps-left-footer
3283 (list 'ps-get-buffer-name 'ps-header-dirpart)
3284 "The items to display (each on a line) on the left part of the page footer.
3285 This applies to generating PostScript.
3287 The value should be a list of strings and symbols, each representing an entry
3288 in the PostScript array FooterLinesLeft.
3290 Strings are inserted unchanged into the array; those representing PostScript
3291 string literals should be delimited with PostScript string delimiters `(' and
3292 `)'.
3294 For symbols with bound functions, the function is called and should return a
3295 string to be inserted into the array. For symbols with bound values, the value
3296 should be a string to be inserted into the array. In either case, function or
3297 variable, the string value has PostScript string delimiters added to it.
3299 If symbols are unbounded, they are silently ignored."
3300 :type '(repeat (choice :menu-tag "Left Footer"
3301 :tag "Left Footer"
3302 string symbol))
3303 :version "21.1"
3304 :group 'ps-print-headers)
3306 (defcustom ps-right-footer
3307 (list "/pagenumberstring load"
3308 'ps-time-stamp-locale-default 'ps-time-stamp-hh:mm:ss)
3309 "The items to display (each on a line) on the right part of the page footer.
3310 This applies to generating PostScript.
3312 See the variable `ps-left-footer' for a description of the format of this
3313 variable.
3315 There are the following basic functions implemented:
3317 `ps-time-stamp-locale-default' Return the locale's \"preferred\" date
3318 as, for example, \"06/18/01\".
3320 `ps-time-stamp-hh:mm:ss' Return time as \"17:28:31\".
3322 `ps-time-stamp-mon-dd-yyyy' Return date as \"Jun 18 2001\".
3324 `ps-time-stamp-yyyy-mm-dd' Return date as \"2001-06-18\" (ISO
3325 date).
3327 `ps-time-stamp-iso8601' Alias for `ps-time-stamp-yyyy-mm-dd'.
3329 You can also create your own time stamp function by using `format-time-string'
3330 \(which see)."
3331 :type '(repeat (choice :menu-tag "Right Footer"
3332 :tag "Right Footer"
3333 string symbol))
3334 :version "21.1"
3335 :group 'ps-print-headers)
3337 (defcustom ps-razzle-dazzle t
3338 "Non-nil means report progress while formatting buffer."
3339 :type 'boolean
3340 :version "20"
3341 :group 'ps-print-miscellany)
3343 (defcustom ps-adobe-tag "%!PS-Adobe-3.0\n"
3344 "Contains the header line identifying the output as PostScript.
3345 By default, `ps-adobe-tag' contains the standard identifier. Some printers
3346 require slightly different versions of this line."
3347 :type 'string
3348 :version "20"
3349 :group 'ps-print-miscellany)
3351 (defcustom ps-build-face-reference t
3352 "Non-nil means build the reference face lists.
3354 ps-print sets this value to nil after it builds its internal reference lists of
3355 bold and italic faces. By setting its value back to t, you can force ps-print
3356 to rebuild the lists the next time you invoke one of the ...-with-faces
3357 commands.
3359 You should set this value back to t after you change the attributes of any
3360 face, or create new faces. Most users shouldn't have to worry about its
3361 setting, though."
3362 :type 'boolean
3363 :version "20"
3364 :group 'ps-print-face)
3366 (defcustom ps-always-build-face-reference nil
3367 "Non-nil means always rebuild the reference face lists.
3369 If this variable is non-nil, ps-print will rebuild its internal reference lists
3370 of bold and italic faces *every* time one of the ...-with-faces commands is
3371 called. Most users shouldn't need to set this variable."
3372 :type 'boolean
3373 :version "20"
3374 :group 'ps-print-face)
3376 (defcustom ps-banner-page-when-duplexing nil
3377 "Non-nil means the very first page is skipped.
3378 It's like the very first character of buffer (or region) is ^L (\\014)."
3379 :type 'boolean
3380 :version "20"
3381 :group 'ps-print-headers)
3383 (defcustom ps-postscript-code-directory
3384 (cond ((fboundp 'locate-data-directory) ; XEmacs
3385 (locate-data-directory "ps-print"))
3386 ((boundp 'data-directory) ; XEmacs and Emacs.
3387 data-directory)
3388 (t ; don't know what to do
3389 (error "`ps-postscript-code-directory' isn't set properly")))
3390 "Directory where it's located the PostScript prologue file used by ps-print.
3391 By default, this directory is the same as in the variable `data-directory'."
3392 :type 'directory
3393 :version "20"
3394 :group 'ps-print-miscellany)
3396 (defcustom ps-line-spacing 0
3397 "Specify line spacing, in points, for ordinary text.
3399 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE).
3401 See also `ps-paragraph-spacing' and `ps-paragraph-regexp'.
3403 To get all lines with some spacing set both `ps-line-spacing' and
3404 `ps-paragraph-spacing' variables."
3405 :type '(choice :menu-tag "Line Spacing For Ordinary Text"
3406 :tag "Line Spacing For Ordinary Text"
3407 (number :tag "Line Spacing")
3408 (cons :tag "Landscape/Portrait"
3409 (number :tag "Landscape Line Spacing")
3410 (number :tag "Portrait Line Spacing")))
3411 :version "21.1"
3412 :group 'ps-print-miscellany)
3414 (defcustom ps-paragraph-spacing 0
3415 "Specify paragraph spacing, in points, for ordinary text.
3417 Either a float or a cons of floats (LANDSCAPE-SIZE . PORTRAIT-SIZE).
3419 See also `ps-line-spacing' and `ps-paragraph-regexp'.
3421 To get all lines with some spacing set both `ps-line-spacing' and
3422 `ps-paragraph-spacing' variables."
3423 :type '(choice :menu-tag "Paragraph Spacing For Ordinary Text"
3424 :tag "Paragraph Spacing For Ordinary Text"
3425 (number :tag "Paragraph Spacing")
3426 (cons :tag "Landscape/Portrait"
3427 (number :tag "Landscape Paragraph Spacing")
3428 (number :tag "Portrait Paragraph Spacing")))
3429 :version "21.1"
3430 :group 'ps-print-miscellany)
3432 (defcustom ps-paragraph-regexp "[ \t]*$"
3433 "Specify paragraph delimiter.
3435 It should be a regexp or nil.
3437 See also `ps-paragraph-spacing'."
3438 :type '(choice :menu-tag "Paragraph Delimiter"
3439 (const :tag "No Delimiter" nil)
3440 (regexp :tag "Delimiter Regexp"))
3441 :version "21.1"
3442 :group 'ps-print-miscellany)
3444 (defcustom ps-begin-cut-regexp nil
3445 "Specify regexp which is start of a region to cut out when printing.
3447 As an example, variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' may be
3448 set to \"^Local Variables:\" and \"^End:\", respectively, in order to leave out
3449 some special printing instructions from the actual print. Special printing
3450 instructions may be appended to the end of the file just like any other
3451 buffer-local variables. See section \"Local Variables in Files\" on Emacs
3452 manual for more information.
3454 Variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' control together what
3455 actually gets printed. Both variables may be set to nil in which case no
3456 cutting occurs."
3457 :type '(choice (const :tag "No Delimiter" nil)
3458 (regexp :tag "Delimiter Regexp"))
3459 :version "21.1"
3460 :group 'ps-print-miscellany)
3462 (defcustom ps-end-cut-regexp nil
3463 "Specify regexp which is end of the region to cut out when printing.
3465 See `ps-begin-cut-regexp' for more information."
3466 :type '(choice (const :tag "No Delimiter" nil)
3467 (regexp :tag "Delimiter Regexp"))
3468 :version "21.1"
3469 :group 'ps-print-miscellany)
3472 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3473 ;; Selected Pages
3476 (defvar ps-last-selected-pages nil
3477 "Latest `ps-selected-pages' value.")
3480 (defun ps-restore-selected-pages ()
3481 "Restore latest `ps-selected-pages' value."
3482 (interactive)
3483 (setq ps-selected-pages ps-last-selected-pages))
3486 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3487 ;; Customization
3490 ;;;###autoload
3491 (defun ps-print-customize ()
3492 "Customization of ps-print group."
3493 (interactive)
3494 (customize-group 'ps-print))
3497 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3498 ;; User commands
3501 ;;;###autoload
3502 (defun ps-print-buffer (&optional filename)
3503 "Generate and print a PostScript image of the buffer.
3505 Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the
3506 user for a file name, and saves the PostScript image in that file instead of
3507 sending it to the printer.
3509 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3510 send the image to the printer. If FILENAME is a string, save the PostScript
3511 image in a file with that name."
3512 (interactive (list (ps-print-preprint current-prefix-arg)))
3513 (ps-print-without-faces (point-min) (point-max) filename))
3516 ;;;###autoload
3517 (defun ps-print-buffer-with-faces (&optional filename)
3518 "Generate and print a PostScript image of the buffer.
3519 Like `ps-print-buffer', but includes font, color, and underline information in
3520 the generated image. This command works only if you are using a window system,
3521 so it has a way to determine color values."
3522 (interactive (list (ps-print-preprint current-prefix-arg)))
3523 (ps-print-with-faces (point-min) (point-max) filename))
3526 ;;;###autoload
3527 (defun ps-print-region (from to &optional filename)
3528 "Generate and print a PostScript image of the region.
3529 Like `ps-print-buffer', but prints just the current region."
3530 (interactive (ps-print-preprint-region current-prefix-arg))
3531 (ps-print-without-faces from to filename t))
3534 ;;;###autoload
3535 (defun ps-print-region-with-faces (from to &optional filename)
3536 "Generate and print a PostScript image of the region.
3537 Like `ps-print-region', but includes font, color, and underline information in
3538 the generated image. This command works only if you are using a window system,
3539 so it has a way to determine color values."
3540 (interactive (ps-print-preprint-region current-prefix-arg))
3541 (ps-print-with-faces from to filename t))
3544 ;;;###autoload
3545 (defun ps-spool-buffer ()
3546 "Generate and spool a PostScript image of the buffer.
3547 Like `ps-print-buffer' except that the PostScript image is saved in a local
3548 buffer to be sent to the printer later.
3550 Use the command `ps-despool' to send the spooled images to the printer."
3551 (interactive)
3552 (ps-spool-without-faces (point-min) (point-max)))
3555 ;;;###autoload
3556 (defun ps-spool-buffer-with-faces ()
3557 "Generate and spool a PostScript image of the buffer.
3558 Like the command `ps-spool-buffer', but includes font, color, and underline
3559 information in the generated image. This command works only if you are using
3560 a window system, so it has a way to determine color values.
3562 Use the command `ps-despool' to send the spooled images to the printer."
3563 (interactive)
3564 (ps-spool-with-faces (point-min) (point-max)))
3567 ;;;###autoload
3568 (defun ps-spool-region (from to)
3569 "Generate a PostScript image of the region and spool locally.
3570 Like `ps-spool-buffer', but spools just the current region.
3572 Use the command `ps-despool' to send the spooled images to the printer."
3573 (interactive "r")
3574 (ps-spool-without-faces from to t))
3577 ;;;###autoload
3578 (defun ps-spool-region-with-faces (from to)
3579 "Generate a PostScript image of the region and spool locally.
3580 Like `ps-spool-region', but includes font, color, and underline information in
3581 the generated image. This command works only if you are using a window system,
3582 so it has a way to determine color values.
3584 Use the command `ps-despool' to send the spooled images to the printer."
3585 (interactive "r")
3586 (ps-spool-with-faces from to t))
3588 ;;;###autoload
3589 (defun ps-despool (&optional filename)
3590 "Send the spooled PostScript to the printer.
3592 Interactively, when you use a prefix argument (\\[universal-argument]), the command prompts the
3593 user for a file name, and saves the spooled PostScript image in that file
3594 instead of sending it to the printer.
3596 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3597 send the image to the printer. If FILENAME is a string, save the PostScript
3598 image in a file with that name."
3599 (interactive (list (ps-print-preprint current-prefix-arg)))
3600 (ps-do-despool filename))
3602 ;;;###autoload
3603 (defun ps-line-lengths ()
3604 "Display the correspondence between a line length and a font size.
3605 Done using the current ps-print setup.
3606 Try: pr -t file | awk \\='{printf \"%3d %s\n\", length($0), $0}\\=' | sort -r | head"
3607 (interactive)
3608 (ps-line-lengths-internal))
3610 ;;;###autoload
3611 (defun ps-nb-pages-buffer (nb-lines)
3612 "Display number of pages to print this buffer, for various font heights.
3613 The table depends on the current ps-print setup."
3614 (interactive (ps-count-lines-preprint (point-min) (point-max)))
3615 (ps-nb-pages nb-lines))
3617 ;;;###autoload
3618 (defun ps-nb-pages-region (nb-lines)
3619 "Display number of pages to print the region, for various font heights.
3620 The table depends on the current ps-print setup."
3621 (interactive (ps-count-lines-preprint (mark) (point)))
3622 (ps-nb-pages nb-lines))
3624 (defvar ps-prefix-quote nil
3625 "Used for `ps-print-quote' (which see).")
3627 ;;;###autoload
3628 (defun ps-setup ()
3629 "Return the current PostScript-generation setup."
3630 (let (ps-prefix-quote)
3631 (mapconcat
3632 #'ps-print-quote
3633 (list
3634 (concat "\n;;; (" (if (featurep 'xemacs) "XEmacs" "Emacs")
3635 ") ps-print version " ps-print-version "\n")
3636 ";; internal vars"
3637 (ps-comment-string "emacs-version " emacs-version)
3638 (ps-comment-string "lpr-windows-system" lpr-windows-system)
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)
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)
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)
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)
3669 '(23 . ps-use-face-background)
3671 '(28 . ps-print-control-characters)
3673 '(26 . ps-print-background-image)
3675 '(25 . ps-print-background-text)
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)
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)
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)
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)
3734 '(23 . ps-even-or-odd-pages)
3735 '(23 . ps-selected-pages)
3736 '(23 . ps-last-selected-pages)
3738 '(31 . ps-build-face-reference)
3739 '(31 . ps-always-build-face-reference)
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
3751 \;;; ps-print - end of settings\n")
3752 "\n")))
3755 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3756 ;; Utility functions and variables:
3759 (defun ps-print-quote (elt)
3760 "Quote ELT for printing (used for showing settings).
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:
3770 * If `ps-prefix-quote' is nil:
3771 \"(setq SYM-NAME SYM-VALUE\"
3772 |<------->|
3775 * If `ps-prefix-quote' is non-nil:
3776 \" SYM-NAME SYM-VALUE\"
3777 |<------->|
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
3792 (setq ps-prefix-quote t)
3793 "(setq ")
3795 (if (> col len)
3796 (make-string (- col len) ?\s)
3797 " ")
3798 (ps-value-string val))))
3799 (t "")
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))
3812 (format "%S" val))))
3815 (defun ps-comment-string (str value)
3816 "Return a comment string like \";; STR = VALUE\"."
3817 (format ";; %s = %s" str (ps-value-string value)))
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))))
3825 (defun ps-get (alist-sym key)
3826 "Return element from association list ALIST-SYM which car is `eq' to KEY."
3827 (declare (obsolete alist-get "25.1"))
3828 (assq key (symbol-value alist-sym)))
3831 (defun ps-put (alist-sym key value)
3832 "Store element (KEY . VALUE) into association list ALIST-SYM.
3833 If KEY already exists in ALIST-SYM, modify cdr to VALUE.
3834 It can be retrieved with `(ps-get ALIST-SYM KEY)'."
3835 (declare (obsolete "use (setf (alist-get ..) ..) instead" "25.1"))
3836 (let ((elt: (assq key (symbol-value alist-sym)))) ; to avoid name conflict
3837 (if elt:
3838 (setcdr elt: value)
3839 (setq elt: (cons key value))
3840 (set alist-sym (cons elt: (symbol-value alist-sym))))
3841 elt:))
3844 (defun ps-del (alist-sym key)
3845 "Delete by side effect element KEY from association list ALIST-SYM."
3846 (declare (obsolete "use (setf (alist-get k alist nil t) nil) instead" "25.1"))
3847 (let ((a:list: (symbol-value alist-sym)) ; to avoid name conflict
3848 old)
3849 (while a:list:
3850 (if (eq key (car (car a:list:)))
3851 (progn
3852 (if old
3853 (setcdr old (cdr a:list:))
3854 (set alist-sym (cdr a:list:)))
3855 (setq a:list: nil))
3856 (setq old a:list:
3857 a:list: (cdr a:list:)))))
3858 (symbol-value alist-sym))
3861 (defun ps-time-stamp-locale-default ()
3862 "Return the locale's \"preferred\" date as, for example, \"06/18/01\"."
3863 (format-time-string "%x"))
3866 (defun ps-time-stamp-mon-dd-yyyy ()
3867 "Return date as \"Jun 18 2001\"."
3868 (format-time-string "%b %d %Y"))
3871 (defun ps-time-stamp-yyyy-mm-dd ()
3872 "Return date as \"2001-06-18\" (ISO date)."
3873 (format-time-string "%Y-%m-%d"))
3876 ;; Alias for `ps-time-stamp-yyyy-mm-dd' (which see).
3877 (defalias 'ps-time-stamp-iso8601 'ps-time-stamp-yyyy-mm-dd)
3880 (defun ps-time-stamp-hh:mm:ss ()
3881 "Return time as \"17:28:31\"."
3882 (format-time-string "%T"))
3885 (defvar ps-print-color-scale 1.0)
3887 (defun ps-color-scale (color)
3888 ;; Scale 16-bit X-COLOR-VALUE to PostScript color value in [0, 1] interval.
3889 (mapcar #'(lambda (value) (/ value ps-print-color-scale))
3890 (ps-color-values color)))
3893 (defun ps-face-underlined-p (face)
3894 (or (face-underline-p face)
3895 (memq face ps-underlined-faces)))
3898 (defun ps-prologue-file (filenumber)
3899 "If prologue FILENUMBER exists and is readable, return contents as string.
3901 Note: No major/minor-mode is activated and no local variables are evaluated for
3902 FILENUMBER, but proper EOL-conversion and character interpretation is
3903 done!"
3904 (let ((filename (convert-standard-filename
3905 (expand-file-name (format "ps-prin%d.ps" filenumber)
3906 ps-postscript-code-directory))))
3907 (if (and (file-exists-p filename)
3908 (file-readable-p filename))
3909 (with-temp-buffer
3910 (insert-file-contents filename)
3911 (buffer-string))
3912 (error "ps-print PostScript prologue `%s' file was not found"
3913 filename))))
3916 (defvar ps-mark-code-directory nil)
3918 (defvar ps-print-prologue-0 ""
3919 "ps-print PostScript error handler.")
3921 (defvar ps-print-prologue-1 ""
3922 "ps-print PostScript prologue.")
3924 ;; Start Editing Here:
3926 (defvar ps-source-buffer nil)
3927 (defvar ps-spool-buffer-name "*PostScript*")
3928 (defvar ps-spool-buffer nil)
3930 (defvar ps-output-head nil)
3931 (defvar ps-output-tail nil)
3933 (defvar ps-page-postscript 0) ; page number
3934 (defvar ps-page-order 0) ; PostScript page counter
3935 (defvar ps-page-sheet 0) ; sheet counter
3936 (defvar ps-page-column 0) ; column counter
3937 (defvar ps-page-printed 0) ; total pages printed
3938 (defvar ps-page-n-up 0) ; n-up counter
3939 (defvar ps-lines-printed 0) ; total lines printed
3940 (defvar ps-showline-count 1) ; line number counter
3941 (defvar ps-first-page nil)
3942 (defvar ps-last-page nil)
3943 (defvar ps-print-page-p t)
3945 (defvar ps-control-or-escape-regexp nil)
3946 (defvar ps-n-up-on nil)
3948 (defvar ps-background-pages nil)
3949 (defvar ps-background-all-pages nil)
3950 (defvar ps-background-text-count 0)
3951 (defvar ps-background-image-count 0)
3953 (defvar ps-current-font 0)
3954 (defvar ps-default-foreground nil)
3955 (defvar ps-default-background nil)
3956 (defvar ps-default-color nil)
3957 (defvar ps-current-color nil)
3958 (defvar ps-current-bg nil)
3959 (defvar ps-foreground-list nil)
3961 (defvar ps-zebra-stripe-full-p nil)
3962 (defvar ps-razchunk 0)
3964 (defvar ps-color-p nil)
3966 ;; These values determine how much print-height to deduct when headers/footers
3967 ;; are turned on. This is a pretty clumsy way of handling it, but it'll do for
3968 ;; now.
3970 (defvar ps-header-pad 0
3971 "Vertical and horizontal space between the header frame and the text.
3972 This is in units of points (1/72 inch).")
3974 (defvar ps-footer-pad 0
3975 "Vertical and horizontal space between the footer frame and the text.
3976 This is in units of points (1/72 inch).")
3978 ;; Define accessors to the dimensions list.
3980 (defmacro ps-page-dimensions-get-width (dims) `(nth 0 ,dims))
3981 (defmacro ps-page-dimensions-get-height (dims) `(nth 1 ,dims))
3982 (defmacro ps-page-dimensions-get-media (dims) `(nth 2 ,dims))
3984 (defvar ps-landscape-page-height nil)
3986 (defvar ps-print-width nil)
3987 (defvar ps-print-height nil)
3989 (defvar ps-height-remaining nil)
3990 (defvar ps-width-remaining nil)
3992 (defvar ps-font-size-internal nil)
3993 (defvar ps-header-font-size-internal nil)
3994 (defvar ps-header-title-font-size-internal nil)
3995 (defvar ps-footer-font-size-internal nil)
3996 (defvar ps-line-spacing-internal nil)
3997 (defvar ps-paragraph-spacing-internal nil)
4000 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4001 ;; Internal Variables
4004 (defvar ps-black-white-faces-alist nil
4005 "Alist of symbolic faces used for black/white PostScript printers.
4006 An element of this list has the same form as `ps-print-face-extension-alist'
4007 \(which see).
4009 Don't change this list directly; instead,
4010 use `ps-extend-face' and `ps-extend-face-list'.
4011 See documentation for `ps-extend-face' for valid extension symbol.
4012 See also documentation for `ps-print-color-p'.")
4015 (defvar ps-print-face-extension-alist nil
4016 "Alist of symbolic faces *WITH* extension features (box, outline, etc).
4017 An element of this list has the following form:
4019 (FACE . [BITS FG BG])
4021 FACE is a symbol denoting a face name
4022 BITS is a bit vector, where each bit correspond
4023 to a feature (bold, underline, etc)
4024 (see documentation for `ps-print-face-map-alist')
4025 FG foreground color (string or nil)
4026 BG background color (string or nil)
4028 Don't change this list directly; instead,
4029 use `ps-extend-face' and `ps-extend-face-list'.
4030 See documentation for `ps-extend-face' for valid extension symbol.")
4033 (defvar ps-print-face-alist nil
4034 "Alist of symbolic faces *WITHOUT* extension features (box, outline, etc).
4036 An element of this list has the same form as an element of
4037 `ps-print-face-extension-alist'.
4039 Don't change this list directly; this list is used by `ps-face-attributes',
4040 `ps-map-face' and `ps-build-reference-face-lists'.")
4043 (defconst ps-print-face-map-alist
4044 '((bold . 1)
4045 (italic . 2)
4046 (underline . 4)
4047 (strikeout . 8)
4048 (overline . 16)
4049 (shadow . 32)
4050 (box . 64)
4051 (outline . 128))
4052 "Alist of all features and the corresponding bit mask.
4053 Each symbol correspond to one bit in a bit vector.")
4056 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4057 ;; Remapping Faces
4060 ;;;###autoload
4061 (defun ps-extend-face-list (face-extension-list &optional merge-p alist-sym)
4062 "Extend face in ALIST-SYM.
4064 If optional MERGE-P is non-nil, extensions in FACE-EXTENSION-LIST are merged
4065 with face extension in ALIST-SYM; otherwise, overrides.
4067 If optional ALIST-SYM is nil, `ps-print-face-extension-alist' is used;
4068 otherwise, it should be an alist symbol.
4070 The elements in FACE-EXTENSION-LIST are like those for `ps-extend-face'.
4072 See `ps-extend-face' for documentation."
4073 (while face-extension-list
4074 (ps-extend-face (car face-extension-list) merge-p alist-sym)
4075 (setq face-extension-list (cdr face-extension-list))))
4078 ;;;###autoload
4079 (defun ps-extend-face (face-extension &optional merge-p alist-sym)
4080 "Extend face in ALIST-SYM.
4082 If optional MERGE-P is non-nil, extensions in FACE-EXTENSION list are merged
4083 with face extensions in ALIST-SYM; otherwise, overrides.
4085 If optional ALIST-SYM is nil, `ps-print-face-extension-alist' is used;
4086 otherwise, it should be an alist symbol.
4088 The elements of FACE-EXTENSION list have the form:
4090 (FACE-NAME FOREGROUND BACKGROUND EXTENSION...)
4092 FACE-NAME is a face name symbol.
4094 FOREGROUND and BACKGROUND may be nil or a string that denotes the
4095 foreground and background colors respectively.
4097 EXTENSION is one of the following symbols:
4098 bold - use bold font.
4099 italic - use italic font.
4100 underline - put a line under text.
4101 strikeout - like underline, but the line is in middle of text.
4102 overline - like underline, but the line is over the text.
4103 shadow - text will have a shadow.
4104 box - text will be surrounded by a box.
4105 outline - print characters as hollow outlines.
4107 If EXTENSION is any other symbol, it is ignored."
4108 (or alist-sym
4109 (setq alist-sym 'ps-print-face-extension-alist))
4110 (let* ((background (nth 2 face-extension))
4111 (foreground (nth 1 face-extension))
4112 (face-name (nth 0 face-extension))
4113 (ps-face (cdr (assq face-name (symbol-value alist-sym))))
4114 (face-vector (or ps-face (vector 0 nil nil)))
4115 (face-bit (ps-extension-bit face-extension)))
4116 ;; extend face
4117 (aset face-vector 0 (if merge-p
4118 (logior (aref face-vector 0) face-bit)
4119 face-bit))
4120 (and (or (not merge-p) (and foreground (stringp foreground)))
4121 (aset face-vector 1 foreground))
4122 (and (or (not merge-p) (and background (stringp background)))
4123 (aset face-vector 2 background))
4124 ;; if face does not exist, insert it
4125 (or ps-face
4126 (set alist-sym (cons (cons face-name face-vector)
4127 (symbol-value alist-sym))))))
4130 (defun ps-extension-bit (face-extension)
4131 (let ((face-bit 0))
4132 ;; map valid symbol extension to bit vector
4133 (setq face-extension (cdr (cdr face-extension)))
4134 (while (setq face-extension (cdr face-extension))
4135 (setq face-bit (logior face-bit
4136 (or (cdr (assq (car face-extension)
4137 ps-print-face-map-alist))
4138 0))))
4139 face-bit))
4142 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4143 ;; Internal functions and variables
4146 (defun ps-message-log-max ()
4147 (and (not (string= (buffer-name) "*Messages*"))
4148 (boundp 'message-log-max)
4149 message-log-max))
4152 (defvar ps-print-hook nil)
4153 (defvar ps-print-begin-sheet-hook nil)
4154 (defvar ps-print-begin-page-hook nil)
4155 (defvar ps-print-begin-column-hook nil)
4158 (defun ps-print-without-faces (from to &optional filename region-p)
4159 (ps-spool-without-faces from to region-p)
4160 (ps-do-despool filename))
4163 (defun ps-spool-without-faces (from to &optional region-p)
4164 (let ((message-log-max (ps-message-log-max))) ; to print *Messages* buffer
4165 (run-hooks 'ps-print-hook)
4166 (ps-printing-region region-p from to)
4167 (ps-generate (current-buffer) from to 'ps-generate-postscript)))
4170 (defun ps-print-with-faces (from to &optional filename region-p)
4171 (ps-spool-with-faces from to region-p)
4172 (ps-do-despool filename))
4175 (defun ps-spool-with-faces (from to &optional region-p)
4176 (let ((message-log-max (ps-message-log-max))) ; to print *Messages* buffer
4177 (run-hooks 'ps-print-hook)
4178 (ps-printing-region region-p from to)
4179 (ps-generate (current-buffer) from to 'ps-generate-postscript-with-faces)))
4182 (defun ps-count-lines-preprint (from to)
4183 (or (and from to)
4184 (error "The mark is not set now"))
4185 (let ((message-log-max (ps-message-log-max))) ; to count lines of *Messages*
4186 (list (count-lines from to))))
4189 (defun ps-count-lines (from to)
4190 (+ (count-lines from to)
4191 (save-excursion
4192 (goto-char to)
4193 (if (= (current-column) 0) 1 0))))
4196 (defvar ps-printing-region nil
4197 "Variable used to indicate the region that ps-print is printing.
4198 It is a cons, the car of which is the line number where the region begins, and
4199 its cdr is the total number of lines in the buffer. Formatting functions can
4200 use this information to print the original line number (and not the number of
4201 lines printed), and to indicate in the header that the printout is of a partial
4202 file.")
4205 (defvar ps-printing-region-p nil
4206 "Non-nil means ps-print is printing a region.")
4209 (defun ps-printing-region (region-p from to)
4210 (setq ps-printing-region-p region-p
4211 ps-printing-region
4212 (cons (if region-p
4213 (ps-count-lines (point-min) (min from to))
4215 (ps-count-lines (point-min) (point-max)))))
4218 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4219 ;; Internal functions
4222 (defsubst ps-font-alist (font-sym)
4223 (get font-sym 'fonts))
4225 (defun ps-font (font-sym font-type)
4226 "Font family name for text of `font-type', when generating PostScript."
4227 (let* ((font-list (ps-font-alist font-sym))
4228 (normal-font (cdr (assq 'normal font-list))))
4229 (while (and font-list (not (eq font-type (car (car font-list)))))
4230 (setq font-list (cdr font-list)))
4231 (or (cdr (car font-list)) normal-font)))
4233 (defsubst ps-fonts (font-sym)
4234 (mapcar 'cdr (ps-font-alist font-sym)))
4236 (defsubst ps-font-number (font-sym font-type)
4237 (or (ps-alist-position font-type (ps-font-alist font-sym))
4240 (defsubst ps-line-height (font-sym)
4241 "The height of a line, for generating PostScript.
4242 This is the value that ps-print uses to determine the height,
4243 y-dimension, of the lines of text it has printed, and thus affects the
4244 point at which page-breaks are placed.
4245 The line-height is *not* the same as the point size of the font."
4246 (get font-sym 'line-height))
4248 (defsubst ps-title-line-height (font-sym)
4249 "The height of a `title' line, for generating PostScript.
4250 This is the value that ps-print uses to determine the height,
4251 y-dimension, of the lines of text it has printed, and thus affects the
4252 point at which page-breaks are placed.
4253 The title-line-height is *not* the same as the point size of the font."
4254 (get font-sym 'title-line-height))
4256 (defsubst ps-space-width (font-sym)
4257 "The width of a space character, for generating PostScript.
4258 This value is used in expanding tab characters."
4259 (get font-sym 'space-width))
4261 (defsubst ps-avg-char-width (font-sym)
4262 "The average width, in points, of a character, for generating PostScript.
4263 This is the value that ps-print uses to determine the length,
4264 x-dimension, of the text it has printed, and thus affects the point at
4265 which long lines wrap around."
4266 (get font-sym 'avg-char-width))
4268 (defun ps-line-lengths-internal ()
4269 "Display the correspondence between a line length and a font size.
4270 Done using the current ps-print setup.
4271 Try: pr -t file | awk \\='{printf \"%3d %s\n\", length($0), $0}\\=' | sort -r | head"
4272 (let* ((ps-font-size-internal
4273 (or ps-font-size-internal
4274 (ps-get-font-size 'ps-font-size)))
4275 (ps-header-font-size-internal
4276 (or ps-header-font-size-internal
4277 (ps-get-font-size 'ps-header-font-size)))
4278 (ps-footer-font-size-internal
4279 (or ps-footer-font-size-internal
4280 (ps-get-font-size 'ps-footer-font-size)))
4281 (ps-header-title-font-size-internal
4282 (or ps-header-title-font-size-internal
4283 (ps-get-font-size 'ps-header-title-font-size)))
4284 (buf (get-buffer-create "*Line-lengths*"))
4285 (ifs ps-font-size-internal) ; initial font size
4286 (print-width (progn (ps-get-page-dimensions)
4287 ps-print-width))
4288 (icw (ps-avg-char-width 'ps-font-for-text)) ; initial character width
4289 (ps-setup (ps-setup)) ; setup for the current buffer
4290 (fs-min 5) ; minimum font size
4291 cw-min ; minimum character width
4292 nb-cpl-max ; maximum nb of characters per line
4293 (fs-max 14) ; maximum font size
4294 cw-max ; maximum character width
4295 nb-cpl-min ; minimum nb of characters per line
4296 fs ; current font size
4297 cw ; current character width
4298 nb-cpl ; current nb of characters per line
4300 (setq cw-min (/ (* icw fs-min) ifs)
4301 nb-cpl-max (floor (/ print-width cw-min))
4302 cw-max (/ (* icw fs-max) ifs)
4303 nb-cpl-min (floor (/ print-width cw-max))
4304 nb-cpl nb-cpl-min)
4305 (set-buffer buf)
4306 (goto-char (point-max))
4307 (or (bobp) (insert "\n" (make-string 75 ?\;) "\n"))
4308 (insert ps-setup
4309 "\nnb char per line / font size\n")
4310 (while (<= nb-cpl nb-cpl-max)
4311 (setq cw (/ print-width (float nb-cpl))
4312 fs (/ (* ifs cw) icw))
4313 (insert (format "%16d %s\n" nb-cpl fs))
4314 (setq nb-cpl (1+ nb-cpl)))
4315 (insert "\n")
4316 (display-buffer buf 'not-this-window)))
4318 (defun ps-nb-pages (nb-lines)
4319 "Display correspondence between font size and the number of pages.
4320 The correspondence is based on having NB-LINES lines of text,
4321 and on the current ps-print setup."
4322 (let* ((ps-font-size-internal
4323 (or ps-font-size-internal
4324 (ps-get-font-size 'ps-font-size)))
4325 (ps-header-font-size-internal
4326 (or ps-header-font-size-internal
4327 (ps-get-font-size 'ps-header-font-size)))
4328 (ps-footer-font-size-internal
4329 (or ps-footer-font-size-internal
4330 (ps-get-font-size 'ps-footer-font-size)))
4331 (ps-header-title-font-size-internal
4332 (or ps-header-title-font-size-internal
4333 (ps-get-font-size 'ps-header-title-font-size)))
4334 (ps-line-spacing-internal
4335 (or ps-line-spacing-internal
4336 (ps-get-size ps-line-spacing "line spacing")))
4337 (buf (get-buffer-create "*Nb-Pages*"))
4338 (ils ps-line-spacing-internal) ; initial line spacing
4339 (ifs ps-font-size-internal) ; initial font size
4340 (page-height (progn (ps-get-page-dimensions)
4341 ps-print-height))
4342 (ilh (ps-line-height 'ps-font-for-text)) ; initial line height
4343 (ps-setup (ps-setup)) ; setup for the current buffer
4344 (fs-min 4) ; minimum font size
4345 lh-min ; minimum line height
4346 nb-lpp-max ; maximum nb of lines per page
4347 nb-page-min ; minimum nb of pages
4348 (fs-max 14) ; maximum font size
4349 lh-max ; maximum line height
4350 nb-lpp-min ; minimum nb of lines per page
4351 nb-page-max ; maximum nb of pages
4352 fs ; current font size
4353 lh ; current line height
4354 nb-lpp ; current nb of lines per page
4355 nb-page ; current nb of pages
4357 (setq lh-min (/ (- (* (+ ilh ils) fs-min) ils) ifs)
4358 nb-lpp-max (floor (/ page-height lh-min))
4359 nb-page-min (ceiling (/ (float nb-lines) nb-lpp-max))
4360 lh-max (/ (- (* (+ ilh ils) fs-max) ils) ifs)
4361 nb-lpp-min (floor (/ page-height lh-max))
4362 nb-page-max (ceiling (/ (float nb-lines) nb-lpp-min))
4363 nb-page nb-page-min)
4364 (set-buffer buf)
4365 (goto-char (point-max))
4366 (or (bobp) (insert "\n" (make-string 75 ?\;) "\n"))
4367 (insert ps-setup
4368 (format "\nThere are %d lines.\n\n" nb-lines)
4369 "nb page / font size\n")
4370 (while (<= nb-page nb-page-max)
4371 (setq nb-lpp (ceiling (/ nb-lines (float nb-page)))
4372 lh (/ page-height nb-lpp)
4373 fs (/ (* ifs lh) ilh))
4374 (insert (format "%7d %s\n" nb-page fs))
4375 (setq nb-page (1+ nb-page)))
4376 (insert "\n")
4377 (display-buffer buf 'not-this-window)))
4379 ;; macros used in `ps-select-font'
4380 (defmacro ps-lookup (key) `(cdr (assq ,key font-entry)))
4381 (defmacro ps-size-scale (key) `(/ (* (ps-lookup ,key) font-size) size))
4383 (defun ps-select-font (font-family sym font-size title-font-size)
4384 (let ((font-entry (cdr (assq font-family ps-font-info-database))))
4385 (or font-entry
4386 (error "Don't have data to scale font %s. Known fonts families are %s"
4387 font-family
4388 (mapcar 'car ps-font-info-database)))
4389 (let ((size (ps-lookup 'size)))
4390 (put sym 'fonts (ps-lookup 'fonts))
4391 (put sym 'space-width (ps-size-scale 'space-width))
4392 (put sym 'avg-char-width (ps-size-scale 'avg-char-width))
4393 (put sym 'line-height (ps-size-scale 'line-height))
4394 (put sym 'title-line-height
4395 (/ (* (ps-lookup 'line-height) title-font-size) size)))))
4397 (defun ps-get-page-dimensions ()
4398 (let ((page-dimensions (cdr (assq ps-paper-type ps-page-dimensions-database)))
4399 page-width page-height)
4400 (cond
4401 ((null page-dimensions)
4402 (error "`ps-paper-type' must be one of:\n%s"
4403 (mapcar 'car ps-page-dimensions-database)))
4404 ((< ps-number-of-columns 1)
4405 (error "The number of columns %d should be positive"
4406 ps-number-of-columns)))
4408 (ps-select-font ps-font-family 'ps-font-for-text
4409 ps-font-size-internal ps-font-size-internal)
4410 (ps-select-font ps-header-font-family 'ps-font-for-header
4411 ps-header-font-size-internal
4412 ps-header-title-font-size-internal)
4413 (ps-select-font ps-footer-font-family 'ps-font-for-footer
4414 ps-footer-font-size-internal ps-footer-font-size-internal)
4416 (setq page-width (ps-page-dimensions-get-width page-dimensions)
4417 page-height (ps-page-dimensions-get-height page-dimensions))
4419 ;; Landscape mode
4420 (if ps-landscape-mode
4421 ;; exchange width and height
4422 (setq page-width (prog1 page-height (setq page-height page-width))))
4424 ;; It is used to get the lower right corner (only in landscape mode)
4425 (setq ps-landscape-page-height page-height)
4427 ;; | lm | text | ic | text | ic | text | rm |
4428 ;; page-width == lm + n * pw + (n - 1) * ic + rm
4429 ;; => pw == (page-width - lm -rm - (n - 1) * ic) / n
4430 (setq ps-print-width (/ (- page-width
4431 ps-left-margin ps-right-margin
4432 (* (1- ps-number-of-columns) ps-inter-column))
4433 ps-number-of-columns))
4434 (if (<= ps-print-width 0)
4435 (error "Bad horizontal layout:
4436 page-width == %s
4437 ps-left-margin == %s
4438 ps-right-margin == %s
4439 ps-inter-column == %s
4440 ps-number-of-columns == %s
4441 | lm | text | ic | text | ic | text | rm |
4442 page-width == lm + n * print-width + (n - 1) * ic + rm
4443 => print-width == %d !"
4444 page-width
4445 ps-left-margin
4446 ps-right-margin
4447 ps-inter-column
4448 ps-number-of-columns
4449 ps-print-width))
4451 (setq ps-print-height
4452 (- page-height ps-bottom-margin ps-top-margin))
4453 (if (<= ps-print-height 0)
4454 (error "Bad vertical layout:
4455 ps-top-margin == %s
4456 ps-bottom-margin == %s
4457 page-height == bm + print-height + tm
4458 => print-height == %d !"
4459 ps-top-margin
4460 ps-bottom-margin
4461 ps-print-height))
4462 ;; If headers are turned on, deduct the height of the header from the print
4463 ;; height.
4464 (if ps-print-header
4465 (setq ps-header-pad (* ps-header-line-pad
4466 (ps-title-line-height 'ps-font-for-header))
4467 ps-print-height (- ps-print-height
4468 ps-header-offset
4469 ps-header-pad
4470 (ps-title-line-height 'ps-font-for-header)
4471 (* (ps-line-height 'ps-font-for-header)
4472 (1- ps-header-lines))
4473 ps-header-pad)))
4474 (if (<= ps-print-height 0)
4475 (error "Bad vertical layout (header):
4476 ps-top-margin == %s
4477 ps-bottom-margin == %s
4478 ps-header-offset == %s
4479 ps-header-pad == %s
4480 header-height == %s
4481 page-height == bm + print-height + tm - ho - hh
4482 => print-height == %d !"
4483 ps-top-margin
4484 ps-bottom-margin
4485 ps-header-offset
4486 ps-header-pad
4487 (+ ps-header-pad
4488 (ps-title-line-height 'ps-font-for-header)
4489 (* (ps-line-height 'ps-font-for-header)
4490 (1- ps-header-lines))
4491 ps-header-pad)
4492 ps-print-height))
4493 ;; If footers are turned on, deduct the height of the footer from the print
4494 ;; height.
4495 (if ps-print-footer
4496 (setq ps-footer-pad (* ps-footer-line-pad
4497 (ps-title-line-height 'ps-font-for-footer))
4498 ps-print-height (- ps-print-height
4499 ps-footer-offset
4500 ps-footer-pad
4501 (* (ps-line-height 'ps-font-for-footer)
4502 (1- ps-footer-lines))
4503 ps-footer-pad)))
4504 (if (<= ps-print-height 0)
4505 (error "Bad vertical layout (footer):
4506 ps-top-margin == %s
4507 ps-bottom-margin == %s
4508 ps-footer-offset == %s
4509 ps-footer-pad == %s
4510 footer-height == %s
4511 page-height == bm + print-height + tm - fo - fh
4512 => print-height == %d !"
4513 ps-top-margin
4514 ps-bottom-margin
4515 ps-footer-offset
4516 ps-footer-pad
4517 (+ ps-footer-pad
4518 (* (ps-line-height 'ps-font-for-footer)
4519 (1- ps-footer-lines))
4520 ps-footer-pad)
4521 ps-print-height))
4522 ;; ps-zebra-stripe-follow is `full' or `full-follow'
4523 (if ps-zebra-stripe-full-p
4524 (let* ((line-height (ps-line-height 'ps-font-for-text))
4525 (zebra (* (+ line-height ps-line-spacing-internal)
4526 ps-zebra-stripe-height)))
4527 (setq ps-print-height (- (* (floor ps-print-height zebra) zebra)
4528 line-height))
4529 (if (<= ps-print-height 0)
4530 (error "Bad vertical layout (full zebra stripe follow):
4531 ps-zebra-stripe-follow == %s
4532 ps-zebra-stripe-height == %s
4533 font-text-height == %s
4534 line-spacing == %s
4535 page-height == ((floor print-height ((th + ls) * zh)) * ((th + ls) * zh)) - th
4536 => print-height == %d !"
4537 ps-zebra-stripe-follow
4538 ps-zebra-stripe-height
4539 (ps-line-height 'ps-font-for-text)
4540 ps-line-spacing-internal
4541 ps-print-height))))))
4544 (defun ps-print-preprint-region (prefix)
4545 (or (ps-mark-active-p)
4546 (error "The mark is not set now"))
4547 (list (point) (mark) (ps-print-preprint prefix)))
4550 (defun ps-print-preprint (prefix)
4551 (and prefix
4552 (or (numberp prefix)
4553 (listp prefix))
4554 (let* ((name (concat (file-name-nondirectory (or (buffer-file-name)
4555 (buffer-name)))
4556 ".ps"))
4557 (prompt (format "Save PostScript to file (default %s): " name))
4558 (res (read-file-name prompt default-directory name nil)))
4559 (while (cond ((file-directory-p res)
4560 (ding)
4561 (setq prompt "It's a directory"))
4562 ((not (file-writable-p res))
4563 (ding)
4564 (setq prompt "File is unwritable"))
4565 ((file-exists-p res)
4566 (setq prompt "File exists")
4567 (not (y-or-n-p (format-message
4568 "File `%s' exists; overwrite? " res))))
4569 (t nil))
4570 (setq res (read-file-name
4571 (format "%s; save PostScript to file: " prompt)
4572 (file-name-directory res) nil nil
4573 (file-name-nondirectory res))))
4574 (if (file-directory-p res)
4575 (expand-file-name name (file-name-as-directory res))
4576 res))))
4578 ;; The following functions implement a simple list-buffering scheme so
4579 ;; that ps-print doesn't have to repeatedly switch between buffers
4580 ;; while spooling. The functions `ps-output' and `ps-output-string' build
4581 ;; up the lists; the function `ps-flush-output' takes the lists and
4582 ;; insert its contents into the spool buffer (*PostScript*).
4584 (defvar ps-string-escape-codes
4585 (let ((table (make-vector 256 nil))
4586 (char ?\000))
4587 ;; control characters
4588 (while (<= char ?\037)
4589 (aset table char (format "\\%03o" char))
4590 (setq char (1+ char)))
4591 ;; printable characters
4592 (while (< char ?\177)
4593 (aset table char (format "%c" char))
4594 (setq char (1+ char)))
4595 ;; DEL and 8-bit characters
4596 (while (<= char ?\377)
4597 (aset table char (format "\\%o" char))
4598 (setq char (1+ char)))
4599 ;; Override ASCII formatting characters with named escape code:
4600 (aset table ?\n "\\n") ; [NL] linefeed
4601 (aset table ?\r "\\r") ; [CR] carriage return
4602 (aset table ?\t "\\t") ; [HT] horizontal tab
4603 (aset table ?\b "\\b") ; [BS] backspace
4604 (aset table ?\f "\\f") ; [NP] form feed
4605 ;; Escape PostScript escape and string delimiter characters:
4606 (aset table ?\\ "\\\\")
4607 (aset table ?\( "\\(")
4608 (aset table ?\) "\\)")
4609 table)
4610 "Vector used to map characters to PostScript string escape codes.")
4612 (defsubst ps-output-string-prim (string)
4613 (insert "(") ;insert start-string delimiter
4614 (save-excursion ;insert string
4615 (insert (string-as-unibyte string)))
4616 ;; Find and quote special characters as necessary for PS
4617 ;; This skips everything except control chars, non-ASCII chars, (, ) and \.
4618 (while (progn (skip-chars-forward " -'*-[]-~") (not (eobp)))
4619 (let ((special (following-char)))
4620 (delete-char 1)
4621 (insert
4622 (if (and (<= 0 special) (<= special 255))
4623 (aref ps-string-escape-codes special)
4624 ;; insert hexadecimal representation if character code is out of range
4625 (format "\\%04X" special)
4626 ))))
4627 (goto-char (point-max))
4628 (insert ")")) ;insert end-string delimiter
4630 (defsubst ps-init-output-queue ()
4631 (setq ps-output-head (list "")
4632 ps-output-tail ps-output-head))
4635 (defun ps-selected-pages ()
4636 (while (progn
4637 (setq ps-first-page (car (car ps-selected-pages))
4638 ps-last-page (cdr (car ps-selected-pages))
4639 ps-selected-pages (cdr ps-selected-pages))
4640 (and ps-selected-pages
4641 (< ps-last-page ps-page-postscript)))))
4644 (defsubst ps-print-page-p ()
4645 (setq ps-print-page-p
4646 (and (cond ((null ps-first-page))
4647 ((<= ps-page-postscript ps-last-page)
4648 (<= ps-first-page ps-page-postscript))
4649 (ps-selected-pages
4650 (ps-selected-pages)
4651 (and (<= ps-first-page ps-page-postscript)
4652 (<= ps-page-postscript ps-last-page)))
4654 nil))
4655 (cond ((eq ps-even-or-odd-pages 'even-page)
4656 (= (logand ps-page-postscript 1) 0))
4657 ((eq ps-even-or-odd-pages 'odd-page)
4658 (= (logand ps-page-postscript 1) 1))
4660 ))))
4663 (defsubst ps-print-sheet-p ()
4664 (setq ps-print-page-p
4665 (cond ((eq ps-even-or-odd-pages 'even-sheet)
4666 (= (logand ps-page-sheet 1) 0))
4667 ((eq ps-even-or-odd-pages 'odd-sheet)
4668 (= (logand ps-page-sheet 1) 1))
4673 (defun ps-output (&rest args)
4674 (when ps-print-page-p
4675 (setcdr ps-output-tail args)
4676 (while (cdr ps-output-tail)
4677 (setq ps-output-tail (cdr ps-output-tail)))))
4679 (defun ps-output-string (string)
4680 (ps-output t string))
4682 ;; Output strings in the list ARGS in the PostScript prologue part.
4683 (defun ps-output-prologue (args)
4684 (ps-output 'prologue (if (stringp args) (list args) args)))
4686 (defun ps-flush-output ()
4687 (with-current-buffer ps-spool-buffer
4688 (goto-char (point-max))
4689 (while ps-output-head
4690 (let ((it (car ps-output-head)))
4691 (cond
4692 ((eq t it)
4693 (setq ps-output-head (cdr ps-output-head))
4694 (ps-output-string-prim (car ps-output-head)))
4695 ((eq 'prologue it)
4696 (setq ps-output-head (cdr ps-output-head))
4697 (save-excursion
4698 (search-backward "\nBeginDoc")
4699 (forward-char 1)
4700 (apply 'insert (car ps-output-head))))
4702 (insert it))))
4703 (setq ps-output-head (cdr ps-output-head))))
4704 (ps-init-output-queue))
4706 (defun ps-insert-file (fname)
4707 (ps-flush-output)
4708 (with-current-buffer ps-spool-buffer
4709 (goto-char (point-max))
4710 (insert-file-contents fname)))
4712 ;; These functions insert the arrays that define the contents of the headers.
4714 (defvar ps-encode-header-string-function nil)
4716 (defun ps-generate-header-line (fonttag &optional content)
4717 (ps-output " [" fonttag " ")
4718 (cond
4719 ;; Literal strings should be output as is -- the string must contain its own
4720 ;; PS string delimiters, '(' and ')', if necessary.
4721 ((stringp content)
4722 (if (functionp ps-encode-header-string-function)
4723 (dolist (elem (funcall ps-encode-header-string-function
4724 content fonttag))
4725 (ps-output elem))
4726 (ps-output content)))
4728 ;; Functions are called -- they should return strings; they will be inserted
4729 ;; as strings and the PS string delimiters added.
4730 ((functionp content)
4731 (if (functionp ps-encode-header-string-function)
4732 (dolist (l (funcall ps-encode-header-string-function
4733 (funcall content) fonttag))
4734 (ps-output-string l))
4735 (ps-output-string (funcall content))))
4737 ;; Variables will have their contents inserted. They should contain
4738 ;; strings, and will be inserted as strings.
4739 ((and (symbolp content) (boundp content))
4740 (if (fboundp ps-encode-header-string-function)
4741 (dolist (l (funcall ps-encode-header-string-function
4742 (symbol-value content) fonttag))
4743 (ps-output-string l))
4744 (ps-output-string (symbol-value content))))
4746 ;; Anything else will get turned into an empty string.
4748 (ps-output-string "")))
4749 (ps-output "]\n"))
4751 (defun ps-generate-header (name fonttag0 fonttag1 contents)
4752 (ps-output "/" name "[\n")
4753 (and contents (> ps-header-lines 0)
4754 (let ((count 1))
4755 (ps-generate-header-line fonttag0 (car contents))
4756 (while (and (< count ps-header-lines)
4757 (setq contents (cdr contents)))
4758 (ps-generate-header-line fonttag1 (car contents))
4759 (setq count (1+ count)))))
4760 (ps-output "]def\n"))
4763 (defun ps-output-boolean (name bool)
4764 (ps-output (format "/%s %s def\n" name (if bool "true" "false"))))
4767 (defun ps-output-frame-properties (name alist)
4768 (ps-output "/" name " ["
4769 (ps-format-color (cdr (assq 'fore-color alist)) 0.0)
4770 (ps-format-color (cdr (assq 'back-color alist)) 0.9)
4771 (ps-float-format (or (cdr (assq 'border-width alist)) 0.4))
4772 (ps-format-color (cdr (assq 'border-color alist)) 0.0)
4773 (ps-format-color (cdr (assq 'shadow-color alist)) 0.0)
4774 "]def\n"))
4777 (defun ps-background-pages (page-list func)
4778 (if page-list
4779 (mapcar
4780 #'(lambda (pages)
4781 (let ((start (if (consp pages) (car pages) pages))
4782 (end (if (consp pages) (cdr pages) pages)))
4783 (and (integerp start) (integerp end) (<= start end)
4784 (add-to-list 'ps-background-pages (vector start end func)))))
4785 page-list)
4786 (setq ps-background-all-pages (cons func ps-background-all-pages))))
4789 (defconst ps-boundingbox-re
4790 "^%%BoundingBox:\
4791 \\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)")
4794 (defun ps-get-boundingbox ()
4795 (with-current-buffer ps-spool-buffer
4796 (save-excursion
4797 (if (re-search-forward ps-boundingbox-re nil t)
4798 (vector (string-to-number ; lower x
4799 (buffer-substring (match-beginning 1) (match-end 1)))
4800 (string-to-number ; lower y
4801 (buffer-substring (match-beginning 2) (match-end 2)))
4802 (string-to-number ; upper x
4803 (buffer-substring (match-beginning 3) (match-end 3)))
4804 (string-to-number ; upper y
4805 (buffer-substring (match-beginning 4) (match-end 4))))
4806 (vector 0 0 0 0)))))
4809 (defun ps-float-format (value &optional default)
4810 (let ((literal (or value default)))
4811 (cond ((null literal)
4812 " ")
4813 ((numberp literal)
4814 (format ps-float-format (* literal 1.0))) ; force float number
4816 (format "%s " literal))
4820 (defun ps-background-text ()
4821 (mapcar
4822 #'(lambda (text)
4823 (setq ps-background-text-count (1+ ps-background-text-count))
4824 (ps-output (format "/ShowBackText-%d{\n" ps-background-text-count))
4825 (ps-output-string (nth 0 text)) ; text
4826 (ps-output
4827 "\n"
4828 (ps-float-format (nth 4 text) 200.0) ; font size
4829 (format "/%s " (or (nth 3 text) "Times-Roman")) ; font name
4830 (ps-float-format (nth 6 text)
4831 "PrintHeight PrintPageWidth atan") ; rotation
4832 (ps-float-format (nth 5 text) 0.85) ; gray
4833 (ps-float-format (nth 1 text) "0") ; x position
4834 (ps-float-format (nth 2 text) "0") ; y position
4835 "\nShowBackText}def\n")
4836 (ps-background-pages (nthcdr 7 text) ; page list
4837 (format "ShowBackText-%d\n"
4838 ps-background-text-count)))
4839 ps-print-background-text))
4842 (defun ps-background-image ()
4843 (mapcar
4844 #'(lambda (image)
4845 (let ((image-file (expand-file-name (nth 0 image))))
4846 (when (file-readable-p image-file)
4847 (setq ps-background-image-count (1+ ps-background-image-count))
4848 (ps-output
4849 (format "/ShowBackImage-%d{\n--back-- "
4850 ps-background-image-count)
4851 (ps-float-format (nth 5 image) 0.0) ; rotation
4852 (ps-float-format (nth 3 image) 1.0) ; x scale
4853 (ps-float-format (nth 4 image) 1.0) ; y scale
4854 (ps-float-format (nth 1 image) ; x position
4855 "PrintPageWidth 2 div")
4856 (ps-float-format (nth 2 image) ; y position
4857 "PrintHeight 2 div BottomMargin add")
4858 "\nBeginBackImage\n")
4859 (ps-insert-file image-file)
4860 ;; coordinate adjustment to center image
4861 ;; around x and y position
4862 (let ((box (ps-get-boundingbox)))
4863 (with-current-buffer ps-spool-buffer
4864 (save-excursion
4865 (if (re-search-backward "^--back--" nil t)
4866 (replace-match
4867 (format "%s %s"
4868 (ps-float-format
4869 (- (+ (/ (- (aref box 2) (aref box 0)) 2.0)
4870 (aref box 0))))
4871 (ps-float-format
4872 (- (+ (/ (- (aref box 3) (aref box 1)) 2.0)
4873 (aref box 1)))))
4874 t)))))
4875 (ps-output "\nEndBackImage}def\n")
4876 (ps-background-pages (nthcdr 6 image) ; page list
4877 (format "ShowBackImage-%d\n"
4878 ps-background-image-count)))))
4879 ps-print-background-image))
4882 (defun ps-background (page-number)
4883 (let (has-local-background)
4884 (mapc #'(lambda (range)
4885 (and (<= (aref range 0) page-number)
4886 (<= page-number (aref range 1))
4887 (if has-local-background
4888 (ps-output (aref range 2))
4889 (setq has-local-background t)
4890 (ps-output "/printLocalBackground{\n"
4891 (aref range 2)))))
4892 ps-background-pages)
4893 (and has-local-background (ps-output "}def\n"))))
4896 ;; Return a list of the distinct elements of LIST.
4897 ;; Elements are compared with `equal'.
4898 (defun ps-remove-duplicates (list)
4899 (let (new (tail list))
4900 (while tail
4901 (or (member (car tail) new)
4902 (setq new (cons (car tail) new)))
4903 (setq tail (cdr tail)))
4904 (nreverse new)))
4907 ;; Find the first occurrence of ITEM in LIST.
4908 ;; Return the index of the matching item, or nil if not found.
4909 ;; Elements are compared with `eq'.
4910 (defun ps-alist-position (item list)
4911 (let ((tail list) (index 0) found)
4912 (while tail
4913 (if (setq found (eq (car (car tail)) item))
4914 (setq tail nil)
4915 (setq index (1+ index)
4916 tail (cdr tail))))
4917 (and found index)))
4920 (defconst ps-n-up-database
4921 '((a4
4922 (1 nil 1 1 0)
4923 (2 t 1 2 0)
4924 (4 nil 2 2 0)
4925 (6 t 2 3 1)
4926 (8 t 2 4 0)
4927 (9 nil 3 3 0)
4928 (12 t 3 4 2)
4929 (16 nil 4 4 0)
4930 (18 t 3 6 0)
4931 (20 nil 5 4 1)
4932 (25 nil 5 5 0)
4933 (30 nil 6 5 1)
4934 (32 t 4 8 0)
4935 (36 nil 6 6 0)
4936 (42 nil 7 6 1)
4937 (49 nil 7 7 0)
4938 (50 t 5 10 0)
4939 (56 nil 8 7 1)
4940 (64 nil 8 8 0)
4941 (72 nil 9 8 1)
4942 (81 nil 9 9 0)
4943 (90 nil 10 9 1)
4944 (100 nil 10 10 0))
4946 (1 nil 1 1 0)
4947 (2 t 1 2 0)
4948 (4 nil 2 2 0)
4949 (6 t 2 3 1)
4950 (8 t 2 4 0)
4951 (9 nil 3 3 0)
4952 (12 nil 4 3 1)
4953 (16 nil 4 4 0)
4954 (18 t 3 6 0)
4955 (20 nil 5 4 1)
4956 (25 nil 5 5 0)
4957 (30 nil 6 5 1)
4958 (32 t 4 8 0)
4959 (36 nil 6 6 0)
4960 (42 nil 7 6 1)
4961 (49 nil 7 7 0)
4962 (50 t 5 10 0)
4963 (56 nil 8 7 1)
4964 (64 nil 8 8 0)
4965 (72 nil 9 8 1)
4966 (81 nil 9 9 0)
4967 (90 nil 10 9 1)
4968 (100 nil 10 10 0))
4969 (letter
4970 (1 nil 1 1 0)
4971 (2 t 1 2 0) ; adjusted by PostScript code
4972 (4 nil 2 2 0)
4973 (6 t 2 3 0)
4974 (9 nil 3 3 0)
4975 (12 nil 4 3 1)
4976 (16 nil 4 4 0)
4977 (20 nil 5 4 1)
4978 (25 nil 5 5 0)
4979 (30 nil 6 5 1)
4980 (36 nil 6 6 0)
4981 (40 t 5 8 0)
4982 (42 nil 7 6 1)
4983 (49 nil 7 7 0)
4984 (56 nil 8 7 1)
4985 (64 nil 8 8 0)
4986 (72 nil 9 8 1)
4987 (81 nil 9 9 0)
4988 (90 nil 10 9 1)
4989 (100 nil 10 10 0))
4990 (legal
4991 (1 nil 1 1 0)
4992 (2 t 1 2 0)
4993 (4 nil 2 2 0)
4994 (6 nil 3 2 1)
4995 (9 nil 3 3 0)
4996 (10 t 2 5 0)
4997 (12 nil 4 3 1)
4998 (16 nil 4 4 0)
4999 (20 nil 5 4 1)
5000 (25 nil 5 5 0)
5001 (30 nil 6 5 1)
5002 (36 nil 6 6 0)
5003 (42 nil 7 6 1)
5004 (49 nil 7 7 0)
5005 (56 nil 8 7 1)
5006 (64 nil 8 8 0)
5007 (70 t 5 14 0)
5008 (72 nil 9 8 1)
5009 (81 nil 9 9 0)
5010 (90 nil 10 9 1)
5011 (100 nil 10 10 0))
5012 (letter-small
5013 (1 nil 1 1 0)
5014 (2 t 1 2 0) ; adjusted by PostScript code
5015 (4 nil 2 2 0)
5016 (6 t 2 3 0)
5017 (9 nil 3 3 0)
5018 (12 t 3 4 1)
5019 (15 t 3 5 0)
5020 (16 nil 4 4 0)
5021 (20 nil 5 4 1)
5022 (25 nil 5 5 0)
5023 (28 t 4 7 0)
5024 (30 nil 6 5 1)
5025 (36 nil 6 6 0)
5026 (40 t 5 8 0)
5027 (42 nil 7 6 1)
5028 (49 nil 7 7 0)
5029 (56 nil 8 7 1)
5030 (60 t 6 10 0)
5031 (64 nil 8 8 0)
5032 (72 ni 9 8 1)
5033 (81 nil 9 9 0)
5034 (84 t 7 12 0)
5035 (90 nil 10 9 1)
5036 (100 nil 10 10 0))
5037 (tabloid
5038 (1 nil 1 1 0)
5039 (2 t 1 2 0)
5040 (4 nil 2 2 0)
5041 (6 t 2 3 1)
5042 (8 t 2 4 0)
5043 (9 nil 3 3 0)
5044 (12 nil 4 3 1)
5045 (16 nil 4 4 0)
5046 (20 nil 5 4 1)
5047 (25 nil 5 5 0)
5048 (30 nil 6 5 1)
5049 (36 nil 6 6 0)
5050 (42 nil 7 6 1)
5051 (49 nil 7 7 0)
5052 (56 nil 8 7 1)
5053 (64 nil 8 8 0)
5054 (72 nil 9 8 1)
5055 (81 nil 9 9 0)
5056 (84 t 6 14 0)
5057 (90 nil 10 9 1)
5058 (100 nil 10 10 0))
5059 ;; Ledger paper size is a special case, it is the only paper size where the
5060 ;; normal size is landscaped, that is, the height is smaller than width.
5061 ;; So, we use the special value `pag' in the `landscape' field.
5062 (ledger
5063 (1 nil 1 1 0)
5064 (2 pag 1 2 0)
5065 (4 nil 2 2 0)
5066 (6 pag 2 3 1)
5067 (8 pag 2 4 0)
5068 (9 nil 3 3 0)
5069 (12 nil 4 3 1)
5070 (16 nil 4 4 0)
5071 (20 nil 5 4 1)
5072 (25 nil 5 5 0)
5073 (30 nil 6 5 1)
5074 (36 nil 6 6 0)
5075 (42 nil 7 6 1)
5076 (49 nil 7 7 0)
5077 (56 nil 8 7 1)
5078 (64 nil 8 8 0)
5079 (72 nil 9 8 1)
5080 (81 nil 9 9 0)
5081 (84 pag 6 14 0)
5082 (90 nil 10 9 1)
5083 (100 nil 10 10 0))
5084 (statement
5085 (1 nil 1 1 0)
5086 (2 t 1 2 0)
5087 (4 nil 2 2 0)
5088 (6 nil 3 2 1)
5089 (9 nil 3 3 0)
5090 (10 t 2 5 0)
5091 (12 nil 4 3 1)
5092 (16 nil 4 4 0)
5093 (20 nil 5 4 1)
5094 (21 t 3 7 0)
5095 (25 nil 5 5 0)
5096 (30 nil 6 5 1)
5097 (36 nil 6 6 0)
5098 (40 t 4 10 0)
5099 (42 nil 7 6 1)
5100 (49 nil 7 7 0)
5101 (56 nil 8 7 1)
5102 (60 t 5 12 0)
5103 (64 nil 8 8 0)
5104 (72 nil 9 8 1)
5105 (81 nil 9 9 0)
5106 (90 nil 10 9 1)
5107 (100 nil 10 10 0))
5108 (executive
5109 (1 nil 1 1 0)
5110 (2 t 1 2 0) ; adjusted by PostScript code
5111 (4 nil 2 2 0)
5112 (6 t 2 3 0)
5113 (9 nil 3 3 0)
5114 (12 nil 4 3 1)
5115 (16 nil 4 4 0)
5116 (20 nil 5 4 1)
5117 (25 nil 5 5 0)
5118 (28 t 4 7 0)
5119 (30 nil 6 5 1)
5120 (36 nil 6 6 0)
5121 (42 nil 7 6 1)
5122 (45 t 5 9 0)
5123 (49 nil 7 7 0)
5124 (56 nil 8 7 1)
5125 (60 t 6 10 0)
5126 (64 nil 8 8 0)
5127 (72 nil 9 8 1)
5128 (81 nil 9 9 0)
5129 (84 t 7 12 0)
5130 (90 nil 10 9 1)
5131 (100 nil 10 10 0))
5132 (a4small
5133 (1 nil 1 1 0)
5134 (2 t 1 2 0)
5135 (4 nil 2 2 0)
5136 (6 t 2 3 1)
5137 (8 t 2 4 0)
5138 (9 nil 3 3 0)
5139 (12 nil 4 3 1)
5140 (16 nil 4 4 0)
5141 (18 t 3 6 0)
5142 (20 nil 5 4 1)
5143 (25 nil 5 5 0)
5144 (30 nil 6 5 1)
5145 (32 t 4 8 0)
5146 (36 nil 6 6 0)
5147 (42 nil 7 6 1)
5148 (49 nil 7 7 0)
5149 (50 t 5 10 0)
5150 (56 nil 8 7 1)
5151 (64 nil 8 8 0)
5152 (72 nil 9 8 1)
5153 (78 t 6 13 0)
5154 (81 nil 9 9 0)
5155 (90 nil 10 9 1)
5156 (100 nil 10 10 0))
5158 (1 nil 1 1 0)
5159 (2 t 1 2 0)
5160 (4 nil 2 2 0)
5161 (6 t 2 3 1)
5162 (8 t 2 4 0)
5163 (9 nil 3 3 0)
5164 (12 nil 4 3 1)
5165 (16 nil 4 4 0)
5166 (18 t 3 6 0)
5167 (20 nil 5 4 1)
5168 (25 nil 5 5 0)
5169 (30 nil 6 5 1)
5170 (32 t 4 8 0)
5171 (36 nil 6 6 0)
5172 (42 nil 7 6 1)
5173 (49 nil 7 7 0)
5174 (50 t 5 10 0)
5175 (56 nil 8 7 1)
5176 (64 nil 8 8 0)
5177 (72 nil 9 8 1)
5178 (81 nil 9 9 0)
5179 (90 nil 10 9 1)
5180 (100 nil 10 10 0))
5182 (1 nil 1 1 0)
5183 (2 t 1 2 0)
5184 (4 nil 2 2 0)
5185 (6 t 2 3 1)
5186 (8 t 2 4 0)
5187 (9 nil 3 3 0)
5188 (12 nil 4 3 1)
5189 (16 nil 4 4 0)
5190 (18 t 3 6 0)
5191 (20 nil 5 4 1)
5192 (25 nil 5 5 0)
5193 (30 nil 6 5 1)
5194 (32 t 4 8 0)
5195 (36 nil 6 6 0)
5196 (42 nil 7 6 1)
5197 (49 nil 7 7 0)
5198 (50 t 5 10 0)
5199 (56 nil 8 7 1)
5200 (64 nil 8 8 0)
5201 (72 nil 9 8 0)
5202 (81 nil 9 9 0)
5203 (90 nil 10 9 1)
5204 (98 t 7 14 0)
5205 (100 nil 10 10 0)))
5206 "Alist which is the page matrix database used for N-up printing.
5208 Each element has the following form:
5210 (PAGE
5211 (MAX LANDSCAPE LINES COLUMNS COL-MISSING)
5212 ...)
5214 Where:
5215 PAGE is the page size used (see `ps-paper-type').
5216 MAX is the maximum elements of this page matrix.
5217 LANDSCAPE specifies if page matrix is landscaped, has the following valid
5218 values:
5219 nil the sheet is in portrait mode.
5220 t the sheet is in landscape mode.
5221 pag the sheet is in portrait mode and page is in landscape mode.
5222 LINES is the number of lines of page matrix.
5223 COLUMNS is the number of columns of page matrix.
5224 COL-MISSING is the number of columns missing to fill the sheet.")
5227 (defmacro ps-n-up-landscape (mat) `(nth 1 ,mat))
5228 (defmacro ps-n-up-lines (mat) `(nth 2 ,mat))
5229 (defmacro ps-n-up-columns (mat) `(nth 3 ,mat))
5230 (defmacro ps-n-up-missing (mat) `(nth 4 ,mat))
5233 (defun ps-n-up-printing ()
5234 ;; force `ps-n-up-printing' be in range 1 to 100.
5235 (setq ps-n-up-printing (max (min ps-n-up-printing 100) 1))
5236 ;; find suitable page matrix for a given `ps-paper-type'.
5237 (let ((the-list (cdr (assq ps-paper-type ps-n-up-database))))
5238 (and the-list
5239 (while (> ps-n-up-printing (caar the-list))
5240 (setq the-list (cdr the-list))))
5241 (or (car the-list)
5242 '(1 nil 1 1 0))))
5245 (defconst ps-n-up-filling-database
5246 '((left-top
5247 "PageWidth" ; N-Up-XColumn
5248 "0" ; N-Up-YColumn
5249 "N-Up-End 1 sub PageWidth mul neg" ; N-Up-XLine
5250 "LandscapePageHeight neg" ; N-Up-YLine
5251 "N-Up-Lines" ; N-Up-Repeat
5252 "N-Up-Columns" ; N-Up-End
5253 "0" ; N-Up-XStart
5254 "0") ; N-Up-YStart
5255 (left-bottom
5256 "PageWidth" ; N-Up-XColumn
5257 "0" ; N-Up-YColumn
5258 "N-Up-End 1 sub PageWidth mul neg" ; N-Up-XLine
5259 "LandscapePageHeight" ; N-Up-YLine
5260 "N-Up-Lines" ; N-Up-Repeat
5261 "N-Up-Columns" ; N-Up-End
5262 "0" ; N-Up-XStart
5263 "N-Up-Repeat 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
5264 (right-top
5265 "PageWidth neg" ; N-Up-XColumn
5266 "0" ; N-Up-YColumn
5267 "N-Up-End 1 sub PageWidth mul" ; N-Up-XLine
5268 "LandscapePageHeight neg" ; N-Up-YLine
5269 "N-Up-Lines" ; N-Up-Repeat
5270 "N-Up-Columns" ; N-Up-End
5271 "N-Up-End 1 sub PageWidth mul" ; N-Up-XStart
5272 "0") ; N-Up-YStart
5273 (right-bottom
5274 "PageWidth neg" ; N-Up-XColumn
5275 "0" ; N-Up-YColumn
5276 "N-Up-End 1 sub PageWidth mul" ; N-Up-XLine
5277 "LandscapePageHeight" ; N-Up-YLine
5278 "N-Up-Lines" ; N-Up-Repeat
5279 "N-Up-Columns" ; N-Up-End
5280 "N-Up-End 1 sub PageWidth mul" ; N-Up-XStart
5281 "N-Up-Repeat 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
5282 (top-left
5283 "0" ; N-Up-XColumn
5284 "LandscapePageHeight neg" ; N-Up-YColumn
5285 "PageWidth" ; N-Up-XLine
5286 "N-Up-End 1 sub LandscapePageHeight mul" ; N-Up-YLine
5287 "N-Up-Columns" ; N-Up-Repeat
5288 "N-Up-Lines" ; N-Up-End
5289 "0" ; N-Up-XStart
5290 "0") ; N-Up-YStart
5291 (bottom-left
5292 "0" ; N-Up-XColumn
5293 "LandscapePageHeight" ; N-Up-YColumn
5294 "PageWidth" ; N-Up-XLine
5295 "N-Up-End 1 sub LandscapePageHeight mul neg" ; N-Up-YLine
5296 "N-Up-Columns" ; N-Up-Repeat
5297 "N-Up-Lines" ; N-Up-End
5298 "0" ; N-Up-XStart
5299 "N-Up-End 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
5300 (top-right
5301 "0" ; N-Up-XColumn
5302 "LandscapePageHeight neg" ; N-Up-YColumn
5303 "PageWidth neg" ; N-Up-XLine
5304 "N-Up-End 1 sub LandscapePageHeight mul" ; N-Up-YLine
5305 "N-Up-Columns" ; N-Up-Repeat
5306 "N-Up-Lines" ; N-Up-End
5307 "N-Up-Repeat 1 sub PageWidth mul" ; N-Up-XStart
5308 "0") ; N-Up-YStart
5309 (bottom-right
5310 "0" ; N-Up-XColumn
5311 "LandscapePageHeight" ; N-Up-YColumn
5312 "PageWidth neg" ; N-Up-XLine
5313 "N-Up-End 1 sub LandscapePageHeight mul neg" ; N-Up-YLine
5314 "N-Up-Columns" ; N-Up-Repeat
5315 "N-Up-Lines" ; N-Up-End
5316 "N-Up-Repeat 1 sub PageWidth mul" ; N-Up-XStart
5317 "N-Up-End 1 sub LandscapePageHeight mul neg")) ; N-Up-YStart
5318 "Alist for n-up printing initializations.
5320 Each element has the following form:
5322 (KIND XCOL YCOL XLIN YLIN REPEAT END XSTART YSTART)
5324 Where:
5325 KIND is a valid value of the variable `ps-n-up-filling'.
5326 XCOL YCOL are the relative position for the next column.
5327 XLIN YLIN are the relative position for the beginning of next line.
5328 REPEAT is the number of repetitions for external loop.
5329 END is the number of repetitions for internal loop and also the number
5330 of pages in a row.
5331 XSTART YSTART are the relative position for the first page in a sheet.")
5334 (defun ps-n-up-filling ()
5335 (cdr (or (assq ps-n-up-filling ps-n-up-filling-database)
5336 (assq 'left-top ps-n-up-filling-database))))
5339 (defmacro ps-n-up-xcolumn (init) `(nth 0 ,init))
5340 (defmacro ps-n-up-ycolumn (init) `(nth 1 ,init))
5341 (defmacro ps-n-up-xline (init) `(nth 2 ,init))
5342 (defmacro ps-n-up-yline (init) `(nth 3 ,init))
5343 (defmacro ps-n-up-repeat (init) `(nth 4 ,init))
5344 (defmacro ps-n-up-end (init) `(nth 5 ,init))
5345 (defmacro ps-n-up-xstart (init) `(nth 6 ,init))
5346 (defmacro ps-n-up-ystart (init) `(nth 7 ,init))
5349 (defconst ps-error-handler-alist
5350 '((none . 0)
5351 (paper . 1)
5352 (system . 2)
5353 (paper-and-system . 3))
5354 "Alist for error handler message.")
5357 (defconst ps-zebra-stripe-alist
5358 '((follow . 1)
5359 (full . 2)
5360 (full-follow . 3))
5361 "Alist for zebra stripe continuation.")
5364 (defun ps-begin-file ()
5365 (setq ps-page-order 0
5366 ps-page-printed 0
5367 ps-background-text-count 0
5368 ps-background-image-count 0
5369 ps-background-pages nil
5370 ps-background-all-pages nil)
5372 (let ((dimensions (cdr (assq ps-paper-type ps-page-dimensions-database)))
5373 (tumble (if ps-landscape-mode (not ps-spool-tumble) ps-spool-tumble))
5374 (n-up (ps-n-up-printing))
5375 (n-up-filling (ps-n-up-filling)))
5376 (and ps-n-up-on (setq tumble (not tumble)))
5377 (ps-output
5378 ps-adobe-tag
5379 "%%Title: " (buffer-name) ; Take job name from name of
5380 ; first buffer printed
5381 "\n%%Creator: ps-print v" ps-print-version
5382 "\n%%For: " (user-full-name) ;FIXME: may need encoding!
5383 "\n%%CreationDate: " (format-time-string "%T %b %d %Y") ;FIXME: encoding!
5384 "\n%%Orientation: "
5385 (if ps-landscape-mode "Landscape" "Portrait")
5386 "\n%%DocumentNeededResources: font Times-Roman Times-Italic\n%%+ font "
5387 (mapconcat 'identity
5388 (ps-remove-duplicates
5389 (append (ps-fonts 'ps-font-for-text)
5390 (list (ps-font 'ps-font-for-header 'normal)
5391 (ps-font 'ps-font-for-header 'bold)
5392 (ps-font 'ps-font-for-footer 'normal)
5393 (ps-font 'ps-font-for-footer 'bold))))
5394 "\n%%+ font ")
5395 "\n%%DocumentSuppliedResources: procset PSPrintUserDefinedPrologue-" (user-login-name) " 0 0"
5396 "\n%%DocumentMedia: " (ps-page-dimensions-get-media dimensions)
5397 (format " %d" (round (ps-page-dimensions-get-width dimensions)))
5398 (format " %d" (round (ps-page-dimensions-get-height dimensions)))
5399 " 0 () ()\n%%PageOrder: Ascend\n%%Pages: (atend)\n%%Requirements:"
5400 (if ps-spool-duplex
5401 (if tumble " duplex(tumble)\n" " duplex\n")
5402 "\n"))
5404 (ps-insert-string ps-print-prologue-header)
5406 (ps-output "%%EndComments\n%%BeginDefaults\n%%PageMedia: "
5407 (ps-page-dimensions-get-media dimensions)
5408 "\n%%EndDefaults\n\n%%BeginProlog\n\n"
5409 "/languagelevel where{pop}{/languagelevel 1 def}ifelse\n"
5410 (format "/ErrorMessage %s def\n\n"
5411 (or (cdr (assoc ps-error-handler-message
5412 ps-error-handler-alist))
5413 1)) ; send to paper
5414 ps-print-prologue-0
5415 "\n%%BeginResource: procset PSPrintUserDefinedPrologue-" (user-login-name) " 0 0\n\n")
5417 (ps-insert-string ps-user-defined-prologue)
5419 (ps-output "\n%%EndResource\n\n")
5421 (ps-output-boolean "LandscapeMode "
5422 (or ps-landscape-mode
5423 (eq (ps-n-up-landscape n-up) 'pag)))
5424 (ps-output-boolean "UpsideDown " ps-print-upside-down)
5425 (ps-output (format "/NumberOfColumns %d def\n" ps-number-of-columns)
5427 (format "/LandscapePageHeight %s def\n" ps-landscape-page-height)
5428 (format "/PrintPageWidth %s def\n"
5429 (- (* (+ ps-print-width ps-inter-column)
5430 ps-number-of-columns)
5431 ps-inter-column))
5432 (format "/PrintWidth %s def\n" ps-print-width)
5433 (format "/PrintHeight %s def\n" ps-print-height)
5435 (format "/LeftMargin %s def\n" ps-left-margin)
5436 (format "/RightMargin %s def\n" ps-right-margin)
5437 (format "/InterColumn %s def\n" ps-inter-column)
5439 (format "/BottomMargin %s def\n" ps-bottom-margin)
5440 (format "/TopMargin %s def\n" ps-top-margin) ; not used
5441 (format "/HeaderOffset %s def\n" ps-header-offset)
5442 (format "/HeaderPad %s def\n" ps-header-pad)
5443 (format "/FooterOffset %s def\n" ps-footer-offset)
5444 (format "/FooterPad %s def\n" ps-footer-pad)
5445 (format "/FooterLines %s def\n" ps-footer-lines))
5447 (ps-output-boolean "ShowNofN " ps-show-n-of-n)
5448 (ps-output-boolean "SwitchHeader " (if (eq ps-switch-header 'duplex)
5449 ps-spool-duplex
5450 ps-switch-header))
5451 (ps-output-boolean "PrintOnlyOneHeader" ps-print-only-one-header)
5452 (ps-output-boolean "PrintHeader " ps-print-header)
5453 (ps-output-boolean "PrintHeaderFrame " ps-print-header-frame)
5454 (ps-output-frame-properties "HeaderFrameProperties" ps-header-frame-alist)
5455 (ps-output-boolean "PrintFooter " ps-print-footer)
5456 (ps-output-boolean "PrintFooterFrame " ps-print-footer-frame)
5457 (ps-output-frame-properties "FooterFrameProperties" ps-footer-frame-alist)
5459 (let ((line-height (ps-line-height 'ps-font-for-text)))
5460 (ps-output (format "/LineSpacing %s def\n" ps-line-spacing-internal)
5461 (format "/ParagraphSpacing %s def\n"
5462 ps-paragraph-spacing-internal)
5463 (format "/LineHeight %s def\n" line-height)
5464 (format "/LinesPerColumn %d def\n"
5465 (let ((height (+ line-height
5466 ps-line-spacing-internal)))
5467 (round (/ (+ ps-print-height
5468 (* height 0.45))
5469 height))))))
5471 (ps-output-boolean "WarnPaperSize " ps-warn-paper-type)
5472 (ps-output-boolean "Zebra " ps-zebra-stripes)
5473 (ps-output-boolean "PrintLineNumber " ps-line-number)
5474 (ps-output-boolean "SyncLineZebra " (not (integerp ps-line-number-step)))
5475 (ps-output (format "/ZebraFollow %d def\n"
5476 (or (cdr (assq ps-zebra-stripe-follow
5477 ps-zebra-stripe-alist))
5479 (format "/PrintLineStep %d def\n"
5480 (if (integerp ps-line-number-step)
5481 ps-line-number-step
5482 ps-zebra-stripe-height))
5483 (format "/PrintLineStart %d def\n" ps-line-number-start)
5484 "/LineNumberColor "
5485 (ps-format-color ps-line-number-color 0.0)
5486 (format "def\n/ZebraHeight %d def\n"
5487 ps-zebra-stripe-height)
5488 "/ZebraColor "
5489 (ps-format-color ps-zebra-color 0.95)
5490 "def\n")
5491 (ps-output "/BackgroundColor "
5492 (ps-format-color ps-default-background 1.0)
5493 "def\n")
5494 (ps-output "/UseSetpagedevice "
5495 (if (eq ps-spool-config 'setpagedevice)
5496 "/setpagedevice where{pop languagelevel 2 eq}{false}ifelse"
5497 "false")
5498 " def\n\n/PageWidth "
5499 "PrintPageWidth LeftMargin add RightMargin add def\n\n"
5500 (format "/N-Up %d def\n" ps-n-up-printing))
5501 (ps-output-boolean "N-Up-Landscape" (eq (ps-n-up-landscape n-up) t))
5502 (ps-output-boolean "N-Up-Border " ps-n-up-border-p)
5503 (ps-output (format "/N-Up-Lines %d def\n" (ps-n-up-lines n-up))
5504 (format "/N-Up-Columns %d def\n" (ps-n-up-columns n-up))
5505 (format "/N-Up-Missing %d def\n" (ps-n-up-missing n-up))
5506 (format "/N-Up-Margin %s def\n" ps-n-up-margin)
5507 "/N-Up-Repeat "
5508 (if ps-landscape-mode
5509 (ps-n-up-end n-up-filling)
5510 (ps-n-up-repeat n-up-filling))
5511 " def\n/N-Up-End "
5512 (if ps-landscape-mode
5513 (ps-n-up-repeat n-up-filling)
5514 (ps-n-up-end n-up-filling))
5515 " def\n/N-Up-XColumn " (ps-n-up-xcolumn n-up-filling)
5516 " def\n/N-Up-YColumn " (ps-n-up-ycolumn n-up-filling)
5517 " def\n/N-Up-XLine " (ps-n-up-xline n-up-filling)
5518 " def\n/N-Up-YLine " (ps-n-up-yline n-up-filling)
5519 " def\n/N-Up-XStart " (ps-n-up-xstart n-up-filling)
5520 " def\n/N-Up-YStart " (ps-n-up-ystart n-up-filling) " def\n")
5522 (ps-background-text)
5523 (ps-background-image)
5524 (setq ps-background-all-pages (nreverse ps-background-all-pages)
5525 ps-background-pages (nreverse ps-background-pages))
5527 (ps-output "\n" ps-print-prologue-1
5528 "\n/printGlobalBackground{\n")
5529 (mapc 'ps-output ps-background-all-pages)
5530 (ps-output
5531 "}def\n/printLocalBackground{\n}def\n"
5532 "\n%%EndProlog\n\n%%BeginSetup\n"
5533 "\n%%IncludeResource: font Times-Roman"
5534 "\n%%IncludeResource: font Times-Italic"
5535 "\n%%IncludeResource: font "
5536 (mapconcat 'identity
5537 (ps-remove-duplicates
5538 (append (ps-fonts 'ps-font-for-text)
5539 (list (ps-font 'ps-font-for-header 'normal)
5540 (ps-font 'ps-font-for-header 'bold)
5541 (ps-font 'ps-font-for-footer 'normal)
5542 (ps-font 'ps-font-for-footer 'bold))))
5543 "\n%%IncludeResource: font ")
5544 ;; Header/line number fonts
5545 (format "\n/h0 %s(%s)cvn DefFont\n" ; /h0 14/Helvetica-Bold DefFont
5546 ps-header-title-font-size-internal
5547 (ps-font 'ps-font-for-header 'bold))
5548 (format "/h1 %s(%s)cvn DefFont\n" ; /h1 12/Helvetica DefFont
5549 ps-header-font-size-internal
5550 (ps-font 'ps-font-for-header 'normal))
5551 (format "/L0 %s(%s)cvn DefFont\n" ; /L0 6/Times-Italic DefFont
5552 (ps-get-font-size 'ps-line-number-font-size)
5553 ps-line-number-font)
5554 (format "/H0 %s(%s)cvn DefFont\n" ; /H0 12/Helvetica DefFont
5555 ps-footer-font-size-internal
5556 (ps-font 'ps-font-for-footer 'normal))
5557 "\n\n% ---- These lines must be kept together because...
5559 /h0 F
5560 /HeaderTitleLineHeight FontHeight def
5562 /h1 F
5563 /HeaderLineHeight FontHeight def
5564 /HeaderDescent Descent def
5566 /H0 F
5567 /FooterLineHeight FontHeight def
5568 /FooterDescent Descent def
5570 % ---- ...because `F' has a side-effect on `FontHeight' and `Descent'\n\n")
5572 ;; Text fonts
5573 (let ((font (ps-font-alist 'ps-font-for-text))
5574 (i 0))
5575 (while font
5576 (ps-output (format "/f%d %s(%s)cvn DefFont\n"
5578 ps-font-size-internal
5579 (ps-font 'ps-font-for-text (car (car font)))))
5580 (setq font (cdr font)
5581 i (1+ i))))
5583 (let ((font-entry (cdr (assq ps-font-family ps-font-info-database))))
5584 (ps-output (format "/SpaceWidthRatio %f def\n"
5585 (/ (ps-lookup 'space-width) (ps-lookup 'size)))))
5587 (unless (eq ps-spool-config 'lpr-switches)
5588 (ps-output "\n%%BeginFeature: *Duplex "
5589 (ps-boolean-capitalized ps-spool-duplex)
5590 " *Tumble "
5591 (ps-boolean-capitalized tumble)
5592 "\nUseSetpagedevice\n{BMark/Duplex "
5593 (ps-boolean-constant ps-spool-duplex)
5594 "/Tumble "
5595 (ps-boolean-constant tumble)
5596 " EMark setpagedevice}\n{statusdict begin "
5597 (ps-boolean-constant ps-spool-duplex)
5598 " setduplexmode "
5599 (ps-boolean-constant tumble)
5600 " settumble end}ifelse\n%%EndFeature\n")))
5601 (ps-output "\n%%BeginFeature: *ManualFeed "
5602 (ps-boolean-capitalized ps-manual-feed)
5603 "\nBMark /ManualFeed "
5604 (ps-boolean-constant ps-manual-feed)
5605 " EMark setpagedevice\n%%EndFeature\n\nBeginDoc\n%%EndSetup\n")
5606 (and ps-banner-page-when-duplexing
5607 (ps-output "\n%%Page: banner 0\nsave showpage restore\n")))
5610 (defun ps-format-color (color &optional default)
5611 (let ((the-color (if (stringp color)
5612 (ps-color-scale color)
5613 color)))
5614 (if (and the-color (listp the-color))
5615 (concat "["
5616 (format ps-color-format
5617 (* (nth 0 the-color) 1.0) ; force float number
5618 (* (nth 1 the-color) 1.0) ; force float number
5619 (* (nth 2 the-color) 1.0)) ; force float number
5620 "] ")
5621 (ps-float-format (if (numberp the-color) the-color default)))))
5624 (defun ps-insert-string (prologue)
5625 (let ((str (if (functionp prologue)
5626 (funcall prologue)
5627 prologue)))
5628 (and (stringp str)
5629 (ps-output str))))
5632 (defun ps-boolean-capitalized (bool)
5633 (if bool "True" "False"))
5636 (defun ps-boolean-constant (bool)
5637 (if bool "true" "false"))
5640 (defun ps-header-dirpart ()
5641 (let ((fname (buffer-file-name)))
5642 (if fname
5643 (if (string-equal (buffer-name) (file-name-nondirectory fname))
5644 (abbreviate-file-name (file-name-directory fname))
5645 fname)
5646 "")))
5649 (defun ps-get-buffer-name ()
5650 (cond
5651 ;; Indulge Jim this little easter egg:
5652 ((string= (buffer-name) "ps-print.el")
5653 "Hey, Cool! It's ps-print.el!!!")
5654 ;; Indulge Jack this other little easter egg:
5655 ((string= (buffer-name) "sokoban.el")
5656 "Super! C'est sokoban.el!")
5657 (t (concat
5658 (and ps-printing-region-p "Subset of: ")
5659 (buffer-name)
5660 (and (buffer-modified-p) " (unsaved)")))))
5663 (defun ps-get-size (size mess &optional arg)
5664 (let ((siz (cond ((numberp size)
5665 size)
5666 ((and (consp size)
5667 (numberp (car size))
5668 (numberp (cdr size)))
5669 (if ps-landscape-mode
5670 (car size)
5671 (cdr size)))
5673 -1))))
5674 (and (< siz 0)
5675 (error "Invalid %s `%S'%s"
5676 mess size
5677 (if arg
5678 (format-message " for `%S'" arg)
5679 "")))
5680 siz))
5683 (defun ps-get-font-size (font-sym)
5684 (ps-get-size (symbol-value font-sym) "font size" font-sym))
5687 (defun ps-rgb-color (color unspecified default)
5688 (cond
5689 ;; (float float float) ==> (R G B)
5690 ((and color (listp color) (= (length color) 3)
5691 (let ((cl color)
5692 (ok t) e)
5693 (while (and ok cl)
5694 (setq e (car cl)
5695 cl (cdr cl)
5696 ok (and (floatp e) (<= 0.0 e) (<= e 1.0))))
5697 ok))
5698 color)
5699 ;; float ==> 0.0 = black .. 1.0 = white
5700 ((and (floatp color) (<= 0.0 color) (<= color 1.0))
5701 (list color color color))
5702 ;; "colorName" but different from "unspecified-[bf]g"
5703 ((and (stringp color) (not (string= color unspecified)))
5704 (ps-color-scale color))
5705 ;; ok, use the default
5707 (list default default default))))
5709 (defvar ps-basic-plot-string-function 'ps-basic-plot-string)
5711 (defun ps-begin-job (genfunc)
5712 ;; prologue files
5713 (or (equal ps-mark-code-directory ps-postscript-code-directory)
5714 (setq ps-print-prologue-0 (ps-prologue-file 0)
5715 ps-print-prologue-1 (ps-prologue-file 1)
5716 ps-mark-code-directory ps-postscript-code-directory))
5717 ;; selected pages
5718 (let (new page)
5719 (while ps-selected-pages
5720 (setq page (car ps-selected-pages)
5721 ps-selected-pages (cdr ps-selected-pages))
5722 (cond ((integerp page)
5723 (and (> page 0)
5724 (setq new (cons (cons page page) new))))
5725 ((consp page)
5726 (and (integerp (car page)) (integerp (cdr page))
5727 (> (car page) 0)
5728 (<= (car page) (cdr page))
5729 (setq new (cons page new))))))
5730 (setq ps-selected-pages (sort new #'(lambda (one other)
5731 (< (car one) (car other))))
5732 ps-last-selected-pages ps-selected-pages
5733 ps-first-page nil
5734 ps-last-page nil))
5735 ;; face background
5736 (or (listp ps-use-face-background)
5737 (setq ps-use-face-background t))
5738 ;; line number
5739 (and (integerp ps-line-number-step)
5740 (<= ps-line-number-step 0)
5741 (setq ps-line-number-step 1))
5742 (setq ps-n-up-on (> ps-n-up-printing 1)
5743 ps-line-number-start (max 1 (min ps-line-number-start
5744 (if (integerp ps-line-number-step)
5745 ps-line-number-step
5746 ps-zebra-stripe-height))))
5747 ;; spooling buffer
5748 (with-current-buffer ps-spool-buffer
5749 (goto-char (point-max))
5750 (and (re-search-backward "^%%Trailer$" nil t)
5751 (delete-region (match-beginning 0) (point-max))))
5752 ;; miscellaneous
5753 (setq ps-zebra-stripe-full-p (memq ps-zebra-stripe-follow
5754 '(full full-follow))
5755 ps-page-postscript 0
5756 ps-page-sheet 0
5757 ps-page-n-up 0
5758 ps-page-column 0
5759 ps-lines-printed 0
5760 ps-print-page-p t
5761 ps-showline-count (car ps-printing-region)
5762 ps-line-spacing-internal (ps-get-size ps-line-spacing
5763 "line spacing")
5764 ps-paragraph-spacing-internal (ps-get-size ps-paragraph-spacing
5765 "paragraph spacing")
5766 ps-font-size-internal (ps-get-font-size 'ps-font-size)
5767 ps-header-font-size-internal (ps-get-font-size 'ps-header-font-size)
5768 ps-header-title-font-size-internal
5769 (ps-get-font-size 'ps-header-title-font-size)
5770 ps-footer-font-size-internal (ps-get-font-size 'ps-footer-font-size)
5771 ps-control-or-escape-regexp
5772 (cond ((eq ps-print-control-characters '8-bit)
5773 (string-as-unibyte "[\000-\037\177-\377]"))
5774 ((eq ps-print-control-characters 'control-8-bit)
5775 (string-as-unibyte "[\000-\037\177-\237]"))
5776 ((eq ps-print-control-characters 'control)
5777 "[\000-\037\177]")
5778 (t "[\t\n\f]"))
5779 ;; Set the color scale. We do it here instead of in the defvar so
5780 ;; that ps-print can be dumped into emacs. This expression can't be
5781 ;; evaluated at dump-time because X isn't initialized.
5782 ps-color-p (and ps-print-color-p (ps-color-device))
5783 ps-print-color-scale (if ps-color-p
5784 (float (car (ps-color-values "white")))
5785 1.0)
5786 ps-default-background (ps-rgb-color
5787 (cond
5788 ((or (member ps-print-color-p
5789 '(nil black-white))
5790 (eq genfunc 'ps-generate-postscript))
5791 nil)
5792 ((eq ps-default-bg 'frame-parameter)
5793 (ps-frame-parameter nil 'background-color))
5794 ((eq ps-default-bg t)
5795 (ps-face-background-name 'default))
5797 ps-default-bg))
5798 "unspecified-bg"
5799 1.0)
5800 ps-default-foreground (ps-rgb-color
5801 (cond
5802 ((or (member ps-print-color-p
5803 '(nil black-white))
5804 (eq genfunc 'ps-generate-postscript))
5805 nil)
5806 ((eq ps-default-fg 'frame-parameter)
5807 (ps-frame-parameter nil 'foreground-color))
5808 ((eq ps-default-fg t)
5809 (ps-face-foreground-name 'default))
5811 ps-default-fg))
5812 "unspecified-fg"
5813 0.0)
5814 ps-foreground-list (mapcar
5815 #'(lambda (arg)
5816 (ps-rgb-color arg "unspecified-fg" 0.0))
5817 (append (and (not (member ps-print-color-p
5818 '(nil black-white)))
5819 ps-fg-list)
5820 (list ps-default-foreground
5821 "black")))
5822 ps-default-color (and (not (member ps-print-color-p
5823 '(nil black-white)))
5824 ps-default-foreground)
5825 ps-current-color ps-default-color
5826 ;; Set up default functions.
5827 ;; They may be overridden by ps-mule-begin-job.
5828 ps-basic-plot-string-function 'ps-basic-plot-string
5829 ps-encode-header-string-function nil)
5830 ;; initialize page dimensions
5831 (ps-get-page-dimensions)
5832 ;; final check
5833 (unless (listp ps-lpr-switches)
5834 (error "`ps-lpr-switches' value should be a list"))
5835 (and ps-color-p
5836 (equal ps-default-background ps-default-foreground)
5837 (error
5838 (concat
5839 "`ps-default-fg' and `ps-default-bg' have the same color.\n"
5840 "Text won't appear on page. Please, check these variables."))))
5843 (defun ps-page-number ()
5844 (if ps-print-only-one-header
5845 (1+ (/ (1- ps-page-column) ps-number-of-columns))
5846 ps-page-column))
5849 (defsubst ps-end-page ()
5850 (ps-output "EndPage\nEndDSCPage\n"))
5853 (defsubst ps-next-page ()
5854 (ps-end-page)
5855 (ps-flush-output)
5856 (ps-begin-page))
5859 (defun ps-end-sheet ()
5860 (and ps-print-page-p (> ps-page-sheet 0)
5861 (ps-output "EndSheet\n")))
5864 (defun ps-header-sheet ()
5865 ;; Print only when a new sheet begins.
5866 (ps-end-sheet)
5867 (setq ps-page-sheet (1+ ps-page-sheet))
5868 (when (ps-print-sheet-p)
5869 (setq ps-page-order (1+ ps-page-order))
5870 (ps-output (if ps-n-up-on
5871 (format "\n%%%%Page: (%d \\(%d\\)) %d\n"
5872 ps-page-order ps-page-postscript ps-page-order)
5873 (format "\n%%%%Page: %d %d\n"
5874 ps-page-postscript ps-page-order))
5875 ;; spooling needs to redefine Lines and PageCount on each page
5876 "/Lines 0 def\n/PageCount 0 def\n"
5877 (format "%d BeginSheet\nBeginDSCPage\n"
5878 ps-n-up-printing))))
5881 (defun ps-header-page ()
5882 ;; set total line and page number when printing has finished
5883 ;; (see `ps-generate')
5884 (if (zerop (mod ps-page-column ps-number-of-columns))
5885 (progn
5886 (setq ps-page-postscript (1+ ps-page-postscript))
5887 (when (ps-print-page-p)
5888 (ps-print-sheet-p)
5889 (if (zerop (mod ps-page-n-up ps-n-up-printing))
5890 ;; Print only when a new sheet begins.
5891 (progn
5892 (ps-header-sheet)
5893 (run-hooks 'ps-print-begin-sheet-hook))
5894 ;; Print only when a new page begins.
5895 (ps-output "BeginDSCPage\n")
5896 (run-hooks 'ps-print-begin-page-hook))
5897 (ps-background ps-page-postscript)
5898 (setq ps-page-n-up (1+ ps-page-n-up))
5899 (and ps-print-page-p
5900 (setq ps-page-printed (1+ ps-page-printed)))))
5901 ;; Print only when a new column begins.
5902 (ps-output "BeginDSCPage\n")
5903 (run-hooks 'ps-print-begin-column-hook))
5904 (setq ps-page-column (1+ ps-page-column)))
5906 (defun ps-begin-page ()
5907 (setq ps-width-remaining ps-print-width
5908 ps-height-remaining ps-print-height)
5910 (ps-header-page)
5912 (ps-output (format "/LineNumber %d def\n" ps-showline-count)
5913 (format "/PageNumber %d def\n" (ps-page-number)))
5915 (when ps-print-header
5916 (ps-generate-header "HeaderLinesLeft" "/h0" "/h1" ps-left-header)
5917 (ps-generate-header "HeaderLinesRight" "/h0" "/h1" ps-right-header)
5918 (ps-output (format "%d SetHeaderLines\n" ps-header-lines)))
5920 (when ps-print-footer
5921 (ps-generate-header "FooterLinesLeft" "/H0" "/H0" ps-left-footer)
5922 (ps-generate-header "FooterLinesRight" "/H0" "/H0" ps-right-footer)
5923 (ps-output (format "%d SetFooterLines\n" ps-footer-lines)))
5925 (ps-output (number-to-string ps-lines-printed) " BeginPage\n")
5926 (ps-set-font ps-current-font)
5927 (ps-set-bg ps-current-bg)
5928 (ps-set-color ps-current-color))
5930 (defsubst ps-skip-newline (limit)
5931 (setq ps-showline-count (1+ ps-showline-count)
5932 ps-lines-printed (1+ ps-lines-printed))
5933 (and (< (point) limit)
5934 (forward-char 1)))
5936 (defsubst ps-next-line ()
5937 (setq ps-showline-count (1+ ps-showline-count)
5938 ps-lines-printed (1+ ps-lines-printed))
5939 (let* ((paragraph-p (and ps-paragraph-regexp
5940 (looking-at ps-paragraph-regexp)))
5941 (lh (+ (ps-line-height 'ps-font-for-text)
5942 (if paragraph-p
5943 ps-paragraph-spacing-internal
5944 ps-line-spacing-internal))))
5945 (if (< ps-height-remaining lh)
5946 (ps-next-page)
5947 (setq ps-width-remaining ps-print-width
5948 ps-height-remaining (- ps-height-remaining lh))
5949 (ps-output (if paragraph-p "PHL\n" "LHL\n")))))
5951 (defun ps-continue-line ()
5952 (setq ps-lines-printed (1+ ps-lines-printed))
5953 (let ((lh (+ (ps-line-height 'ps-font-for-text) ps-line-spacing-internal)))
5954 (if (< ps-height-remaining lh)
5955 (ps-next-page)
5956 (setq ps-width-remaining ps-print-width
5957 ps-height-remaining (- ps-height-remaining lh))
5958 (ps-output "SL\n"))))
5960 (defun ps-find-wrappoint (from to char-width)
5961 (let ((avail (truncate (/ ps-width-remaining char-width)))
5962 (todo (- to from)))
5963 (if (< todo avail)
5964 (cons to (* todo char-width))
5965 (cons (+ from avail) ps-width-remaining))))
5967 (defun ps-basic-plot-str (from to string)
5968 (let* ((wrappoint (ps-find-wrappoint from to
5969 (ps-avg-char-width 'ps-font-for-text)))
5970 (to (car wrappoint))
5971 (str (substring string from to)))
5972 (ps-output-string str)
5973 (ps-output " S\n")
5974 wrappoint))
5976 (defun ps-basic-plot-string (from to &optional _bg-color)
5977 (let* ((wrappoint (ps-find-wrappoint from to
5978 (ps-avg-char-width 'ps-font-for-text)))
5979 (to (car wrappoint))
5980 (string (buffer-substring-no-properties from to)))
5981 (ps-output-string string)
5982 (ps-output " S\n")
5983 wrappoint))
5985 (defun ps-basic-plot-whitespace (from to &optional _bg-color)
5986 (let* ((wrappoint (ps-find-wrappoint from to
5987 (ps-space-width 'ps-font-for-text)))
5988 (to (car wrappoint)))
5989 (ps-output (format "%d W\n" (- to from)))
5990 wrappoint))
5992 (defun ps-plot (plotfunc from to &optional bg-color)
5993 (while (< from to)
5994 (let* ((wrappoint (funcall plotfunc from to bg-color))
5995 (plotted-to (car wrappoint))
5996 (plotted-width (cdr wrappoint)))
5997 (setq from plotted-to
5998 ps-width-remaining (- ps-width-remaining plotted-width))
5999 (if (< from to)
6000 (ps-continue-line))))
6001 (if ps-razzle-dazzle
6002 (let* ((q-todo (- (point-max) (point-min)))
6003 (q-done (- (point) (point-min)))
6004 (chunkfrac (/ q-todo 8))
6005 (chunksize (min chunkfrac 1000)))
6006 (if (> (- q-done ps-razchunk) chunksize)
6007 (progn
6008 (setq ps-razchunk q-done)
6009 (message "Formatting...%3d%%"
6010 (floor (* 100.0 q-done) q-todo)))))))
6012 (defvar ps-last-font nil)
6014 (defun ps-set-font (font)
6015 (setq ps-last-font (format "f%d" (setq ps-current-font font)))
6016 (ps-output (format "/%s F\n" ps-last-font)))
6018 (defun ps-set-bg (color)
6019 (if (setq ps-current-bg color)
6020 (ps-output (format ps-color-format
6021 (nth 0 color) (nth 1 color) (nth 2 color))
6022 " true BG\n")
6023 (ps-output "false BG\n")))
6025 (defun ps-set-color (color)
6026 (setq ps-current-color (or color ps-default-foreground))
6027 (ps-output (format ps-color-format
6028 (nth 0 ps-current-color)
6029 (nth 1 ps-current-color) (nth 2 ps-current-color))
6030 " FG\n"))
6033 (defsubst ps-plot-string (string)
6034 (ps-plot 'ps-basic-plot-str 0 (length string) string))
6037 (defvar ps-current-effect 0)
6039 (defvar ps-print-translation-table
6040 (let ((tbl (make-char-table 'translation-table nil)))
6041 (if (and (boundp 'ucs-mule-8859-to-mule-unicode)
6042 (char-table-p ucs-mule-8859-to-mule-unicode))
6043 (map-char-table
6044 #'(lambda (k v)
6045 (if (and v (eq (char-charset v) 'latin-iso8859-1) (/= k v))
6046 (aset tbl k v)))
6047 ucs-mule-8859-to-mule-unicode))
6048 tbl)
6049 "Translation table for PostScript printing.
6050 The default value is a table that translates non-Latin-1 Latin characters
6051 to the equivalent Latin-1 characters.")
6053 (defun ps-plot-region (from to font &optional fg-color bg-color effects)
6054 (or (equal font ps-current-font)
6055 (ps-set-font font))
6057 ;; Specify a foreground color only if:
6058 ;; one's specified,
6059 ;; it's different than the background (if `ps-fg-validate-p' is non-nil)
6060 ;; and it's different than the current.
6061 (let ((fg (or fg-color ps-default-foreground)))
6062 (if ps-fg-validate-p
6063 (let ((bg (or bg-color ps-default-background))
6064 (el ps-foreground-list))
6065 (while (and el (equal fg bg))
6066 (setq fg (car el)
6067 el (cdr el)))))
6068 (or (equal fg ps-current-color)
6069 (ps-set-color fg)))
6071 (or (equal bg-color ps-current-bg)
6072 (ps-set-bg bg-color))
6074 ;; Specify effects (underline, overline, box, etc.)
6075 (cond
6076 ((not (integerp effects))
6077 (ps-output "0 EF\n")
6078 (setq ps-current-effect 0))
6079 ((/= effects ps-current-effect)
6080 (ps-output (number-to-string effects) " EF\n")
6081 (setq ps-current-effect effects)))
6083 ;; Starting at the beginning of the specified region...
6084 (save-excursion
6085 (goto-char from)
6087 ;; ...break the region up into chunks separated by tabs, linefeeds,
6088 ;; formfeeds, control characters, and plot each chunk.
6089 (while (< from to)
6090 ;; skip lines between cut markers
6091 (and ps-begin-cut-regexp ps-end-cut-regexp
6092 (looking-at ps-begin-cut-regexp)
6093 (progn
6094 (goto-char (match-end 0))
6095 (and (re-search-forward ps-end-cut-regexp to 'noerror)
6096 (= (following-char) ?\n)
6097 (forward-char 1))
6098 (setq from (point))))
6099 (if (re-search-forward ps-control-or-escape-regexp to t)
6100 ;; region with some control characters or some multi-byte characters
6101 (let* ((match-point (match-beginning 0))
6102 (match (char-after match-point)))
6103 (when (< from match-point)
6104 (ps-plot ps-basic-plot-string-function
6105 from match-point bg-color))
6106 (cond
6107 ((= match ?\t) ; tab
6108 (let ((linestart (line-beginning-position)))
6109 (forward-char -1)
6110 (setq from (+ linestart (current-column)))
6111 (when (re-search-forward "[ \t]+" to t)
6112 (ps-plot 'ps-basic-plot-whitespace
6113 from (+ linestart (current-column))
6114 bg-color))))
6116 ((= match ?\n) ; newline
6117 (if (looking-at "\f[^\n]")
6118 ;; \n\ftext\n ==>> next page, but keep line counting!!
6119 (progn
6120 (ps-skip-newline to)
6121 (ps-next-page))
6122 ;; \n\f\n ==>> it'll be handled by form feed
6123 ;; \ntext\n ==>> next line
6124 (ps-next-line)))
6126 ((= match ?\f) ; form feed
6127 ;; do not skip page if previous character is NEWLINE and
6128 ;; it is a beginning of page.
6129 (unless (and (equal (char-after (1- match-point)) ?\n)
6130 (= ps-height-remaining ps-print-height))
6131 ;; \f\n ==>> skip \n, but keep line counting!!
6132 (and (equal (following-char) ?\n)
6133 (ps-skip-newline to))
6134 (ps-next-page)))
6136 (t ; characters from 127 to 255
6137 (ps-control-character match)))
6138 (setq from (point)))
6139 ;; region without control characters
6140 (ps-plot ps-basic-plot-string-function from to bg-color)
6141 (setq from to)))))
6143 (defvar ps-string-control-codes
6144 (let ((table (make-vector 256 nil))
6145 (char ?\000))
6146 ;; control character
6147 (while (<= char ?\037)
6148 (aset table char (format "^%c" (+ char ?@)))
6149 (setq char (1+ char)))
6150 ;; printable character
6151 (while (< char ?\177)
6152 (aset table char (format "%c" char))
6153 (setq char (1+ char)))
6154 ;; DEL
6155 (aset table char "^?")
6156 ;; 8-bit character
6157 (while (<= (setq char (1+ char)) ?\377)
6158 (aset table char (format "\\%o" char)))
6159 table)
6160 "Vector used to map characters to a printable string.")
6162 (defun ps-control-character (char)
6163 (let* ((str (aref ps-string-control-codes char))
6164 (from (1- (point)))
6165 (len (length str))
6166 (to (+ from len))
6167 (char-width (ps-avg-char-width 'ps-font-for-text))
6168 (wrappoint (ps-find-wrappoint from to char-width)))
6169 (if (< (car wrappoint) to)
6170 (ps-continue-line))
6171 (setq ps-width-remaining (- ps-width-remaining (* len char-width)))
6172 (ps-output-string str)
6173 (ps-output " S\n")))
6176 (defsubst ps-face-foreground-color-p (attr)
6177 (memq attr '(foreground-color :foreground)))
6180 (defsubst ps-face-background-color-p (attr)
6181 (memq attr '(background-color :background)))
6184 (defsubst ps-face-color-p (attr)
6185 (memq attr '(foreground-color :foreground background-color :background)))
6188 (defun ps-face-extract-color (face-attrs)
6189 (let ((color (cdr face-attrs)))
6190 (if (listp color)
6191 (car color)
6192 color)))
6195 (defun ps-face-attributes (face)
6196 "Return face attribute vector.
6198 If FACE is not in `ps-print-face-extension-alist' or in
6199 `ps-print-face-alist', insert it on `ps-print-face-alist' and
6200 return the attribute vector.
6202 If FACE is not a valid face name, use default face."
6203 (and (stringp face) (facep face) (setq face (intern face)))
6204 (cond
6205 (ps-black-white-faces-alist
6206 (or (and (symbolp face)
6207 (cdr (assq face ps-black-white-faces-alist)))
6208 (vector 0 nil nil)))
6209 ((symbolp face)
6210 (cdr (or (assq face ps-print-face-extension-alist)
6211 (assq face ps-print-face-alist)
6212 (let* ((the-face (if (facep face) face 'default))
6213 (new-face (ps-screen-to-bit-face the-face)))
6214 (or (and (eq the-face 'default)
6215 (assq the-face ps-print-face-alist))
6216 (setq ps-print-face-alist
6217 (cons new-face ps-print-face-alist)))
6218 new-face))))
6219 ((ps-face-foreground-color-p (car face))
6220 (vector 0 (ps-face-extract-color face) nil))
6221 ((ps-face-background-color-p (car face))
6222 (vector 0 nil (ps-face-extract-color face)))
6224 (vector 0 nil nil))))
6227 (defun ps-face-background (face background)
6228 (and (cond ((eq ps-use-face-background t)) ; always
6229 ((null ps-use-face-background) nil) ; never
6230 ;; ps-user-face-background is a symbol face list
6231 ((symbolp face)
6232 (memq face ps-use-face-background))
6233 ((listp face)
6234 (or (ps-face-color-p (car face))
6235 (let (ok)
6236 (while face
6237 (if (or (memq (car face) ps-use-face-background)
6238 (ps-face-color-p (car face)))
6239 (setq face nil
6240 ok t)
6241 (setq face (cdr face))))
6242 ok)))
6244 nil)
6246 background))
6249 (defun ps-face-attribute-list (face-or-list)
6250 (cond
6251 ;; simple face
6252 ((not (listp face-or-list))
6253 (ps-face-attributes face-or-list))
6254 ;; only foreground color, not a `real' face
6255 ((ps-face-foreground-color-p (car face-or-list))
6256 (vector 0 (ps-face-extract-color face-or-list) nil))
6257 ;; only background color, not a `real' face
6258 ((ps-face-background-color-p (car face-or-list))
6259 (vector 0 nil (ps-face-extract-color face-or-list)))
6260 ;; Anonymous face.
6261 ((keywordp (car face-or-list))
6262 (vector 0 (plist-get face-or-list :foreground)
6263 (plist-get face-or-list :background)))
6264 ;; list of faces
6266 (let ((effects 0)
6267 foreground background face-attr face)
6268 (while face-or-list
6269 (setq face (car face-or-list)
6270 face-or-list (cdr face-or-list)
6271 face-attr (ps-face-attributes face)
6272 effects (logior effects (aref face-attr 0)))
6273 (or foreground (setq foreground (aref face-attr 1)))
6274 (or background
6275 (setq background (ps-face-background face (aref face-attr 2)))))
6276 (vector effects foreground background)))))
6279 (defconst ps-font-type (vector nil 'bold 'italic 'bold-italic))
6282 (defun ps-plot-with-face (from to face)
6283 (cond
6284 ((null face) ; print text with null face
6285 (ps-plot-region from to 0))
6286 ((eq face 'emacs--invisible--face)) ; skip invisible text!!!
6287 (t ; otherwise, text has a valid face
6288 (let* ((face-bit (ps-face-attribute-list face))
6289 (effect (aref face-bit 0))
6290 (foreground (aref face-bit 1))
6291 (background (ps-face-background face (aref face-bit 2)))
6292 (fg-color (if (and ps-color-p foreground)
6293 (ps-color-scale foreground)
6294 ps-default-color))
6295 (bg-color (and ps-color-p background
6296 (ps-color-scale background))))
6297 (ps-plot-region
6298 from to
6299 (ps-font-number 'ps-font-for-text
6300 (or (aref ps-font-type (logand effect 3))
6301 face))
6302 fg-color bg-color (lsh effect -2)))))
6303 (goto-char to))
6306 ;; Ensure that face-list is fbound.
6307 (or (fboundp 'face-list) (defalias 'face-list 'list-faces))
6310 (defun ps-build-reference-face-lists ()
6311 (setq ps-print-face-alist nil)
6312 (if ps-auto-font-detect
6313 (mapc 'ps-map-face (face-list))
6314 (mapc 'ps-set-face-bold ps-bold-faces)
6315 (mapc 'ps-set-face-italic ps-italic-faces)
6316 (mapc 'ps-set-face-underline ps-underlined-faces))
6317 (setq ps-build-face-reference nil))
6320 (defun ps-set-face-bold (face)
6321 (ps-set-face-attribute face 1))
6323 (defun ps-set-face-italic (face)
6324 (ps-set-face-attribute face 2))
6326 (defun ps-set-face-underline (face)
6327 (ps-set-face-attribute face 4))
6330 (defun ps-set-face-attribute (face effect)
6331 (let ((face-bit (cdr (ps-map-face face))))
6332 (aset face-bit 0 (logior (aref face-bit 0) effect))))
6335 (defun ps-map-face (face)
6336 (let* ((face-map (ps-screen-to-bit-face face))
6337 (ps-face-bit (cdr (assq (car face-map) ps-print-face-alist))))
6338 (if ps-face-bit
6339 ;; if face exists, merge both
6340 (let ((face-bit (cdr face-map)))
6341 (aset ps-face-bit 0 (logior (aref ps-face-bit 0) (aref face-bit 0)))
6342 (or (aref ps-face-bit 1) (aset ps-face-bit 1 (aref face-bit 1)))
6343 (or (aref ps-face-bit 2) (aset ps-face-bit 2 (aref face-bit 2))))
6344 ;; if face does not exist, insert it
6345 (setq ps-print-face-alist (cons face-map ps-print-face-alist)))
6346 face-map))
6349 (defun ps-screen-to-bit-face (face)
6350 (cons face
6351 (vector (logior (if (ps-face-bold-p face) 1 0) ; bold
6352 (if (ps-face-italic-p face) 2 0) ; italic
6353 (if (ps-face-underlined-p face) 4 0) ; underline
6354 (if (ps-face-strikeout-p face) 8 0) ; strikeout
6355 (if (ps-face-overline-p face) 16 0) ; overline
6356 (if (ps-face-box-p face) 64 0)) ; box
6357 (ps-face-foreground-name face)
6358 (ps-face-background-name face))))
6361 (declare-function jit-lock-fontify-now "jit-lock" (&optional start end))
6362 (declare-function lazy-lock-fontify-region "lazy-lock" (beg end))
6364 ;; to avoid compilation gripes
6365 (defun ps-print-ensure-fontified (start end)
6366 (cond ((and (boundp 'jit-lock-mode) (symbol-value 'jit-lock-mode))
6367 (jit-lock-fontify-now start end))
6368 ((and (boundp 'lazy-lock-mode) (symbol-value 'lazy-lock-mode))
6369 (lazy-lock-fontify-region start end))))
6372 (defun ps-generate-postscript-with-faces (from to)
6373 ;; Some initialization...
6374 (setq ps-current-effect 0)
6376 ;; Build the reference lists of faces if necessary.
6377 (when (or ps-always-build-face-reference
6378 ps-build-face-reference)
6379 (message "Collecting face information...")
6380 (ps-build-reference-face-lists))
6382 ;; Black/white printer.
6383 (setq ps-black-white-faces-alist nil)
6384 (and (eq ps-print-color-p 'black-white)
6385 (ps-extend-face-list ps-black-white-faces nil
6386 'ps-black-white-faces-alist))
6388 ;; Generate some PostScript.
6389 (save-restriction
6390 (narrow-to-region from to)
6391 (ps-print-ensure-fontified from to)
6392 (deactivate-mark) ;bug#16866.
6393 (ps-generate-postscript-with-faces1 from to)))
6395 (defun ps-generate-postscript (from to)
6396 (ps-plot-region from to 0))
6398 ;; These are autoloaded, but ps-mule generates autoloads at the end of
6399 ;; this file, so they are unknown at this point when compiling.
6400 (declare-function ps-mule-initialize "ps-mule" ())
6401 (declare-function ps-mule-begin-job "ps-mule" (from to))
6402 (declare-function ps-mule-end-job "ps-mule" ())
6404 (defun ps-generate (buffer from to genfunc)
6405 (save-excursion
6406 (let ((from (min to from))
6407 (to (max to from))
6408 ;; This avoids trouble if chars with read-only properties
6409 ;; are copied into ps-spool-buffer.
6410 (inhibit-read-only t))
6411 (save-restriction
6412 (narrow-to-region from to)
6413 (and ps-razzle-dazzle
6414 (message "Formatting...%3d%%" (setq ps-razchunk 0)))
6415 (setq ps-source-buffer buffer
6416 ps-spool-buffer (get-buffer-create ps-spool-buffer-name))
6417 (ps-init-output-queue)
6418 (let (safe-marker completed-safely needs-begin-file)
6419 (unwind-protect
6420 (progn
6421 (set-buffer ps-spool-buffer)
6422 (set-buffer-multibyte nil)
6424 ;; Get a marker and make it point to the current end of the
6425 ;; buffer, If an error occurs, we'll delete everything from
6426 ;; the end of this marker onwards.
6427 (setq safe-marker (make-marker))
6428 (set-marker safe-marker (point-max))
6430 (goto-char (point-min))
6431 (or (looking-at (regexp-quote ps-adobe-tag))
6432 (setq needs-begin-file t))
6434 (set-buffer ps-source-buffer)
6435 (save-excursion
6436 (let ((ps-print-page-p t)
6437 ps-even-or-odd-pages)
6438 (ps-begin-job genfunc)
6439 (when needs-begin-file
6440 (ps-begin-file)
6441 (ps-mule-initialize))
6442 (ps-mule-begin-job from to)
6443 (ps-selected-pages)))
6444 (ps-begin-page)
6445 (funcall genfunc from to)
6446 (ps-end-page)
6447 (ps-mule-end-job)
6448 (ps-end-job needs-begin-file)
6450 ;; Setting this variable tells the unwind form that the
6451 ;; the PostScript was generated without error.
6452 (setq completed-safely t))
6454 ;; Unwind form: If some bad mojo occurred while generating
6455 ;; PostScript, delete all the PostScript that was generated.
6456 ;; This protects the previously spooled files from getting
6457 ;; corrupted.
6458 (and (markerp safe-marker) (not completed-safely)
6459 (progn
6460 (set-buffer ps-spool-buffer)
6461 (delete-region (marker-position safe-marker) (point-max))))))
6463 (and ps-razzle-dazzle (message "Formatting...done"))))))
6466 (defun ps-end-job (needs-begin-file)
6467 (let ((ps-print-page-p t))
6468 (ps-flush-output)
6469 (save-excursion
6470 (let ((pages-per-sheet (mod ps-page-printed ps-n-up-printing))
6471 (total-lines (cdr ps-printing-region))
6472 (total-pages (ps-page-number)))
6473 (set-buffer ps-spool-buffer)
6474 (let (case-fold-search)
6475 ;; Back to the PS output buffer to set the last page n-up printing
6476 (goto-char (point-max))
6477 (and (> pages-per-sheet 0)
6478 (re-search-backward "^[0-9]+ BeginSheet$" nil t)
6479 (replace-match (format "%d BeginSheet" pages-per-sheet) t))
6480 ;; Back to the PS output buffer to set the page count
6481 (goto-char (point-min))
6482 (while (re-search-forward "^/Lines 0 def\n/PageCount 0 def$" nil t)
6483 (replace-match (format "/Lines %d def\n/PageCount %d def"
6484 total-lines total-pages) t)))))
6485 ;; Set dummy page
6486 (and ps-spool-duplex (= (mod ps-page-order 2) 1)
6487 (let ((ps-n-up-printing 0))
6488 (ps-header-sheet)
6489 (ps-output "/PrintHeader false def\n/ColumnIndex 0 def\n"
6490 "/PrintLineNumber false def\n"
6491 (number-to-string ps-lines-printed) " BeginPage\n")
6492 (ps-end-page)))
6493 ;; Set end of PostScript file
6494 (ps-end-sheet)
6495 (ps-output "\n%%Trailer\n%%Pages: "
6496 (number-to-string
6497 (if (and needs-begin-file
6498 ps-banner-page-when-duplexing)
6499 (1+ ps-page-order)
6500 ps-page-order))
6501 "\n\nEndDoc\n\n%%EOF\n")
6502 (and ps-end-with-control-d
6503 (ps-output "\C-d"))
6504 (ps-flush-output))
6505 ;; disable selected pages
6506 (setq ps-selected-pages nil))
6509 ;; Permit dynamic evaluation at print time of `ps-lpr-switches'.
6510 (defun ps-do-despool (filename)
6511 (if (or (not (boundp 'ps-spool-buffer))
6512 (not (symbol-value 'ps-spool-buffer)))
6513 (message "No spooled PostScript to print")
6514 (if filename
6515 (save-excursion
6516 (and ps-razzle-dazzle (message "Saving..."))
6517 (set-buffer ps-spool-buffer)
6518 (setq filename (expand-file-name filename))
6519 (let ((coding-system-for-write 'raw-text-unix))
6520 (write-region (point-min) (point-max) filename))
6521 (and ps-razzle-dazzle (message "Wrote %s" filename)))
6522 ;; Else, spool to the printer
6523 (with-current-buffer ps-spool-buffer
6524 (let* ((coding-system-for-write 'raw-text-unix)
6525 (printer-name (or ps-printer-name printer-name))
6526 (lpr-printer-switch ps-printer-name-option)
6527 (print-region-function ps-print-region-function)
6528 (lpr-command ps-lpr-command))
6529 (lpr-print-region (point-min) (point-max) ps-lpr-switches nil))))
6530 (kill-buffer ps-spool-buffer)))
6532 (defun ps-kill-emacs-check ()
6533 (let ((ps-buffer (get-buffer ps-spool-buffer-name)))
6534 (and (buffer-live-p ps-buffer)
6535 (buffer-modified-p ps-buffer)
6536 (y-or-n-p "Unprinted PostScript waiting; print now? ")
6537 (ps-despool)))
6538 (let ((ps-buffer (get-buffer ps-spool-buffer-name)))
6539 (and (buffer-live-p ps-buffer)
6540 (buffer-modified-p ps-buffer)
6541 (not (yes-or-no-p "Unprinted PostScript waiting; exit anyway? "))
6542 (error "Unprinted PostScript"))))
6544 (unless noninteractive
6545 (add-hook 'kill-emacs-hook #'ps-kill-emacs-check))
6547 (provide 'ps-print)
6549 ;;; ps-print.el ends here