(gomoku-plot-square, gomoku-init-display): Add help-echo to mouse-highlighted
[emacs.git] / lisp / ps-print.el
blob912fc9cfb53d3079166d192947ad05ce40785d4c
1 ;;; ps-print.el --- Print text from the buffer as PostScript
3 ;; Copyright (C) 1993,94,95,96,97,98,99,00,2001
4 ;; Free Software Foundation, Inc.
6 ;; Author: Jim Thompson (was <thompson@wg2.waii.com>)
7 ;; Author: Jacques Duthen (was <duthen@cegelec-red.fr>)
8 ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br>
9 ;; Author: Kenichi Handa <handa@etl.go.jp> (multi-byte characters)
10 ;; Maintainer: Kenichi Handa <handa@etl.go.jp> (multi-byte characters)
11 ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
12 ;; Keywords: wp, print, PostScript
13 ;; Time-stamp: <2001/05/30 17:44:36 vinicius>
14 ;; Version: 6.5.2
15 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
17 (defconst ps-print-version "6.5.2"
18 "ps-print.el, v 6.5.2 <2001/05/30 vinicius>
20 Vinicius's last change version -- this file may have been edited as part of
21 Emacs without changes to the version number. When reporting bugs, please also
22 report the version of Emacs, if any, that ps-print was distributed with.
24 Please send all bug fixes and enhancements to
25 Vinicius Jose Latorre <vinicius@cpqd.com.br>.
28 ;; This file is part of GNU Emacs.
30 ;; GNU Emacs is free software; you can redistribute it and/or modify it under
31 ;; the terms of the GNU General Public License as published by the Free
32 ;; Software Foundation; either version 2, or (at your option) any later
33 ;; version.
35 ;; GNU Emacs is distributed in the hope that it will be useful, but WITHOUT ANY
36 ;; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
37 ;; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
38 ;; details.
40 ;; You should have received a copy of the GNU General Public License along with
41 ;; GNU Emacs; see the file COPYING. If not, write to the Free Software
42 ;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
44 ;;; Commentary:
46 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
48 ;; About ps-print
49 ;; --------------
51 ;; This package provides printing of Emacs buffers on PostScript printers; the
52 ;; buffer's bold and italic text attributes are preserved in the printer
53 ;; output. ps-print is intended for use with Emacs or Lucid Emacs, together
54 ;; with a fontifying package such as font-lock or hilit.
56 ;; ps-print uses the same face attributes defined through font-lock or hilit to
57 ;; print a PostScript file, but some faces are better seeing on the screen than
58 ;; on paper, specially when you have a black/white PostScript printer.
60 ;; ps-print allows a remap of face to another one that it is better to print,
61 ;; for example, the face font-lock-comment-face (if you are using font-lock)
62 ;; could have bold or italic attribute when printing, besides foreground color.
63 ;; This remap improves printing look (see How Ps-Print Maps Faces).
66 ;; Using ps-print
67 ;; --------------
69 ;; ps-print provides eight commands for generating PostScript images of Emacs
70 ;; buffers:
72 ;; ps-print-buffer
73 ;; ps-print-buffer-with-faces
74 ;; ps-print-region
75 ;; ps-print-region-with-faces
76 ;; ps-spool-buffer
77 ;; ps-spool-buffer-with-faces
78 ;; ps-spool-region
79 ;; ps-spool-region-with-faces
81 ;; These commands all perform essentially the same function: they generate
82 ;; PostScript images suitable for printing on a PostScript printer or
83 ;; displaying with GhostScript. These commands are collectively referred to as
84 ;; "ps-print- commands".
86 ;; The word "print" or "spool" in the command name determines when the
87 ;; PostScript image is sent to the printer:
89 ;; print - The PostScript image is immediately sent to the printer;
91 ;; spool - The PostScript image is saved temporarily in an Emacs
92 ;; buffer. Many images may be spooled locally before
93 ;; printing them. To send the spooled images to the
94 ;; printer, use the command `ps-despool'.
96 ;; The spooling mechanism was designed for printing lots of small files (mail
97 ;; messages or netnews articles) to save paper that would otherwise be wasted
98 ;; on banner pages, and to make it easier to find your output at the printer
99 ;; (it's easier to pick up one 50-page printout than to find 50 single-page
100 ;; printouts).
102 ;; ps-print has a hook in the `kill-emacs-hook' so that you won't accidentally
103 ;; quit from Emacs while you have unprinted PostScript waiting in the spool
104 ;; buffer. If you do attempt to exit with spooled PostScript, you'll be asked
105 ;; if you want to print it, and if you decline, you'll be asked to confirm the
106 ;; exit; this is modeled on the confirmation that Emacs uses for modified
107 ;; buffers.
109 ;; The word "buffer" or "region" in the command name determines how much of the
110 ;; buffer is printed:
112 ;; buffer - Print the entire buffer.
114 ;; region - Print just the current region.
116 ;; The -with-faces suffix on the command name means that the command will
117 ;; include font, color, and underline information in the PostScript image, so
118 ;; the printed image can look as pretty as the buffer. The ps-print- commands
119 ;; without the -with-faces suffix don't include font, color, or underline
120 ;; information; images printed with these commands aren't as pretty, but are
121 ;; faster to generate.
123 ;; Two ps-print- command examples:
125 ;; ps-print-buffer - print the entire buffer, without font,
126 ;; color, or underline information, and
127 ;; send it immediately to the printer.
129 ;; ps-spool-region-with-faces - print just the current region; include
130 ;; font, color, and underline information,
131 ;; and spool the image in Emacs to send to
132 ;; the printer later.
135 ;; Invoking Ps-Print
136 ;; -----------------
138 ;; To print your buffer, type
140 ;; M-x ps-print-buffer
142 ;; or substitute one of the other seven ps-print- commands. The command will
143 ;; generate the PostScript image and print or spool it as specified. By giving
144 ;; the command a prefix argument
146 ;; C-u M-x ps-print-buffer
148 ;; it will save the PostScript image to a file instead of sending it to the
149 ;; printer; you will be prompted for the name of the file to save the image to.
150 ;; The prefix argument is ignored by the commands that spool their images, but
151 ;; you may save the spooled images to a file by giving a prefix argument to
152 ;; `ps-despool':
154 ;; C-u M-x ps-despool
156 ;; When invoked this way, `ps-despool' will prompt you for the name of the file
157 ;; to save to.
159 ;; Any of the `ps-print-' commands can be bound to keys; I recommend binding
160 ;; `ps-spool-buffer-with-faces', `ps-spool-region-with-faces', and
161 ;; `ps-despool'. Here are the bindings I use on my Sun 4 keyboard:
163 ;; (global-set-key 'f22 'ps-spool-buffer-with-faces) ;f22 is prsc
164 ;; (global-set-key '(shift f22) 'ps-spool-region-with-faces)
165 ;; (global-set-key '(control f22) 'ps-despool)
168 ;; The Printer Interface
169 ;; ---------------------
171 ;; The variables `ps-lpr-command' and `ps-lpr-switches' determine what command
172 ;; is used to send the PostScript images to the printer, and what arguments to
173 ;; give the command. These are analogous to `lpr-command' and `lpr-switches'.
175 ;; Make sure that they contain appropriate values for your system;
176 ;; see the usage notes below and the documentation of these variables.
178 ;; The variable `ps-printer-name' determines the name of a local printer for
179 ;; printing PostScript files.
181 ;; The variable `ps-printer-name-option' determines the option used by some
182 ;; utilities to indicate the printer name, it's used only when
183 ;; `ps-printer-name' is a non-empty string. If you're using lpr utility to
184 ;; print, for example, `ps-printer-name-option' should be set to "-P".
186 ;; NOTE: `ps-lpr-command' and `ps-lpr-switches' take their initial values from
187 ;; the variables `lpr-command' and `lpr-switches'. If you have
188 ;; `lpr-command' set to invoke a pretty-printer such as `enscript', then
189 ;; ps-print won't work properly. `ps-lpr-command' must name a program
190 ;; that does not format the files it prints.
191 ;; `ps-printer-name' takes its initial value from the variable
192 ;; `printer-name'. `ps-printer-name-option' tries to guess which system
193 ;; Emacs is running and takes its initial value in accordance with this
194 ;; guess.
196 ;; The variable `ps-print-region-function' specifies a function to print the
197 ;; region on a PostScript printer.
198 ;; See definition of `call-process-region' for calling conventions. The fourth
199 ;; and the sixth arguments are both nil.
201 ;; The variable `ps-manual-feed' indicates if the printer will manually feed
202 ;; paper. If it's nil, automatic feeding takes place. If it's non-nil, manual
203 ;; feeding takes place. The default is nil (automatic feeding).
205 ;; The variable `ps-end-with-control-d' specifies whether C-d (\x04) should be
206 ;; inserted at end of PostScript generated. Non-nil means do so. The default
207 ;; is nil (don't insert).
209 ;; If you're using Emacs for Windows 95/98/NT or MS-DOS, don't forget to
210 ;; customize the following variables: `ps-printer-name',
211 ;; `ps-printer-name-option', `ps-lpr-command', `ps-lpr-switches' and
212 ;; `ps-spool-config'. See these variables documentation in the code or by
213 ;; typing, for example, C-h v ps-printer-name RET.
216 ;; The Page Layout
217 ;; ---------------
219 ;; All dimensions are floats in PostScript points.
220 ;; 1 inch == 2.54 cm == 72 points
221 ;; 1 cm == (/ 1 2.54) inch == (/ 72 2.54) points
223 ;; The variable `ps-paper-type' determines the size of paper ps-print formats
224 ;; for; it should contain one of the symbols: `a4' `a3' `letter' `legal'
225 ;; `letter-small' `tabloid' `ledger' `statement' `executive' `a4small' `b4'
226 ;; `b5'.
228 ;; If variable `ps-warn-paper-type' is nil, it's *not* given an error if
229 ;; PostScript printer doesn't have a paper with the size indicated by
230 ;; `ps-paper-type', instead it uses the default paper size. If variable
231 ;; `ps-warn-paper-type' is non-nil, it's given an error if PostScript printer
232 ;; doesn't have a paper with the size indicated by `ps-paper-type'. It's used
233 ;; when `ps-spool-config' is set to `setpagedevice' (see section Duplex
234 ;; Printers). The default value is non-nil (it gives an error).
236 ;; The variable `ps-landscape-mode' determines the orientation of the printing
237 ;; on the page: nil means `portrait' mode, non-nil means `landscape' mode.
238 ;; There is no oblique mode yet, though this is easy to do in ps.
240 ;; In landscape mode, the text is NOT scaled: you may print 70 lines in
241 ;; portrait mode and only 50 lines in landscape mode. The margins represent
242 ;; margins in the printed paper: the top margin is the margin between the top
243 ;; of the page and the printed header, whatever the orientation is.
245 ;; The variable `ps-number-of-columns' determines the number of columns both in
246 ;; landscape and portrait mode.
247 ;; You can use:
248 ;; - (the standard) one column portrait mode.
249 ;; - (my favorite) two columns landscape mode (which spares trees).
250 ;; but also:
251 ;; - one column landscape mode for files with very long lines.
252 ;; - multi-column portrait or landscape mode.
254 ;; The variable `ps-print-upside-down' determines other orientation for
255 ;; printing page: nil means `normal' printing, non-nil means `upside-down'
256 ;; printing (that is, the page is rotated by 180 grades). The default value is
257 ;; nil (`normal' printing).
259 ;; The `upside-down' orientation can be used in portrait or landscape mode.
261 ;; The variable `ps-selected-pages' specifies which pages to print. If it's
262 ;; nil, all pages are printed. If it's a list, the list element may be an
263 ;; integer or a cons cell (FROM . TO) designating FROM page to TO page; any
264 ;; invalid element is ignored, that is, an integer lesser than one or if FROM
265 ;; is greater than TO. Otherwise, it's treated as nil. The default value is
266 ;; nil (print all pages). After ps-print processing `ps-selected-pages' is set
267 ;; to nil. But the latest `ps-selected-pages' is saved in
268 ;; `ps-last-selected-pages' (see it for documentation). So you can restore the
269 ;; latest selected pages by using `ps-last-selected-pages' or by calling
270 ;; `ps-restore-selected-pages' command (see it for documentation).
272 ;; The variable `ps-even-or-odd-pages' specifies if it prints even/odd pages.
274 ;; Valid values are:
276 ;; nil print all pages.
278 ;; even-page print only even pages.
280 ;; odd-page print only odd pages.
282 ;; even-sheet print only even sheets.
284 ;; odd-sheet print only odd sheets.
286 ;; Any other value is treated as nil. The default value is nil.
288 ;; See `ps-even-or-odd-pages' for more detailed documentation.
291 ;; Horizontal layout
292 ;; -----------------
294 ;; The horizontal layout is determined by the variables
295 ;; `ps-left-margin' `ps-inter-column' `ps-right-margin'
296 ;; as follows:
298 ;; ------------------------------------------
299 ;; | | | | | | | |
300 ;; | lm | text | ic | text | ic | text | rm |
301 ;; | | | | | | | |
302 ;; ------------------------------------------
304 ;; If `ps-number-of-columns' is 1, `ps-inter-column' is not relevant.
305 ;; Usually, lm = rm > 0 and ic = lm
306 ;; If (ic < 0), the text of adjacent columns can overlap.
309 ;; Vertical layout
310 ;; ---------------
312 ;; The vertical layout is determined by the variables
313 ;; `ps-bottom-margin' `ps-top-margin' `ps-header-offset' `ps-footer-offset'
314 ;; as follows:
316 ;; |--------| |--------| |--------| |--------|
317 ;; | tm | | tm | | tm | | tm |
318 ;; |--------| |--------| |--------| |--------|
319 ;; | header | | | | header | | |
320 ;; |--------| | | |--------| | |
321 ;; | ho | | | | ho | | |
322 ;; |--------| | | |--------| | |
323 ;; | | | | | | | |
324 ;; | text | or | text | or | text | or | text |
325 ;; | | | | | | | |
326 ;; | | |--------| |--------| | |
327 ;; | | | fo | | fo | | |
328 ;; | | |--------| |--------| | |
329 ;; | | | footer | | footer | | |
330 ;; |--------| |--------| |--------| |--------|
331 ;; | bm | | bm | | bm | | bm |
332 ;; |--------| |--------| |--------| |--------|
334 ;; If `ps-print-header' is nil, `ps-header-offset' is not relevant.
335 ;; If `ps-print-footer' is nil, `ps-footer-offset' is not relevant.
336 ;; The margins represent margins in the printed paper:
337 ;; the top margin is the margin between the top of the page and the printed
338 ;; header, whatever the orientation is;
339 ;; the bottom margin is the margin between the bottom of the page and the
340 ;; printed footer, whatever the orientation is.
343 ;; Headers & Footers
344 ;; -----------------
346 ;; ps-print can print headers at the top of each column or at the top of each
347 ;; page; the default headers contain the following four items: on the left, the
348 ;; name of the buffer and, if the buffer is visiting a file, the file's
349 ;; directory; on the right, the page number and date of printing. The default
350 ;; headers look something like this:
352 ;; ps-print.el 1/21
353 ;; /home/jct/emacs-lisp/ps/new 94/12/31
355 ;; When printing on duplex printers, left and right are reversed so that the
356 ;; page numbers are toward the outside (cf. `ps-spool-duplex').
358 ;; Headers are configurable:
359 ;; To turn them off completely, set `ps-print-header' to nil.
360 ;; To turn off the header's gaudy framing box,
361 ;; set `ps-print-header-frame' to nil.
363 ;; The variable `ps-header-frame-alist' specifies header frame properties
364 ;; alist. Valid frame properties are:
366 ;; fore-color Specify the foreground frame color.
367 ;; It should be a float number between 0.0 (black color)
368 ;; and 1.0 (white color), a string which is a color name,
369 ;; or a list of 3 float numbers which corresponds to the
370 ;; Red Green Blue color scale, each float number between
371 ;; 0.0 (dark color) and 1.0 (bright color).
372 ;; The default is 0 ("black").
374 ;; back-color Specify the background frame color (similar to
375 ;; fore-color). The default is 0.9 ("gray90").
377 ;; shadow-color Specify the shadow color (similar to fore-color).
378 ;; The default is 0 ("black").
380 ;; border-color Specify the border color (similar to fore-color).
381 ;; The default is 0 ("black").
383 ;; border-width Specify the border width.
384 ;; The default is 0.4.
386 ;; Any other property is ignored.
388 ;; Don't change this alist directly, instead use customization, or `ps-value',
389 ;; `ps-get', `ps-put' and `ps-del' functions (see them for documentation).
391 ;; To print only one header at the top of each page, set
392 ;; `ps-print-only-one-header' to t.
394 ;; To switch headers, set `ps-switch-header' to:
396 ;; nil Never switch headers.
398 ;; t Always switch headers.
400 ;; duplex Switch headers only when duplexing is on, that is, when
401 ;; `ps-spool-duplex' is non-nil (see Duplex Printers).
403 ;; Any other value is treated as t. The default value is `duplex'.
405 ;; The font family and size of text in the header are determined by the
406 ;; variables `ps-header-font-family', `ps-header-font-size' and
407 ;; `ps-header-title-font-size' (see below).
409 ;; The variable `ps-header-line-pad' determines the portion of a header title
410 ;; line height to insert between the header frame and the text it contains,
411 ;; both in the vertical and horizontal directions: .5 means half a line.
413 ;; Page numbers are printed in `n/m' format, indicating page n of m pages; to
414 ;; omit the total page count and just print the page number, set
415 ;; `ps-show-n-of-n' to nil.
417 ;; The amount of information in the header can be changed by changing the
418 ;; number of lines. To show less, set `ps-header-lines' to 1, and the header
419 ;; will show only the buffer name and page number. To show more, set
420 ;; `ps-header-lines' to 3, and the header will show the time of printing below
421 ;; the date.
423 ;; To change the content of the headers, change the variables `ps-left-header'
424 ;; and `ps-right-header'.
425 ;; These variables are lists, specifying top-to-bottom the text to display on
426 ;; the left or right side of the header. Each element of the list should be a
427 ;; string or a symbol. Strings are inserted directly into the PostScript
428 ;; arrays, and should contain the PostScript string delimiters '(' and ')'.
430 ;; Symbols in the header format lists can either represent functions or
431 ;; variables. Functions are called, and should return a string to show in the
432 ;; header. Variables should contain strings to display in the header. In
433 ;; either case, function or variable, the PostScript string delimiters are
434 ;; added by ps-print, and should not be part of the returned value.
436 ;; Here's an example: say we want the left header to display the text
438 ;; Moe
439 ;; Larry
440 ;; Curly
442 ;; where we have a function to return "Moe"
444 ;; (defun moe-func ()
445 ;; "Moe")
447 ;; a variable specifying "Larry"
449 ;; (setq larry-var "Larry")
451 ;; and a literal for "Curly". Here's how `ps-left-header' should be set:
453 ;; (setq ps-left-header (list 'moe-func 'larry-var "(Curly)"))
455 ;; Note that Curly has the PostScript string delimiters inside his quotes --
456 ;; those aren't misplaced lisp delimiters!
458 ;; Without them, PostScript would attempt to call the undefined function Curly,
459 ;; which would result in a PostScript error.
461 ;; Since most printers don't report PostScript errors except by aborting the
462 ;; print job, this kind of error can be hard to track down.
464 ;; Consider yourself warned!
466 ;; ps-print also print footers. The footer variables are: `ps-print-footer',
467 ;; `ps-footer-offset', `ps-print-footer-frame', `ps-footer-font-family',
468 ;; `ps-footer-font-size', `ps-footer-line-pad', `ps-footer-lines',
469 ;; `ps-left-footer', `ps-right-footer' and `ps-footer-frame-alist'. These
470 ;; variables are similar to those one that control headers.
472 ;; The variables `ps-print-only-one-header' and `ps-switch-header' also control
473 ;; the footer (The same way that control header).
475 ;; As a footer example, if you want to have a centered page number in the
476 ;; footer but without headers, set:
478 ;; (setq ps-print-header nil
479 ;; ps-print-footer t
480 ;; ps-print-footer-frame nil
481 ;; ps-footer-lines 1
482 ;; ps-right-footer nil
483 ;; ps-left-footer
484 ;; (list (concat "{pagenumberstring dup stringwidth pop"
485 ;; " 2 div PrintWidth 2 div exch sub 0 rmoveto}")))
488 ;; PostScript Prologue Header
489 ;; --------------------------
491 ;; It is possible to add PostScript prologue header comments besides that
492 ;; ps-print generates by setting the variable `ps-print-prologue-header'.
494 ;; `ps-print-prologue-header' may be a string or a symbol function which
495 ;; returns a string. Note that this string is inserted on PostScript prologue
496 ;; header section which is used to define some document characteristic through
497 ;; PostScript special comments, like "%%Requirements: jog\n".
499 ;; By default `ps-print-prologue-header' is nil.
501 ;; ps-print always inserts the %%Requirements: comment, so if you need to
502 ;; insert more requirements put them first in `ps-print-prologue-header' using
503 ;; the "%%+" comment. For example, if you need to set numcopies to 3 and jog
504 ;; on requirements and set %%LanguageLevel: to 2, do:
506 ;; (setq ps-print-prologue-header
507 ;; "%%+ numcopies(3) jog\n%%LanguageLevel: 2\n")
509 ;; The duplex requirement is inserted by ps-print (see section Duplex
510 ;; Printers).
512 ;; Do not forget to terminate the string with "\n".
514 ;; For more information about PostScript document comments, see:
515 ;; PostScript Language Reference Manual (2nd edition)
516 ;; Adobe Systems Incorporated
517 ;; Appendix G: Document Structuring Conventions -- Version 3.0
519 ;; It is also possible to add an user defined PostScript prologue code before
520 ;; all generated prologue code by setting the variable
521 ;; `ps-user-defined-prologue'.
523 ;; `ps-user-defined-prologue' may be a string or a symbol function which
524 ;; returns a string. Note that this string is inserted after `ps-adobe-tag'
525 ;; and PostScript prologue comments, and before ps-print PostScript prologue
526 ;; code section. That is, this string is inserted after error handler
527 ;; initialization and before ps-print settings.
529 ;; By default `ps-user-defined-prologue' is nil.
531 ;; It's strongly recommended only insert PostScript code and/or comments
532 ;; specific for your printing system particularities. For example, some
533 ;; special initialization that only your printing system needs.
535 ;; Do not insert code for duplex printing, n-up printing or error handler,
536 ;; ps-print handles this in a suitable way.
538 ;; For more information about PostScript, see:
539 ;; PostScript Language Reference Manual (2nd edition)
540 ;; Adobe Systems Incorporated
542 ;; As an example for `ps-user-defined-prologue' setting:
544 ;; ;; Setting for HP PostScript printer
545 ;; (setq ps-user-defined-prologue
546 ;; (concat "<</DeferredMediaSelection true /PageSize [612 792] "
547 ;; "/MediaPosition 2 /MediaType (Plain)>> setpagedevice"))
550 ;; PostScript Error Handler
551 ;; ------------------------
553 ;; ps-print instruments generated PostScript code with an error handler.
555 ;; The variable `ps-error-handler-message' specifies where the error handler
556 ;; message should be sent.
558 ;; Valid values are:
560 ;; none catch the error and *DON'T* send any message.
562 ;; paper catch the error and print on paper the error message.
563 ;; This is the default value.
565 ;; system catch the error and send back the error message to
566 ;; printing system. This is useful only if printing
567 ;; system send back an email reporting the error, or if
568 ;; there is some other alternative way to report back the
569 ;; error from the system to you.
571 ;; paper-and-system catch the error, print on paper the error message and
572 ;; send back the error message to printing system.
574 ;; Any other value is treated as `paper'.
577 ;; Duplex Printers
578 ;; ---------------
580 ;; If you have a duplex-capable printer (one that prints both sides of the
581 ;; paper), set `ps-spool-duplex' to t.
582 ;; ps-print will insert blank pages to make sure each buffer starts on the
583 ;; correct side of the paper.
585 ;; The variable `ps-spool-config' specifies who is the responsible for setting
586 ;; duplex and page size. Valid values are:
588 ;; lpr-switches duplex and page size are configured by `ps-lpr-switches'.
589 ;; Don't forget to set `ps-lpr-switches' to select duplex
590 ;; printing for your printer.
592 ;; setpagedevice duplex and page size are configured by ps-print using the
593 ;; setpagedevice PostScript operator.
595 ;; nil duplex and page size are configured by ps-print *not* using
596 ;; the setpagedevice PostScript operator.
598 ;; Any other value is treated as nil.
600 ;; The default value is `lpr-switches'.
602 ;; WARNING: The setpagedevice PostScript operator affects ghostview utility
603 ;; when viewing file generated using landscape. Also on some
604 ;; printers, setpagedevice affects zebra stripes; on other printers,
605 ;; setpagedevice affects the left margin.
606 ;; Besides all that, if your printer does not have the paper size
607 ;; specified by setpagedevice, your printing will be aborted.
608 ;; So, if you need to use setpagedevice, set `ps-spool-config' to
609 ;; `setpagedevice', generate a test file and send it to your printer;
610 ;; if the printed file isn't ok, set `ps-spool-config' to nil.
612 ;; The variable `ps-spool-tumble' specifies how the page images on opposite
613 ;; sides of a sheet are oriented with respect to each other. If
614 ;; `ps-spool-tumble' is nil, produces output suitable for binding on the left
615 ;; or right. If `ps-spool-tumble' is non-nil, produces output suitable for
616 ;; binding at the top or bottom. It has effect only when `ps-spool-duplex' is
617 ;; non-nil. The default value is nil.
619 ;; Some printer system prints a header page and forces the first page be
620 ;; printed on header page back, when using duplex. If your printer system has
621 ;; this behavior, set variable `ps-banner-page-when-duplexing' to t.
623 ;; When `ps-banner-page-when-duplexing' is non-nil, it prints a blank page as
624 ;; the very first printed page. So, it behaves as the very first character of
625 ;; buffer (or region) is ^L (\014).
627 ;; The default for `ps-banner-page-when-duplexing' is nil (*don't* skip the
628 ;; very first page).
631 ;; N-up Printing
632 ;; -------------
634 ;; The variable `ps-n-up-printing' specifies the number of pages per sheet of
635 ;; paper. The value specified must be between 1 and 100. The default is 1.
637 ;; NOTE: some PostScript printer may crash printing if `ps-n-up-printing' is
638 ;; set to a high value (for example, 23). If this happens, set a lower value.
640 ;; The variable `ps-n-up-margin' specifies the margin in points between the
641 ;; sheet border and the n-up printing. The default is 1 cm (or 0.3937 inches,
642 ;; or 28.35 points).
644 ;; If variable `ps-n-up-border-p' is non-nil a border is drawn around each
645 ;; page. The default is t.
647 ;; The variable `ps-n-up-filling' specifies how page matrix is filled on each
648 ;; sheet of paper. Following are the valid values for `ps-n-up-filling' with a
649 ;; filling example using a 3x4 page matrix:
651 ;; left-top 1 2 3 4 left-bottom 9 10 11 12
652 ;; 5 6 7 8 5 6 7 8
653 ;; 9 10 11 12 1 2 3 4
655 ;; right-top 4 3 2 1 right-bottom 12 11 10 9
656 ;; 8 7 6 5 8 7 6 5
657 ;; 12 11 10 9 4 3 2 1
659 ;; top-left 1 4 7 10 bottom-left 3 6 9 12
660 ;; 2 5 8 11 2 5 8 11
661 ;; 3 6 9 12 1 4 7 10
663 ;; top-right 10 7 4 1 bottom-right 12 9 6 3
664 ;; 11 8 5 2 11 8 5 2
665 ;; 12 9 6 3 10 7 4 1
667 ;; Any other value is treated as left-top.
669 ;; The default value is left-top.
672 ;; Control And 8-bit Characters
673 ;; ----------------------------
675 ;; The variable `ps-print-control-characters' specifies whether you want to see
676 ;; a printable form for control and 8-bit characters, that is, instead of
677 ;; sending, for example, a ^D (\004) to printer, it is sent the string "^D".
679 ;; Valid values for `ps-print-control-characters' are:
681 ;; 8-bit This is the value to use when you want an ASCII encoding of
682 ;; any control or non-ASCII character. Control characters are
683 ;; encoded as "^D", and non-ASCII characters have an
684 ;; octal encoding.
686 ;; control-8-bit This is the value to use when you want an ASCII encoding of
687 ;; any control character, whether it is 7 or 8-bit.
688 ;; European 8-bits accented characters are printed according
689 ;; the current font.
691 ;; control Only ASCII control characters have an ASCII encoding.
692 ;; European 8-bits accented characters are printed according
693 ;; the current font.
695 ;; nil No ASCII encoding. Any character is printed according the
696 ;; current font.
698 ;; Any other value is treated as nil.
700 ;; The default is `control-8-bit'.
702 ;; Characters TAB, NEWLINE and FORMFEED are always treated by ps-print engine.
705 ;; Printing Multi-byte Buffer
706 ;; --------------------------
708 ;; See ps-mule.el for documentation.
711 ;; Line Number
712 ;; -----------
714 ;; The variable `ps-line-number' specifies whether to number each line;
715 ;; non-nil means do so. The default is nil (don't number each line).
717 ;; The variable `ps-line-number-color' specifies the color for line number.
718 ;; See `ps-zebra-color' for documentation. The default is "black" (or 0.0, or
719 ;; '(0.0 0.0 0.0)).
721 ;; The variable `ps-line-number-font' specifies the font for line number.
722 ;; The default is "Times-Italic".
724 ;; The variable `ps-line-number-font-size' specifies the font size in points
725 ;; for line number. See `ps-font-size' for documentation. The default is 6.
727 ;; The variable `ps-line-number-step' specifies the interval that line number
728 ;; is printed. For example, if `ps-line-number-step' is set to 2, the printing
729 ;; will look like:
731 ;; 1 one line
732 ;; one line
733 ;; 3 one line
734 ;; one line
735 ;; 5 one line
736 ;; one line
737 ;; ...
739 ;; Valid values are:
741 ;; integer an integer that specifies the interval that line number is
742 ;; printed. If it's lesser than or equal to zero, it's used the
743 ;; value 1.
745 ;; `zebra' specifies that only the line number of the first line in a
746 ;; zebra stripe is to be printed.
748 ;; Any other value is treated as `zebra'.
749 ;; The default value is 1, so each line number is printed.
751 ;; The variable `ps-line-number-start' specifies the starting point in the
752 ;; interval given by `ps-line-number-step'. For example, if
753 ;; `ps-line-number-step' is set to 3 and `ps-line-number-start' is set to 3,
754 ;; the printing will look like:
756 ;; one line
757 ;; one line
758 ;; 3 one line
759 ;; one line
760 ;; one line
761 ;; 6 one line
762 ;; one line
763 ;; one line
764 ;; 9 one line
765 ;; one line
766 ;; ...
768 ;; The values for `ps-line-number-start':
770 ;; * If `ps-line-number-step' is an integer, must be between 1 and the value
771 ;; of `ps-line-number-step' inclusive.
773 ;; * If `ps-line-number-step' is set to `zebra', must be between 1 and the
774 ;; value of `ps-zebra-stripe-height' inclusive.
776 ;; The default value is 1, so the line number of the first line of each
777 ;; interval is printed.
780 ;; Zebra Stripes
781 ;; -------------
783 ;; Zebra stripes are a kind of background that appear "underneath" the text and
784 ;; can make the text easier to read. They look like this:
786 ;; XXXXXXXXXXXXXXXXXXXXXXXX
787 ;; XXXXXXXXXXXXXXXXXXXXXXXX
788 ;; XXXXXXXXXXXXXXXXXXXXXXXX
792 ;; XXXXXXXXXXXXXXXXXXXXXXXX
793 ;; XXXXXXXXXXXXXXXXXXXXXXXX
794 ;; XXXXXXXXXXXXXXXXXXXXXXXX
796 ;; The blocks of X's represent rectangles filled with a light gray color.
797 ;; Each rectangle extends all the way across the page.
799 ;; The height, in lines, of each rectangle is controlled by the variable
800 ;; `ps-zebra-stripe-height', which is 3 by default. The distance between
801 ;; stripes equals the height of a stripe.
803 ;; The variable `ps-zebra-stripes' controls whether to print zebra stripes.
804 ;; Non-nil means yes, nil means no. The default is nil.
806 ;; The variable `ps-zebra-color' controls the zebra stripes gray scale or RGB
807 ;; color. It should be a float number between 0.0 (black color) and 1.0 (white
808 ;; color), a string which is a color name, or a list of 3 numbers which
809 ;; corresponds to the Red Green Blue color scale.
810 ;; The default is 0.95 (or "gray95", or '(0.95 0.95 0.95)).
812 ;; The variable `ps-zebra-stripe-follow' specifies how zebra stripes continue
813 ;; on next page. Visually, valid values are (the character `+' at right of
814 ;; each column indicates that a line is printed):
816 ;; `nil' `follow' `full' `full-follow'
817 ;; Current Page -------- ----------- --------- ----------------
818 ;; 1 XXXXX + 1 XXXXXXXX + 1 XXXXXX + 1 XXXXXXXXXXXXX +
819 ;; 2 XXXXX + 2 XXXXXXXX + 2 XXXXXX + 2 XXXXXXXXXXXXX +
820 ;; 3 XXXXX + 3 XXXXXXXX + 3 XXXXXX + 3 XXXXXXXXXXXXX +
821 ;; 4 + 4 + 4 + 4 +
822 ;; 5 + 5 + 5 + 5 +
823 ;; 6 + 6 + 6 + 6 +
824 ;; 7 XXXXX + 7 XXXXXXXX + 7 XXXXXX + 7 XXXXXXXXXXXXX +
825 ;; 8 XXXXX + 8 XXXXXXXX + 8 XXXXXX + 8 XXXXXXXXXXXXX +
826 ;; 9 XXXXX + 9 XXXXXXXX + 9 XXXXXX + 9 XXXXXXXXXXXXX +
827 ;; 10 + 10 +
828 ;; 11 + 11 +
829 ;; -------- ----------- --------- ----------------
830 ;; Next Page -------- ----------- --------- ----------------
831 ;; 12 XXXXX + 12 + 10 XXXXXX + 10 +
832 ;; 13 XXXXX + 13 XXXXXXXX + 11 XXXXXX + 11 +
833 ;; 14 XXXXX + 14 XXXXXXXX + 12 XXXXXX + 12 +
834 ;; 15 + 15 XXXXXXXX + 13 + 13 XXXXXXXXXXXXX +
835 ;; 16 + 16 + 14 + 14 XXXXXXXXXXXXX +
836 ;; 17 + 17 + 15 + 15 XXXXXXXXXXXXX +
837 ;; 18 XXXXX + 18 + 16 XXXXXX + 16 +
838 ;; 19 XXXXX + 19 XXXXXXXX + 17 XXXXXX + 17 +
839 ;; 20 XXXXX + 20 XXXXXXXX + 18 XXXXXX + 18 +
840 ;; 21 + 21 XXXXXXXX +
841 ;; 22 + 22 +
842 ;; -------- ----------- --------- ----------------
844 ;; Any other value is treated as `nil'.
846 ;; See also section How Ps-Print Has A Text And/Or Image On Background.
849 ;; Hooks
850 ;; -----
852 ;; ps-print has the following hook variables:
854 ;; `ps-print-hook'
855 ;; It is evaluated once before any printing process. This is the right
856 ;; place to initialize ps-print global data.
857 ;; For an example, see section Adding a New Font Family.
859 ;; `ps-print-begin-sheet-hook'
860 ;; It is evaluated on each beginning of sheet of paper.
861 ;; If `ps-n-up-printing' is equal to 1, `ps-print-begin-page-hook' is never
862 ;; evaluated.
864 ;; `ps-print-begin-page-hook'
865 ;; It is evaluated on each beginning of page, except in the beginning of
866 ;; page that `ps-print-begin-sheet-hook' is evaluated.
868 ;; `ps-print-begin-column-hook'
869 ;; It is evaluated on each beginning of column, except in the beginning of
870 ;; column that `ps-print-begin-page-hook' is evaluated or that
871 ;; `ps-print-begin-sheet-hook' is evaluated.
874 ;; Font Managing
875 ;; -------------
877 ;; ps-print now knows rather precisely some fonts: the variable
878 ;; `ps-font-info-database' contains information for a list of font families
879 ;; (currently mainly `Courier' `Helvetica' `Times' `Palatino'
880 ;; `Helvetica-Narrow' `NewCenturySchlbk'). Each font family contains the font
881 ;; names for standard, bold, italic and bold-italic characters, a reference
882 ;; size (usually 10) and the corresponding line height, width of a space and
883 ;; average character width.
885 ;; The variable `ps-font-family' determines which font family is to be used for
886 ;; ordinary text. If its value does not correspond to a known font family, an
887 ;; error message is printed into the `*Messages*' buffer, which lists the
888 ;; currently available font families.
890 ;; The variable `ps-font-size' determines the size (in points) of the font for
891 ;; ordinary text, when generating PostScript. Its value is a float or a cons
892 ;; of floats which has the following form:
894 ;; (LANDSCAPE-SIZE . PORTRAIT-SIZE)
896 ;; Similarly, the variable `ps-header-font-family' determines which font family
897 ;; is to be used for text in the header.
899 ;; The variable `ps-header-font-size' determines the font size, in points, for
900 ;; text in the header (similar to `ps-font-size').
902 ;; The variable `ps-header-title-font-size' determines the font size, in
903 ;; points, for the top line of text in the header (similar to `ps-font-size').
905 ;; The variable `ps-line-spacing' determines the line spacing, in points, for
906 ;; ordinary text, when generating PostScript (similar to `ps-font-size'). The
907 ;; default value is 0 (zero = no line spacing).
909 ;; The variable `ps-paragraph-spacing' determines the paragraph spacing, in
910 ;; points, for ordinary text, when generating PostScript (similar to
911 ;; `ps-font-size'). The default value is 0 (zero = no paragraph spacing).
913 ;; To get all lines with some spacing set both `ps-line-spacing' and
914 ;; `ps-paragraph-spacing' variables.
916 ;; The variable `ps-paragraph-regexp' specifies the paragraph delimiter. It
917 ;; should be a regexp or nil. The default value is "[ \t]*$", that is, an
918 ;; empty line or a line containing only spaces and tabs.
920 ;; The variable `ps-begin-cut-regexp' and `ps-end-cut-regexp' specify the start
921 ;; and end of a region to cut out when printing.
923 ;; As an example, variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' may
924 ;; be set to "^Local Variables:" and "^End:", respectively, in order to leave
925 ;; out some special printing instructions from the actual print. Special
926 ;; printing instructions may be appended to the end of the file just like any
927 ;; other buffer-local variables. See section "Local Variables in Files" on
928 ;; Emacs manual for more information.
930 ;; Variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' control together
931 ;; what actually gets printed. Both variables may be set to nil in which case
932 ;; no cutting occurs. By default, both variables are set to nil.
935 ;; Adding a New Font Family
936 ;; ------------------------
938 ;; To use a new font family, you MUST first teach ps-print this font, i.e., add
939 ;; its information to `ps-font-info-database', otherwise ps-print cannot
940 ;; correctly place line and page breaks.
942 ;; For example, assuming `Helvetica' is unknown, you first need to do the
943 ;; following ONLY ONCE:
945 ;; - create a new buffer
946 ;; - generate the PostScript image to a file (C-u M-x ps-print-buffer)
947 ;; - open this file and find the line:
948 ;; `% 3 cm 20 cm moveto 10/Courier ReportFontInfo showpage'
949 ;; - delete the leading `%' (which is the PostScript comment character)
950 ;; - replace in this line `Courier' by the new font (say `Helvetica') to get
951 ;; the line:
952 ;; `3 cm 20 cm moveto 10/Helvetica ReportFontInfo showpage'
953 ;; - send this file to the printer (or to ghostscript).
954 ;; You should read the following on the output page:
956 ;; For Helvetica 10 point, the line height is 11.56, the space width is 2.78
957 ;; and a crude estimate of average character width is 5.09243
959 ;; - Add these values to the `ps-font-info-database':
960 ;; (setq ps-font-info-database
961 ;; (append
962 ;; '((Helvetica ; the family key
963 ;; (fonts (normal . "Helvetica")
964 ;; (bold . "Helvetica-Bold")
965 ;; (italic . "Helvetica-Oblique")
966 ;; (bold-italic . "Helvetica-BoldOblique"))
967 ;; (size . 10.0)
968 ;; (line-height . 11.56)
969 ;; (space-width . 2.78)
970 ;; (avg-char-width . 5.09243)))
971 ;; ps-font-info-database))
972 ;; - Now you can use this font family with any size:
973 ;; (setq ps-font-family 'Helvetica)
974 ;; - if you want to use this family in another emacs session, you must put into
975 ;; your `~/.emacs':
976 ;; (require 'ps-print)
977 ;; (setq ps-font-info-database (append ...)))
978 ;; if you don't want to load ps-print, you have to copy the whole value:
979 ;; (setq ps-font-info-database '(<your stuff> <the standard stuff>))
980 ;; or, use `ps-print-hook' (see section Hooks):
981 ;; (add-hook 'ps-print-hook
982 ;; '(lambda ()
983 ;; (or (assq 'Helvetica ps-font-info-database)
984 ;; (setq ps-font-info-database (append ...)))))
986 ;; You can create new `mixed' font families like:
987 ;; (my-mixed-family
988 ;; (fonts (normal . "Courier-Bold")
989 ;; (bold . "Helvetica")
990 ;; (italic . "Zapf-Chancery-MediumItalic")
991 ;; (bold-italic . "NewCenturySchlbk-BoldItalic")
992 ;; (w3-table-hack-x-face . "LineDrawNormal"))
993 ;; (size . 10.0)
994 ;; (line-height . 10.55)
995 ;; (space-width . 6.0)
996 ;; (avg-char-width . 6.0))
998 ;; Now you can use your new font family with any size:
999 ;; (setq ps-font-family 'my-mixed-family)
1001 ;; Note that on above example the `w3-table-hack-x-face' entry refers to a face
1002 ;; symbol, so when printing this face it'll be used the font `LineDrawNormal'.
1003 ;; If the face `w3-table-hack-x-face' is remapped to use bold and/or italic
1004 ;; attribute, the corresponding entry (bold, italic or bold-italic) will be
1005 ;; used instead of `w3-table-hack-x-face' entry.
1007 ;; Note also that the font family entry order is irrelevant, so the above
1008 ;; example could also be written:
1009 ;; (my-mixed-family
1010 ;; (size . 10.0)
1011 ;; (fonts (w3-table-hack-x-face . "LineDrawNormal")
1012 ;; (bold . "Helvetica")
1013 ;; (bold-italic . "NewCenturySchlbk-BoldItalic")
1014 ;; (italic . "Zapf-Chancery-MediumItalic")
1015 ;; (normal . "Courier-Bold"))
1016 ;; (avg-char-width . 6.0)
1017 ;; (space-width . 6.0)
1018 ;; (line-height . 10.55))
1020 ;; Despite the note above, it is recommended that some convention about
1021 ;; entry order be used.
1023 ;; You can get information on all the fonts resident in YOUR printer
1024 ;; by uncommenting the line:
1025 ;; % 3 cm 20 cm moveto ReportAllFontInfo showpage
1027 ;; The PostScript file should be sent to YOUR PostScript printer.
1028 ;; If you send it to ghostscript or to another PostScript printer, you may get
1029 ;; slightly different results.
1030 ;; Anyway, as ghostscript fonts are autoload, you won't get much font info.
1032 ;; Note also that ps-print DOESN'T download any font to your printer, instead
1033 ;; it uses the fonts resident in your printer.
1036 ;; How Ps-Print Deals With Faces
1037 ;; -----------------------------
1039 ;; The ps-print-*-with-faces commands attempt to determine which faces should
1040 ;; be printed in bold or italic, but their guesses aren't always right. For
1041 ;; example, you might want to map colors into faces so that blue faces print in
1042 ;; bold, and red faces in italic.
1044 ;; It is possible to force ps-print to consider specific faces bold, italic or
1045 ;; underline, no matter what font they are displayed in, by setting the
1046 ;; variables `ps-bold-faces', `ps-italic-faces' and `ps-underlined-faces'.
1047 ;; These variables contain lists of faces that ps-print should consider bold,
1048 ;; italic or underline; to set them, put code like the following into your
1049 ;; .emacs file:
1051 ;; (setq ps-bold-faces '(my-blue-face))
1052 ;; (setq ps-italic-faces '(my-red-face))
1053 ;; (setq ps-underlined-faces '(my-green-face))
1055 ;; Faces like bold-italic that are both bold and italic should go in *both*
1056 ;; lists.
1058 ;; ps-print keeps internal lists of which fonts are bold and which are italic;
1059 ;; these lists are built the first time you invoke ps-print.
1060 ;; For the sake of efficiency, the lists are built only once; the same lists
1061 ;; are referred in later invocations of ps-print.
1063 ;; Because these lists are built only once, it's possible for them to get out
1064 ;; of sync, if a face changes, or if new faces are added. To get the lists
1065 ;; back in sync, you can set the variable `ps-build-face-reference' to t, and
1066 ;; the lists will be rebuilt the next time ps-print is invoked. If you need
1067 ;; that the lists always be rebuilt when ps-print is invoked, set the variable
1068 ;; `ps-always-build-face-reference' to t.
1070 ;; If you need to print without worrying about face background color, set the
1071 ;; variable `ps-use-face-background' which specifies if face background should
1072 ;; be used. Valid values are:
1074 ;; t always use face background color.
1075 ;; nil never use face background color.
1076 ;; (face...) list of faces whose background color will be used.
1078 ;; Any other value will be treated as t.
1079 ;; The default value is t.
1082 ;; How Ps-Print Deals With Color
1083 ;; -----------------------------
1085 ;; ps-print detects faces with foreground and background colors defined and
1086 ;; embeds color information in the PostScript image.
1087 ;; The default foreground and background colors are defined by the variables
1088 ;; `ps-default-fg' and `ps-default-bg'.
1089 ;; On black-and-white printers, colors are displayed in gray scale.
1090 ;; To turn off color output, set `ps-print-color-p' to nil.
1093 ;; How Ps-Print Maps Faces
1094 ;; -----------------------
1096 ;; As ps-print uses PostScript to print buffers, it is possible to have other
1097 ;; attributes associated with faces. So the new attributes used by ps-print
1098 ;; are:
1100 ;; strikeout - like underline, but the line is in middle of text.
1101 ;; overline - like underline, but the line is over the text.
1102 ;; shadow - text will have a shadow.
1103 ;; box - text will be surrounded by a box.
1104 ;; outline - print characters as hollow outlines.
1106 ;; See the documentation for `ps-extend-face'.
1108 ;; Let's, for example, remap `font-lock-keyword-face' to another foreground
1109 ;; color and bold attribute:
1111 ;; (ps-extend-face '(font-lock-keyword-face "RoyalBlue" nil bold) 'MERGE)
1113 ;; If you want to use a new face, define it first with `defface', and then call
1114 ;; `ps-extend-face' to specify how to print it.
1117 ;; How Ps-Print Has A Text And/Or Image On Background
1118 ;; --------------------------------------------------
1120 ;; ps-print can print texts and/or EPS PostScript images on background; it is
1121 ;; possible to define the following text attributes: font name, font size,
1122 ;; initial position, angle, gray scale and pages to print.
1124 ;; It has the following EPS PostScript images attributes: file name containing
1125 ;; the image, initial position, X and Y scales, angle and pages to print.
1127 ;; See documentation for `ps-print-background-text' and
1128 ;; `ps-print-background-image'.
1130 ;; For example, if we wish to print text "preliminary" on all pages and text
1131 ;; "special" on page 5 and from page 11 to page 17, we could specify:
1133 ;; (setq ps-print-background-text
1134 ;; '(("preliminary")
1135 ;; ("special"
1136 ;; "LeftMargin" "BottomMargin PrintHeight add" ; X and Y position
1137 ;; ; (upper left corner)
1138 ;; nil nil nil
1139 ;; "PrintHeight neg PrintPageWidth atan" ; angle
1140 ;; 5 (11 . 17)) ; page list
1141 ;; ))
1143 ;; Similarly, we could print image "~/images/EPS-image1.ps" on all pages and
1144 ;; image "~/images/EPS-image2.ps" on page 5 and from page 11 to page 17, we
1145 ;; specify:
1147 ;; (setq ps-print-background-image
1148 ;; '(("~/images/EPS-image1.ps"
1149 ;; "LeftMargin" "BottomMargin") ; X and Y position (lower left corner)
1150 ;; ("~/images/EPS-image2.ps"
1151 ;; "LeftMargin" "BottomMargin PrintHeight 2 div add" ; X and Y pos.
1152 ;; ; (upper left corner)
1153 ;; nil nil nil
1154 ;; 5 (11 . 17)) ; page list
1155 ;; ))
1157 ;; If it is not possible to read (or does not exist) an image file, that file
1158 ;; is ignored.
1160 ;; The printing order is:
1162 ;; 1. Print background color
1163 ;; 2. Print zebra stripes
1164 ;; 3. Print background texts that it should be on all pages
1165 ;; 4. Print background images that it should be on all pages
1166 ;; 5. Print background texts only for current page (if any)
1167 ;; 6. Print background images only for current page (if any)
1168 ;; 7. Print header
1169 ;; 8. Print buffer text (with faces, if specified) and line number
1172 ;; Utilities
1173 ;; ---------
1175 ;; Some tools are provided to help you customize your font setup.
1177 ;; `ps-setup' returns (some part of) the current setup.
1179 ;; To avoid wrapping too many lines, you may want to adjust the left and right
1180 ;; margins and the font size. On UN*X systems, do:
1181 ;; pr -t file | awk '{printf "%3d %s\n", length($0), $0}' | sort -r | head
1182 ;; to determine the longest lines of your file.
1183 ;; Then, the command `ps-line-lengths' will give you the correspondence between
1184 ;; a line length (number of characters) and the maximum font size which doesn't
1185 ;; wrap such a line with the current ps-print setup.
1187 ;; The commands `ps-nb-pages-buffer' and `ps-nb-pages-region' display the
1188 ;; correspondence between a number of pages and the maximum font size which
1189 ;; allow the number of lines of the current buffer or of its current region to
1190 ;; fit in this number of pages.
1192 ;; NOTE: line folding is not taken into account in this process and could
1193 ;; change the results.
1195 ;; The command `ps-print-customize' activates a customization buffer for
1196 ;; ps-print options.
1199 ;; New since version 1.5
1200 ;; ---------------------
1202 ;; Color output capability.
1203 ;; Automatic detection of font attributes (bold, italic).
1204 ;; Configurable headers with page numbers.
1205 ;; Slightly faster.
1206 ;; Support for different paper sizes.
1207 ;; Better conformance to PostScript Document Structure Conventions.
1210 ;; New since version 2.8
1211 ;; ---------------------
1213 ;; [vinicius] Vinicius Jose Latorre <vinicius@cpqd.com.br>
1215 ;; 20010407
1216 ;; `ps-line-number-color', `ps-print-footer', `ps-footer-offset',
1217 ;; `ps-print-footer-frame', `ps-footer-font-family',
1218 ;; `ps-footer-font-size', `ps-footer-line-pad', `ps-footer-lines',
1219 ;; `ps-left-footer', `ps-right-footer', `ps-footer-frame-alist' and
1220 ;; `ps-header-frame-alist'.
1222 ;; 20010328
1223 ;; `ps-line-spacing', `ps-paragraph-spacing', `ps-paragraph-regexp',
1224 ;; `ps-begin-cut-regexp' and `ps-end-cut-regexp'.
1226 ;; 20001122
1227 ;; `ps-line-number-font', `ps-line-number-font-size' and
1228 ;; `ps-end-with-control-d'.
1230 ;; 20000821
1231 ;; `ps-even-or-odd-pages'
1233 ;; 20000617
1234 ;; `ps-manual-feed', `ps-warn-paper-type', `ps-print-upside-down',
1235 ;; `ps-selected-pages', `ps-last-selected-pages',
1236 ;; `ps-restore-selected-pages', `ps-switch-header',
1237 ;; `ps-line-number-step', `ps-line-number-start',
1238 ;; `ps-zebra-stripe-follow' and `ps-use-face-background'.
1240 ;; 20000310
1241 ;; PostScript error handler.
1242 ;; `ps-user-defined-prologue' and `ps-error-handler-message'.
1244 ;; 19991211
1245 ;; `ps-print-customize'.
1247 ;; 19990703
1248 ;; Better customization.
1249 ;; `ps-banner-page-when-duplexing' and `ps-zebra-color'.
1251 ;; 19990513
1252 ;; N-up printing.
1253 ;; Hook: `ps-print-begin-sheet-hook'.
1255 ;; [keinichi] 19990509 Kein'ichi Handa <handa@etl.go.jp>
1257 ;; `ps-print-region-function'
1259 ;; [vinicius] Vinicius Jose Latorre <vinicius@cpqd.com.br>
1261 ;; 19990301
1262 ;; PostScript tumble and setpagedevice.
1264 ;; 19980922
1265 ;; PostScript prologue header comment insertion.
1266 ;; Skip invisible text better.
1268 ;; [keinichi] 19980819 Kein'ichi Handa <handa@etl.go.jp>
1270 ;; Multi-byte buffer handling.
1272 ;; [vinicius] Vinicius Jose Latorre <vinicius@cpqd.com.br>
1274 ;; 19980306
1275 ;; Skip invisible text.
1277 ;; 19971130
1278 ;; Hooks: `ps-print-hook', `ps-print-begin-page-hook' and
1279 ;; `ps-print-begin-column-hook'.
1280 ;; Put one header per page over the columns.
1281 ;; Better database font management.
1282 ;; Better control characters handling.
1284 ;; 19971121
1285 ;; Dynamic evaluation at print time of `ps-lpr-switches'.
1286 ;; Handle control characters.
1287 ;; Face remapping.
1288 ;; New face attributes.
1289 ;; Line number.
1290 ;; Zebra stripes.
1291 ;; Text and/or image on background.
1293 ;; [jack] 19960517 Jacques Duthen <duthen@cegelec-red.fr>
1295 ;; Font family and float size for text and header.
1296 ;; Landscape mode.
1297 ;; Multiple columns.
1298 ;; Tools for page setup.
1301 ;; Known bugs and limitations of ps-print
1302 ;; --------------------------------------
1304 ;; Although color printing will work in XEmacs 19.12, it doesn't work well; in
1305 ;; particular, bold or italic fonts don't print in the right background color.
1307 ;; Invisible properties aren't correctly ignored in XEmacs 19.12.
1309 ;; Automatic font-attribute detection doesn't work well, especially with
1310 ;; hilit19 and older versions of get-create-face. Users having problems with
1311 ;; auto-font detection should use the lists `ps-italic-faces', `ps-bold-faces'
1312 ;; and `ps-underlined-faces' and/or turn off automatic detection by setting
1313 ;; `ps-auto-font-detect' to nil.
1315 ;; Automatic font-attribute detection doesn't work with XEmacs 19.12 in tty
1316 ;; mode; use the lists `ps-italic-faces', `ps-bold-faces' and
1317 ;; `ps-underlined-faces' instead.
1319 ;; Still too slow; could use some hand-optimization.
1321 ;; Default background color isn't working.
1323 ;; Faces are always treated as opaque.
1325 ;; Epoch and Emacs 19 not supported. At all.
1327 ;; Fixed-pitch fonts work better for line folding, but are not required.
1329 ;; `ps-nb-pages-buffer' and `ps-nb-pages-region' don't take care of folding
1330 ;; lines.
1333 ;; Things to change
1334 ;; ----------------
1336 ;; Avoid page break inside a paragraph.
1337 ;; Add `ps-non-bold-faces' and `ps-non-italic-faces' (should be easy).
1338 ;; Improve the memory management for big files (hard?).
1339 ;; `ps-nb-pages-buffer' and `ps-nb-pages-region' should take care of folding
1340 ;; lines.
1343 ;; Acknowledgments
1344 ;; ---------------
1346 ;; Thanks to Toni Ronkko <tronkko@hytti.uku.fi> for line and paragraph spacing,
1347 ;; region to cut out when printing and footer suggestions.
1349 ;; Thanks to Pavel Janik ml <Pavel@Janik.cz> for documentation correction.
1351 ;; Thanks to Corinne Ilvedson <cilvedson@draper.com> for line number font size
1352 ;; suggestion.
1354 ;; Thanks to Gord Wait <Gord_Wait@spectrumsignal.com> for
1355 ;; `ps-user-defined-prologue' example setting for HP PostScript printer.
1357 ;; Thanks to Paul Furnanz <pfurnanz@synopsys.com> for XEmacs compatibility
1358 ;; suggestion for `ps-postscript-code-directory' variable.
1360 ;; Thanks to David X Callaway <dxc@xprt.net> for helping debugging PostScript
1361 ;; level 1 compatibility.
1363 ;; Thanks to Colin Marquardt <colin.marquardt@usa.alcatel.com> for upside-down,
1364 ;; line number step, line number start and zebra stripe follow suggestions, and
1365 ;; for XEmacs beta-tests.
1367 ;; Thanks to Klaus Berndl <klaus.berndl@sdm.de> for user defined PostScript
1368 ;; prologue code suggestion, for odd/even printing suggestion and for
1369 ;; `ps-prologue-file' enhancement.
1371 ;; Thanks to Kein'ichi Handa <handa@etl.go.jp> for multi-byte buffer handling.
1373 ;; Thanks to Matthew O Persico <Matthew.Persico@lazard.com> for line number on
1374 ;; empty columns.
1376 ;; Thanks to Theodore Jump <tjump@cais.com> for adjust PostScript code order on
1377 ;; last page.
1379 ;; Thanks to Roland Ducournau <ducour@lirmm.fr> for
1380 ;; `ps-print-control-characters' variable documentation.
1382 ;; Thanks to Marcus G Daniels <marcus@cathcart.sysc.pdx.edu> for a better
1383 ;; database font management.
1385 ;; Thanks to Martin Boyer <gamin@videotron.ca> for some ideas on putting one
1386 ;; header per page over the columns and correct line numbers when printing a
1387 ;; region.
1389 ;; Thanks to Steven L Baur <steve@miranova.com> for dynamic evaluation at
1390 ;; print time of `ps-lpr-switches'.
1392 ;; Thanks to Kevin Rodgers <kevinr@ihs.com> for handling control characters
1393 ;; (his code was severely modified, but the main idea was kept).
1395 ;; Thanks to some suggestions on:
1396 ;; * Face color map: Marco Melgazzi <marco@techie.com>
1397 ;; * XEmacs compatibility: William J. Henney <will@astrosmo.unam.mx>
1398 ;; * Check `ps-paper-type': Sudhakar Frederick <sfrederi@asc.corp.mot.com>
1400 ;; Thanks to Jacques Duthen <duthen@cegelec-red.fr> (Jack) for version 3.4 I
1401 ;; started from. [vinicius]
1403 ;; Thanks to Jim Thompson <?@?> for the 2.8 version I started from. [jack]
1405 ;; Thanks to Kevin Rodgers <kevinr@ihs.com> for adding support for color and
1406 ;; the invisible property.
1408 ;; Thanks to Avishai Yacobi, avishaiy@mcil.comm.mot.com, for writing the
1409 ;; initial port to Emacs 19. His code is no longer part of ps-print, but his
1410 ;; work is still appreciated.
1412 ;; Thanks to Remi Houdaille and Michel Train, michel@metasoft.fdn.org, for
1413 ;; adding underline support. Their code also is no longer part of ps-print,
1414 ;; but their efforts are not forgotten.
1416 ;; Thanks also to all of you who mailed code to add features to ps-print;
1417 ;; although I didn't use your code, I still appreciate your sharing it with me.
1419 ;; Thanks to all who mailed comments, encouragement, and criticism.
1420 ;; Thanks also to all who responded to my survey; I had too many responses to
1421 ;; reply to them all, but I greatly appreciate your interest.
1423 ;; Jim
1424 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1426 ;;; Code:
1428 (eval-and-compile
1429 (unless (featurep 'lisp-float-type)
1430 (error "`ps-print' requires floating point support"))
1433 ;; For Emacs 20.2 and the earlier version.
1435 (or (fboundp 'set-buffer-multibyte)
1436 (defun set-buffer-multibyte (arg)
1437 (setq enable-multibyte-characters arg)))
1439 (or (fboundp 'string-as-unibyte)
1440 (defun string-as-unibyte (arg) arg))
1442 (or (fboundp 'string-as-multibyte)
1443 (defun string-as-multibyte (arg) arg))
1445 (or (fboundp 'char-charset)
1446 (defun char-charset (arg) 'ascii))
1448 (or (fboundp 'charset-after)
1449 (defun charset-after (&optional arg)
1450 (char-charset (char-after arg))))
1453 ;; GNU Emacs
1454 (or (fboundp 'line-beginning-position)
1455 (defun line-beginning-position (&optional n)
1456 (save-excursion
1457 (and n (/= n 1) (forward-line (1- n)))
1458 (beginning-of-line)
1459 (point))))
1462 ;; to avoid compilation gripes
1464 ;; XEmacs
1465 (defalias 'ps-x-color-instance-p 'color-instance-p)
1466 (defalias 'ps-x-color-instance-rgb-components 'color-instance-rgb-components)
1467 (defalias 'ps-x-color-name 'color-name)
1468 (defalias 'ps-x-color-specifier-p 'color-specifier-p)
1469 (defalias 'ps-x-copy-coding-system 'copy-coding-system)
1470 (defalias 'ps-x-device-class 'device-class)
1471 (defalias 'ps-x-extent-end-position 'extent-end-position)
1472 (defalias 'ps-x-extent-face 'extent-face)
1473 (defalias 'ps-x-extent-priority 'extent-priority)
1474 (defalias 'ps-x-extent-start-position 'extent-start-position)
1475 (defalias 'ps-x-face-font-instance 'face-font-instance)
1476 (defalias 'ps-x-find-coding-system 'find-coding-system)
1477 (defalias 'ps-x-font-instance-properties 'font-instance-properties)
1478 (defalias 'ps-x-make-color-instance 'make-color-instance)
1479 (defalias 'ps-x-map-extents 'map-extents)
1481 ;; GNU Emacs
1482 (defalias 'ps-e-face-bold-p 'face-bold-p)
1483 (defalias 'ps-e-face-italic-p 'face-italic-p)
1484 (defalias 'ps-e-next-overlay-change 'next-overlay-change)
1485 (defalias 'ps-e-overlays-at 'overlays-at)
1486 (defalias 'ps-e-overlay-get 'overlay-get)
1487 (defalias 'ps-e-overlay-end 'overlay-end)
1488 (defalias 'ps-e-x-color-values 'x-color-values)
1489 (defalias 'ps-e-color-values 'color-values)
1490 (if (fboundp 'find-composition)
1491 (defalias 'ps-e-find-composition 'find-composition)
1492 (defalias 'ps-e-find-composition 'ignore))
1495 (defconst ps-windows-system
1496 (memq system-type '(emx win32 w32 mswindows ms-dos windows-nt)))
1497 (defconst ps-lp-system
1498 (memq system-type '(usq-unix-v dgux hpux irix))))
1501 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1502 ;; User Variables:
1505 ;;; Interface to the command system
1507 (defgroup postscript nil
1508 "PostScript Group"
1509 :tag "PostScript"
1510 :group 'emacs)
1512 (defgroup ps-print nil
1513 "PostScript generator for Emacs"
1514 :link '(emacs-library-link :tag "Source Lisp File" "ps-print.el")
1515 :prefix "ps-"
1516 :group 'wp
1517 :group 'postscript)
1519 (defgroup ps-print-horizontal nil
1520 "Horizontal page layout"
1521 :prefix "ps-"
1522 :tag "Horizontal"
1523 :group 'ps-print)
1525 (defgroup ps-print-vertical nil
1526 "Vertical page layout"
1527 :prefix "ps-"
1528 :tag "Vertical"
1529 :group 'ps-print)
1531 (defgroup ps-print-headers nil
1532 "Headers & footers layout"
1533 :prefix "ps-"
1534 :tag "Header & Footer"
1535 :group 'ps-print)
1537 (defgroup ps-print-font nil
1538 "Fonts customization"
1539 :prefix "ps-"
1540 :tag "Font"
1541 :group 'ps-print)
1543 (defgroup ps-print-color nil
1544 "Color customization"
1545 :prefix "ps-"
1546 :tag "Color"
1547 :group 'ps-print)
1549 (defgroup ps-print-face nil
1550 "Faces customization"
1551 :prefix "ps-"
1552 :tag "PS Faces"
1553 :group 'ps-print
1554 :group 'faces)
1556 (defgroup ps-print-n-up nil
1557 "N-up customization"
1558 :prefix "ps-"
1559 :tag "N-Up"
1560 :group 'ps-print)
1562 (defgroup ps-print-zebra nil
1563 "Zebra customization"
1564 :prefix "ps-"
1565 :tag "Zebra"
1566 :group 'ps-print)
1568 (defgroup ps-print-background nil
1569 "Background customization"
1570 :prefix "ps-"
1571 :tag "Background"
1572 :group 'ps-print)
1574 (defgroup ps-print-printer nil
1575 "Printer customization"
1576 :prefix "ps-"
1577 :tag "Printer"
1578 :group 'ps-print)
1580 (defgroup ps-print-page nil
1581 "Page customization"
1582 :prefix "ps-"
1583 :tag "Page"
1584 :group 'ps-print)
1586 (defgroup ps-print-miscellany nil
1587 "Miscellany customization"
1588 :prefix "ps-"
1589 :tag "Miscellany"
1590 :group 'ps-print)
1593 (defcustom ps-error-handler-message 'paper
1594 "*Specify where the error handler message should be sent.
1596 Valid values are:
1598 `none' catch the error and *DON'T* send any message.
1600 `paper' catch the error and print on paper the error message.
1602 `system' catch the error and send back the error message to
1603 printing system. This is useful only if printing system
1604 send back an email reporting the error, or if there is
1605 some other alternative way to report back the error from
1606 the system to you.
1608 `paper-and-system' catch the error, print on paper the error message and
1609 send back the error message to printing system.
1611 Any other value is treated as `paper'."
1612 :type '(choice :menu-tag "Error Handler Message"
1613 :tag "Error Handler Message"
1614 (const none) (const paper)
1615 (const system) (const paper-and-system))
1616 :group 'ps-print-miscellany)
1618 (defcustom ps-user-defined-prologue nil
1619 "*User defined PostScript prologue code inserted before all prologue code.
1621 `ps-user-defined-prologue' may be a string or a symbol function which returns a
1622 string. Note that this string is inserted after `ps-adobe-tag' and PostScript
1623 prologue comments, and before ps-print PostScript prologue code section. That
1624 is, this string is inserted after error handler initialization and before
1625 ps-print settings.
1627 It's strongly recommended only insert PostScript code and/or comments specific
1628 for your printing system particularities. For example, some special
1629 initialization that only your printing system needs.
1631 Do not insert code for duplex printing, n-up printing or error handler,
1632 ps-print handles this in a suitable way.
1634 For more information about PostScript, see:
1635 PostScript Language Reference Manual (2nd edition)
1636 Adobe Systems Incorporated
1638 As an example for `ps-user-defined-prologue' setting:
1640 ;; Setting for HP PostScript printer
1641 (setq ps-user-defined-prologue
1642 (concat \"<</DeferredMediaSelection true /PageSize [612 792] \"
1643 \"/MediaPosition 2 /MediaType (Plain)>> setpagedevice\"))
1645 :type '(choice :menu-tag "User Defined Prologue"
1646 :tag "User Defined Prologue"
1647 (const :tag "none" nil) string symbol)
1648 :group 'ps-print-miscellany)
1650 (defcustom ps-print-prologue-header nil
1651 "*PostScript prologue header comments besides that ps-print generates.
1653 `ps-print-prologue-header' may be a string or a symbol function which returns a
1654 string. Note that this string is inserted on PostScript prologue header
1655 section which is used to define some document characteristic through PostScript
1656 special comments, like \"%%Requirements: jog\\n\".
1658 ps-print always inserts the %%Requirements: comment, so if you need to insert
1659 more requirements put them first in `ps-print-prologue-header' using the
1660 \"%%+\" comment. For example, if you need to set numcopies to 3 and jog on
1661 requirements and set %%LanguageLevel: to 2, do:
1663 (setq ps-print-prologue-header
1664 \"%%+ numcopies(3) jog\\n%%LanguageLevel: 2\\n\")
1666 The duplex requirement is inserted by ps-print (see `ps-spool-duplex').
1668 Do not forget to terminate the string with \"\\n\".
1670 For more information about PostScript document comments, see:
1671 PostScript Language Reference Manual (2nd edition)
1672 Adobe Systems Incorporated
1673 Appendix G: Document Structuring Conventions -- Version 3.0"
1674 :type '(choice :menu-tag "Prologue Header"
1675 :tag "Prologue Header"
1676 (const :tag "none" nil) string symbol)
1677 :group 'ps-print-miscellany)
1679 (defcustom ps-printer-name (and (boundp 'printer-name)
1680 (symbol-value 'printer-name))
1681 "*The name of a local printer for printing PostScript files.
1683 On Unix-like systems, a string value should be a name understood by lpr's -P
1684 option; a value of nil means use the value of `printer-name' instead.
1686 On MS-DOS and MS-Windows systems, a string value is taken as the name of the
1687 printer device or port to which PostScript files are written, provided
1688 `ps-lpr-command' is \"\". By default it is the same as `printer-name'; typical
1689 non-default settings would be \"LPT1\" to \"LPT3\" for parallel printers, or
1690 \"COM1\" to \"COM4\" or \"AUX\" for serial printers, or \"\\\\hostname\\printer\"
1691 for a shared network printer. You can also set it to a name of a file, in
1692 which case the output gets appended to that file. \(Note that `ps-print'
1693 package already has facilities for printing to a file, so you might as well use
1694 them instead of changing the setting of this variable.\) If you want to
1695 silently discard the printed output, set this to \"NUL\".
1697 Set to t, if the utility given by `ps-lpr-command' needs an empty printer name.
1699 Any other value is treated as t, that is, an empty printer name.
1701 See also `ps-printer-name-option' for documentation."
1702 :type '(choice :menu-tag "Printer Name"
1703 :tag "Printer Name"
1704 (const :tag "Same as printer-name" nil)
1705 (const :tag "No Printer Name" t)
1706 (file :tag "Print to file")
1707 (string :tag "Pipe to ps-lpr-command"))
1708 :group 'ps-print-printer)
1710 (defcustom ps-printer-name-option
1711 (cond (ps-windows-system
1712 "/D:")
1713 (ps-lp-system
1714 "-d")
1716 "-P" ))
1717 "*Option for `ps-printer-name' variable (see it).
1719 On Unix-like systems, if it's been used lpr utility, it should be the string
1720 \"-P\"; if it's been used lp utility, it should be the string \"-d\".
1722 On MS-DOS and MS-Windows systems, if it's been used print utility, it should be
1723 the string \"/D:\".
1725 For any other printing utility, see the proper manual or documentation.
1727 Set to \"\" or nil, if the utility given by `ps-lpr-command' needs an empty
1728 option printer name option.
1730 Any other value is treated as nil, that is, an empty printer name option.
1732 This variable is used only when `ps-printer-name' is a non-empty string."
1733 :type '(choice :menu-tag "Printer Name Option"
1734 :tag "Printer Name Option"
1735 (const :tag "None" nil)
1736 (string :tag "Option"))
1737 :version "21.1"
1738 :group 'ps-print-printer)
1740 (defcustom ps-lpr-command lpr-command
1741 "*Name of program for printing a PostScript file.
1743 On MS-DOS and MS-Windows systems, if the value is an empty string then Emacs
1744 will write directly to the printer port named by `ps-printer-name'. The
1745 programs `print' and `nprint' (the standard print programs on Windows NT and
1746 Novell Netware respectively) are handled specially, using `ps-printer-name' as
1747 the destination for output; any other program is treated like `lpr' except that
1748 an explicit filename is given as the last argument."
1749 :type 'string
1750 :group 'ps-print-printer)
1752 (defcustom ps-lpr-switches lpr-switches
1753 "*A list of extra switches to pass to `ps-lpr-command'."
1754 :type '(repeat :tag "PostScript lpr Switches"
1755 (choice :menu-tag "PostScript lpr Switch"
1756 :tag "PostScript lpr Switch"
1757 string symbol (repeat sexp)))
1758 :group 'ps-print-printer)
1760 (defcustom ps-print-region-function nil
1761 "*Specify a function to print the region on a PostScript printer.
1762 See definition of `call-process-region' for calling conventions. The fourth
1763 and the sixth arguments are both nil."
1764 :type '(choice (const nil) function)
1765 :group 'ps-print-printer)
1767 (defcustom ps-manual-feed nil
1768 "*Non-nil means the printer will manually feed paper.
1770 If it's nil, automatic feeding takes place."
1771 :type 'boolean
1772 :group 'ps-print-printer)
1774 (defcustom ps-end-with-control-d (and ps-windows-system t)
1775 "*Non-nil means insert C-d at end of PostScript file generated."
1776 :version "21.1"
1777 :type 'boolean
1778 :group 'ps-print-printer)
1780 ;;; Page layout
1782 ;; All page dimensions are in PostScript points.
1783 ;; 1 inch == 2.54 cm == 72 points
1784 ;; 1 cm == (/ 1 2.54) inch == (/ 72 2.54) points
1786 ;; Letter 8.5 inch x 11.0 inch
1787 ;; Legal 8.5 inch x 14.0 inch
1788 ;; A4 8.26 inch x 11.69 inch = 21.0 cm x 29.7 cm
1790 ;; LetterSmall 7.68 inch x 10.16 inch
1791 ;; Tabloid 11.0 inch x 17.0 inch
1792 ;; Ledger 17.0 inch x 11.0 inch
1793 ;; Statement 5.5 inch x 8.5 inch
1794 ;; Executive 7.5 inch x 10.0 inch
1795 ;; A3 11.69 inch x 16.5 inch = 29.7 cm x 42.0 cm
1796 ;; A4Small 7.47 inch x 10.85 inch
1797 ;; B4 10.125 inch x 14.33 inch
1798 ;; B5 7.16 inch x 10.125 inch
1800 (defcustom ps-page-dimensions-database
1801 (list (list 'a4 (/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4")
1802 (list 'a3 (/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3")
1803 (list 'letter (* 72 8.5) (* 72 11.0) "Letter")
1804 (list 'legal (* 72 8.5) (* 72 14.0) "Legal")
1805 (list 'letter-small (* 72 7.68) (* 72 10.16) "LetterSmall")
1806 (list 'tabloid (* 72 11.0) (* 72 17.0) "Tabloid")
1807 (list 'ledger (* 72 17.0) (* 72 11.0) "Ledger")
1808 (list 'statement (* 72 5.5) (* 72 8.5) "Statement")
1809 (list 'executive (* 72 7.5) (* 72 10.0) "Executive")
1810 (list 'a4small (* 72 7.47) (* 72 10.85) "A4Small")
1811 (list 'b4 (* 72 10.125) (* 72 14.33) "B4")
1812 (list 'b5 (* 72 7.16) (* 72 10.125) "B5"))
1813 "*List associating a symbolic paper type to its width, height and doc media.
1814 See `ps-paper-type'."
1815 :type '(repeat (list :tag "Paper Type"
1816 (symbol :tag "Name")
1817 (number :tag "Width")
1818 (number :tag "Height")
1819 (string :tag "Media")))
1820 :group 'ps-print-page)
1822 ;;;###autoload
1823 (defcustom ps-paper-type 'letter
1824 "*Specify the size of paper to format for.
1825 Should be one of the paper types defined in `ps-page-dimensions-database', for
1826 example `letter', `legal' or `a4'."
1827 :type '(symbol :validate (lambda (wid)
1828 (if (assq (widget-value wid)
1829 ps-page-dimensions-database)
1831 (widget-put wid :error "Unknown paper size")
1832 wid)))
1833 :group 'ps-print-page)
1835 (defcustom ps-warn-paper-type t
1836 "*Non-nil means give an error if paper size is not equal to `ps-paper-type'.
1838 It's used when `ps-spool-config' is set to `setpagedevice'."
1839 :type 'boolean
1840 :group 'ps-print-page)
1842 (defcustom ps-landscape-mode nil
1843 "*Non-nil means print in landscape mode."
1844 :type 'boolean
1845 :group 'ps-print-page)
1847 (defcustom ps-print-upside-down nil
1848 "*Non-nil means print upside-down (that is, it's rotated by 180 grades)."
1849 :type 'boolean
1850 :version "21.1"
1851 :group 'ps-print-page)
1853 (defcustom ps-selected-pages nil
1854 "*Specify which pages to print.
1856 If it's nil, all pages are printed.
1858 If it's a list, the list element may be an integer or a cons cell (FROM . TO)
1859 designating FROM page to TO page; any invalid element is ignored, that is, an
1860 integer lesser than one or if FROM is greater than TO.
1862 Otherwise, it's treated as nil.
1864 After ps-print processing `ps-selected-pages' is set to nil. But the latest
1865 `ps-selected-pages' is saved in `ps-last-selected-pages' (see it for
1866 documentation). So you can restore the latest selected pages by using
1867 `ps-last-selected-pages' or by calling `ps-restore-selected-pages' command (see
1868 it for documentation).
1870 See also `ps-even-or-odd-pages'."
1871 :type '(repeat :tag "Selected Pages"
1872 (radio :tag "Page"
1873 (integer :tag "Number")
1874 (cons :tag "Range"
1875 (integer :tag "From")
1876 (integer :tag "To"))))
1877 :group 'ps-print-page)
1879 (defcustom ps-even-or-odd-pages nil
1880 "*Specify if it prints even/odd pages.
1882 Valid values are:
1884 nil print all pages.
1886 `even-page' print only even pages.
1888 `odd-page' print only odd pages.
1890 `even-sheet' print only even sheets.
1891 That is, if `ps-n-up-printing' is 1, it behaves as `even-page';
1892 but for values greater than 1, it'll print only the even sheet
1893 of paper.
1895 `odd-sheet' print only odd sheets.
1896 That is, if `ps-n-up-printing' is 1, it behaves as `odd-page';
1897 but for values greater than 1, it'll print only the odd sheet
1898 of paper.
1900 Any other value is treated as nil.
1902 If you set `ps-selected-pages' (see it for documentation), first the pages are
1903 filtered by `ps-selected-pages' and then by `ps-even-or-odd-pages'. For
1904 example, if we have:
1906 (setq ps-selected-pages '(1 4 (6 . 10) (12 . 16) 20))
1908 Combining with `ps-even-or-odd-pages' and `ps-n-up-printing', we have:
1910 `ps-n-up-printing' = 1:
1911 `ps-even-or-odd-pages' PAGES PRINTED
1912 nil 1, 4, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 20
1913 even-page 4, 6, 8, 10, 12, 14, 16, 20
1914 odd-page 1, 7, 9, 13, 15
1915 even-sheet 4, 6, 8, 10, 12, 14, 16, 20
1916 odd-sheet 1, 7, 9, 13, 15
1918 `ps-n-up-printing' = 2:
1919 `ps-even-or-odd-pages' PAGES PRINTED
1920 nil 1/4, 6/7, 8/9, 10/12, 13/14, 15/16, 20
1921 even-page 4/6, 8/10, 12/14, 16/20
1922 odd-page 1/7, 9/13, 15
1923 even-sheet 6/7, 10/12, 15/16
1924 odd-sheet 1/4, 8/9, 13/14, 20
1926 So even-page/odd-page are about page parity and even-sheet/odd-sheet are about
1927 sheet parity."
1928 :type '(choice :menu-tag "Print Even/Odd Pages"
1929 :tag "Print Even/Odd Pages"
1930 (const :tag "All Pages" nil)
1931 (const :tag "Only Even Pages" even-page)
1932 (const :tag "Only Odd Pages" odd-page)
1933 (const :tag "Only Even Sheets" even-sheet)
1934 (const :tag "Only Odd Sheets" odd-sheet))
1935 :group 'ps-print-page)
1937 (defcustom ps-print-control-characters 'control-8-bit
1938 "*Specify the printable form for control and 8-bit characters.
1939 That is, instead of sending, for example, a ^D (\\004) to printer,
1940 it is sent the string \"^D\".
1942 Valid values are:
1944 `8-bit' This is the value to use when you want an ASCII encoding of
1945 any control or non-ASCII character. Control characters are
1946 encoded as \"^D\", and non-ASCII characters have an
1947 octal encoding.
1949 `control-8-bit' This is the value to use when you want an ASCII encoding of
1950 any control character, whether it is 7 or 8-bit.
1951 European 8-bits accented characters are printed according
1952 the current font.
1954 `control' Only ASCII control characters have an ASCII encoding.
1955 European 8-bits accented characters are printed according
1956 the current font.
1958 nil No ASCII encoding. Any character is printed according the
1959 current font.
1961 Any other value is treated as nil."
1962 :type '(choice :menu-tag "Control Char"
1963 :tag "Control Char"
1964 (const 8-bit) (const control-8-bit)
1965 (const control) (const :tag "nil" nil))
1966 :group 'ps-print-miscellany)
1968 (defcustom ps-n-up-printing 1
1969 "*Specify the number of pages per sheet paper."
1970 :type '(integer
1971 :tag "N Up Printing"
1972 :validate
1973 (lambda (wid)
1974 (if (and (< 0 (widget-value wid))
1975 (<= (widget-value wid) 100))
1977 (widget-put
1978 wid :error
1979 "Number of pages per sheet paper must be between 1 and 100.")
1980 wid)))
1981 :group 'ps-print-n-up)
1983 (defcustom ps-n-up-margin (/ (* 72 1.0) 2.54) ; 1 cm
1984 "*Specify the margin in points between the sheet border and n-up printing."
1985 :type 'number
1986 :group 'ps-print-n-up)
1988 (defcustom ps-n-up-border-p t
1989 "*Non-nil means a border is drawn around each page."
1990 :type 'boolean
1991 :group 'ps-print-n-up)
1993 (defcustom ps-n-up-filling 'left-top
1994 "*Specify how page matrix is filled on each sheet of paper.
1996 Following are the valid values for `ps-n-up-filling' with a filling example
1997 using a 3x4 page matrix:
1999 `left-top' 1 2 3 4 `left-bottom' 9 10 11 12
2000 5 6 7 8 5 6 7 8
2001 9 10 11 12 1 2 3 4
2003 `right-top' 4 3 2 1 `right-bottom' 12 11 10 9
2004 8 7 6 5 8 7 6 5
2005 12 11 10 9 4 3 2 1
2007 `top-left' 1 4 7 10 `bottom-left' 3 6 9 12
2008 2 5 8 11 2 5 8 11
2009 3 6 9 12 1 4 7 10
2011 `top-right' 10 7 4 1 `bottom-right' 12 9 6 3
2012 11 8 5 2 11 8 5 2
2013 12 9 6 3 10 7 4 1
2015 Any other value is treated as `left-top'."
2016 :type '(choice :menu-tag "N-Up Filling"
2017 :tag "N-Up Filling"
2018 (const left-top) (const left-bottom)
2019 (const right-top) (const right-bottom)
2020 (const top-left) (const bottom-left)
2021 (const top-right) (const bottom-right))
2022 :group 'ps-print-n-up)
2024 (defcustom ps-number-of-columns (if ps-landscape-mode 2 1)
2025 "*Specify the number of columns"
2026 :type 'number
2027 :group 'ps-print-miscellany)
2029 (defcustom ps-zebra-stripes nil
2030 "*Non-nil means print zebra stripes.
2031 See also documentation for `ps-zebra-stripe-height' and `ps-zebra-color'."
2032 :type 'boolean
2033 :group 'ps-print-zebra)
2035 (defcustom ps-zebra-stripe-height 3
2036 "*Number of zebra stripe lines.
2037 See also documentation for `ps-zebra-stripes' and `ps-zebra-color'."
2038 :type 'number
2039 :group 'ps-print-zebra)
2041 (defcustom ps-zebra-color 0.95
2042 "*Zebra stripe gray scale or RGB color.
2043 See also documentation for `ps-zebra-stripes' and `ps-zebra-stripe-height'."
2044 :type '(choice :menu-tag "Zebra Gray/Color"
2045 :tag "Zebra Gray/Color"
2046 (number :tag "Gray Scale" :value 0.95)
2047 (string :tag "Color Name" :value "gray95")
2048 (list :tag "RGB Color" :value (0.95 0.95 0.95)
2049 (number :tag "Red")
2050 (number :tag "Green")
2051 (number :tag "Blue")))
2052 :group 'ps-print-zebra)
2054 (defcustom ps-zebra-stripe-follow nil
2055 "*Specify how zebra stripes continue on next page.
2057 Visually, valid values are (the character `+' at right of each column indicates
2058 that a line is printed):
2060 `nil' `follow' `full' `full-follow'
2061 Current Page -------- ----------- --------- ----------------
2062 1 XXXXX + 1 XXXXXXXX + 1 XXXXXX + 1 XXXXXXXXXXXXX +
2063 2 XXXXX + 2 XXXXXXXX + 2 XXXXXX + 2 XXXXXXXXXXXXX +
2064 3 XXXXX + 3 XXXXXXXX + 3 XXXXXX + 3 XXXXXXXXXXXXX +
2065 4 + 4 + 4 + 4 +
2066 5 + 5 + 5 + 5 +
2067 6 + 6 + 6 + 6 +
2068 7 XXXXX + 7 XXXXXXXX + 7 XXXXXX + 7 XXXXXXXXXXXXX +
2069 8 XXXXX + 8 XXXXXXXX + 8 XXXXXX + 8 XXXXXXXXXXXXX +
2070 9 XXXXX + 9 XXXXXXXX + 9 XXXXXX + 9 XXXXXXXXXXXXX +
2071 10 + 10 +
2072 11 + 11 +
2073 -------- ----------- --------- ----------------
2074 Next Page -------- ----------- --------- ----------------
2075 12 XXXXX + 12 + 10 XXXXXX + 10 +
2076 13 XXXXX + 13 XXXXXXXX + 11 XXXXXX + 11 +
2077 14 XXXXX + 14 XXXXXXXX + 12 XXXXXX + 12 +
2078 15 + 15 XXXXXXXX + 13 + 13 XXXXXXXXXXXXX +
2079 16 + 16 + 14 + 14 XXXXXXXXXXXXX +
2080 17 + 17 + 15 + 15 XXXXXXXXXXXXX +
2081 18 XXXXX + 18 + 16 XXXXXX + 16 +
2082 19 XXXXX + 19 XXXXXXXX + 17 XXXXXX + 17 +
2083 20 XXXXX + 20 XXXXXXXX + 18 XXXXXX + 18 +
2084 21 + 21 XXXXXXXX +
2085 22 + 22 +
2086 -------- ----------- --------- ----------------
2088 Any other value is treated as `nil'."
2089 :type '(choice :menu-tag "Zebra Stripe Follow"
2090 :tag "Zebra Stripe Follow"
2091 (const :tag "Always Restart" nil)
2092 (const :tag "Continue on Next Page" follow)
2093 (const :tag "Print Only Full Stripe" full)
2094 (const :tag "Continue on Full Stripe" full-follow))
2095 :group 'ps-print-zebra)
2097 (defcustom ps-line-number nil
2098 "*Non-nil means print line number."
2099 :type 'boolean
2100 :group 'ps-print-miscellany)
2102 (defcustom ps-line-number-step 1
2103 "*Specify the interval that line number is printed.
2105 For example, `ps-line-number-step' is set to 2, the printing will look like:
2107 1 one line
2108 one line
2109 3 one line
2110 one line
2111 5 one line
2112 one line
2115 Valid values are:
2117 integer an integer that specifies the interval that line number is
2118 printed. If it's lesser than or equal to zero, it's used the
2119 value 1.
2121 `zebra' specifies that only the line number of the first line in a
2122 zebra stripe is to be printed.
2124 Any other value is treated as `zebra'."
2125 :type '(choice :menu-tag "Line Number Step"
2126 :tag "Line Number Step"
2127 (integer :tag "Step Interval")
2128 (const :tag "Synchronize Zebra" zebra))
2129 :group 'ps-print-miscellany)
2131 (defcustom ps-line-number-start 1
2132 "*Specify the starting point in the interval given by `ps-line-number-step'.
2134 For example, if `ps-line-number-step' is set to 3 and `ps-line-number-start' is
2135 set to 3, the printing will look like:
2137 one line
2138 one line
2139 3 one line
2140 one line
2141 one line
2142 6 one line
2143 one line
2144 one line
2145 9 one line
2146 one line
2149 The values for `ps-line-number-start':
2151 * If `ps-line-number-step' is an integer, must be between 1 and the value of
2152 `ps-line-number-step' inclusive.
2154 * If `ps-line-number-step' is set to `zebra', must be between 1 and the
2155 value of `ps-zebra-strip-height' inclusive. Use this combination if you
2156 wish that line number be relative to zebra stripes."
2157 :type '(integer :tag "Start Step Interval")
2158 :group 'ps-print-miscellany)
2160 (defcustom ps-print-background-image nil
2161 "*EPS image list to be printed on background.
2163 The elements are:
2165 (FILENAME X Y XSCALE YSCALE ROTATION PAGES...)
2167 FILENAME is a file name which contains an EPS image or some PostScript
2168 programming like EPS.
2169 FILENAME is ignored, if it doesn't exist or is read protected.
2171 X and Y are relative positions on paper to put the image.
2172 If X and Y are nil, the image is centralized on paper.
2174 XSCALE and YSCALE are scale factor to be applied to image before printing.
2175 If XSCALE and YSCALE are nil, the original size is used.
2177 ROTATION is the image rotation angle; if nil, the default is 0.
2179 PAGES designates the page to print background image.
2180 PAGES may be a number or a cons cell (FROM . TO) designating FROM page to TO
2181 page.
2182 If PAGES is nil, print background image on all pages.
2184 X, Y, XSCALE, YSCALE and ROTATION may be a floating point number, an integer
2185 number or a string. If it is a string, the string should contain PostScript
2186 programming that returns a float or integer value.
2188 For example, if you wish to print an EPS image on all pages do:
2190 '((\"~/images/EPS-image.ps\"))"
2191 :type '(repeat
2192 (list
2193 (file :tag "EPS File")
2194 (choice :tag "X" (const :tag "default" nil) number string)
2195 (choice :tag "Y" (const :tag "default" nil) number string)
2196 (choice :tag "X Scale" (const :tag "default" nil) number string)
2197 (choice :tag "Y Scale" (const :tag "default" nil) number string)
2198 (choice :tag "Rotation" (const :tag "default" nil) number string)
2199 (repeat :tag "Pages" :inline t
2200 (radio (integer :tag "Page")
2201 (cons :tag "Range"
2202 (integer :tag "From")
2203 (integer :tag "To"))))))
2204 :group 'ps-print-background)
2206 (defcustom ps-print-background-text nil
2207 "*Text list to be printed on background.
2209 The elements are:
2211 (STRING X Y FONT FONTSIZE GRAY ROTATION PAGES...)
2213 STRING is the text to be printed on background.
2215 X and Y are positions on paper to put the text.
2216 If X and Y are nil, the text is positioned at lower left corner.
2218 FONT is a font name to be used on printing the text.
2219 If nil, \"Times-Roman\" is used.
2221 FONTSIZE is font size to be used, if nil, 200 is used.
2223 GRAY is the text gray factor (should be very light like 0.8).
2224 If nil, the default is 0.85.
2226 ROTATION is the text rotation angle; if nil, the angle is given by the diagonal
2227 from lower left corner to upper right corner.
2229 PAGES designates the page to print background text.
2230 PAGES may be a number or a cons cell (FROM . TO) designating FROM page to TO
2231 page.
2232 If PAGES is nil, print background text on all pages.
2234 X, Y, FONTSIZE, GRAY and ROTATION may be a floating point number, an integer
2235 number or a string. If it is a string, the string should contain PostScript
2236 programming that returns a float or integer value.
2238 For example, if you wish to print text \"Preliminary\" on all pages do:
2240 '((\"Preliminary\"))"
2241 :type '(repeat
2242 (list
2243 (string :tag "Text")
2244 (choice :tag "X" (const :tag "default" nil) number string)
2245 (choice :tag "Y" (const :tag "default" nil) number string)
2246 (choice :tag "Font" (const :tag "default" nil) string)
2247 (choice :tag "Fontsize" (const :tag "default" nil) number string)
2248 (choice :tag "Gray" (const :tag "default" nil) number string)
2249 (choice :tag "Rotation" (const :tag "default" nil) number string)
2250 (repeat :tag "Pages" :inline t
2251 (radio (integer :tag "Page")
2252 (cons :tag "Range"
2253 (integer :tag "From")
2254 (integer :tag "To"))))))
2255 :group 'ps-print-background)
2257 ;;; Horizontal layout
2259 ;; ------------------------------------------
2260 ;; | | | | | | | |
2261 ;; | lm | text | ic | text | ic | text | rm |
2262 ;; | | | | | | | |
2263 ;; ------------------------------------------
2265 (defcustom ps-left-margin (/ (* 72 2.0) 2.54) ; 2 cm
2266 "*Left margin in points (1/72 inch)."
2267 :type 'number
2268 :group 'ps-print-horizontal)
2270 (defcustom ps-right-margin (/ (* 72 2.0) 2.54) ; 2 cm
2271 "*Right margin in points (1/72 inch)."
2272 :type 'number
2273 :group 'ps-print-horizontal)
2275 (defcustom ps-inter-column (/ (* 72 2.0) 2.54) ; 2 cm
2276 "*Horizontal space between columns in points (1/72 inch)."
2277 :type 'number
2278 :group 'ps-print-horizontal)
2280 ;;; Vertical layout
2282 ;; |--------|
2283 ;; | tm |
2284 ;; |--------|
2285 ;; | header |
2286 ;; |--------|
2287 ;; | ho |
2288 ;; |--------|
2289 ;; | text |
2290 ;; |--------|
2291 ;; | bm |
2292 ;; |--------|
2294 (defcustom ps-bottom-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
2295 "*Bottom margin in points (1/72 inch)."
2296 :type 'number
2297 :group 'ps-print-vertical)
2299 (defcustom ps-top-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
2300 "*Top margin in points (1/72 inch)."
2301 :type 'number
2302 :group 'ps-print-vertical)
2304 (defcustom ps-header-offset (/ (* 72 1.0) 2.54) ; 1.0 cm
2305 "*Vertical space in points (1/72 inch) between the main text and the header."
2306 :type 'number
2307 :group 'ps-print-vertical)
2309 (defcustom ps-header-line-pad 0.15
2310 "*Portion of a header title line height to insert between the header frame
2311 and the text it contains, both in the vertical and horizontal directions."
2312 :type 'number
2313 :group 'ps-print-vertical)
2315 (defcustom ps-footer-offset (/ (* 72 1.0) 2.54) ; 1.0 cm
2316 "*Vertical space in points (1/72 inch) between the main text and the footer."
2317 :type 'number
2318 :group 'ps-print-vertical)
2320 (defcustom ps-footer-line-pad 0.15
2321 "*Portion of a footer title line height to insert between the footer frame
2322 and the text it contains, both in the vertical and horizontal directions."
2323 :type 'number
2324 :group 'ps-print-vertical)
2326 ;;; Header/Footer setup
2328 (defcustom ps-print-header t
2329 "*Non-nil means print a header at the top of each page.
2330 By default, the header displays the buffer name, page number, and, if the
2331 buffer is visiting a file, the file's directory. Headers are customizable by
2332 changing variables `ps-left-header' and `ps-right-header'."
2333 :type 'boolean
2334 :group 'ps-print-headers)
2336 (defcustom ps-print-header-frame t
2337 "*Non-nil means draw a gaudy frame around the header."
2338 :type 'boolean
2339 :group 'ps-print-headers)
2341 (defcustom ps-header-frame-alist
2342 '((fore-color . 0.0)
2343 (back-color . 0.9)
2344 (border-width . 0.4)
2345 (border-color . 0.0)
2346 (shadow-color . 0.0))
2347 "*Specify header frame properties alist.
2349 Valid frame properties are:
2351 `fore-color' Specify the foreground frame color.
2352 It should be a float number between 0.0 (black color)
2353 and 1.0 (white color), a string which is a color name,
2354 or a list of 3 float numbers which corresponds to the
2355 Red Green Blue color scale, each float number between
2356 0.0 (dark color) and 1.0 (bright color).
2358 `back-color' Specify the background frame color (similar to
2359 `fore-color').
2361 `shadow-color' Specify the shadow color (similar to `fore-color').
2363 `border-color' Specify the border color (similar to `fore-color').
2365 `border-width' Specify the border width.
2367 Any other property is ignored.
2369 Don't change this alist directly, instead use customization, or `ps-value',
2370 `ps-get', `ps-put' and `ps-del' functions (see them for documentation)."
2371 :version "21.1"
2372 :type '(repeat
2373 (choice :menu-tag "Header Frame Element"
2374 :tag ""
2375 (cons :tag "Foreground Color" :format "%v"
2376 (const :format "" fore-color)
2377 (choice :menu-tag "Foreground Color"
2378 :tag "Foreground Color"
2379 (number :tag "Gray Scale" :value 0.0)
2380 (string :tag "Color Name" :value "black")
2381 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2382 (number :tag "Red")
2383 (number :tag "Green")
2384 (number :tag "Blue"))))
2385 (cons :tag "Background Color" :format "%v"
2386 (const :format "" back-color)
2387 (choice :menu-tag "Background Color"
2388 :tag "Background Color"
2389 (number :tag "Gray Scale" :value 0.9)
2390 (string :tag "Color Name" :value "gray90")
2391 (list :tag "RGB Color" :value (0.9 0.9 0.9)
2392 (number :tag "Red")
2393 (number :tag "Green")
2394 (number :tag "Blue"))))
2395 (cons :tag "Border Width" :format "%v"
2396 (const :format "" border-width)
2397 (number :tag "Border Width" :value 0.4))
2398 (cons :tag "Border Color" :format "%v"
2399 (const :format "" border-color)
2400 (choice :menu-tag "Border Color"
2401 :tag "Border Color"
2402 (number :tag "Gray Scale" :value 0.0)
2403 (string :tag "Color Name" :value "black")
2404 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2405 (number :tag "Red")
2406 (number :tag "Green")
2407 (number :tag "Blue"))))
2408 (cons :tag "Shadow Color" :format "%v"
2409 (const :format "" shadow-color)
2410 (choice :menu-tag "Shadow Color"
2411 :tag "Shadow Color"
2412 (number :tag "Gray Scale" :value 0.0)
2413 (string :tag "Color Name" :value "black")
2414 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2415 (number :tag "Red")
2416 (number :tag "Green")
2417 (number :tag "Blue"))))))
2418 :group 'ps-print-headers)
2420 (defcustom ps-header-lines 2
2421 "*Number of lines to display in page header, when generating PostScript."
2422 :type 'integer
2423 :group 'ps-print-headers)
2425 (defcustom ps-print-footer nil
2426 "*Non-nil means print a footer at the bottom of each page.
2427 By default, the footer displays page number.
2428 Footers are customizable by changing variables `ps-left-footer' and
2429 `ps-right-footer'."
2430 :version "21.1"
2431 :type 'boolean
2432 :group 'ps-print-headers)
2434 (defcustom ps-print-footer-frame t
2435 "*Non-nil means draw a gaudy frame around the footer."
2436 :version "21.1"
2437 :type 'boolean
2438 :group 'ps-print-headers)
2440 (defcustom ps-footer-frame-alist
2441 '((fore-color . 0.0)
2442 (back-color . 0.9)
2443 (border-width . 0.4)
2444 (border-color . 0.0)
2445 (shadow-color . 0.0))
2446 "*Specify footer frame properties alist.
2448 Don't change this alist directly, instead use customization, or `ps-value',
2449 `ps-get', `ps-put' and `ps-del' functions (see them for documentation).
2451 See also `ps-header-frame-alist' 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 :group 'ps-print-headers)
2501 (defcustom ps-footer-lines 2
2502 "*Number of lines to display in page footer, when generating PostScript."
2503 :version "21.1"
2504 :type 'integer
2505 :group 'ps-print-headers)
2507 (defcustom ps-print-only-one-header nil
2508 "*Non-nil means print only one header/footer at the top/bottom of each page.
2509 This is useful when printing more than one column, so it is possible to have
2510 only one header/footer over all columns or one header/footer per column.
2511 See also `ps-print-header' and `ps-print-footer'."
2512 :type 'boolean
2513 :group 'ps-print-headers)
2515 (defcustom ps-switch-header 'duplex
2516 "*Specify if headers/footers are switched or not.
2518 Valid values are:
2520 nil Never switch headers/footers.
2522 t Always switch headers/footers.
2524 duplex Switch headers/footers only when duplexing is on, that is, when
2525 `ps-spool-duplex' is non-nil.
2527 Any other value is treated as t.
2529 See also `ps-print-header' and `ps-print-footer'."
2530 :type '(choice :menu-tag "Switch Header/Footer"
2531 :tag "Switch Header/Footer"
2532 (const :tag "Never Switch" nil)
2533 (const :tag "Always Switch" t)
2534 (const :tag "Switch When Duplexing" duplex))
2535 :group 'ps-print-headers)
2537 (defcustom ps-show-n-of-n t
2538 "*Non-nil means show page numbers as N/M, meaning page N of M.
2539 NOTE: page numbers are displayed as part of headers,
2540 see variable `ps-print-header'."
2541 :type 'boolean
2542 :group 'ps-print-headers)
2544 (defcustom ps-spool-config
2545 (if ps-windows-system
2547 'lpr-switches)
2548 "*Specify who is responsible for setting duplex and page size.
2550 Valid values are:
2552 `lpr-switches' duplex and page size are configured by `ps-lpr-switches'.
2553 Don't forget to set `ps-lpr-switches' to select duplex
2554 printing for your printer.
2556 `setpagedevice' duplex and page size are configured by ps-print using the
2557 setpagedevice PostScript operator.
2559 nil duplex and page size are configured by ps-print *not* using
2560 the setpagedevice PostScript operator.
2562 Any other value is treated as nil.
2564 WARNING: The setpagedevice PostScript operator affects ghostview utility when
2565 viewing file generated using landscape. Also on some printers,
2566 setpagedevice affects zebra stripes; on other printers, setpagedevice
2567 affects the left margin.
2568 Besides all that, if your printer does not have the paper size
2569 specified by setpagedevice, your printing will be aborted.
2570 So, if you need to use setpagedevice, set `ps-spool-config' to
2571 `setpagedevice', generate a test file and send it to your printer; if
2572 the printed file isn't ok, set `ps-spool-config' to nil."
2573 :type '(choice :menu-tag "Spool Config"
2574 :tag "Spool Config"
2575 (const lpr-switches) (const setpagedevice)
2576 (const :tag "nil" nil))
2577 :group 'ps-print-headers)
2579 (defcustom ps-spool-duplex nil ; Not many people have duplex printers,
2580 ; so default to nil.
2581 "*Non-nil generates PostScript for a two-sided printer.
2582 For a duplex printer, the `ps-spool-*' and `ps-print-*' commands will insert
2583 blank pages as needed between print jobs so that the next buffer printed will
2584 start on the right page. Also, if headers are turned on, the headers will be
2585 reversed on duplex printers so that the page numbers fall to the left on
2586 even-numbered pages.
2588 See also `ps-spool-tumble'."
2589 :type 'boolean
2590 :group 'ps-print-headers)
2592 (defcustom ps-spool-tumble nil
2593 "*Specify how the page images on opposite sides of a sheet are oriented.
2594 If `ps-spool-tumble' is nil, produces output suitable for binding on the left
2595 or right. If `ps-spool-tumble' is non-nil, produces output suitable for
2596 binding at the top or bottom.
2598 It has effect only when `ps-spool-duplex' is non-nil."
2599 :type 'boolean
2600 :group 'ps-print-headers)
2602 ;;; Fonts
2604 (defcustom ps-font-info-database
2605 '((Courier ; the family key
2606 (fonts (normal . "Courier")
2607 (bold . "Courier-Bold")
2608 (italic . "Courier-Oblique")
2609 (bold-italic . "Courier-BoldOblique"))
2610 (size . 10.0)
2611 (line-height . 10.55)
2612 (space-width . 6.0)
2613 (avg-char-width . 6.0))
2614 (Helvetica ; the family key
2615 (fonts (normal . "Helvetica")
2616 (bold . "Helvetica-Bold")
2617 (italic . "Helvetica-Oblique")
2618 (bold-italic . "Helvetica-BoldOblique"))
2619 (size . 10.0)
2620 (line-height . 11.56)
2621 (space-width . 2.78)
2622 (avg-char-width . 5.09243))
2623 (Times
2624 (fonts (normal . "Times-Roman")
2625 (bold . "Times-Bold")
2626 (italic . "Times-Italic")
2627 (bold-italic . "Times-BoldItalic"))
2628 (size . 10.0)
2629 (line-height . 11.0)
2630 (space-width . 2.5)
2631 (avg-char-width . 4.71432))
2632 (Palatino
2633 (fonts (normal . "Palatino-Roman")
2634 (bold . "Palatino-Bold")
2635 (italic . "Palatino-Italic")
2636 (bold-italic . "Palatino-BoldItalic"))
2637 (size . 10.0)
2638 (line-height . 12.1)
2639 (space-width . 2.5)
2640 (avg-char-width . 5.08676))
2641 (Helvetica-Narrow
2642 (fonts (normal . "Helvetica-Narrow")
2643 (bold . "Helvetica-Narrow-Bold")
2644 (italic . "Helvetica-Narrow-Oblique")
2645 (bold-italic . "Helvetica-Narrow-BoldOblique"))
2646 (size . 10.0)
2647 (line-height . 11.56)
2648 (space-width . 2.2796)
2649 (avg-char-width . 4.17579))
2650 (NewCenturySchlbk
2651 (fonts (normal . "NewCenturySchlbk-Roman")
2652 (bold . "NewCenturySchlbk-Bold")
2653 (italic . "NewCenturySchlbk-Italic")
2654 (bold-italic . "NewCenturySchlbk-BoldItalic"))
2655 (size . 10.0)
2656 (line-height . 12.15)
2657 (space-width . 2.78)
2658 (avg-char-width . 5.31162))
2659 ;; got no bold for the next ones
2660 (AvantGarde-Book
2661 (fonts (normal . "AvantGarde-Book")
2662 (italic . "AvantGarde-BookOblique"))
2663 (size . 10.0)
2664 (line-height . 11.77)
2665 (space-width . 2.77)
2666 (avg-char-width . 5.45189))
2667 (AvantGarde-Demi
2668 (fonts (normal . "AvantGarde-Demi")
2669 (italic . "AvantGarde-DemiOblique"))
2670 (size . 10.0)
2671 (line-height . 12.72)
2672 (space-width . 2.8)
2673 (avg-char-width . 5.51351))
2674 (Bookman-Demi
2675 (fonts (normal . "Bookman-Demi")
2676 (italic . "Bookman-DemiItalic"))
2677 (size . 10.0)
2678 (line-height . 11.77)
2679 (space-width . 3.4)
2680 (avg-char-width . 6.05946))
2681 (Bookman-Light
2682 (fonts (normal . "Bookman-Light")
2683 (italic . "Bookman-LightItalic"))
2684 (size . 10.0)
2685 (line-height . 11.79)
2686 (space-width . 3.2)
2687 (avg-char-width . 5.67027))
2688 ;; got no bold and no italic for the next ones
2689 (Symbol
2690 (fonts (normal . "Symbol"))
2691 (size . 10.0)
2692 (line-height . 13.03)
2693 (space-width . 2.5)
2694 (avg-char-width . 3.24324))
2695 (Zapf-Dingbats
2696 (fonts (normal . "Zapf-Dingbats"))
2697 (size . 10.0)
2698 (line-height . 9.63)
2699 (space-width . 2.78)
2700 (avg-char-width . 2.78))
2701 (Zapf-Chancery-MediumItalic
2702 (fonts (normal . "Zapf-Chancery-MediumItalic"))
2703 (size . 10.0)
2704 (line-height . 11.45)
2705 (space-width . 2.2)
2706 (avg-char-width . 4.10811))
2708 "*Font info database: font family (the key), name, bold, italic, bold-italic,
2709 reference size, line height, space width, average character width.
2710 To get the info for another specific font (say Helvetica), do the following:
2711 - create a new buffer
2712 - generate the PostScript image to a file (C-u M-x ps-print-buffer)
2713 - open this file and delete the leading `%' (which is the PostScript comment
2714 character) from the line
2715 `% 3 cm 20 cm moveto 10/Courier ReportFontInfo showpage'
2716 to get the line
2717 `3 cm 20 cm moveto 10/Helvetica ReportFontInfo showpage'
2718 - add the values to `ps-font-info-database'.
2719 You can get all the fonts of YOUR printer using `ReportAllFontInfo'.
2721 Note also that ps-print DOESN'T download any font to your printer, instead it
2722 uses the fonts resident in your printer."
2723 :type '(repeat
2724 (list :tag "Font Definition"
2725 (symbol :tag "Font Family")
2726 (cons :format "%v"
2727 (const :format "" fonts)
2728 (repeat :tag "Faces"
2729 (cons (choice :menu-tag "Font Weight/Slant"
2730 :tag "Font Weight/Slant"
2731 (const normal)
2732 (const bold)
2733 (const italic)
2734 (const bold-italic)
2735 (symbol :tag "Face"))
2736 (string :tag "Font Name"))))
2737 (cons :format "%v"
2738 (const :format "" size)
2739 (number :tag "Reference Size"))
2740 (cons :format "%v"
2741 (const :format "" line-height)
2742 (number :tag "Line Height"))
2743 (cons :format "%v"
2744 (const :format "" space-width)
2745 (number :tag "Space Width"))
2746 (cons :format "%v"
2747 (const :format "" avg-char-width)
2748 (number :tag "Average Character Width"))))
2749 :group 'ps-print-font)
2751 (defcustom ps-font-family 'Courier
2752 "*Font family name for ordinary text, when generating PostScript."
2753 :type 'symbol
2754 :group 'ps-print-font)
2756 (defcustom ps-font-size '(7 . 8.5)
2757 "*Font size, in points, for ordinary text, when generating PostScript."
2758 :type '(choice :menu-tag "Ordinary Text Font Size"
2759 :tag "Ordinary Text Font Size"
2760 (number :tag "Text Size")
2761 (cons :tag "Landscape/Portrait"
2762 (number :tag "Landscape Text Size")
2763 (number :tag "Portrait Text Size")))
2764 :group 'ps-print-font)
2766 (defcustom ps-header-font-family 'Helvetica
2767 "*Font family name for text in the header, when generating PostScript."
2768 :type 'symbol
2769 :group 'ps-print-font)
2771 (defcustom ps-header-font-size '(10 . 12)
2772 "*Font size, in points, for text in the header, when generating PostScript."
2773 :type '(choice :menu-tag "Header Font Size"
2774 :tag "Header Font Size"
2775 (number :tag "Header Size")
2776 (cons :tag "Landscape/Portrait"
2777 (number :tag "Landscape Header Size")
2778 (number :tag "Portrait Header Size")))
2779 :group 'ps-print-font)
2781 (defcustom ps-header-title-font-size '(12 . 14)
2782 "*Font size, in points, for the top line of text in header, in PostScript."
2783 :type '(choice :menu-tag "Header Title Font Size"
2784 :tag "Header Title Font Size"
2785 (number :tag "Header Title Size")
2786 (cons :tag "Landscape/Portrait"
2787 (number :tag "Landscape Header Title Size")
2788 (number :tag "Portrait Header Title Size")))
2789 :group 'ps-print-font)
2791 (defcustom ps-footer-font-family 'Helvetica
2792 "*Font family name for text in the footer, when generating PostScript."
2793 :version "21.1"
2794 :type 'symbol
2795 :group 'ps-print-font)
2797 (defcustom ps-footer-font-size '(10 . 12)
2798 "*Font size, in points, for text in the footer, when generating PostScript."
2799 :version "21.1"
2800 :type '(choice :menu-tag "Footer Font Size"
2801 :tag "Footer Font Size"
2802 (number :tag "Footer Size")
2803 (cons :tag "Landscape/Portrait"
2804 (number :tag "Landscape Footer Size")
2805 (number :tag "Portrait Footer Size")))
2806 :group 'ps-print-font)
2808 (defcustom ps-line-number-color "black"
2809 "*Specify color for line-number, when generating PostScript."
2810 :type '(choice :menu-tag "Line Number Color"
2811 :tag "Line Number Color"
2812 (number :tag "Gray Scale" :value 0)
2813 (string :tag "Color Name" :value "black")
2814 (list :tag "RGB Color" :value (0 0 0)
2815 (number :tag "Red")
2816 (number :tag "Green")
2817 (number :tag "Blue")))
2818 :version "21.1"
2819 :group 'ps-print-font
2820 :group 'ps-print-miscellany)
2822 (defcustom ps-line-number-font "Times-Italic"
2823 "*Font for line-number, when generating PostScript."
2824 :type 'string
2825 :group 'ps-print-font
2826 :group 'ps-print-miscellany)
2828 (defcustom ps-line-number-font-size 6
2829 "*Font size, in points, for line number, when generating PostScript."
2830 :type '(choice :menu-tag "Line Number Font Size"
2831 :tag "Line Number Font Size"
2832 (number :tag "Font Size")
2833 (cons :tag "Landscape/Portrait"
2834 (number :tag "Landscape Font Size")
2835 (number :tag "Portrait Font Size")))
2836 :group 'ps-print-font
2837 :group 'ps-print-miscellany)
2839 ;;; Colors
2841 ;; Printing color requires x-color-values.
2842 (defcustom ps-print-color-p
2843 (or (and (fboundp 'color-values) ; Emacs
2844 (ps-e-color-values "Green"))
2845 (fboundp 'x-color-values) ; Emacs
2846 (fboundp 'color-instance-rgb-components))
2847 ; XEmacs
2848 "*Non-nil means print the buffer's text in color."
2849 :type 'boolean
2850 :group 'ps-print-color)
2852 (defcustom ps-default-fg '(0.0 0.0 0.0)
2853 "*RGB values of the default foreground color. Defaults to black."
2854 :type '(choice :menu-tag "Default Foreground Gray/Color"
2855 :tag "Default Foreground Gray/Color"
2856 (number :tag "Gray Scale" :value 0.0)
2857 (string :tag "Color Name" :value "black")
2858 (list :tag "RGB Color" :value (0.0 0.0 0.0)
2859 (number :tag "Red")
2860 (number :tag "Green")
2861 (number :tag "Blue")))
2862 :group 'ps-print-color)
2864 (defcustom ps-default-bg '(1.0 1.0 1.0)
2865 "*RGB values of the default background color. Defaults to white."
2866 :type '(choice :menu-tag "Default Background Gray/Color"
2867 :tag "Default Background Gray/Color"
2868 (number :tag "Gray Scale" :value 1.0)
2869 (string :tag "Color Name" :value "white")
2870 (list :tag "RGB Color" :value (1.0 1.0 1.0)
2871 (number :tag "Red")
2872 (number :tag "Green")
2873 (number :tag "Blue")))
2874 :group 'ps-print-color)
2876 (defcustom ps-auto-font-detect t
2877 "*Non-nil means automatically detect bold/italic/underline face attributes.
2878 If nil, we rely solely on the lists `ps-bold-faces', `ps-italic-faces', and
2879 `ps-underlined-faces'."
2880 :type 'boolean
2881 :group 'ps-print-font)
2883 (defcustom ps-bold-faces
2884 (unless ps-print-color-p
2885 '(font-lock-function-name-face
2886 font-lock-builtin-face
2887 font-lock-variable-name-face
2888 font-lock-keyword-face
2889 font-lock-warning-face))
2890 "*A list of the \(non-bold\) faces that should be printed in bold font.
2891 This applies to generating PostScript."
2892 :type '(repeat face)
2893 :group 'ps-print-face)
2895 (defcustom ps-italic-faces
2896 (unless ps-print-color-p
2897 '(font-lock-variable-name-face
2898 font-lock-type-face
2899 font-lock-string-face
2900 font-lock-comment-face
2901 font-lock-warning-face))
2902 "*A list of the \(non-italic\) faces that should be printed in italic font.
2903 This applies to generating PostScript."
2904 :type '(repeat face)
2905 :group 'ps-print-face)
2907 (defcustom ps-underlined-faces
2908 (unless ps-print-color-p
2909 '(font-lock-function-name-face
2910 font-lock-constant-face
2911 font-lock-warning-face))
2912 "*A list of the \(non-underlined\) faces that should be printed underlined.
2913 This applies to generating PostScript."
2914 :type '(repeat face)
2915 :group 'ps-print-face)
2917 (defcustom ps-use-face-background nil
2918 "*Specify if face background should be used.
2920 Valid values are:
2922 t always use face background color.
2923 nil never use face background color.
2924 (face...) list of faces whose background color will be used.
2926 Any other value will be treated as t."
2927 :type '(choice :menu-tag "Use Face Background"
2928 :tag "Use Face Background"
2929 (const :tag "Always Use Face Background" t)
2930 (const :tag "Never Use Face Background" nil)
2931 (repeat :menu-tag "Face Background List"
2932 :tag "Face Background List"
2933 face))
2934 :group 'ps-print-face)
2936 (defcustom ps-left-header
2937 (list 'ps-get-buffer-name 'ps-header-dirpart)
2938 "*The items to display (each on a line) on the left part of the page header.
2939 This applies to generating PostScript.
2941 The value should be a list of strings and symbols, each representing an entry
2942 in the PostScript array HeaderLinesLeft.
2944 Strings are inserted unchanged into the array; those representing
2945 PostScript string literals should be delimited with PostScript string
2946 delimiters '(' and ')'.
2948 For symbols with bound functions, the function is called and should return a
2949 string to be inserted into the array. For symbols with bound values, the value
2950 should be a string to be inserted into the array. In either case, function or
2951 variable, the string value has PostScript string delimiters added to it."
2952 :type '(repeat (choice :menu-tag "Left Header"
2953 :tag "Left Header"
2954 string symbol))
2955 :group 'ps-print-headers)
2957 (defcustom ps-right-header
2958 (list "/pagenumberstring load"
2959 'ps-time-stamp-mon-dd-yyyy 'ps-time-stamp-hh:mm:ss)
2960 "*The items to display (each on a line) on the right part of the page header.
2961 This applies to generating PostScript.
2963 See the variable `ps-left-header' for a description of the format of this
2964 variable."
2965 :type '(repeat (choice :menu-tag "Right Header"
2966 :tag "Right Header"
2967 string symbol))
2968 :group 'ps-print-headers)
2970 (defcustom ps-left-footer
2971 (list 'ps-get-buffer-name 'ps-header-dirpart)
2972 "*The items to display (each on a line) on the left part of the page footer.
2973 This applies to generating PostScript.
2975 The value should be a list of strings and symbols, each representing an entry
2976 in the PostScript array FooterLinesLeft.
2978 Strings are inserted unchanged into the array; those representing PostScript
2979 string literals should be delimited with PostScript string delimiters '(' and
2980 ')'.
2982 For symbols with bound functions, the function is called and should return a
2983 string to be inserted into the array. For symbols with bound values, the value
2984 should be a string to be inserted into the array. In either case, function or
2985 variable, the string value has PostScript string delimiters added to it."
2986 :version "21.1"
2987 :type '(repeat (choice :menu-tag "Left Footer"
2988 :tag "Left Footer"
2989 string symbol))
2990 :group 'ps-print-headers)
2992 (defcustom ps-right-footer
2993 (list "/pagenumberstring load"
2994 'ps-time-stamp-mon-dd-yyyy 'ps-time-stamp-hh:mm:ss)
2995 "*The items to display (each on a line) on the right part of the page footer.
2996 This applies to generating PostScript.
2998 See the variable `ps-left-footer' for a description of the format of this
2999 variable."
3000 :version "21.1"
3001 :type '(repeat (choice :menu-tag "Right Footer"
3002 :tag "Right Footer"
3003 string symbol))
3004 :group 'ps-print-headers)
3006 (defcustom ps-razzle-dazzle t
3007 "*Non-nil means report progress while formatting buffer."
3008 :type 'boolean
3009 :group 'ps-print-miscellany)
3011 (defcustom ps-adobe-tag "%!PS-Adobe-3.0\n"
3012 "*Contains the header line identifying the output as PostScript.
3013 By default, `ps-adobe-tag' contains the standard identifier. Some printers
3014 require slightly different versions of this line."
3015 :type 'string
3016 :group 'ps-print-miscellany)
3018 (defcustom ps-build-face-reference t
3019 "*Non-nil means build the reference face lists.
3021 ps-print sets this value to nil after it builds its internal reference lists of
3022 bold and italic faces. By settings its value back to t, you can force ps-print
3023 to rebuild the lists the next time you invoke one of the ...-with-faces
3024 commands.
3026 You should set this value back to t after you change the attributes of any
3027 face, or create new faces. Most users shouldn't have to worry about its
3028 setting, though."
3029 :type 'boolean
3030 :group 'ps-print-face)
3032 (defcustom ps-always-build-face-reference nil
3033 "*Non-nil means always rebuild the reference face lists.
3035 If this variable is non-nil, ps-print will rebuild its internal reference lists
3036 of bold and italic faces *every* time one of the ...-with-faces commands is
3037 called. Most users shouldn't need to set this variable."
3038 :type 'boolean
3039 :group 'ps-print-face)
3041 (defcustom ps-banner-page-when-duplexing nil
3042 "*Non-nil means the very first page is skipped.
3043 It's like the very first character of buffer (or region) is ^L (\\014)."
3044 :type 'boolean
3045 :group 'ps-print-headers)
3047 (defcustom ps-postscript-code-directory
3048 (or (and (fboundp 'locate-data-directory) ; xemacs
3049 (locate-data-directory "ps-print"))
3050 data-directory) ; emacs
3051 "*Directory where it's located the PostScript prologue file used by ps-print.
3052 By default, this directory is the same as in the variable `data-directory'."
3053 :type 'directory
3054 :group 'ps-print-miscellany)
3056 (defcustom ps-line-spacing 0
3057 "*Specify line spacing, in points, for ordinary text.
3059 See also `ps-paragraph-spacing' and `ps-paragraph-regexp'.
3061 To get all lines with some spacing set both `ps-line-spacing' and
3062 `ps-paragraph-spacing' variables."
3063 :type '(choice :menu-tag "Line Spacing For Ordinary Text"
3064 :tag "Line Spacing For Ordinary Text"
3065 (number :tag "Line Spacing")
3066 (cons :tag "Landscape/Portrait"
3067 (number :tag "Landscape Line Spacing")
3068 (number :tag "Portrait Line Spacing")))
3069 :version "21.1"
3070 :group 'ps-print-miscellany)
3072 (defcustom ps-paragraph-spacing 0
3073 "*Specify paragraph spacing, in points, for ordinary text.
3075 See also `ps-line-spacing' and `ps-paragraph-regexp'.
3077 To get all lines with some spacing set both `ps-line-spacing' and
3078 `ps-paragraph-spacing' variables."
3079 :type '(choice :menu-tag "Paragraph Spacing For Ordinary Text"
3080 :tag "Paragraph Spacing For Ordinary Text"
3081 (number :tag "Paragraph Spacing")
3082 (cons :tag "Landscape/Portrait"
3083 (number :tag "Landscape Paragraph Spacing")
3084 (number :tag "Portrait Paragraph Spacing")))
3085 :version "21.1"
3086 :group 'ps-print-miscellany)
3088 (defcustom ps-paragraph-regexp "[ \t]*$"
3089 "*Specify paragraph delimiter.
3091 It should be a regexp or nil.
3093 See also `ps-paragraph-spacing'."
3094 :type '(choice :menu-tag "Paragraph Delimiter"
3095 (const :tag "No Delimiter" nil)
3096 (regexp :tag "Delimiter Regexp"))
3097 :version "21.1"
3098 :group 'ps-print-miscellany)
3100 (defcustom ps-begin-cut-regexp nil
3101 "*Specify regexp which is start of a region to cut out when printing.
3103 As an example, variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' may be
3104 set to \"^Local Variables:\" and \"^End:\", respectively, in order to leave out
3105 some special printing instructions from the actual print. Special printing
3106 instructions may be appended to the end of the file just like any other
3107 buffer-local variables. See section \"Local Variables in Files\" on Emacs
3108 manual for more information.
3110 Variables `ps-begin-cut-regexp' and `ps-end-cut-regexp' control together what
3111 actually gets printed. Both variables may be set to nil in which case no
3112 cutting occurs."
3113 :type 'regexp
3114 :version "21.1"
3115 :group 'ps-print-miscellany)
3117 (defcustom ps-end-cut-regexp nil
3118 "*Specify regexp which is end of the region to cut out when printing.
3120 See `ps-begin-cut-regexp' for more information."
3121 :type 'regexp
3122 :version "21.1"
3123 :group 'ps-print-miscellany)
3126 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3127 ;; Selected Pages
3130 (defvar ps-last-selected-pages nil
3131 "Latest `ps-selected-pages' value.")
3134 (defun ps-restore-selected-pages ()
3135 "Restore latest `ps-selected-pages' value."
3136 (interactive)
3137 (setq ps-selected-pages ps-last-selected-pages))
3140 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3141 ;; Customization
3144 ;;;###autoload
3145 (defun ps-print-customize ()
3146 "Customization of ps-print group."
3147 (interactive)
3148 (customize-group 'ps-print))
3151 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3152 ;; User commands
3155 ;;;###autoload
3156 (defun ps-print-buffer (&optional filename)
3157 "Generate and print a PostScript image of the buffer.
3159 Interactively, when you use a prefix argument (C-u), the command prompts the
3160 user for a file name, and saves the PostScript image in that file instead of
3161 sending it to the printer.
3163 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3164 send the image to the printer. If FILENAME is a string, save the PostScript
3165 image in a file with that name."
3166 (interactive (list (ps-print-preprint current-prefix-arg)))
3167 (ps-print-without-faces (point-min) (point-max) filename))
3170 ;;;###autoload
3171 (defun ps-print-buffer-with-faces (&optional filename)
3172 "Generate and print a PostScript image of the buffer.
3173 Like `ps-print-buffer', but includes font, color, and underline information in
3174 the generated image. This command works only if you are using a window system,
3175 so it has a way to determine color values."
3176 (interactive (list (ps-print-preprint current-prefix-arg)))
3177 (ps-print-with-faces (point-min) (point-max) filename))
3180 ;;;###autoload
3181 (defun ps-print-region (from to &optional filename)
3182 "Generate and print a PostScript image of the region.
3183 Like `ps-print-buffer', but prints just the current region."
3184 (interactive (list (point) (mark) (ps-print-preprint current-prefix-arg)))
3185 (ps-print-without-faces from to filename t))
3188 ;;;###autoload
3189 (defun ps-print-region-with-faces (from to &optional filename)
3190 "Generate and print a PostScript image of the region.
3191 Like `ps-print-region', but includes font, color, and underline information in
3192 the generated image. This command works only if you are using a window system,
3193 so it has a way to determine color values."
3194 (interactive (list (point) (mark) (ps-print-preprint current-prefix-arg)))
3195 (ps-print-with-faces from to filename t))
3198 ;;;###autoload
3199 (defun ps-spool-buffer ()
3200 "Generate and spool a PostScript image of the buffer.
3201 Like `ps-print-buffer' except that the PostScript image is saved in a local
3202 buffer to be sent to the printer later.
3204 Use the command `ps-despool' to send the spooled images to the printer."
3205 (interactive)
3206 (ps-spool-without-faces (point-min) (point-max)))
3209 ;;;###autoload
3210 (defun ps-spool-buffer-with-faces ()
3211 "Generate and spool a PostScript image of the buffer.
3212 Like `ps-spool-buffer', but includes font, color, and underline information in
3213 the generated image. This command works only if you are using a window system,
3214 so it has a way to determine color values.
3216 Use the command `ps-despool' to send the spooled images to the printer."
3217 (interactive)
3218 (ps-spool-with-faces (point-min) (point-max)))
3221 ;;;###autoload
3222 (defun ps-spool-region (from to)
3223 "Generate a PostScript image of the region and spool locally.
3224 Like `ps-spool-buffer', but spools just the current region.
3226 Use the command `ps-despool' to send the spooled images to the printer."
3227 (interactive "r")
3228 (ps-spool-without-faces from to t))
3231 ;;;###autoload
3232 (defun ps-spool-region-with-faces (from to)
3233 "Generate a PostScript image of the region and spool locally.
3234 Like `ps-spool-region', but includes font, color, and underline information in
3235 the generated image. This command works only if you are using a window system,
3236 so it has a way to determine color values.
3238 Use the command `ps-despool' to send the spooled images to the printer."
3239 (interactive "r")
3240 (ps-spool-with-faces from to t))
3242 ;;;###autoload
3243 (defun ps-despool (&optional filename)
3244 "Send the spooled PostScript to the printer.
3246 Interactively, when you use a prefix argument (C-u), the command prompts the
3247 user for a file name, and saves the spooled PostScript image in that file
3248 instead of sending it to the printer.
3250 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3251 send the image to the printer. If FILENAME is a string, save the PostScript
3252 image in a file with that name."
3253 (interactive (list (ps-print-preprint current-prefix-arg)))
3254 (ps-do-despool filename))
3256 ;;;###autoload
3257 (defun ps-line-lengths ()
3258 "Display the correspondence between a line length and a font size, using the
3259 current ps-print setup.
3260 Try: pr -t file | awk '{printf \"%3d %s\n\", length($0), $0}' | sort -r | head"
3261 (interactive)
3262 (ps-line-lengths-internal))
3264 ;;;###autoload
3265 (defun ps-nb-pages-buffer (nb-lines)
3266 "Display number of pages to print this buffer, for various font heights.
3267 The table depends on the current ps-print setup."
3268 (interactive (list (count-lines (point-min) (point-max))))
3269 (ps-nb-pages nb-lines))
3271 ;;;###autoload
3272 (defun ps-nb-pages-region (nb-lines)
3273 "Display number of pages to print the region, for various font heights.
3274 The table depends on the current ps-print setup."
3275 (interactive (list (count-lines (mark) (point))))
3276 (ps-nb-pages nb-lines))
3278 (defvar ps-prefix-quote nil
3279 "Used for `ps-print-quote' (which see).")
3281 ;;;###autoload
3282 (defun ps-setup ()
3283 "Return the current PostScript-generation setup."
3284 (let (ps-prefix-quote)
3285 (mapconcat
3286 #'ps-print-quote
3287 (list
3288 (concat "\n;;; ps-print version " ps-print-version "\n")
3289 '(25 . ps-print-color-p)
3290 '(25 . ps-lpr-command)
3291 '(25 . ps-lpr-switches)
3292 '(25 . ps-printer-name)
3293 '(25 . ps-printer-name-option)
3294 '(25 . ps-print-region-function)
3295 '(25 . ps-manual-feed)
3296 '(25 . ps-end-with-control-d)
3298 '(23 . ps-paper-type)
3299 '(23 . ps-warn-paper-type)
3300 '(23 . ps-landscape-mode)
3301 '(23 . ps-print-upside-down)
3302 '(23 . ps-number-of-columns)
3304 '(23 . ps-zebra-stripes)
3305 '(23 . ps-zebra-stripe-height)
3306 '(23 . ps-zebra-stripe-follow)
3307 '(23 . ps-zebra-color)
3308 '(23 . ps-line-number)
3309 '(23 . ps-line-number-step)
3310 '(23 . ps-line-number-start)
3312 '(17 . ps-default-fg)
3313 '(17 . ps-default-bg)
3314 '(17 . ps-razzle-dazzle)
3316 '(23 . ps-use-face-background)
3318 '(28 . ps-print-control-characters)
3320 '(26 . ps-print-background-image)
3322 '(25 . ps-print-background-text)
3324 '(29 . ps-error-handler-message)
3325 '(29 . ps-user-defined-prologue)
3326 '(29 . ps-print-prologue-header)
3327 '(29 . ps-postscript-code-directory)
3328 '(29 . ps-adobe-tag)
3330 '(30 . ps-left-margin)
3331 '(30 . ps-right-margin)
3332 '(30 . ps-inter-column)
3333 '(30 . ps-bottom-margin)
3334 '(30 . ps-top-margin)
3335 '(30 . ps-print-only-one-header)
3336 '(30 . ps-switch-header)
3337 '(30 . ps-print-header)
3338 '(30 . ps-header-lines)
3339 '(30 . ps-header-offset)
3340 '(30 . ps-header-line-pad)
3341 '(30 . ps-print-header-frame)
3342 '(30 . ps-header-frame-alist)
3343 '(30 . ps-print-footer)
3344 '(30 . ps-footer-lines)
3345 '(30 . ps-footer-offset)
3346 '(30 . ps-footer-line-pad)
3347 '(30 . ps-print-footer-frame)
3348 '(30 . ps-footer-frame-alist)
3349 '(30 . ps-show-n-of-n)
3350 '(30 . ps-spool-config)
3351 '(30 . ps-spool-duplex)
3352 '(30 . ps-spool-tumble)
3353 '(30 . ps-banner-page-when-duplexing)
3354 '(30 . ps-left-header)
3355 '(30 . ps-right-header)
3356 '(30 . ps-left-footer)
3357 '(30 . ps-right-footer)
3359 '(23 . ps-n-up-printing)
3360 '(23 . ps-n-up-margin)
3361 '(23 . ps-n-up-border-p)
3362 '(23 . ps-n-up-filling)
3364 '(26 . ps-multibyte-buffer)
3365 '(26 . ps-font-family)
3366 '(26 . ps-font-size)
3367 '(26 . ps-header-font-family)
3368 '(26 . ps-header-font-size)
3369 '(26 . ps-header-title-font-size)
3370 '(26 . ps-footer-font-family)
3371 '(26 . ps-footer-font-size)
3372 '(26 . ps-line-number-color)
3373 '(26 . ps-line-number-font)
3374 '(26 . ps-line-number-font-size)
3375 '(26 . ps-line-spacing)
3376 '(26 . ps-paragraph-spacing)
3377 '(26 . ps-paragraph-regexp)
3378 '(26 . ps-begin-cut-regexp)
3379 '(26 . ps-end-cut-regexp)
3381 '(23 . ps-even-or-odd-pages)
3382 '(23 . ps-selected-pages)
3383 '(23 . ps-last-selected-pages)
3385 '(31 . ps-build-face-reference)
3386 '(31 . ps-always-build-face-reference)
3388 '(20 . ps-auto-font-detect)
3389 '(20 . ps-bold-faces)
3390 '(20 . ps-italic-faces)
3391 '(20 . ps-underlined-faces)
3392 " )\n
3393 ;; The following customized variables have long lists and are seldom modified:
3394 ;; ps-page-dimensions-database
3395 ;; ps-font-info-database
3397 ;;; ps-print - end of settings\n")
3398 "\n")))
3401 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3402 ;; Utility functions and variables:
3405 (defun ps-print-quote (elt)
3406 "Quote ELT for printing (used for showing settings).
3408 If ELT is nil, return an empty string.
3409 If ELT is string, return it.
3410 Otherwise, ELT should be a cons (LEN . SYM) where SYM is a variable symbol and
3411 LEN is the field length where SYM name will be inserted. The variable
3412 `ps-prefix-quote' is used to form the string, if `ps-prefix-quote' is nil, it's
3413 used \"(setq \" as prefix; otherwise, it's used \" \". So, the string
3414 generated is:
3416 * If `ps-prefix-quote' is nil:
3417 \"(setq SYM-NAME SYM-VALUE\"
3418 |<------->|
3421 * If `ps-prefix-quote' is non-nil:
3422 \" SYM-NAME SYM-VALUE\"
3423 |<------->|
3426 If `ps-prefix-quote' is nil, it's set to t after generating string."
3427 (cond
3428 ((null elt) "")
3429 ((stringp elt) elt)
3431 (let* ((col (car elt))
3432 (sym (cdr elt))
3433 (key (symbol-name sym))
3434 (len (length key))
3435 (val (symbol-value sym)))
3436 (concat (if ps-prefix-quote
3438 (setq ps-prefix-quote t)
3439 "(setq ")
3441 (if (> col len)
3442 (make-string (- col len) ?\ )
3443 " ")
3444 (cond ((null val) "nil")
3445 ((eq val t) "t")
3446 ((or (symbolp val) (listp val)) (format "'%S" val))
3447 (t (format "%S" val))))))
3451 (defun ps-value (alist-sym key)
3452 "Return value from association list ALIST-SYM which car is `eq' to KEY."
3453 (cdr (assq key (symbol-value alist-sym))))
3456 (defun ps-get (alist-sym key)
3457 "Return element from association list ALIST-SYM which car is `eq' to KEY."
3458 (assq key (symbol-value alist-sym)))
3461 (defun ps-put (alist-sym key value)
3462 "Store element (KEY . VALUE) into association list ALIST-SYM.
3463 If KEY already exists in ALIST-SYM, modify cdr to VALUE.
3464 It can be retrieved with `(ps-get ALIST-SYM KEY)'."
3465 (let ((elt: (assq key (symbol-value alist-sym)))) ; to avoid name conflict
3466 (if elt:
3467 (setcdr elt: value)
3468 (setq elt: (cons key value))
3469 (set alist-sym (cons elt: (symbol-value alist-sym))))
3470 elt:))
3473 (defun ps-del (alist-sym key)
3474 "Delete by side effect element KEY from association list ALIST-SYM."
3475 (let ((a:list: (symbol-value alist-sym)) ; to avoid name conflict
3476 old)
3477 (while a:list:
3478 (if (eq key (car (car a:list:)))
3479 (progn
3480 (if old
3481 (setcdr old (cdr a:list:))
3482 (set alist-sym (cdr a:list:)))
3483 (setq a:list: nil))
3484 (setq old a:list:
3485 a:list: (cdr a:list:)))))
3486 (symbol-value alist-sym))
3489 (defun ps-time-stamp-mon-dd-yyyy ()
3490 (format-time-string "%b %d %Y"))
3493 (defun ps-time-stamp-hh:mm:ss ()
3494 (format-time-string "%T"))
3497 (eval-and-compile
3498 (defvar ps-print-emacs-type
3499 (cond ((string-match "XEmacs" emacs-version) 'xemacs)
3500 ((string-match "Lucid" emacs-version) 'lucid)
3501 ((string-match "Epoch" emacs-version) 'epoch)
3502 (t 'emacs)))
3504 (if (memq ps-print-emacs-type '(lucid xemacs))
3505 (if (< emacs-minor-version 12)
3506 (setq ps-print-color-p nil))
3507 (require 'faces)) ; face-font, face-underline-p,
3508 ; x-font-regexp
3511 ;; Return t if the device (which can be changed during an emacs session)
3512 ;; can handle colors.
3513 ;; This function is not yet implemented for GNU emacs.
3514 (cond ((and (eq ps-print-emacs-type 'xemacs)
3515 (>= emacs-minor-version 12)) ; xemacs
3516 (defun ps-color-device ()
3517 (eq (ps-x-device-class) 'color)))
3519 (t ; emacs
3520 (defun ps-color-device ()
3521 (if (fboundp 'color-values)
3522 (ps-e-color-values "Green")
3523 t))))
3526 (defun ps-mapper (extent list)
3527 (nconc list
3528 (list (list (ps-x-extent-start-position extent) 'push extent)
3529 (list (ps-x-extent-end-position extent) 'pull extent)))
3530 nil)
3532 (defun ps-extent-sorter (a b)
3533 (< (ps-x-extent-priority a) (ps-x-extent-priority b)))
3535 (defun ps-xemacs-face-kind-p (face kind kind-regex)
3536 (let* ((frame-font (or (ps-x-face-font-instance face)
3537 (ps-x-face-font-instance 'default)))
3538 (kind-cons
3539 (and frame-font
3540 (assq kind
3541 (ps-x-font-instance-properties frame-font))))
3542 (kind-spec (cdr-safe kind-cons))
3543 (case-fold-search t))
3544 (and kind-spec (string-match kind-regex kind-spec))))
3546 (defun ps-xemacs-color-name (color)
3547 (if (ps-x-color-specifier-p color)
3548 (ps-x-color-name color)
3549 color))
3551 (cond ((eq ps-print-emacs-type 'emacs) ; emacs
3553 ;; to avoid XEmacs compilation gripes
3554 (defvar coding-system-for-write nil)
3556 (defun ps-color-values (x-color)
3557 (cond
3558 ((fboundp 'color-values)
3559 (ps-e-color-values x-color))
3560 ((fboundp 'x-color-values)
3561 (ps-e-x-color-values x-color))
3563 (error "No available function to determine X color values."))))
3565 (defalias 'ps-face-foreground-name 'face-foreground)
3566 (defalias 'ps-face-background-name 'face-background)
3568 (defun ps-face-bold-p (face)
3569 (or (ps-e-face-bold-p face)
3570 (memq face ps-bold-faces)))
3572 (defun ps-face-italic-p (face)
3573 (or (ps-e-face-italic-p face)
3574 (memq face ps-italic-faces)))
3576 ; xemacs
3577 ; lucid
3578 (t ; epoch
3580 (and (fboundp 'find-coding-system)
3581 (or (ps-x-find-coding-system 'raw-text-unix)
3582 (ps-x-copy-coding-system 'no-conversion-unix 'raw-text-unix)))
3584 (defun ps-color-values (x-color)
3585 (let ((color (ps-xemacs-color-name x-color)))
3586 (cond
3587 ((fboundp 'x-color-values)
3588 (ps-e-x-color-values color))
3589 ((and (fboundp 'color-instance-rgb-components)
3590 (ps-color-device))
3591 (ps-x-color-instance-rgb-components
3592 (if (ps-x-color-instance-p x-color)
3593 x-color
3594 (ps-x-make-color-instance color))))
3596 (error "No available function to determine X color values.")))))
3598 (defun ps-face-foreground-name (face)
3599 (ps-xemacs-color-name (face-foreground face)))
3601 (defun ps-face-background-name (face)
3602 (ps-xemacs-color-name (face-background face)))
3604 (defun ps-face-bold-p (face)
3605 (or (ps-xemacs-face-kind-p face 'WEIGHT_NAME "bold\\|demibold")
3606 (memq face ps-bold-faces))) ; Kludge-compatible
3608 (defun ps-face-italic-p (face)
3609 (or (ps-xemacs-face-kind-p face 'ANGLE_NAME "i\\|o")
3610 (ps-xemacs-face-kind-p face 'SLANT "i\\|o")
3611 (memq face ps-italic-faces))) ; Kludge-compatible
3615 (defvar ps-print-color-scale 1.0)
3617 (defun ps-color-scale (color)
3618 ;; Scale 16-bit X-COLOR-VALUE to PostScript color value in [0, 1] interval.
3619 (mapcar #'(lambda (value) (/ value ps-print-color-scale))
3620 (ps-color-values color)))
3623 (defun ps-face-underlined-p (face)
3624 (or (face-underline-p face)
3625 (memq face ps-underlined-faces)))
3628 (defun ps-prologue-file (filenumber)
3629 "If prologue FILENUMBER exists and is readable, returns contents as string.
3631 Note: No major/minor-mode is activated and no local variables are evaluated for
3632 FILENUMBER, but proper EOL-conversion and character interpretation is
3633 done!"
3634 (let ((filename (convert-standard-filename
3635 (expand-file-name (format "ps-prin%d.ps" filenumber)
3636 ps-postscript-code-directory))))
3637 (if (and (file-exists-p filename)
3638 (file-readable-p filename))
3639 (with-temp-buffer
3640 (insert-file-contents filename)
3641 (buffer-string))
3642 (error "ps-print PostScript prologue `%s' file was not found."
3643 filename))))
3646 (defvar ps-mark-code-directory nil)
3648 (defvar ps-print-prologue-0 ""
3649 "ps-print PostScript error handler.")
3651 (defvar ps-print-prologue-1 ""
3652 "ps-print PostScript prologue.")
3654 ;; Start Editing Here:
3656 (defvar ps-source-buffer nil)
3657 (defvar ps-spool-buffer-name "*PostScript*")
3658 (defvar ps-spool-buffer nil)
3660 (defvar ps-output-head nil)
3661 (defvar ps-output-tail nil)
3663 (defvar ps-page-postscript 0) ; page number
3664 (defvar ps-page-order 0) ; PostScript page counter
3665 (defvar ps-page-sheet 0) ; sheet counter
3666 (defvar ps-page-column 0) ; column counter
3667 (defvar ps-page-printed 0) ; total pages printed
3668 (defvar ps-page-n-up 0) ; n-up counter
3669 (defvar ps-lines-printed 0) ; total lines printed
3670 (defvar ps-showline-count 1) ; line number counter
3671 (defvar ps-first-page nil)
3672 (defvar ps-last-page nil)
3673 (defvar ps-print-page-p t)
3675 (defvar ps-control-or-escape-regexp nil)
3676 (defvar ps-n-up-on nil)
3678 (defvar ps-background-pages nil)
3679 (defvar ps-background-all-pages nil)
3680 (defvar ps-background-text-count 0)
3681 (defvar ps-background-image-count 0)
3683 (defvar ps-current-font 0)
3684 (defvar ps-default-foreground nil)
3685 (defvar ps-default-color nil)
3686 (defvar ps-current-color nil)
3687 (defvar ps-current-bg nil)
3689 (defvar ps-zebra-stripe-full-p nil)
3690 (defvar ps-razchunk 0)
3692 (defvar ps-color-p nil)
3693 (defvar ps-color-format
3694 (if (eq ps-print-emacs-type 'emacs)
3696 ;; Emacs understands the %f format; we'll use it to limit color RGB
3697 ;; values to three decimals to cut down some on the size of the
3698 ;; PostScript output.
3699 "%0.3f %0.3f %0.3f"
3701 ;; Lucid emacsen will have to make do with %s (princ) for floats.
3702 "%s %s %s"))
3704 ;; These values determine how much print-height to deduct when headers/footers
3705 ;; are turned on. This is a pretty clumsy way of handling it, but it'll do for
3706 ;; now.
3708 (defvar ps-header-pad 0
3709 "Vertical and horizontal space between the header frame and the text.
3710 This is in units of points (1/72 inch).")
3712 (defvar ps-footer-pad 0
3713 "Vertical and horizontal space between the footer frame and the text.
3714 This is in units of points (1/72 inch).")
3716 ;; Define accessors to the dimensions list.
3718 (defmacro ps-page-dimensions-get-width (dims) `(nth 0 ,dims))
3719 (defmacro ps-page-dimensions-get-height (dims) `(nth 1 ,dims))
3720 (defmacro ps-page-dimensions-get-media (dims) `(nth 2 ,dims))
3722 (defvar ps-landscape-page-height nil)
3724 (defvar ps-print-width nil)
3725 (defvar ps-print-height nil)
3727 (defvar ps-height-remaining nil)
3728 (defvar ps-width-remaining nil)
3730 (defvar ps-font-size-internal nil)
3731 (defvar ps-header-font-size-internal nil)
3732 (defvar ps-header-title-font-size-internal nil)
3733 (defvar ps-footer-font-size-internal nil)
3734 (defvar ps-line-spacing-internal nil)
3735 (defvar ps-paragraph-spacing-internal nil)
3738 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3739 ;; Internal Variables
3742 (defvar ps-print-face-extension-alist nil
3743 "Alist of symbolic faces *WITH* extension features (box, outline, etc).
3744 An element of this list has the following form:
3746 (FACE . [BITS FG BG])
3748 FACE is a symbol denoting a face name
3749 BITS is a bit vector, where each bit correspond
3750 to a feature (bold, underline, etc)
3751 (see documentation for `ps-print-face-map-alist')
3752 FG foreground color (string or nil)
3753 BG background color (string or nil)
3755 Don't change this list directly; instead,
3756 use `ps-extend-face' and `ps-extend-face-list'.
3757 See documentation for `ps-extend-face' for valid extension symbol.")
3760 (defvar ps-print-face-alist nil
3761 "Alist of symbolic faces *WITHOUT* extension features (box, outline, etc).
3763 An element of this list has the same form as an element of
3764 `ps-print-face-extension-alist'.
3766 Don't change this list directly; this list is used by `ps-face-attributes',
3767 `ps-map-face' and `ps-build-reference-face-lists'.")
3770 (defconst ps-print-face-map-alist
3771 '((bold . 1)
3772 (italic . 2)
3773 (underline . 4)
3774 (strikeout . 8)
3775 (overline . 16)
3776 (shadow . 32)
3777 (box . 64)
3778 (outline . 128))
3779 "Alist of all features and the corresponding bit mask.
3780 Each symbol correspond to one bit in a bit vector.")
3783 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3784 ;; Remapping Faces
3787 ;;;###autoload
3788 (defun ps-extend-face-list (face-extension-list &optional merge-p)
3789 "Extend face in `ps-print-face-extension-alist'.
3791 If optional MERGE-P is non-nil, extensions in FACE-EXTENSION-LIST are merged
3792 with face extension in `ps-print-face-extension-alist'; otherwise, overrides.
3794 The elements in FACE-EXTENSION-LIST is like those for `ps-extend-face'.
3796 See `ps-extend-face' for documentation."
3797 (while face-extension-list
3798 (ps-extend-face (car face-extension-list) merge-p)
3799 (setq face-extension-list (cdr face-extension-list))))
3802 ;;;###autoload
3803 (defun ps-extend-face (face-extension &optional merge-p)
3804 "Extend face in `ps-print-face-extension-alist'.
3806 If optional MERGE-P is non-nil, extensions in FACE-EXTENSION list are merged
3807 with face extensions in `ps-print-face-extension-alist'; otherwise, overrides.
3809 The elements of FACE-EXTENSION list have the form:
3811 (FACE-NAME FOREGROUND BACKGROUND EXTENSION...)
3813 FACE-NAME is a face name symbol.
3815 FOREGROUND and BACKGROUND may be nil or a string that denotes the
3816 foreground and background colors respectively.
3818 EXTENSION is one of the following symbols:
3819 bold - use bold font.
3820 italic - use italic font.
3821 underline - put a line under text.
3822 strikeout - like underline, but the line is in middle of text.
3823 overline - like underline, but the line is over the text.
3824 shadow - text will have a shadow.
3825 box - text will be surrounded by a box.
3826 outline - print characters as hollow outlines.
3828 If EXTENSION is any other symbol, it is ignored."
3829 (let* ((face-name (nth 0 face-extension))
3830 (foreground (nth 1 face-extension))
3831 (background (nth 2 face-extension))
3832 (ps-face (cdr (assq face-name ps-print-face-extension-alist)))
3833 (face-vector (or ps-face (vector 0 nil nil)))
3834 (face-bit (ps-extension-bit face-extension)))
3835 ;; extend face
3836 (aset face-vector 0 (if merge-p
3837 (logior (aref face-vector 0) face-bit)
3838 face-bit))
3839 (and foreground (stringp foreground) (aset face-vector 1 foreground))
3840 (and background (stringp background) (aset face-vector 2 background))
3841 ;; if face does not exist, insert it
3842 (or ps-face
3843 (setq ps-print-face-extension-alist
3844 (cons (cons face-name face-vector)
3845 ps-print-face-extension-alist)))))
3848 (defun ps-extension-bit (face-extension)
3849 (let ((face-bit 0))
3850 ;; map valid symbol extension to bit vector
3851 (setq face-extension (cdr (cdr face-extension)))
3852 (while (setq face-extension (cdr face-extension))
3853 (setq face-bit (logior face-bit
3854 (or (cdr (assq (car face-extension)
3855 ps-print-face-map-alist))
3856 0))))
3857 face-bit))
3860 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3861 ;; Adapted from font-lock: (obsolete stuff)
3862 ;; Originally face attributes were specified via `font-lock-face-attributes'.
3863 ;; Users then changed the default face attributes by setting that variable.
3864 ;; However, we try and be back-compatible and respect its value if set except
3865 ;; for faces where M-x customize has been used to save changes for the face.
3868 (defun ps-font-lock-face-attributes ()
3869 (and (boundp 'font-lock-mode) (symbol-value 'font-lock-mode)
3870 (boundp 'font-lock-face-attributes)
3871 (let ((face-attributes (symbol-value 'font-lock-face-attributes)))
3872 (while face-attributes
3873 (let* ((face-attribute
3874 (car (prog1 face-attributes
3875 (setq face-attributes (cdr face-attributes)))))
3876 (face (car face-attribute)))
3877 ;; Rustle up a `defface' SPEC from a
3878 ;; `font-lock-face-attributes' entry.
3879 (unless (get face 'saved-face)
3880 (let ((foreground (nth 1 face-attribute))
3881 (background (nth 2 face-attribute))
3882 (bold-p (nth 3 face-attribute))
3883 (italic-p (nth 4 face-attribute))
3884 (underline-p (nth 5 face-attribute))
3885 face-spec)
3886 (when foreground
3887 (setq face-spec (cons ':foreground
3888 (cons foreground face-spec))))
3889 (when background
3890 (setq face-spec (cons ':background
3891 (cons background face-spec))))
3892 (when bold-p
3893 (setq face-spec (append '(:bold t) face-spec)))
3894 (when italic-p
3895 (setq face-spec (append '(:italic t) face-spec)))
3896 (when underline-p
3897 (setq face-spec (append '(:underline t) face-spec)))
3898 (custom-declare-face face (list (list t face-spec)) nil)
3899 )))))))
3902 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3903 ;; Internal functions and variables
3906 (defvar ps-print-hook nil)
3907 (defvar ps-print-begin-sheet-hook nil)
3908 (defvar ps-print-begin-page-hook nil)
3909 (defvar ps-print-begin-column-hook nil)
3912 (defun ps-print-without-faces (from to &optional filename region-p)
3913 (ps-spool-without-faces from to region-p)
3914 (ps-do-despool filename))
3917 (defun ps-spool-without-faces (from to &optional region-p)
3918 (run-hooks 'ps-print-hook)
3919 (ps-printing-region region-p from)
3920 (ps-generate (current-buffer) from to 'ps-generate-postscript))
3923 (defun ps-print-with-faces (from to &optional filename region-p)
3924 (ps-spool-with-faces from to region-p)
3925 (ps-do-despool filename))
3928 (defun ps-spool-with-faces (from to &optional region-p)
3929 (run-hooks 'ps-print-hook)
3930 (ps-printing-region region-p from)
3931 (ps-generate (current-buffer) from to 'ps-generate-postscript-with-faces))
3934 (defun ps-count-lines (from to)
3935 (+ (count-lines from to)
3936 (save-excursion
3937 (goto-char to)
3938 (if (= (current-column) 0) 1 0))))
3941 (defvar ps-printing-region nil
3942 "Variable used to indicate if the region that ps-print is printing.
3943 It is a cons, the car of which is the line number where the region begins, and
3944 its cdr is the total number of lines in the buffer. Formatting functions can
3945 use this information to print the original line number (and not the number of
3946 lines printed), and to indicate in the header that the printout is of a partial
3947 file.")
3950 (defvar ps-printing-region-p nil
3951 "Non-nil means ps-print is printing a region.")
3954 (defun ps-printing-region (region-p from)
3955 (setq ps-printing-region-p region-p
3956 ps-printing-region
3957 (cons (if region-p
3958 (ps-count-lines (point-min) from)
3960 (ps-count-lines (point-min) (point-max)))))
3963 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3964 ;; Internal functions
3967 (defsubst ps-font-alist (font-sym)
3968 (get font-sym 'fonts))
3970 (defun ps-font (font-sym font-type)
3971 "Font family name for text of `font-type', when generating PostScript."
3972 (let* ((font-list (ps-font-alist font-sym))
3973 (normal-font (cdr (assq 'normal font-list))))
3974 (while (and font-list (not (eq font-type (car (car font-list)))))
3975 (setq font-list (cdr font-list)))
3976 (or (cdr (car font-list)) normal-font)))
3978 (defsubst ps-fonts (font-sym)
3979 (mapcar 'cdr (ps-font-alist font-sym)))
3981 (defsubst ps-font-number (font-sym font-type)
3982 (or (ps-alist-position font-type (ps-font-alist font-sym))
3985 (defsubst ps-line-height (font-sym)
3986 "The height of a line, for generating PostScript.
3987 This is the value that ps-print uses to determine the height,
3988 y-dimension, of the lines of text it has printed, and thus affects the
3989 point at which page-breaks are placed.
3990 The line-height is *not* the same as the point size of the font."
3991 (get font-sym 'line-height))
3993 (defsubst ps-title-line-height (font-sym)
3994 "The height of a `title' line, for generating PostScript.
3995 This is the value that ps-print uses to determine the height,
3996 y-dimension, of the lines of text it has printed, and thus affects the
3997 point at which page-breaks are placed.
3998 The title-line-height is *not* the same as the point size of the font."
3999 (get font-sym 'title-line-height))
4001 (defsubst ps-space-width (font-sym)
4002 "The width of a space character, for generating PostScript.
4003 This value is used in expanding tab characters."
4004 (get font-sym 'space-width))
4006 (defsubst ps-avg-char-width (font-sym)
4007 "The average width, in points, of a character, for generating PostScript.
4008 This is the value that ps-print uses to determine the length,
4009 x-dimension, of the text it has printed, and thus affects the point at
4010 which long lines wrap around."
4011 (get font-sym 'avg-char-width))
4013 (defun ps-line-lengths-internal ()
4014 "Display the correspondence between a line length and a font size,
4015 using the current ps-print setup.
4016 Try: pr -t file | awk '{printf \"%3d %s\n\", length($0), $0}' | sort -r | head"
4017 (let* ((ps-font-size-internal
4018 (or ps-font-size-internal
4019 (ps-get-font-size 'ps-font-size)))
4020 (ps-header-font-size-internal
4021 (or ps-header-font-size-internal
4022 (ps-get-font-size 'ps-header-font-size)))
4023 (ps-header-title-font-size-internal
4024 (or ps-header-title-font-size-internal
4025 (ps-get-font-size 'ps-header-title-font-size)))
4026 (buf (get-buffer-create "*Line-lengths*"))
4027 (ifs ps-font-size-internal) ; initial font size
4028 (icw (ps-avg-char-width 'ps-font-for-text)) ; initial character width
4029 (print-width (progn (ps-get-page-dimensions)
4030 ps-print-width))
4031 (ps-setup (ps-setup)) ; setup for the current buffer
4032 (fs-min 5) ; minimum font size
4033 cw-min ; minimum character width
4034 nb-cpl-max ; maximum nb of characters per line
4035 (fs-max 14) ; maximum font size
4036 cw-max ; maximum character width
4037 nb-cpl-min ; minimum nb of characters per line
4038 fs ; current font size
4039 cw ; current character width
4040 nb-cpl ; current nb of characters per line
4042 (setq cw-min (/ (* icw fs-min) ifs)
4043 nb-cpl-max (floor (/ print-width cw-min))
4044 cw-max (/ (* icw fs-max) ifs)
4045 nb-cpl-min (floor (/ print-width cw-max))
4046 nb-cpl nb-cpl-min)
4047 (set-buffer buf)
4048 (goto-char (point-max))
4049 (or (bobp) (insert "\n" (make-string 75 ?\;) "\n"))
4050 (insert ps-setup
4051 "\nnb char per line / font size\n")
4052 (while (<= nb-cpl nb-cpl-max)
4053 (setq cw (/ print-width (float nb-cpl))
4054 fs (/ (* ifs cw) icw))
4055 (insert (format "%16d %s\n" nb-cpl fs))
4056 (setq nb-cpl (1+ nb-cpl)))
4057 (insert "\n")
4058 (display-buffer buf 'not-this-window)))
4060 (defun ps-nb-pages (nb-lines)
4061 "Display correspondence between font size and the number of pages.
4062 The correspondence is based on having NB-LINES lines of text,
4063 and on the current ps-print setup."
4064 (let* ((ps-font-size-internal
4065 (or ps-font-size-internal
4066 (ps-get-font-size 'ps-font-size)))
4067 (ps-header-font-size-internal
4068 (or ps-header-font-size-internal
4069 (ps-get-font-size 'ps-header-font-size)))
4070 (ps-header-title-font-size-internal
4071 (or ps-header-title-font-size-internal
4072 (ps-get-font-size 'ps-header-title-font-size)))
4073 (ps-line-spacing-internal
4074 (or ps-line-spacing-internal
4075 (ps-get-size ps-line-spacing "line spacing")))
4076 (buf (get-buffer-create "*Nb-Pages*"))
4077 (ils ps-line-spacing-internal) ; initial line spacing
4078 (ifs ps-font-size-internal) ; initial font size
4079 (ilh (ps-line-height 'ps-font-for-text)) ; initial line height
4080 (page-height (progn (ps-get-page-dimensions)
4081 ps-print-height))
4082 (ps-setup (ps-setup)) ; setup for the current buffer
4083 (fs-min 4) ; minimum font size
4084 lh-min ; minimum line height
4085 nb-lpp-max ; maximum nb of lines per page
4086 nb-page-min ; minimum nb of pages
4087 (fs-max 14) ; maximum font size
4088 lh-max ; maximum line height
4089 nb-lpp-min ; minimum nb of lines per page
4090 nb-page-max ; maximum nb of pages
4091 fs ; current font size
4092 lh ; current line height
4093 nb-lpp ; current nb of lines per page
4094 nb-page ; current nb of pages
4096 (setq lh-min (/ (- (* (+ ilh ils) fs-min) ils) ifs)
4097 nb-lpp-max (floor (/ page-height lh-min))
4098 nb-page-min (ceiling (/ (float nb-lines) nb-lpp-max))
4099 lh-max (/ (- (* (+ ilh ils) fs-max) ils) ifs)
4100 nb-lpp-min (floor (/ page-height lh-max))
4101 nb-page-max (ceiling (/ (float nb-lines) nb-lpp-min))
4102 nb-page nb-page-min)
4103 (set-buffer buf)
4104 (goto-char (point-max))
4105 (or (bobp) (insert "\n" (make-string 75 ?\;) "\n"))
4106 (insert ps-setup
4107 (format "\nThere are %d lines.\n\n" nb-lines)
4108 "nb page / font size\n")
4109 (while (<= nb-page nb-page-max)
4110 (setq nb-lpp (ceiling (/ nb-lines (float nb-page)))
4111 lh (/ page-height nb-lpp)
4112 fs (/ (* ifs lh) ilh))
4113 (insert (format "%7d %s\n" nb-page fs))
4114 (setq nb-page (1+ nb-page)))
4115 (insert "\n")
4116 (display-buffer buf 'not-this-window)))
4118 ;; macros used in `ps-select-font'
4119 (defmacro ps-lookup (key) `(cdr (assq ,key font-entry)))
4120 (defmacro ps-size-scale (key) `(/ (* (ps-lookup ,key) font-size) size))
4122 (defun ps-select-font (font-family sym font-size title-font-size)
4123 (let ((font-entry (cdr (assq font-family ps-font-info-database))))
4124 (or font-entry
4125 (error "Don't have data to scale font %s. Known fonts families are %s"
4126 font-family
4127 (mapcar 'car ps-font-info-database)))
4128 (let ((size (ps-lookup 'size)))
4129 (put sym 'fonts (ps-lookup 'fonts))
4130 (put sym 'space-width (ps-size-scale 'space-width))
4131 (put sym 'avg-char-width (ps-size-scale 'avg-char-width))
4132 (put sym 'line-height (ps-size-scale 'line-height))
4133 (put sym 'title-line-height
4134 (/ (* (ps-lookup 'line-height) title-font-size) size)))))
4136 (defun ps-get-page-dimensions ()
4137 (let ((page-dimensions (cdr (assq ps-paper-type ps-page-dimensions-database)))
4138 page-width page-height)
4139 (cond
4140 ((null page-dimensions)
4141 (error "`ps-paper-type' must be one of:\n%s"
4142 (mapcar 'car ps-page-dimensions-database)))
4143 ((< ps-number-of-columns 1)
4144 (error "The number of columns %d should be positive"
4145 ps-number-of-columns)))
4147 (ps-select-font ps-font-family 'ps-font-for-text
4148 ps-font-size-internal ps-font-size-internal)
4149 (ps-select-font ps-header-font-family 'ps-font-for-header
4150 ps-header-font-size-internal
4151 ps-header-title-font-size-internal)
4152 (ps-select-font ps-footer-font-family 'ps-font-for-footer
4153 ps-footer-font-size-internal ps-footer-font-size-internal)
4155 (setq page-width (ps-page-dimensions-get-width page-dimensions)
4156 page-height (ps-page-dimensions-get-height page-dimensions))
4158 ;; Landscape mode
4159 (if ps-landscape-mode
4160 ;; exchange width and height
4161 (setq page-width (prog1 page-height (setq page-height page-width))))
4163 ;; It is used to get the lower right corner (only in landscape mode)
4164 (setq ps-landscape-page-height page-height)
4166 ;; | lm | text | ic | text | ic | text | rm |
4167 ;; page-width == lm + n * pw + (n - 1) * ic + rm
4168 ;; => pw == (page-width - lm -rm - (n - 1) * ic) / n
4169 (setq ps-print-width (/ (- page-width
4170 ps-left-margin ps-right-margin
4171 (* (1- ps-number-of-columns) ps-inter-column))
4172 ps-number-of-columns))
4173 (if (<= ps-print-width 0)
4174 (error "Bad horizontal layout:
4175 page-width == %s
4176 ps-left-margin == %s
4177 ps-right-margin == %s
4178 ps-inter-column == %s
4179 ps-number-of-columns == %s
4180 | lm | text | ic | text | ic | text | rm |
4181 page-width == lm + n * print-width + (n - 1) * ic + rm
4182 => print-width == %d !"
4183 page-width
4184 ps-left-margin
4185 ps-right-margin
4186 ps-inter-column
4187 ps-number-of-columns
4188 ps-print-width))
4190 (setq ps-print-height
4191 (- page-height ps-bottom-margin ps-top-margin))
4192 (if (<= ps-print-height 0)
4193 (error "Bad vertical layout:
4194 ps-top-margin == %s
4195 ps-bottom-margin == %s
4196 page-height == bm + print-height + tm
4197 => print-height == %d !"
4198 ps-top-margin
4199 ps-bottom-margin
4200 ps-print-height))
4201 ;; If headers are turned on, deduct the height of the header from the print
4202 ;; height.
4203 (if ps-print-header
4204 (setq ps-header-pad (* ps-header-line-pad
4205 (ps-title-line-height 'ps-font-for-header))
4206 ps-print-height (- ps-print-height
4207 ps-header-offset
4208 ps-header-pad
4209 (ps-title-line-height 'ps-font-for-header)
4210 (* (ps-line-height 'ps-font-for-header)
4211 (1- ps-header-lines))
4212 ps-header-pad)))
4213 (if (<= ps-print-height 0)
4214 (error "Bad vertical layout (header):
4215 ps-top-margin == %s
4216 ps-bottom-margin == %s
4217 ps-header-offset == %s
4218 ps-header-pad == %s
4219 header-height == %s
4220 page-height == bm + print-height + tm - ho - hh
4221 => print-height == %d !"
4222 ps-top-margin
4223 ps-bottom-margin
4224 ps-header-offset
4225 ps-header-pad
4226 (+ ps-header-pad
4227 (ps-title-line-height 'ps-font-for-header)
4228 (* (ps-line-height 'ps-font-for-header)
4229 (1- ps-header-lines))
4230 ps-header-pad)
4231 ps-print-height))
4232 ;; If footers are turned on, deduct the height of the footer from the print
4233 ;; height.
4234 (if ps-print-footer
4235 (setq ps-footer-pad (* ps-footer-line-pad
4236 (ps-title-line-height 'ps-font-for-footer))
4237 ps-print-height (- ps-print-height
4238 ps-footer-offset
4239 ps-footer-pad
4240 (* (ps-line-height 'ps-font-for-footer)
4241 (1- ps-footer-lines))
4242 ps-footer-pad)))
4243 (if (<= ps-print-height 0)
4244 (error "Bad vertical layout (footer):
4245 ps-top-margin == %s
4246 ps-bottom-margin == %s
4247 ps-footer-offset == %s
4248 ps-footer-pad == %s
4249 footer-height == %s
4250 page-height == bm + print-height + tm - fo - fh
4251 => print-height == %d !"
4252 ps-top-margin
4253 ps-bottom-margin
4254 ps-footer-offset
4255 ps-footer-pad
4256 (+ ps-footer-pad
4257 (* (ps-line-height 'ps-font-for-footer)
4258 (1- ps-footer-lines))
4259 ps-footer-pad)
4260 ps-print-height))
4261 ;; ps-zebra-stripe-follow is `full' or `full-follow'
4262 (if ps-zebra-stripe-full-p
4263 (let* ((line-height (ps-line-height 'ps-font-for-text))
4264 (zebra (* (+ line-height ps-line-spacing-internal)
4265 ps-zebra-stripe-height)))
4266 (setq ps-print-height (- (* (floor ps-print-height zebra) zebra)
4267 line-height))
4268 (if (<= ps-print-height 0)
4269 (error "Bad vertical layout (full zebra stripe follow):
4270 ps-zebra-stripe-follow == %s
4271 ps-zebra-stripe-height == %s
4272 font-text-height == %s
4273 line-spacing == %s
4274 page-height == ((floor print-height ((th + ls) * zh)) * ((th + ls) * zh)) - th
4275 => print-height == %d !"
4276 ps-zebra-stripe-follow
4277 ps-zebra-stripe-height
4278 (ps-line-height 'ps-font-for-text)
4279 ps-line-spacing-internal
4280 ps-print-height))))))
4282 (defun ps-print-preprint (prefix-arg)
4283 (and prefix-arg
4284 (or (numberp prefix-arg)
4285 (listp prefix-arg))
4286 (let* ((name (concat (file-name-nondirectory (or (buffer-file-name)
4287 (buffer-name)))
4288 ".ps"))
4289 (prompt (format "Save PostScript to file: (default %s) " name))
4290 (res (read-file-name prompt default-directory name nil)))
4291 (while (cond ((file-directory-p res)
4292 (ding)
4293 (setq prompt "It's a directory"))
4294 ((not (file-writable-p res))
4295 (ding)
4296 (setq prompt "File is unwritable"))
4297 ((file-exists-p res)
4298 (setq prompt "File exists")
4299 (not (y-or-n-p (format "File `%s' exists; overwrite? "
4300 res))))
4301 (t nil))
4302 (setq res (read-file-name
4303 (format "%s; save PostScript to file: " prompt)
4304 (file-name-directory res) nil nil
4305 (file-name-nondirectory res))))
4306 (if (file-directory-p res)
4307 (expand-file-name name (file-name-as-directory res))
4308 res))))
4310 ;; The following functions implement a simple list-buffering scheme so
4311 ;; that ps-print doesn't have to repeatedly switch between buffers
4312 ;; while spooling. The functions `ps-output' and `ps-output-string' build
4313 ;; up the lists; the function `ps-flush-output' takes the lists and
4314 ;; insert its contents into the spool buffer (*PostScript*).
4316 (defvar ps-string-escape-codes
4317 (let ((table (make-vector 256 nil))
4318 (char ?\000))
4319 ;; control characters
4320 (while (<= char ?\037)
4321 (aset table char (format "\\%03o" char))
4322 (setq char (1+ char)))
4323 ;; printable characters
4324 (while (< char ?\177)
4325 (aset table char (format "%c" char))
4326 (setq char (1+ char)))
4327 ;; DEL and 8-bit characters
4328 (while (<= char ?\377)
4329 (aset table char (format "\\%o" char))
4330 (setq char (1+ char)))
4331 ;; Override ASCII formatting characters with named escape code:
4332 (aset table ?\n "\\n") ; [NL] linefeed
4333 (aset table ?\r "\\r") ; [CR] carriage return
4334 (aset table ?\t "\\t") ; [HT] horizontal tab
4335 (aset table ?\b "\\b") ; [BS] backspace
4336 (aset table ?\f "\\f") ; [NP] form feed
4337 ;; Escape PostScript escape and string delimiter characters:
4338 (aset table ?\\ "\\\\")
4339 (aset table ?\( "\\(")
4340 (aset table ?\) "\\)")
4341 table)
4342 "Vector used to map characters to PostScript string escape codes.")
4344 (defsubst ps-output-string-prim (string)
4345 (insert "(") ;insert start-string delimiter
4346 (save-excursion ;insert string
4347 (insert (string-as-unibyte string)))
4348 ;; Find and quote special characters as necessary for PS
4349 ;; This skips everything except control chars, non-ASCII chars, (, ) and \.
4350 (while (progn (skip-chars-forward " -'*-[]-~") (not (eobp)))
4351 (let ((special (following-char)))
4352 (delete-char 1)
4353 (insert (aref ps-string-escape-codes special))))
4354 (goto-char (point-max))
4355 (insert ")")) ;insert end-string delimiter
4357 (defsubst ps-init-output-queue ()
4358 (setq ps-output-head (list "")
4359 ps-output-tail ps-output-head))
4362 (defun ps-selected-pages ()
4363 (while (progn
4364 (setq ps-first-page (car (car ps-selected-pages))
4365 ps-last-page (cdr (car ps-selected-pages))
4366 ps-selected-pages (cdr ps-selected-pages))
4367 (and ps-selected-pages
4368 (< ps-last-page ps-page-postscript)))))
4371 (defsubst ps-print-page-p ()
4372 (setq ps-print-page-p
4373 (and (cond ((null ps-first-page))
4374 ((<= ps-page-postscript ps-last-page)
4375 (<= ps-first-page ps-page-postscript))
4376 (ps-selected-pages
4377 (ps-selected-pages)
4378 (and (<= ps-first-page ps-page-postscript)
4379 (<= ps-page-postscript ps-last-page)))
4381 nil))
4382 (cond ((eq ps-even-or-odd-pages 'even-page)
4383 (= (logand ps-page-postscript 1) 0))
4384 ((eq ps-even-or-odd-pages 'odd-page)
4385 (= (logand ps-page-postscript 1) 1))
4387 ))))
4390 (defsubst ps-print-sheet-p ()
4391 (setq ps-print-page-p
4392 (cond ((eq ps-even-or-odd-pages 'even-sheet)
4393 (= (logand ps-page-sheet 1) 0))
4394 ((eq ps-even-or-odd-pages 'odd-sheet)
4395 (= (logand ps-page-sheet 1) 1))
4400 (defun ps-output (&rest args)
4401 (when ps-print-page-p
4402 (setcdr ps-output-tail args)
4403 (while (cdr ps-output-tail)
4404 (setq ps-output-tail (cdr ps-output-tail)))))
4406 (defun ps-output-string (string)
4407 (ps-output t string))
4409 ;; Output strings in the list ARGS in the PostScript prologue part.
4410 (defun ps-output-prologue (args)
4411 (ps-output 'prologue (if (stringp args) (list args) args)))
4413 (defun ps-flush-output ()
4414 (save-excursion
4415 (set-buffer ps-spool-buffer)
4416 (goto-char (point-max))
4417 (while ps-output-head
4418 (let ((it (car ps-output-head)))
4419 (cond
4420 ((eq t it)
4421 (setq ps-output-head (cdr ps-output-head))
4422 (ps-output-string-prim (car ps-output-head)))
4423 ((eq 'prologue it)
4424 (setq ps-output-head (cdr ps-output-head))
4425 (save-excursion
4426 (search-backward "\nBeginDoc")
4427 (forward-char 1)
4428 (apply 'insert (car ps-output-head))))
4430 (insert it))))
4431 (setq ps-output-head (cdr ps-output-head))))
4432 (ps-init-output-queue))
4434 (defun ps-insert-file (fname)
4435 (ps-flush-output)
4436 (save-excursion
4437 (set-buffer ps-spool-buffer)
4438 (goto-char (point-max))
4439 (insert-file fname)))
4441 ;; These functions insert the arrays that define the contents of the headers.
4443 (defun ps-generate-header-line (fonttag &optional content)
4444 (ps-output " [" fonttag " ")
4445 (cond
4446 ;; Literal strings should be output as is -- the string must contain its own
4447 ;; PS string delimiters, '(' and ')', if necessary.
4448 ((stringp content)
4449 (ps-output (ps-mule-encode-header-string content fonttag)))
4451 ;; Functions are called -- they should return strings; they will be inserted
4452 ;; as strings and the PS string delimiters added.
4453 ((and (symbolp content) (fboundp content))
4454 (ps-output-string (ps-mule-encode-header-string (funcall content)
4455 fonttag)))
4457 ;; Variables will have their contents inserted. They should contain
4458 ;; strings, and will be inserted as strings.
4459 ((and (symbolp content) (boundp content))
4460 (ps-output-string (ps-mule-encode-header-string (symbol-value content)
4461 fonttag)))
4463 ;; Anything else will get turned into an empty string.
4465 (ps-output-string "")))
4466 (ps-output "]\n"))
4468 (defun ps-generate-header (name fonttag0 fonttag1 contents)
4469 (ps-output "/" name "[\n")
4470 (and contents (> ps-header-lines 0)
4471 (let ((count 1))
4472 (ps-generate-header-line fonttag0 (car contents))
4473 (while (and (< count ps-header-lines)
4474 (setq contents (cdr contents)))
4475 (ps-generate-header-line fonttag1 (car contents))
4476 (setq count (1+ count)))))
4477 (ps-output "]def\n"))
4480 (defun ps-output-boolean (name bool)
4481 (ps-output (format "/%s %s def\n" name (if bool "true" "false"))))
4484 (defun ps-output-frame-properties (name alist)
4485 (ps-output "/" name " ["
4486 (ps-format-color (cdr (assq 'fore-color alist)) 0.0)
4487 (ps-format-color (cdr (assq 'back-color alist)) 0.9)
4488 (ps-float-format (or (cdr (assq 'border-width alist)) 0.4))
4489 (ps-format-color (cdr (assq 'border-color alist)) 0.0)
4490 (ps-format-color (cdr (assq 'shadow-color alist)) 0.0)
4491 "]def\n"))
4494 (defun ps-background-pages (page-list func)
4495 (if page-list
4496 (mapcar
4497 #'(lambda (pages)
4498 (let ((start (if (consp pages) (car pages) pages))
4499 (end (if (consp pages) (cdr pages) pages)))
4500 (and (integerp start) (integerp end) (<= start end)
4501 (add-to-list 'ps-background-pages (vector start end func)))))
4502 page-list)
4503 (setq ps-background-all-pages (cons func ps-background-all-pages))))
4506 (defconst ps-boundingbox-re
4507 "^%%BoundingBox:\
4508 \\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)")
4511 (defun ps-get-boundingbox ()
4512 (save-excursion
4513 (set-buffer ps-spool-buffer)
4514 (save-excursion
4515 (if (re-search-forward ps-boundingbox-re nil t)
4516 (vector (string-to-number ; lower x
4517 (buffer-substring (match-beginning 1) (match-end 1)))
4518 (string-to-number ; lower y
4519 (buffer-substring (match-beginning 2) (match-end 2)))
4520 (string-to-number ; upper x
4521 (buffer-substring (match-beginning 3) (match-end 3)))
4522 (string-to-number ; upper y
4523 (buffer-substring (match-beginning 4) (match-end 4))))
4524 (vector 0 0 0 0)))))
4527 ;; Emacs understands the %f format; we'll use it to limit color RGB values
4528 ;; to three decimals to cut down some on the size of the PostScript output.
4529 ;; Lucid emacsen will have to make do with %s (princ) for floats.
4531 (defvar ps-float-format (if (eq ps-print-emacs-type 'emacs)
4532 "%0.3f " ; emacs
4533 "%s ")) ; Lucid emacsen
4536 (defun ps-float-format (value &optional default)
4537 (let ((literal (or value default)))
4538 (cond ((null literal)
4539 " ")
4540 ((numberp literal)
4541 (format ps-float-format (* literal 1.0))) ; force float number
4543 (format "%s " literal))
4547 (defun ps-background-text ()
4548 (mapcar
4549 #'(lambda (text)
4550 (setq ps-background-text-count (1+ ps-background-text-count))
4551 (ps-output (format "/ShowBackText-%d{\n" ps-background-text-count))
4552 (ps-output-string (nth 0 text)) ; text
4553 (ps-output
4554 "\n"
4555 (ps-float-format (nth 4 text) 200.0) ; font size
4556 (format "/%s " (or (nth 3 text) "Times-Roman")) ; font name
4557 (ps-float-format (nth 6 text)
4558 "PrintHeight PrintPageWidth atan") ; rotation
4559 (ps-float-format (nth 5 text) 0.85) ; gray
4560 (ps-float-format (nth 1 text) "0") ; x position
4561 (ps-float-format (nth 2 text) "0") ; y position
4562 "\nShowBackText}def\n")
4563 (ps-background-pages (nthcdr 7 text) ; page list
4564 (format "ShowBackText-%d\n"
4565 ps-background-text-count)))
4566 ps-print-background-text))
4569 (defun ps-background-image ()
4570 (mapcar
4571 #'(lambda (image)
4572 (let ((image-file (expand-file-name (nth 0 image))))
4573 (when (file-readable-p image-file)
4574 (setq ps-background-image-count (1+ ps-background-image-count))
4575 (ps-output
4576 (format "/ShowBackImage-%d{\n--back-- "
4577 ps-background-image-count)
4578 (ps-float-format (nth 5 image) 0.0) ; rotation
4579 (ps-float-format (nth 3 image) 1.0) ; x scale
4580 (ps-float-format (nth 4 image) 1.0) ; y scale
4581 (ps-float-format (nth 1 image) ; x position
4582 "PrintPageWidth 2 div")
4583 (ps-float-format (nth 2 image) ; y position
4584 "PrintHeight 2 div BottomMargin add")
4585 "\nBeginBackImage\n")
4586 (ps-insert-file image-file)
4587 ;; coordinate adjustment to centralize image
4588 ;; around x and y position
4589 (let ((box (ps-get-boundingbox)))
4590 (save-excursion
4591 (set-buffer ps-spool-buffer)
4592 (save-excursion
4593 (if (re-search-backward "^--back--" nil t)
4594 (replace-match
4595 (format "%s %s"
4596 (ps-float-format
4597 (- (+ (/ (- (aref box 2) (aref box 0)) 2.0)
4598 (aref box 0))))
4599 (ps-float-format
4600 (- (+ (/ (- (aref box 3) (aref box 1)) 2.0)
4601 (aref box 1)))))
4602 t)))))
4603 (ps-output "\nEndBackImage}def\n")
4604 (ps-background-pages (nthcdr 6 image) ; page list
4605 (format "ShowBackImage-%d\n"
4606 ps-background-image-count)))))
4607 ps-print-background-image))
4610 (defun ps-background (page-number)
4611 (let (has-local-background)
4612 (mapcar #'(lambda (range)
4613 (and (<= (aref range 0) page-number)
4614 (<= page-number (aref range 1))
4615 (if has-local-background
4616 (ps-output (aref range 2))
4617 (setq has-local-background t)
4618 (ps-output "/printLocalBackground{\n"
4619 (aref range 2)))))
4620 ps-background-pages)
4621 (and has-local-background (ps-output "}def\n"))))
4624 ;; Return a list of the distinct elements of LIST.
4625 ;; Elements are compared with `equal'.
4626 (defun ps-remove-duplicates (list)
4627 (let (new (tail list))
4628 (while tail
4629 (or (member (car tail) new)
4630 (setq new (cons (car tail) new)))
4631 (setq tail (cdr tail)))
4632 (nreverse new)))
4635 ;; Find the first occurrence of ITEM in LIST.
4636 ;; Return the index of the matching item, or nil if not found.
4637 ;; Elements are compared with `eq'.
4638 (defun ps-alist-position (item list)
4639 (let ((tail list) (index 0) found)
4640 (while tail
4641 (if (setq found (eq (car (car tail)) item))
4642 (setq tail nil)
4643 (setq index (1+ index)
4644 tail (cdr tail))))
4645 (and found index)))
4648 (defconst ps-n-up-database
4649 '((a4
4650 (1 nil 1 1 0)
4651 (2 t 1 2 0)
4652 (4 nil 2 2 0)
4653 (6 t 2 3 1)
4654 (8 t 2 4 0)
4655 (9 nil 3 3 0)
4656 (12 t 3 4 2)
4657 (16 nil 4 4 0)
4658 (18 t 3 6 0)
4659 (20 nil 5 4 1)
4660 (25 nil 5 5 0)
4661 (30 nil 6 5 1)
4662 (32 t 4 8 0)
4663 (36 nil 6 6 0)
4664 (42 nil 7 6 1)
4665 (49 nil 7 7 0)
4666 (50 t 5 10 0)
4667 (56 nil 8 7 1)
4668 (64 nil 8 8 0)
4669 (72 nil 9 8 1)
4670 (81 nil 9 9 0)
4671 (90 nil 10 9 1)
4672 (100 nil 10 10 0))
4674 (1 nil 1 1 0)
4675 (2 t 1 2 0)
4676 (4 nil 2 2 0)
4677 (6 t 2 3 1)
4678 (8 t 2 4 0)
4679 (9 nil 3 3 0)
4680 (12 nil 4 3 1)
4681 (16 nil 4 4 0)
4682 (18 t 3 6 0)
4683 (20 nil 5 4 1)
4684 (25 nil 5 5 0)
4685 (30 nil 6 5 1)
4686 (32 t 4 8 0)
4687 (36 nil 6 6 0)
4688 (42 nil 7 6 1)
4689 (49 nil 7 7 0)
4690 (50 t 5 10 0)
4691 (56 nil 8 7 1)
4692 (64 nil 8 8 0)
4693 (72 nil 9 8 1)
4694 (81 nil 9 9 0)
4695 (90 nil 10 9 1)
4696 (100 nil 10 10 0))
4697 (letter
4698 (1 nil 1 1 0)
4699 (2 t 1 2 0) ; adjusted by PostScript code
4700 (4 nil 2 2 0)
4701 (6 t 2 3 0)
4702 (9 nil 3 3 0)
4703 (12 nil 4 3 1)
4704 (16 nil 4 4 0)
4705 (20 nil 5 4 1)
4706 (25 nil 5 5 0)
4707 (30 nil 6 5 1)
4708 (36 nil 6 6 0)
4709 (40 t 5 8 0)
4710 (42 nil 7 6 1)
4711 (49 nil 7 7 0)
4712 (56 nil 8 7 1)
4713 (64 nil 8 8 0)
4714 (72 nil 9 8 1)
4715 (81 nil 9 9 0)
4716 (90 nil 10 9 1)
4717 (100 nil 10 10 0))
4718 (legal
4719 (1 nil 1 1 0)
4720 (2 t 1 2 0)
4721 (4 nil 2 2 0)
4722 (6 nil 3 2 1)
4723 (9 nil 3 3 0)
4724 (10 t 2 5 0)
4725 (12 nil 4 3 1)
4726 (16 nil 4 4 0)
4727 (20 nil 5 4 1)
4728 (25 nil 5 5 0)
4729 (30 nil 6 5 1)
4730 (36 nil 6 6 0)
4731 (42 nil 7 6 1)
4732 (49 nil 7 7 0)
4733 (56 nil 8 7 1)
4734 (64 nil 8 8 0)
4735 (70 t 5 14 0)
4736 (72 nil 9 8 1)
4737 (81 nil 9 9 0)
4738 (90 nil 10 9 1)
4739 (100 nil 10 10 0))
4740 (letter-small
4741 (1 nil 1 1 0)
4742 (2 t 1 2 0) ; adjusted by PostScript code
4743 (4 nil 2 2 0)
4744 (6 t 2 3 0)
4745 (9 nil 3 3 0)
4746 (12 t 3 4 1)
4747 (15 t 3 5 0)
4748 (16 nil 4 4 0)
4749 (20 nil 5 4 1)
4750 (25 nil 5 5 0)
4751 (28 t 4 7 0)
4752 (30 nil 6 5 1)
4753 (36 nil 6 6 0)
4754 (40 t 5 8 0)
4755 (42 nil 7 6 1)
4756 (49 nil 7 7 0)
4757 (56 nil 8 7 1)
4758 (60 t 6 10 0)
4759 (64 nil 8 8 0)
4760 (72 ni 9 8 1)
4761 (81 nil 9 9 0)
4762 (84 t 7 12 0)
4763 (90 nil 10 9 1)
4764 (100 nil 10 10 0))
4765 (tabloid
4766 (1 nil 1 1 0)
4767 (2 t 1 2 0)
4768 (4 nil 2 2 0)
4769 (6 t 2 3 1)
4770 (8 t 2 4 0)
4771 (9 nil 3 3 0)
4772 (12 nil 4 3 1)
4773 (16 nil 4 4 0)
4774 (20 nil 5 4 1)
4775 (25 nil 5 5 0)
4776 (30 nil 6 5 1)
4777 (36 nil 6 6 0)
4778 (42 nil 7 6 1)
4779 (49 nil 7 7 0)
4780 (56 nil 8 7 1)
4781 (64 nil 8 8 0)
4782 (72 nil 9 8 1)
4783 (81 nil 9 9 0)
4784 (84 t 6 14 0)
4785 (90 nil 10 9 1)
4786 (100 nil 10 10 0))
4787 ;; Ledger paper size is a special case, it is the only paper size where the
4788 ;; normal size is landscaped, that is, the height is smaller than width.
4789 ;; So, we use the special value `pag' in the `landscape' field.
4790 (ledger
4791 (1 nil 1 1 0)
4792 (2 pag 1 2 0)
4793 (4 nil 2 2 0)
4794 (6 pag 2 3 1)
4795 (8 pag 2 4 0)
4796 (9 nil 3 3 0)
4797 (12 nil 4 3 1)
4798 (16 nil 4 4 0)
4799 (20 nil 5 4 1)
4800 (25 nil 5 5 0)
4801 (30 nil 6 5 1)
4802 (36 nil 6 6 0)
4803 (42 nil 7 6 1)
4804 (49 nil 7 7 0)
4805 (56 nil 8 7 1)
4806 (64 nil 8 8 0)
4807 (72 nil 9 8 1)
4808 (81 nil 9 9 0)
4809 (84 pag 6 14 0)
4810 (90 nil 10 9 1)
4811 (100 nil 10 10 0))
4812 (statement
4813 (1 nil 1 1 0)
4814 (2 t 1 2 0)
4815 (4 nil 2 2 0)
4816 (6 nil 3 2 1)
4817 (9 nil 3 3 0)
4818 (10 t 2 5 0)
4819 (12 nil 4 3 1)
4820 (16 nil 4 4 0)
4821 (20 nil 5 4 1)
4822 (21 t 3 7 0)
4823 (25 nil 5 5 0)
4824 (30 nil 6 5 1)
4825 (36 nil 6 6 0)
4826 (40 t 4 10 0)
4827 (42 nil 7 6 1)
4828 (49 nil 7 7 0)
4829 (56 nil 8 7 1)
4830 (60 t 5 12 0)
4831 (64 nil 8 8 0)
4832 (72 nil 9 8 1)
4833 (81 nil 9 9 0)
4834 (90 nil 10 9 1)
4835 (100 nil 10 10 0))
4836 (executive
4837 (1 nil 1 1 0)
4838 (2 t 1 2 0) ; adjusted by PostScript code
4839 (4 nil 2 2 0)
4840 (6 t 2 3 0)
4841 (9 nil 3 3 0)
4842 (12 nil 4 3 1)
4843 (16 nil 4 4 0)
4844 (20 nil 5 4 1)
4845 (25 nil 5 5 0)
4846 (28 t 4 7 0)
4847 (30 nil 6 5 1)
4848 (36 nil 6 6 0)
4849 (42 nil 7 6 1)
4850 (45 t 5 9 0)
4851 (49 nil 7 7 0)
4852 (56 nil 8 7 1)
4853 (60 t 6 10 0)
4854 (64 nil 8 8 0)
4855 (72 nil 9 8 1)
4856 (81 nil 9 9 0)
4857 (84 t 7 12 0)
4858 (90 nil 10 9 1)
4859 (100 nil 10 10 0))
4860 (a4small
4861 (1 nil 1 1 0)
4862 (2 t 1 2 0)
4863 (4 nil 2 2 0)
4864 (6 t 2 3 1)
4865 (8 t 2 4 0)
4866 (9 nil 3 3 0)
4867 (12 nil 4 3 1)
4868 (16 nil 4 4 0)
4869 (18 t 3 6 0)
4870 (20 nil 5 4 1)
4871 (25 nil 5 5 0)
4872 (30 nil 6 5 1)
4873 (32 t 4 8 0)
4874 (36 nil 6 6 0)
4875 (42 nil 7 6 1)
4876 (49 nil 7 7 0)
4877 (50 t 5 10 0)
4878 (56 nil 8 7 1)
4879 (64 nil 8 8 0)
4880 (72 nil 9 8 1)
4881 (78 t 6 13 0)
4882 (81 nil 9 9 0)
4883 (90 nil 10 9 1)
4884 (100 nil 10 10 0))
4886 (1 nil 1 1 0)
4887 (2 t 1 2 0)
4888 (4 nil 2 2 0)
4889 (6 t 2 3 1)
4890 (8 t 2 4 0)
4891 (9 nil 3 3 0)
4892 (12 nil 4 3 1)
4893 (16 nil 4 4 0)
4894 (18 t 3 6 0)
4895 (20 nil 5 4 1)
4896 (25 nil 5 5 0)
4897 (30 nil 6 5 1)
4898 (32 t 4 8 0)
4899 (36 nil 6 6 0)
4900 (42 nil 7 6 1)
4901 (49 nil 7 7 0)
4902 (50 t 5 10 0)
4903 (56 nil 8 7 1)
4904 (64 nil 8 8 0)
4905 (72 nil 9 8 1)
4906 (81 nil 9 9 0)
4907 (90 nil 10 9 1)
4908 (100 nil 10 10 0))
4910 (1 nil 1 1 0)
4911 (2 t 1 2 0)
4912 (4 nil 2 2 0)
4913 (6 t 2 3 1)
4914 (8 t 2 4 0)
4915 (9 nil 3 3 0)
4916 (12 nil 4 3 1)
4917 (16 nil 4 4 0)
4918 (18 t 3 6 0)
4919 (20 nil 5 4 1)
4920 (25 nil 5 5 0)
4921 (30 nil 6 5 1)
4922 (32 t 4 8 0)
4923 (36 nil 6 6 0)
4924 (42 nil 7 6 1)
4925 (49 nil 7 7 0)
4926 (50 t 5 10 0)
4927 (56 nil 8 7 1)
4928 (64 nil 8 8 0)
4929 (72 nil 9 8 0)
4930 (81 nil 9 9 0)
4931 (90 nil 10 9 1)
4932 (98 t 7 14 0)
4933 (100 nil 10 10 0)))
4934 "Alist which is the page matrix database used for N-up printing.
4936 Each element has the following form:
4938 (PAGE
4939 (MAX LANDSCAPE LINES COLUMNS COL-MISSING)
4940 ...)
4942 Where:
4943 PAGE is the page size used (see `ps-paper-type').
4944 MAX is the maximum elements of this page matrix.
4945 LANDSCAPE specifies if page matrix is landscaped, has the following valid
4946 values:
4947 nil the sheet is in portrait mode.
4948 t the sheet is in landscape mode.
4949 pag the sheet is in portrait mode and page is in landscape mode.
4950 LINES is the number of lines of page matrix.
4951 COLUMNS is the number of columns of page matrix.
4952 COL-MISSING is the number of columns missing to fill the sheet.")
4955 (defmacro ps-n-up-landscape (mat) `(nth 1 ,mat))
4956 (defmacro ps-n-up-lines (mat) `(nth 2 ,mat))
4957 (defmacro ps-n-up-columns (mat) `(nth 3 ,mat))
4958 (defmacro ps-n-up-missing (mat) `(nth 4 ,mat))
4961 (defun ps-n-up-printing ()
4962 ;; force `ps-n-up-printing' be in range 1 to 100.
4963 (setq ps-n-up-printing (max (min ps-n-up-printing 100) 1))
4964 ;; find suitable page matrix for a given `ps-paper-type'.
4965 (let ((the-list (cdr (assq ps-paper-type ps-n-up-database))))
4966 (and the-list
4967 (while (> ps-n-up-printing (caar the-list))
4968 (setq the-list (cdr the-list))))
4969 (car the-list)))
4972 (defconst ps-n-up-filling-database
4973 '((left-top
4974 "PageWidth" ; N-Up-XColumn
4975 "0" ; N-Up-YColumn
4976 "N-Up-End 1 sub PageWidth mul neg" ; N-Up-XLine
4977 "LandscapePageHeight neg" ; N-Up-YLine
4978 "N-Up-Lines" ; N-Up-Repeat
4979 "N-Up-Columns" ; N-Up-End
4980 "0" ; N-Up-XStart
4981 "0") ; N-Up-YStart
4982 (left-bottom
4983 "PageWidth" ; N-Up-XColumn
4984 "0" ; N-Up-YColumn
4985 "N-Up-End 1 sub PageWidth mul neg" ; N-Up-XLine
4986 "LandscapePageHeight" ; N-Up-YLine
4987 "N-Up-Lines" ; N-Up-Repeat
4988 "N-Up-Columns" ; N-Up-End
4989 "0" ; N-Up-XStart
4990 "N-Up-Repeat 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
4991 (right-top
4992 "PageWidth neg" ; N-Up-XColumn
4993 "0" ; N-Up-YColumn
4994 "N-Up-End 1 sub PageWidth mul" ; N-Up-XLine
4995 "LandscapePageHeight neg" ; N-Up-YLine
4996 "N-Up-Lines" ; N-Up-Repeat
4997 "N-Up-Columns" ; N-Up-End
4998 "N-Up-End 1 sub PageWidth mul" ; N-Up-XStart
4999 "0") ; N-Up-YStart
5000 (right-bottom
5001 "PageWidth neg" ; N-Up-XColumn
5002 "0" ; N-Up-YColumn
5003 "N-Up-End 1 sub PageWidth mul" ; N-Up-XLine
5004 "LandscapePageHeight" ; N-Up-YLine
5005 "N-Up-Lines" ; N-Up-Repeat
5006 "N-Up-Columns" ; N-Up-End
5007 "N-Up-End 1 sub PageWidth mul" ; N-Up-XStart
5008 "N-Up-Repeat 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
5009 (top-left
5010 "0" ; N-Up-XColumn
5011 "LandscapePageHeight neg" ; N-Up-YColumn
5012 "PageWidth" ; N-Up-XLine
5013 "N-Up-End 1 sub LandscapePageHeight mul" ; N-Up-YLine
5014 "N-Up-Columns" ; N-Up-Repeat
5015 "N-Up-Lines" ; N-Up-End
5016 "0" ; N-Up-XStart
5017 "0") ; N-Up-YStart
5018 (bottom-left
5019 "0" ; N-Up-XColumn
5020 "LandscapePageHeight" ; N-Up-YColumn
5021 "PageWidth" ; N-Up-XLine
5022 "N-Up-End 1 sub LandscapePageHeight mul neg" ; N-Up-YLine
5023 "N-Up-Columns" ; N-Up-Repeat
5024 "N-Up-Lines" ; N-Up-End
5025 "0" ; N-Up-XStart
5026 "N-Up-End 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
5027 (top-right
5028 "0" ; N-Up-XColumn
5029 "LandscapePageHeight neg" ; N-Up-YColumn
5030 "PageWidth neg" ; N-Up-XLine
5031 "N-Up-End 1 sub LandscapePageHeight mul" ; N-Up-YLine
5032 "N-Up-Columns" ; N-Up-Repeat
5033 "N-Up-Lines" ; N-Up-End
5034 "N-Up-Repeat 1 sub PageWidth mul" ; N-Up-XStart
5035 "0") ; N-Up-YStart
5036 (bottom-right
5037 "0" ; N-Up-XColumn
5038 "LandscapePageHeight" ; N-Up-YColumn
5039 "PageWidth neg" ; N-Up-XLine
5040 "N-Up-End 1 sub LandscapePageHeight mul neg" ; N-Up-YLine
5041 "N-Up-Columns" ; N-Up-Repeat
5042 "N-Up-Lines" ; N-Up-End
5043 "N-Up-Repeat 1 sub PageWidth mul" ; N-Up-XStart
5044 "N-Up-End 1 sub LandscapePageHeight mul neg")) ; N-Up-YStart
5045 "Alist for n-up printing initializations.
5047 Each element has the following form:
5049 (KIND XCOL YCOL XLIN YLIN REPEAT END XSTART YSTART)
5051 Where:
5052 KIND is a valid value of `ps-n-up-filling'.
5053 XCOL YCOL are the relative position for the next column.
5054 XLIN YLIN are the relative position for the beginning of next line.
5055 REPEAT is the number of repetions for external loop.
5056 END is the number of repetions for internal loop and also the number of pages in
5057 a row.
5058 XSTART YSTART are the relative position for the first page in a sheet.")
5061 (defun ps-n-up-filling ()
5062 (cdr (or (assq ps-n-up-filling ps-n-up-filling-database)
5063 (assq 'left-top ps-n-up-filling-database))))
5066 (defmacro ps-n-up-xcolumn (init) `(nth 0 ,init))
5067 (defmacro ps-n-up-ycolumn (init) `(nth 1 ,init))
5068 (defmacro ps-n-up-xline (init) `(nth 2 ,init))
5069 (defmacro ps-n-up-yline (init) `(nth 3 ,init))
5070 (defmacro ps-n-up-repeat (init) `(nth 4 ,init))
5071 (defmacro ps-n-up-end (init) `(nth 5 ,init))
5072 (defmacro ps-n-up-xstart (init) `(nth 6 ,init))
5073 (defmacro ps-n-up-ystart (init) `(nth 7 ,init))
5076 (defconst ps-error-handler-alist
5077 '((none . 0)
5078 (paper . 1)
5079 (system . 2)
5080 (paper-and-system . 3))
5081 "Alist for error handler message.")
5084 (defconst ps-zebra-stripe-alist
5085 '((follow . 1)
5086 (full . 2)
5087 (full-follow . 3))
5088 "Alist for zebra stripe continuation.")
5091 (defun ps-begin-file ()
5092 (setq ps-page-order 0
5093 ps-page-printed 0
5094 ps-background-text-count 0
5095 ps-background-image-count 0
5096 ps-background-pages nil
5097 ps-background-all-pages nil)
5099 (let ((dimensions (cdr (assq ps-paper-type ps-page-dimensions-database)))
5100 (tumble (if ps-landscape-mode (not ps-spool-tumble) ps-spool-tumble))
5101 (n-up (ps-n-up-printing))
5102 (n-up-filling (ps-n-up-filling)))
5103 (and ps-n-up-on (setq tumble (not tumble)))
5104 (ps-output
5105 ps-adobe-tag
5106 "%%Title: " (buffer-name) ; Take job name from name of
5107 ; first buffer printed
5108 "\n%%Creator: " (user-full-name)
5109 " (using ps-print v" ps-print-version
5110 ")\n%%CreationDate: " (format-time-string "%T %b %d %Y")
5111 "\n%%Orientation: "
5112 (if ps-landscape-mode "Landscape" "Portrait")
5113 "\n%%DocumentNeededResources: font Times-Roman Times-Italic\n%%+ font "
5114 (mapconcat 'identity
5115 (ps-remove-duplicates
5116 (append (ps-fonts 'ps-font-for-text)
5117 (list (ps-font 'ps-font-for-header 'normal)
5118 (ps-font 'ps-font-for-header 'bold))))
5119 "\n%%+ font ")
5120 "\n%%DocumentMedia: " (ps-page-dimensions-get-media dimensions)
5121 (format " %d" (round (ps-page-dimensions-get-width dimensions)))
5122 (format " %d" (round (ps-page-dimensions-get-height dimensions)))
5123 " 0 () ()\n%%PageOrder: Ascend\n%%Pages: (atend)\n%%Requirements:"
5124 (if ps-spool-duplex
5125 (if tumble " duplex(tumble)\n" " duplex\n")
5126 "\n"))
5128 (ps-insert-string ps-print-prologue-header)
5130 (ps-output "%%EndComments\n%%BeginDefaults\n%%PageMedia: "
5131 (ps-page-dimensions-get-media dimensions)
5132 "\n%%EndDefaults\n\n%%BeginProlog\n\n"
5133 "/languagelevel where{pop}{/languagelevel 1 def}ifelse\n"
5134 (format "/ErrorMessage %s def\n\n"
5135 (or (cdr (assoc ps-error-handler-message
5136 ps-error-handler-alist))
5137 1)) ; send to paper
5138 ps-print-prologue-0
5139 "\n%%BeginProcSet: UserDefinedPrologue\n\n")
5141 (ps-insert-string ps-user-defined-prologue)
5143 (ps-output "\n%%EndProcSet\n\n")
5145 (ps-output-boolean "LandscapeMode "
5146 (or ps-landscape-mode
5147 (eq (ps-n-up-landscape n-up) 'pag)))
5148 (ps-output-boolean "UpsideDown " ps-print-upside-down)
5149 (ps-output (format "/NumberOfColumns %d def\n" ps-number-of-columns)
5151 (format "/LandscapePageHeight %s def\n" ps-landscape-page-height)
5152 (format "/PrintPageWidth %s def\n"
5153 (- (* (+ ps-print-width ps-inter-column)
5154 ps-number-of-columns)
5155 ps-inter-column))
5156 (format "/PrintWidth %s def\n" ps-print-width)
5157 (format "/PrintHeight %s def\n" ps-print-height)
5159 (format "/LeftMargin %s def\n" ps-left-margin)
5160 (format "/RightMargin %s def\n" ps-right-margin)
5161 (format "/InterColumn %s def\n" ps-inter-column)
5163 (format "/BottomMargin %s def\n" ps-bottom-margin)
5164 (format "/TopMargin %s def\n" ps-top-margin) ; not used
5165 (format "/HeaderOffset %s def\n" ps-header-offset)
5166 (format "/HeaderPad %s def\n" ps-header-pad)
5167 (format "/FooterOffset %s def\n" ps-footer-offset)
5168 (format "/FooterPad %s def\n" ps-footer-pad)
5169 (format "/FooterLines %s def\n" ps-footer-lines))
5171 (ps-output-boolean "ShowNofN " ps-show-n-of-n)
5172 (ps-output-boolean "SwitchHeader " (if (eq ps-switch-header 'duplex)
5173 ps-spool-duplex
5174 ps-switch-header))
5175 (ps-output-boolean "PrintOnlyOneHeader" ps-print-only-one-header)
5176 (ps-output-boolean "PrintHeader " ps-print-header)
5177 (ps-output-boolean "PrintHeaderFrame " ps-print-header-frame)
5178 (ps-output-frame-properties "HeaderFrameProperties" ps-header-frame-alist)
5179 (ps-output-boolean "PrintFooter " ps-print-footer)
5180 (ps-output-boolean "PrintFooterFrame " ps-print-footer-frame)
5181 (ps-output-frame-properties "FooterFrameProperties" ps-footer-frame-alist)
5183 (let ((line-height (ps-line-height 'ps-font-for-text)))
5184 (ps-output (format "/LineSpacing %s def\n" ps-line-spacing-internal)
5185 (format "/ParagraphSpacing %s def\n"
5186 ps-paragraph-spacing-internal)
5187 (format "/LineHeight %s def\n" line-height)
5188 (format "/LinesPerColumn %d def\n"
5189 (let ((height (+ line-height
5190 ps-line-spacing-internal)))
5191 (round (/ (+ ps-print-height
5192 (* height 0.45))
5193 height))))))
5195 (ps-output-boolean "WarnPaperSize " ps-warn-paper-type)
5196 (ps-output-boolean "Zebra " ps-zebra-stripes)
5197 (ps-output-boolean "PrintLineNumber " ps-line-number)
5198 (ps-output-boolean "SyncLineZebra " (not (integerp ps-line-number-step)))
5199 (ps-output (format "/ZebraFollow %d def\n"
5200 (or (cdr (assq ps-zebra-stripe-follow
5201 ps-zebra-stripe-alist))
5203 (format "/PrintLineStep %d def\n"
5204 (if (integerp ps-line-number-step)
5205 ps-line-number-step
5206 ps-zebra-stripe-height))
5207 (format "/PrintLineStart %d def\n" ps-line-number-start)
5208 "/LineNumberColor "
5209 (ps-format-color ps-line-number-color 0.0)
5210 (format "def\n/ZebraHeight %d def\n"
5211 ps-zebra-stripe-height)
5212 "/ZebraColor "
5213 (ps-format-color ps-zebra-color 0.95)
5214 "def\n/BackgroundColor "
5215 (ps-format-color ps-default-bg 1.0)
5216 "def\n/UseSetpagedevice "
5217 (if (eq ps-spool-config 'setpagedevice)
5218 "/setpagedevice where{pop languagelevel 2 eq}{false}ifelse"
5219 "false")
5220 " def\n\n/PageWidth "
5221 "PrintPageWidth LeftMargin add RightMargin add def\n\n"
5222 (format "/N-Up %d def\n" ps-n-up-printing))
5223 (ps-output-boolean "N-Up-Landscape" (eq (ps-n-up-landscape n-up) t))
5224 (ps-output-boolean "N-Up-Border " ps-n-up-border-p)
5225 (ps-output (format "/N-Up-Lines %d def\n" (ps-n-up-lines n-up))
5226 (format "/N-Up-Columns %d def\n" (ps-n-up-columns n-up))
5227 (format "/N-Up-Missing %d def\n" (ps-n-up-missing n-up))
5228 (format "/N-Up-Margin %s def\n" ps-n-up-margin)
5229 "/N-Up-Repeat "
5230 (if ps-landscape-mode
5231 (ps-n-up-end n-up-filling)
5232 (ps-n-up-repeat n-up-filling))
5233 " def\n/N-Up-End "
5234 (if ps-landscape-mode
5235 (ps-n-up-repeat n-up-filling)
5236 (ps-n-up-end n-up-filling))
5237 " def\n/N-Up-XColumn " (ps-n-up-xcolumn n-up-filling)
5238 " def\n/N-Up-YColumn " (ps-n-up-ycolumn n-up-filling)
5239 " def\n/N-Up-XLine " (ps-n-up-xline n-up-filling)
5240 " def\n/N-Up-YLine " (ps-n-up-yline n-up-filling)
5241 " def\n/N-Up-XStart " (ps-n-up-xstart n-up-filling)
5242 " def\n/N-Up-YStart " (ps-n-up-ystart n-up-filling) " def\n")
5244 (ps-background-text)
5245 (ps-background-image)
5246 (setq ps-background-all-pages (nreverse ps-background-all-pages)
5247 ps-background-pages (nreverse ps-background-pages))
5249 (ps-output "\n" ps-print-prologue-1)
5251 (ps-output "\n/printGlobalBackground{\n")
5252 (mapcar 'ps-output ps-background-all-pages)
5253 (ps-output "}def\n/printLocalBackground{\n}def\n")
5255 ;; Header/line number fonts
5256 (ps-output (format "/h0 %s(%s)cvn DefFont\n" ; /h0 14/Helvetica-Bold DefFont
5257 ps-header-title-font-size-internal
5258 (ps-font 'ps-font-for-header 'bold))
5259 (format "/h1 %s(%s)cvn DefFont\n" ; /h1 12/Helvetica DefFont
5260 ps-header-font-size-internal
5261 (ps-font 'ps-font-for-header 'normal))
5262 (format "/L0 %s(%s)cvn DefFont\n" ; /L0 6/Times-Italic DefFont
5263 (ps-get-font-size 'ps-line-number-font-size)
5264 ps-line-number-font)
5265 (format "/H0 %s(%s)cvn DefFont\n" ; /H0 12/Helvetica DefFont
5266 ps-footer-font-size-internal
5267 (ps-font 'ps-font-for-footer 'normal))
5268 "\n\n% ---- These lines must be kept together because...
5270 /h0 F
5271 /HeaderTitleLineHeight FontHeight def
5273 /h1 F
5274 /HeaderLineHeight FontHeight def
5275 /HeaderDescent Descent def
5277 /H0 F
5278 /FooterLineHeight FontHeight def
5279 /FooterDescent Descent def
5281 % ---- ...because `F' has a side-effect on `FontHeight' and `Descent'\n\n")
5283 ;; Text fonts
5284 (let ((font (ps-font-alist 'ps-font-for-text))
5285 (i 0))
5286 (while font
5287 (ps-output (format "/f%d %s(%s)cvn DefFont\n"
5289 ps-font-size-internal
5290 (ps-font 'ps-font-for-text (car (car font)))))
5291 (setq font (cdr font)
5292 i (1+ i))))
5294 (let ((font-entry (cdr (assq ps-font-family ps-font-info-database))))
5295 (ps-output (format "/SpaceWidthRatio %f def\n"
5296 (/ (ps-lookup 'space-width) (ps-lookup 'size)))))
5298 (ps-output "\n%%EndProlog\n\n%%BeginSetup\n")
5299 (unless (eq ps-spool-config 'lpr-switches)
5300 (ps-output "\n%%BeginFeature: *Duplex "
5301 (ps-boolean-capitalized ps-spool-duplex)
5302 " *Tumble "
5303 (ps-boolean-capitalized tumble)
5304 "\nUseSetpagedevice\n{BMark/Duplex "
5305 (ps-boolean-constant ps-spool-duplex)
5306 "/Tumble "
5307 (ps-boolean-constant tumble)
5308 " EMark setpagedevice}\n{statusdict begin "
5309 (ps-boolean-constant ps-spool-duplex)
5310 " setduplexmode "
5311 (ps-boolean-constant tumble)
5312 " settumble end}ifelse\n%%EndFeature\n")))
5313 (ps-output "\n%%BeginFeature: *ManualFeed "
5314 (ps-boolean-capitalized ps-manual-feed)
5315 "\nBMark /ManualFeed "
5316 (ps-boolean-constant ps-manual-feed)
5317 " EMark setpagedevice\n%%EndFeature\n\nBeginDoc\n%%EndSetup\n")
5318 (and ps-banner-page-when-duplexing
5319 (ps-output "\n%%Page: banner 0\nsave showpage restore\n")))
5322 (defun ps-format-color (color &optional default)
5323 (let ((the-color (if (stringp color)
5324 (ps-color-scale color)
5325 color)))
5326 (if (and the-color (listp the-color))
5327 (concat "["
5328 (format ps-color-format
5329 (* (nth 0 the-color) 1.0) ; force float number
5330 (* (nth 1 the-color) 1.0) ; force float number
5331 (* (nth 2 the-color) 1.0)) ; force float number
5332 "] ")
5333 (ps-float-format (if (numberp the-color) the-color default)))))
5336 (defun ps-insert-string (prologue)
5337 (let ((str (if (functionp prologue)
5338 (funcall prologue)
5339 prologue)))
5340 (and (stringp str)
5341 (ps-output str))))
5344 (defun ps-boolean-capitalized (bool)
5345 (if bool "True" "False"))
5348 (defun ps-boolean-constant (bool)
5349 (if bool "true" "false"))
5352 (defun ps-header-dirpart ()
5353 (let ((fname (buffer-file-name)))
5354 (if fname
5355 (if (string-equal (buffer-name) (file-name-nondirectory fname))
5356 (abbreviate-file-name (file-name-directory fname))
5357 fname)
5358 "")))
5361 (defun ps-get-buffer-name ()
5362 (cond
5363 ;; Indulge Jim this little easter egg:
5364 ((string= (buffer-name) "ps-print.el")
5365 "Hey, Cool! It's ps-print.el!!!")
5366 ;; Indulge Jack this other little easter egg:
5367 ((string= (buffer-name) "sokoban.el")
5368 "Super! C'est sokoban.el!")
5369 (t (concat
5370 (and ps-printing-region-p "Subset of: ")
5371 (buffer-name)
5372 (and (buffer-modified-p) " (unsaved)")))))
5375 (defun ps-get-size (size mess &optional arg)
5376 (let ((siz (cond ((numberp size)
5377 size)
5378 ((and (consp size)
5379 (numberp (car size))
5380 (numberp (cdr size)))
5381 (if ps-landscape-mode
5382 (car size)
5383 (cdr size)))
5385 -1))))
5386 (and (< siz 0)
5387 (error "Invalid %s `%S'%s"
5388 mess size
5389 (if arg
5390 (format " for `%S'" arg)
5391 "")))
5392 siz))
5395 (defun ps-get-font-size (font-sym)
5396 (ps-get-size (symbol-value font-sym) "font size" font-sym))
5399 (defsubst ps-rgb-color (color default)
5400 (cond ((and color (listp color)) color)
5401 ((stringp color) (ps-color-scale color))
5402 ((numberp color) (list color color color))
5403 (t (list default default default))
5407 (defun ps-begin-job ()
5408 ;; prologue files
5409 (or (equal ps-mark-code-directory ps-postscript-code-directory)
5410 (setq ps-print-prologue-0 (ps-prologue-file 0)
5411 ps-print-prologue-1 (ps-prologue-file 1)
5412 ps-mark-code-directory ps-postscript-code-directory))
5413 ;; selected pages
5414 (let (new page)
5415 (while ps-selected-pages
5416 (setq page (car ps-selected-pages)
5417 ps-selected-pages (cdr ps-selected-pages))
5418 (cond ((integerp page)
5419 (and (> page 0)
5420 (setq new (cons (cons page page) new))))
5421 ((consp page)
5422 (and (integerp (car page)) (integerp (cdr page))
5423 (> (car page) 0)
5424 (<= (car page) (cdr page))
5425 (setq new (cons page new))))))
5426 (setq ps-selected-pages (sort new #'(lambda (one other)
5427 (< (car one) (car other))))
5428 ps-last-selected-pages ps-selected-pages
5429 ps-first-page nil
5430 ps-last-page nil))
5431 ;; face background
5432 (or (listp ps-use-face-background)
5433 (setq ps-use-face-background t))
5434 ;; line number
5435 (and (integerp ps-line-number-step)
5436 (<= ps-line-number-step 0)
5437 (setq ps-line-number-step 1))
5438 (setq ps-n-up-on (> ps-n-up-printing 1)
5439 ps-line-number-start (max 1 (min ps-line-number-start
5440 (if (integerp ps-line-number-step)
5441 ps-line-number-step
5442 ps-zebra-stripe-height))))
5443 ;; spooling buffer
5444 (save-excursion
5445 (set-buffer ps-spool-buffer)
5446 (goto-char (point-max))
5447 (and (re-search-backward "^%%Trailer$" nil t)
5448 (delete-region (match-beginning 0) (point-max))))
5449 ;; miscellaneous
5450 (setq ps-zebra-stripe-full-p (memq ps-zebra-stripe-follow
5451 '(full full-follow))
5452 ps-page-postscript 0
5453 ps-page-sheet 0
5454 ps-page-n-up 0
5455 ps-page-column 0
5456 ps-lines-printed 0
5457 ps-print-page-p t
5458 ps-showline-count (car ps-printing-region)
5459 ps-line-spacing-internal (ps-get-size ps-line-spacing
5460 "line spacing")
5461 ps-paragraph-spacing-internal (ps-get-size ps-paragraph-spacing
5462 "paragraph spacing")
5463 ps-font-size-internal (ps-get-font-size 'ps-font-size)
5464 ps-header-font-size-internal (ps-get-font-size 'ps-header-font-size)
5465 ps-header-title-font-size-internal
5466 (ps-get-font-size 'ps-header-title-font-size)
5467 ps-footer-font-size-internal (ps-get-font-size 'ps-footer-font-size)
5468 ps-control-or-escape-regexp
5469 (cond ((eq ps-print-control-characters '8-bit)
5470 (string-as-unibyte "[\000-\037\177-\377]"))
5471 ((eq ps-print-control-characters 'control-8-bit)
5472 (string-as-unibyte "[\000-\037\177-\237]"))
5473 ((eq ps-print-control-characters 'control)
5474 "[\000-\037\177]")
5475 (t "[\t\n\f]"))
5476 ps-default-foreground (ps-rgb-color ps-default-fg 0.0)
5477 ps-default-color (and ps-print-color-p ps-default-foreground)
5478 ps-current-color ps-default-color
5479 ;; Set the color scale. We do it here instead of in the defvar so
5480 ;; that ps-print can be dumped into emacs. This expression can't be
5481 ;; evaluated at dump-time because X isn't initialized.
5482 ps-color-p (and ps-print-color-p (ps-color-device))
5483 ps-print-color-scale (if ps-color-p
5484 (float (car (ps-color-values "white")))
5485 1.0))
5486 ;; initialize page dimensions
5487 (ps-get-page-dimensions))
5490 (defun ps-page-number ()
5491 (if ps-print-only-one-header
5492 (1+ (/ (1- ps-page-column) ps-number-of-columns))
5493 ps-page-column))
5496 (defsubst ps-end-page ()
5497 (ps-output "EndPage\nEndDSCPage\n"))
5500 (defsubst ps-next-page ()
5501 (ps-end-page)
5502 (ps-flush-output)
5503 (ps-begin-page))
5506 (defun ps-header-sheet ()
5507 ;; Print only when a new sheet begins.
5508 (and ps-print-page-p (> ps-page-sheet 0)
5509 (ps-output "EndSheet\n"))
5510 (setq ps-page-sheet (1+ ps-page-sheet))
5511 (when (ps-print-sheet-p)
5512 (setq ps-page-order (1+ ps-page-order))
5513 (ps-output (if ps-n-up-on
5514 (format "\n%%%%Page: (%d \\(%d\\)) %d\n"
5515 ps-page-order ps-page-postscript ps-page-order)
5516 (format "\n%%%%Page: %d %d\n"
5517 ps-page-postscript ps-page-order))
5518 ;; spooling needs to redefine Lines and PageCount on each page
5519 "/Lines 0 def\n/PageCount 0 def\n"
5520 (format "%d BeginSheet\nBeginDSCPage\n"
5521 ps-n-up-printing))))
5524 (defun ps-header-page ()
5525 ;; set total line and page number when printing has finished
5526 ;; (see `ps-generate')
5527 (if (zerop (mod ps-page-column ps-number-of-columns))
5528 (progn
5529 (setq ps-page-postscript (1+ ps-page-postscript))
5530 (when (ps-print-page-p)
5531 (ps-print-sheet-p)
5532 (if (zerop (mod ps-page-n-up ps-n-up-printing))
5533 ;; Print only when a new sheet begins.
5534 (progn
5535 (ps-header-sheet)
5536 (run-hooks 'ps-print-begin-sheet-hook))
5537 ;; Print only when a new page begins.
5538 (ps-output "BeginDSCPage\n")
5539 (run-hooks 'ps-print-begin-page-hook))
5540 (ps-background ps-page-postscript)
5541 (setq ps-page-n-up (1+ ps-page-n-up))
5542 (and ps-print-page-p
5543 (setq ps-page-printed (1+ ps-page-printed)))))
5544 ;; Print only when a new column begins.
5545 (ps-output "BeginDSCPage\n")
5546 (run-hooks 'ps-print-begin-column-hook))
5547 (setq ps-page-column (1+ ps-page-column)))
5549 (defun ps-begin-page ()
5550 (setq ps-width-remaining ps-print-width
5551 ps-height-remaining ps-print-height)
5553 (ps-header-page)
5555 (ps-output (format "/LineNumber %d def\n" ps-showline-count)
5556 (format "/PageNumber %d def\n" (ps-page-number)))
5558 (when ps-print-header
5559 (ps-generate-header "HeaderLinesLeft" "/h0" "/h1" ps-left-header)
5560 (ps-generate-header "HeaderLinesRight" "/h0" "/h1" ps-right-header)
5561 (ps-output (format "%d SetHeaderLines\n" ps-header-lines)))
5563 (when ps-print-footer
5564 (ps-generate-header "FooterLinesLeft" "/H0" "/H0" ps-left-footer)
5565 (ps-generate-header "FooterLinesRight" "/H0" "/H0" ps-right-footer)
5566 (ps-output (format "%d SetFooterLines\n" ps-footer-lines)))
5568 (ps-output (number-to-string ps-lines-printed) " BeginPage\n")
5569 (ps-set-font ps-current-font)
5570 (ps-set-bg ps-current-bg)
5571 (ps-set-color ps-current-color)
5572 (ps-mule-begin-page))
5574 (defsubst ps-skip-newline (limit)
5575 (setq ps-showline-count (1+ ps-showline-count)
5576 ps-lines-printed (1+ ps-lines-printed))
5577 (and (< (point) limit)
5578 (forward-char 1)))
5580 (defsubst ps-next-line ()
5581 (setq ps-showline-count (1+ ps-showline-count)
5582 ps-lines-printed (1+ ps-lines-printed))
5583 (let* ((paragraph-p (and ps-paragraph-regexp
5584 (looking-at ps-paragraph-regexp)))
5585 (lh (+ (ps-line-height 'ps-font-for-text)
5586 (if paragraph-p
5587 ps-paragraph-spacing-internal
5588 ps-line-spacing-internal))))
5589 (if (< ps-height-remaining lh)
5590 (ps-next-page)
5591 (setq ps-width-remaining ps-print-width
5592 ps-height-remaining (- ps-height-remaining lh))
5593 (ps-output (if paragraph-p "PHL\n" "LHL\n")))))
5595 (defun ps-continue-line ()
5596 (setq ps-lines-printed (1+ ps-lines-printed))
5597 (let ((lh (+ (ps-line-height 'ps-font-for-text) ps-line-spacing-internal)))
5598 (if (< ps-height-remaining lh)
5599 (ps-next-page)
5600 (setq ps-width-remaining ps-print-width
5601 ps-height-remaining (- ps-height-remaining lh))
5602 (ps-output "SL\n"))))
5604 (defun ps-find-wrappoint (from to char-width)
5605 (let ((avail (truncate (/ ps-width-remaining char-width)))
5606 (todo (- to from)))
5607 (if (< todo avail)
5608 (cons to (* todo char-width))
5609 (cons (+ from avail) ps-width-remaining))))
5611 (defun ps-basic-plot-str (from to string)
5612 (let* ((wrappoint (ps-find-wrappoint from to
5613 (ps-avg-char-width 'ps-font-for-text)))
5614 (to (car wrappoint))
5615 (str (substring string from to)))
5616 (ps-mule-prepare-ascii-font str)
5617 (ps-output-string str)
5618 (ps-output " S\n")
5619 wrappoint))
5621 (defun ps-basic-plot-string (from to &optional bg-color)
5622 (let* ((wrappoint (ps-find-wrappoint from to
5623 (ps-avg-char-width 'ps-font-for-text)))
5624 (to (car wrappoint))
5625 (string (buffer-substring-no-properties from to)))
5626 (ps-mule-prepare-ascii-font string)
5627 (ps-output-string string)
5628 (ps-output " S\n")
5629 wrappoint))
5631 (defun ps-basic-plot-whitespace (from to &optional bg-color)
5632 (let* ((wrappoint (ps-find-wrappoint from to
5633 (ps-space-width 'ps-font-for-text)))
5634 (to (car wrappoint)))
5635 (ps-output (format "%d W\n" (- to from)))
5636 wrappoint))
5638 (defun ps-plot (plotfunc from to &optional bg-color)
5639 (while (< from to)
5640 (let* ((wrappoint (funcall plotfunc from to bg-color))
5641 (plotted-to (car wrappoint))
5642 (plotted-width (cdr wrappoint)))
5643 (setq from plotted-to
5644 ps-width-remaining (- ps-width-remaining plotted-width))
5645 (if (< from to)
5646 (ps-continue-line))))
5647 (if ps-razzle-dazzle
5648 (let* ((q-todo (- (point-max) (point-min)))
5649 (q-done (- (point) (point-min)))
5650 (chunkfrac (/ q-todo 8))
5651 (chunksize (min chunkfrac 1000)))
5652 (if (> (- q-done ps-razchunk) chunksize)
5653 (progn
5654 (setq ps-razchunk q-done)
5655 (message "Formatting...%3d%%"
5656 (if (< q-todo 100)
5657 (/ (* 100 q-done) q-todo)
5658 (/ q-done (/ q-todo 100)))
5659 ))))))
5661 (defvar ps-last-font nil)
5663 (defun ps-set-font (font)
5664 (setq ps-last-font (format "f%d" (setq ps-current-font font)))
5665 (ps-output (format "/%s F\n" ps-last-font)))
5667 (defun ps-set-bg (color)
5668 (if (setq ps-current-bg color)
5669 (ps-output (format ps-color-format
5670 (nth 0 color) (nth 1 color) (nth 2 color))
5671 " true BG\n")
5672 (ps-output "false BG\n")))
5674 (defun ps-set-color (color)
5675 (setq ps-current-color (or color ps-default-foreground))
5676 (ps-output (format ps-color-format
5677 (nth 0 ps-current-color)
5678 (nth 1 ps-current-color) (nth 2 ps-current-color))
5679 " FG\n"))
5682 (defsubst ps-plot-string (string)
5683 (ps-plot 'ps-basic-plot-str 0 (length string) string))
5686 (defvar ps-current-effect 0)
5689 (defun ps-plot-region (from to font &optional fg-color bg-color effects)
5690 (or (equal font ps-current-font)
5691 (ps-set-font font))
5693 ;; Specify a foreground color only if one's specified and it's
5694 ;; different than the current.
5695 (let ((fg (or fg-color ps-default-foreground)))
5696 (or (equal fg ps-current-color)
5697 (ps-set-color fg)))
5699 (or (equal bg-color ps-current-bg)
5700 (ps-set-bg bg-color))
5702 ;; Specify effects (underline, overline, box, etc)
5703 (cond
5704 ((not (integerp effects))
5705 (ps-output "0 EF\n")
5706 (setq ps-current-effect 0))
5707 ((/= effects ps-current-effect)
5708 (ps-output (number-to-string effects) " EF\n")
5709 (setq ps-current-effect effects)))
5711 ;; Starting at the beginning of the specified region...
5712 (save-excursion
5713 (goto-char from)
5715 ;; ...break the region up into chunks separated by tabs, linefeeds,
5716 ;; pagefeeds, control characters, and plot each chunk.
5717 (while (< from to)
5718 ;; skip lines between cut markers
5719 (and ps-begin-cut-regexp ps-end-cut-regexp
5720 (looking-at ps-begin-cut-regexp)
5721 (progn
5722 (goto-char (match-end 0))
5723 (and (re-search-forward ps-end-cut-regexp to 'noerror)
5724 (= (following-char) ?\n)
5725 (forward-char 1))
5726 (setq from (point))))
5727 (if (re-search-forward ps-control-or-escape-regexp to t)
5728 ;; region with some control characters or some multi-byte characters
5729 (let* ((match-point (match-beginning 0))
5730 (match (char-after match-point))
5731 (composition (ps-e-find-composition from (1+ match-point))))
5732 (if composition
5733 (if (and (nth 2 composition)
5734 (<= (car composition) match-point))
5735 (progn
5736 (setq match-point (car composition)
5737 match 0)
5738 (goto-char (nth 1 composition)))
5739 (setq composition nil)))
5740 (when (< from match-point)
5741 (ps-mule-set-ascii-font)
5742 (ps-plot 'ps-basic-plot-string from match-point bg-color))
5743 (cond
5744 ((= match ?\t) ; tab
5745 (let ((linestart (line-beginning-position)))
5746 (forward-char -1)
5747 (setq from (+ linestart (current-column)))
5748 (when (re-search-forward "[ \t]+" to t)
5749 (ps-mule-set-ascii-font)
5750 (ps-plot 'ps-basic-plot-whitespace
5751 from (+ linestart (current-column))
5752 bg-color))))
5754 ((= match ?\n) ; newline
5755 (if (looking-at "\f[^\n]")
5756 ;; \n\ftext\n ==>> next page, but keep line counting!!
5757 (progn
5758 (ps-skip-newline to)
5759 (ps-next-page))
5760 ;; \n\f\n ==>> it'll be handled by form feed
5761 ;; \ntext\n ==>> next line
5762 (ps-next-line)))
5764 ((= match ?\f) ; form feed
5765 ;; do not skip page if previous character is NEWLINE and
5766 ;; it is a beginning of page.
5767 (unless (and (equal (char-after (1- match-point)) ?\n)
5768 (= ps-height-remaining ps-print-height))
5769 ;; \f\n ==>> skip \n, but keep line counting!!
5770 (and (equal (following-char) ?\n)
5771 (ps-skip-newline to))
5772 (ps-next-page)))
5774 (composition ; a composite sequence
5775 (ps-plot 'ps-mule-plot-composition match-point (point) bg-color))
5777 ((> match 255) ; a multi-byte character
5778 (let* ((charset (char-charset match))
5779 (composition (ps-e-find-composition match-point to))
5780 (stop (if (nth 2 composition) (car composition) to)))
5781 (or (eq charset 'composition)
5782 (while (and (< (point) stop) (eq (charset-after) charset))
5783 (forward-char 1)))
5784 (ps-plot 'ps-mule-plot-string match-point (point) bg-color)))
5785 ; characters from ^@ to ^_ and
5786 (t ; characters from 127 to 255
5787 (ps-control-character match)))
5788 (setq from (point)))
5789 ;; region without control characters nor multi-byte characters
5790 (ps-mule-set-ascii-font)
5791 (ps-plot 'ps-basic-plot-string from to bg-color)
5792 (setq from to)))))
5794 (defvar ps-string-control-codes
5795 (let ((table (make-vector 256 nil))
5796 (char ?\000))
5797 ;; control character
5798 (while (<= char ?\037)
5799 (aset table char (format "^%c" (+ char ?@)))
5800 (setq char (1+ char)))
5801 ;; printable character
5802 (while (< char ?\177)
5803 (aset table char (format "%c" char))
5804 (setq char (1+ char)))
5805 ;; DEL
5806 (aset table char "^?")
5807 ;; 8-bit character
5808 (while (<= (setq char (1+ char)) ?\377)
5809 (aset table char (format "\\%o" char)))
5810 table)
5811 "Vector used to map characters to a printable string.")
5813 (defun ps-control-character (char)
5814 (let* ((str (aref ps-string-control-codes char))
5815 (from (1- (point)))
5816 (len (length str))
5817 (to (+ from len))
5818 (char-width (ps-avg-char-width 'ps-font-for-text))
5819 (wrappoint (ps-find-wrappoint from to char-width)))
5820 (if (< (car wrappoint) to)
5821 (ps-continue-line))
5822 (setq ps-width-remaining (- ps-width-remaining (* len char-width)))
5823 (ps-mule-prepare-ascii-font str)
5824 (ps-output-string str)
5825 (ps-output " S\n")))
5828 (defun ps-face-attributes (face)
5829 "Return face attribute vector.
5831 If FACE is not in `ps-print-face-extension-alist' or in
5832 `ps-print-face-alist', insert it on `ps-print-face-alist' and
5833 return the attribute vector.
5835 If FACE is not a valid face name, it is used default face."
5836 (cond
5837 ((symbolp face)
5838 (cdr (or (assq face ps-print-face-extension-alist)
5839 (assq face ps-print-face-alist)
5840 (let* ((the-face (if (facep face) face 'default))
5841 (new-face (ps-screen-to-bit-face the-face)))
5842 (or (and (eq the-face 'default)
5843 (assq the-face ps-print-face-alist))
5844 (setq ps-print-face-alist
5845 (cons new-face ps-print-face-alist)))
5846 new-face))))
5847 ((eq (car face) 'foreground-color)
5848 (vector 0 (cdr face) nil))
5849 ((eq (car face) 'background-color)
5850 (vector 0 nil (cdr face)))
5852 (vector 0 nil nil))))
5855 (defun ps-face-background (face background)
5856 (and (or (eq ps-use-face-background t)
5857 (cond ((symbolp face)
5858 (memq face ps-use-face-background))
5859 ((listp face)
5860 (or (memq (car face) '(foreground-color background-color))
5861 (let (ok)
5862 (while face
5863 (if (or (memq (car face) ps-use-face-background)
5864 (memq (car face)
5865 '(foreground-color background-color)))
5866 (setq face nil
5867 ok t)
5868 (setq face (cdr face))))
5869 ok)))
5871 nil)
5873 background))
5876 (defun ps-face-attribute-list (face-or-list)
5877 (cond
5878 ;; simple face
5879 ((not (listp face-or-list))
5880 (ps-face-attributes face-or-list))
5881 ;; only foreground color, not a `real' face
5882 ((eq (car face-or-list) 'foreground-color)
5883 (vector 0 (cdr face-or-list) nil))
5884 ;; only background color, not a `real' face
5885 ((eq (car face-or-list) 'background-color)
5886 (vector 0 nil (cdr face-or-list)))
5887 ;; list of faces
5889 (let ((effects 0)
5890 foreground background face-attr face)
5891 (while face-or-list
5892 (setq face (car face-or-list)
5893 face-or-list (cdr face-or-list)
5894 face-attr (ps-face-attributes face)
5895 effects (logior effects (aref face-attr 0)))
5896 (or foreground (setq foreground (aref face-attr 1)))
5897 (or background
5898 (setq background (ps-face-background face (aref face-attr 2)))))
5899 (vector effects foreground background)))))
5902 (defconst ps-font-type (vector nil 'bold 'italic 'bold-italic))
5905 (defun ps-plot-with-face (from to face)
5906 (cond
5907 ((null face) ; print text with null face
5908 (ps-plot-region from to 0))
5909 ((eq face 'emacs--invisible--face)) ; skip invisible text!!!
5910 (t ; otherwise, text has a valid face
5911 (let* ((face-bit (ps-face-attribute-list face))
5912 (effect (aref face-bit 0))
5913 (foreground (aref face-bit 1))
5914 (background (ps-face-background face (aref face-bit 2)))
5915 (fg-color (if (and ps-color-p foreground)
5916 (ps-color-scale foreground)
5917 ps-default-color))
5918 (bg-color (and ps-color-p background
5919 (ps-color-scale background))))
5920 (ps-plot-region
5921 from to
5922 (ps-font-number 'ps-font-for-text
5923 (or (aref ps-font-type (logand effect 3))
5924 face))
5925 fg-color bg-color (lsh effect -2)))))
5926 (goto-char to))
5929 ;; Ensure that face-list is fbound.
5930 (or (fboundp 'face-list) (defalias 'face-list 'list-faces))
5933 (defun ps-build-reference-face-lists ()
5934 ;; Ensure that face database is updated with faces on
5935 ;; `font-lock-face-attributes' (obsolete stuff)
5936 (ps-font-lock-face-attributes)
5937 ;; Now, rebuild reference face lists
5938 (setq ps-print-face-alist nil)
5939 (if ps-auto-font-detect
5940 (mapcar 'ps-map-face (face-list))
5941 (mapcar 'ps-set-face-bold ps-bold-faces)
5942 (mapcar 'ps-set-face-italic ps-italic-faces)
5943 (mapcar 'ps-set-face-underline ps-underlined-faces))
5944 (setq ps-build-face-reference nil))
5947 (defun ps-set-face-bold (face)
5948 (ps-set-face-attribute face 1))
5950 (defun ps-set-face-italic (face)
5951 (ps-set-face-attribute face 2))
5953 (defun ps-set-face-underline (face)
5954 (ps-set-face-attribute face 4))
5957 (defun ps-set-face-attribute (face effect)
5958 (let ((face-bit (cdr (ps-map-face face))))
5959 (aset face-bit 0 (logior (aref face-bit 0) effect))))
5962 (defun ps-map-face (face)
5963 (let* ((face-map (ps-screen-to-bit-face face))
5964 (ps-face-bit (cdr (assq (car face-map) ps-print-face-alist))))
5965 (if ps-face-bit
5966 ;; if face exists, merge both
5967 (let ((face-bit (cdr face-map)))
5968 (aset ps-face-bit 0 (logior (aref ps-face-bit 0) (aref face-bit 0)))
5969 (or (aref ps-face-bit 1) (aset ps-face-bit 1 (aref face-bit 1)))
5970 (or (aref ps-face-bit 2) (aset ps-face-bit 2 (aref face-bit 2))))
5971 ;; if face does not exist, insert it
5972 (setq ps-print-face-alist (cons face-map ps-print-face-alist)))
5973 face-map))
5976 (defun ps-screen-to-bit-face (face)
5977 (cons face
5978 (vector (logior (if (ps-face-bold-p face) 1 0) ; bold
5979 (if (ps-face-italic-p face) 2 0) ; italic
5980 (if (ps-face-underlined-p face) 4 0)) ; underline
5981 (ps-face-foreground-name face)
5982 (ps-face-background-name face))))
5985 ;; to avoid compilation gripes
5986 (defun ps-print-ensure-fontified (start end)
5987 (cond
5988 ((and (boundp 'jit-lock-mode) (symbol-value 'jit-lock-mode))
5989 (defalias 'ps-jitify 'jit-lock-fontify-now) ; avoid compilation gripes
5990 (ps-jitify start end))
5991 ((and (boundp 'lazy-lock-mode) (symbol-value 'lazy-lock-mode))
5992 (defalias 'ps-lazify 'lazy-lock-fontify-region) ; avoid compilation gripes
5993 (ps-lazify start end))))
5996 (defun ps-generate-postscript-with-faces (from to)
5997 ;; Some initialization...
5998 (setq ps-current-effect 0)
6000 ;; Build the reference lists of faces if necessary.
6001 (when (or ps-always-build-face-reference
6002 ps-build-face-reference)
6003 (message "Collecting face information...")
6004 (ps-build-reference-face-lists))
6005 ;; Generate some PostScript.
6006 (save-restriction
6007 (narrow-to-region from to)
6008 (ps-print-ensure-fontified from to)
6009 (let ((face 'default)
6010 (position to))
6011 (cond
6012 ((memq ps-print-emacs-type '(xemacs lucid))
6013 ;; Build the list of extents...
6014 (let ((a (cons 'dummy nil))
6015 record type extent extent-list)
6016 (ps-x-map-extents 'ps-mapper nil from to a)
6017 (setq a (sort (cdr a) 'car-less-than-car)
6018 extent-list nil)
6020 ;; Loop through the extents...
6021 (while a
6022 (setq record (car a)
6023 position (car record)
6025 record (cdr record)
6026 type (car record)
6028 record (cdr record)
6029 extent (car record))
6031 ;; Plot up to this record.
6032 ;; XEmacs 19.12: for some reason, we're getting into a
6033 ;; situation in which some of the records have
6034 ;; positions less than 'from'. Since we've narrowed
6035 ;; the buffer, this'll generate errors. This is a hack,
6036 ;; but don't call ps-plot-with-face unless from > point-min.
6037 (and (>= from (point-min))
6038 (ps-plot-with-face from (min position (point-max)) face))
6040 (cond
6041 ((eq type 'push)
6042 (and (ps-x-extent-face extent)
6043 (setq extent-list (sort (cons extent extent-list)
6044 'ps-extent-sorter))))
6046 ((eq type 'pull)
6047 (setq extent-list (sort (delq extent extent-list)
6048 'ps-extent-sorter))))
6050 (setq face (if extent-list
6051 (ps-x-extent-face (car extent-list))
6052 'default)
6053 from position
6054 a (cdr a)))))
6056 ((eq ps-print-emacs-type 'emacs)
6057 (let ((property-change from)
6058 (overlay-change from)
6059 (save-buffer-invisibility-spec buffer-invisibility-spec)
6060 (buffer-invisibility-spec nil)
6061 before-string after-string)
6062 (while (< from to)
6063 (and (< property-change to) ; Don't search for property change
6064 ; unless previous search succeeded.
6065 (setq property-change (next-property-change from nil to)))
6066 (and (< overlay-change to) ; Don't search for overlay change
6067 ; unless previous search succeeded.
6068 (setq overlay-change (min (ps-e-next-overlay-change from)
6069 to)))
6070 (setq position (min property-change overlay-change)
6071 before-string nil
6072 after-string nil)
6073 ;; The code below is not quite correct,
6074 ;; because a non-nil overlay invisible property
6075 ;; which is inactive according to the current value
6076 ;; of buffer-invisibility-spec nonetheless overrides
6077 ;; a face text property.
6078 (setq face
6079 (cond ((let ((prop (get-text-property from 'invisible)))
6080 ;; Decide whether this invisible property
6081 ;; really makes the text invisible.
6082 (if (eq save-buffer-invisibility-spec t)
6083 (not (null prop))
6084 (or (memq prop save-buffer-invisibility-spec)
6085 (assq prop save-buffer-invisibility-spec))))
6086 'emacs--invisible--face)
6087 ((get-text-property from 'face))
6088 (t 'default)))
6089 (let ((overlays (ps-e-overlays-at from))
6090 (face-priority -1)) ; text-property
6091 (while (and overlays
6092 (not (eq face 'emacs--invisible--face)))
6093 (let* ((overlay (car overlays))
6094 (overlay-invisible
6095 (ps-e-overlay-get overlay 'invisible))
6096 (overlay-priority
6097 (or (ps-e-overlay-get overlay 'priority) 0)))
6098 (and (> overlay-priority face-priority)
6099 (setq before-string
6100 (or (ps-e-overlay-get overlay 'before-string)
6101 before-string)
6102 after-string
6103 (or (and (<= (ps-e-overlay-end overlay) position)
6104 (ps-e-overlay-get overlay 'after-string))
6105 after-string)
6106 face-priority overlay-priority
6107 face
6108 (cond
6109 ((if (eq save-buffer-invisibility-spec t)
6110 (not (null overlay-invisible))
6111 (or (memq overlay-invisible
6112 save-buffer-invisibility-spec)
6113 (assq overlay-invisible
6114 save-buffer-invisibility-spec)))
6115 'emacs--invisible--face)
6116 ((ps-e-overlay-get overlay 'face))
6117 (t face)
6118 ))))
6119 (setq overlays (cdr overlays))))
6120 ;; Plot up to this record.
6121 (and before-string
6122 (ps-plot-string before-string))
6123 (ps-plot-with-face from position face)
6124 (and after-string
6125 (ps-plot-string after-string))
6126 (setq from position)))))
6127 (ps-plot-with-face from to face))))
6129 (defun ps-generate-postscript (from to)
6130 (ps-plot-region from to 0 nil))
6132 (defun ps-generate (buffer from to genfunc)
6133 (save-excursion
6134 (let ((from (min to from))
6135 (to (max to from))
6136 ;; This avoids trouble if chars with read-only properties
6137 ;; are copied into ps-spool-buffer.
6138 (inhibit-read-only t))
6139 (save-restriction
6140 (narrow-to-region from to)
6141 (and ps-razzle-dazzle
6142 (message "Formatting...%3d%%" (setq ps-razchunk 0)))
6143 (setq ps-source-buffer buffer
6144 ps-spool-buffer (get-buffer-create ps-spool-buffer-name))
6145 (ps-init-output-queue)
6146 (let (safe-marker completed-safely needs-begin-file)
6147 (unwind-protect
6148 (progn
6149 (set-buffer ps-spool-buffer)
6150 (set-buffer-multibyte nil)
6152 ;; Get a marker and make it point to the current end of the
6153 ;; buffer, If an error occurs, we'll delete everything from
6154 ;; the end of this marker onwards.
6155 (setq safe-marker (make-marker))
6156 (set-marker safe-marker (point-max))
6158 (goto-char (point-min))
6159 (or (looking-at (regexp-quote ps-adobe-tag))
6160 (setq needs-begin-file t))
6162 (set-buffer ps-source-buffer)
6163 (save-excursion
6164 (let ((ps-print-page-p t)
6165 ps-even-or-odd-pages)
6166 (ps-begin-job)
6167 (when needs-begin-file
6168 (ps-begin-file)
6169 (ps-mule-initialize))
6170 (ps-mule-begin-job from to)
6171 (ps-selected-pages)))
6172 (ps-begin-page)
6173 (funcall genfunc from to)
6174 (ps-end-page)
6175 (ps-end-job needs-begin-file)
6177 ;; Setting this variable tells the unwind form that the
6178 ;; the PostScript was generated without error.
6179 (setq completed-safely t))
6181 ;; Unwind form: If some bad mojo occurred while generating
6182 ;; PostScript, delete all the PostScript that was generated.
6183 ;; This protects the previously spooled files from getting
6184 ;; corrupted.
6185 (and (markerp safe-marker) (not completed-safely)
6186 (progn
6187 (set-buffer ps-spool-buffer)
6188 (delete-region (marker-position safe-marker) (point-max))))))
6190 (and ps-razzle-dazzle (message "Formatting...done"))))))
6193 (defun ps-end-job (needs-begin-file)
6194 (let ((previous-print ps-print-page-p)
6195 (ps-print-page-p t))
6196 (ps-flush-output)
6197 (save-excursion
6198 (let ((pages-per-sheet (mod ps-page-printed ps-n-up-printing))
6199 (total-lines (cdr ps-printing-region))
6200 (total-pages (ps-page-number)))
6201 (set-buffer ps-spool-buffer)
6202 (let (case-fold-search)
6203 ;; Back to the PS output buffer to set the last page n-up printing
6204 (goto-char (point-max))
6205 (and (> pages-per-sheet 0)
6206 (re-search-backward "^[0-9]+ BeginSheet$" nil t)
6207 (replace-match (format "%d BeginSheet" pages-per-sheet) t))
6208 ;; Back to the PS output buffer to set the page count
6209 (goto-char (point-min))
6210 (while (re-search-forward "^/Lines 0 def\n/PageCount 0 def$" nil t)
6211 (replace-match (format "/Lines %d def\n/PageCount %d def"
6212 total-lines total-pages) t)))))
6213 ;; Set dummy page
6214 (and ps-spool-duplex (= (mod ps-page-order 2) 1)
6215 (let ((ps-n-up-printing 0))
6216 (ps-header-sheet)
6217 (ps-output "/PrintHeader false def\n/ColumnIndex 0 def\n"
6218 "/PrintLineNumber false def\n"
6219 (number-to-string ps-lines-printed) " BeginPage\n")
6220 (ps-end-page)))
6221 ;; Set end of PostScript file
6222 (and previous-print
6223 (ps-output "EndSheet\n"))
6224 (ps-output "\n%%Trailer\n%%Pages: "
6225 (number-to-string
6226 (if (and needs-begin-file
6227 ps-banner-page-when-duplexing)
6228 (1+ ps-page-order)
6229 ps-page-order))
6230 "\n\nEndDoc\n\n%%EOF\n")
6231 (and ps-end-with-control-d
6232 (ps-output "\C-d"))
6233 (ps-flush-output))
6234 ;; disable selected pages
6235 (setq ps-selected-pages nil))
6238 ;; Permit dynamic evaluation at print time of `ps-lpr-switches'.
6239 (defun ps-do-despool (filename)
6240 (if (or (not (boundp 'ps-spool-buffer))
6241 (not (symbol-value 'ps-spool-buffer)))
6242 (message "No spooled PostScript to print")
6243 (if filename
6244 (save-excursion
6245 (and ps-razzle-dazzle (message "Saving..."))
6246 (set-buffer ps-spool-buffer)
6247 (setq filename (expand-file-name filename))
6248 (let ((coding-system-for-write 'raw-text-unix))
6249 (write-region (point-min) (point-max) filename))
6250 (and ps-razzle-dazzle (message "Wrote %s" filename)))
6251 ;; Else, spool to the printer
6252 (and ps-razzle-dazzle (message "Printing..."))
6253 (save-excursion
6254 (set-buffer ps-spool-buffer)
6255 (let* ((coding-system-for-write 'raw-text-unix)
6256 (ps-printer-name (or ps-printer-name
6257 (and (boundp 'printer-name)
6258 (symbol-value 'printer-name))))
6259 (ps-lpr-switches
6260 (append ps-lpr-switches
6261 (and (stringp ps-printer-name)
6262 (string< "" ps-printer-name)
6263 (list (concat
6264 (and (stringp ps-printer-name-option)
6265 ps-printer-name-option)
6266 ps-printer-name))))))
6267 (apply (or ps-print-region-function 'call-process-region)
6268 (point-min) (point-max) ps-lpr-command nil
6269 (and (fboundp 'start-process) 0)
6271 (ps-flatten-list ; dynamic evaluation
6272 (mapcar 'ps-eval-switch ps-lpr-switches)))))
6273 (and ps-razzle-dazzle (message "Printing...done")))
6274 (kill-buffer ps-spool-buffer)))
6276 ;; Dynamic evaluation
6277 (defun ps-eval-switch (arg)
6278 (cond ((stringp arg) arg)
6279 ((functionp arg) (apply arg nil))
6280 ((symbolp arg) (symbol-value arg))
6281 ((consp arg) (apply (car arg) (cdr arg)))
6282 (t nil)))
6284 ;; `ps-flatten-list' is defined here (copied from "message.el" and
6285 ;; enhanced to handle dotted pairs as well) until we can get some
6286 ;; sensible autoloads, or `flatten-list' gets put somewhere decent.
6288 ;; (ps-flatten-list '((a . b) c (d . e) (f g h) i . j))
6289 ;; => (a b c d e f g h i j)
6291 (defun ps-flatten-list (&rest list)
6292 (ps-flatten-list-1 list))
6294 (defun ps-flatten-list-1 (list)
6295 (cond ((null list) nil)
6296 ((consp list) (append (ps-flatten-list-1 (car list))
6297 (ps-flatten-list-1 (cdr list))))
6298 (t (list list))))
6300 (defun ps-kill-emacs-check ()
6301 (let (ps-buffer)
6302 (and (setq ps-buffer (get-buffer ps-spool-buffer-name))
6303 (buffer-modified-p ps-buffer)
6304 (y-or-n-p "Unprinted PostScript waiting; print now? ")
6305 (ps-despool))
6306 (and (setq ps-buffer (get-buffer ps-spool-buffer-name))
6307 (buffer-modified-p ps-buffer)
6308 (not (yes-or-no-p "Unprinted PostScript waiting; exit anyway? "))
6309 (error "Unprinted PostScript"))))
6311 (cond ((fboundp 'add-hook)
6312 (funcall 'add-hook 'kill-emacs-hook 'ps-kill-emacs-check))
6313 (kill-emacs-hook
6314 (message "Won't override existing `kill-emacs-hook'"))
6316 (setq kill-emacs-hook 'ps-kill-emacs-check)))
6319 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6320 ;;; Sample Setup Code:
6323 ;; This stuff is for anybody that's brave enough to look this far,
6324 ;; and able to figure out how to use it. It isn't really part of
6325 ;; ps-print, but I'll leave it here in hopes it might be useful:
6327 ;; WARNING!!! The following code is *sample* code only.
6328 ;; Don't use it unless you understand what it does!
6330 (defmacro ps-prsc ()
6331 `(if (eq ps-print-emacs-type 'emacs) [f22] 'f22))
6332 (defmacro ps-c-prsc ()
6333 `(if (eq ps-print-emacs-type 'emacs) [C-f22] '(control f22)))
6334 (defmacro ps-s-prsc ()
6335 `(if (eq ps-print-emacs-type 'emacs) [S-f22] '(shift f22)))
6337 ;; A hook to bind to `rmail-mode-hook' to locally bind prsc and set the
6338 ;; `ps-left-headers' specially for mail messages.
6339 (defun ps-rmail-mode-hook ()
6340 (local-set-key (ps-prsc) 'ps-rmail-print-message-from-summary)
6341 (setq ps-header-lines 3
6342 ps-left-header
6343 ;; The left headers will display the message's subject, its
6344 ;; author, and the name of the folder it was in.
6345 '(ps-article-subject ps-article-author buffer-name)))
6347 ;; See `ps-gnus-print-article-from-summary'. This function does the
6348 ;; same thing for rmail.
6349 (defun ps-rmail-print-message-from-summary ()
6350 (interactive)
6351 (ps-print-message-from-summary 'rmail-summary-buffer "RMAIL"))
6353 ;; Used in `ps-rmail-print-article-from-summary',
6354 ;; `ps-gnus-print-article-from-summary' and `ps-vm-print-message-from-summary'.
6355 (defun ps-print-message-from-summary (summary-buffer summary-default)
6356 (let ((ps-buf (or (and (boundp summary-buffer)
6357 (symbol-value summary-buffer))
6358 summary-default)))
6359 (and (get-buffer ps-buf)
6360 (save-excursion
6361 (set-buffer ps-buf)
6362 (ps-spool-buffer-with-faces)))))
6364 ;; Look in an article or mail message for the Subject: line. To be
6365 ;; placed in `ps-left-headers'.
6366 (defun ps-article-subject ()
6367 (save-excursion
6368 (goto-char (point-min))
6369 (if (re-search-forward "^Subject:[ \t]+\\(.*\\)$" nil t)
6370 (buffer-substring (match-beginning 1) (match-end 1))
6371 "Subject ???")))
6373 ;; Look in an article or mail message for the From: line. Sorta-kinda
6374 ;; understands RFC-822 addresses and can pull the real name out where
6375 ;; it's provided. To be placed in `ps-left-headers'.
6376 (defun ps-article-author ()
6377 (save-excursion
6378 (goto-char (point-min))
6379 (if (re-search-forward "^From:[ \t]+\\(.*\\)$" nil t)
6380 (let ((fromstring (buffer-substring (match-beginning 1) (match-end 1))))
6381 (cond
6383 ;; Try first to match addresses that look like
6384 ;; thompson@wg2.waii.com (Jim Thompson)
6385 ((string-match ".*[ \t]+(\\(.*\\))" fromstring)
6386 (substring fromstring (match-beginning 1) (match-end 1)))
6388 ;; Next try to match addresses that look like
6389 ;; Jim Thompson <thompson@wg2.waii.com> or
6390 ;; "Jim Thompson" <thompson@wg2.waii.com>
6391 ((string-match "\\(\"?\\)\\(.*\\)\\1[ \t]+<.*>" fromstring)
6392 (substring fromstring (match-beginning 2) (match-end 2)))
6394 ;; Couldn't find a real name -- show the address instead.
6395 (t fromstring)))
6396 "From ???")))
6398 ;; A hook to bind to `gnus-article-prepare-hook'. This will set the
6399 ;; `ps-left-headers' specially for gnus articles. Unfortunately,
6400 ;; `gnus-article-mode-hook' is called only once, the first time the *Article*
6401 ;; buffer enters that mode, so it would only work for the first time
6402 ;; we ran gnus. The second time, this hook wouldn't get set up. The
6403 ;; only alternative is `gnus-article-prepare-hook'.
6404 (defun ps-gnus-article-prepare-hook ()
6405 (setq ps-header-lines 3
6406 ps-left-header
6407 ;; The left headers will display the article's subject, its
6408 ;; author, and the newsgroup it was in.
6409 '(ps-article-subject ps-article-author gnus-newsgroup-name)))
6411 ;; A hook to bind to `vm-mode-hook' to locally bind prsc and set the
6412 ;; `ps-left-headers' specially for mail messages.
6413 (defun ps-vm-mode-hook ()
6414 (local-set-key (ps-prsc) 'ps-vm-print-message-from-summary)
6415 (setq ps-header-lines 3
6416 ps-left-header
6417 ;; The left headers will display the message's subject, its
6418 ;; author, and the name of the folder it was in.
6419 '(ps-article-subject ps-article-author buffer-name)))
6421 ;; Every now and then I forget to switch from the *Summary* buffer to
6422 ;; the *Article* before hitting prsc, and a nicely formatted list of
6423 ;; article subjects shows up at the printer. This function, bound to
6424 ;; prsc for the gnus *Summary* buffer means I don't have to switch
6425 ;; buffers first.
6426 ;; sb: Updated for Gnus 5.
6427 (defun ps-gnus-print-article-from-summary ()
6428 (interactive)
6429 (ps-print-message-from-summary 'gnus-article-buffer "*Article*"))
6431 ;; See `ps-gnus-print-article-from-summary'. This function does the
6432 ;; same thing for vm.
6433 (defun ps-vm-print-message-from-summary ()
6434 (interactive)
6435 (ps-print-message-from-summary 'vm-mail-buffer ""))
6437 ;; A hook to bind to bind to `gnus-summary-setup-buffer' to locally bind
6438 ;; prsc.
6439 (defun ps-gnus-summary-setup ()
6440 (local-set-key (ps-prsc) 'ps-gnus-print-article-from-summary))
6442 ;; Look in an article or mail message for the Subject: line. To be
6443 ;; placed in `ps-left-headers'.
6444 (defun ps-info-file ()
6445 (save-excursion
6446 (goto-char (point-min))
6447 (if (re-search-forward "File:[ \t]+\\([^, \t\n]*\\)" nil t)
6448 (buffer-substring (match-beginning 1) (match-end 1))
6449 "File ???")))
6451 ;; Look in an article or mail message for the Subject: line. To be
6452 ;; placed in `ps-left-headers'.
6453 (defun ps-info-node ()
6454 (save-excursion
6455 (goto-char (point-min))
6456 (if (re-search-forward "Node:[ \t]+\\([^,\t\n]*\\)" nil t)
6457 (buffer-substring (match-beginning 1) (match-end 1))
6458 "Node ???")))
6460 (defun ps-info-mode-hook ()
6461 (setq ps-left-header
6462 ;; The left headers will display the node name and file name.
6463 '(ps-info-node ps-info-file)))
6465 ;; WARNING! The following function is a *sample* only, and is *not*
6466 ;; meant to be used as a whole unless you understand what the effects
6467 ;; will be! (In fact, this is a copy of Jim's setup for ps-print --
6468 ;; I'd be very surprised if it was useful to *anybody*, without
6469 ;; modification.)
6471 (defun ps-jts-ps-setup ()
6472 (global-set-key (ps-prsc) 'ps-spool-buffer-with-faces) ;f22 is prsc
6473 (global-set-key (ps-s-prsc) 'ps-spool-region-with-faces)
6474 (global-set-key (ps-c-prsc) 'ps-despool)
6475 (add-hook 'gnus-article-prepare-hook 'ps-gnus-article-prepare-hook)
6476 (add-hook 'gnus-summary-mode-hook 'ps-gnus-summary-setup)
6477 (add-hook 'vm-mode-hook 'ps-vm-mode-hook)
6478 (add-hook 'vm-mode-hooks 'ps-vm-mode-hook)
6479 (add-hook 'Info-mode-hook 'ps-info-mode-hook)
6480 (setq ps-spool-duplex t
6481 ps-print-color-p nil
6482 ps-lpr-command "lpr"
6483 ps-lpr-switches '("-Jjct,duplex_long"))
6484 'ps-jts-ps-setup)
6486 ;; WARNING! The following function is a *sample* only, and is *not*
6487 ;; meant to be used as a whole unless it corresponds to your needs.
6488 ;; (In fact, this is a copy of Jack's setup for ps-print --
6489 ;; I would not be that surprised if it was useful to *anybody*,
6490 ;; without modification.)
6492 (defun ps-jack-setup ()
6493 (setq ps-print-color-p nil
6494 ps-lpr-command "lpr"
6495 ps-lpr-switches nil
6497 ps-paper-type 'a4
6498 ps-landscape-mode t
6499 ps-number-of-columns 2
6501 ps-left-margin (/ (* 72 1.0) 2.54) ; 1.0 cm
6502 ps-right-margin (/ (* 72 1.0) 2.54) ; 1.0 cm
6503 ps-inter-column (/ (* 72 1.0) 2.54) ; 1.0 cm
6504 ps-bottom-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
6505 ps-top-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
6506 ps-header-offset (/ (* 72 1.0) 2.54) ; 1.0 cm
6507 ps-header-line-pad .15
6508 ps-print-header t
6509 ps-print-header-frame t
6510 ps-header-lines 2
6511 ps-show-n-of-n t
6512 ps-spool-duplex nil
6514 ps-font-family 'Courier
6515 ps-font-size 5.5
6516 ps-header-font-family 'Helvetica
6517 ps-header-font-size 6
6518 ps-header-title-font-size 8)
6519 'ps-jack-setup)
6522 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6523 ;; To make this file smaller, some commands go in a separate file.
6524 ;; But autoload them here to make the separation invisible.
6526 (autoload 'ps-mule-prepare-ascii-font "ps-mule"
6527 "Setup special ASCII font for STRING.
6528 STRING should contain only ASCII characters.")
6530 (autoload 'ps-mule-set-ascii-font "ps-mule"
6531 "Adjust current font if current charset is not ASCII.")
6533 (autoload 'ps-mule-plot-string "ps-mule"
6534 "Generate PostScript code for plotting characters in the region FROM and TO.
6536 It is assumed that all characters in this region belong to the same charset.
6538 Optional argument BG-COLOR specifies background color.
6540 Returns the value:
6542 (ENDPOS . RUN-WIDTH)
6544 Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
6545 the sequence.")
6547 (autoload 'ps-mule-initialize "ps-mule"
6548 "Initialize global data for printing multi-byte characters.")
6550 (autoload 'ps-mule-begin-job "ps-mule"
6551 "Start printing job for multi-byte chars between FROM and TO.
6552 This checks if all multi-byte characters in the region are printable or not.")
6554 (autoload 'ps-mule-begin-page "ps-mule"
6555 "Initialize multi-byte charset for printing current page.")
6557 (autoload 'ps-mule-encode-header-string "ps-mule"
6558 "Generate PostScript code for plotting characters in header STRING.
6560 It is assumed that the length of STRING is not zero.")
6563 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6565 (provide 'ps-print)
6567 ;;; ps-print.el ends here