1 ;;; ps-print.el --- Print text from the buffer as PostScript
3 ;; Copyright (C) 1993-2000 Free Software Foundation, Inc.
5 ;; Author: Jim Thompson (was <thompson@wg2.waii.com>)
6 ;; Author: Jacques Duthen (was <duthen@cegelec-red.fr>)
7 ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br>
8 ;; Author: Kenichi Handa <handa@etl.go.jp> (multi-byte characters)
9 ;; Maintainer: Kenichi Handa <handa@etl.go.jp> (multi-byte characters)
10 ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
11 ;; Keywords: wp, print, PostScript
12 ;; Time-stamp: <2000/08/21 20:12:18 vinicius>
14 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/Emacs.html
16 (defconst ps-print-version
"6.0"
17 "ps-print.el, v 6.0 <2000/08/21 vinicius>
19 Vinicius's last change version -- this file may have been edited as part of
20 Emacs without changes to the version number. When reporting bugs, please also
21 report the version of Emacs, if any, that ps-print was distributed with.
23 Please send all bug fixes and enhancements to
24 Vinicius Jose Latorre <vinicius@cpqd.com.br>.
27 ;; This file is part of GNU Emacs.
29 ;; GNU Emacs is free software; you can redistribute it and/or modify
30 ;; it under the terms of the GNU General Public License as published by
31 ;; the Free Software Foundation; either version 2, or (at your option)
34 ;; GNU Emacs is distributed in the hope that it will be useful,
35 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
36 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37 ;; GNU General Public License for more details.
39 ;; You should have received a copy of the GNU General Public License
40 ;; along with GNU Emacs; see the file COPYING. If not, write to the
41 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
42 ;; Boston, MA 02111-1307, USA.
46 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
51 ;; This package provides printing of Emacs buffers on PostScript printers;
52 ;; the 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
57 ;; to print a PostScript file, but some faces are better seeing on the screen
58 ;; than 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).
69 ;; ps-print provides eight commands for generating PostScript images
73 ;; ps-print-buffer-with-faces
75 ;; ps-print-region-with-faces
77 ;; ps-spool-buffer-with-faces
79 ;; ps-spool-region-with-faces
81 ;; These commands all perform essentially the same function: they
82 ;; generate PostScript images suitable for printing on a PostScript
83 ;; printer or displaying with GhostScript. These commands are
84 ;; collectively referred to as "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
92 ;; spool - The PostScript image is saved temporarily in an
93 ;; Emacs buffer. Many images may be spooled locally
94 ;; before printing them. To send the spooled images
95 ;; to the printer, use the command `ps-despool'.
97 ;; The spooling mechanism was designed for printing lots of small
98 ;; files (mail messages or netnews articles) to save paper that would
99 ;; otherwise be wasted on banner pages, and to make it easier to find
100 ;; your output at the printer (it's easier to pick up one 50-page
101 ;; printout than to find 50 single-page printouts).
103 ;; ps-print has a hook in the `kill-emacs-hook' so that you won't
104 ;; accidentally quit from Emacs while you have unprinted PostScript
105 ;; waiting in the spool buffer. If you do attempt to exit with
106 ;; spooled PostScript, you'll be asked if you want to print it, and if
107 ;; you decline, you'll be asked to confirm the exit; this is modeled
108 ;; on the confirmation that Emacs uses for modified buffers.
110 ;; The word "buffer" or "region" in the command name determines how
111 ;; much of the buffer is printed:
113 ;; buffer - Print the entire buffer.
115 ;; region - Print just the current region.
117 ;; The -with-faces suffix on the command name means that the command
118 ;; will include font, color, and underline information in the
119 ;; PostScript image, so the printed image can look as pretty as the
120 ;; buffer. The ps-print- commands without the -with-faces suffix
121 ;; don't include font, color, or underline information; images printed
122 ;; with these commands aren't as pretty, but are faster to generate.
124 ;; Two ps-print- command examples:
126 ;; ps-print-buffer - print the entire buffer,
127 ;; without font, color, or
128 ;; underline information, and
129 ;; send it immediately to the
132 ;; ps-spool-region-with-faces - print just the current region;
133 ;; include font, color, and
134 ;; underline information, and
135 ;; spool the image in Emacs to
136 ;; send to the printer later.
142 ;; To print your buffer, type
144 ;; M-x ps-print-buffer
146 ;; or substitute one of the other seven ps-print- commands. The
147 ;; command will generate the PostScript image and print or spool it as
148 ;; specified. By giving the command a prefix argument
150 ;; C-u M-x ps-print-buffer
152 ;; it will save the PostScript image to a file instead of sending it
153 ;; to the printer; you will be prompted for the name of the file to
154 ;; save the image to. The prefix argument is ignored by the commands
155 ;; that spool their images, but you may save the spooled images to a
156 ;; file by giving a prefix argument to `ps-despool':
158 ;; C-u M-x ps-despool
160 ;; When invoked this way, `ps-despool' will prompt you for the name of
161 ;; the file to save to.
163 ;; Any of the `ps-print-' commands can be bound to keys; I recommend
164 ;; binding `ps-spool-buffer-with-faces', `ps-spool-region-with-faces',
165 ;; and `ps-despool'. Here are the bindings I use on my Sun 4 keyboard:
167 ;; (global-set-key 'f22 'ps-spool-buffer-with-faces) ;f22 is prsc
168 ;; (global-set-key '(shift f22) 'ps-spool-region-with-faces)
169 ;; (global-set-key '(control f22) 'ps-despool)
172 ;; The Printer Interface
173 ;; ---------------------
175 ;; The variables `ps-lpr-command' and `ps-lpr-switches' determine what
176 ;; command is used to send the PostScript images to the printer, and
177 ;; what arguments to give the command. These are analogous to
178 ;; `lpr-command' and `lpr-switches'.
180 ;; Make sure that they contain appropriate values for your system;
181 ;; see the usage notes below and the documentation of these variables.
183 ;; The variable `ps-printer-name' determines the name of a local printer for
184 ;; printing PostScript files.
186 ;; NOTE: `ps-lpr-command' and `ps-lpr-switches' take their initial values
187 ;; from the variables `lpr-command' and `lpr-switches'. If you have
188 ;; `lpr-command' set to invoke a pretty-printer such as `enscript',
189 ;; then ps-print won't work properly. `ps-lpr-command' must name
190 ;; a program that does not format the files it prints.
191 ;; `ps-printer-name' takes its initial value from the variable
194 ;; The variable `ps-print-region-function' specifies a function to print the
195 ;; region on a PostScript printer.
196 ;; See definition of `call-process-region' for calling conventions. The fourth
197 ;; and the sixth arguments are both nil.
199 ;; The variable `ps-manual-feed' indicates if the printer will manually feed
200 ;; paper. If it's nil, automatic feeding takes place. If it's non-nil, manual
201 ;; feeding takes place. The default is nil (automatic feeding).
203 ;; If you're using Emacs for Windows 95/98/NT or MS-DOS, don't forget to
204 ;; customize the following variables: `ps-printer-name', `ps-lpr-command',
205 ;; `ps-lpr-switches' and `ps-spool-config'. See these variables documentation
206 ;; in the code or by typing, for example, C-h v ps-printer-name RET.
212 ;; All dimensions are floats in PostScript points.
213 ;; 1 inch == 2.54 cm == 72 points
214 ;; 1 cm == (/ 1 2.54) inch == (/ 72 2.54) points
216 ;; The variable `ps-paper-type' determines the size of paper ps-print formats
217 ;; for; it should contain one of the symbols: `a4' `a3' `letter' `legal'
218 ;; `letter-small' `tabloid' `ledger' `statement' `executive' `a4small' `b4'
221 ;; If variable `ps-warn-paper-type' is nil, it's *not* given an error if
222 ;; PostScript printer doesn't have a paper with the size indicated by
223 ;; `ps-paper-type', instead it uses the default paper size. If variable
224 ;; `ps-warn-paper-type' is non-nil, it's given an error if PostScript printer
225 ;; doesn't have a paper with the size indicated by `ps-paper-type'. It's used
226 ;; when `ps-spool-config' is set to `setpagedevice' (see section Duplex
227 ;; Printers). The default value is non-nil (it gives an error).
229 ;; The variable `ps-landscape-mode' determines the orientation of the printing
230 ;; on the page: nil means `portrait' mode, non-nil means `landscape' mode.
231 ;; There is no oblique mode yet, though this is easy to do in ps.
233 ;; In landscape mode, the text is NOT scaled: you may print 70 lines in portrait
234 ;; mode and only 50 lines in landscape mode. The margins represent margins in
235 ;; the printed paper: the top margin is the margin between the top of the page
236 ;; and the printed header, whatever the orientation is.
238 ;; The variable `ps-number-of-columns' determines the number of columns both in
239 ;; landscape and portrait mode.
241 ;; - (the standard) one column portrait mode.
242 ;; - (my favorite) two columns landscape mode (which spares trees).
244 ;; - one column landscape mode for files with very long lines.
245 ;; - multi-column portrait or landscape mode.
247 ;; The variable `ps-print-upside-down' determines other orientation for printing
248 ;; page: nil means `normal' printing, non-nil means `upside-down' printing. The
249 ;; default value is nil (`normal' printing).
251 ;; The `upside-down' orientation can be used in portrait or landscape mode.
253 ;; The variable `ps-selected-pages' specifies which pages to print. If it's
254 ;; nil, all pages are printed. If it's a list, the list element may be an
255 ;; integer or a cons cell (FROM . TO) designating FROM page to TO page; any
256 ;; invalid element is ignored, that is, an integer lesser than one or if FROM
257 ;; is greater than TO. Otherwise, it's treated as nil. The default value is
258 ;; nil (print all pages). After ps-print processing `ps-selected-pages' is set
259 ;; to nil. But the latest `ps-selected-pages' is saved in
260 ;; `ps-last-selected-pages' (see it for documentation). So you can restore the
261 ;; latest selected pages by using `ps-last-selected-pages' or by calling
262 ;; `ps-restore-selected-pages' command (see it for documentation).
264 ;; The variable `ps-even-or-odd-pages' specifies if it prints even/odd pages.
268 ;; nil print all pages.
270 ;; even print only even pages.
272 ;; odd print only odd pages.
274 ;; Any other value is treated as nil. The default value is nil.
280 ;; The horizontal layout is determined by the variables
281 ;; `ps-left-margin' `ps-inter-column' `ps-right-margin'
284 ;; ------------------------------------------
286 ;; | lm | text | ic | text | ic | text | rm |
288 ;; ------------------------------------------
290 ;; If `ps-number-of-columns' is 1, `ps-inter-column' is not relevant.
291 ;; Usually, lm = rm > 0 and ic = lm
292 ;; If (ic < 0), the text of adjacent columns can overlap.
298 ;; The vertical layout is determined by the variables
299 ;; `ps-bottom-margin' `ps-top-margin' `ps-header-offset'
302 ;; |--------| |--------|
304 ;; |--------| |--------|
308 ;; |--------| or | text |
312 ;; |--------| |--------|
314 ;; |--------| |--------|
316 ;; If `ps-print-header' is nil, `ps-header-offset' is not relevant.
317 ;; The margins represent margins in the printed paper:
318 ;; the top margin is the margin between the top of the page
319 ;; and the printed header, whatever the orientation is.
325 ;; ps-print can print headers at the top of each column or at the top
326 ;; of each page; the default headers contain the following four items:
327 ;; on the left, the name of the buffer and, if the buffer is visiting
328 ;; a file, the file's directory; on the right, the page number and
329 ;; date of printing. The default headers look something like this:
332 ;; /home/jct/emacs-lisp/ps/new 94/12/31
334 ;; When printing on duplex printers, left and right are reversed so
335 ;; that the page numbers are toward the outside (cf. `ps-spool-duplex').
337 ;; Headers are configurable:
338 ;; To turn them off completely, set `ps-print-header' to nil.
339 ;; To turn off the header's gaudy framing box,
340 ;; set `ps-print-header-frame' to nil.
342 ;; To print only one header at the top of each page,
343 ;; set `ps-print-only-one-header' to t.
345 ;; To switch headers, set `ps-switch-header' to:
347 ;; nil Never switch headers.
349 ;; t Always switch headers.
351 ;; duplex Switch headers only when duplexing is on, that is, when
352 ;; `ps-spool-duplex' is non-nil (see Duplex Printers).
354 ;; Any other value is treated as t. The default value is `duplex'.
356 ;; The font family and size of text in the header are determined
357 ;; by the variables `ps-header-font-family', `ps-header-font-size' and
358 ;; `ps-header-title-font-size' (see below).
360 ;; The variable `ps-header-line-pad' determines the portion of a header
361 ;; title line height to insert between the header frame and the text
362 ;; it contains, both in the vertical and horizontal directions:
363 ;; .5 means half a line.
365 ;; Page numbers are printed in `n/m' format, indicating page n of m pages;
366 ;; to omit the total page count and just print the page number,
367 ;; set `ps-show-n-of-n' to nil.
369 ;; The amount of information in the header can be changed by changing
370 ;; the number of lines. To show less, set `ps-header-lines' to 1, and
371 ;; the header will show only the buffer name and page number. To show
372 ;; more, set `ps-header-lines' to 3, and the header will show the time of
373 ;; printing below the date.
375 ;; To change the content of the headers, change the variables
376 ;; `ps-left-header' and `ps-right-header'.
377 ;; These variables are lists, specifying top-to-bottom the text
378 ;; to display on the left or right side of the header.
379 ;; Each element of the list should be a string or a symbol.
380 ;; Strings are inserted directly into the PostScript arrays,
381 ;; and should contain the PostScript string delimiters '(' and ')'.
383 ;; Symbols in the header format lists can either represent functions
384 ;; or variables. Functions are called, and should return a string to
385 ;; show in the header. Variables should contain strings to display in
386 ;; the header. In either case, function or variable, the PostScript
387 ;; string delimiters are added by ps-print, and should not be part of
388 ;; the returned value.
390 ;; Here's an example: say we want the left header to display the text
396 ;; where we have a function to return "Moe"
398 ;; (defun moe-func ()
401 ;; a variable specifying "Larry"
403 ;; (setq larry-var "Larry")
405 ;; and a literal for "Curly". Here's how `ps-left-header' should be
408 ;; (setq ps-left-header (list 'moe-func 'larry-var "(Curly)"))
410 ;; Note that Curly has the PostScript string delimiters inside his
411 ;; quotes -- those aren't misplaced lisp delimiters!
413 ;; Without them, PostScript would attempt to call the undefined
414 ;; function Curly, which would result in a PostScript error.
416 ;; Since most printers don't report PostScript errors except by
417 ;; aborting the print job, this kind of error can be hard to track down.
419 ;; Consider yourself warned!
422 ;; PostScript Prologue Header
423 ;; --------------------------
425 ;; It is possible to add PostScript prologue header comments besides that
426 ;; ps-print generates by setting the variable `ps-print-prologue-header'.
428 ;; `ps-print-prologue-header' may be a string or a symbol function which returns
429 ;; a string. Note that this string is inserted on PostScript prologue header
430 ;; section which is used to define some document characteristic through
431 ;; PostScript special comments, like "%%Requirements: jog\n".
433 ;; By default `ps-print-prologue-header' is nil.
435 ;; ps-print always inserts the %%Requirements: comment, so if you need to insert
436 ;; more requirements put them first in `ps-print-prologue-header' using the
437 ;; "%%+" comment. For example, if you need to set numcopies to 3 and jog on
438 ;; requirements and set %%LanguageLevel: to 2, do:
440 ;; (setq ps-print-prologue-header
441 ;; "%%+ numcopies(3) jog\n%%LanguageLevel: 2\n")
443 ;; The duplex requirement is inserted by ps-print (see section Duplex Printers).
445 ;; Do not forget to terminate the string with "\n".
447 ;; For more information about PostScript document comments, see:
448 ;; PostScript Language Reference Manual (2nd edition)
449 ;; Adobe Systems Incorporated
450 ;; Appendix G: Document Structuring Conventions -- Version 3.0
452 ;; It is also possible to add an user defined PostScript prologue code before
453 ;; all generated prologue code by setting the variable
454 ;; `ps-user-defined-prologue'.
456 ;; `ps-user-defined-prologue' may be a string or a symbol function which returns
457 ;; a string. Note that this string is inserted after `ps-adobe-tag' and
458 ;; PostScript prologue comments, and before ps-print PostScript prologue code
459 ;; section. That is, this string is inserted after error handler initialization
460 ;; and before ps-print settings.
462 ;; By default `ps-user-defined-prologue' is nil.
464 ;; It's strongly recommended only insert PostScript code and/or comments
465 ;; specific for your printing system particularities. For example, some special
466 ;; initialization that only your printing system needs.
468 ;; Do not insert code for duplex printing, n-up printing or error handler,
469 ;; ps-print handles this in a suitable way.
471 ;; For more information about PostScript, see:
472 ;; PostScript Language Reference Manual (2nd edition)
473 ;; Adobe Systems Incorporated
475 ;; As an example for `ps-user-defined-prologue' setting:
477 ;; ;; Setting for HP PostScript printer
478 ;; (setq ps-user-defined-prologue
479 ;; (concat "<</DeferredMediaSelection true /PageSize [612 792] "
480 ;; "/MediaPosition 2 /MediaType (Plain)>> setpagedevice"))
483 ;; PostScript Error Handler
484 ;; ------------------------
486 ;; ps-print instruments generated PostScript code with an error handler.
488 ;; The variable `ps-error-handler-message' specifies where the error handler
489 ;; message should be sent.
493 ;; none catch the error and *DON'T* send any message.
495 ;; paper catch the error and print on paper the error message.
496 ;; This is the default value.
498 ;; system catch the error and send back the error message to
499 ;; printing system. This is useful only if printing system
500 ;; send back an email reporting the error, or if there is
501 ;; some other alternative way to report back the error from
502 ;; the system to you.
504 ;; paper-and-system catch the error, print on paper the error message and
505 ;; send back the error message to printing system.
507 ;; Any other value is treated as `paper'.
513 ;; If you have a duplex-capable printer (one that prints both sides of the
514 ;; paper), set `ps-spool-duplex' to t.
515 ;; ps-print will insert blank pages to make sure each buffer starts on the
516 ;; correct side of the paper.
518 ;; The variable `ps-spool-config' specifies who is the responsable for setting
519 ;; duplex and page size switches. Valid values are:
521 ;; lpr-switches duplex and page size are configured by `ps-lpr-switches'.
522 ;; Don't forget to set `ps-lpr-switches' to select duplex
523 ;; printing for your printer.
525 ;; setpagedevice duplex and page size are configured by ps-print using the
526 ;; setpagedevice PostScript operator.
528 ;; nil duplex and page size are configured by ps-print *not* using
529 ;; the setpagedevice PostScript operator.
531 ;; Any other value is treated as nil.
533 ;; The default value is `lpr-switches'.
535 ;; WARNING: The setpagedevice PostScript operator affects ghostview utility when
536 ;; viewing file generated using landscape. Also on some printers,
537 ;; setpagedevice affects zebra stripes; on other printers,
538 ;; setpagedevice affects the left margin.
539 ;; Besides all that, if your printer does not have the paper size
540 ;; specified by setpagedevice, your printing will be aborted.
541 ;; So, if you need to use setpagedevice, set `ps-spool-config' to
542 ;; `setpagedevice', generate a test file and send it to your printer;
543 ;; if the printed file isn't ok, set `ps-spool-config' to nil.
545 ;; The variable `ps-spool-tumble' specifies how the page images on opposite
546 ;; sides of a sheet are oriented with respect to each other. If
547 ;; `ps-spool-tumble' is nil, produces output suitable for binding on the left or
548 ;; right. If `ps-spool-tumble' is non-nil, produces output suitable for binding
549 ;; at the top or bottom. It has effect only when `ps-spool-duplex' is non-nil.
550 ;; The default value is nil.
552 ;; Some printer system prints a header page and forces the first page be printed
553 ;; on header page back, when using duplex. If your printer system has this
554 ;; behavior, set variable `ps-banner-page-when-duplexing' to t.
556 ;; When `ps-banner-page-when-duplexing' is non-nil means the very first page is
557 ;; skipped. It's like the very first character of buffer (or region) is ^L
560 ;; The default for `ps-banner-page-when-duplexing' is nil (*don't* skip the very
567 ;; The variable `ps-n-up-printing' specifies the number of pages per sheet of
568 ;; paper. The value specified must be between 1 and 100. The default is 1.
570 ;; NOTE: some PostScript printer may crash printing if `ps-n-up-printing' is set
571 ;; to a high value (for example, 23). If this happens, set a lower value.
573 ;; The variable `ps-n-up-margin' specifies the margin in points between the
574 ;; sheet border and the n-up printing. The default is 1 cm (or 0.3937 inches,
577 ;; If variable `ps-n-up-border-p' is non-nil a border is drawn around each page.
580 ;; The variable `ps-n-up-filling' specifies how page matrix is filled on each
581 ;; sheet of paper. Following are the valid values for `ps-n-up-filling' with a
582 ;; filling example using a 3x4 page matrix:
584 ;; left-top 1 2 3 4 left-bottom 9 10 11 12
586 ;; 9 10 11 12 1 2 3 4
588 ;; right-top 4 3 2 1 right-bottom 12 11 10 9
590 ;; 12 11 10 9 4 3 2 1
592 ;; top-left 1 4 7 10 bottom-left 3 6 9 12
596 ;; top-right 10 7 4 1 bottom-right 12 9 6 3
600 ;; Any other value is treated as left-top.
602 ;; The default value is left-top.
605 ;; Control And 8-bit Characters
606 ;; ----------------------------
608 ;; The variable `ps-print-control-characters' specifies whether you want to see
609 ;; a printable form for control and 8-bit characters, that is, instead of
610 ;; sending, for example, a ^D (\004) to printer, it is sent the string "^D".
612 ;; Valid values for `ps-print-control-characters' are:
614 ;; 8-bit This is the value to use when you want an ASCII encoding of
615 ;; any control or non-ASCII character. Control characters are
616 ;; encoded as "^D", and non-ASCII characters have an
619 ;; control-8-bit This is the value to use when you want an ASCII encoding of
620 ;; any control character, whether it is 7 or 8-bit.
621 ;; European 8-bits accented characters are printed according
624 ;; control Only ASCII control characters have an ASCII encoding.
625 ;; European 8-bits accented characters are printed according
628 ;; nil No ASCII encoding. Any character is printed according the
631 ;; Any other value is treated as nil.
633 ;; The default is `control-8-bit'.
635 ;; Characters TAB, NEWLINE and FORMFEED are always treated by ps-print engine.
638 ;; Printing Multi-byte Buffer
639 ;; --------------------------
641 ;; See ps-mule.el for documentation.
647 ;; The variable `ps-line-number' specifies whether to number each line;
648 ;; non-nil means do so. The default is nil (don't number each line).
650 ;; The variable `ps-line-number-step' specifies the interval that line number is
651 ;; printed. For example, if `ps-line-number-step' is set to 2, the printing
664 ;; integer an integer that specifies the interval that line number is
665 ;; printed. If it's lesser than or equal to zero, it's used the
668 ;; `zebra' specifies that only the line number of the first line in a zebra
669 ;; stripe is to be printed.
671 ;; Any other value is treated as `zebra'.
672 ;; The default value is 1, so each line number is printed.
674 ;; The variable `ps-line-number-start' specifies the starting point in the
675 ;; interval given by `ps-line-number-step'. For example, if
676 ;; `ps-line-number-step' is set to 3 and `ps-line-number-start' is set to 3, the
677 ;; printing will look like:
691 ;; The values for `ps-line-number-start':
693 ;; * If `ps-line-number-step' is an integer, must be between 1 and the value
694 ;; of `ps-line-number-step' inclusive.
696 ;; * If `ps-line-number-step' is set to `zebra', must be between 1 and the
697 ;; value of `ps-zebra-stripe-height' inclusive.
699 ;; The default value is 1, so the line number of the first line of each interval
706 ;; Zebra stripes are a kind of background that appear "underneath" the text
707 ;; and can make the text easier to read. They look like this:
709 ;; XXXXXXXXXXXXXXXXXXXXXXXX
710 ;; XXXXXXXXXXXXXXXXXXXXXXXX
711 ;; XXXXXXXXXXXXXXXXXXXXXXXX
715 ;; XXXXXXXXXXXXXXXXXXXXXXXX
716 ;; XXXXXXXXXXXXXXXXXXXXXXXX
717 ;; XXXXXXXXXXXXXXXXXXXXXXXX
719 ;; The blocks of X's represent rectangles filled with a light gray color.
720 ;; Each rectangle extends all the way across the page.
722 ;; The height, in lines, of each rectangle is controlled by
723 ;; the variable `ps-zebra-stripe-height', which is 3 by default.
724 ;; The distance between stripes equals the height of a stripe.
726 ;; The variable `ps-zebra-stripes' controls whether to print zebra stripes.
727 ;; Non-nil means yes, nil means no. The default is nil.
729 ;; The variable `ps-zebra-color' controls the zebra stripes gray scale or RGB
730 ;; color. It should be a float number between 0.0 (black color) and 1.0 (white
731 ;; color), a string which is a color name, or a list of 3 numbers which
732 ;; corresponds to the Red Green Blue color scale.
733 ;; The default is 0.95 (or "gray95", or '(0.95 0.95 0.95)).
735 ;; The variable `ps-zebra-stripe-follow' specifies if zebra stripe should
736 ;; continue on next page or restart on each page. If `ps-zebra-stripe-follow'
737 ;; is nil, zebra stripe is restarted on each page. If `ps-zebra-stripe-follow'
738 ;; is non-nil, zebra stripe continues on next page. Visually, we have:
740 ;; `ps-zebra-stripe-follow' `ps-zebra-stripe-follow'
742 ;; Current Page ------------------------ ------------------------
743 ;; 1 XXXXXXXXXXXXXXXXXXXXX 1 XXXXXXXXXXXXXXXXXXXXX
744 ;; 2 XXXXXXXXXXXXXXXXXXXXX 2 XXXXXXXXXXXXXXXXXXXXX
745 ;; 3 XXXXXXXXXXXXXXXXXXXXX 3 XXXXXXXXXXXXXXXXXXXXX
749 ;; 7 XXXXXXXXXXXXXXXXXXXXX 7 XXXXXXXXXXXXXXXXXXXXX
750 ;; 8 XXXXXXXXXXXXXXXXXXXXX 8 XXXXXXXXXXXXXXXXXXXXX
751 ;; ------------------------ ------------------------
752 ;; Next Page ------------------------ ------------------------
753 ;; 9 XXXXXXXXXXXXXXXXXXXXX 9 XXXXXXXXXXXXXXXXXXXXX
754 ;; 10 XXXXXXXXXXXXXXXXXXXXX 10
755 ;; 11 XXXXXXXXXXXXXXXXXXXXX 11
757 ;; 13 13 XXXXXXXXXXXXXXXXXXXXX
758 ;; 14 14 XXXXXXXXXXXXXXXXXXXXX
759 ;; 15 XXXXXXXXXXXXXXXXXXXXX 15 XXXXXXXXXXXXXXXXXXXXX
760 ;; 16 XXXXXXXXXXXXXXXXXXXXX 16
761 ;; ------------------------ ------------------------
763 ;; See also section How Ps-Print Has A Text And/Or Image On Background.
769 ;; ps-print has the following hook variables:
772 ;; It is evaluated once before any printing process. This is the right
773 ;; place to initialize ps-print global data.
774 ;; For an example, see section Adding a New Font Family.
776 ;; `ps-print-begin-sheet-hook'
777 ;; It is evaluated on each beginning of sheet of paper.
778 ;; If `ps-n-up-printing' is equal to 1, `ps-print-begin-page-hook' is never
781 ;; `ps-print-begin-page-hook'
782 ;; It is evaluated on each beginning of page, except in the beginning
783 ;; of page that `ps-print-begin-sheet-hook' is evaluated.
785 ;; `ps-print-begin-column-hook'
786 ;; It is evaluated on each beginning of column, except in the beginning
787 ;; of column that `ps-print-begin-page-hook' is evaluated or that
788 ;; `ps-print-begin-sheet-hook' is evaluated.
794 ;; ps-print now knows rather precisely some fonts: the variable
795 ;; `ps-font-info-database' contains information for a list of font families
796 ;; (currently mainly `Courier' `Helvetica' `Times' `Palatino' `Helvetica-Narrow'
797 ;; `NewCenturySchlbk'). Each font family contains the font names for standard,
798 ;; bold, italic and bold-italic characters, a reference size (usually 10) and
799 ;; the corresponding line height, width of a space and average character width.
801 ;; The variable `ps-font-family' determines which font family is to be used for
802 ;; ordinary text. If its value does not correspond to a known font family, an
803 ;; error message is printed into the `*Messages*' buffer, which lists the
804 ;; currently available font families.
806 ;; The variable `ps-font-size' determines the size (in points) of the font for
807 ;; ordinary text, when generating PostScript. Its value is a float or a cons of
808 ;; floats which has the following form:
810 ;; (LANDSCAPE-SIZE . PORTRAIT-SIZE)
812 ;; Similarly, the variable `ps-header-font-family' determines which font family
813 ;; is to be used for text in the header.
815 ;; The variable `ps-header-font-size' determines the font size, in points, for
816 ;; text in the header (similar to `ps-font-size').
818 ;; The variable `ps-header-title-font-size' determines the font size, in points,
819 ;; for the top line of text in the header (similar to `ps-font-size').
822 ;; Adding a New Font Family
823 ;; ------------------------
825 ;; To use a new font family, you MUST first teach ps-print
826 ;; this font, i.e., add its information to `ps-font-info-database',
827 ;; otherwise ps-print cannot correctly place line and page breaks.
829 ;; For example, assuming `Helvetica' is unknown,
830 ;; you first need to do the following ONLY ONCE:
832 ;; - create a new buffer
833 ;; - generate the PostScript image to a file (C-u M-x ps-print-buffer)
834 ;; - open this file and find the line:
835 ;; `% 3 cm 20 cm moveto 10/Courier ReportFontInfo showpage'
836 ;; - delete the leading `%' (which is the PostScript comment character)
837 ;; - replace in this line `Courier' by the new font (say `Helvetica')
839 ;; `3 cm 20 cm moveto 10/Helvetica ReportFontInfo showpage'
840 ;; - send this file to the printer (or to ghostscript).
841 ;; You should read the following on the output page:
843 ;; For Helvetica 10 point, the line height is 11.56, the space width is 2.78
844 ;; and a crude estimate of average character width is 5.09243
846 ;; - Add these values to the `ps-font-info-database':
847 ;; (setq ps-font-info-database
849 ;; '((Helvetica ; the family key
850 ;; (fonts (normal . "Helvetica")
851 ;; (bold . "Helvetica-Bold")
852 ;; (italic . "Helvetica-Oblique")
853 ;; (bold-italic . "Helvetica-BoldOblique"))
855 ;; (line-height . 11.56)
856 ;; (space-width . 2.78)
857 ;; (avg-char-width . 5.09243)))
858 ;; ps-font-info-database))
859 ;; - Now you can use this font family with any size:
860 ;; (setq ps-font-family 'Helvetica)
861 ;; - if you want to use this family in another emacs session, you must
862 ;; put into your `~/.emacs':
863 ;; (require 'ps-print)
864 ;; (setq ps-font-info-database (append ...)))
865 ;; if you don't want to load ps-print, you have to copy the whole value:
866 ;; (setq ps-font-info-database '(<your stuff> <the standard stuff>))
867 ;; or, use `ps-print-hook' (see section Hooks):
868 ;; (add-hook 'ps-print-hook
870 ;; (or (assq 'Helvetica ps-font-info-database)
871 ;; (setq ps-font-info-database (append ...)))))
873 ;; You can create new `mixed' font families like:
875 ;; (fonts (normal . "Courier-Bold")
876 ;; (bold . "Helvetica")
877 ;; (italic . "Zapf-Chancery-MediumItalic")
878 ;; (bold-italic . "NewCenturySchlbk-BoldItalic")
879 ;; (w3-table-hack-x-face . "LineDrawNormal"))
881 ;; (line-height . 10.55)
882 ;; (space-width . 6.0)
883 ;; (avg-char-width . 6.0))
885 ;; Now you can use your new font family with any size:
886 ;; (setq ps-font-family 'my-mixed-family)
888 ;; Note that on above example the `w3-table-hack-x-face' entry refers to
889 ;; a face symbol, so when printing this face it'll be used the font
890 ;; `LineDrawNormal'. If the face `w3-table-hack-x-face' is remapped to
891 ;; use bold and/or italic attribute, the corresponding entry (bold, italic
892 ;; or bold-italic) will be used instead of `w3-table-hack-x-face' entry.
894 ;; Note also that the font family entry order is irrelevant, so the above
895 ;; example could also be written:
898 ;; (fonts (w3-table-hack-x-face . "LineDrawNormal")
899 ;; (bold . "Helvetica")
900 ;; (bold-italic . "NewCenturySchlbk-BoldItalic")
901 ;; (italic . "Zapf-Chancery-MediumItalic")
902 ;; (normal . "Courier-Bold"))
903 ;; (avg-char-width . 6.0)
904 ;; (space-width . 6.0)
905 ;; (line-height . 10.55))
907 ;; Despite the note above, it is recommended that some convention about
908 ;; entry order be used.
910 ;; You can get information on all the fonts resident in YOUR printer
911 ;; by uncommenting the line:
912 ;; % 3 cm 20 cm moveto ReportAllFontInfo showpage
914 ;; The PostScript file should be sent to YOUR PostScript printer.
915 ;; If you send it to ghostscript or to another PostScript printer,
916 ;; you may get slightly different results.
917 ;; Anyway, as ghostscript fonts are autoload, you won't get much font info.
919 ;; Note also that ps-print DOESN'T download any font to your printer, instead
920 ;; it uses the fonts resident in your printer.
923 ;; How Ps-Print Deals With Faces
924 ;; -----------------------------
926 ;; The ps-print-*-with-faces commands attempt to determine which faces
927 ;; should be printed in bold or italic, but their guesses aren't
928 ;; always right. For example, you might want to map colors into faces
929 ;; so that blue faces print in bold, and red faces in italic.
931 ;; It is possible to force ps-print to consider specific faces bold,
932 ;; italic or underline, no matter what font they are displayed in, by setting
933 ;; the variables `ps-bold-faces', `ps-italic-faces' and `ps-underlined-faces'.
934 ;; These variables contain lists of faces that ps-print should consider bold,
935 ;; italic or underline; to set them, put code like the following into your
938 ;; (setq ps-bold-faces '(my-blue-face))
939 ;; (setq ps-italic-faces '(my-red-face))
940 ;; (setq ps-underlined-faces '(my-green-face))
942 ;; Faces like bold-italic that are both bold and italic should go in
945 ;; ps-print keeps internal lists of which fonts are bold and which are
946 ;; italic; these lists are built the first time you invoke ps-print.
947 ;; For the sake of efficiency, the lists are built only once; the same
948 ;; lists are referred in later invocations of ps-print.
950 ;; Because these lists are built only once, it's possible for them to
951 ;; get out of sync, if a face changes, or if new faces are added. To
952 ;; get the lists back in sync, you can set the variable
953 ;; `ps-build-face-reference' to t, and the lists will be rebuilt the
954 ;; next time ps-print is invoked. If you need that the lists always be
955 ;; rebuilt when ps-print is invoked, set the variable
956 ;; `ps-always-build-face-reference' to t.
958 ;; If you need to print without worrying about face background color, set the
959 ;; variable `ps-use-face-background' which specifies if face background should
960 ;; be used. Valid values are:
962 ;; t always use face background color.
963 ;; nil never use face background color.
964 ;; (face...) list of faces whose background color will be used.
966 ;; Any other value will be treated as t.
967 ;; The default value is t.
970 ;; How Ps-Print Deals With Color
971 ;; -----------------------------
973 ;; ps-print detects faces with foreground and background colors
974 ;; defined and embeds color information in the PostScript image.
975 ;; The default foreground and background colors are defined by the
976 ;; variables `ps-default-fg' and `ps-default-bg'.
977 ;; On black-and-white printers, colors are displayed in gray scale.
978 ;; To turn off color output, set `ps-print-color-p' to nil.
981 ;; How Ps-Print Maps Faces
982 ;; -----------------------
984 ;; As ps-print uses PostScript to print buffers, it is possible to have
985 ;; other attributes associated with faces. So the new attributes used
988 ;; strikeout - like underline, but the line is in middle of text.
989 ;; overline - like underline, but the line is over the text.
990 ;; shadow - text will have a shadow.
991 ;; box - text will be surrounded by a box.
992 ;; outline - print characters as hollow outlines.
994 ;; See the documentation for `ps-extend-face'.
996 ;; Let's, for example, remap `font-lock-keyword-face' to another foreground
997 ;; color and bold attribute:
999 ;; (ps-extend-face '(font-lock-keyword-face "RoyalBlue" nil bold) 'MERGE)
1001 ;; If you want to use a new face, define it first with `defface',
1002 ;; and then call `ps-extend-face' to specify how to print it.
1005 ;; How Ps-Print Has A Text And/Or Image On Background
1006 ;; --------------------------------------------------
1008 ;; ps-print can print texts and/or EPS PostScript images on background; it is
1009 ;; possible to define the following text attributes: font name, font size,
1010 ;; initial position, angle, gray scale and pages to print.
1012 ;; It has the following EPS PostScript images attributes: file name containing
1013 ;; the image, initial position, X and Y scales, angle and pages to print.
1015 ;; See documentation for `ps-print-background-text' and
1016 ;; `ps-print-background-image'.
1018 ;; For example, if we wish to print text "preliminary" on all pages and text
1019 ;; "special" on page 5 and from page 11 to page 17, we could specify:
1021 ;; (setq ps-print-background-text
1022 ;; '(("preliminary")
1024 ;; "LeftMargin" "BottomMargin PrintHeight add" ; X and Y position
1025 ;; ; (upper left corner)
1027 ;; "PrintHeight neg PrintPageWidth atan" ; angle
1028 ;; 5 (11 . 17)) ; page list
1031 ;; Similarly, we could print image "~/images/EPS-image1.ps" on all pages and
1032 ;; image "~/images/EPS-image2.ps" on page 5 and from page 11 to page 17, we
1035 ;; (setq ps-print-background-image
1036 ;; '(("~/images/EPS-image1.ps"
1037 ;; "LeftMargin" "BottomMargin") ; X and Y position (lower left corner)
1038 ;; ("~/images/EPS-image2.ps"
1039 ;; "LeftMargin" "BottomMargin PrintHeight 2 div add" ; X and Y position
1040 ;; ; (upper left corner)
1042 ;; 5 (11 . 17)) ; page list
1045 ;; If it is not possible to read (or does not exist) an image file, that file
1048 ;; The printing order is:
1050 ;; 1. Print background color
1051 ;; 2. Print zebra stripes
1052 ;; 3. Print background texts that it should be on all pages
1053 ;; 4. Print background images that it should be on all pages
1054 ;; 5. Print background texts only for current page (if any)
1055 ;; 6. Print background images only for current page (if any)
1057 ;; 8. Print buffer text (with faces, if specified) and line number
1063 ;; Some tools are provided to help you customize your font setup.
1065 ;; `ps-setup' returns (some part of) the current setup.
1067 ;; To avoid wrapping too many lines, you may want to adjust the
1068 ;; left and right margins and the font size. On UN*X systems, do:
1069 ;; pr -t file | awk '{printf "%3d %s\n", length($0), $0}' | sort -r | head
1070 ;; to determine the longest lines of your file.
1071 ;; Then, the command `ps-line-lengths' will give you the correspondence
1072 ;; between a line length (number of characters) and the maximum font
1073 ;; size which doesn't wrap such a line with the current ps-print setup.
1075 ;; The commands `ps-nb-pages-buffer' and `ps-nb-pages-region' display
1076 ;; the correspondence between a number of pages and the maximum font
1077 ;; size which allow the number of lines of the current buffer or of
1078 ;; its current region to fit in this number of pages.
1080 ;; NOTE: line folding is not taken into account in this process and could
1081 ;; change the results.
1083 ;; The command `ps-print-customize' activates a customization buffer for
1084 ;; ps-print options.
1087 ;; New since version 1.5
1088 ;; ---------------------
1090 ;; Color output capability.
1091 ;; Automatic detection of font attributes (bold, italic).
1092 ;; Configurable headers with page numbers.
1094 ;; Support for different paper sizes.
1095 ;; Better conformance to PostScript Document Structure Conventions.
1098 ;; New since version 2.8
1099 ;; ---------------------
1101 ;; [vinicius] Vinicius Jose Latorre <vinicius@cpqd.com.br>
1104 ;; `ps-even-or-odd-pages'
1107 ;; `ps-manual-feed', `ps-warn-paper-type', `ps-print-upside-down',
1108 ;; `ps-selected-pages', `ps-last-selected-pages',
1109 ;; `ps-restore-selected-pages', `ps-switch-header',
1110 ;; `ps-line-number-step', `ps-line-number-start',
1111 ;; `ps-zebra-stripe-follow' and `ps-use-face-background'.
1114 ;; PostScript error handler.
1115 ;; `ps-user-defined-prologue' and `ps-error-handler-message'.
1118 ;; `ps-print-customize'.
1121 ;; Better customization.
1122 ;; `ps-banner-page-when-duplexing' and `ps-zebra-color'.
1126 ;; Hook: `ps-print-begin-sheet-hook'.
1128 ;; [keinichi] 19990509 Kein'ichi Handa <handa@etl.go.jp>
1130 ;; `ps-print-region-function'
1132 ;; [vinicius] Vinicius Jose Latorre <vinicius@cpqd.com.br>
1135 ;; PostScript tumble and setpagedevice.
1138 ;; PostScript prologue header comment insertion.
1139 ;; Skip invisible text better.
1141 ;; [keinichi] 19980819 Kein'ichi Handa <handa@etl.go.jp>
1143 ;; Multi-byte buffer handling.
1145 ;; [vinicius] Vinicius Jose Latorre <vinicius@cpqd.com.br>
1148 ;; Skip invisible text.
1151 ;; Hooks: `ps-print-hook', `ps-print-begin-page-hook' and
1152 ;; `ps-print-begin-column-hook'.
1153 ;; Put one header per page over the columns.
1154 ;; Better database font management.
1155 ;; Better control characters handling.
1158 ;; Dynamic evaluation at print time of `ps-lpr-switches'.
1159 ;; Handle control characters.
1161 ;; New face attributes.
1164 ;; Text and/or image on background.
1166 ;; [jack] 19960517 Jacques Duthen <duthen@cegelec-red.fr>
1168 ;; Font family and float size for text and header.
1170 ;; Multiple columns.
1171 ;; Tools for page setup.
1174 ;; Known bugs and limitations of ps-print
1175 ;; --------------------------------------
1177 ;; Although color printing will work in XEmacs 19.12, it doesn't work
1178 ;; well; in particular, bold or italic fonts don't print in the right
1179 ;; background color.
1181 ;; Invisible properties aren't correctly ignored in XEmacs 19.12.
1183 ;; Automatic font-attribute detection doesn't work well, especially
1184 ;; with hilit19 and older versions of get-create-face. Users having
1185 ;; problems with auto-font detection should use the lists
1186 ;; `ps-italic-faces', `ps-bold-faces' and `ps-underlined-faces' and/or
1187 ;; turn off automatic detection by setting `ps-auto-font-detect' to nil.
1189 ;; Automatic font-attribute detection doesn't work with XEmacs 19.12
1190 ;; in tty mode; use the lists `ps-italic-faces', `ps-bold-faces' and
1191 ;; `ps-underlined-faces' instead.
1193 ;; Still too slow; could use some hand-optimization.
1195 ;; Default background color isn't working.
1197 ;; Faces are always treated as opaque.
1199 ;; Epoch and Emacs 19 not supported. At all.
1201 ;; Fixed-pitch fonts work better for line folding, but are not required.
1203 ;; `ps-nb-pages-buffer' and `ps-nb-pages-region' don't take care
1204 ;; of folding lines.
1210 ;; Avoid page break inside a paragraph.
1211 ;; Add `ps-non-bold-faces' and `ps-non-italic-faces' (should be easy).
1212 ;; Improve the memory management for big files (hard?).
1213 ;; `ps-nb-pages-buffer' and `ps-nb-pages-region' should take care
1214 ;; of folding lines.
1220 ;; Thanks to Gord Wait <Gord_Wait@spectrumsignal.com> for
1221 ;; `ps-user-defined-prologue' example setting for HP PostScript printer.
1223 ;; Thanks to Paul Furnanz <pfurnanz@synopsys.com> for XEmacs compatibility
1224 ;; suggestion for `ps-postscript-code-directory' variable.
1226 ;; Thanks to David X Callaway <dxc@xprt.net> for helping debugging PostScript
1227 ;; level 1 compatibility.
1229 ;; Thanks to Colin Marquardt <colin.marquardt@usa.alcatel.com> for upside-down,
1230 ;; line number step, line number start and zebra stripe follow suggestions, and
1231 ;; for XEmacs beta-tests.
1233 ;; Thanks to Klaus Berndl <klaus.berndl@sdm.de> for user defined PostScript
1234 ;; prologue code suggestion and for odd/even printing suggestion.
1236 ;; Thanks to Kein'ichi Handa <handa@etl.go.jp> for multi-byte buffer handling.
1238 ;; Thanks to Matthew O Persico <Matthew.Persico@lazard.com> for line number on
1241 ;; Thanks to Theodore Jump <tjump@cais.com> for adjust PostScript code order on
1244 ;; Thanks to Roland Ducournau <ducour@lirmm.fr> for
1245 ;; `ps-print-control-characters' variable documentation.
1247 ;; Thanks to Marcus G Daniels <marcus@cathcart.sysc.pdx.edu> for a better
1248 ;; database font management.
1250 ;; Thanks to Martin Boyer <gamin@videotron.ca> for some ideas on putting one
1251 ;; header per page over the columns and correct line numbers when printing a
1254 ;; Thanks to Steven L Baur <steve@miranova.com> for dynamic evaluation at
1255 ;; print time of `ps-lpr-switches'.
1257 ;; Thanks to Kevin Rodgers <kevinr@ihs.com> for handling control characters
1258 ;; (his code was severely modified, but the main idea was kept).
1260 ;; Thanks to some suggestions on:
1261 ;; * Face color map: Marco Melgazzi <marco@techie.com>
1262 ;; * XEmacs compatibility: William J. Henney <will@astrosmo.unam.mx>
1263 ;; * Check `ps-paper-type': Sudhakar Frederick <sfrederi@asc.corp.mot.com>
1265 ;; Thanks to Jacques Duthen <duthen@cegelec-red.fr> (Jack) for the 3.4 version
1266 ;; I started from. [vinicius]
1268 ;; Thanks to Jim Thompson <?@?> for the 2.8 version I started from.
1271 ;; Thanks to Kevin Rodgers <kevinr@ihs.com> for adding support for
1272 ;; color and the invisible property.
1274 ;; Thanks to Avishai Yacobi, avishaiy@mcil.comm.mot.com, for writing
1275 ;; the initial port to Emacs 19. His code is no longer part of
1276 ;; ps-print, but his work is still appreciated.
1278 ;; Thanks to Remi Houdaille and Michel Train, michel@metasoft.fdn.org,
1279 ;; for adding underline support. Their code also is no longer part of
1280 ;; ps-print, but their efforts are not forgotten.
1282 ;; Thanks also to all of you who mailed code to add features to
1283 ;; ps-print; although I didn't use your code, I still appreciate your
1284 ;; sharing it with me.
1286 ;; Thanks to all who mailed comments, encouragement, and criticism.
1287 ;; Thanks also to all who responded to my survey; I had too many
1288 ;; responses to reply to them all, but I greatly appreciate your
1292 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1296 (unless (featurep 'lisp-float-type
)
1297 (error "`ps-print' requires floating point support"))
1300 ;; For Emacs 20.2 and the earlier version.
1302 (or (fboundp 'set-buffer-multibyte
)
1303 (defun set-buffer-multibyte (arg)
1304 (setq enable-multibyte-characters arg
)))
1306 (or (fboundp 'string-as-unibyte
)
1307 (defun string-as-unibyte (arg) arg
))
1309 (or (fboundp 'string-as-multibyte
)
1310 (defun string-as-multibyte (arg) arg
))
1312 (or (fboundp 'char-charset
)
1313 (defun char-charset (arg) 'ascii
))
1315 (or (fboundp 'charset-after
)
1316 (defun charset-after (&optional arg
)
1317 (char-charset (char-after arg
))))
1321 (or (fboundp 'line-beginning-position
)
1322 (defun line-beginning-position (&optional n
)
1324 (and n
(/= n
1) (forward-line (1- n
)))
1329 ;; to avoid compilation gripes
1331 (mapcar #'(lambda (sym)
1333 (defalias sym
'ignore
)))
1336 color-instance-rgb-components
1344 extent-start-position
1347 font-instance-properties
1352 (defconst ps-windows-system
1353 (memq system-type
'(emx win32 w32 mswindows ms-dos windows-nt
)))
1354 (defconst ps-lp-system
1355 (memq system-type
'(usq-unix-v dgux hpux irix
)))
1358 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1362 ;;; Interface to the command system
1364 (defgroup postscript nil
1369 (defgroup ps-print nil
1370 "PostScript generator for Emacs 19"
1375 (defgroup ps-print-horizontal nil
1376 "Horizontal page layout"
1381 (defgroup ps-print-vertical nil
1382 "Vertical page layout"
1387 (defgroup ps-print-headers nil
1393 (defgroup ps-print-font nil
1394 "Fonts customization"
1399 (defgroup ps-print-color nil
1400 "Color customization"
1405 (defgroup ps-print-face nil
1406 "Faces customization"
1412 (defgroup ps-print-n-up nil
1413 "N-up customization"
1418 (defgroup ps-print-zebra nil
1419 "Zebra customization"
1424 (defgroup ps-print-background nil
1425 "Background customization"
1430 (defgroup ps-print-printer nil
1431 "Printer customization"
1436 (defgroup ps-print-page nil
1437 "Page customization"
1442 (defgroup ps-print-miscellany nil
1443 "Miscellany customization"
1449 (defcustom ps-error-handler-message
'paper
1450 "*Specify where the error handler message should be sent.
1454 `none' catch the error and *DON'T* send any message.
1456 `paper' catch the error and print on paper the error message.
1458 `system' catch the error and send back the error message to
1459 printing system. This is useful only if printing system
1460 send back an email reporting the error, or if there is
1461 some other alternative way to report back the error from
1464 `paper-and-system' catch the error, print on paper the error message and
1465 send back the error message to printing system.
1467 Any other value is treated as `paper'."
1468 :type
'(choice :menu-tag
"Error Handler Message"
1469 :tag
"Error Handler Message"
1470 (const none
) (const paper
)
1471 (const system
) (const paper-and-system
))
1472 :group
'ps-print-miscellany
)
1474 (defcustom ps-user-defined-prologue nil
1475 "*User defined PostScript prologue code inserted before all prologue code.
1477 `ps-user-defined-prologue' may be a string or a symbol function which returns a
1478 string. Note that this string is inserted after `ps-adobe-tag' and PostScript
1479 prologue comments, and before ps-print PostScript prologue code section. That
1480 is, this string is inserted after error handler initialization and before
1483 It's strongly recommended only insert PostScript code and/or comments specific
1484 for your printing system particularities. For example, some special
1485 initialization that only your printing system needs.
1487 Do not insert code for duplex printing, n-up printing or error handler, ps-print
1488 handles this in a suitable way.
1490 For more information about PostScript, see:
1491 PostScript Language Reference Manual (2nd edition)
1492 Adobe Systems Incorporated
1494 As an example for `ps-user-defined-prologue' setting:
1496 ;; Setting for HP PostScript printer
1497 (setq ps-user-defined-prologue
1498 (concat \"<</DeferredMediaSelection true /PageSize [612 792] \"
1499 \"/MediaPosition 2 /MediaType (Plain)>> setpagedevice\"))
1501 :type
'(choice :menu-tag
"User Defined Prologue"
1502 :tag
"User Defined Prologue"
1503 (const :tag
"none" nil
) string symbol
)
1504 :group
'ps-print-miscellany
)
1506 (defcustom ps-print-prologue-header nil
1507 "*PostScript prologue header comments besides that ps-print generates.
1509 `ps-print-prologue-header' may be a string or a symbol function which
1510 returns a string. Note that this string is inserted on PostScript prologue
1511 header section which is used to define some document characteristic through
1512 PostScript special comments, like \"%%Requirements: jog\\n\".
1514 ps-print always inserts the %%Requirements: comment, so if you need to insert
1515 more requirements put them first in `ps-print-prologue-header' using the
1516 \"%%+\" comment. For example, if you need to set numcopies to 3 and jog on
1517 requirements and set %%LanguageLevel: to 2, do:
1519 (setq ps-print-prologue-header
1520 \"%%+ numcopies(3) jog\\n%%LanguageLevel: 2\\n\")
1522 The duplex requirement is inserted by ps-print (see `ps-spool-duplex').
1524 Do not forget to terminate the string with \"\\n\".
1526 For more information about PostScript document comments, see:
1527 PostScript Language Reference Manual (2nd edition)
1528 Adobe Systems Incorporated
1529 Appendix G: Document Structuring Conventions -- Version 3.0"
1530 :type
'(choice :menu-tag
"Prologue Header"
1531 :tag
"Prologue Header"
1532 (const :tag
"none" nil
) string symbol
)
1533 :group
'ps-print-miscellany
)
1535 (defcustom ps-printer-name
(and (boundp 'printer-name
)
1537 "*The name of a local printer for printing PostScript files.
1539 On Unix-like systems, a string value should be a name understood by
1540 lpr's -P option; a value of nil means use the value of `printer-name'
1541 instead. Any other value will be ignored.
1543 On MS-DOS and MS-Windows systems, a string value is taken as the name of
1544 the printer device or port to which PostScript files are written,
1545 provided `ps-lpr-command' is \"\". By default it is the same as
1546 `printer-name'; typical non-default settings would be \"LPT1\" to
1547 \"LPT3\" for parallel printers, or \"COM1\" to \"COM4\" or \"AUX\" for
1548 serial printers, or \"//hostname/printer\" for a shared network printer.
1549 You can also set it to a name of a file, in which case the output gets
1550 appended to that file. \(Note that `ps-print' package already has
1551 facilities for printing to a file, so you might as well use them instead
1552 of changing the setting of this variable.\) If you want to silently
1553 discard the printed output, set this to \"NUL\"."
1554 :type
'(choice :menu-tag
"Printer Name"
1556 (const :tag
"Same as printer-name" nil
)
1557 (file :tag
"Print to file")
1558 (string :tag
"Pipe to ps-lpr-command"))
1559 :group
'ps-print-printer
)
1561 (defcustom ps-lpr-command lpr-command
1562 "*Name of program for printing a PostScript file.
1564 On MS-DOS and MS-Windows systems, if the value is an empty string then
1565 Emacs will write directly to the printer port named by `ps-printer-name'.
1566 The programs `print' and `nprint' (the standard print programs on Windows
1567 NT and Novell Netware respectively) are handled specially, using
1568 `ps-printer-name' as the destination for output; any other program is
1569 treated like `lpr' except that an explicit filename is given as the last
1572 :group
'ps-print-printer
)
1574 (defcustom ps-lpr-switches lpr-switches
1575 "*A list of extra switches to pass to `ps-lpr-command'."
1576 :type
'(repeat :tag
"PostScript lpr Switches"
1577 (choice string symbol
(repeat sexp
)))
1578 :group
'ps-print-printer
)
1580 (defcustom ps-print-region-function nil
1581 "*Specify a function to print the region on a PostScript printer.
1582 See definition of `call-process-region' for calling conventions. The fourth and
1583 the sixth arguments are both nil."
1585 :group
'ps-print-printer
)
1587 (defcustom ps-manual-feed nil
1588 "*Non-nil means the printer will manually feed paper.
1590 If it's nil, automatic feeding takes place."
1592 :group
'ps-print-printer
)
1596 ;; All page dimensions are in PostScript points.
1597 ;; 1 inch == 2.54 cm == 72 points
1598 ;; 1 cm == (/ 1 2.54) inch == (/ 72 2.54) points
1600 ;; Letter 8.5 inch x 11.0 inch
1601 ;; Legal 8.5 inch x 14.0 inch
1602 ;; A4 8.26 inch x 11.69 inch = 21.0 cm x 29.7 cm
1604 ;; LetterSmall 7.68 inch x 10.16 inch
1605 ;; Tabloid 11.0 inch x 17.0 inch
1606 ;; Ledger 17.0 inch x 11.0 inch
1607 ;; Statement 5.5 inch x 8.5 inch
1608 ;; Executive 7.5 inch x 10.0 inch
1609 ;; A3 11.69 inch x 16.5 inch = 29.7 cm x 42.0 cm
1610 ;; A4Small 7.47 inch x 10.85 inch
1611 ;; B4 10.125 inch x 14.33 inch
1612 ;; B5 7.16 inch x 10.125 inch
1614 (defcustom ps-page-dimensions-database
1615 (list (list 'a4
(/ (* 72 21.0) 2.54) (/ (* 72 29.7) 2.54) "A4")
1616 (list 'a3
(/ (* 72 29.7) 2.54) (/ (* 72 42.0) 2.54) "A3")
1617 (list 'letter
(* 72 8.5) (* 72 11.0) "Letter")
1618 (list 'legal
(* 72 8.5) (* 72 14.0) "Legal")
1619 (list 'letter-small
(* 72 7.68) (* 72 10.16) "LetterSmall")
1620 (list 'tabloid
(* 72 11.0) (* 72 17.0) "Tabloid")
1621 (list 'ledger
(* 72 17.0) (* 72 11.0) "Ledger")
1622 (list 'statement
(* 72 5.5) (* 72 8.5) "Statement")
1623 (list 'executive
(* 72 7.5) (* 72 10.0) "Executive")
1624 (list 'a4small
(* 72 7.47) (* 72 10.85) "A4Small")
1625 (list 'b4
(* 72 10.125) (* 72 14.33) "B4")
1626 (list 'b5
(* 72 7.16) (* 72 10.125) "B5"))
1627 "*List associating a symbolic paper type to its width, height and doc media.
1628 See `ps-paper-type'."
1629 :type
'(repeat (list :tag
"Paper Type"
1630 (symbol :tag
"Name")
1631 (number :tag
"Width")
1632 (number :tag
"Height")
1633 (string :tag
"Media")))
1634 :group
'ps-print-page
)
1637 (defcustom ps-paper-type
'letter
1638 "*Specify the size of paper to format for.
1639 Should be one of the paper types defined in `ps-page-dimensions-database', for
1640 example `letter', `legal' or `a4'."
1641 :type
'(symbol :validate
(lambda (wid)
1642 (if (assq (widget-value wid
)
1643 ps-page-dimensions-database
)
1645 (widget-put wid
:error
"Unknown paper size")
1647 :group
'ps-print-page
)
1649 (defcustom ps-warn-paper-type t
1650 "*Non-nil means give an error if paper size is not equal to `ps-paper-type'.
1652 It's used when `ps-spool-config' is set to `setpagedevice'."
1654 :group
'ps-print-page
)
1656 (defcustom ps-landscape-mode nil
1657 "*Non-nil means print in landscape mode."
1659 :group
'ps-print-page
)
1661 (defcustom ps-print-upside-down nil
1662 "*Non-nil means print upside-down."
1664 :group
'ps-print-page
)
1666 (defcustom ps-selected-pages nil
1667 "*Specify which pages to print.
1669 If it's nil, all pages are printed.
1671 If it's a list, the list element may be an integer or a cons cell (FROM . TO)
1672 designating FROM page to TO page; any invalid element is ignored, that is, an
1673 integer lesser than one or if FROM is greater than TO.
1675 Otherwise, it's treated as nil.
1677 After ps-print processing `ps-selected-pages' is set to nil. But the latest
1678 `ps-selected-pages' is saved in `ps-last-selected-pages' (see it for
1679 documentation). So you can restore the latest selected pages by using
1680 `ps-last-selected-pages' or by calling `ps-restore-selected-pages' command (see
1681 it for documentation)."
1682 :type
'(repeat :tag
"Selected Pages"
1684 (integer :tag
"Number")
1686 (integer :tag
"From")
1687 (integer :tag
"To"))))
1688 :group
'ps-print-page
)
1690 (defcustom ps-even-or-odd-pages nil
1691 "*Specify if it prints even/odd pages.
1695 nil print all pages.
1697 `even' print only even pages.
1699 `odd' print only odd pages.
1701 Any other value is treated as nil."
1702 :type
'(choice :menu-tag
"Print Even/Odd Pages"
1703 :tag
"Print Even/Odd Pages"
1704 (const :tag
"All Pages" nil
)
1705 (const :tag
"Only Even Pages" even
)
1706 (const :tag
"Only Odd Pages" odd
))
1707 :group
'ps-print-page
)
1709 (defcustom ps-print-control-characters
'control-8-bit
1710 "*Specify the printable form for control and 8-bit characters.
1711 That is, instead of sending, for example, a ^D (\\004) to printer,
1712 it is sent the string \"^D\".
1716 `8-bit' This is the value to use when you want an ASCII encoding of
1717 any control or non-ASCII character. Control characters are
1718 encoded as \"^D\", and non-ASCII characters have an
1721 `control-8-bit' This is the value to use when you want an ASCII encoding of
1722 any control character, whether it is 7 or 8-bit.
1723 European 8-bits accented characters are printed according
1726 `control' Only ASCII control characters have an ASCII encoding.
1727 European 8-bits accented characters are printed according
1730 nil No ASCII encoding. Any character is printed according the
1733 Any other value is treated as nil."
1734 :type
'(choice :menu-tag
"Control Char"
1736 (const 8-bit
) (const control-8-bit
)
1737 (const control
) (const :tag
"nil" nil
))
1738 :group
'ps-print-miscellany
)
1740 (defcustom ps-n-up-printing
1
1741 "*Specify the number of pages per sheet paper."
1743 :tag
"N Up Printing"
1746 (if (and (< 0 (widget-value wid
))
1747 (<= (widget-value wid
) 100))
1751 "Number of pages per sheet paper must be between 1 and 100.")
1753 :group
'ps-print-n-up
)
1755 (defcustom ps-n-up-margin
(/ (* 72 1.0) 2.54) ; 1 cm
1756 "*Specify the margin in points between the sheet border and n-up printing."
1758 :group
'ps-print-n-up
)
1760 (defcustom ps-n-up-border-p t
1761 "*Non-nil means a border is drawn around each page."
1763 :group
'ps-print-n-up
)
1765 (defcustom ps-n-up-filling
'left-top
1766 "*Specify how page matrix is filled on each sheet of paper.
1768 Following are the valid values for `ps-n-up-filling' with a filling example
1769 using a 3x4 page matrix:
1771 `left-top' 1 2 3 4 `left-bottom' 9 10 11 12
1775 `right-top' 4 3 2 1 `right-bottom' 12 11 10 9
1779 `top-left' 1 4 7 10 `bottom-left' 3 6 9 12
1783 `top-right' 10 7 4 1 `bottom-right' 12 9 6 3
1787 Any other value is treated as `left-top'."
1788 :type
'(choice :menu-tag
"N-Up Filling"
1790 (const left-top
) (const left-bottom
)
1791 (const right-top
) (const right-bottom
)
1792 (const top-left
) (const bottom-left
)
1793 (const top-right
) (const bottom-right
))
1794 :group
'ps-print-n-up
)
1796 (defcustom ps-number-of-columns
(if ps-landscape-mode
2 1)
1797 "*Specify the number of columns"
1799 :group
'ps-print-miscellany
)
1801 (defcustom ps-zebra-stripes nil
1802 "*Non-nil means print zebra stripes.
1803 See also documentation for `ps-zebra-stripe-height' and `ps-zebra-color'."
1805 :group
'ps-print-zebra
)
1807 (defcustom ps-zebra-stripe-height
3
1808 "*Number of zebra stripe lines.
1809 See also documentation for `ps-zebra-stripes' and `ps-zebra-color'."
1811 :group
'ps-print-zebra
)
1813 (defcustom ps-zebra-color
0.95
1814 "*Zebra stripe gray scale or RGB color.
1815 See also documentation for `ps-zebra-stripes' and `ps-zebra-stripe-height'."
1816 :type
'(choice :menu-tag
"Zebra Gray/Color"
1817 :tag
"Zebra Gray/Color"
1818 (number :tag
"Gray Scale" :value
0.95)
1819 (string :tag
"Color Name" :value
"gray95")
1820 (list :tag
"RGB Color" :value
(0.95
0.95 0.95)
1822 (number :tag
"Green")
1823 (number :tag
"Blue")))
1824 :group
'ps-print-zebra
)
1826 (defcustom ps-zebra-stripe-follow nil
1827 "*Non-nil means zebra stripe continues on next page.
1829 If `ps-zebra-stripe-follow' is nil, zebra stripe is restarted on each page.
1830 If `ps-zebra-stripe-follow' is non-nil, zebra stripe continues on next page.
1834 `ps-zebra-stripe-follow' `ps-zebra-stripe-follow'
1836 Current Page ------------------------ ------------------------
1837 1 XXXXXXXXXXXXXXXXXXXXX 1 XXXXXXXXXXXXXXXXXXXXX
1838 2 XXXXXXXXXXXXXXXXXXXXX 2 XXXXXXXXXXXXXXXXXXXXX
1839 3 XXXXXXXXXXXXXXXXXXXXX 3 XXXXXXXXXXXXXXXXXXXXX
1843 7 XXXXXXXXXXXXXXXXXXXXX 7 XXXXXXXXXXXXXXXXXXXXX
1844 8 XXXXXXXXXXXXXXXXXXXXX 8 XXXXXXXXXXXXXXXXXXXXX
1845 ------------------------ ------------------------
1846 Next Page ------------------------ ------------------------
1847 9 XXXXXXXXXXXXXXXXXXXXX 9 XXXXXXXXXXXXXXXXXXXXX
1848 10 XXXXXXXXXXXXXXXXXXXXX 10
1849 11 XXXXXXXXXXXXXXXXXXXXX 11
1851 13 13 XXXXXXXXXXXXXXXXXXXXX
1852 14 14 XXXXXXXXXXXXXXXXXXXXX
1853 15 XXXXXXXXXXXXXXXXXXXXX 15 XXXXXXXXXXXXXXXXXXXXX
1854 16 XXXXXXXXXXXXXXXXXXXXX 16
1855 ------------------------ ------------------------"
1857 :group
'ps-print-zebra
)
1859 (defcustom ps-line-number nil
1860 "*Non-nil means print line number."
1862 :group
'ps-print-miscellany
)
1864 (defcustom ps-line-number-step
1
1865 "*Specify the interval that line number is printed.
1867 For example, `ps-line-number-step' is set to 2, the printing will look like:
1879 integer an integer that specifies the interval that line number is
1880 printed. If it's lesser than or equal to zero, it's used the
1883 `zebra' specifies that only the line number of the first line in a zebra
1884 stripe is to be printed.
1886 Any other value is treated as `zebra'."
1887 :type
'(choice :menu-tag
"Line Number Step"
1888 :tag
"Line Number Step"
1889 (integer :tag
"Step Interval")
1890 (const :tag
"Synchronize Zebra" zebra
))
1891 :group
'ps-print-miscellany
)
1893 (defcustom ps-line-number-start
1
1894 "*Specify the starting point in the interval given by `ps-line-number-step'.
1896 For example, if `ps-line-number-step' is set to 3 and `ps-line-number-start' is set to 3, the
1897 printing will look like:
1911 The values for `ps-line-number-start':
1913 * If `ps-line-number-step' is an integer, must be between 1 and the value
1914 of `ps-line-number-step' inclusive.
1916 * If `ps-line-number-step' is set to `zebra', must be between 1 and the
1917 value of `ps-zebra-strip-height' inclusive. Use this combination if you
1918 wish that line number be relative to zebra stripes."
1919 :type
'(integer :tag
"Start Step Interval")
1920 :group
'ps-print-miscellany
)
1922 (defcustom ps-print-background-image nil
1923 "*EPS image list to be printed on background.
1927 (FILENAME X Y XSCALE YSCALE ROTATION PAGES...)
1929 FILENAME is a file name which contains an EPS image or some PostScript
1930 programming like EPS.
1931 FILENAME is ignored, if it doesn't exist or is read protected.
1933 X and Y are relative positions on paper to put the image.
1934 If X and Y are nil, the image is centralized on paper.
1936 XSCALE and YSCALE are scale factor to be applied to image before printing.
1937 If XSCALE and YSCALE are nil, the original size is used.
1939 ROTATION is the image rotation angle; if nil, the default is 0.
1941 PAGES designates the page to print background image.
1942 PAGES may be a number or a cons cell (FROM . TO) designating FROM page
1944 If PAGES is nil, print background image on all pages.
1946 X, Y, XSCALE, YSCALE and ROTATION may be a floating point number,
1947 an integer number or a string. If it is a string, the string should contain
1948 PostScript programming that returns a float or integer value.
1950 For example, if you wish to print an EPS image on all pages do:
1952 '((\"~/images/EPS-image.ps\"))"
1955 (file :tag
"EPS File")
1956 (choice :tag
"X" (const :tag
"default" nil
) number string
)
1957 (choice :tag
"Y" (const :tag
"default" nil
) number string
)
1958 (choice :tag
"X Scale" (const :tag
"default" nil
) number string
)
1959 (choice :tag
"Y Scale" (const :tag
"default" nil
) number string
)
1960 (choice :tag
"Rotation" (const :tag
"default" nil
) number string
)
1961 (repeat :tag
"Pages" :inline t
1962 (radio (integer :tag
"Page")
1964 (integer :tag
"From")
1965 (integer :tag
"To"))))))
1966 :group
'ps-print-background
)
1968 (defcustom ps-print-background-text nil
1969 "*Text list to be printed on background.
1973 (STRING X Y FONT FONTSIZE GRAY ROTATION PAGES...)
1975 STRING is the text to be printed on background.
1977 X and Y are positions on paper to put the text.
1978 If X and Y are nil, the text is positioned at lower left corner.
1980 FONT is a font name to be used on printing the text.
1981 If nil, \"Times-Roman\" is used.
1983 FONTSIZE is font size to be used, if nil, 200 is used.
1985 GRAY is the text gray factor (should be very light like 0.8).
1986 If nil, the default is 0.85.
1988 ROTATION is the text rotation angle; if nil, the angle is given by
1989 the diagonal from lower left corner to upper right corner.
1991 PAGES designates the page to print background text.
1992 PAGES may be a number or a cons cell (FROM . TO) designating FROM page
1994 If PAGES is nil, print background text on all pages.
1996 X, Y, FONTSIZE, GRAY and ROTATION may be a floating point number,
1997 an integer number or a string. If it is a string, the string should contain
1998 PostScript programming that returns a float or integer value.
2000 For example, if you wish to print text \"Preliminary\" on all pages do:
2002 '((\"Preliminary\"))"
2005 (string :tag
"Text")
2006 (choice :tag
"X" (const :tag
"default" nil
) number string
)
2007 (choice :tag
"Y" (const :tag
"default" nil
) number string
)
2008 (choice :tag
"Font" (const :tag
"default" nil
) string
)
2009 (choice :tag
"Fontsize" (const :tag
"default" nil
) number string
)
2010 (choice :tag
"Gray" (const :tag
"default" nil
) number string
)
2011 (choice :tag
"Rotation" (const :tag
"default" nil
) number string
)
2012 (repeat :tag
"Pages" :inline t
2013 (radio (integer :tag
"Page")
2015 (integer :tag
"From")
2016 (integer :tag
"To"))))))
2017 :group
'ps-print-background
)
2019 ;;; Horizontal layout
2021 ;; ------------------------------------------
2023 ;; | lm | text | ic | text | ic | text | rm |
2025 ;; ------------------------------------------
2027 (defcustom ps-left-margin
(/ (* 72 2.0) 2.54) ; 2 cm
2028 "*Left margin in points (1/72 inch)."
2030 :group
'ps-print-horizontal
)
2032 (defcustom ps-right-margin
(/ (* 72 2.0) 2.54) ; 2 cm
2033 "*Right margin in points (1/72 inch)."
2035 :group
'ps-print-horizontal
)
2037 (defcustom ps-inter-column
(/ (* 72 2.0) 2.54) ; 2 cm
2038 "*Horizontal space between columns in points (1/72 inch)."
2040 :group
'ps-print-horizontal
)
2056 (defcustom ps-bottom-margin
(/ (* 72 1.5) 2.54) ; 1.5 cm
2057 "*Bottom margin in points (1/72 inch)."
2059 :group
'ps-print-vertical
)
2061 (defcustom ps-top-margin
(/ (* 72 1.5) 2.54) ; 1.5 cm
2062 "*Top margin in points (1/72 inch)."
2064 :group
'ps-print-vertical
)
2066 (defcustom ps-header-offset
(/ (* 72 1.0) 2.54) ; 1.0 cm
2067 "*Vertical space in points (1/72 inch) between the main text and the header."
2069 :group
'ps-print-vertical
)
2071 (defcustom ps-header-line-pad
0.15
2072 "*Portion of a header title line height to insert between the header frame
2073 and the text it contains, both in the vertical and horizontal directions."
2075 :group
'ps-print-vertical
)
2079 (defcustom ps-print-header t
2080 "*Non-nil means print a header at the top of each page.
2081 By default, the header displays the buffer name, page number, and, if
2082 the buffer is visiting a file, the file's directory. Headers are
2083 customizable by changing variables `ps-left-header' and
2086 :group
'ps-print-headers
)
2088 (defcustom ps-print-only-one-header nil
2089 "*Non-nil means print only one header at the top of each page.
2090 This is useful when printing more than one column, so it is possible
2091 to have only one header over all columns or one header per column.
2092 See also `ps-print-header'."
2094 :group
'ps-print-headers
)
2096 (defcustom ps-print-header-frame t
2097 "*Non-nil means draw a gaudy frame around the header."
2099 :group
'ps-print-headers
)
2101 (defcustom ps-header-lines
2
2102 "*Number of lines to display in page header, when generating PostScript."
2104 :group
'ps-print-headers
)
2106 (defcustom ps-switch-header
'duplex
2107 "*Specify if headers are switched or not.
2111 nil Never switch headers.
2113 t Always switch headers.
2115 duplex Switch headers only when duplexing is on, that is, when
2116 `ps-spool-duplex' is non-nil.
2118 Any other value is treated as t."
2119 :type
'(choice :menu-tag
"Switch Header"
2120 :tag
"Switch Header"
2121 (const :tag
"Never Switch" nil
)
2122 (const :tag
"Always Switch" t
)
2123 (const :tag
"Switch When Duplexing" duplex
))
2124 :group
'ps-print-headers
)
2126 (defcustom ps-show-n-of-n t
2127 "*Non-nil means show page numbers as N/M, meaning page N of M.
2128 NOTE: page numbers are displayed as part of headers,
2129 see variable `ps-print-header'."
2131 :group
'ps-print-headers
)
2133 (defcustom ps-spool-config
2134 (if ps-windows-system
2137 "*Specify who is responsable for setting duplex and page size switches.
2141 `lpr-switches' duplex and page size are configured by `ps-lpr-switches'.
2142 Don't forget to set `ps-lpr-switches' to select duplex
2143 printing for your printer.
2145 `setpagedevice' duplex and page size are configured by ps-print using the
2146 setpagedevice PostScript operator.
2148 nil duplex and page size are configured by ps-print *not* using
2149 the setpagedevice PostScript operator.
2151 Any other value is treated as nil.
2153 WARNING: The setpagedevice PostScript operator affects ghostview utility when
2154 viewing file generated using landscape. Also on some printers,
2155 setpagedevice affects zebra stripes; on other printers, setpagedevice
2156 affects the left margin.
2157 Besides all that, if your printer does not have the paper size
2158 specified by setpagedevice, your printing will be aborted.
2159 So, if you need to use setpagedevice, set `ps-spool-config' to
2160 `setpagedevice', generate a test file and send it to your printer; if
2161 the printed file isn't ok, set `ps-spool-config' to nil."
2162 :type
'(choice :menu-tag
"Spool Config"
2164 (const lpr-switches
) (const setpagedevice
)
2165 (const :tag
"nil" nil
))
2166 :group
'ps-print-headers
)
2168 (defcustom ps-spool-duplex nil
; Not many people have duplex printers,
2169 ; so default to nil.
2170 "*Non-nil generates PostScript for a two-sided printer.
2171 For a duplex printer, the `ps-spool-*' and `ps-print-*' commands will insert
2172 blank pages as needed between print jobs so that the next buffer printed will
2173 start on the right page. Also, if headers are turned on, the headers will be
2174 reversed on duplex printers so that the page numbers fall to the left on
2175 even-numbered pages.
2177 See also `ps-spool-tumble'."
2179 :group
'ps-print-headers
)
2181 (defcustom ps-spool-tumble nil
2182 "*Specify how the page images on opposite sides of a sheet are oriented.
2183 If `ps-spool-tumble' is nil, produces output suitable for binding on the left or
2184 right. If `ps-spool-tumble' is non-nil, produces output suitable for binding at
2187 It has effect only when `ps-spool-duplex' is non-nil."
2189 :group
'ps-print-headers
)
2193 (defcustom ps-font-info-database
2194 '((Courier ; the family key
2195 (fonts (normal .
"Courier")
2196 (bold .
"Courier-Bold")
2197 (italic .
"Courier-Oblique")
2198 (bold-italic .
"Courier-BoldOblique"))
2200 (line-height .
10.55)
2202 (avg-char-width .
6.0))
2203 (Helvetica ; the family key
2204 (fonts (normal .
"Helvetica")
2205 (bold .
"Helvetica-Bold")
2206 (italic .
"Helvetica-Oblique")
2207 (bold-italic .
"Helvetica-BoldOblique"))
2209 (line-height .
11.56)
2210 (space-width .
2.78)
2211 (avg-char-width .
5.09243))
2213 (fonts (normal .
"Times-Roman")
2214 (bold .
"Times-Bold")
2215 (italic .
"Times-Italic")
2216 (bold-italic .
"Times-BoldItalic"))
2218 (line-height .
11.0)
2220 (avg-char-width .
4.71432))
2222 (fonts (normal .
"Palatino-Roman")
2223 (bold .
"Palatino-Bold")
2224 (italic .
"Palatino-Italic")
2225 (bold-italic .
"Palatino-BoldItalic"))
2227 (line-height .
12.1)
2229 (avg-char-width .
5.08676))
2231 (fonts (normal .
"Helvetica-Narrow")
2232 (bold .
"Helvetica-Narrow-Bold")
2233 (italic .
"Helvetica-Narrow-Oblique")
2234 (bold-italic .
"Helvetica-Narrow-BoldOblique"))
2236 (line-height .
11.56)
2237 (space-width .
2.2796)
2238 (avg-char-width .
4.17579))
2240 (fonts (normal .
"NewCenturySchlbk-Roman")
2241 (bold .
"NewCenturySchlbk-Bold")
2242 (italic .
"NewCenturySchlbk-Italic")
2243 (bold-italic .
"NewCenturySchlbk-BoldItalic"))
2245 (line-height .
12.15)
2246 (space-width .
2.78)
2247 (avg-char-width .
5.31162))
2248 ;; got no bold for the next ones
2250 (fonts (normal .
"AvantGarde-Book")
2251 (italic .
"AvantGarde-BookOblique"))
2253 (line-height .
11.77)
2254 (space-width .
2.77)
2255 (avg-char-width .
5.45189))
2257 (fonts (normal .
"AvantGarde-Demi")
2258 (italic .
"AvantGarde-DemiOblique"))
2260 (line-height .
12.72)
2262 (avg-char-width .
5.51351))
2264 (fonts (normal .
"Bookman-Demi")
2265 (italic .
"Bookman-DemiItalic"))
2267 (line-height .
11.77)
2269 (avg-char-width .
6.05946))
2271 (fonts (normal .
"Bookman-Light")
2272 (italic .
"Bookman-LightItalic"))
2274 (line-height .
11.79)
2276 (avg-char-width .
5.67027))
2277 ;; got no bold and no italic for the next ones
2279 (fonts (normal .
"Symbol"))
2281 (line-height .
13.03)
2283 (avg-char-width .
3.24324))
2285 (fonts (normal .
"Zapf-Dingbats"))
2287 (line-height .
9.63)
2288 (space-width .
2.78)
2289 (avg-char-width .
2.78))
2290 (Zapf-Chancery-MediumItalic
2291 (fonts (normal .
"Zapf-Chancery-MediumItalic"))
2293 (line-height .
11.45)
2295 (avg-char-width .
4.10811))
2297 "*Font info database: font family (the key), name, bold, italic, bold-italic,
2298 reference size, line height, space width, average character width.
2299 To get the info for another specific font (say Helvetica), do the following:
2300 - create a new buffer
2301 - generate the PostScript image to a file (C-u M-x ps-print-buffer)
2302 - open this file and delete the leading `%' (which is the PostScript
2303 comment character) from the line
2304 `% 3 cm 20 cm moveto 10/Courier ReportFontInfo showpage'
2306 `3 cm 20 cm moveto 10/Helvetica ReportFontInfo showpage'
2307 - add the values to `ps-font-info-database'.
2308 You can get all the fonts of YOUR printer using `ReportAllFontInfo'.
2310 Note also that ps-print DOESN'T download any font to your printer, instead
2311 it uses the fonts resident in your printer."
2312 :type
'(repeat (list :tag
"Font Definition"
2313 (symbol :tag
"Font Family")
2315 (const :format
"" fonts
)
2316 (repeat :tag
"Faces"
2317 (cons (choice (const normal
)
2321 (symbol :tag
"Face"))
2322 (string :tag
"Font Name"))))
2324 (const :format
"" size
)
2325 (number :tag
"Reference Size"))
2327 (const :format
"" line-height
)
2328 (number :tag
"Line Height"))
2330 (const :format
"" space-width
)
2331 (number :tag
"Space Width"))
2333 (const :format
"" avg-char-width
)
2334 (number :tag
"Average Character Width"))))
2335 :group
'ps-print-font
)
2337 (defcustom ps-font-family
'Courier
2338 "*Font family name for ordinary text, when generating PostScript."
2340 :group
'ps-print-font
)
2342 (defcustom ps-font-size
'(7 .
8.5)
2343 "*Font size, in points, for ordinary text, when generating PostScript."
2344 :type
'(choice (number :tag
"Text Size")
2345 (cons :tag
"Landscape/Portrait"
2346 (number :tag
"Landscape Text Size")
2347 (number :tag
"Portrait Text Size")))
2348 :group
'ps-print-font
)
2350 (defcustom ps-header-font-family
'Helvetica
2351 "*Font family name for text in the header, when generating PostScript."
2353 :group
'ps-print-font
)
2355 (defcustom ps-header-font-size
'(10 .
12)
2356 "*Font size, in points, for text in the header, when generating PostScript."
2357 :type
'(choice (number :tag
"Header Size")
2358 (cons :tag
"Landscape/Portrait"
2359 (number :tag
"Landscape Header Size")
2360 (number :tag
"Portrait Header Size")))
2361 :group
'ps-print-font
)
2363 (defcustom ps-header-title-font-size
'(12 .
14)
2364 "*Font size, in points, for the top line of text in header, in PostScript."
2365 :type
'(choice (number :tag
"Header Title Size")
2366 (cons :tag
"Landscape/Portrait"
2367 (number :tag
"Landscape Header Title Size")
2368 (number :tag
"Portrait Header Title Size")))
2369 :group
'ps-print-font
)
2373 ;; Printing color requires x-color-values.
2374 (defcustom ps-print-color-p
(or (fboundp 'x-color-values
) ; Emacs
2375 (fboundp 'color-instance-rgb-components
))
2377 "*Non-nil means print the buffer's text in color."
2379 :group
'ps-print-color
)
2381 (defcustom ps-default-fg
'(0.0
0.0 0.0)
2382 "*RGB values of the default foreground color. Defaults to black."
2383 :type
'(choice :menu-tag
"Default Foreground Gray/Color"
2384 :tag
"Default Foreground Gray/Color"
2385 (number :tag
"Gray Scale" :value
0.0)
2386 (string :tag
"Color Name" :value
"black")
2387 (list :tag
"RGB Color" :value
(0.0
0.0 0.0)
2389 (number :tag
"Green")
2390 (number :tag
"Blue")))
2391 :group
'ps-print-color
)
2393 (defcustom ps-default-bg
'(1.0
1.0 1.0)
2394 "*RGB values of the default background color. Defaults to white."
2395 :type
'(choice :menu-tag
"Default Background Gray/Color"
2396 :tag
"Default Background Gray/Color"
2397 (number :tag
"Gray Scale" :value
1.0)
2398 (string :tag
"Color Name" :value
"white")
2399 (list :tag
"RGB Color" :value
(1.0
1.0 1.0)
2401 (number :tag
"Green")
2402 (number :tag
"Blue")))
2403 :group
'ps-print-color
)
2405 (defcustom ps-auto-font-detect t
2406 "*Non-nil means automatically detect bold/italic/underline face attributes.
2407 If nil, we rely solely on the lists `ps-bold-faces', `ps-italic-faces',
2408 and `ps-underlined-faces'."
2410 :group
'ps-print-font
)
2412 (defcustom ps-bold-faces
2413 (unless ps-print-color-p
2414 '(font-lock-function-name-face
2415 font-lock-builtin-face
2416 font-lock-variable-name-face
2417 font-lock-keyword-face
2418 font-lock-warning-face
))
2419 "*A list of the \(non-bold\) faces that should be printed in bold font.
2420 This applies to generating PostScript."
2421 :type
'(repeat face
)
2422 :group
'ps-print-face
)
2424 (defcustom ps-italic-faces
2425 (unless ps-print-color-p
2426 '(font-lock-variable-name-face
2428 font-lock-string-face
2429 font-lock-comment-face
2430 font-lock-warning-face
))
2431 "*A list of the \(non-italic\) faces that should be printed in italic font.
2432 This applies to generating PostScript."
2433 :type
'(repeat face
)
2434 :group
'ps-print-face
)
2436 (defcustom ps-underlined-faces
2437 (unless ps-print-color-p
2438 '(font-lock-function-name-face
2439 font-lock-constant-face
2440 font-lock-warning-face
))
2441 "*A list of the \(non-underlined\) faces that should be printed underlined.
2442 This applies to generating PostScript."
2443 :type
'(repeat face
)
2444 :group
'ps-print-face
)
2446 (defcustom ps-use-face-background nil
2447 "*Specify if face background should be used.
2451 t always use face background color.
2452 nil never use face background color.
2453 (face...) list of faces whose background color will be used.
2455 Any other value will be treated as t."
2456 :type
'(choice :menu-tag
"Use Face Background"
2457 :tag
"Use Face Background"
2458 (const :tag
"Always Use Face Background" t
)
2459 (const :tag
"Never Use Face Background" nil
)
2460 (repeat :menu-tag
"Face Background List"
2461 :tag
"Face Background List"
2463 :group
'ps-print-face
)
2465 (defcustom ps-left-header
2466 (list 'ps-get-buffer-name
'ps-header-dirpart
)
2467 "*The items to display (each on a line) on the left part of the page header.
2468 This applies to generating PostScript.
2470 The value should be a list of strings and symbols, each representing an
2471 entry in the PostScript array HeaderLinesLeft.
2473 Strings are inserted unchanged into the array; those representing
2474 PostScript string literals should be delimited with PostScript string
2475 delimiters '(' and ')'.
2477 For symbols with bound functions, the function is called and should
2478 return a string to be inserted into the array. For symbols with bound
2479 values, the value should be a string to be inserted into the array.
2480 In either case, function or variable, the string value has PostScript
2481 string delimiters added to it."
2482 :type
'(repeat (choice string symbol
))
2483 :group
'ps-print-headers
)
2485 (defcustom ps-right-header
2486 (list "/pagenumberstring load" 'time-stamp-mon-dd-yyyy
'time-stamp-hh
:mm
:ss
)
2487 "*The items to display (each on a line) on the right part of the page header.
2488 This applies to generating PostScript.
2490 See the variable `ps-left-header' for a description of the format of
2492 :type
'(repeat (choice string symbol
))
2493 :group
'ps-print-headers
)
2495 (defcustom ps-razzle-dazzle t
2496 "*Non-nil means report progress while formatting buffer."
2498 :group
'ps-print-miscellany
)
2500 (defcustom ps-adobe-tag
"%!PS-Adobe-3.0\n"
2501 "*Contains the header line identifying the output as PostScript.
2502 By default, `ps-adobe-tag' contains the standard identifier. Some
2503 printers require slightly different versions of this line."
2505 :group
'ps-print-miscellany
)
2507 (defcustom ps-build-face-reference t
2508 "*Non-nil means build the reference face lists.
2510 ps-print sets this value to nil after it builds its internal reference
2511 lists of bold and italic faces. By settings its value back to t, you
2512 can force ps-print to rebuild the lists the next time you invoke one
2513 of the ...-with-faces commands.
2515 You should set this value back to t after you change the attributes of
2516 any face, or create new faces. Most users shouldn't have to worry
2517 about its setting, though."
2519 :group
'ps-print-face
)
2521 (defcustom ps-always-build-face-reference nil
2522 "*Non-nil means always rebuild the reference face lists.
2524 If this variable is non-nil, ps-print will rebuild its internal
2525 reference lists of bold and italic faces *every* time one of the
2526 ...-with-faces commands is called. Most users shouldn't need to set this
2529 :group
'ps-print-face
)
2531 (defcustom ps-banner-page-when-duplexing nil
2532 "*Non-nil means the very first page is skipped.
2533 It's like the very first character of buffer (or region) is ^L (\\014)."
2535 :group
'ps-print-headers
)
2537 (defcustom ps-postscript-code-directory
2538 (or (and (fboundp 'locate-data-directory
) ; xemacs
2539 (locate-data-directory "ps-print"))
2540 data-directory
) ; emacs
2541 "*Directory where it's located the PostScript prologue file used by ps-print.
2542 By default, this directory is the same as in the variable `data-directory'."
2544 :group
'ps-print-miscellany
)
2547 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2551 (defvar ps-last-selected-pages nil
2552 "Latest `ps-selected-pages' value.")
2555 (defun ps-restore-selected-pages ()
2556 "Restore latest `ps-selected-pages' value."
2558 (setq ps-selected-pages ps-last-selected-pages
))
2561 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2566 (defun ps-print-customize ()
2567 "Customization of ps-print group."
2569 (customize-group 'ps-print
))
2572 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2577 (defun ps-print-buffer (&optional filename
)
2578 "Generate and print a PostScript image of the buffer.
2580 Interactively, when you use a prefix argument (C-u), the command
2581 prompts the user for a file name, and saves the PostScript image
2582 in that file instead of sending it to the printer.
2584 Noninteractively, the argument FILENAME is treated as follows: if it
2585 is nil, send the image to the printer. If FILENAME is a string, save
2586 the PostScript image in a file with that name."
2587 (interactive (list (ps-print-preprint current-prefix-arg
)))
2588 (ps-print-without-faces (point-min) (point-max) filename
))
2592 (defun ps-print-buffer-with-faces (&optional filename
)
2593 "Generate and print a PostScript image of the buffer.
2594 Like `ps-print-buffer', but includes font, color, and underline
2595 information in the generated image. This command works only if you
2596 are using a window system, so it has a way to determine color values."
2597 (interactive (list (ps-print-preprint current-prefix-arg
)))
2598 (ps-print-with-faces (point-min) (point-max) filename
))
2602 (defun ps-print-region (from to
&optional filename
)
2603 "Generate and print a PostScript image of the region.
2604 Like `ps-print-buffer', but prints just the current region."
2605 (interactive (list (point) (mark) (ps-print-preprint current-prefix-arg
)))
2606 (ps-print-without-faces from to filename t
))
2610 (defun ps-print-region-with-faces (from to
&optional filename
)
2611 "Generate and print a PostScript image of the region.
2612 Like `ps-print-region', but includes font, color, and underline
2613 information in the generated image. This command works only if you
2614 are using a window system, so it has a way to determine color values."
2615 (interactive (list (point) (mark) (ps-print-preprint current-prefix-arg
)))
2616 (ps-print-with-faces from to filename t
))
2620 (defun ps-spool-buffer ()
2621 "Generate and spool a PostScript image of the buffer.
2622 Like `ps-print-buffer' except that the PostScript image is saved in a
2623 local buffer to be sent to the printer later.
2625 Use the command `ps-despool' to send the spooled images to the printer."
2627 (ps-spool-without-faces (point-min) (point-max)))
2631 (defun ps-spool-buffer-with-faces ()
2632 "Generate and spool a PostScript image of the buffer.
2633 Like `ps-spool-buffer', but includes font, color, and underline
2634 information in the generated image. This command works only if you
2635 are using a window system, so it has a way to determine color values.
2637 Use the command `ps-despool' to send the spooled images to the printer."
2639 (ps-spool-with-faces (point-min) (point-max)))
2643 (defun ps-spool-region (from to
)
2644 "Generate a PostScript image of the region and spool locally.
2645 Like `ps-spool-buffer', but spools just the current region.
2647 Use the command `ps-despool' to send the spooled images to the printer."
2649 (ps-spool-without-faces from to t
))
2653 (defun ps-spool-region-with-faces (from to
)
2654 "Generate a PostScript image of the region and spool locally.
2655 Like `ps-spool-region', but includes font, color, and underline
2656 information in the generated image. This command works only if you
2657 are using a window system, so it has a way to determine color values.
2659 Use the command `ps-despool' to send the spooled images to the printer."
2661 (ps-spool-with-faces from to t
))
2664 (defun ps-despool (&optional filename
)
2665 "Send the spooled PostScript to the printer.
2667 Interactively, when you use a prefix argument (C-u), the command
2668 prompts the user for a file name, and saves the spooled PostScript
2669 image in that file instead of sending it to the printer.
2671 Noninteractively, the argument FILENAME is treated as follows: if it
2672 is nil, send the image to the printer. If FILENAME is a string, save
2673 the PostScript image in a file with that name."
2674 (interactive (list (ps-print-preprint current-prefix-arg
)))
2675 (ps-do-despool filename
))
2678 (defun ps-line-lengths ()
2679 "Display the correspondence between a line length and a font size,
2680 using the current ps-print setup.
2681 Try: pr -t file | awk '{printf \"%3d %s\n\", length($0), $0}' | sort -r | head"
2683 (ps-line-lengths-internal))
2686 (defun ps-nb-pages-buffer (nb-lines)
2687 "Display number of pages to print this buffer, for various font heights.
2688 The table depends on the current ps-print setup."
2689 (interactive (list (count-lines (point-min) (point-max))))
2690 (ps-nb-pages nb-lines
))
2693 (defun ps-nb-pages-region (nb-lines)
2694 "Display number of pages to print the region, for various font heights.
2695 The table depends on the current ps-print setup."
2696 (interactive (list (count-lines (mark) (point))))
2697 (ps-nb-pages nb-lines
))
2701 "Return the current PostScript-generation setup."
2704 ;;; ps-print version %s
2706 \(setq ps-print-color-p %s
2710 ps-print-region-function %s
2714 ps-warn-paper-type %s
2715 ps-landscape-mode %s
2716 ps-print-upside-down %s
2717 ps-number-of-columns %s
2720 ps-zebra-stripe-height %s
2721 ps-zebra-stripe-follow %S
2724 ps-line-number-step %s
2725 ps-line-number-start %S
2730 ps-use-face-background %s
2732 ps-print-control-characters %s
2734 ps-print-background-image %s
2736 ps-print-background-text %s
2738 ps-error-handler-message %s
2739 ps-user-defined-prologue %s
2740 ps-print-prologue-header %s
2748 ps-header-line-pad %s
2750 ps-print-only-one-header %s
2751 ps-print-header-frame %s
2758 ps-banner-page-when-duplexing %s
2765 ps-multibyte-buffer %s
2768 ps-header-font-family %s
2769 ps-header-font-size %s
2770 ps-header-title-font-size %s
2772 ps-even-or-odd-pages %s
2773 ps-selected-pages %s
2774 ps-last-selected-pages %s)
2776 ;;; ps-print - end of settings
2781 (ps-print-quote ps-lpr-switches
)
2783 (ps-print-quote ps-print-region-function
)
2785 (ps-print-quote ps-paper-type
)
2788 ps-print-upside-down
2789 ps-number-of-columns
2791 ps-zebra-stripe-height
2792 ps-zebra-stripe-follow
2793 (ps-print-quote ps-zebra-color
)
2795 (ps-print-quote ps-line-number-step
)
2796 ps-line-number-start
2797 (ps-print-quote ps-default-fg
)
2798 (ps-print-quote ps-default-bg
)
2799 (ps-print-quote ps-use-face-background
)
2800 (ps-print-quote ps-print-control-characters
)
2801 (ps-print-quote ps-print-background-image
)
2802 (ps-print-quote ps-print-background-text
)
2803 (ps-print-quote ps-error-handler-message
)
2804 (ps-print-quote ps-user-defined-prologue
)
2805 (ps-print-quote ps-print-prologue-header
)
2814 ps-print-only-one-header
2815 ps-print-header-frame
2816 (ps-print-quote ps-switch-header
)
2819 (ps-print-quote ps-spool-config
)
2822 ps-banner-page-when-duplexing
2826 (ps-print-quote ps-n-up-filling
)
2827 (ps-print-quote ps-multibyte-buffer
) ; see `ps-mule.el'
2828 (ps-print-quote ps-font-family
)
2829 (ps-print-quote ps-font-size
)
2830 (ps-print-quote ps-header-font-family
)
2831 (ps-print-quote ps-header-font-size
)
2832 (ps-print-quote ps-header-title-font-size
)
2833 (ps-print-quote ps-even-or-odd-pages
)
2834 (ps-print-quote ps-selected-pages
)
2835 (ps-print-quote ps-last-selected-pages
)))
2838 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2839 ;; Utility functions and variables:
2842 (defun ps-print-quote (sym)
2845 ((or (symbolp sym
) (listp sym
))
2852 (defvar ps-print-emacs-type
2853 (cond ((string-match "XEmacs" emacs-version
) 'xemacs
)
2854 ((string-match "Lucid" emacs-version
) 'lucid
)
2855 ((string-match "Epoch" emacs-version
) 'epoch
)
2858 (if (memq ps-print-emacs-type
'(lucid xemacs
))
2859 (if (< emacs-minor-version
12)
2860 (setq ps-print-color-p nil
))
2861 (require 'faces
)) ; face-font, face-underline-p,
2864 ;; Return t if the device (which can be changed during an emacs session)
2865 ;; can handle colors.
2866 ;; This is function is not yet implemented for GNU emacs.
2867 (cond ((and (eq ps-print-emacs-type
'xemacs
)
2868 (>= emacs-minor-version
12)) ; xemacs
2869 (defun ps-color-device ()
2870 (eq (device-class) 'color
))
2874 (defun ps-color-device ()
2879 (require 'time-stamp
)
2882 (defun ps-prologue-file (filenumber)
2884 (let* ((filename (format "%sps-prin%d.ps"
2885 ps-postscript-code-directory filenumber
))
2887 (or (find-file-noselect filename
'no-warn
'rawfile
)
2888 (error "ps-print PostScript prologue `%s' file was not found."
2893 (kill-buffer buffer
)))))
2896 (defvar ps-mark-code-directory nil
)
2898 (defvar ps-print-prologue-0
""
2899 "ps-print PostScript error handler.")
2901 (defvar ps-print-prologue-1
""
2902 "ps-print PostScript prologue begin.")
2904 (defvar ps-print-prologue-2
""
2905 "ps-print PostScript prologue end.")
2907 ;; Start Editing Here:
2909 (defvar ps-source-buffer nil
)
2910 (defvar ps-spool-buffer-name
"*PostScript*")
2911 (defvar ps-spool-buffer nil
)
2913 (defvar ps-output-head nil
)
2914 (defvar ps-output-tail nil
)
2916 (defvar ps-page-postscript
0)
2917 (defvar ps-page-order
0)
2918 (defvar ps-page-count
0)
2919 (defvar ps-showline-count
1)
2920 (defvar ps-first-page nil
)
2921 (defvar ps-last-page nil
)
2923 (defvar ps-control-or-escape-regexp nil
)
2924 (defvar ps-n-up-on nil
)
2926 (defvar ps-background-pages nil
)
2927 (defvar ps-background-all-pages nil
)
2928 (defvar ps-background-text-count
0)
2929 (defvar ps-background-image-count
0)
2931 (defvar ps-current-font
0)
2932 (defvar ps-default-foreground nil
)
2933 (defvar ps-default-color nil
)
2934 (defvar ps-current-color nil
)
2935 (defvar ps-current-bg nil
)
2937 (defvar ps-razchunk
0)
2939 (defvar ps-color-p nil
)
2940 (defvar ps-color-format
2941 (if (eq ps-print-emacs-type
'emacs
)
2943 ;; Emacs understands the %f format; we'll use it to limit color RGB
2944 ;; values to three decimals to cut down some on the size of the
2945 ;; PostScript output.
2948 ;; Lucid emacsen will have to make do with %s (princ) for floats.
2951 ;; These values determine how much print-height to deduct when headers
2952 ;; are turned on. This is a pretty clumsy way of handling it, but
2953 ;; it'll do for now.
2955 (defvar ps-header-pad
0
2956 "Vertical and horizontal space between the header frame and the text.
2957 This is in units of points (1/72 inch).")
2959 ;; Define accessors to the dimensions list.
2961 (defmacro ps-page-dimensions-get-width
(dims) `(nth 0 ,dims
))
2962 (defmacro ps-page-dimensions-get-height
(dims) `(nth 1 ,dims
))
2963 (defmacro ps-page-dimensions-get-media
(dims) `(nth 2 ,dims
))
2965 (defvar ps-landscape-page-height nil
)
2967 (defvar ps-print-width nil
)
2968 (defvar ps-print-height nil
)
2970 (defvar ps-height-remaining nil
)
2971 (defvar ps-width-remaining nil
)
2973 (defvar ps-print-color-scale nil
)
2975 (defvar ps-font-size-internal nil
)
2976 (defvar ps-header-font-size-internal nil
)
2977 (defvar ps-header-title-font-size-internal nil
)
2980 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2981 ;; Internal Variables
2984 (defvar ps-print-face-extension-alist nil
2985 "Alist of symbolic faces *WITH* extension features (box, outline, etc).
2986 An element of this list has the following form:
2988 (FACE . [BITS FG BG])
2990 FACE is a symbol denoting a face name
2991 BITS is a bit vector, where each bit correspond
2992 to a feature (bold, underline, etc)
2993 (see documentation for `ps-print-face-map-alist')
2994 FG foreground color (string or nil)
2995 BG background color (string or nil)
2997 Don't change this list directly; instead,
2998 use `ps-extend-face' and `ps-extend-face-list'.
2999 See documentation for `ps-extend-face' for valid extension symbol.")
3002 (defvar ps-print-face-alist nil
3003 "Alist of symbolic faces *WITHOUT* extension features (box, outline, etc).
3005 An element of this list has the same form as an element of
3006 `ps-print-face-extension-alist'.
3008 Don't change this list directly; this list is used by `ps-face-attributes',
3009 `ps-map-face' and `ps-build-reference-face-lists'.")
3012 (defconst ps-print-face-map-alist
3021 "Alist of all features and the corresponding bit mask.
3022 Each symbol correspond to one bit in a bit vector.")
3025 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3030 (defun ps-extend-face-list (face-extension-list &optional merge-p
)
3031 "Extend face in `ps-print-face-extension-alist'.
3033 If optional MERGE-P is non-nil, extensions in FACE-EXTENSION-LIST are merged
3034 with face extension in `ps-print-face-extension-alist'; otherwise, overrides.
3036 The elements in FACE-EXTENSION-LIST is like those for `ps-extend-face'.
3038 See `ps-extend-face' for documentation."
3039 (while face-extension-list
3040 (ps-extend-face (car face-extension-list
) merge-p
)
3041 (setq face-extension-list
(cdr face-extension-list
))))
3045 (defun ps-extend-face (face-extension &optional merge-p
)
3046 "Extend face in `ps-print-face-extension-alist'.
3048 If optional MERGE-P is non-nil, extensions in FACE-EXTENSION list are merged
3049 with face extensions in `ps-print-face-extension-alist'; otherwise, overrides.
3051 The elements of FACE-EXTENSION list have the form:
3053 (FACE-NAME FOREGROUND BACKGROUND EXTENSION...)
3055 FACE-NAME is a face name symbol.
3057 FOREGROUND and BACKGROUND may be nil or a string that denotes the
3058 foreground and background colors respectively.
3060 EXTENSION is one of the following symbols:
3061 bold - use bold font.
3062 italic - use italic font.
3063 underline - put a line under text.
3064 strikeout - like underline, but the line is in middle of text.
3065 overline - like underline, but the line is over the text.
3066 shadow - text will have a shadow.
3067 box - text will be surrounded by a box.
3068 outline - print characters as hollow outlines.
3070 If EXTENSION is any other symbol, it is ignored."
3071 (let* ((face-name (nth 0 face-extension
))
3072 (foreground (nth 1 face-extension
))
3073 (background (nth 2 face-extension
))
3074 (ps-face (cdr (assq face-name ps-print-face-extension-alist
)))
3075 (face-vector (or ps-face
(vector 0 nil nil
)))
3076 (face-bit (ps-extension-bit face-extension
)))
3078 (aset face-vector
0 (if merge-p
3079 (logior (aref face-vector
0) face-bit
)
3081 (and foreground
(stringp foreground
) (aset face-vector
1 foreground
))
3082 (and background
(stringp background
) (aset face-vector
2 background
))
3083 ;; if face does not exist, insert it
3085 (setq ps-print-face-extension-alist
3086 (cons (cons face-name face-vector
)
3087 ps-print-face-extension-alist
)))))
3090 (defun ps-extension-bit (face-extension)
3092 ;; map valid symbol extension to bit vector
3093 (setq face-extension
(cdr (cdr face-extension
)))
3094 (while (setq face-extension
(cdr face-extension
))
3095 (setq face-bit
(logior face-bit
3096 (or (cdr (assq (car face-extension
)
3097 ps-print-face-map-alist
))
3102 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3103 ;; Adapted from font-lock: (obsolete stuff)
3104 ;; Originally face attributes were specified via `font-lock-face-attributes'.
3105 ;; Users then changed the default face attributes by setting that variable.
3106 ;; However, we try and be back-compatible and respect its value if set except
3107 ;; for faces where M-x customize has been used to save changes for the face.
3110 (defun ps-font-lock-face-attributes ()
3111 (and (boundp 'font-lock-mode
) (symbol-value 'font-lock-mode
)
3112 (boundp 'font-lock-face-attributes
)
3113 (let ((face-attributes font-lock-face-attributes
))
3114 (while face-attributes
3115 (let* ((face-attribute
3116 (car (prog1 face-attributes
3117 (setq face-attributes
(cdr face-attributes
)))))
3118 (face (car face-attribute
)))
3119 ;; Rustle up a `defface' SPEC from a
3120 ;; `font-lock-face-attributes' entry.
3121 (unless (get face
'saved-face
)
3122 (let ((foreground (nth 1 face-attribute
))
3123 (background (nth 2 face-attribute
))
3124 (bold-p (nth 3 face-attribute
))
3125 (italic-p (nth 4 face-attribute
))
3126 (underline-p (nth 5 face-attribute
))
3129 (setq face-spec
(cons ':foreground
3130 (cons foreground face-spec
))))
3132 (setq face-spec
(cons ':background
3133 (cons background face-spec
))))
3135 (setq face-spec
(append '(:bold t
) face-spec
)))
3137 (setq face-spec
(append '(:italic t
) face-spec
)))
3139 (setq face-spec
(append '(:underline t
) face-spec
)))
3140 (custom-declare-face face
(list (list t face-spec
)) nil
)
3144 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3145 ;; Internal functions and variables
3148 (make-local-hook 'ps-print-hook
)
3149 (make-local-hook 'ps-print-begin-sheet-hook
)
3150 (make-local-hook 'ps-print-begin-page-hook
)
3151 (make-local-hook 'ps-print-begin-column-hook
)
3154 (defun ps-print-without-faces (from to
&optional filename region-p
)
3155 (ps-spool-without-faces from to region-p
)
3156 (ps-do-despool filename
))
3159 (defun ps-spool-without-faces (from to
&optional region-p
)
3160 (run-hooks 'ps-print-hook
)
3161 (ps-printing-region region-p from
)
3162 (ps-generate (current-buffer) from to
'ps-generate-postscript
))
3165 (defun ps-print-with-faces (from to
&optional filename region-p
)
3166 (ps-spool-with-faces from to region-p
)
3167 (ps-do-despool filename
))
3170 (defun ps-spool-with-faces (from to
&optional region-p
)
3171 (run-hooks 'ps-print-hook
)
3172 (ps-printing-region region-p from
)
3173 (ps-generate (current-buffer) from to
'ps-generate-postscript-with-faces
))
3176 (defun ps-count-lines (from to
)
3177 (+ (count-lines from to
)
3180 (if (= (current-column) 0) 1 0))))
3183 (defvar ps-printing-region nil
3184 "Variable used to indicate if the region that ps-print is printing.
3185 It is a cons, the car of which is the line number where the region begins, and
3186 its cdr is the total number of lines in the buffer. Formatting functions can
3187 use this information to print the original line number (and not the number of
3188 lines printed), and to indicate in the header that the printout is of a partial
3192 (defvar ps-printing-region-p nil
3193 "Non-nil means ps-print is printing a region.")
3196 (defun ps-printing-region (region-p from
)
3197 (setq ps-printing-region-p region-p
3200 (ps-count-lines (point-min) from
)
3202 (ps-count-lines (point-min) (point-max)))))
3205 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3206 ;; Internal functions
3209 (defsubst ps-font-alist
(font-sym)
3210 (get font-sym
'fonts
))
3212 (defun ps-font (font-sym font-type
)
3213 "Font family name for text of `font-type', when generating PostScript."
3214 (let* ((font-list (ps-font-alist font-sym
))
3215 (normal-font (cdr (assq 'normal font-list
))))
3216 (while (and font-list
(not (eq font-type
(car (car font-list
)))))
3217 (setq font-list
(cdr font-list
)))
3218 (or (cdr (car font-list
)) normal-font
)))
3220 (defun ps-fonts (font-sym)
3221 (mapcar 'cdr
(ps-font-alist font-sym
)))
3223 (defun ps-font-number (font-sym font-type
)
3224 (or (ps-alist-position font-type
(ps-font-alist font-sym
))
3227 (defsubst ps-line-height
(font-sym)
3228 "The height of a line, for generating PostScript.
3229 This is the value that ps-print uses to determine the height,
3230 y-dimension, of the lines of text it has printed, and thus affects the
3231 point at which page-breaks are placed.
3232 The line-height is *not* the same as the point size of the font."
3233 (get font-sym
'line-height
))
3235 (defsubst ps-title-line-height
(font-sym)
3236 "The height of a `title' line, for generating PostScript.
3237 This is the value that ps-print uses to determine the height,
3238 y-dimension, of the lines of text it has printed, and thus affects the
3239 point at which page-breaks are placed.
3240 The title-line-height is *not* the same as the point size of the font."
3241 (get font-sym
'title-line-height
))
3243 (defsubst ps-space-width
(font-sym)
3244 "The width of a space character, for generating PostScript.
3245 This value is used in expanding tab characters."
3246 (get font-sym
'space-width
))
3248 (defsubst ps-avg-char-width
(font-sym)
3249 "The average width, in points, of a character, for generating PostScript.
3250 This is the value that ps-print uses to determine the length,
3251 x-dimension, of the text it has printed, and thus affects the point at
3252 which long lines wrap around."
3253 (get font-sym
'avg-char-width
))
3255 (defun ps-line-lengths-internal ()
3256 "Display the correspondence between a line length and a font size,
3257 using the current ps-print setup.
3258 Try: pr -t file | awk '{printf \"%3d %s\n\", length($0), $0}' | sort -r | head"
3259 (let* ((ps-font-size-internal
3260 (or ps-font-size-internal
3261 (ps-get-font-size 'ps-font-size
)))
3262 (ps-header-font-size-internal
3263 (or ps-header-font-size-internal
3264 (ps-get-font-size 'ps-header-font-size
)))
3265 (ps-header-title-font-size-internal
3266 (or ps-header-title-font-size-internal
3267 (ps-get-font-size 'ps-header-title-font-size
)))
3268 (buf (get-buffer-create "*Line-lengths*"))
3269 (ifs ps-font-size-internal
) ; initial font size
3270 (icw (ps-avg-char-width 'ps-font-for-text
)) ; initial character width
3271 (print-width (progn (ps-get-page-dimensions)
3273 (ps-setup (ps-setup)) ; setup for the current buffer
3274 (fs-min 5) ; minimum font size
3275 cw-min
; minimum character width
3276 nb-cpl-max
; maximum nb of characters per line
3277 (fs-max 14) ; maximum font size
3278 cw-max
; maximum character width
3279 nb-cpl-min
; minimum nb of characters per line
3280 fs
; current font size
3281 cw
; current character width
3282 nb-cpl
; current nb of characters per line
3284 (setq cw-min
(/ (* icw fs-min
) ifs
)
3285 nb-cpl-max
(floor (/ print-width cw-min
))
3286 cw-max
(/ (* icw fs-max
) ifs
)
3287 nb-cpl-min
(floor (/ print-width cw-max
))
3290 (goto-char (point-max))
3291 (or (bobp) (insert "\n" (make-string 75 ?\
;) "\n"))
3293 "\nnb char per line / font size\n")
3294 (while (<= nb-cpl nb-cpl-max
)
3295 (setq cw
(/ print-width
(float nb-cpl
))
3296 fs
(/ (* ifs cw
) icw
))
3297 (insert (format "%16d %s\n" nb-cpl fs
))
3298 (setq nb-cpl
(1+ nb-cpl
)))
3300 (display-buffer buf
'not-this-window
)))
3302 (defun ps-nb-pages (nb-lines)
3303 "Display correspondence between font size and the number of pages.
3304 The correspondence is based on having NB-LINES lines of text,
3305 and on the current ps-print setup."
3306 (let* ((ps-font-size-internal
3307 (or ps-font-size-internal
3308 (ps-get-font-size 'ps-font-size
)))
3309 (ps-header-font-size-internal
3310 (or ps-header-font-size-internal
3311 (ps-get-font-size 'ps-header-font-size
)))
3312 (ps-header-title-font-size-internal
3313 (or ps-header-title-font-size-internal
3314 (ps-get-font-size 'ps-header-title-font-size
)))
3315 (buf (get-buffer-create "*Nb-Pages*"))
3316 (ifs ps-font-size-internal
) ; initial font size
3317 (ilh (ps-line-height 'ps-font-for-text
)) ; initial line height
3318 (page-height (progn (ps-get-page-dimensions)
3320 (ps-setup (ps-setup)) ; setup for the current buffer
3321 (fs-min 4) ; minimum font size
3322 lh-min
; minimum line height
3323 nb-lpp-max
; maximum nb of lines per page
3324 nb-page-min
; minimum nb of pages
3325 (fs-max 14) ; maximum font size
3326 lh-max
; maximum line height
3327 nb-lpp-min
; minimum nb of lines per page
3328 nb-page-max
; maximum nb of pages
3329 fs
; current font size
3330 lh
; current line height
3331 nb-lpp
; current nb of lines per page
3332 nb-page
; current nb of pages
3334 (setq lh-min
(/ (* ilh fs-min
) ifs
)
3335 nb-lpp-max
(floor (/ page-height lh-min
))
3336 nb-page-min
(ceiling (/ (float nb-lines
) nb-lpp-max
))
3337 lh-max
(/ (* ilh fs-max
) ifs
)
3338 nb-lpp-min
(floor (/ page-height lh-max
))
3339 nb-page-max
(ceiling (/ (float nb-lines
) nb-lpp-min
))
3340 nb-page nb-page-min
)
3342 (goto-char (point-max))
3343 (or (bobp) (insert "\n" (make-string 75 ?\
;) "\n"))
3345 (format "\nThere are %d lines.\n\n" nb-lines
)
3346 "nb page / font size\n")
3347 (while (<= nb-page nb-page-max
)
3348 (setq nb-lpp
(ceiling (/ nb-lines
(float nb-page
)))
3349 lh
(/ page-height nb-lpp
)
3350 fs
(/ (* ifs lh
) ilh
))
3351 (insert (format "%7d %s\n" nb-page fs
))
3352 (setq nb-page
(1+ nb-page
)))
3354 (display-buffer buf
'not-this-window
)))
3356 ;; macros used in `ps-select-font'
3357 (defmacro ps-lookup
(key) `(cdr (assq ,key font-entry
)))
3358 (defmacro ps-size-scale
(key) `(/ (* (ps-lookup ,key
) font-size
) size
))
3360 (defun ps-select-font (font-family sym font-size title-font-size
)
3361 (let ((font-entry (cdr (assq font-family ps-font-info-database
))))
3363 (error "Don't have data to scale font %s. Known fonts families are %s"
3365 (mapcar 'car ps-font-info-database
)))
3366 (let ((size (ps-lookup 'size
)))
3367 (put sym
'fonts
(ps-lookup 'fonts
))
3368 (put sym
'space-width
(ps-size-scale 'space-width
))
3369 (put sym
'avg-char-width
(ps-size-scale 'avg-char-width
))
3370 (put sym
'line-height
(ps-size-scale 'line-height
))
3371 (put sym
'title-line-height
3372 (/ (* (ps-lookup 'line-height
) title-font-size
) size
)))))
3374 (defun ps-get-page-dimensions ()
3375 (let ((page-dimensions (cdr (assq ps-paper-type ps-page-dimensions-database
)))
3376 page-width page-height
)
3378 ((null page-dimensions
)
3379 (error "`ps-paper-type' must be one of:\n%s"
3380 (mapcar 'car ps-page-dimensions-database
)))
3381 ((< ps-number-of-columns
1)
3382 (error "The number of columns %d should be positive"
3383 ps-number-of-columns
)))
3385 (ps-select-font ps-font-family
'ps-font-for-text
3386 ps-font-size-internal ps-font-size-internal
)
3387 (ps-select-font ps-header-font-family
'ps-font-for-header
3388 ps-header-font-size-internal
3389 ps-header-title-font-size-internal
)
3391 (setq page-width
(ps-page-dimensions-get-width page-dimensions
)
3392 page-height
(ps-page-dimensions-get-height page-dimensions
))
3395 (if ps-landscape-mode
3396 ;; exchange width and height
3397 (setq page-width
(prog1 page-height
(setq page-height page-width
))))
3399 ;; It is used to get the lower right corner (only in landscape mode)
3400 (setq ps-landscape-page-height page-height
)
3402 ;; | lm | text | ic | text | ic | text | rm |
3403 ;; page-width == lm + n * pw + (n - 1) * ic + rm
3404 ;; => pw == (page-width - lm -rm - (n - 1) * ic) / n
3405 (setq ps-print-width
(/ (- page-width
3406 ps-left-margin ps-right-margin
3407 (* (1- ps-number-of-columns
) ps-inter-column
))
3408 ps-number-of-columns
))
3409 (if (<= ps-print-width
0)
3410 (error "Bad horizontal layout:
3412 ps-left-margin == %s
3413 ps-right-margin == %s
3414 ps-inter-column == %s
3415 ps-number-of-columns == %s
3416 | lm | text | ic | text | ic | text | rm |
3417 page-width == lm + n * print-width + (n - 1) * ic + rm
3418 => print-width == %d !"
3423 ps-number-of-columns
3426 (setq ps-print-height
3427 (- page-height ps-bottom-margin ps-top-margin
))
3428 (if (<= ps-print-height
0)
3429 (error "Bad vertical layout:
3431 ps-bottom-margin == %s
3432 page-height == bm + print-height + tm
3433 => print-height == %d !"
3437 ;; If headers are turned on, deduct the height of the header from
3438 ;; the print height.
3440 (setq ps-header-pad
(* ps-header-line-pad
3441 (ps-title-line-height 'ps-font-for-header
))
3442 ps-print-height
(- ps-print-height
3445 (ps-title-line-height 'ps-font-for-header
)
3446 (* (ps-line-height 'ps-font-for-header
)
3447 (1- ps-header-lines
))
3449 (if (<= ps-print-height
0)
3450 (error "Bad vertical layout:
3452 ps-bottom-margin == %s
3453 ps-header-offset == %s
3456 page-height == bm + print-height + tm - ho - hh
3457 => print-height == %d !"
3463 (ps-title-line-height 'ps-font-for-header
)
3464 (* (ps-line-height 'ps-font-for-header
)
3465 (1- ps-header-lines
))
3469 (defun ps-print-preprint (prefix-arg)
3471 (or (numberp prefix-arg
)
3473 (let* ((name (concat (file-name-nondirectory (or (buffer-file-name)
3476 (prompt (format "Save PostScript to file: (default %s) " name
))
3477 (res (read-file-name prompt default-directory name nil
)))
3478 (while (cond ((not (file-writable-p res
))
3480 (setq prompt
"is unwritable"))
3481 ((file-exists-p res
)
3482 (setq prompt
"exists")
3483 (not (y-or-n-p (format "File `%s' exists; overwrite? "
3486 (setq res
(read-file-name
3487 (format "File %s; save PostScript to file: " prompt
)
3488 (file-name-directory res
) nil nil
3489 (file-name-nondirectory res
))))
3490 (if (file-directory-p res
)
3491 (expand-file-name name
(file-name-as-directory res
))
3494 ;; The following functions implement a simple list-buffering scheme so
3495 ;; that ps-print doesn't have to repeatedly switch between buffers
3496 ;; while spooling. The functions `ps-output' and `ps-output-string' build
3497 ;; up the lists; the function `ps-flush-output' takes the lists and
3498 ;; insert its contents into the spool buffer (*PostScript*).
3500 (defvar ps-string-escape-codes
3501 (let ((table (make-vector 256 nil
))
3503 ;; control characters
3504 (while (<= char ?
\037)
3505 (aset table char
(format "\\%03o" char
))
3506 (setq char
(1+ char
)))
3507 ;; printable characters
3508 (while (< char ?
\177)
3509 (aset table char
(format "%c" char
))
3510 (setq char
(1+ char
)))
3511 ;; DEL and 8-bit characters
3512 (while (<= char ?
\377)
3513 (aset table char
(format "\\%o" char
))
3514 (setq char
(1+ char
)))
3515 ;; Override ASCII formatting characters with named escape code:
3516 (aset table ?
\n "\\n") ; [NL] linefeed
3517 (aset table ?
\r "\\r") ; [CR] carriage return
3518 (aset table ?
\t "\\t") ; [HT] horizontal tab
3519 (aset table ?
\b "\\b") ; [BS] backspace
3520 (aset table ?
\f "\\f") ; [NP] form feed
3521 ;; Escape PostScript escape and string delimiter characters:
3522 (aset table ?
\\ "\\\\")
3523 (aset table ?\
( "\\(")
3524 (aset table ?\
) "\\)")
3526 "Vector used to map characters to PostScript string escape codes.")
3528 (defun ps-output-string-prim (string)
3529 (insert "(") ;insert start-string delimiter
3530 (save-excursion ;insert string
3531 (insert (string-as-unibyte string
)))
3532 ;; Find and quote special characters as necessary for PS
3533 ;; This skips everything except control chars, non-ASCII chars, (, ) and \.
3534 (while (progn (skip-chars-forward " -'*-[]-~") (not (eobp)))
3535 (let ((special (following-char)))
3537 (insert (aref ps-string-escape-codes special
))))
3538 (goto-char (point-max))
3539 (insert ")")) ;insert end-string delimiter
3541 (defun ps-init-output-queue ()
3542 (setq ps-output-head
(list "")
3543 ps-output-tail ps-output-head
))
3546 (defun ps-selected-pages ()
3548 (setq ps-first-page
(car (car ps-selected-pages
))
3549 ps-last-page
(cdr (car ps-selected-pages
))
3550 ps-selected-pages
(cdr ps-selected-pages
))
3551 (and ps-selected-pages
3552 (< ps-last-page ps-page-postscript
)))))
3555 (defsubst ps-print-page-p
()
3556 (and (cond ((null ps-first-page
))
3557 ((<= ps-page-postscript ps-last-page
)
3558 (<= ps-first-page ps-page-postscript
))
3561 (and (<= ps-first-page ps-page-postscript
)
3562 (<= ps-page-postscript ps-last-page
)))
3565 (cond ((eq ps-even-or-odd-pages
'even
)
3566 (= (logand ps-page-postscript
1) 0))
3567 ((eq ps-even-or-odd-pages
'odd
)
3568 (= (logand ps-page-postscript
1) 1))
3573 (defun ps-output (&rest args
)
3574 (when (ps-print-page-p)
3575 (setcdr ps-output-tail args
)
3576 (while (cdr ps-output-tail
)
3577 (setq ps-output-tail
(cdr ps-output-tail
)))))
3579 (defun ps-output-string (string)
3580 (ps-output t string
))
3582 (defun ps-output-list (the-list)
3583 (mapcar 'ps-output the-list
))
3585 ;; Output strings in the list ARGS in the PostScript prologue part.
3586 (defun ps-output-prologue (args)
3587 (ps-output 'prologue
(if (stringp args
) (list args
) args
)))
3589 (defun ps-flush-output ()
3591 (set-buffer ps-spool-buffer
)
3592 (goto-char (point-max))
3593 (while ps-output-head
3594 (let ((it (car ps-output-head
)))
3597 (setq ps-output-head
(cdr ps-output-head
))
3598 (ps-output-string-prim (car ps-output-head
)))
3600 (setq ps-output-head
(cdr ps-output-head
))
3602 (search-backward "\nBeginDoc")
3604 (apply 'insert
(car ps-output-head
))))
3607 (setq ps-output-head
(cdr ps-output-head
))))
3608 (ps-init-output-queue))
3610 (defun ps-insert-file (fname)
3613 (set-buffer ps-spool-buffer
)
3614 (goto-char (point-max))
3615 (insert-file fname
)))
3617 ;; These functions insert the arrays that define the contents of the
3620 (defun ps-generate-header-line (fonttag &optional content
)
3621 (ps-output " [ " fonttag
" ")
3623 ;; Literal strings should be output as is -- the string must
3624 ;; contain its own PS string delimiters, '(' and ')', if necessary.
3626 (ps-output content
))
3628 ;; Functions are called -- they should return strings; they will be
3629 ;; inserted as strings and the PS string delimiters added.
3630 ((and (symbolp content
) (fboundp content
))
3631 (ps-output-string (funcall content
)))
3633 ;; Variables will have their contents inserted. They should
3634 ;; contain strings, and will be inserted as strings.
3635 ((and (symbolp content
) (boundp content
))
3636 (ps-output-string (symbol-value content
)))
3638 ;; Anything else will get turned into an empty string.
3640 (ps-output-string "")))
3643 (defun ps-generate-header (name contents
)
3644 (ps-output "/" name
" [\n")
3645 (if (> ps-header-lines
0)
3647 (ps-generate-header-line "/h0" (car contents
))
3648 (while (and (< count ps-header-lines
)
3649 (setq contents
(cdr contents
)))
3650 (ps-generate-header-line "/h1" (car contents
))
3651 (setq count
(1+ count
)))
3652 (ps-output "] def\n"))))
3655 (defun ps-output-boolean (name bool
)
3656 (ps-output (format "/%s %s def\n" name
(if bool
"true" "false"))))
3659 (defun ps-background-pages (page-list func
)
3663 (let ((start (if (consp pages
) (car pages
) pages
))
3664 (end (if (consp pages
) (cdr pages
) pages
)))
3665 (and (integerp start
) (integerp end
) (<= start end
)
3666 (add-to-list 'ps-background-pages
(vector start end func
)))))
3668 (setq ps-background-all-pages
(cons func ps-background-all-pages
))))
3671 (defconst ps-boundingbox-re
3673 \\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)\\s-+\\([0-9.]+\\)")
3676 (defun ps-get-boundingbox ()
3678 (set-buffer ps-spool-buffer
)
3680 (if (re-search-forward ps-boundingbox-re nil t
)
3681 (vector (string-to-number ; lower x
3682 (buffer-substring (match-beginning 1) (match-end 1)))
3683 (string-to-number ; lower y
3684 (buffer-substring (match-beginning 2) (match-end 2)))
3685 (string-to-number ; upper x
3686 (buffer-substring (match-beginning 3) (match-end 3)))
3687 (string-to-number ; upper y
3688 (buffer-substring (match-beginning 4) (match-end 4))))
3689 (vector 0 0 0 0)))))
3692 ;; Emacs understands the %f format; we'll use it to limit color RGB values
3693 ;; to three decimals to cut down some on the size of the PostScript output.
3694 ;; Lucid emacsen will have to make do with %s (princ) for floats.
3696 (defvar ps-float-format
(if (eq ps-print-emacs-type
'emacs
)
3698 "%s ")) ; Lucid emacsen
3701 (defun ps-float-format (value &optional default
)
3702 (let ((literal (or value default
)))
3704 (format (if (numberp literal
)
3711 (defun ps-background-text ()
3714 (setq ps-background-text-count
(1+ ps-background-text-count
))
3715 (ps-output (format "/ShowBackText-%d{\n" ps-background-text-count
))
3716 (ps-output-string (nth 0 text
)) ; text
3719 (ps-float-format (nth 4 text
) 200.0) ; font size
3720 (format "/%s " (or (nth 3 text
) "Times-Roman")) ; font name
3721 (ps-float-format (nth 6 text
)
3722 "PrintHeight PrintPageWidth atan") ; rotation
3723 (ps-float-format (nth 5 text
) 0.85) ; gray
3724 (ps-float-format (nth 1 text
) "0") ; x position
3725 (ps-float-format (nth 2 text
) "0") ; y position
3726 "\nShowBackText}def\n")
3727 (ps-background-pages (nthcdr 7 text
) ; page list
3728 (format "ShowBackText-%d\n"
3729 ps-background-text-count
)))
3730 ps-print-background-text
))
3733 (defun ps-background-image ()
3736 (let ((image-file (expand-file-name (nth 0 image
))))
3737 (when (file-readable-p image-file
)
3738 (setq ps-background-image-count
(1+ ps-background-image-count
))
3740 (format "/ShowBackImage-%d{\n--back-- "
3741 ps-background-image-count
)
3742 (ps-float-format (nth 5 image
) 0.0) ; rotation
3743 (ps-float-format (nth 3 image
) 1.0) ; x scale
3744 (ps-float-format (nth 4 image
) 1.0) ; y scale
3745 (ps-float-format (nth 1 image
) ; x position
3746 "PrintPageWidth 2 div")
3747 (ps-float-format (nth 2 image
) ; y position
3748 "PrintHeight 2 div BottomMargin add")
3749 "\nBeginBackImage\n")
3750 (ps-insert-file image-file
)
3751 ;; coordinate adjustment to centralize image
3752 ;; around x and y position
3753 (let ((box (ps-get-boundingbox)))
3755 (set-buffer ps-spool-buffer
)
3757 (if (re-search-backward "^--back--" nil t
)
3761 (- (+ (/ (- (aref box
2) (aref box
0)) 2.0)
3764 (- (+ (/ (- (aref box
3) (aref box
1)) 2.0)
3767 (ps-output "\nEndBackImage}def\n")
3768 (ps-background-pages (nthcdr 6 image
) ; page list
3769 (format "ShowBackImage-%d\n"
3770 ps-background-image-count
)))))
3771 ps-print-background-image
))
3774 (defun ps-background (page-number)
3775 (let (has-local-background)
3776 (mapcar #'(lambda (range)
3777 (and (<= (aref range
0) page-number
)
3778 (<= page-number
(aref range
1))
3779 (if has-local-background
3780 (ps-output (aref range
2))
3781 (setq has-local-background t
)
3782 (ps-output "/printLocalBackground{\n"
3784 ps-background-pages
)
3785 (and has-local-background
(ps-output "}def\n"))))
3788 ;; Return a list of the distinct elements of LIST.
3789 ;; Elements are compared with `equal'.
3790 (defun ps-remove-duplicates (list)
3791 (let (new (tail list
))
3793 (or (member (car tail
) new
)
3794 (setq new
(cons (car tail
) new
)))
3795 (setq tail
(cdr tail
)))
3799 ;; Find the first occurrence of ITEM in LIST.
3800 ;; Return the index of the matching item, or nil if not found.
3801 ;; Elements are compared with `eq'.
3802 (defun ps-alist-position (item list
)
3803 (let ((tail list
) (index 0) found
)
3805 (if (setq found
(eq (car (car tail
)) item
))
3807 (setq index
(1+ index
)
3812 (defconst ps-n-up-database
3863 (2 t
1 2 0) ; adjusted by PostScript code
3906 (2 t
1 2 0) ; adjusted by PostScript code
3951 ;; Ledger paper size is a special case, it is the only paper size where the
3952 ;; normal size is landscaped, that is, the height is smaller than width.
3953 ;; So, we use the special value `pag' in the `landscape' field.
4002 (2 t
1 2 0) ; adjusted by PostScript code
4098 "Alist which is the page matrix database used for N-up printing.
4100 Each element has the following form:
4103 (MAX LANDSCAPE LINES COLUMNS COL-MISSING)
4107 PAGE is the page size used (see `ps-paper-type').
4108 MAX is the maximum elements of this page matrix.
4109 LANDSCAPE specifies if page matrix is landscaped, has the following valid
4111 nil the sheet is in portrait mode.
4112 t the sheet is in landscape mode.
4113 pag the sheet is in portrait mode and page is in landscape mode.
4114 LINES is the number of lines of page matrix.
4115 COLUMNS is the number of columns of page matrix.
4116 COL-MISSING is the number of columns missing to fill the sheet.")
4119 (defmacro ps-n-up-landscape
(mat) `(nth 1 ,mat
))
4120 (defmacro ps-n-up-lines
(mat) `(nth 2 ,mat
))
4121 (defmacro ps-n-up-columns
(mat) `(nth 3 ,mat
))
4122 (defmacro ps-n-up-missing
(mat) `(nth 4 ,mat
))
4125 (defun ps-n-up-printing ()
4126 ;; force `ps-n-up-printing' be in range 1 to 100.
4127 (setq ps-n-up-printing
(max (min ps-n-up-printing
100) 1))
4128 ;; find suitable page matrix for a given `ps-paper-type'.
4129 (let ((the-list (cdr (assq ps-paper-type ps-n-up-database
))))
4131 (while (> ps-n-up-printing
(caar the-list
))
4132 (setq the-list
(cdr the-list
))))
4136 (defconst ps-n-up-filling-database
4138 "PageWidth" ; N-Up-XColumn
4140 "N-Up-End 1 sub PageWidth mul neg" ; N-Up-XLine
4141 "LandscapePageHeight neg" ; N-Up-YLine
4142 "N-Up-Lines" ; N-Up-Repeat
4143 "N-Up-Columns" ; N-Up-End
4147 "PageWidth" ; N-Up-XColumn
4149 "N-Up-End 1 sub PageWidth mul neg" ; N-Up-XLine
4150 "LandscapePageHeight" ; N-Up-YLine
4151 "N-Up-Lines" ; N-Up-Repeat
4152 "N-Up-Columns" ; N-Up-End
4154 "N-Up-Repeat 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
4156 "PageWidth neg" ; N-Up-XColumn
4158 "N-Up-End 1 sub PageWidth mul" ; N-Up-XLine
4159 "LandscapePageHeight neg" ; N-Up-YLine
4160 "N-Up-Lines" ; N-Up-Repeat
4161 "N-Up-Columns" ; N-Up-End
4162 "N-Up-End 1 sub PageWidth mul" ; N-Up-XStart
4165 "PageWidth neg" ; N-Up-XColumn
4167 "N-Up-End 1 sub PageWidth mul" ; N-Up-XLine
4168 "LandscapePageHeight" ; N-Up-YLine
4169 "N-Up-Lines" ; N-Up-Repeat
4170 "N-Up-Columns" ; N-Up-End
4171 "N-Up-End 1 sub PageWidth mul" ; N-Up-XStart
4172 "N-Up-Repeat 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
4175 "LandscapePageHeight neg" ; N-Up-YColumn
4176 "PageWidth" ; N-Up-XLine
4177 "N-Up-End 1 sub LandscapePageHeight mul" ; N-Up-YLine
4178 "N-Up-Columns" ; N-Up-Repeat
4179 "N-Up-Lines" ; N-Up-End
4184 "LandscapePageHeight" ; N-Up-YColumn
4185 "PageWidth" ; N-Up-XLine
4186 "N-Up-End 1 sub LandscapePageHeight mul neg" ; N-Up-YLine
4187 "N-Up-Columns" ; N-Up-Repeat
4188 "N-Up-Lines" ; N-Up-End
4190 "N-Up-End 1 sub LandscapePageHeight mul neg") ; N-Up-YStart
4193 "LandscapePageHeight neg" ; N-Up-YColumn
4194 "PageWidth neg" ; N-Up-XLine
4195 "N-Up-End 1 sub LandscapePageHeight mul" ; N-Up-YLine
4196 "N-Up-Columns" ; N-Up-Repeat
4197 "N-Up-Lines" ; N-Up-End
4198 "N-Up-Repeat 1 sub PageWidth mul" ; N-Up-XStart
4202 "LandscapePageHeight" ; N-Up-YColumn
4203 "PageWidth neg" ; N-Up-XLine
4204 "N-Up-End 1 sub LandscapePageHeight mul neg" ; N-Up-YLine
4205 "N-Up-Columns" ; N-Up-Repeat
4206 "N-Up-Lines" ; N-Up-End
4207 "N-Up-Repeat 1 sub PageWidth mul" ; N-Up-XStart
4208 "N-Up-End 1 sub LandscapePageHeight mul neg")) ; N-Up-YStart
4209 "Alist for n-up printing initializations.
4211 Each element has the following form:
4213 (KIND XCOL YCOL XLIN YLIN REPEAT END XSTART YSTART)
4216 KIND is a valid value of `ps-n-up-filling'.
4217 XCOL YCOL are the relative position for the next column.
4218 XLIN YLIN are the relative position for the beginning of next line.
4219 REPEAT is the number of repetions for external loop.
4220 END is the number of repetions for internal loop and also the number of pages in
4222 XSTART YSTART are the relative position for the first page in a sheet.")
4225 (defun ps-n-up-filling ()
4226 (cdr (or (assq ps-n-up-filling ps-n-up-filling-database
)
4227 (assq 'left-top ps-n-up-filling-database
))))
4230 (defmacro ps-n-up-xcolumn
(init) `(nth 0 ,init
))
4231 (defmacro ps-n-up-ycolumn
(init) `(nth 1 ,init
))
4232 (defmacro ps-n-up-xline
(init) `(nth 2 ,init
))
4233 (defmacro ps-n-up-yline
(init) `(nth 3 ,init
))
4234 (defmacro ps-n-up-repeat
(init) `(nth 4 ,init
))
4235 (defmacro ps-n-up-end
(init) `(nth 5 ,init
))
4236 (defmacro ps-n-up-xstart
(init) `(nth 6 ,init
))
4237 (defmacro ps-n-up-ystart
(init) `(nth 7 ,init
))
4240 (defconst ps-error-handler-alist
4244 (paper-and-system .
3))
4245 "Alist for error handler message")
4248 (defun ps-begin-file ()
4249 (ps-get-page-dimensions)
4250 (setq ps-page-postscript
0
4252 ps-background-text-count
0
4253 ps-background-image-count
0
4254 ps-background-pages nil
4255 ps-background-all-pages nil
)
4257 (let ((dimensions (cdr (assq ps-paper-type ps-page-dimensions-database
)))
4258 (tumble (if ps-landscape-mode
(not ps-spool-tumble
) ps-spool-tumble
))
4259 (n-up (ps-n-up-printing))
4260 (n-up-filling (ps-n-up-filling)))
4261 (and ps-n-up-on
(setq tumble
(not tumble
)))
4264 "%%Title: " (buffer-name) ; Take job name from name of
4265 ; first buffer printed
4266 "\n%%Creator: " (user-full-name)
4267 " (using ps-print v" ps-print-version
4268 ")\n%%CreationDate: "
4269 (time-stamp-hh:mm
:ss
) " " (time-stamp-mon-dd-yyyy)
4271 (if ps-landscape-mode
"Landscape" "Portrait")
4272 "\n%%DocumentNeededResources: font Times-Roman Times-Italic\n%%+ font "
4273 (mapconcat 'identity
4274 (ps-remove-duplicates
4275 (append (ps-fonts 'ps-font-for-text
)
4276 (list (ps-font 'ps-font-for-header
'normal
)
4277 (ps-font 'ps-font-for-header
'bold
))))
4279 "\n%%DocumentMedia: " (ps-page-dimensions-get-media dimensions
)
4280 (format " %d" (round (ps-page-dimensions-get-width dimensions
)))
4281 (format " %d" (round (ps-page-dimensions-get-height dimensions
)))
4282 " 0 () ()\n%%PageOrder: Ascend\n%%Pages: (atend)\n%%Requirements:"
4284 (if tumble
" duplex(tumble)\n" " duplex\n")
4287 (ps-insert-string ps-print-prologue-header
)
4289 (ps-output "%%EndComments\n%%BeginDefaults\n%%PageMedia: "
4290 (ps-page-dimensions-get-media dimensions
)
4291 "\n%%EndDefaults\n\n%%BeginPrologue\n\n"
4292 "/languagelevel where{pop}{/languagelevel 1 def}ifelse\n"
4293 (format "/ErrorMessage %s def\n\n"
4294 (or (cdr (assoc ps-error-handler-message
4295 ps-error-handler-alist
))
4298 "\n%%BeginProcSet: UserDefinedPrologue\n\n")
4300 (ps-insert-string ps-user-defined-prologue
)
4302 (ps-output "\n%%EndProcSet\n\n")
4304 (ps-output-boolean "LandscapeMode "
4305 (or ps-landscape-mode
4306 (eq (ps-n-up-landscape n-up
) 'pag
)))
4307 (ps-output-boolean "UpsideDown " ps-print-upside-down
)
4308 (ps-output (format "/NumberOfColumns %d def\n" ps-number-of-columns
)
4310 (format "/LandscapePageHeight %s def\n" ps-landscape-page-height
)
4311 (format "/PrintPageWidth %s def\n"
4312 (- (* (+ ps-print-width ps-inter-column
)
4313 ps-number-of-columns
)
4315 (format "/PrintWidth %s def\n" ps-print-width
)
4316 (format "/PrintHeight %s def\n" ps-print-height
)
4318 (format "/LeftMargin %s def\n" ps-left-margin
)
4319 (format "/RightMargin %s def\n" ps-right-margin
)
4320 (format "/InterColumn %s def\n" ps-inter-column
)
4322 (format "/BottomMargin %s def\n" ps-bottom-margin
)
4323 (format "/TopMargin %s def\n" ps-top-margin
) ; not used
4324 (format "/HeaderOffset %s def\n" ps-header-offset
)
4325 (format "/HeaderPad %s def\n" ps-header-pad
))
4327 (ps-output-boolean "PrintHeader " ps-print-header
)
4328 (ps-output-boolean "PrintOnlyOneHeader" ps-print-only-one-header
)
4329 (ps-output-boolean "PrintHeaderFrame " ps-print-header-frame
)
4330 (ps-output-boolean "SwitchHeader " (if (eq ps-switch-header
'duplex
)
4333 (ps-output-boolean "ShowNofN " ps-show-n-of-n
)
4335 (let ((line-height (ps-line-height 'ps-font-for-text
)))
4336 (ps-output (format "/LineHeight %s def\n" line-height
)
4337 (format "/LinesPerColumn %d def\n"
4338 (round (/ (+ ps-print-height
4339 (* line-height
0.45))
4342 (ps-output-boolean "WarnPaperSize " ps-warn-paper-type
)
4343 (ps-output-boolean "Zebra " ps-zebra-stripes
)
4344 (ps-output-boolean "ZebraFollow " ps-zebra-stripe-follow
)
4345 (ps-output-boolean "PrintLineNumber " ps-line-number
)
4346 (ps-output-boolean "SyncLineZebra " (not (integerp ps-line-number-step
)))
4347 (ps-output (format "/PrintLineStep %d def\n"
4348 (if (integerp ps-line-number-step
)
4350 ps-zebra-stripe-height
))
4351 (format "/PrintLineStart %d def\n" ps-line-number-start
)
4352 (format "/ZebraHeight %d def\n" ps-zebra-stripe-height
)
4354 (ps-format-color ps-zebra-color
0.95)
4355 "def\n/BackgroundColor "
4356 (ps-format-color ps-default-bg
1.0)
4357 "def\n/UseSetpagedevice "
4358 (if (eq ps-spool-config
'setpagedevice
)
4359 "/setpagedevice where{pop languagelevel 2 eq}{false}ifelse"
4361 " def\n\n/PageWidth "
4362 "PrintPageWidth LeftMargin add RightMargin add def\n\n"
4363 (format "/N-Up %d def\n" ps-n-up-printing
))
4364 (ps-output-boolean "N-Up-Landscape" (eq (ps-n-up-landscape n-up
) t
))
4365 (ps-output-boolean "N-Up-Border " ps-n-up-border-p
)
4366 (ps-output (format "/N-Up-Lines %d def\n" (ps-n-up-lines n-up
))
4367 (format "/N-Up-Columns %d def\n" (ps-n-up-columns n-up
))
4368 (format "/N-Up-Missing %d def\n" (ps-n-up-missing n-up
))
4369 (format "/N-Up-Margin %s def\n" ps-n-up-margin
)
4371 (if ps-landscape-mode
4372 (ps-n-up-end n-up-filling
)
4373 (ps-n-up-repeat n-up-filling
))
4375 (if ps-landscape-mode
4376 (ps-n-up-repeat n-up-filling
)
4377 (ps-n-up-end n-up-filling
))
4378 " def\n/N-Up-XColumn " (ps-n-up-xcolumn n-up-filling
)
4379 " def\n/N-Up-YColumn " (ps-n-up-ycolumn n-up-filling
)
4380 " def\n/N-Up-XLine " (ps-n-up-xline n-up-filling
)
4381 " def\n/N-Up-YLine " (ps-n-up-yline n-up-filling
)
4382 " def\n/N-Up-XStart " (ps-n-up-xstart n-up-filling
)
4383 " def\n/N-Up-YStart " (ps-n-up-ystart n-up-filling
) " def\n")
4385 (ps-background-text)
4386 (ps-background-image)
4387 (setq ps-background-all-pages
(nreverse ps-background-all-pages
)
4388 ps-background-pages
(nreverse ps-background-pages
))
4390 (ps-output "\n" ps-print-prologue-1
)
4392 (ps-output "\n/printGlobalBackground{\n")
4393 (ps-output-list ps-background-all-pages
)
4394 (ps-output "}def\n/printLocalBackground{\n}def\n")
4397 (ps-output (format "/h0 %s(%s)cvn DefFont\n" ; /h0 14 /Helvetica-Bold DefFont
4398 ps-header-title-font-size-internal
4399 (ps-font 'ps-font-for-header
'bold
))
4400 (format "/h1 %s(%s)cvn DefFont\n" ; /h1 12 /Helvetica DefFont
4401 ps-header-font-size-internal
4402 (ps-font 'ps-font-for-header
'normal
)))
4404 (ps-output "\n" ps-print-prologue-2
"\n")
4407 (let ((font (ps-font-alist 'ps-font-for-text
))
4410 (ps-output (format "/f%d %s(%s)cvn DefFont\n"
4412 ps-font-size-internal
4413 (ps-font 'ps-font-for-text
(car (car font
)))))
4414 (setq font
(cdr font
)
4417 (let ((font-entry (cdr (assq ps-font-family ps-font-info-database
))))
4418 (ps-output (format "/SpaceWidthRatio %f def\n"
4419 (/ (ps-lookup 'space-width
) (ps-lookup 'size
)))))
4421 (ps-output "\n%%EndPrologue\n\n%%BeginSetup\n")
4422 (unless (eq ps-spool-config
'lpr-switches
)
4423 (ps-output "\n%%BeginFeature: *Duplex "
4424 (ps-boolean-capitalized ps-spool-duplex
)
4426 (ps-boolean-capitalized tumble
)
4427 "\nUseSetpagedevice\n{BMark/Duplex "
4428 (ps-boolean-constant ps-spool-duplex
)
4430 (ps-boolean-constant tumble
)
4431 " EMark setpagedevice}\n{statusdict begin "
4432 (ps-boolean-constant ps-spool-duplex
)
4434 (ps-boolean-constant tumble
)
4435 " settumble end}ifelse\n%%EndFeature\n")))
4436 (ps-output "\n%%BeginFeature: *ManualFeed "
4437 (ps-boolean-capitalized ps-manual-feed
)
4438 "\nBMark /ManualFeed "
4439 (ps-boolean-constant ps-manual-feed
)
4440 " EMark setpagedevice\n%%EndFeature\n"
4441 "\n/Lines 0 def\n/PageCount 0 def\n\nBeginDoc\n%%EndSetup\n")
4442 (and ps-banner-page-when-duplexing
4443 (ps-output "\n%%Page: banner 0\nsave showpage restore\n")))
4446 (defun ps-format-color (color &optional default
)
4447 (let ((the-color (if (stringp color
)
4448 (ps-color-scale color
)
4450 (if (and the-color
(listp the-color
))
4452 (format ps-color-format
4457 (ps-float-format (if (numberp the-color
) the-color default
)))))
4460 (defun ps-insert-string (prologue)
4461 (let ((str (if (functionp prologue
)
4468 (defun ps-boolean-capitalized (bool)
4469 (if bool
"True" "False"))
4472 (defun ps-boolean-constant (bool)
4473 (if bool
"true" "false"))
4476 (defun ps-header-dirpart ()
4477 (let ((fname (buffer-file-name)))
4479 (if (string-equal (buffer-name) (file-name-nondirectory fname
))
4480 (abbreviate-file-name (file-name-directory fname
))
4485 (defun ps-get-buffer-name ()
4487 ;; Indulge Jim this little easter egg:
4488 ((string= (buffer-name) "ps-print.el")
4489 "Hey, Cool! It's ps-print.el!!!")
4490 ;; Indulge Jack this other little easter egg:
4491 ((string= (buffer-name) "sokoban.el")
4492 "Super! C'est sokoban.el!")
4494 (and ps-printing-region-p
"Subset of: ")
4496 (and (buffer-modified-p) " (unsaved)")))))
4499 (defun ps-get-font-size (font-sym)
4500 (let ((font-size (symbol-value font-sym
)))
4501 (cond ((numberp font-size
)
4503 ((and (consp font-size
)
4504 (numberp (car font-size
))
4505 (numberp (cdr font-size
)))
4506 (if ps-landscape-mode
4510 (error "Invalid font size `%S' for `%S'" font-size font-sym
)))))
4513 (defun ps-begin-job ()
4515 (let ((last-char (aref ps-postscript-code-directory
4516 (1- (length ps-postscript-code-directory
)))))
4517 (or (eq last-char ?
/)
4518 (and ps-windows-system
(eq last-char ?
\\))
4519 (setq ps-postscript-code-directory
4520 (concat ps-postscript-code-directory
"/"))))
4521 (or (equal ps-mark-code-directory ps-postscript-code-directory
)
4522 (setq ps-print-prologue-0
(ps-prologue-file 0)
4523 ps-print-prologue-1
(ps-prologue-file 1)
4524 ps-print-prologue-2
(ps-prologue-file 2)
4525 ps-mark-code-directory ps-postscript-code-directory
))
4528 (while ps-selected-pages
4529 (setq page
(car ps-selected-pages
)
4530 ps-selected-pages
(cdr ps-selected-pages
))
4531 (cond ((integerp page
)
4533 (setq new
(cons (cons page page
) new
))))
4535 (and (integerp (car page
)) (integerp (cdr page
))
4537 (<= (car page
) (cdr page
))
4538 (setq new
(cons page new
))))))
4539 (setq ps-selected-pages
(sort new
#'(lambda (one other
)
4540 (< (car one
) (car other
))))
4541 ps-last-selected-pages ps-selected-pages
4545 (or (listp ps-use-face-background
)
4546 (setq ps-use-face-background t
))
4548 (and (integerp ps-line-number-step
)
4549 (<= ps-line-number-step
0)
4550 (setq ps-line-number-step
1))
4551 (setq ps-n-up-on
(> ps-n-up-printing
1)
4552 ps-line-number-start
(max 1 (min ps-line-number-start
4553 (if (integerp ps-line-number-step
)
4555 ps-zebra-stripe-height
))))
4558 (set-buffer ps-spool-buffer
)
4559 (goto-char (point-max))
4560 (and (re-search-backward "^%%Trailer$" nil t
)
4561 (delete-region (match-beginning 0) (point-max))))
4563 (setq ps-showline-count
(car ps-printing-region
)
4565 ps-font-size-internal
(ps-get-font-size 'ps-font-size
)
4566 ps-header-font-size-internal
(ps-get-font-size 'ps-header-font-size
)
4567 ps-header-title-font-size-internal
4568 (ps-get-font-size 'ps-header-title-font-size
)
4569 ps-control-or-escape-regexp
4570 (cond ((eq ps-print-control-characters
'8-bit
)
4571 (string-as-unibyte "[\000-\037\177-\377]"))
4572 ((eq ps-print-control-characters
'control-8-bit
)
4573 (string-as-unibyte "[\000-\037\177-\237]"))
4574 ((eq ps-print-control-characters
'control
)
4577 ps-default-foreground
(ps-rgb-color ps-default-fg
0.0)
4578 ps-default-color
(and ps-print-color-p ps-default-foreground
)
4579 ps-current-color ps-default-color
4580 ;; Set the color scale. We do it here instead of in the defvar so
4581 ;; that ps-print can be dumped into emacs. This expression can't be
4582 ;; evaluated at dump-time because X isn't initialized.
4583 ps-color-p
(and ps-print-color-p
(ps-color-device))
4584 ps-print-color-scale
(if ps-color-p
4585 (float (car (ps-color-values "white")))
4589 (defun ps-rgb-color (color default
)
4590 (cond ((and color
(listp color
)) color
)
4591 ((stringp color
) (ps-color-scale color
))
4592 ((numberp color
) (list color color color
))
4593 (t (list default default default
))
4597 (defmacro ps-page-number
()
4598 `(1+ (/ (1- ps-page-count
) ps-number-of-columns
)))
4600 (defun ps-end-file (needs-begin-file)
4602 ;; Back to the PS output buffer to set the last page n-up printing
4604 (let ((pages-per-sheet (mod ps-page-postscript ps-n-up-printing
))
4606 (set-buffer ps-spool-buffer
)
4607 (goto-char (point-max))
4608 (and (> pages-per-sheet
0)
4609 (re-search-backward "^[0-9]+ BeginSheet$" nil t
)
4610 (replace-match (format "%d BeginSheet" pages-per-sheet
) t
))))
4612 (and ps-spool-duplex
(= (mod ps-page-order
2) 1)
4613 (let (ps-first-page)
4615 ;; Set end of PostScript file
4617 (ps-output "EndSheet\n"))
4618 (setq ps-first-page nil
) ; disable selected pages
4619 (ps-output "\n%%Trailer\n%%Pages: "
4621 (if (and needs-begin-file ps-banner-page-when-duplexing
)
4624 "\n\nEndDoc\n\n%%EOF\n"))
4627 (defun ps-next-page ()
4633 (defun ps-header-sheet ()
4634 ;; Print only when a new sheet begins.
4635 (let ((print-posterior (ps-print-page-p)))
4636 (setq ps-page-postscript
(1+ ps-page-postscript
))
4637 (cond ((ps-print-page-p)
4638 (setq ps-page-order
(1+ ps-page-order
))
4639 (and print-posterior
(> ps-page-order
1)
4640 (ps-output "EndSheet\n"))
4641 (ps-output (if ps-n-up-on
4642 (format "\n%%%%Page: (%d \\(%d\\)) %d\n"
4643 ps-page-order ps-page-postscript ps-page-order
)
4644 (format "\n%%%%Page: %d %d\n"
4645 ps-page-postscript ps-page-order
))
4646 (format "%d BeginSheet\nBeginDSCPage\n"
4649 (let (ps-first-page)
4650 (ps-output "EndSheet\n"))))))
4653 (defsubst ps-header-page
()
4654 ;; set total line and page number when printing has finished
4655 ;; (see `ps-generate')
4658 (zerop (mod ps-page-count ps-number-of-columns
))
4659 (setq ps-page-count
(1+ ps-page-count
)))
4661 (if (zerop (mod ps-page-postscript ps-n-up-printing
))
4662 ;; Print only when a new sheet begins.
4665 'ps-print-begin-sheet-hook
)
4666 ;; Print only when a new page begins.
4667 (setq ps-page-postscript
(1+ ps-page-postscript
))
4668 (ps-output "BeginDSCPage\n")
4669 'ps-print-begin-page-hook
)
4670 (ps-background ps-page-postscript
))
4671 ;; Print only when a new column begins.
4672 (ps-output "BeginDSCPage\n")
4673 'ps-print-begin-column-hook
)))
4675 (defun ps-begin-page ()
4676 (ps-get-page-dimensions)
4677 (setq ps-width-remaining ps-print-width
4678 ps-height-remaining ps-print-height
)
4682 (ps-output (format "/LineNumber %d def\n" ps-showline-count
)
4683 (format "/PageNumber %d def\n" (if ps-print-only-one-header
4687 (when ps-print-header
4688 (ps-generate-header "HeaderLinesLeft" ps-left-header
)
4689 (ps-generate-header "HeaderLinesRight" ps-right-header
)
4690 (ps-output (format "%d SetHeaderLines\n" ps-header-lines
)))
4692 (ps-output "BeginPage\n")
4693 (ps-set-font ps-current-font
)
4694 (ps-set-bg ps-current-bg
)
4695 (ps-set-color ps-current-color
)
4696 (ps-mule-begin-page))
4698 (defun ps-end-page ()
4699 (ps-output "EndPage\nEndDSCPage\n"))
4701 (defun ps-dummy-page ()
4702 (let ((ps-n-up-printing 0))
4704 (ps-output "/PrintHeader false def
4706 /PrintLineNumber false def
4710 (setq ps-page-postscript ps-n-up-printing
))
4712 (defun ps-next-line ()
4713 (setq ps-showline-count
(1+ ps-showline-count
))
4714 (let ((lh (ps-line-height 'ps-font-for-text
)))
4715 (if (< ps-height-remaining lh
)
4717 (setq ps-width-remaining ps-print-width
4718 ps-height-remaining
(- ps-height-remaining lh
))
4719 (ps-output "HL\n"))))
4721 (defun ps-continue-line ()
4722 (let ((lh (ps-line-height 'ps-font-for-text
)))
4723 (if (< ps-height-remaining lh
)
4725 (setq ps-width-remaining ps-print-width
4726 ps-height-remaining
(- ps-height-remaining lh
))
4727 (ps-output "SL\n"))))
4729 (defun ps-find-wrappoint (from to char-width
)
4730 (let ((avail (truncate (/ ps-width-remaining char-width
)))
4733 (cons to
(* todo char-width
))
4734 (cons (+ from avail
) ps-width-remaining
))))
4736 (defun ps-basic-plot-string (from to
&optional bg-color
)
4737 (let* ((wrappoint (ps-find-wrappoint from to
4738 (ps-avg-char-width 'ps-font-for-text
)))
4739 (to (car wrappoint
))
4740 (string (buffer-substring-no-properties from to
)))
4741 (ps-mule-prepare-ascii-font string
)
4742 (ps-output-string string
)
4746 (defun ps-basic-plot-whitespace (from to
&optional bg-color
)
4747 (let* ((wrappoint (ps-find-wrappoint from to
4748 (ps-space-width 'ps-font-for-text
)))
4749 (to (car wrappoint
)))
4750 (ps-output (format "%d W\n" (- to from
)))
4753 (defun ps-plot (plotfunc from to
&optional bg-color
)
4755 (let* ((wrappoint (funcall plotfunc from to bg-color
))
4756 (plotted-to (car wrappoint
))
4757 (plotted-width (cdr wrappoint
)))
4758 (setq from plotted-to
4759 ps-width-remaining
(- ps-width-remaining plotted-width
))
4761 (ps-continue-line))))
4762 (if ps-razzle-dazzle
4763 (let* ((q-todo (- (point-max) (point-min)))
4764 (q-done (- (point) (point-min)))
4765 (chunkfrac (/ q-todo
8))
4766 (chunksize (min chunkfrac
1000)))
4767 (if (> (- q-done ps-razchunk
) chunksize
)
4769 (setq ps-razchunk q-done
)
4770 (message "Formatting...%3d%%"
4772 (/ (* 100 q-done
) q-todo
)
4773 (/ q-done
(/ q-todo
100)))
4776 (defvar ps-last-font nil
)
4778 (defun ps-set-font (font)
4779 (setq ps-last-font
(format "f%d" (setq ps-current-font font
)))
4780 (ps-output (format "/%s F\n" ps-last-font
)))
4782 (defun ps-set-bg (color)
4783 (if (setq ps-current-bg color
)
4784 (ps-output (format ps-color-format
4785 (nth 0 color
) (nth 1 color
) (nth 2 color
))
4787 (ps-output "false BG\n")))
4789 (defun ps-set-color (color)
4790 (setq ps-current-color
(or color ps-default-foreground
))
4791 (ps-output (format ps-color-format
4792 (nth 0 ps-current-color
)
4793 (nth 1 ps-current-color
) (nth 2 ps-current-color
))
4797 (defvar ps-current-effect
0)
4800 (defun ps-plot-region (from to font
&optional fg-color bg-color effects
)
4801 (if (not (equal font ps-current-font
))
4804 ;; Specify a foreground color only if one's specified and it's
4805 ;; different than the current.
4806 (if (not (equal fg-color ps-current-color
))
4807 (ps-set-color fg-color
))
4809 (if (not (equal bg-color ps-current-bg
))
4810 (ps-set-bg bg-color
))
4812 ;; Specify effects (underline, overline, box, etc)
4814 ((not (integerp effects
))
4815 (ps-output "0 EF\n")
4816 (setq ps-current-effect
0))
4817 ((/= effects ps-current-effect
)
4818 (ps-output (number-to-string effects
) " EF\n")
4819 (setq ps-current-effect effects
)))
4821 ;; Starting at the beginning of the specified region...
4825 ;; ...break the region up into chunks separated by tabs, linefeeds,
4826 ;; pagefeeds, control characters, and plot each chunk.
4828 (if (re-search-forward ps-control-or-escape-regexp to t
)
4829 ;; region with some control characters or some multi-byte characters
4830 (let* ((match-point (match-beginning 0))
4831 (match (char-after match-point
))
4832 (composition (find-composition from
(1+ match-point
))))
4834 (if (and (nth 2 composition
)
4835 (<= (car composition
) match-point
))
4837 (setq match-point
(car composition
)
4839 (goto-char (nth 1 composition
)))
4840 (setq composition nil
)))
4841 (when (< from match-point
)
4842 (ps-mule-set-ascii-font)
4843 (ps-plot 'ps-basic-plot-string from match-point bg-color
))
4845 ((= match ?
\t) ; tab
4846 (let ((linestart (line-beginning-position)))
4848 (setq from
(+ linestart
(current-column)))
4849 (when (re-search-forward "[ \t]+" to t
)
4850 (ps-mule-set-ascii-font)
4851 (ps-plot 'ps-basic-plot-whitespace
4852 from
(+ linestart
(current-column))
4855 ((= match ?
\n) ; newline
4858 ((= match ?
\f) ; form feed
4859 ;; do not skip page if previous character is NEWLINE and
4860 ;; it is a beginning of page.
4861 (or (and (equal (char-after (1- match-point
)) ?
\n)
4862 (= ps-height-remaining ps-print-height
))
4865 (composition ; a composite sequence
4866 (ps-plot 'ps-mule-plot-composition match-point
(point) bg-color
))
4868 ; characters from ^@ to ^_ and
4869 ((> match
255) ; a multi-byte character
4870 (let* ((charset (char-charset match
))
4871 (composition (find-composition match-point to
))
4872 (stop (if (nth 2 composition
) (car composition
) to
)))
4873 (or (eq charset
'composition
)
4874 (while (and (< (point) stop
) (eq (charset-after) charset
))
4876 (ps-plot 'ps-mule-plot-string match-point
(point) bg-color
)))
4878 (t ; characters from 127 to 255
4879 (ps-control-character match
)))
4880 (setq from
(point)))
4881 ;; region without control characters nor multi-byte characters
4882 (ps-mule-set-ascii-font)
4883 (ps-plot 'ps-basic-plot-string from to bg-color
)
4886 (defvar ps-string-control-codes
4887 (let ((table (make-vector 256 nil
))
4889 ;; control character
4890 (while (<= char ?
\037)
4891 (aset table char
(format "^%c" (+ char ?
@)))
4892 (setq char
(1+ char
)))
4893 ;; printable character
4894 (while (< char ?
\177)
4895 (aset table char
(format "%c" char
))
4896 (setq char
(1+ char
)))
4898 (aset table char
"^?")
4900 (while (<= (setq char
(1+ char
)) ?
\377)
4901 (aset table char
(format "\\%o" char
)))
4903 "Vector used to map characters to a printable string.")
4905 (defun ps-control-character (char)
4906 (let* ((str (aref ps-string-control-codes char
))
4910 (char-width (ps-avg-char-width 'ps-font-for-text
))
4911 (wrappoint (ps-find-wrappoint from to char-width
)))
4912 (if (< (car wrappoint
) to
)
4914 (setq ps-width-remaining
(- ps-width-remaining
(* len char-width
)))
4915 (ps-mule-prepare-ascii-font str
)
4916 (ps-output-string str
)
4917 (ps-output " S\n")))
4919 (defun ps-color-scale (color)
4920 ;; Scale 16-bit X-COLOR-VALUE to PostScript color value in [0, 1] interval.
4921 (mapcar #'(lambda (value) (/ value ps-print-color-scale
))
4922 (ps-color-values color
)))
4925 (defun ps-xemacs-color-name (color)
4926 (if (color-specifier-p color
)
4931 (cond ((eq ps-print-emacs-type
'emacs
) ; emacs
4933 (defun ps-color-values (x-color)
4934 (if (fboundp 'x-color-values
)
4935 (x-color-values x-color
)
4936 (error "No available function to determine X color values.")))
4942 (or (find-coding-system 'raw-text-unix
)
4943 (copy-coding-system 'no-conversion-unix
'raw-text-unix
))
4945 (defun ps-color-values (x-color)
4946 (let ((color (ps-xemacs-color-name x-color
)))
4948 ((fboundp 'x-color-values
)
4949 (x-color-values color
))
4950 ((and (fboundp 'color-instance-rgb-components
)
4952 (color-instance-rgb-components
4953 (if (color-instance-p x-color
)
4955 (make-color-instance color
))))
4957 (error "No available function to determine X color values.")))))
4961 (defun ps-face-attributes (face)
4962 "Return face attribute vector.
4964 If FACE is not in `ps-print-face-extension-alist' or in
4965 `ps-print-face-alist', insert it on `ps-print-face-alist' and
4966 return the attribute vector.
4968 If FACE is not a valid face name, it is used default face."
4971 (cdr (or (assq face ps-print-face-extension-alist
)
4972 (assq face ps-print-face-alist
)
4973 (let* ((the-face (if (facep face
) face
'default
))
4974 (new-face (ps-screen-to-bit-face the-face
)))
4975 (or (and (eq the-face
'default
)
4976 (assq the-face ps-print-face-alist
))
4977 (setq ps-print-face-alist
4978 (cons new-face ps-print-face-alist
)))
4980 ((eq (car face
) 'foreground-color
)
4981 (vector 0 (cdr face
) nil
))
4982 ((eq (car face
) 'background-color
)
4983 (vector 0 nil
(cdr face
)))
4985 (vector 0 nil nil
))))
4988 (defun ps-face-background (face background
)
4989 (and (or (eq ps-use-face-background t
)
4990 (cond ((symbolp face
)
4991 (memq face ps-use-face-background
))
4993 (or (memq (car face
) '(foreground-color background-color
))
4996 (if (or (memq (car face
) ps-use-face-background
)
4998 '(foreground-color background-color
)))
5001 (setq face
(cdr face
))))
5009 (defun ps-face-attribute-list (face-or-list)
5012 ((not (listp face-or-list
))
5013 (ps-face-attributes face-or-list
))
5014 ;; only foreground color, not a `real' face
5015 ((eq (car face-or-list
) 'foreground-color
)
5016 (vector 0 (cdr face-or-list
) nil
))
5017 ;; only background color, not a `real' face
5018 ((eq (car face-or-list
) 'background-color
)
5019 (vector 0 nil
(cdr face-or-list
)))
5023 foreground background face-attr face
)
5025 (setq face
(car face-or-list
)
5026 face-or-list
(cdr face-or-list
)
5027 face-attr
(ps-face-attributes face
)
5028 effects
(logior effects
(aref face-attr
0)))
5029 (or foreground
(setq foreground
(aref face-attr
1)))
5031 (setq background
(ps-face-background face
(aref face-attr
2)))))
5032 (vector effects foreground background
)))))
5035 (defconst ps-font-type
(vector nil
'bold
'italic
'bold-italic
))
5038 (defun ps-plot-with-face (from to face
)
5040 ((null face
) ; print text with null face
5041 (ps-plot-region from to
0))
5042 ((eq face
'emacs--invisible--face
)) ; skip invisible text!!!
5043 (t ; otherwise, text has a valid face
5044 (let* ((face-bit (ps-face-attribute-list face
))
5045 (effect (aref face-bit
0))
5046 (foreground (aref face-bit
1))
5047 (background (ps-face-background face
(aref face-bit
2)))
5048 (fg-color (if (and ps-color-p foreground
)
5049 (ps-color-scale foreground
)
5051 (bg-color (and ps-color-p background
5052 (ps-color-scale background
))))
5055 (ps-font-number 'ps-font-for-text
5056 (or (aref ps-font-type
(logand effect
3))
5058 fg-color bg-color
(lsh effect -
2)))))
5062 (defun ps-xemacs-face-kind-p (face kind kind-regex
)
5063 (let* ((frame-font (or (face-font-instance face
)
5064 (face-font-instance 'default
)))
5065 (kind-cons (and frame-font
5067 (font-instance-properties frame-font
))))
5068 (kind-spec (cdr-safe kind-cons
))
5069 (case-fold-search t
))
5070 (and kind-spec
(string-match kind-regex kind-spec
))))
5073 (cond ((eq ps-print-emacs-type
'emacs
) ; emacs
5075 (defalias 'ps-face-foreground-name
'face-foreground
)
5076 (defalias 'ps-face-background-name
'face-background
)
5078 (defun ps-face-bold-p (face)
5079 (or (face-bold-p face
)
5080 (memq face ps-bold-faces
)))
5082 (defun ps-face-italic-p (face)
5083 (or (face-italic-p face
)
5084 (memq face ps-italic-faces
)))
5089 (defun ps-face-foreground-name (face)
5090 (ps-xemacs-color-name (face-foreground face
)))
5092 (defun ps-face-background-name (face)
5093 (ps-xemacs-color-name (face-background face
)))
5095 (defun ps-face-bold-p (face)
5096 (or (ps-xemacs-face-kind-p face
'WEIGHT_NAME
"bold\\|demibold")
5097 (memq face ps-bold-faces
))) ; Kludge-compatible
5099 (defun ps-face-italic-p (face)
5100 (or (ps-xemacs-face-kind-p face
'ANGLE_NAME
"i\\|o")
5101 (ps-xemacs-face-kind-p face
'SLANT
"i\\|o")
5102 (memq face ps-italic-faces
))) ; Kludge-compatible
5106 (defun ps-face-underlined-p (face)
5107 (or (face-underline-p face
)
5108 (memq face ps-underlined-faces
)))
5111 ;; Ensure that face-list is fbound.
5112 (or (fboundp 'face-list
) (defalias 'face-list
'list-faces
))
5115 (defun ps-build-reference-face-lists ()
5116 ;; Ensure that face database is updated with faces on
5117 ;; `font-lock-face-attributes' (obsolete stuff)
5118 (ps-font-lock-face-attributes)
5119 ;; Now, rebuild reference face lists
5120 (setq ps-print-face-alist nil
)
5121 (if ps-auto-font-detect
5122 (mapcar 'ps-map-face
(face-list))
5123 (mapcar 'ps-set-face-bold ps-bold-faces
)
5124 (mapcar 'ps-set-face-italic ps-italic-faces
)
5125 (mapcar 'ps-set-face-underline ps-underlined-faces
))
5126 (setq ps-build-face-reference nil
))
5129 (defun ps-set-face-bold (face)
5130 (ps-set-face-attribute face
1))
5132 (defun ps-set-face-italic (face)
5133 (ps-set-face-attribute face
2))
5135 (defun ps-set-face-underline (face)
5136 (ps-set-face-attribute face
4))
5139 (defun ps-set-face-attribute (face effect
)
5140 (let ((face-bit (cdr (ps-map-face face
))))
5141 (aset face-bit
0 (logior (aref face-bit
0) effect
))))
5144 (defun ps-map-face (face)
5145 (let* ((face-map (ps-screen-to-bit-face face
))
5146 (ps-face-bit (cdr (assq (car face-map
) ps-print-face-alist
))))
5148 ;; if face exists, merge both
5149 (let ((face-bit (cdr face-map
)))
5150 (aset ps-face-bit
0 (logior (aref ps-face-bit
0) (aref face-bit
0)))
5151 (or (aref ps-face-bit
1) (aset ps-face-bit
1 (aref face-bit
1)))
5152 (or (aref ps-face-bit
2) (aset ps-face-bit
2 (aref face-bit
2))))
5153 ;; if face does not exist, insert it
5154 (setq ps-print-face-alist
(cons face-map ps-print-face-alist
)))
5158 (defun ps-screen-to-bit-face (face)
5160 (vector (logior (if (ps-face-bold-p face
) 1 0) ; bold
5161 (if (ps-face-italic-p face
) 2 0) ; italic
5162 (if (ps-face-underlined-p face
) 4 0)) ; underline
5163 (ps-face-foreground-name face
)
5164 (ps-face-background-name face
))))
5167 (cond ((not (eq ps-print-emacs-type
'emacs
))
5171 (defun ps-mapper (extent list
)
5172 (nconc list
(list (list (extent-start-position extent
) 'push extent
)
5173 (list (extent-end-position extent
) 'pull extent
)))
5176 (defun ps-extent-sorter (a b
)
5177 (< (extent-priority a
) (extent-priority b
)))
5181 (defun ps-print-ensure-fontified (start end
)
5182 (and (boundp 'lazy-lock-mode
) (symbol-value 'lazy-lock-mode
)
5183 (lazy-lock-fontify-region start end
)))
5185 (defun ps-generate-postscript-with-faces (from to
)
5186 ;; Some initialization...
5187 (setq ps-current-effect
0)
5189 ;; Build the reference lists of faces if necessary.
5190 (when (or ps-always-build-face-reference
5191 ps-build-face-reference
)
5192 (message "Collecting face information...")
5193 (ps-build-reference-face-lists))
5194 ;; Generate some PostScript.
5196 (narrow-to-region from to
)
5197 (ps-print-ensure-fontified from to
)
5198 (let ((face 'default
)
5201 ((memq ps-print-emacs-type
'(xemacs lucid
))
5202 ;; Build the list of extents...
5203 (let ((a (cons 'dummy nil
))
5204 record type extent extent-list
)
5205 (map-extents 'ps-mapper nil from to a
)
5206 (setq a
(sort (cdr a
) 'car-less-than-car
)
5209 ;; Loop through the extents...
5211 (setq record
(car a
)
5213 position
(car record
)
5219 extent
(car record
))
5221 ;; Plot up to this record.
5222 ;; XEmacs 19.12: for some reason, we're getting into a
5223 ;; situation in which some of the records have
5224 ;; positions less than 'from'. Since we've narrowed
5225 ;; the buffer, this'll generate errors. This is a
5226 ;; hack, but don't call ps-plot-with-face unless from >
5228 (and (>= from
(point-min)) (<= position
(point-max))
5229 (ps-plot-with-face from position face
))
5233 (and (extent-face extent
)
5234 (setq extent-list
(sort (cons extent extent-list
)
5235 'ps-extent-sorter
))))
5238 (setq extent-list
(sort (delq extent extent-list
)
5239 'ps-extent-sorter
))))
5241 (setq face
(if extent-list
5242 (extent-face (car extent-list
))
5247 ((eq ps-print-emacs-type
'emacs
)
5248 (let ((property-change from
)
5249 (overlay-change from
)
5250 (save-buffer-invisibility-spec buffer-invisibility-spec
)
5251 (buffer-invisibility-spec nil
))
5253 (and (< property-change to
) ; Don't search for property change
5254 ; unless previous search succeeded.
5255 (setq property-change
(next-property-change from nil to
)))
5256 (and (< overlay-change to
) ; Don't search for overlay change
5257 ; unless previous search succeeded.
5258 (setq overlay-change
(min (next-overlay-change from
) to
)))
5259 (setq position
(min property-change overlay-change
))
5260 ;; The code below is not quite correct,
5261 ;; because a non-nil overlay invisible property
5262 ;; which is inactive according to the current value
5263 ;; of buffer-invisibility-spec nonetheless overrides
5264 ;; a face text property.
5266 (cond ((let ((prop (get-text-property from
'invisible
)))
5267 ;; Decide whether this invisible property
5268 ;; really makes the text invisible.
5269 (if (eq save-buffer-invisibility-spec t
)
5271 (or (memq prop save-buffer-invisibility-spec
)
5272 (assq prop save-buffer-invisibility-spec
))))
5273 'emacs--invisible--face
)
5274 ((get-text-property from
'face
))
5276 (let ((overlays (overlays-at from
))
5277 (face-priority -
1)) ; text-property
5278 (while (and overlays
5279 (not (eq face
'emacs--invisible--face
)))
5280 (let* ((overlay (car overlays
))
5281 (overlay-invisible (overlay-get overlay
'invisible
))
5282 (overlay-priority (or (overlay-get overlay
'priority
)
5284 (and (> overlay-priority face-priority
)
5286 (cond ((if (eq save-buffer-invisibility-spec t
)
5287 (not (null overlay-invisible
))
5288 (or (memq overlay-invisible
5289 save-buffer-invisibility-spec
)
5290 (assq overlay-invisible
5291 save-buffer-invisibility-spec
)))
5292 'emacs--invisible--face
)
5293 ((overlay-get overlay
'face
))
5295 face-priority overlay-priority
)))
5296 (setq overlays
(cdr overlays
))))
5297 ;; Plot up to this record.
5298 (ps-plot-with-face from position face
)
5299 (setq from position
)))))
5300 (ps-plot-with-face from to face
))))
5302 (defun ps-generate-postscript (from to
)
5303 (ps-plot-region from to
0 nil
))
5305 (defun ps-generate (buffer from to genfunc
)
5307 (let ((from (min to from
))
5309 ;; This avoids trouble if chars with read-only properties
5310 ;; are copied into ps-spool-buffer.
5311 (inhibit-read-only t
))
5313 (narrow-to-region from to
)
5314 (and ps-razzle-dazzle
5315 (message "Formatting...%3d%%" (setq ps-razchunk
0)))
5316 (setq ps-source-buffer buffer
5317 ps-spool-buffer
(get-buffer-create ps-spool-buffer-name
))
5318 (ps-init-output-queue)
5319 (let (safe-marker completed-safely needs-begin-file
)
5322 (set-buffer ps-spool-buffer
)
5323 (set-buffer-multibyte nil
)
5325 ;; Get a marker and make it point to the current end of the
5326 ;; buffer, If an error occurs, we'll delete everything from
5327 ;; the end of this marker onwards.
5328 (setq safe-marker
(make-marker))
5329 (set-marker safe-marker
(point-max))
5331 (goto-char (point-min))
5332 (or (looking-at (regexp-quote ps-adobe-tag
))
5333 (setq needs-begin-file t
))
5335 (set-buffer ps-source-buffer
)
5337 (when needs-begin-file
5339 (ps-mule-initialize))
5340 (ps-mule-begin-job from to
)
5343 (set-buffer ps-source-buffer
)
5344 (funcall genfunc from to
)
5347 (ps-end-file needs-begin-file
)
5350 ;; Setting this variable tells the unwind form that the
5351 ;; the PostScript was generated without error.
5352 (setq completed-safely t
))
5354 ;; Unwind form: If some bad mojo occurred while generating
5355 ;; PostScript, delete all the PostScript that was generated.
5356 ;; This protects the previously spooled files from getting
5358 (and (markerp safe-marker
) (not completed-safely
)
5360 (set-buffer ps-spool-buffer
)
5361 (delete-region (marker-position safe-marker
) (point-max))))))
5363 (and ps-razzle-dazzle
(message "Formatting...done"))))))
5366 (defun ps-end-job ()
5368 (let ((total-lines (cdr ps-printing-region
))
5369 (total-pages (if ps-print-only-one-header
5373 (set-buffer ps-spool-buffer
)
5374 ;; Back to the PS output buffer to set the page count
5375 (goto-char (point-min))
5376 (and (re-search-forward "^/Lines 0 def\n/PageCount 0 def$" nil t
)
5377 (replace-match (format "/Lines %d def\n/PageCount %d def"
5378 total-lines total-pages
) t
)))
5380 (setq ps-selected-pages nil
))
5383 (defvar ps-printer-name-option
5384 (cond (ps-windows-system
5392 ;; Permit dynamic evaluation at print time of `ps-lpr-switches'.
5393 (defun ps-do-despool (filename)
5394 (if (or (not (boundp 'ps-spool-buffer
))
5395 (not (symbol-value 'ps-spool-buffer
)))
5396 (message "No spooled PostScript to print")
5399 (and ps-razzle-dazzle
(message "Saving..."))
5400 (set-buffer ps-spool-buffer
)
5401 (setq filename
(expand-file-name filename
))
5402 (let ((coding-system-for-write 'raw-text-unix
))
5403 (write-region (point-min) (point-max) filename
))
5404 (and ps-razzle-dazzle
(message "Wrote %s" filename
)))
5405 ;; Else, spool to the printer
5406 (and ps-razzle-dazzle
(message "Printing..."))
5408 (set-buffer ps-spool-buffer
)
5409 (let* ((coding-system-for-write 'raw-text-unix
)
5410 (ps-printer-name (or ps-printer-name
5411 (and (boundp 'printer-name
)
5414 (append (and (stringp ps-printer-name
)
5415 (list (concat ps-printer-name-option
5418 (apply (or ps-print-region-function
'call-process-region
)
5419 (point-min) (point-max) ps-lpr-command nil
5420 (and (fboundp 'start-process
) 0)
5422 (ps-flatten-list ; dynamic evaluation
5423 (mapcar 'ps-eval-switch ps-lpr-switches
)))))
5424 (and ps-razzle-dazzle
(message "Printing...done")))
5425 (kill-buffer ps-spool-buffer
)))
5427 ;; Dynamic evaluation
5428 (defun ps-eval-switch (arg)
5429 (cond ((stringp arg
) arg
)
5430 ((functionp arg
) (apply arg nil
))
5431 ((symbolp arg
) (symbol-value arg
))
5432 ((consp arg
) (apply (car arg
) (cdr arg
)))
5435 ;; `ps-flatten-list' is defined here (copied from "message.el" and
5436 ;; enhanced to handle dotted pairs as well) until we can get some
5437 ;; sensible autoloads, or `flatten-list' gets put somewhere decent.
5439 ;; (ps-flatten-list '((a . b) c (d . e) (f g h) i . j))
5440 ;; => (a b c d e f g h i j)
5442 (defun ps-flatten-list (&rest list
)
5443 (ps-flatten-list-1 list
))
5445 (defun ps-flatten-list-1 (list)
5446 (cond ((null list
) nil
)
5447 ((consp list
) (append (ps-flatten-list-1 (car list
))
5448 (ps-flatten-list-1 (cdr list
))))
5451 (defun ps-kill-emacs-check ()
5453 (and (setq ps-buffer
(get-buffer ps-spool-buffer-name
))
5454 (buffer-modified-p ps-buffer
)
5455 (y-or-n-p "Unprinted PostScript waiting; print now? ")
5457 (and (setq ps-buffer
(get-buffer ps-spool-buffer-name
))
5458 (buffer-modified-p ps-buffer
)
5459 (not (yes-or-no-p "Unprinted PostScript waiting; exit anyway? "))
5460 (error "Unprinted PostScript"))))
5462 (cond ((fboundp 'add-hook
)
5463 (funcall 'add-hook
'kill-emacs-hook
'ps-kill-emacs-check
))
5465 (message "Won't override existing `kill-emacs-hook'"))
5467 (setq kill-emacs-hook
'ps-kill-emacs-check
)))
5470 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5471 ;;; Sample Setup Code:
5474 ;; This stuff is for anybody that's brave enough to look this far,
5475 ;; and able to figure out how to use it. It isn't really part of
5476 ;; ps-print, but I'll leave it here in hopes it might be useful:
5478 ;; WARNING!!! The following code is *sample* code only.
5479 ;; Don't use it unless you understand what it does!
5481 (defmacro ps-prsc
()
5482 `(if (eq ps-print-emacs-type
'emacs
) [f22] 'f22))
5483 (defmacro ps-c-prsc ()
5484 `(if (eq ps-print-emacs-type 'emacs) [C-f22] '(control f22)))
5485 (defmacro ps-s-prsc ()
5486 `(if (eq ps-print-emacs-type 'emacs) [S-f22] '(shift f22)))
5488 ;; A hook to bind to `rmail-mode-hook' to locally bind prsc and set the
5489 ;; `ps-left-headers' specially for mail messages.
5490 (defun ps-rmail-mode-hook ()
5491 (local-set-key (ps-prsc) 'ps-rmail-print-message-from-summary)
5492 (setq ps-header-lines 3
5494 ;; The left headers will display the message's subject, its
5495 ;; author, and the name of the folder it was in.
5496 '(ps-article-subject ps-article-author buffer-name)))
5498 ;; See `ps-gnus-print-article-from-summary'. This function does the
5499 ;; same thing for rmail.
5500 (defun ps-rmail-print-message-from-summary ()
5502 (ps-print-message-from-summary 'rmail-summary-buffer "RMAIL"))
5504 ;; Used in `ps-rmail-print-article-from-summary',
5505 ;; `ps-gnus-print-article-from-summary' and `ps-vm-print-message-from-summary'.
5506 (defun ps-print-message-from-summary (summary-buffer summary-default)
5507 (let ((ps-buf (or (and (boundp summary-buffer)
5508 (symbol-value summary-buffer))
5510 (and (get-buffer ps-buf)
5513 (ps-spool-buffer-with-faces)))))
5515 ;; Look in an article or mail message for the Subject: line. To be
5516 ;; placed in `ps-left-headers'.
5517 (defun ps-article-subject ()
5519 (goto-char (point-min))
5520 (if (re-search-forward "^Subject:[ \t]+\\(.*\\)$" nil t)
5521 (buffer-substring (match-beginning 1) (match-end 1))
5524 ;; Look in an article or mail message for the From: line. Sorta-kinda
5525 ;; understands RFC-822 addresses and can pull the real name out where
5526 ;; it's provided. To be placed in `ps-left-headers'.
5527 (defun ps-article-author ()
5529 (goto-char (point-min))
5530 (if (re-search-forward "^From:[ \t]+\\(.*\\)$" nil t)
5531 (let ((fromstring (buffer-substring (match-beginning 1) (match-end 1))))
5534 ;; Try first to match addresses that look like
5535 ;; thompson@wg2.waii.com (Jim Thompson)
5536 ((string-match ".*[ \t]+(\\(.*\\))" fromstring)
5537 (substring fromstring (match-beginning 1) (match-end 1)))
5539 ;; Next try to match addresses that look like
5540 ;; Jim Thompson <thompson@wg2.waii.com> or
5541 ;; "Jim Thompson" <thompson@wg2.waii.com>
5542 ((string-match "\\(\"?\\)\\(.*\\)\\1[ \t]+<.*>" fromstring)
5543 (substring fromstring (match-beginning 2) (match-end 2)))
5545 ;; Couldn't find a real name -- show the address instead.
5549 ;; A hook to bind to `gnus-article-prepare-hook'. This will set the
5550 ;; `ps-left-headers' specially for gnus articles. Unfortunately,
5551 ;; `gnus-article-mode-hook' is called only once, the first time the *Article*
5552 ;; buffer enters that mode, so it would only work for the first time
5553 ;; we ran gnus. The second time, this hook wouldn't get set up. The
5554 ;; only alternative is `gnus-article-prepare-hook'.
5555 (defun ps-gnus-article-prepare-hook ()
5556 (setq ps-header-lines 3
5558 ;; The left headers will display the article's subject, its
5559 ;; author, and the newsgroup it was in.
5560 '(ps-article-subject ps-article-author gnus-newsgroup-name)))
5562 ;; A hook to bind to `vm-mode-hook' to locally bind prsc and set the
5563 ;; `ps-left-headers' specially for mail messages.
5564 (defun ps-vm-mode-hook ()
5565 (local-set-key (ps-prsc) 'ps-vm-print-message-from-summary)
5566 (setq ps-header-lines 3
5568 ;; The left headers will display the message's subject, its
5569 ;; author, and the name of the folder it was in.
5570 '(ps-article-subject ps-article-author buffer-name)))
5572 ;; Every now and then I forget to switch from the *Summary* buffer to
5573 ;; the *Article* before hitting prsc, and a nicely formatted list of
5574 ;; article subjects shows up at the printer. This function, bound to
5575 ;; prsc for the gnus *Summary* buffer means I don't have to switch
5577 ;; sb: Updated for Gnus 5.
5578 (defun ps-gnus-print-article-from-summary ()
5580 (ps-print-message-from-summary 'gnus-article-buffer "*Article*"))
5582 ;; See `ps-gnus-print-article-from-summary'. This function does the
5583 ;; same thing for vm.
5584 (defun ps-vm-print-message-from-summary ()
5586 (ps-print-message-from-summary 'vm-mail-buffer ""))
5588 ;; A hook to bind to bind to `gnus-summary-setup-buffer' to locally bind
5590 (defun ps-gnus-summary-setup ()
5591 (local-set-key (ps-prsc) 'ps-gnus-print-article-from-summary))
5593 ;; Look in an article or mail message for the Subject: line. To be
5594 ;; placed in `ps-left-headers'.
5595 (defun ps-info-file ()
5597 (goto-char (point-min))
5598 (if (re-search-forward "File:[ \t]+\\([^, \t\n]*\\)" nil t)
5599 (buffer-substring (match-beginning 1) (match-end 1))
5602 ;; Look in an article or mail message for the Subject: line. To be
5603 ;; placed in `ps-left-headers'.
5604 (defun ps-info-node ()
5606 (goto-char (point-min))
5607 (if (re-search-forward "Node:[ \t]+\\([^,\t\n]*\\)" nil t)
5608 (buffer-substring (match-beginning 1) (match-end 1))
5611 (defun ps-info-mode-hook ()
5612 (setq ps-left-header
5613 ;; The left headers will display the node name and file name.
5614 '(ps-info-node ps-info-file)))
5616 ;; WARNING! The following function is a *sample* only, and is *not*
5617 ;; meant to be used as a whole unless you understand what the effects
5618 ;; will be! (In fact, this is a copy of Jim's setup for ps-print --
5619 ;; I'd be very surprised if it was useful to *anybody*, without
5622 (defun ps-jts-ps-setup ()
5623 (global-set-key (ps-prsc) 'ps-spool-buffer-with-faces) ;f22 is prsc
5624 (global-set-key (ps-s-prsc) 'ps-spool-region-with-faces)
5625 (global-set-key (ps-c-prsc) 'ps-despool)
5626 (add-hook 'gnus-article-prepare-hook 'ps-gnus-article-prepare-hook)
5627 (add-hook 'gnus-summary-mode-hook 'ps-gnus-summary-setup)
5628 (add-hook 'vm-mode-hook 'ps-vm-mode-hook)
5629 (add-hook 'vm-mode-hooks 'ps-vm-mode-hook)
5630 (add-hook 'Info-mode-hook 'ps-info-mode-hook)
5631 (setq ps-spool-duplex t
5632 ps-print-color-p nil
5633 ps-lpr-command "lpr"
5634 ps-lpr-switches '("-Jjct,duplex_long"))
5637 ;; WARNING! The following function is a *sample* only, and is *not*
5638 ;; meant to be used as a whole unless it corresponds to your needs.
5639 ;; (In fact, this is a copy of Jack's setup for ps-print --
5640 ;; I would not be that surprised if it was useful to *anybody*,
5641 ;; without modification.)
5643 (defun ps-jack-setup ()
5644 (setq ps-print-color-p nil
5645 ps-lpr-command "lpr"
5650 ps-number-of-columns 2
5652 ps-left-margin (/ (* 72 1.0) 2.54) ; 1.0 cm
5653 ps-right-margin (/ (* 72 1.0) 2.54) ; 1.0 cm
5654 ps-inter-column (/ (* 72 1.0) 2.54) ; 1.0 cm
5655 ps-bottom-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
5656 ps-top-margin (/ (* 72 1.5) 2.54) ; 1.5 cm
5657 ps-header-offset (/ (* 72 1.0) 2.54) ; 1.0 cm
5658 ps-header-line-pad .15
5660 ps-print-header-frame t
5665 ps-font-family 'Courier
5667 ps-header-font-family 'Helvetica
5668 ps-header-font-size 6
5669 ps-header-title-font-size 8)
5673 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5674 ;; To make this file smaller, some commands go in a separate file.
5675 ;; But autoload them here to make the separation invisible.
5677 (autoload 'ps-mule-prepare-ascii-font "ps-mule"
5678 "Setup special ASCII font for STRING.
5679 STRING should contain only ASCII characters.")
5681 (autoload 'ps-mule-set-ascii-font "ps-mule"
5682 "Adjust current font if current charset is not ASCII.")
5684 (autoload 'ps-mule-plot-string "ps-mule"
5685 "Generate PostScript code for ploting characters in the region FROM and TO.
5687 It is assumed that all characters in this region belong to the same charset.
5689 Optional argument BG-COLOR specifies background color.
5693 (ENDPOS . RUN-WIDTH)
5695 Where ENDPOS is the end position of the sequence and RUN-WIDTH is the width of
5698 (autoload 'ps-mule-initialize "ps-mule"
5699 "Initialize global data for printing multi-byte characters.")
5701 (autoload 'ps-mule-begin-job "ps-mule"
5702 "Start printing job for multi-byte chars between FROM and TO.
5703 This checks if all multi-byte characters in the region are printable or not.")
5705 (autoload 'ps-mule-begin-page "ps-mule"
5706 "Initialize multi-byte charset for printing current page.")
5709 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5713 ;;; ps-print.el ends here