(rename): New function.
[bpt/emacs.git] / lisp / ps-print.el
CommitLineData
12d89a2e
RS
1;;; ps-print.el --- Jim's Pretty-Good PostScript Generator for Emacs 19.
2
9596811a 3;; Copyright (C) 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
ef2cbb24 4
12d89a2e 5;; Author: Jim Thompson <thompson@wg2.waii.com>
9596811a 6;; Maintainer: FSF
12d89a2e 7;; Keywords: print, PostScript
ef2cbb24 8
86c10ecb 9;; This file is part of GNU Emacs.
ef2cbb24
RS
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
b578f267
EN
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
ef2cbb24 25
00aa16af
RS
26;; LCD Archive Entry:
27;; ps-print|James C. Thompson|thompson@wg2.waii.com|
28;; Jim's Pretty-Good PostScript Generator for Emacs 19 (ps-print)|
043620f4 29;; 26-Feb-1994|2.8|~/packages/ps-print.el|
b87c5d3d 30
043620f4 31;; Baseline-version: 2.8. (Jim's last change version -- this
b87c5d3d
RS
32;; file may have been edited as part of Emacs without changes to the
33;; version number. When reporting bugs, please also report the
34;; version of Emacs, if any, that ps-print was distributed with.)
00aa16af 35
12d89a2e 36;;; Commentary:
ef2cbb24
RS
37
38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
39;;
12d89a2e 40;; About ps-print
ef2cbb24
RS
41;; --------------
42;; This package provides printing of Emacs buffers on PostScript
43;; printers; the buffer's bold and italic text attributes are
44;; preserved in the printer output. Ps-print is intended for use with
00aa16af
RS
45;; Emacs 19 or Lucid Emacs, together with a fontifying package such as
46;; font-lock or hilit.
12d89a2e
RS
47;;
48;; Using ps-print
ef2cbb24 49;; --------------
ef2cbb24 50;;
12d89a2e
RS
51;; The Commands
52;;
53;; Ps-print provides eight commands for generating PostScript images
54;; of Emacs buffers:
55;;
56;; ps-print-buffer
57;; ps-print-buffer-with-faces
58;; ps-print-region
59;; ps-print-region-with-faces
60;; ps-spool-buffer
61;; ps-spool-buffer-with-faces
62;; ps-spool-region
63;; ps-spool-region-with-faces
64;;
65;; These commands all perform essentially the same function: they
66;; generate PostScript images suitable for printing on a PostScript
67;; printer or displaying with GhostScript. These commands are
68;; collectively referred to as "ps-print- commands".
69;;
70;; The word "print" or "spool" in the command name determines when the
71;; PostScript image is sent to the printer:
ef2cbb24 72;;
12d89a2e
RS
73;; print - The PostScript image is immediately sent to the
74;; printer;
ef2cbb24 75;;
12d89a2e
RS
76;; spool - The PostScript image is saved temporarily in an
77;; Emacs buffer. Many images may be spooled locally
78;; before printing them. To send the spooled images
79;; to the printer, use the command ps-despool.
ef2cbb24 80;;
12d89a2e
RS
81;; The spooling mechanism was designed for printing lots of small
82;; files (mail messages or netnews articles) to save paper that would
83;; otherwise be wasted on banner pages, and to make it easier to find
84;; your output at the printer (it's easier to pick up one 50-page
85;; printout than to find 50 single-page printouts).
86;;
87;; Ps-print has a hook in the kill-emacs-hooks so that you won't
a7acbbe4 88;; accidentally quit from Emacs while you have unprinted PostScript
12d89a2e
RS
89;; waiting in the spool buffer. If you do attempt to exit with
90;; spooled PostScript, you'll be asked if you want to print it, and if
91;; you decline, you'll be asked to confirm the exit; this is modeled
92;; on the confirmation that Emacs uses for modified buffers.
93;;
94;; The word "buffer" or "region" in the command name determines how
95;; much of the buffer is printed:
96;;
97;; buffer - Print the entire buffer.
98;;
99;; region - Print just the current region.
100;;
101;; The -with-faces suffix on the command name means that the command
102;; will include font, color, and underline information in the
103;; PostScript image, so the printed image can look as pretty as the
104;; buffer. The ps-print- commands without the -with-faces suffix
105;; don't include font, color, or underline information; images printed
106;; with these commands aren't as pretty, but are faster to generate.
107;;
108;; Two ps-print- command examples:
109;;
110;; ps-print-buffer - print the entire buffer,
111;; without font, color, or
112;; underline information, and
113;; send it immediately to the
114;; printer.
115;;
116;; ps-spool-region-with-faces - print just the current region;
117;; include font, color, and
118;; underline information, and
119;; spool the image in Emacs to
120;; send to the printer later.
121;;
122;;
123;; Invoking Ps-Print
ef2cbb24 124;;
12d89a2e 125;; To print your buffer, type
ef2cbb24 126;;
12d89a2e 127;; M-x ps-print-buffer
ef2cbb24 128;;
12d89a2e
RS
129;; or substitute one of the other seven ps-print- commands. The
130;; command will generate the PostScript image and print or spool it as
131;; specified. By giving the command a prefix argument
132;;
133;; C-u M-x ps-print-buffer
134;;
135;; it will save the PostScript image to a file instead of sending it
136;; to the printer; you will be prompted for the name of the file to
137;; save the image to. The prefix argument is ignored by the commands
138;; that spool their images, but you may save the spooled images to a
139;; file by giving a prefix argument to ps-despool:
140;;
141;; C-u M-x ps-despool
142;;
143;; When invoked this way, ps-despool will prompt you for the name of
144;; the file to save to.
145;;
146;; Any of the ps-print- commands can be bound to keys; I recommend
147;; binding ps-spool-buffer-with-faces, ps-spool-region-with-faces, and
148;; ps-despool. Here are the bindings I use on my Sun 4 keyboard:
149;;
150;; (global-set-key 'f22 'ps-spool-buffer-with-faces) ;f22 is prsc
ef2cbb24
RS
151;; (global-set-key '(shift f22) 'ps-spool-region-with-faces)
152;; (global-set-key '(control f22) 'ps-despool)
153;;
12d89a2e
RS
154;;
155;; The Printer Interface
156;;
157;; The variables ps-lpr-command and ps-lpr-switches determine what
158;; command is used to send the PostScript images to the printer, and
159;; what arguments to give the command. These are analogous to lpr-
160;; command and lpr-switches.
161;;
162;; NOTE: ps-lpr-command and ps-lpr-switches take their initial values
163;; from the variables lpr-command and lpr-switches. If you have
164;; lpr-command set to invoke a pretty-printer such as enscript,
00aa16af 165;; then ps-print won't work properly. ps-lpr-command must name
12d89a2e
RS
166;; a program that does not format the files it prints.
167;;
168;;
169;; How Ps-Print Deals With Fonts
170;;
171;; The ps-print-*-with-faces commands attempt to determine which faces
172;; should be printed in bold or italic, but their guesses aren't
173;; always right. For example, you might want to map colors into faces
174;; so that blue faces print in bold, and red faces in italic.
175;;
176;; It is possible to force ps-print to consider specific faces bold or
177;; italic, no matter what font they are displayed in, by setting the
178;; variables ps-bold-faces and ps-italic-faces. These variables
179;; contain lists of faces that ps-print should consider bold or
180;; italic; to set them, put code like the following into your .emacs
181;; file:
182;;
183;; (setq ps-bold-faces '(my-blue-face))
043620f4
KH
184;; (setq ps-italic-faces '(my-red-face))
185;;
186;; Faces like bold-italic that are both bold and italic should go in
187;; *both* lists.
12d89a2e
RS
188;;
189;; Ps-print does not attempt to guess the sizes of fonts; all text is
190;; rendered using the Courier font family, in 10 point size. To
191;; change the font family, change the variables ps-font, ps-font-bold,
192;; ps-font-italic, and ps-font-bold-italic; fixed-pitch fonts work
193;; best, but are not required. To change the font size, change the
194;; variable ps-font-size.
195;;
196;; If you change the font family or size, you MUST also change the
197;; variables ps-line-height, ps-avg-char-width, and ps-space-width, or
198;; ps-print cannot correctly place line and page breaks.
199;;
200;; Ps-print keeps internal lists of which fonts are bold and which are
201;; italic; these lists are built the first time you invoke ps-print.
202;; For the sake of efficiency, the lists are built only once; the same
a7acbbe4 203;; lists are referred in later invocations of ps-print.
12d89a2e
RS
204;;
205;; Because these lists are built only once, it's possible for them to
206;; get out of sync, if a face changes, or if new faces are added. To
207;; get the lists back in sync, you can set the variable
208;; ps-build-face-reference to t, and the lists will be rebuilt the
209;; next time ps-print is invoked.
210;;
211;;
212;; How Ps-Print Deals With Color
213;;
214;; Ps-print detects faces with foreground and background colors
215;; defined and embeds color information in the PostScript image. The
216;; default foreground and background colors are defined by the
217;; variables ps-default-fg and ps-default-bg. On black-and-white
218;; printers, colors are displayed in grayscale. To turn off color
219;; output, set ps-print-color-p to nil.
220;;
221;;
222;; Headers
223;;
224;; Ps-print can print headers at the top of each page; the default
225;; headers contain the following four items: on the left, the name of
226;; the buffer and, if the buffer is visiting a file, the file's
227;; directory; on the right, the page number and date of printing. The
228;; default headers look something like this:
229;;
230;; ps-print.el 1/21
231;; /home/jct/emacs-lisp/ps/new 94/12/31
232;;
233;; When printing on duplex printers, left and right are reversed so
234;; that the page numbers are toward the outside.
235;;
236;; Headers are configurable. To turn them off completely, set
237;; ps-print-header to nil. To turn off the header's gaudy framing
238;; box, set ps-print-header-frame to nil. Page numbers are printed in
239;; "n/m" format, indicating page n of m pages; to omit the total page
240;; count and just print the page number, set ps-show-n-of-n to nil.
241;;
242;; The amount of information in the header can be changed by changing
243;; the number of lines. To show less, set ps-header-lines to 1, and
244;; the header will show only the buffer name and page number. To show
245;; more, set ps-header-lines to 3, and the header will show the time of
246;; printing below the date.
247;;
248;; To change the content of the headers, change the variables
249;; ps-left-header and ps-right-header. These variables are lists,
250;; specifying top-to-bottom the text to display on the left or right
251;; side of the header. Each element of the list should be a string or
252;; a symbol. Strings are inserted directly into the PostScript
253;; arrays, and should contain the PostScript string delimiters '(' and
254;; ')'.
255;;
256;; Symbols in the header format lists can either represent functions
257;; or variables. Functions are called, and should return a string to
258;; show in the header. Variables should contain strings to display in
259;; the header. In either case, function or variable, the PostScript
a7acbbe4 260;; string delimiters are added by ps-print, and should not be part of
12d89a2e
RS
261;; the returned value.
262;;
263;; Here's an example: say we want the left header to display the text
264;;
265;; Moe
266;; Larry
267;; Curly
268;;
269;; where we have a function to return "Moe"
270;;
271;; (defun moe-func ()
272;; "Moe")
273;;
274;; a variable specifying "Larry"
275;;
276;; (setq larry-var "Larry")
277;;
278;; and a literal for "Curly". Here's how ps-left-header should be
279;; set:
280;;
281;; (setq ps-left-header (list 'moe-func 'larry-var "(Curly)"))
282;;
283;; Note that Curly has the PostScript string delimiters inside his
284;; quotes -- those aren't misplaced lisp delimiters! Without them,
285;; PostScript would attempt to call the undefined function Curly,
286;; which would result in a PostScript error. Since most printers
287;; don't report PostScript errors except by aborting the print job,
288;; this kind of error can be hard to track down. Consider yourself
289;; warned.
290;;
291;;
292;; Duplex Printers
293;;
294;; If you have a duplex-capable printer (one that prints both sides of
295;; the paper), set ps-spool-duplex to t. Ps-print will insert blank
296;; pages to make sure each buffer starts on the correct side of the
297;; paper. Don't forget to set ps-lpr-switches to select duplex
298;; printing for your printer.
ef2cbb24 299;;
12d89a2e
RS
300;;
301;; Paper Size
302;;
303;; The variable ps-paper-type determines the size of paper ps-print
304;; formats for; it should contain one of the symbols ps-letter,
305;; ps-legal, or ps-a4. The default is ps-letter.
306;;
b87c5d3d 307;;
107e7c70
KH
308;; Make sure that the variables ps-lpr-command and ps-lpr-switches
309;; contain appropriate values for your system; see the usage notes
310;; below and the documentation of these variables.
b87c5d3d 311;;
b87c5d3d
RS
312;;
313;; New since version 1.5
314;; ---------------------
315;; Color output capability.
316;;
317;; Automatic detection of font attributes (bold, italic).
318;;
319;; Configurable headers with page numbers.
320;;
321;; Slightly faster.
322;;
323;; Support for different paper sizes.
324;;
325;; Better conformance to PostScript Document Structure Conventions.
326;;
ef2cbb24
RS
327;;
328;; Known bugs and limitations of ps-print:
329;; --------------------------------------
043620f4
KH
330;; Although color printing will work in XEmacs 19.12, it doesn't work
331;; well; in particular, bold or italic fonts don't print in the right
332;; background color.
333;;
334;; Invisible properties aren't correctly ignored in XEmacs 19.12.
335;;
b87c5d3d 336;; Automatic font-attribute detection doesn't work well, especially
00aa16af
RS
337;; with hilit19 and older versions of get-create-face. Users having
338;; problems with auto-font detection should use the lists ps-italic-
339;; faces and ps-bold-faces and/or turn off automatic detection by
340;; setting ps-auto-font-detect to nil.
341;;
043620f4
KH
342;; Automatic font-attribute detection doesn't work with XEmacs 19.12
343;; in tty mode; use the lists ps-italic-faces and ps-bold-faces
344;; instead.
12d89a2e 345;;
00aa16af 346;; Still too slow; could use some hand-optimization.
ef2cbb24 347;;
ef2cbb24
RS
348;; ASCII Control characters other than tab, linefeed and pagefeed are
349;; not handled.
350;;
12d89a2e 351;; Default background color isn't working.
ef2cbb24
RS
352;;
353;; Faces are always treated as opaque.
354;;
12d89a2e 355;; Epoch and Emacs 18 not supported. At all.
ef2cbb24 356;;
ef2cbb24
RS
357;;
358;; Features to add:
359;; ---------------
12d89a2e
RS
360;; 2-up and 4-up capability.
361;;
ef2cbb24
RS
362;; Line numbers.
363;;
12d89a2e 364;; Wide-print (landscape) capability.
ef2cbb24 365;;
ef2cbb24 366;;
12d89a2e
RS
367;; Acknowledgements
368;; ----------------
369;; Thanks to Kevin Rodgers <kevinr@ihs.com> for adding support for
370;; color and the invisible property.
ef2cbb24 371;;
12d89a2e
RS
372;; Thanks to Avishai Yacobi, avishaiy@mcil.comm.mot.com, for writing
373;; the initial port to Emacs 19. His code is no longer part of
374;; ps-print, but his work is still appreciated.
ef2cbb24 375;;
12d89a2e
RS
376;; Thanks to Remi Houdaille and Michel Train, michel@metasoft.fdn.org,
377;; for adding underline support. Their code also is no longer part of
378;; ps-print, but their efforts are not forgotten.
379;;
380;; Thanks also to all of you who mailed code to add features to
381;; ps-print; although I didn't use your code, I still appreciate your
382;; sharing it with me.
383;;
384;; Thanks to all who mailed comments, encouragement, and criticism.
385;; Thanks also to all who responded to my survey; I had too many
386;; responses to reply to them all, but I greatly appreciate your
387;; interest.
388;;
389;; Jim
390;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
ef2cbb24
RS
391
392;;; Code:
393
043620f4
KH
394(defconst ps-print-version "2.8"
395 "ps-print.el,v 2.8 1995/05/04 12:06:10 jct Exp
b87c5d3d
RS
396
397Jim's last change version -- this file may have been edited as part of
398Emacs without changes to the version number. When reporting bugs,
399please also report the version of Emacs, if any, that ps-print was
400distributed with.
401
402Please send all bug fixes and enhancements to
403 Jim Thompson <thompson@wg2.waii.com>.")
ef2cbb24
RS
404
405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
12d89a2e
RS
406;; User Variables:
407
408(defvar ps-lpr-command lpr-command
409 "*The shell command for printing a PostScript file.")
410
411(defvar ps-lpr-switches lpr-switches
412 "*A list of extra switches to pass to `ps-lpr-command'.")
413
414(defvar ps-spool-duplex nil ; Not many people have duplex
415 ; printers, so default to nil.
416 "*Non-nil indicates spooling is for a two-sided printer.
417For a duplex printer, the `ps-spool-*' commands will insert blank pages
418as needed between print jobs so that the next buffer printed will
419start on the right page. Also, if headers are turned on, the headers
420will be reversed on duplex printers so that the page numbers fall to
421the left on even-numbered pages.")
422
423(defvar ps-paper-type 'ps-letter
424 "*Specifies the size of paper to format for. Should be one of
00aa16af 425`ps-letter', `ps-legal', or `ps-a4'.")
12d89a2e
RS
426
427(defvar ps-print-header t
86c10ecb
RS
428 "*Non-nil means print a header at the top of each page.
429By default, the header displays the buffer name, page number, and, if
430the buffer is visiting a file, the file's directory. Headers are
431customizable by changing variables `ps-header-left' and
432`ps-header-right'.")
12d89a2e
RS
433
434(defvar ps-print-header-frame t
435 "*Non-nil means draw a gaudy frame around the header.")
436
437(defvar ps-show-n-of-n t
00aa16af
RS
438 "*Non-nil means show page numbers as N/M, meaning page N of M.
439Note: page numbers are displayed as part of headers, see variable
440`ps-print-headers'.")
12d89a2e 441
30040449
RS
442(defvar ps-print-color-p (and (or (fboundp 'x-color-values) ; Emacs
443 (fboundp 'pixel-components)) ; XEmacs
12d89a2e
RS
444 (fboundp 'float))
445; Printing color requires both floating point and x-color-values.
446 "*If non-nil, print the buffer's text in color.")
447
448(defvar ps-default-fg '(0.0 0.0 0.0)
449 "*RGB values of the default foreground color. Defaults to black.")
450
451(defvar ps-default-bg '(1.0 1.0 1.0)
452 "*RGB values of the default background color. Defaults to white.")
453
454(defvar ps-font-size 10
86c10ecb 455 "*Font size, in points, for generating Postscript.")
12d89a2e
RS
456
457(defvar ps-font "Courier"
86c10ecb 458 "*Font family name for ordinary text, when generating Postscript.")
12d89a2e
RS
459
460(defvar ps-font-bold "Courier-Bold"
86c10ecb 461 "*Font family name for bold text, when generating Postscript.")
12d89a2e
RS
462
463(defvar ps-font-italic "Courier-Oblique"
86c10ecb 464 "*Font family name for italic text, when generating Postscript.")
12d89a2e
RS
465
466(defvar ps-font-bold-italic "Courier-BoldOblique"
86c10ecb 467 "*Font family name for bold italic text, when generating Postscript.")
12d89a2e
RS
468
469(defvar ps-avg-char-width (if (fboundp 'float) 5.6 6)
86c10ecb
RS
470 "*The average width, in points, of a character, for generating Postscript.
471This is the value that ps-print uses to determine the length,
472x-dimension, of the text it has printed, and thus affects the point at
473which long lines wrap around. If you change the font or
474font size, you will probably have to adjust this value to match.")
12d89a2e
RS
475
476(defvar ps-space-width (if (fboundp 'float) 5.6 6)
86c10ecb
RS
477 "*The width of a space character, for generating Postscript.
478This value is used in expanding tab characters.")
12d89a2e
RS
479
480(defvar ps-line-height (if (fboundp 'float) 11.29 11)
86c10ecb
RS
481 "*The height of a line, for generating Postscript.
482This is the value that ps-print uses to determine the height,
483y-dimension, of the lines of text it has printed, and thus affects the
484point at which page-breaks are placed. If you change the font or font
485size, you will probably have to adjust this value to match. The
486line-height is *not* the same as the point size of the font.")
12d89a2e
RS
487
488(defvar ps-auto-font-detect t
489 "*Non-nil means automatically detect bold/italic face attributes.
86c10ecb 490nil means rely solely on the lists `ps-bold-faces', `ps-italic-faces',
12d89a2e
RS
491and `ps-underlined-faces'.")
492
493(defvar ps-bold-faces '()
86c10ecb
RS
494 "*A list of the \(non-bold\) faces that should be printed in bold font.
495This applies to generating Postscript.")
12d89a2e
RS
496
497(defvar ps-italic-faces '()
86c10ecb
RS
498 "*A list of the \(non-italic\) faces that should be printed in italic font.
499This applies to generating Postscript.")
12d89a2e
RS
500
501(defvar ps-underlined-faces '()
86c10ecb
RS
502 "*A list of the \(non-underlined\) faces that should be printed underlined.
503This applies to generating Postscript.")
12d89a2e
RS
504
505(defvar ps-header-lines 2
86c10ecb 506 "*Number of lines to display in page header, when generating Postscript.")
12d89a2e
RS
507(make-variable-buffer-local 'ps-header-lines)
508
509(defvar ps-left-header
510 (list 'ps-get-buffer-name 'ps-header-dirpart)
511 "*The items to display on the right part of the page header.
86c10ecb 512This applies to generating Postscript.
12d89a2e 513
86c10ecb 514The value should be a list of strings and symbols, each representing an
12d89a2e
RS
515entry in the PostScript array HeaderLinesLeft.
516
517Strings are inserted unchanged into the array; those representing
518PostScript string literals should be delimited with PostScript string
519delimiters '(' and ')'.
520
521For symbols with bound functions, the function is called and should
522return a string to be inserted into the array. For symbols with bound
523values, the value should be a string to be inserted into the array.
524In either case, function or variable, the string value has PostScript
525string delimiters added to it.")
526(make-variable-buffer-local 'ps-left-header)
527
528(defvar ps-right-header
529 (list "/pagenumberstring load" 'time-stamp-yy/mm/dd 'time-stamp-hh:mm:ss)
530 "*The items to display on the left part of the page header.
86c10ecb 531This applies to generating Postscript.
12d89a2e 532
86c10ecb 533See the variable `ps-left-header' for a description of the format of
12d89a2e
RS
534this variable.")
535(make-variable-buffer-local 'ps-right-header)
ef2cbb24
RS
536
537(defvar ps-razzle-dazzle t
12d89a2e
RS
538 "*Non-nil means report progress while formatting buffer.")
539
540(defvar ps-adobe-tag "%!PS-Adobe-1.0\n"
541 "*Contains the header line identifying the output as PostScript.
542By default, `ps-adobe-tag' contains the standard identifier. Some
543printers require slightly different versions of this line.")
544
545(defvar ps-build-face-reference t
546 "*Non-nil means build the reference face lists.
547
548Ps-print sets this value to nil after it builds its internal reference
549lists of bold and italic faces. By settings its value back to t, you
550can force ps-print to rebuild the lists the next time you invoke one
86c10ecb 551of the ...-with-faces commands.
12d89a2e
RS
552
553You should set this value back to t after you change the attributes of
554any face, or create new faces. Most users shouldn't have to worry
555about its setting, though.")
556
557(defvar ps-always-build-face-reference nil
558 "*Non-nil means always rebuild the reference face lists.
559
560If this variable is non-nil, ps-print will rebuild its internal
561reference lists of bold and italic faces *every* time one of the
562-with-faces commands is called. Most users shouldn't need to set this
563variable.")
ef2cbb24
RS
564
565;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
12d89a2e 566;; User commands
ef2cbb24 567
00aa16af 568;;;###autoload
ef2cbb24 569(defun ps-print-buffer (&optional filename)
12d89a2e 570 "Generate and print a PostScript image of the buffer.
ef2cbb24 571
86c10ecb 572When called with a numeric prefix argument (C-u), prompts the user for
ef2cbb24
RS
573the name of a file to save the PostScript image in, instead of sending
574it to the printer.
575
576More specifically, the FILENAME argument is treated as follows: if it
577is nil, send the image to the printer. If FILENAME is a string, save
578the PostScript image in a file with that name. If FILENAME is a
12d89a2e 579number, prompt the user for the name of the file to save in."
ef2cbb24 580
00aa16af 581 (interactive (list (ps-print-preprint current-prefix-arg)))
ef2cbb24
RS
582 (ps-generate (current-buffer) (point-min) (point-max)
583 'ps-generate-postscript)
584 (ps-do-despool filename))
585
586
00aa16af 587;;;###autoload
ef2cbb24 588(defun ps-print-buffer-with-faces (&optional filename)
12d89a2e 589 "Generate and print a PostScript image of the buffer.
12d89a2e 590Like `ps-print-buffer', but includes font, color, and underline
107e7c70
KH
591information in the generated image. This command works only if you
592are using a window system, so it has a way to determine color values."
00aa16af 593 (interactive (list (ps-print-preprint current-prefix-arg)))
ef2cbb24
RS
594 (ps-generate (current-buffer) (point-min) (point-max)
595 'ps-generate-postscript-with-faces)
596 (ps-do-despool filename))
597
ef2cbb24 598
00aa16af 599;;;###autoload
ef2cbb24 600(defun ps-print-region (from to &optional filename)
12d89a2e 601 "Generate and print a PostScript image of the region.
12d89a2e 602Like `ps-print-buffer', but prints just the current region."
ef2cbb24 603
00aa16af 604 (interactive (list (point) (mark) (ps-print-preprint current-prefix-arg)))
ef2cbb24
RS
605 (ps-generate (current-buffer) from to
606 'ps-generate-postscript)
607 (ps-do-despool filename))
608
ef2cbb24 609
00aa16af 610;;;###autoload
ef2cbb24 611(defun ps-print-region-with-faces (from to &optional filename)
12d89a2e 612 "Generate and print a PostScript image of the region.
12d89a2e 613Like `ps-print-region', but includes font, color, and underline
107e7c70
KH
614information in the generated image. This command works only if you
615are using a window system, so it has a way to determine color values."
ef2cbb24 616
00aa16af 617 (interactive (list (point) (mark) (ps-print-preprint current-prefix-arg)))
ef2cbb24
RS
618 (ps-generate (current-buffer) from to
619 'ps-generate-postscript-with-faces)
620 (ps-do-despool filename))
621
ef2cbb24 622
00aa16af 623;;;###autoload
ef2cbb24 624(defun ps-spool-buffer ()
12d89a2e 625 "Generate and spool a PostScript image of the buffer.
12d89a2e
RS
626Like `ps-print-buffer' except that the PostScript image is saved in a
627local buffer to be sent to the printer later.
ef2cbb24 628
12d89a2e 629Use the command `ps-despool' to send the spooled images to the printer."
ef2cbb24
RS
630 (interactive)
631 (ps-generate (current-buffer) (point-min) (point-max)
632 'ps-generate-postscript))
633
ef2cbb24 634
00aa16af 635;;;###autoload
ef2cbb24 636(defun ps-spool-buffer-with-faces ()
12d89a2e 637 "Generate and spool a PostScript image of the buffer.
12d89a2e 638Like `ps-spool-buffer', but includes font, color, and underline
107e7c70 639information in the generated image. This command works only if you
1cd7962f 640are using a window system, so it has a way to determine color values.
ef2cbb24 641
12d89a2e 642Use the command `ps-despool' to send the spooled images to the printer."
ef2cbb24
RS
643
644 (interactive)
645 (ps-generate (current-buffer) (point-min) (point-max)
646 'ps-generate-postscript-with-faces))
647
ef2cbb24 648
00aa16af 649;;;###autoload
ef2cbb24 650(defun ps-spool-region (from to)
12d89a2e 651 "Generate a PostScript image of the region and spool locally.
12d89a2e 652Like `ps-spool-buffer', but spools just the current region.
ef2cbb24 653
12d89a2e 654Use the command `ps-despool' to send the spooled images to the printer."
ef2cbb24
RS
655 (interactive "r")
656 (ps-generate (current-buffer) from to
657 'ps-generate-postscript))
658
ef2cbb24 659
00aa16af 660;;;###autoload
ef2cbb24 661(defun ps-spool-region-with-faces (from to)
12d89a2e 662 "Generate a PostScript image of the region and spool locally.
12d89a2e 663Like `ps-spool-region', but includes font, color, and underline
107e7c70 664information in the generated image. This command works only if you
1cd7962f 665are using a window system, so it has a way to determine color values.
ef2cbb24 666
12d89a2e 667Use the command `ps-despool' to send the spooled images to the printer."
ef2cbb24
RS
668 (interactive "r")
669 (ps-generate (current-buffer) from to
670 'ps-generate-postscript-with-faces))
671
00aa16af 672;;;###autoload
ef2cbb24
RS
673(defun ps-despool (&optional filename)
674 "Send the spooled PostScript to the printer.
675
676When called with a numeric prefix argument (C-u), prompt the user for
677the name of a file to save the spooled PostScript in, instead of sending
678it to the printer.
679
680More specifically, the FILENAME argument is treated as follows: if it
681is nil, send the image to the printer. If FILENAME is a string, save
682the PostScript image in a file with that name. If FILENAME is a
683number, prompt the user for the name of the file to save in."
00aa16af
RS
684 (interactive (list (ps-print-preprint current-prefix-arg)))
685 (ps-do-despool filename))
12d89a2e
RS
686
687;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
688;; Utility functions and variables:
689
6770a60f
RS
690(defvar ps-print-emacs-type
691 (cond ((string-match "XEmacs" emacs-version) 'xemacs)
692 ((string-match "Lucid" emacs-version) 'lucid)
693 ((string-match "Epoch" emacs-version) 'epoch)
694 (t 'emacs)))
695
696(if (or (eq ps-print-emacs-type 'lucid)
697 (eq ps-print-emacs-type 'xemacs))
043620f4
KH
698 (if (< emacs-minor-version 12)
699 (setq ps-print-color-p nil))
12d89a2e
RS
700 (require 'faces)) ; face-font, face-underline-p,
701 ; x-font-regexp
702
703(require 'time-stamp)
704
705(defvar ps-print-prologue "% ISOLatin1Encoding stolen from ps_init.ps in GhostScript 2.6.1.4:
706% If the ISOLatin1Encoding vector isn't known, define it.
707/ISOLatin1Encoding where { pop } {
708% Define the ISO Latin-1 encoding vector.
709% The first half is the same as the standard encoding,
710% except for minus instead of hyphen at code 055.
711/ISOLatin1Encoding
712StandardEncoding 0 45 getinterval aload pop
713 /minus
714StandardEncoding 46 82 getinterval aload pop
715%*** NOTE: the following are missing in the Adobe documentation,
716%*** but appear in the displayed table:
717%*** macron at 0225, dieresis at 0230, cedilla at 0233, space at 0240.
718% \20x
719 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
720 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef
721 /dotlessi /grave /acute /circumflex /tilde /macron /breve /dotaccent
722 /dieresis /.notdef /ring /cedilla /.notdef /hungarumlaut /ogonek /caron
723% \24x
724 /space /exclamdown /cent /sterling
725 /currency /yen /brokenbar /section
726 /dieresis /copyright /ordfeminine /guillemotleft
727 /logicalnot /hyphen /registered /macron
728 /degree /plusminus /twosuperior /threesuperior
729 /acute /mu /paragraph /periodcentered
730 /cedilla /onesuperior /ordmasculine /guillemotright
731 /onequarter /onehalf /threequarters /questiondown
732% \30x
733 /Agrave /Aacute /Acircumflex /Atilde
734 /Adieresis /Aring /AE /Ccedilla
735 /Egrave /Eacute /Ecircumflex /Edieresis
736 /Igrave /Iacute /Icircumflex /Idieresis
737 /Eth /Ntilde /Ograve /Oacute
738 /Ocircumflex /Otilde /Odieresis /multiply
739 /Oslash /Ugrave /Uacute /Ucircumflex
740 /Udieresis /Yacute /Thorn /germandbls
741% \34x
742 /agrave /aacute /acircumflex /atilde
743 /adieresis /aring /ae /ccedilla
744 /egrave /eacute /ecircumflex /edieresis
745 /igrave /iacute /icircumflex /idieresis
746 /eth /ntilde /ograve /oacute
747 /ocircumflex /otilde /odieresis /divide
748 /oslash /ugrave /uacute /ucircumflex
749 /udieresis /yacute /thorn /ydieresis
750256 packedarray def
751} ifelse
752
753/reencodeFontISO { %def
754 dup
755 length 5 add dict % Make a new font (a new dict
756 % the same size as the old
757 % one) with room for our new
758 % symbols.
759
760 begin % Make the new font the
761 % current dictionary.
762
763
764 { 1 index /FID ne
765 { def } { pop pop } ifelse
766 } forall % Copy each of the symbols
767 % from the old dictionary to
768 % the new except for the font
769 % ID.
770
771 /Encoding ISOLatin1Encoding def % Override the encoding with
772 % the ISOLatin1 encoding.
773
774 % Use the font's bounding box to determine the ascent, descent,
775 % and overall height; don't forget that these values have to be
776 % transformed using the font's matrix.
777 FontBBox
778 FontMatrix transform /Ascent exch def pop
779 FontMatrix transform /Descent exch def pop
780 /FontHeight Ascent Descent sub def
781
782 % Define these in case they're not in the FontInfo (also, here
783 % they're easier to get to.
784 /UnderlinePosition 1 def
785 /UnderlineThickness 1 def
786
787 % Get the underline position and thickness if they're defined.
788 currentdict /FontInfo known {
789 FontInfo
790
791 dup /UnderlinePosition known {
792 dup /UnderlinePosition get
793 0 exch FontMatrix transform exch pop
794 /UnderlinePosition exch def
795 } if
796
797 dup /UnderlineThickness known {
798 /UnderlineThickness get
799 0 exch FontMatrix transform exch pop
800 /UnderlineThickness exch def
801 } if
802
803 } if
804
805 currentdict % Leave the new font on the
806 % stack
807
808 end % Stop using the font as the
809 % current dictionary.
810
811 definefont % Put the font into the font
812 % dictionary
813
814 pop % Discard the returned font.
815} bind def
ef2cbb24 816
12d89a2e
RS
817/Font {
818 findfont exch scalefont reencodeFontISO
819} def
820
821/F { % Font select
822 findfont
823 dup /Ascent get /Ascent exch def
824 dup /Descent get /Descent exch def
00aa16af 825 dup /FontHeight get /FontHeight exch def
12d89a2e
RS
826 dup /UnderlinePosition get /UnderlinePosition exch def
827 dup /UnderlineThickness get /UnderlineThickness exch def
828 setfont
829} def
830
831/FG /setrgbcolor load def
832
833/bg false def
834/BG {
835 dup /bg exch def
836 { mark 4 1 roll ] /bgcolor exch def } if
837} def
838
839/dobackground { % width --
840 currentpoint
841 gsave
842 newpath
843 moveto
844 0 Ascent rmoveto
845 dup 0 rlineto
846 0 Descent Ascent sub rlineto
847 neg 0 rlineto
848 closepath
849 bgcolor aload pop setrgbcolor
850 fill
851 grestore
852} def
853
854/dobackgroundstring { % string --
855 stringwidth pop
856 dobackground
857} def
858
859/dounderline { % fromx fromy --
860 currentpoint
861 gsave
862 UnderlineThickness setlinewidth
863 4 2 roll
864 UnderlinePosition add moveto
865 UnderlinePosition add lineto
866 stroke
867 grestore
868} def
869
870/eolbg {
871 currentpoint pop
872 PrintWidth LeftMargin add exch sub dobackground
873} def
874
875/eolul {
876 currentpoint exch pop
877 PrintWidth LeftMargin add exch dounderline
878} def
879
880/SL { % Soft Linefeed
881 bg { eolbg } if
882 ul { eolul } if
883 currentpoint LineHeight sub LeftMargin exch moveto pop
884} def
885
886/HL /SL load def % Hard Linefeed
887
888/sp1 { currentpoint 3 -1 roll } def
889
890% Some debug
891/dcp { currentpoint exch 40 string cvs print (, ) print = } def
892/dp { print 2 copy
893 exch 40 string cvs print (, ) print = } def
894
895/S {
896 bg { dup dobackgroundstring } if
897 ul { sp1 } if
898 show
899 ul { dounderline } if
900} def
901
902/W {
903 ul { sp1 } if
904 ( ) stringwidth % Get the width of a space
905 pop % Discard the Y component
906 mul % Multiply the width of a
907 % space by the number of
908 % spaces to plot
909 bg { dup dobackground } if
910 0 rmoveto
911 ul { dounderline } if
912} def
913
914/BeginDSCPage {
915 /vmstate save def
916} def
917
918/BeginPage {
919 PrintHeader {
920 PrintHeaderFrame { HeaderFrame } if
921 HeaderText
922 } if
923 LeftMargin
924 BottomMargin PrintHeight add
925 moveto % move to where printing will
926 % start.
927} def
928
929/EndPage {
930 bg { eolbg } if
931 ul { eolul } if
932 showpage % Spit out a page
933} def
934
935/EndDSCPage {
936 vmstate restore
937} def
938
939/ul false def
940
941/UL { /ul exch def } def
942
943/h0 14 /Helvetica-Bold Font
944/h1 12 /Helvetica Font
945
946/h1 F
947
00aa16af 948/HeaderLineHeight FontHeight def
12d89a2e
RS
949/HeaderDescent Descent def
950/HeaderPad 2 def
951
952/SetHeaderLines {
953 /HeaderOffset TopMargin 2 div def
954 /HeaderLines exch def
955 /HeaderHeight HeaderLines HeaderLineHeight mul HeaderPad 2 mul add def
956 /PrintHeight PrintHeight HeaderHeight sub def
957} def
958
959/HeaderFrameStart {
960 LeftMargin BottomMargin PrintHeight add HeaderOffset add
961} def
962
963/HeaderFramePath {
964 PrintWidth 0 rlineto
965 0 HeaderHeight rlineto
966 PrintWidth neg 0 rlineto
967 0 HeaderHeight neg rlineto
968} def
969
970/HeaderFrame {
971 gsave
972 0.4 setlinewidth
973 HeaderFrameStart moveto
974 1 -1 rmoveto
975 HeaderFramePath
976 0 setgray fill
977 HeaderFrameStart moveto
978 HeaderFramePath
979 gsave 0.9 setgray fill grestore
980 gsave 0 setgray stroke grestore
981 grestore
982} def
983
984/HeaderStart {
985 HeaderFrameStart
986 exch HeaderPad add exch
987 HeaderLineHeight HeaderLines 1 sub mul add HeaderDescent sub HeaderPad add
988} def
989
990/strcat {
991 dup length 3 -1 roll dup length dup 4 -1 roll add string dup
992 0 5 -1 roll putinterval
993 dup 4 2 roll exch putinterval
994} def
995
996/pagenumberstring {
997 PageNumber 32 string cvs
998 ShowNofN {
999 (/) strcat
1000 PageCount 32 string cvs strcat
1001 } if
1002} def
1003
1004/HeaderText {
1005 HeaderStart moveto
1006
1007 HeaderLinesRight HeaderLinesLeft
1008 Duplex PageNumber 1 and 0 eq and { exch } if
1009
1010 {
1011 aload pop
1012 exch F
1013 gsave
1014 dup xcheck { exec } if
1015 show
1016 grestore
1017 0 HeaderLineHeight neg rmoveto
1018 } forall
1019
1020 HeaderStart moveto
1021
1022 {
1023 aload pop
1024 exch F
1025 gsave
1026 dup xcheck { exec } if
1027 dup stringwidth pop
1028 PrintWidth exch sub HeaderPad 2 mul sub 0 rmoveto
1029 show
1030 grestore
1031 0 HeaderLineHeight neg rmoveto
1032 } forall
1033} def
1034
1035/ReportFontInfo {
1036 2 copy
1037 /t0 3 1 roll Font
1038 /t0 F
00aa16af 1039 /lh FontHeight def
12d89a2e
RS
1040 /sw ( ) stringwidth pop def
1041 /aw (01234567890abcdefghijklmnopqrstuvwxyz) dup length exch
1042 stringwidth pop exch div def
1043 /t1 12 /Helvetica-Oblique Font
1044 /t1 F
1045 72 72 moveto
1046 gsave
1047 (For ) show
1048 128 string cvs show
1049 ( ) show
1050 32 string cvs show
1051 ( point, the line height is ) show
1052 lh 32 string cvs show
1053 (, the space width is ) show
1054 sw 32 string cvs show
1055 (,) show
1056 grestore
00aa16af 1057 0 FontHeight neg rmoveto
12d89a2e
RS
1058 (and a crude estimate of average character width is ) show
1059 aw 32 string cvs show
1060 (.) show
1061 showpage
1062} def
1063
1064% 10 /Courier ReportFontInfo
1065")
1066
1067;; Start Editing Here:
ef2cbb24 1068
12d89a2e
RS
1069(defvar ps-source-buffer nil)
1070(defvar ps-spool-buffer-name "*PostScript*")
1071(defvar ps-spool-buffer nil)
ef2cbb24 1072
12d89a2e
RS
1073(defvar ps-output-head nil)
1074(defvar ps-output-tail nil)
ef2cbb24 1075
12d89a2e
RS
1076(defvar ps-page-count 0)
1077(defvar ps-showpage-count 0)
ef2cbb24 1078
12d89a2e
RS
1079(defvar ps-current-font 0)
1080(defvar ps-current-underline-p nil)
1081(defvar ps-default-color (if ps-print-color-p ps-default-fg)) ; black
1082(defvar ps-current-color ps-default-color)
1083(defvar ps-current-bg nil)
1084
1085(defvar ps-razchunk 0)
1086
6770a60f 1087(defvar ps-color-format (if (eq ps-print-emacs-type 'emacs)
12d89a2e
RS
1088
1089 ;;Emacs understands the %f format; we'll
1090 ;;use it to limit color RGB values to
1091 ;;three decimals to cut down some on the
1092 ;;size of the PostScript output.
1093 "%0.3f %0.3f %0.3f"
1094
1095 ;; Lucid emacsen will have to make do with
1096 ;; %s (princ) for floats.
1097 "%s %s %s"))
1098
1099;; These values determine how much print-height to deduct when headers
1100;; are turned on. This is a pretty clumsy way of handling it, but
1101;; it'll do for now.
1102(defvar ps-header-title-line-height (if (fboundp 'float) 16.0 16));Helvetica 14
1103(defvar ps-header-line-height (if (fboundp 'float) 13.7 14));Helvetica 12
1104(defvar ps-header-pad 2)
1105
1106;; LetterSmall 7.68 inch 10.16 inch
1107;; Tabloid 11.0 inch 17.0 inch
1108;; Ledger 17.0 inch 11.0 inch
1109;; Statement 5.5 inch 8.5 inch
1110;; Executive 7.5 inch 10.0 inch
1111;; A3 11.69 inch 16.5 inch
1112;; A4Small 7.47 inch 10.85 inch
1113;; B4 10.125 inch 14.33 inch
1114;; B5 7.16 inch 10.125 inch
1115
1116;; All page dimensions are in PostScript points.
1117
1118(defvar ps-left-margin 72) ; 1 inch
1119(defvar ps-right-margin 72) ; 1 inch
1120(defvar ps-bottom-margin 36) ; 1/2 inch
1121(defvar ps-top-margin 72) ; 1 inch
1122
1123;; Letter 8.5 inch x 11.0 inch
1124(defvar ps-letter-page-height 792) ; 11 inches
1125(defvar ps-letter-page-width 612) ; 8.5 inches
1126
1127;; Legal 8.5 inch x 14.0 inch
1128(defvar ps-legal-page-height 1008) ; 14.0 inches
1129(defvar ps-legal-page-width 612) ; 8.5 inches
1130
1131;; A4 8.26 inch x 11.69 inch
1132(defvar ps-a4-page-height 842) ; 11.69 inches
1133(defvar ps-a4-page-width 595) ; 8.26 inches
1134
1135(defvar ps-pages-alist
1136 (list (list 'ps-letter ps-letter-page-width ps-letter-page-height)
1137 (list 'ps-legal ps-legal-page-width ps-legal-page-height)
1138 (list 'ps-a4 ps-a4-page-width ps-a4-page-height)))
1139
1140;; Define some constants to index into the page lists.
1141(defvar ps-page-width-i 1)
1142(defvar ps-page-height-i 2)
1143
1144(defvar ps-page-dimensions nil)
1145(defvar ps-print-width nil)
1146(defvar ps-print-height nil)
1147
1148(defvar ps-height-remaining)
1149(defvar ps-width-remaining)
1150
1151(defvar ps-ref-bold-faces nil)
1152(defvar ps-ref-italic-faces nil)
1153(defvar ps-ref-underlined-faces nil)
ef2cbb24 1154
12d89a2e
RS
1155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1156;; Internal functions
1157
1158(defun ps-get-page-dimensions ()
1159 (setq ps-page-dimensions (assq ps-paper-type ps-pages-alist))
1160 (let ((ps-page-width (nth ps-page-width-i ps-page-dimensions))
1161 (ps-page-height (nth ps-page-height-i ps-page-dimensions)))
1162 (setq ps-print-height (- ps-page-height ps-top-margin ps-bottom-margin))
1163 (setq ps-print-width (- ps-page-width ps-left-margin ps-right-margin))))
ef2cbb24 1164
12d89a2e 1165(defun ps-print-preprint (&optional filename)
ef2cbb24
RS
1166 (if (and filename
1167 (or (numberp filename)
1168 (listp filename)))
12d89a2e
RS
1169 (let* ((name (concat (buffer-name) ".ps"))
1170 (prompt (format "Save PostScript to file: (default %s) "
1171 name)))
1172 (read-file-name prompt default-directory
1173 name nil))))
1174
1175;; The following functions implement a simple list-buffering scheme so
1176;; that ps-print doesn't have to repeatedly switch between buffers
1177;; while spooling. The functions ps-output and ps-output-string build
1178;; up the lists; the function ps-flush-output takes the lists and
1179;; insert its contents into the spool buffer (*PostScript*).
1180
1181(defun ps-output-string-prim (string)
1182 (insert "(") ;insert start-string delimiter
1183 (save-excursion ;insert string
1184 (insert string))
1185
1186 ;; Find and quote special characters as necessary for PS
1187 (while (re-search-forward "[()\\]" nil t)
1188 (save-excursion
1189 (forward-char -1)
1190 (insert "\\")))
ef2cbb24 1191
12d89a2e
RS
1192 (goto-char (point-max))
1193 (insert ")")) ;insert end-string delimiter
ef2cbb24 1194
12d89a2e
RS
1195(defun ps-init-output-queue ()
1196 (setq ps-output-head (list ""))
1197 (setq ps-output-tail ps-output-head))
ef2cbb24 1198
12d89a2e
RS
1199(defun ps-output (&rest args)
1200 (setcdr ps-output-tail args)
1201 (while (cdr ps-output-tail)
1202 (setq ps-output-tail (cdr ps-output-tail))))
ef2cbb24 1203
12d89a2e
RS
1204(defun ps-output-string (string)
1205 (ps-output t string))
ef2cbb24 1206
12d89a2e
RS
1207(defun ps-flush-output ()
1208 (save-excursion
1209 (set-buffer ps-spool-buffer)
1210 (goto-char (point-max))
1211 (while ps-output-head
1212 (let ((it (car ps-output-head)))
1213 (if (not (eq t it))
1214 (insert it)
1215 (setq ps-output-head (cdr ps-output-head))
1216 (ps-output-string-prim (car ps-output-head))))
1217 (setq ps-output-head (cdr ps-output-head))))
1218 (ps-init-output-queue))
1219
1220(defun ps-insert-file (fname)
1221 (ps-flush-output)
1222
1223 ;; Check to see that the file exists and is readable; if not, throw
1224 ;; and error.
1225 (if (not (file-readable-p fname))
1226 (error "Could not read file `%s'" fname))
ef2cbb24 1227
12d89a2e
RS
1228 (save-excursion
1229 (set-buffer ps-spool-buffer)
1230 (goto-char (point-max))
1231 (insert-file fname)))
1232
1233;; These functions insert the arrays that define the contents of the
1234;; headers.
ef2cbb24 1235
12d89a2e
RS
1236(defun ps-generate-header-line (fonttag &optional content)
1237 (ps-output " [ " fonttag " ")
1238 (cond
1239 ;; Literal strings should be output as is -- the string must
1240 ;; contain its own PS string delimiters, '(' and ')', if necessary.
1241 ((stringp content)
1242 (ps-output content))
1243
1244 ;; Functions are called -- they should return strings; they will be
1245 ;; inserted as strings and the PS string delimiters added.
1246 ((and (symbolp content) (fboundp content))
1247 (ps-output-string (funcall content)))
1248
1249 ;; Variables will have their contents inserted. They should
1250 ;; contain strings, and will be inserted as strings.
1251 ((and (symbolp content) (boundp content))
1252 (ps-output-string (symbol-value content)))
1253
1254 ;; Anything else will get turned into an empty string.
1255 (t
1256 (ps-output-string "")))
1257 (ps-output " ]\n"))
1258
1259(defun ps-generate-header (name contents)
1260 (ps-output "/" name " [\n")
1261 (if (> ps-header-lines 0)
1262 (let ((count 1))
1263 (ps-generate-header-line "/h0" (car contents))
1264 (while (and (< count ps-header-lines)
1265 (setq contents (cdr contents)))
1266 (ps-generate-header-line "/h1" (car contents))
1267 (setq count (+ count 1)))
1268 (ps-output "] def\n"))))
1269
1270(defun ps-output-boolean (name bool)
1271 (ps-output (format "/%s %s def\n" name (if bool "true" "false"))))
ef2cbb24
RS
1272
1273(defun ps-begin-file ()
12d89a2e
RS
1274 (setq ps-showpage-count 0)
1275
1276 (ps-output ps-adobe-tag)
1277 (ps-output "%%Title: " (buffer-name) "\n") ;Take job name from name of
1278 ;first buffer printed
1279 (ps-output "%%Creator: " (user-full-name) "\n")
1280 (ps-output "%%CreationDate: "
1281 (time-stamp-hh:mm:ss) " " (time-stamp-mon-dd-yyyy) "\n")
1282 (ps-output "%% DocumentFonts: Helvetica Helvetica-Bold "
1283 ps-font " " ps-font-bold " " ps-font-italic " "
1284 ps-font-bold-italic "\n")
1285 (ps-output "%%Pages: (atend)\n")
1286 (ps-output "%%EndComments\n\n")
1287
1288 (ps-output-boolean "Duplex" ps-spool-duplex)
1289 (ps-output-boolean "PrintHeader" ps-print-header)
1290 (ps-output-boolean "PrintHeaderFrame" ps-print-header-frame)
1291 (ps-output-boolean "ShowNofN" ps-show-n-of-n)
1292
1293 (ps-output (format "/LeftMargin %d def\n" ps-left-margin))
1294 (ps-output (format "/RightMargin %d def\n" ps-right-margin))
1295 (ps-output (format "/BottomMargin %d def\n" ps-bottom-margin))
1296 (ps-output (format "/TopMargin %d def\n" ps-top-margin))
1297
1298 (ps-get-page-dimensions)
1299 (ps-output (format "/PrintWidth %d def\n" ps-print-width))
1300 (ps-output (format "/PrintHeight %d def\n" ps-print-height))
1301
b87c5d3d 1302 (ps-output (format "/LineHeight %s def\n" ps-line-height))
00aa16af 1303
12d89a2e
RS
1304 (ps-output ps-print-prologue)
1305
1306 (ps-output (format "/f0 %d /%s Font\n" ps-font-size ps-font))
1307 (ps-output (format "/f1 %d /%s Font\n" ps-font-size ps-font-bold))
1308 (ps-output (format "/f2 %d /%s Font\n" ps-font-size ps-font-italic))
1309 (ps-output (format "/f3 %d /%s Font\n" ps-font-size
1310 ps-font-bold-italic))
1311
1312 (ps-output "%%EndPrologue\n"))
ef2cbb24 1313
12d89a2e
RS
1314(defun ps-header-dirpart ()
1315 (let ((fname (buffer-file-name)))
1316 (if fname
1317 (if (string-equal (buffer-name) (file-name-nondirectory fname))
1318 (file-name-directory fname)
1319 fname)
1320 "")))
ef2cbb24 1321
12d89a2e
RS
1322(defun ps-get-buffer-name ()
1323 ;; Indulge me this little easter egg:
1324 (if (string= (buffer-name) "ps-print.el")
1325 "Hey, Cool! It's ps-print.el!!!"
1326 (buffer-name)))
ef2cbb24 1327
12d89a2e
RS
1328(defun ps-begin-job ()
1329 (setq ps-page-count 0))
ef2cbb24
RS
1330
1331(defun ps-end-file ()
12d89a2e
RS
1332 (ps-output "%%Trailer\n")
1333 (ps-output "%%Pages: " (format "%d\n" ps-showpage-count)))
ef2cbb24
RS
1334
1335(defun ps-next-page ()
1336 (ps-end-page)
12d89a2e
RS
1337 (ps-flush-output)
1338 (ps-begin-page))
1339
1340(defun ps-begin-page (&optional dummypage)
1341 (ps-get-page-dimensions)
1342 (setq ps-width-remaining ps-print-width)
1343 (setq ps-height-remaining ps-print-height)
1344
1345 ;; If headers are turned on, deduct the height of the header from
1346 ;; the print height remaining. Clumsy clumsy clumsy.
1347 (if ps-print-header
1348 (setq ps-height-remaining
1349 (- ps-height-remaining
1350 ps-header-title-line-height
1351 (* ps-header-line-height (- ps-header-lines 1))
1352 (* 2 ps-header-pad))))
1353
1354 (setq ps-page-count (+ ps-page-count 1))
1355
1356 (ps-output "\n%%Page: "
1357 (format "%d %d\n" ps-page-count (+ 1 ps-showpage-count)))
1358 (ps-output "BeginDSCPage\n")
1359 (ps-output (format "/PageNumber %d def\n" ps-page-count))
1360 (ps-output "/PageCount 0 def\n")
1361
1362 (if ps-print-header
1363 (progn
1364 (ps-generate-header "HeaderLinesLeft" ps-left-header)
1365 (ps-generate-header "HeaderLinesRight" ps-right-header)
1366 (ps-output (format "%d SetHeaderLines\n" ps-header-lines))))
1367
1368 (ps-output "BeginPage\n")
ef2cbb24 1369 (ps-set-font ps-current-font)
12d89a2e
RS
1370 (ps-set-bg ps-current-bg)
1371 (ps-set-color ps-current-color)
1372 (ps-set-underline ps-current-underline-p))
ef2cbb24
RS
1373
1374(defun ps-end-page ()
12d89a2e
RS
1375 (setq ps-showpage-count (+ 1 ps-showpage-count))
1376 (ps-output "EndPage\n")
1377 (ps-output "EndDSCPage\n"))
1378
1379(defun ps-dummy-page ()
1380 (setq ps-showpage-count (+ 1 ps-showpage-count))
1381 (ps-output "%%Page: " (format "- %d\n" ps-showpage-count)
1382 "BeginDSCPage
1383/PrintHeader false def
1384BeginPage
1385EndPage
1386EndDSCPage\n"))
1387
ef2cbb24 1388(defun ps-next-line ()
12d89a2e 1389 (if (< ps-height-remaining ps-line-height)
ef2cbb24 1390 (ps-next-page)
12d89a2e
RS
1391 (setq ps-width-remaining ps-print-width)
1392 (setq ps-height-remaining (- ps-height-remaining ps-line-height))
1393 (ps-hard-lf)))
ef2cbb24
RS
1394
1395(defun ps-continue-line ()
12d89a2e
RS
1396 (if (< ps-height-remaining ps-line-height)
1397 (ps-next-page)
1398 (setq ps-width-remaining ps-print-width)
1399 (setq ps-height-remaining (- ps-height-remaining ps-line-height))
1400 (ps-soft-lf)))
1401
1402(defun ps-hard-lf ()
1403 (ps-output "HL\n"))
1404
1405(defun ps-soft-lf ()
1406 (ps-output "SL\n"))
1407
1408(defun ps-find-wrappoint (from to char-width)
1409 (let ((avail (truncate (/ ps-width-remaining char-width)))
1410 (todo (- to from)))
1411 (if (< todo avail)
1412 (cons to (* todo char-width))
1413 (cons (+ from avail) ps-width-remaining))))
1414
1415(defun ps-basic-plot-string (from to &optional bg-color)
1416 (let* ((wrappoint (ps-find-wrappoint from to ps-avg-char-width))
1417 (to (car wrappoint))
1418 (string (buffer-substring from to)))
1419 (ps-output-string string)
1420 (ps-output " S\n") ;
1421 wrappoint))
1422
1423(defun ps-basic-plot-whitespace (from to &optional bg-color)
1424 (let* ((wrappoint (ps-find-wrappoint from to ps-space-width))
1425 (to (car wrappoint)))
1426
1427 (ps-output (format "%d W\n" (- to from)))
1428 wrappoint))
1429
1430(defun ps-plot (plotfunc from to &optional bg-color)
ef2cbb24 1431 (while (< from to)
12d89a2e
RS
1432 (let* ((wrappoint (funcall plotfunc from to bg-color))
1433 (plotted-to (car wrappoint))
1434 (plotted-width (cdr wrappoint)))
1435 (setq from plotted-to)
1436 (setq ps-width-remaining (- ps-width-remaining plotted-width))
1437 (if (< from to)
1438 (ps-continue-line))))
ef2cbb24
RS
1439 (if ps-razzle-dazzle
1440 (let* ((q-todo (- (point-max) (point-min)))
12d89a2e 1441 (q-done (- (point) (point-min)))
ef2cbb24 1442 (chunkfrac (/ q-todo 8))
12d89a2e 1443 (chunksize (if (> chunkfrac 1000) 1000 chunkfrac)))
ef2cbb24 1444 (if (> (- q-done ps-razchunk) chunksize)
00aa16af 1445 (let (foo)
ef2cbb24
RS
1446 (setq ps-razchunk q-done)
1447 (setq foo
1448 (if (< q-todo 100)
12d89a2e
RS
1449 (/ (* 100 q-done) q-todo)
1450 (/ q-done (/ q-todo 100))))
1451 (message "Formatting...%d%%" foo))))))
1452
1453(defun ps-set-font (font)
1454 (setq ps-current-font font)
1455 (ps-output (format "/f%d F\n" ps-current-font)))
1456
00aa16af 1457(defvar ps-print-color-scale nil)
12d89a2e
RS
1458
1459(defun ps-set-bg (color)
1460 (if (setq ps-current-bg color)
1461 (ps-output (format ps-color-format (nth 0 color) (nth 1 color)
1462 (nth 2 color))
1463 " true BG\n")
1464 (ps-output "false BG\n")))
1465
1466(defun ps-set-color (color)
1467 (if (setq ps-current-color color)
043620f4
KH
1468 nil
1469 (setq ps-current-color ps-default-fg))
1470 (ps-output (format ps-color-format (nth 0 ps-current-color)
1471 (nth 1 ps-current-color) (nth 2 ps-current-color))
1472 " FG\n"))
12d89a2e
RS
1473
1474(defun ps-set-underline (underline-p)
1475 (ps-output (if underline-p "true" "false") " UL\n")
1476 (setq ps-current-underline-p underline-p))
1477
1478(defun ps-plot-region (from to font fg-color &optional bg-color underline-p)
1479
1480 (if (not (equal font ps-current-font))
1481 (ps-set-font font))
1482
1483 ;; Specify a foreground color only if one's specified and it's
1484 ;; different than the current.
1485 (if (not (equal fg-color ps-current-color))
1486 (ps-set-color fg-color))
1487
1488 (if (not (equal bg-color ps-current-bg))
1489 (ps-set-bg bg-color))
1490
1491 ;; Toggle underlining if different.
1492 (if (not (equal underline-p ps-current-underline-p))
1493 (ps-set-underline underline-p))
ef2cbb24 1494
12d89a2e 1495 ;; Starting at the beginning of the specified region...
ef2cbb24
RS
1496 (save-excursion
1497 (goto-char from)
12d89a2e
RS
1498
1499 ;; ...break the region up into chunks separated by tabs, linefeeds,
1500 ;; and pagefeeds, and plot each chunk.
ef2cbb24 1501 (while (< from to)
12d89a2e 1502 (if (re-search-forward "[\t\n\f]" to t)
ef2cbb24
RS
1503 (let ((match (char-after (match-beginning 0))))
1504 (cond
12d89a2e
RS
1505 ((= match ?\t)
1506 (let ((linestart
1507 (save-excursion (beginning-of-line) (point))))
1508 (ps-plot 'ps-basic-plot-string from (- (point) 1)
1509 bg-color)
1510 (forward-char -1)
1511 (setq from (+ linestart (current-column)))
1512 (if (re-search-forward "[ \t]+" to t)
1513 (ps-plot 'ps-basic-plot-whitespace
1514 from (+ linestart (current-column))
1515 bg-color))))
1516
1517 ((= match ?\n)
1518 (ps-plot 'ps-basic-plot-string from (- (point) 1)
1519 bg-color)
1520 (ps-next-line)
1521 )
1522
1523 ((= match ?\f)
1524 (ps-plot 'ps-basic-plot-string from (- (point) 1)
1525 bg-color)
1526 (ps-next-page)))
ef2cbb24 1527 (setq from (point)))
12d89a2e 1528 (ps-plot 'ps-basic-plot-string from to bg-color)
ef2cbb24
RS
1529 (setq from to)))))
1530
12d89a2e
RS
1531(defun ps-color-value (x-color-value)
1532 ;; Scale 16-bit X-COLOR-VALUE to PostScript color value in [0, 1] interval.
1533 (/ x-color-value ps-print-color-scale))
ef2cbb24 1534
043620f4
KH
1535(defun ps-color-values (x-color)
1536 (cond ((fboundp 'x-color-values)
1537 (x-color-values x-color))
1538 ((fboundp 'pixel-components)
1539 (pixel-components x-color))
1540 (t (error "No available function to determine X color values."))))
1541
1542(defun ps-face-attributes (face)
1543 (let ((differs (face-differs-from-default-p face)))
1544 (list (memq face ps-ref-bold-faces)
1545 (memq face ps-ref-italic-faces)
1546 (memq face ps-ref-underlined-faces)
1547 (and differs (face-foreground face))
1548 (and differs (face-background face)))))
1549
1550(defun ps-face-attribute-list (face-or-list)
1551 (if (listp face-or-list)
1552 (let (bold-p italic-p underline-p foreground background face-attr face)
1553 (while face-or-list
1554 (setq face (car face-or-list))
1555 (setq face-attr (ps-face-attributes face))
1556 (setq bold-p (or bold-p (nth 0 face-attr)))
1557 (setq italic-p (or italic-p (nth 1 face-attr)))
1558 (setq underline-p (or underline-p (nth 2 face-attr)))
1559 (if foreground
1560 nil
1561 (setq foreground (nth 3 face-attr)))
1562 (if background
1563 nil
1564 (setq background (nth 4 face-attr)))
1565 (setq face-or-list (cdr face-or-list)))
1566 (list bold-p italic-p underline-p foreground background))
1567
1568 (ps-face-attributes face-or-list)))
1569
12d89a2e
RS
1570(defun ps-plot-with-face (from to face)
1571 (if face
043620f4
KH
1572 (let* ((face-attr (ps-face-attribute-list face))
1573 (bold-p (nth 0 face-attr))
1574 (italic-p (nth 1 face-attr))
1575 (underline-p (nth 2 face-attr))
1576 (foreground (nth 3 face-attr))
1577 (background (nth 4 face-attr))
12d89a2e
RS
1578 (fg-color (if (and ps-print-color-p foreground)
1579 (mapcar 'ps-color-value
043620f4 1580 (ps-color-values foreground))
12d89a2e
RS
1581 ps-default-color))
1582 (bg-color (if (and ps-print-color-p background)
1583 (mapcar 'ps-color-value
043620f4 1584 (ps-color-values background)))))
12d89a2e
RS
1585 (ps-plot-region from to
1586 (cond ((and bold-p italic-p) 3)
1587 (italic-p 2)
1588 (bold-p 1)
1589 (t 0))
1590; (or fg-color '(0.0 0.0 0.0))
1591 fg-color
1592 bg-color underline-p))
1593 (goto-char to)))
1594
1595
30040449 1596(defun ps-emacs-face-kind-p (face kind kind-regex kind-list)
12d89a2e
RS
1597 (let ((frame-font (face-font face))
1598 (face-defaults (face-font face t)))
1599 (or
1600 ;; Check FACE defaults:
1601 (and (listp face-defaults)
1602 (memq kind face-defaults))
1603
1604 ;; Check the user's preferences
1605 (memq face kind-list))))
1606
1607(defun ps-xemacs-face-kind-p (face kind kind-regex kind-list)
1608 (let* ((frame-font (or (face-font face) (face-font 'default)))
1609 (kind-cons (assq kind (x-font-properties frame-font)))
1610 (kind-spec (cdr-safe kind-cons))
1611 (case-fold-search t))
1612
1613 (or (and kind-spec (string-match kind-regex kind-spec))
1614 ;; Kludge-compatible:
1615 (memq face kind-list))))
1616
1617(defun ps-face-bold-p (face)
6770a60f 1618 (if (eq ps-print-emacs-type 'emacs)
30040449 1619 (ps-emacs-face-kind-p face 'bold "-\\(bold\\|demibold\\)-"
12d89a2e
RS
1620 ps-bold-faces)
1621 (ps-xemacs-face-kind-p face 'WEIGHT_NAME "bold\\|demibold"
1622 ps-bold-faces)))
1623
1624(defun ps-face-italic-p (face)
6770a60f 1625 (if (eq ps-print-emacs-type 'emacs)
30040449 1626 (ps-emacs-face-kind-p face 'italic "-[io]-" ps-italic-faces)
00aa16af
RS
1627 (or
1628 (ps-xemacs-face-kind-p face 'ANGLE_NAME "i\\|o" ps-italic-faces)
1629 (ps-xemacs-face-kind-p face 'SLANT "i\\|o" ps-italic-faces))))
12d89a2e
RS
1630
1631(defun ps-face-underlined-p (face)
1632 (or (face-underline-p face)
1633 (memq face ps-underlined-faces)))
1634
043620f4
KH
1635;; Ensure that face-list is fbound.
1636(or (fboundp 'face-list) (defalias 'face-list 'list-faces))
12d89a2e
RS
1637
1638(defun ps-build-reference-face-lists ()
1639 (if ps-auto-font-detect
043620f4 1640 (let ((faces (face-list))
12d89a2e
RS
1641 the-face)
1642 (setq ps-ref-bold-faces nil
1643 ps-ref-italic-faces nil
1644 ps-ref-underlined-faces nil)
1645 (while faces
1646 (setq the-face (car faces))
1647 (if (ps-face-italic-p the-face)
1648 (setq ps-ref-italic-faces
1649 (cons the-face ps-ref-italic-faces)))
1650 (if (ps-face-bold-p the-face)
1651 (setq ps-ref-bold-faces
1652 (cons the-face ps-ref-bold-faces)))
1653 (if (ps-face-underlined-p the-face)
1654 (setq ps-ref-underlined-faces
1655 (cons the-face ps-ref-underlined-faces)))
1656 (setq faces (cdr faces))))
1657 (setq ps-ref-bold-faces ps-bold-faces)
1658 (setq ps-ref-italic-faces ps-italic-faces)
1659 (setq ps-ref-underlined-faces ps-underlined-faces))
1660 (setq ps-build-face-reference nil))
ef2cbb24
RS
1661
1662(defun ps-mapper (extent list)
1663 (nconc list (list (list (extent-start-position extent) 'push extent)
1664 (list (extent-end-position extent) 'pull extent)))
1665 nil)
1666
1667(defun ps-sorter (a b)
1668 (< (car a) (car b)))
00aa16af
RS
1669
1670(defun ps-extent-sorter (a b)
1671 (< (extent-priority a) (extent-priority b)))
043620f4
KH
1672
1673(defun ps-print-ensure-fontified (start end)
1674 (if (and (boundp 'lazy-lock-mode) lazy-lock-mode)
1675 (if (fboundp 'lazy-lock-fontify-region)
1676 (lazy-lock-fontify-region start end)
1677 (lazy-lock-fontify-buffer))))
1678
ef2cbb24 1679(defun ps-generate-postscript-with-faces (from to)
00aa16af 1680 ;; Build the reference lists of faces if necessary.
12d89a2e
RS
1681 (if (or ps-always-build-face-reference
1682 ps-build-face-reference)
1683 (progn
1684 (message "Collecting face information...")
1685 (ps-build-reference-face-lists)))
00aa16af
RS
1686 ;; Set the color scale. We do it here instead of in the defvar so
1687 ;; that ps-print can be dumped into emacs. This expression can't be
1688 ;; evaluated at dump-time because X isn't initialized.
1689 (setq ps-print-color-scale
1690 (if ps-print-color-p
043620f4 1691 (float (car (ps-color-values "white")))
00aa16af
RS
1692 1.0))
1693 ;; Generate some PostScript.
ef2cbb24
RS
1694 (save-restriction
1695 (narrow-to-region from to)
12d89a2e
RS
1696 (let ((face 'default)
1697 (position to))
043620f4 1698 (ps-print-ensure-fontified from to)
6770a60f 1699 (cond ((or (eq ps-print-emacs-type 'lucid) (eq ps-print-emacs-type 'xemacs))
ef2cbb24 1700 ;; Build the list of extents...
12d89a2e
RS
1701 (let ((a (cons 'dummy nil))
1702 record type extent extent-list)
ef2cbb24
RS
1703 (map-extents 'ps-mapper nil from to a)
1704 (setq a (cdr a))
1705 (setq a (sort a 'ps-sorter))
1706
1707 (setq extent-list nil)
1708
1709 ;; Loop through the extents...
1710 (while a
1711 (setq record (car a))
1712
1713 (setq position (car record))
1714 (setq record (cdr record))
1715
1716 (setq type (car record))
1717 (setq record (cdr record))
1718
1719 (setq extent (car record))
1720
1721 ;; Plot up to this record.
043620f4
KH
1722 ;; XEmacs 19.12: for some reason, we're getting into a
1723 ;; situation in which some of the records have
1724 ;; positions less than 'from'. Since we've narrowed
1725 ;; the buffer, this'll generate errors. This is a
1726 ;; hack, but don't call ps-plot-with-face unless from >
1727 ;; point-min.
1728 (if (and (>= from (point-min))
1729 (<= position (point-max)))
1730 (ps-plot-with-face from position face))
ef2cbb24
RS
1731
1732 (cond
1733 ((eq type 'push)
043620f4
KH
1734 (if (extent-face extent)
1735 (setq extent-list (sort (cons extent extent-list)
1736 'ps-extent-sorter))))
ef2cbb24
RS
1737
1738 ((eq type 'pull)
1739 (setq extent-list (sort (delq extent extent-list)
1740 'ps-extent-sorter))))
1741
1742 (setq face
1743 (if extent-list
1744 (extent-face (car extent-list))
1745 'default))
1746
1747 (setq from position)
1748 (setq a (cdr a)))))
1749
6770a60f 1750 ((eq ps-print-emacs-type 'emacs)
12d89a2e
RS
1751 (let ((property-change from)
1752 (overlay-change from))
1753 (while (< from to)
1754 (if (< property-change to) ; Don't search for property change
1755 ; unless previous search succeeded.
1756 (setq property-change
1757 (next-property-change from nil to)))
1758 (if (< overlay-change to) ; Don't search for overlay change
1759 ; unless previous search succeeded.
1760 (setq overlay-change
1761 (min (next-overlay-change from) to)))
1762 (setq position
1763 (min property-change overlay-change))
d8fc5f64
KH
1764 ;; The code below is not quite correct,
1765 ;; because a non-nil overlay invisible property
1766 ;; which is inactive according to the current value
1767 ;; of buffer-invisibility-spec nonetheless overrides
1768 ;; a face text property.
12d89a2e 1769 (setq face
d8fc5f64
KH
1770 (cond ((let ((prop (get-text-property from 'invisible)))
1771 ;; Decide whether this invisible property
1772 ;; really makes the text invisible.
1773 (if (eq buffer-invisibility-spec t)
1774 (not (null prop))
1775 (or (memq prop buffer-invisibility-spec)
1776 (assq prop buffer-invisibility-spec))))
1777 nil)
12d89a2e
RS
1778 ((get-text-property from 'face))
1779 (t 'default)))
1780 (let ((overlays (overlays-at from))
1781 (face-priority -1)) ; text-property
ef2cbb24 1782 (while overlays
12d89a2e
RS
1783 (let* ((overlay (car overlays))
1784 (overlay-face (overlay-get overlay 'face))
1785 (overlay-invisible (overlay-get overlay 'invisible))
1786 (overlay-priority (or (overlay-get overlay
1787 'priority)
1788 0)))
1789 (if (and (or overlay-invisible overlay-face)
1790 (> overlay-priority face-priority))
d8fc5f64
KH
1791 (setq face (cond ((if (eq buffer-invisibility-spec t)
1792 (not (null overlay-invisible))
1793 (or (memq overlay-invisible buffer-invisibility-spec)
1794 (assq overlay-invisible buffer-invisibility-spec)))
1795 nil)
12d89a2e
RS
1796 ((and face overlay-face)))
1797 face-priority overlay-priority)))
1798 (setq overlays (cdr overlays))))
1799 ;; Plot up to this record.
1800 (ps-plot-with-face from position face)
1801 (setq from position)))))
1802 (ps-plot-with-face from to face))))
ef2cbb24
RS
1803
1804(defun ps-generate-postscript (from to)
12d89a2e 1805 (ps-plot-region from to 0 nil))
ef2cbb24
RS
1806
1807(defun ps-generate (buffer from to genfunc)
00aa16af 1808 (let ((from (min to from))
278e0a73
RS
1809 (to (max to from))
1810 ;; This avoids trouble if chars with read-only properties
1811 ;; are copied into ps-spool-buffer.
1812 (inhibit-read-only t))
00aa16af
RS
1813 (save-restriction
1814 (narrow-to-region from to)
1815 (if ps-razzle-dazzle
1816 (message "Formatting...%d%%" (setq ps-razchunk 0)))
1817 (set-buffer buffer)
1818 (setq ps-source-buffer buffer)
1819 (setq ps-spool-buffer (get-buffer-create ps-spool-buffer-name))
1820 (ps-init-output-queue)
1821 (let (safe-marker completed-safely needs-begin-file)
1822 (unwind-protect
1823 (progn
1824 (set-buffer ps-spool-buffer)
ef2cbb24 1825
00aa16af
RS
1826 ;; Get a marker and make it point to the current end of the
1827 ;; buffer, If an error occurs, we'll delete everything from
1828 ;; the end of this marker onwards.
1829 (setq safe-marker (make-marker))
1830 (set-marker safe-marker (point-max))
12d89a2e 1831
00aa16af
RS
1832 (goto-char (point-min))
1833 (if (looking-at (regexp-quote "%!PS-Adobe-1.0"))
1834 nil
1835 (setq needs-begin-file t))
1836 (save-excursion
1837 (set-buffer ps-source-buffer)
1838 (if needs-begin-file (ps-begin-file))
1839 (ps-begin-job)
1840 (ps-begin-page))
12d89a2e 1841 (set-buffer ps-source-buffer)
00aa16af
RS
1842 (funcall genfunc from to)
1843 (ps-end-page)
12d89a2e 1844
00aa16af
RS
1845 (if (and ps-spool-duplex
1846 (= (mod ps-page-count 2) 1))
1847 (ps-dummy-page))
1848 (ps-flush-output)
12d89a2e 1849
00aa16af 1850 ;; Back to the PS output buffer to set the page count
12d89a2e 1851 (set-buffer ps-spool-buffer)
00aa16af
RS
1852 (goto-char (point-max))
1853 (while (re-search-backward "^/PageCount 0 def$" nil t)
1854 (replace-match (format "/PageCount %d def" ps-page-count) t))
1855
1856 ;; Setting this variable tells the unwind form that the
1857 ;; the postscript was generated without error.
1858 (setq completed-safely t))
1859
a7acbbe4 1860 ;; Unwind form: If some bad mojo occurred while generating
00aa16af
RS
1861 ;; postscript, delete all the postscript that was generated.
1862 ;; This protects the previously spooled files from getting
1863 ;; corrupted.
1864 (if (and (markerp safe-marker) (not completed-safely))
1865 (progn
1866 (set-buffer ps-spool-buffer)
1867 (delete-region (marker-position safe-marker) (point-max))))))
ef2cbb24 1868
00aa16af
RS
1869 (if ps-razzle-dazzle
1870 (message "Formatting...done")))))
ef2cbb24
RS
1871
1872(defun ps-do-despool (filename)
12d89a2e
RS
1873 (if (or (not (boundp 'ps-spool-buffer))
1874 (not ps-spool-buffer))
1875 (message "No spooled PostScript to print")
ef2cbb24 1876 (ps-end-file)
12d89a2e 1877 (ps-flush-output)
ef2cbb24
RS
1878 (if filename
1879 (save-excursion
1880 (if ps-razzle-dazzle
1881 (message "Saving..."))
12d89a2e 1882 (set-buffer ps-spool-buffer)
ef2cbb24
RS
1883 (setq filename (expand-file-name filename))
1884 (write-region (point-min) (point-max) filename)
ef2cbb24
RS
1885 (if ps-razzle-dazzle
1886 (message "Wrote %s" filename)))
ef2cbb24
RS
1887 ;; Else, spool to the printer
1888 (if ps-razzle-dazzle
1889 (message "Printing..."))
ef2cbb24 1890 (save-excursion
12d89a2e 1891 (set-buffer ps-spool-buffer)
62901aee
RS
1892 (if (and (eq system-type 'ms-dos) (stringp dos-ps-printer))
1893 (write-region (point-min) (point-max) dos-ps-printer t 0)
1894 (let ((binary-process-input t)) ; for MS-DOS
1895 (apply 'call-process-region
1896 (point-min) (point-max) ps-lpr-command nil
1897 (if (fboundp 'start-process) 0 nil)
1898 nil
1899 ps-lpr-switches))))
ef2cbb24 1900 (if ps-razzle-dazzle
12d89a2e
RS
1901 (message "Printing...done")))
1902 (kill-buffer ps-spool-buffer)))
1903
1904(defun ps-kill-emacs-check ()
1905 (let (ps-buffer)
1906 (if (and (setq ps-buffer (get-buffer ps-spool-buffer-name))
1907 (buffer-modified-p ps-buffer))
1908 (if (y-or-n-p "Unprinted PostScript waiting; print now? ")
1909 (ps-despool)))
1910 (if (and (setq ps-buffer (get-buffer ps-spool-buffer-name))
1911 (buffer-modified-p ps-buffer))
1912 (if (yes-or-no-p "Unprinted PostScript waiting; exit anyway? ")
1913 nil
1914 (error "Unprinted PostScript")))))
1915
1916(if (fboundp 'add-hook)
1917 (add-hook 'kill-emacs-hook 'ps-kill-emacs-check)
1918 (if kill-emacs-hook
1919 (message "Won't override existing kill-emacs-hook")
1920 (setq kill-emacs-hook 'ps-kill-emacs-check)))
ef2cbb24 1921
12d89a2e 1922;;; Sample Setup Code:
ef2cbb24 1923
12d89a2e
RS
1924;; This stuff is for anybody that's brave enough to look this far,
1925;; and able to figure out how to use it. It isn't really part of ps-
1926;; print, but I'll leave it here in hopes it might be useful:
ef2cbb24 1927
043620f4
KH
1928;; WARNING!!! The following code is *sample* code only. Don't use it
1929;; unless you understand what it does!
1930
6770a60f
RS
1931(defmacro ps-prsc () (list 'if (list 'eq 'ps-print-emacs-type ''emacs)
1932 [f22] ''f22))
1933(defmacro ps-c-prsc () (list 'if (list 'eq 'ps-print-emacs-type ''emacs)
1934 [C-f22]
00aa16af 1935 ''(control f22)))
6770a60f
RS
1936(defmacro ps-s-prsc () (list 'if (list 'eq 'ps-print-emacs-type ''emacs)
1937 [S-f22]
00aa16af
RS
1938 ''(shift f22)))
1939
12d89a2e
RS
1940;; Look in an article or mail message for the Subject: line. To be
1941;; placed in ps-left-headers.
1942(defun ps-article-subject ()
ef2cbb24 1943 (save-excursion
12d89a2e
RS
1944 (goto-char (point-min))
1945 (if (re-search-forward "^Subject:[ \t]+\\(.*\\)$")
1946 (buffer-substring (match-beginning 1) (match-end 1))
1947 "Subject ???")))
1948
1949;; Look in an article or mail message for the From: line. Sorta-kinda
1950;; understands RFC-822 addresses and can pull the real name out where
1951;; it's provided. To be placed in ps-left-headers.
1952(defun ps-article-author ()
1953 (save-excursion
1954 (goto-char (point-min))
1955 (if (re-search-forward "^From:[ \t]+\\(.*\\)$")
1956 (let ((fromstring (buffer-substring (match-beginning 1) (match-end 1))))
1957 (cond
1958
1959 ;; Try first to match addresses that look like
1960 ;; thompson@wg2.waii.com (Jim Thompson)
1961 ((string-match ".*[ \t]+(\\(.*\\))" fromstring)
1962 (substring fromstring (match-beginning 1) (match-end 1)))
1963
1964 ;; Next try to match addresses that look like
1965 ;; Jim Thompson <thompson@wg2.waii.com>
1966 ((string-match "\\(.*\\)[ \t]+<.*>" fromstring)
1967 (substring fromstring (match-beginning 1) (match-end 1)))
1968
1969 ;; Couldn't find a real name -- show the address instead.
1970 (t fromstring)))
1971 "From ???")))
1972
1973;; A hook to bind to gnus-Article-prepare-hook. This will set the ps-
1974;; left-headers specially for gnus articles. Unfortunately, gnus-
1975;; article-mode-hook is called only once, the first time the *Article*
1976;; buffer enters that mode, so it would only work for the first time
1977;; we ran gnus. The second time, this hook wouldn't get set up. The
1978;; only alternative is gnus-article-prepare-hook.
1979(defun ps-gnus-article-prepare-hook ()
1980 (setq ps-header-lines 3)
1981 (setq ps-left-header
1982 ;; The left headers will display the article's subject, its
1983 ;; author, and the newsgroup it was in.
1984 (list 'ps-article-subject 'ps-article-author 'gnus-newsgroup-name)))
1985
1986;; A hook to bind to vm-mode-hook to locally bind prsc and set the ps-
1987;; left-headers specially for mail messages. This header setup would
1988;; also work, I think, for RMAIL.
1989(defun ps-vm-mode-hook ()
00aa16af 1990 (local-set-key (ps-prsc) 'ps-vm-print-message-from-summary)
12d89a2e
RS
1991 (setq ps-header-lines 3)
1992 (setq ps-left-header
1993 ;; The left headers will display the message's subject, its
1994 ;; author, and the name of the folder it was in.
1995 (list 'ps-article-subject 'ps-article-author 'buffer-name)))
1996
1997;; Every now and then I forget to switch from the *Summary* buffer to
1998;; the *Article* before hitting prsc, and a nicely formatted list of
1999;; article subjects shows up at the printer. This function, bound to
2000;; prsc for the gnus *Summary* buffer means I don't have to switch
2001;; buffers first.
2002(defun ps-gnus-print-article-from-summary ()
2003 (interactive)
2004 (if (get-buffer "*Article*")
2005 (save-excursion
2006 (set-buffer "*Article*")
2007 (ps-spool-buffer-with-faces))))
ef2cbb24 2008
12d89a2e
RS
2009;; See ps-gnus-print-article-from-summary. This function does the
2010;; same thing for vm.
2011(defun ps-vm-print-message-from-summary ()
2012 (interactive)
2013 (if vm-mail-buffer
2014 (save-excursion
2015 (set-buffer vm-mail-buffer)
2016 (ps-spool-buffer-with-faces))))
ef2cbb24 2017
12d89a2e
RS
2018;; A hook to bind to bind to gnus-summary-setup-buffer to locally bind
2019;; prsc.
2020(defun ps-gnus-summary-setup ()
00aa16af 2021 (local-set-key (ps-prsc) 'ps-gnus-print-article-from-summary))
12d89a2e
RS
2022
2023;; Look in an article or mail message for the Subject: line. To be
2024;; placed in ps-left-headers.
2025(defun ps-info-file ()
2026 (save-excursion
2027 (goto-char (point-min))
2028 (if (re-search-forward "File:[ \t]+\\([^, \t\n]*\\)")
2029 (buffer-substring (match-beginning 1) (match-end 1))
2030 "File ???")))
2031
2032;; Look in an article or mail message for the Subject: line. To be
2033;; placed in ps-left-headers.
2034(defun ps-info-node ()
2035 (save-excursion
2036 (goto-char (point-min))
2037 (if (re-search-forward "Node:[ \t]+\\([^,\t\n]*\\)")
2038 (buffer-substring (match-beginning 1) (match-end 1))
2039 "Node ???")))
2040
2041(defun ps-info-mode-hook ()
2042 (setq ps-left-header
2043 ;; The left headers will display the node name and file name.
2044 (list 'ps-info-node 'ps-info-file)))
2045
043620f4
KH
2046;; WARNING! The following function is a *sample* only, and is *not*
2047;; meant to be used as a whole unless you understand what the effects
2048;; will be! (In fact, this is a copy if my setup for ps-print -- I'd
2049;; be very surprised if it was useful to *anybody*, without
2050;; modification.)
2051
12d89a2e 2052(defun ps-jts-ps-setup ()
00aa16af
RS
2053 (global-set-key (ps-prsc) 'ps-spool-buffer-with-faces) ;f22 is prsc
2054 (global-set-key (ps-s-prsc) 'ps-spool-region-with-faces)
2055 (global-set-key (ps-c-prsc) 'ps-despool)
12d89a2e
RS
2056 (add-hook 'gnus-article-prepare-hook 'ps-gnus-article-prepare-hook)
2057 (add-hook 'gnus-summary-mode-hook 'ps-gnus-summary-setup)
2058 (add-hook 'vm-mode-hook 'ps-vm-mode-hook)
00aa16af 2059 (add-hook 'vm-mode-hooks 'ps-vm-mode-hook)
12d89a2e
RS
2060 (add-hook 'Info-mode-hook 'ps-info-mode-hook)
2061 (setq ps-spool-duplex t)
2062 (setq ps-print-color-p nil)
2063 (setq ps-lpr-command "lpr")
2064 (setq ps-lpr-switches '("-Jjct,duplex_long")))
2065
2066(provide 'ps-print)
b87c5d3d 2067
12d89a2e 2068;;; ps-print.el ends here