(browse-url-browser-function)
[bpt/emacs.git] / lisp / printing.el
1 ;;; printing.el --- printing utilities
2
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005
4 ;; Free Software Foundation, Inc.
5
6 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
7 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
8 ;; Time-stamp: <2005/06/11 19:51:32 vinicius>
9 ;; Keywords: wp, print, PostScript
10 ;; Version: 6.8.4
11 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
12
13 (defconst pr-version "6.8.4"
14 "printing.el, v 6.8.4 <2005/06/11 vinicius>
15
16 Please send all bug fixes and enhancements to
17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
18 ")
19
20 ;; This file is part of GNU Emacs.
21
22 ;; GNU Emacs is free software; you can redistribute it and/or modify it under
23 ;; the terms of the GNU General Public License as published by the Free
24 ;; Software Foundation; either version 2, or (at your option) any later
25 ;; version.
26
27 ;; GNU Emacs is distributed in the hope that it will be useful, but WITHOUT ANY
28 ;; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
29 ;; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
30 ;; details.
31
32 ;; You should have received a copy of the GNU General Public License along with
33 ;; GNU Emacs; see the file COPYING. If not, write to the Free Software
34 ;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
35
36 ;;; Commentary:
37
38 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
39 ;;
40 ;; Introduction
41 ;; ------------
42 ;;
43 ;; With `printing' you can preview or print a PostScript file. You can also
44 ;; print a text file using PostScript, and preview or print buffers that use
45 ;; certain special modes like mh-folder-mode, rmail-summary-mode,
46 ;; gnus-summary-mode, etc. This package also includes a PostScript/text
47 ;; printer database.
48 ;;
49 ;; There are two user interfaces:
50 ;;
51 ;; * Menu interface:
52 ;; The `printing' menu replaces the usual print options in the menu bar.
53 ;; This is the default user interface.
54 ;;
55 ;; * Buffer interface:
56 ;; You can use a buffer interface instead of menus. It looks like a
57 ;; customization buffer. Basically, it has the same options found in the
58 ;; menu and some extra options, all this on a buffer.
59 ;;
60 ;; `printing' is prepared to run on GNU, Unix and NT systems.
61 ;; On GNU or Unix system, `printing' depends on gs and gv utilities.
62 ;; On NT system, `printing' depends on gstools (gswin32.exe and gsview32.exe).
63 ;; To obtain ghostscript, ghostview and GSview see the URL
64 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html'.
65 ;;
66 ;; `printing' depends on ps-print package to generate PostScript files, to
67 ;; spool and to despool PostScript buffer. So, `printing' provides an
68 ;; interface to ps-print package and it also provides some extra stuff.
69 ;;
70 ;; To download the latest ps-print package see
71 ;; `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'.
72 ;; Please, see README file for ps-print installation instructions.
73 ;;
74 ;; `printing' was inspired on:
75 ;;
76 ;; print-nt.el Frederic Corne <frederic.corne@erli.fr>
77 ;; Special printing functions for Windows NT
78 ;;
79 ;; mh-e-init.el Tom Vogels <tov@ece.cmu.edu>
80 ;; PS-print for mail messages
81 ;;
82 ;; win32-ps-print.el Matthew O. Persico <mpersico@erols.com>
83 ;; PostScript printing with ghostscript
84 ;;
85 ;; ps-print-interface.el Volker Franz <volker.franz@tuebingen.mpg.de>
86 ;; Graphical front end for ps-print and previewing
87 ;;
88 ;;
89 ;; Log Messages
90 ;; ------------
91 ;;
92 ;; The buffer *Printing Command Output* is where the `printing' log messages
93 ;; are inserted. All program called by `printing' has a log entry in the
94 ;; buffer *Printing Command Output*. A log entry has the following form:
95 ;;
96 ;; PROGRAM (ARG...)
97 ;; MESSAGE
98 ;; Exit status: CODE
99 ;;
100 ;; Where
101 ;; PROGRAM is the program activated by `printing',
102 ;; ARG is an argument passed to PROGRAM (it can have more than one argument),
103 ;; MESSAGE is an error message returned by PROGRAM (it can have no message, if
104 ;; PROGRAM is successful),
105 ;; and CODE is a numeric exit status or a signal description string.
106 ;;
107 ;; For example, after previewing a PostScript file, *Printing Command Output*
108 ;; will have the following entry:
109 ;;
110 ;; /usr/X11R6/bin/gv ("/home/user/example/file.ps")
111 ;; Exit status: 0
112 ;;
113 ;; In the example above, the previewing was successful. If during previewing,
114 ;; you quit gv execution (by typing C-g during Emacs session), the log entry
115 ;; would be:
116 ;;
117 ;; /usr/X11R6/bin/gv ("/home/user/example/file.ps")
118 ;; Exit status: Quit
119 ;;
120 ;; So, if something goes wrong, a good place to take a look is the buffer
121 ;; *Printing Command Output*. Don't forget to see also the buffer *Messages*,
122 ;; it can help.
123 ;;
124 ;;
125 ;; Novices (First Users)
126 ;; ---------------------
127 ;;
128 ;; First of all, see printing documentation only to get an idea of what
129 ;; `printing' is capable.
130 ;;
131 ;; Then try to set the variables: `pr-ps-name', `pr-ps-printer-alist',
132 ;; `pr-txt-name', `pr-txt-printer-alist' and `pr-path-alist'. These variables
133 ;; are the main variables for printing processing.
134 ;;
135 ;; Now, please, see these variables documentation deeper. You can do this by
136 ;; typing C-h v pr-ps-name RET (for example) if you already loaded printing
137 ;; package, or by browsing printing.el source file.
138 ;;
139 ;; If the documentation isn't clear or if you find a way to improve the
140 ;; documentation, please, send an email to maintainer. All printing users
141 ;; will thank you.
142 ;;
143 ;; One way to set variables is by calling `pr-customize', customize all
144 ;; variables and save the customization by future sessions (see Options
145 ;; section). Other way is by coding your settings on Emacs init file (that is,
146 ;; ~/.emacs file), see below for a first setting template that it should be
147 ;; inserted on your ~/.emacs file (or c:/_emacs, if you're using Windows 9x/NT
148 ;; or MS-DOS):
149 ;;
150 ;; * Example of setting for Windows system:
151 ;;
152 ;; (require 'printing) ; load printing package
153 ;; (setq pr-path-alist
154 ;; '((windows "c:/applications/executables" PATH ghostview mpage)
155 ;; (ghostview "c:/gs/gsview-dir")
156 ;; (mpage "c:/mpage-dir")
157 ;; ))
158 ;; (setq pr-txt-name 'prt_06a)
159 ;; (setq pr-txt-printer-alist
160 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
161 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
162 ;; (PRN "" nil "PRN")
163 ;; (standard "redpr.exe" nil "")
164 ;; ))
165 ;; (setq pr-ps-name 'lps_06b)
166 ;; (setq pr-ps-printer-alist
167 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
168 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
169 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
170 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
171 ;; (LPT1 "" nil "" "LPT1:")
172 ;; (PRN "" nil "" "PRN")
173 ;; (standard "redpr.exe" nil "" "")
174 ;; ))
175 ;; (pr-update-menus t) ; update now printer and utility menus
176 ;;
177 ;; * Example of setting for GNU or Unix system:
178 ;;
179 ;; (require 'printing) ; load printing package
180 ;; (setq pr-path-alist
181 ;; '((unix "." "~/bin" ghostview mpage PATH)
182 ;; (ghostview "$HOME/bin/gsview-dir")
183 ;; (mpage "$HOME/bin/mpage-dir")
184 ;; ))
185 ;; (setq pr-txt-name 'prt_06a)
186 ;; (setq pr-txt-printer-alist
187 ;; '((prt_06a "lpr" nil "prt_06a")
188 ;; (prt_07c nil nil "prt_07c")
189 ;; ))
190 ;; (setq pr-ps-name 'lps_06b)
191 ;; (setq pr-ps-printer-alist
192 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
193 ;; (lps_07c "lpr" nil nil "lps_07c")
194 ;; (lps_08c nil nil nil "lps_08c")
195 ;; ))
196 ;; (pr-update-menus t) ; update now printer and utility menus
197 ;;
198 ;;
199 ;; NOTE 1: Don't forget to download and install ghostscript utilities (see
200 ;; Utilities section).
201 ;;
202 ;; NOTE 2: The `printer-name' and `ps-printer-name' variables don't need to be
203 ;; set, as they are implicit set by `pr-ps-printer-alist' and
204 ;; `pr-txt-printer-alist'.
205 ;;
206 ;; NOTE 3: The duplex feature will only work on PostScript printers that
207 ;; support this feature.
208 ;; You can check if your PostScript printer supports duplex feature
209 ;; by checking the printer manual. Or you can try these steps:
210 ;; 1. Open a buffer (or use the *scratch* buffer).
211 ;; 2. Type:
212 ;; First line (on first page)
213 ;; ^L
214 ;; Second line (on second page)
215 ;; 3. Print this buffer with duplex turned on.
216 ;; If it's printed 2 (two) sheets of paper, then your PostScript
217 ;; printer doesn't have duplex feature; otherwise, it's ok, your
218 ;; printer does have duplex feature.
219 ;;
220 ;; NOTE 4: See Tips section.
221 ;;
222 ;;
223 ;; Tips
224 ;; ----
225 ;;
226 ;; 1. If you have a local printer, that is, a printer which is connected
227 ;; directly to your computer, don't forget to connect the printer to your
228 ;; computer before printing.
229 ;;
230 ;; 2. If you try to print a file and it seems that the file was printed, but
231 ;; there is no paper in the printer, then try to set `pr-delete-temp-file'
232 ;; to nil. Probably `printing' is deleting the temporary file before your
233 ;; local system can get it to send to the printer.
234 ;;
235 ;; 3. Don't try to print a dynamic buffer, that is, a buffer which is
236 ;; modifying while `printing' tries to print. Eventually you got an error
237 ;; message. Instead, save the dynamic buffer to a file or copy it in
238 ;; another buffer and, then, print the file or the new static buffer.
239 ;; An example of dynamic buffer is the *Messages* buffer.
240 ;;
241 ;; 4. When running Emacs on Windows (with or without cygwin), check if your
242 ;; printer is a text printer or not by typing in a DOS window:
243 ;;
244 ;; print /D:\\host\printer somefile.txt
245 ;;
246 ;; Where, `host' is the machine where the printer is directly connected,
247 ;; `printer' is the printer name and `somefile.txt' is a text file.
248 ;;
249 ;; If the printer `\\host\printer' doesn't print the content of
250 ;; `somefile.txt' or, instead, it returns the following message:
251 ;;
252 ;; PostScript Error Handler
253 ;; Offending Command = CCC
254 ;; Stack =
255 ;;
256 ;; Where `CCC' is whatever is at the beginning of the text to be printed.
257 ;;
258 ;; Therefore, the printer `\\host\printer' is not a text printer, but a
259 ;; PostScript printer. So, please, don't include this printer in
260 ;; `pr-txt-printer-alist' (which see).
261 ;;
262 ;; 5. You can use gsprint instead of ghostscript to print monochrome PostScript
263 ;; files in Windows. The gsprint utility documentation says that it is more
264 ;; efficient than ghostscript to print monochrome PostScript.
265 ;;
266 ;; To print non-monochrome PostScript file, the efficiency of ghostscript
267 ;; is similar to gsprint.
268 ;;
269 ;; Also the gsprint utility comes together with gsview distribution.
270 ;;
271 ;; For more information about gsprint see
272 ;; `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'.
273 ;;
274 ;; As an example of gsprint declaration:
275 ;;
276 ;; (setq pr-ps-printer-alist
277 ;; '((A "gsprint" ("-all" "-twoup") "-printer " "my-b/w-printer-name")
278 ;; (B "gsprint" ("-all" "-twoup") nil "-printer my-b/w-printer-name")
279 ;; ;; some other printer declaration
280 ;; ))
281 ;;
282 ;; The example above declares that printer A prints all pages (-all) and two
283 ;; pages per sheet (-twoup). The printer B declaration does the same as the
284 ;; printer A declaration, the only difference is the printer name selection.
285 ;;
286 ;; There are other command line options like:
287 ;;
288 ;; -mono Render in monochrome as 1bit/pixel (only black and white).
289 ;; -grey Render in greyscale as 8bits/pixel.
290 ;; -color Render in color as 24bits/pixel.
291 ;;
292 ;; The default is `-mono'. So, printer A and B in the example above are
293 ;; using implicitly the `-mono' option. Note that in `-mono' no gray tone
294 ;; or color is printed, this includes the zebra stripes, that is, in `-mono'
295 ;; the zebra stripes are not printed.
296 ;;
297 ;; See also documentation for `pr-ps-printer-alist'.
298 ;;
299 ;;
300 ;; Using `printing'
301 ;; ----------------
302 ;;
303 ;; To use `printing' insert in your ~/.emacs file (or c:/_emacs, if you're
304 ;; using Windows 9x/NT or MS-DOS):
305 ;;
306 ;; (require 'printing)
307 ;; ;; ...some user settings...
308 ;; (pr-update-menus t)
309 ;;
310 ;; During `pr-update-menus' evaluation:
311 ;; * On Emacs 20:
312 ;; it replaces the Tools/Print menu by Tools/Printing menu.
313 ;; * On Emacs 21:
314 ;; it replaces the File/Print* menu entries by File/Print menu.
315 ;; Please, see section Menu Layout below for menu explanation.
316 ;;
317 ;; To use `printing' utilities you can use the Printing menu options, type M-x
318 ;; followed by one of the commands below, or type a key associated with the
319 ;; command you want (if there is a key binding).
320 ;;
321 ;; `printing' has the following commands:
322 ;;
323 ;; pr-interface
324 ;; pr-ps-directory-preview
325 ;; pr-ps-directory-using-ghostscript
326 ;; pr-ps-directory-print
327 ;; pr-ps-directory-ps-print
328 ;; pr-ps-buffer-preview
329 ;; pr-ps-buffer-using-ghostscript
330 ;; pr-ps-buffer-print
331 ;; pr-ps-buffer-ps-print
332 ;; pr-ps-region-preview
333 ;; pr-ps-region-using-ghostscript
334 ;; pr-ps-region-print
335 ;; pr-ps-region-ps-print
336 ;; pr-ps-mode-preview
337 ;; pr-ps-mode-using-ghostscript
338 ;; pr-ps-mode-print
339 ;; pr-ps-mode-ps-print
340 ;; pr-ps-file-preview
341 ;; pr-ps-file-up-preview
342 ;; pr-ps-file-using-ghostscript
343 ;; pr-ps-file-print
344 ;; pr-ps-file-ps-print
345 ;; pr-ps-file-up-ps-print
346 ;; pr-ps-fast-fire
347 ;; pr-despool-preview
348 ;; pr-despool-using-ghostscript
349 ;; pr-despool-print
350 ;; pr-despool-ps-print
351 ;; pr-printify-directory
352 ;; pr-printify-buffer
353 ;; pr-printify-region
354 ;; pr-txt-directory
355 ;; pr-txt-buffer
356 ;; pr-txt-region
357 ;; pr-txt-mode
358 ;; pr-txt-fast-fire
359 ;; pr-toggle-file-duplex
360 ;; pr-toggle-file-tumble
361 ;; pr-toggle-file-landscape
362 ;; pr-toggle-ghostscript
363 ;; pr-toggle-faces
364 ;; pr-toggle-spool
365 ;; pr-toggle-duplex
366 ;; pr-toggle-tumble
367 ;; pr-toggle-landscape
368 ;; pr-toggle-upside-down
369 ;; pr-toggle-line
370 ;; pr-toggle-zebra
371 ;; pr-toggle-header
372 ;; pr-toggle-lock
373 ;; pr-toggle-region
374 ;; pr-toggle-mode
375 ;; pr-customize
376 ;; lpr-customize
377 ;; pr-help
378 ;; pr-ps-name
379 ;; pr-txt-name
380 ;; pr-ps-utility
381 ;; pr-show-ps-setup
382 ;; pr-show-pr-setup
383 ;; pr-show-lpr-setup
384 ;;
385 ;; The general meanings of above commands are:
386 ;;
387 ;; PREFIX:
388 ;; `pr-interface' buffer interface for printing package.
389 ;; `pr-help' help for printing package.
390 ;; `pr-ps-name' interactively select a PostScript printer.
391 ;; `pr-txt-name' interactively select a text printer.
392 ;; `pr-ps-utility' interactively select a PostScript utility.
393 ;; `pr-show-*-setup' show current settings.
394 ;; `pr-ps-*' deal with PostScript code generation.
395 ;; `pr-txt-*' deal with text generation.
396 ;; `pr-toggle-*' toggle on/off some boolean variable.
397 ;; `pr-despool-*' despool the PostScript spooling buffer.
398 ;; `pr-printify-*' replace nonprintable ASCII by printable ASCII
399 ;; representation.
400 ;;
401 ;; SUFFIX:
402 ;; `*-customize' customization.
403 ;; `*-preview' preview a PostScript file.
404 ;; `*-using-ghostscript' use ghostscript to print.
405 ;; `*-fast-fire' fast fire command (see it for documentation).
406 ;; `*-print' send PostScript directly to printer.
407 ;; `*-ps-print' send PostScript directly to printer or use
408 ;; ghostscript to print. It depends on
409 ;; `pr-print-using-ghostscript' option.
410 ;;
411 ;; INFIX/SUFFIX:
412 ;; `*-directory*' process a directory.
413 ;; `*-buffer*' process a buffer.
414 ;; `*-region*' process a region.
415 ;; `*-mode*' process a major mode (see explanation below).
416 ;; `*-file-*' process a PostScript file.
417 ;; `*-file-up-*' process a PostScript file using a filter utility.
418 ;;
419 ;; Here are some examples:
420 ;;
421 ;; `pr-ps-buffer-using-ghostscript'
422 ;; Use ghostscript to print a buffer.
423 ;;
424 ;; `pr-ps-file-print'
425 ;; Print a PostScript file.
426 ;;
427 ;; `pr-toggle-spool'
428 ;; Toggle spooling buffer.
429 ;;
430 ;; So you can preview through ghostview, use ghostscript to print (if you don't
431 ;; have a PostScript printer) or send directly to printer a PostScript code
432 ;; generated by `ps-print' package.
433 ;;
434 ;; Besides operating one buffer or region each time, you also can postpone
435 ;; previewing or printing by saving the PostScript code generated in a
436 ;; temporary Emacs buffer. This way you can save banner pages between
437 ;; successive printing. You can toggle on/off spooling by invoking
438 ;; `pr-toggle-spool' interactively or through menu bar.
439 ;;
440 ;; If you type, for example:
441 ;;
442 ;; C-u M-x pr-ps-buffer-print RET
443 ;;
444 ;; The `pr-ps-buffer-print' command prompts you for a n-up printing number and
445 ;; a file name, and save the PostScript code generated to the file name instead
446 ;; of sending to printer.
447 ;;
448 ;; This behavior is similar with the commands that deal with PostScript code
449 ;; generation, that is, with `pr-ps-*' and `pr-despool-*' commands. If
450 ;; spooling is on, only `pr-despool-*' commands prompt for a file name and save
451 ;; the PostScript code spooled in this file.
452 ;;
453 ;; Besides the behavior described above, the `*-directory*' commands also
454 ;; prompt for a directory and a file name regexp. So, it's possible to process
455 ;; all or certain files on a directory at once (see also documentation for
456 ;; `pr-list-directory').
457 ;;
458 ;; `printing' has also a special way to handle some major mode through
459 ;; `*-mode*' commands. So it's possible to customize a major mode printing,
460 ;; it's only needed to declare the customization in `pr-mode-alist' (see
461 ;; section Options) and invoke some of `*-mode*' commands. An example for
462 ;; major mode usage is when you're using gnus (or mh, or rmail, etc.) and
463 ;; you're in the *Summary* buffer, if you forget to switch to the *Article*
464 ;; buffer before printing, you'll get a nicely formatted list of article
465 ;; subjects shows up at the printer. With major mode printing you don't need
466 ;; to switch from gnus *Summary* buffer first.
467 ;;
468 ;; Current global keyboard mapping for GNU Emacs is:
469 ;;
470 ;; (global-set-key [print] 'pr-ps-fast-fire)
471 ;; (global-set-key [M-print] 'pr-ps-mode-using-ghostscript)
472 ;; (global-set-key [S-print] 'pr-ps-mode-using-ghostscript)
473 ;; (global-set-key [C-print] 'pr-txt-fast-fire)
474 ;; (global-set-key [C-M-print] 'pr-txt-fast-fire)
475 ;;
476 ;; And for XEmacs is:
477 ;;
478 ;; (global-set-key 'f22 'pr-ps-fast-fire)
479 ;; (global-set-key '(meta f22) 'pr-ps-mode-using-ghostscript)
480 ;; (global-set-key '(shift f22) 'pr-ps-mode-using-ghostscript)
481 ;; (global-set-key '(control f22) 'pr-txt-fast-fire)
482 ;; (global-set-key '(control meta f22) 'pr-txt-fast-fire)
483 ;;
484 ;; As a suggestion of global keyboard mapping for some `printing' commands:
485 ;;
486 ;; (global-set-key "\C-ci" 'pr-interface)
487 ;; (global-set-key "\C-cbp" 'pr-ps-buffer-print)
488 ;; (global-set-key "\C-cbx" 'pr-ps-buffer-preview)
489 ;; (global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
490 ;; (global-set-key "\C-crp" 'pr-ps-region-print)
491 ;; (global-set-key "\C-crx" 'pr-ps-region-preview)
492 ;; (global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
493 ;;
494 ;;
495 ;; Options
496 ;; -------
497 ;;
498 ;; Below it's shown a brief description of `printing' options, please, see the
499 ;; options declaration in the code for a long documentation.
500 ;;
501 ;; `pr-path-style' Specify which path style to use for external
502 ;; commands.
503 ;;
504 ;; `pr-path-alist' Specify an alist for command paths.
505 ;;
506 ;; `pr-txt-name' Specify a printer for printing a text file.
507 ;;
508 ;; `pr-txt-printer-alist' Specify an alist of all text printers.
509 ;;
510 ;; `pr-ps-name' Specify a printer for printing a PostScript
511 ;; file.
512 ;;
513 ;; `pr-ps-printer-alist' Specify an alist for all PostScript printers.
514 ;;
515 ;; `pr-temp-dir' Specify a directory for temporary files during
516 ;; printing.
517 ;;
518 ;; `pr-ps-temp-file' Specify PostScript temporary file name prefix.
519 ;;
520 ;; `pr-file-modes' Specify the file permission bits for newly
521 ;; created files.
522 ;;
523 ;; `pr-gv-command' Specify path and name of the gsview/gv
524 ;; utility.
525 ;;
526 ;; `pr-gs-command' Specify path and name of the ghostscript
527 ;; utility.
528 ;;
529 ;; `pr-gs-switches' Specify ghostscript switches.
530 ;;
531 ;; `pr-gs-device' Specify ghostscript device switch value.
532 ;;
533 ;; `pr-gs-resolution' Specify ghostscript resolution switch value.
534 ;;
535 ;; `pr-print-using-ghostscript' Non-nil means print using ghostscript.
536 ;;
537 ;; `pr-faces-p' Non-nil means print with face attributes.
538 ;;
539 ;; `pr-spool-p' Non-nil means spool printing in a buffer.
540 ;;
541 ;; `pr-file-landscape' Non-nil means print PostScript file in
542 ;; landscape orientation.
543 ;;
544 ;; `pr-file-duplex' Non-nil means print PostScript file in duplex
545 ;; mode.
546 ;;
547 ;; `pr-file-tumble' Non-nil means print PostScript file in tumble
548 ;; mode.
549 ;;
550 ;; `pr-auto-region' Non-nil means region is automagically detected.
551 ;;
552 ;; `pr-auto-mode' Non-nil means major-mode specific printing is
553 ;; prefered over normal printing.
554 ;;
555 ;; `pr-mode-alist' Specify an alist for a major-mode and printing
556 ;; function.
557 ;;
558 ;; `pr-ps-utility' Specify PostScript utility processing.
559 ;;
560 ;; `pr-ps-utility-alist' Specify an alist for PostScript utility
561 ;; processing.
562 ;;
563 ;; `pr-menu-lock' Non-nil means menu is locked while selecting
564 ;; toggle options.
565 ;;
566 ;; `pr-menu-char-height' Specify menu char height in pixels.
567 ;;
568 ;; `pr-menu-char-width' Specify menu char width in pixels.
569 ;;
570 ;; `pr-setting-database' Specify an alist for settings in general.
571 ;;
572 ;; `pr-visible-entry-list' Specify a list of Printing menu visible
573 ;; entries.
574 ;;
575 ;; `pr-delete-temp-file' Non-nil means delete temporary files.
576 ;;
577 ;; `pr-list-directory' Non-nil means list directory when processing a
578 ;; directory.
579 ;;
580 ;; `pr-buffer-name' Specify the name of the buffer interface for
581 ;; printing package.
582 ;;
583 ;; `pr-buffer-name-ignore' Specify a regexp list for buffer names to be
584 ;; ignored in interface buffer.
585 ;;
586 ;; `pr-buffer-verbose' Non-nil means to be verbose when editing a
587 ;; field in interface buffer.
588 ;;
589 ;; To set the above options you may:
590 ;;
591 ;; a) insert the code in your ~/.emacs, like:
592 ;;
593 ;; (setq pr-faces-p t)
594 ;;
595 ;; This way always keep your default settings when you enter a new Emacs
596 ;; session.
597 ;;
598 ;; b) or use `set-variable' in your Emacs session, like:
599 ;;
600 ;; M-x set-variable RET pr-faces-p RET t RET
601 ;;
602 ;; This way keep your settings only during the current Emacs session.
603 ;;
604 ;; c) or use customization, for example:
605 ;; click on menu-bar *Help* option,
606 ;; then click on *Customize*,
607 ;; then click on *Browse Customization Groups*,
608 ;; expand *PostScript* group,
609 ;; expand *Printing* group
610 ;; and then customize `printing' options.
611 ;; Through this way, you may choose if the settings are kept or not when
612 ;; you leave out the current Emacs session.
613 ;;
614 ;; d) or see the option value:
615 ;;
616 ;; C-h v pr-faces-p RET
617 ;;
618 ;; and click the *customize* hypertext button.
619 ;; Through this way, you may choose if the settings are kept or not when
620 ;; you leave out the current Emacs session.
621 ;;
622 ;; e) or invoke:
623 ;;
624 ;; M-x pr-customize RET
625 ;;
626 ;; and then customize `printing' options.
627 ;; Through this way, you may choose if the settings are kept or not when
628 ;; you leave out the current Emacs session.
629 ;;
630 ;; f) or use menu bar, for example:
631 ;; click on menu-bar *File* option,
632 ;; then click on *Printing*,
633 ;; then click on *Customize*,
634 ;; then click on *printing*
635 ;; and then customize `printing' options.
636 ;; Through this way, you may choose if the settings are kept or not when
637 ;; you leave out the current Emacs session.
638 ;;
639 ;;
640 ;; Menu Layout
641 ;; -----------
642 ;;
643 ;; The `printing' menu (Tools/Printing or File/Print) has the following layout:
644 ;;
645 ;; +-----------------------------+
646 ;; A 0 | Printing Interface |
647 ;; +-----------------------------+ +-A---------+ +-B------+
648 ;; I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
649 ;; 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
650 ;; 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
651 ;; +-----------------------------+ |Mode >|-- B |Other...|
652 ;; II 4 | Printify >|-----\ |File >|--\ +--------+
653 ;; 5 | Print >|---\ | |Despool... | |
654 ;; 6 | Text Printer: name >|-\ | | +-----------+ |
655 ;; +-----------------------------+ | | | +---------+ +------------+
656 ;; III 7 |[ ]Landscape | | | \-|Directory| | No Prep... | Ia
657 ;; 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
658 ;; 9 |[ ]Print Header Frame | | | |Region | | name >|- C
659 ;; 10 |[ ]Line Number | | | +---------+ +------------+
660 ;; 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
661 ;; 12 |[ ]Duplex | | \---|Directory| | 2-up... |
662 ;; 13 |[ ]Tumble | \--\ |Buffer | | 4-up... |
663 ;; 14 |[ ]Upside-Down | | |Region | | Other... |
664 ;; 15 | Print All Pages >|--\ | |Mode | +------------+
665 ;; +-----------------------------+ | | +---------+ |[ ]Landscape| Id
666 ;; IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
667 ;; 17 |[ ]Print with faces | | \--|( )name A| |[ ]Tumble | If
668 ;; 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
669 ;; +-----------------------------+ | |... |
670 ;; V 19 |[ ]Auto Region | | |(*)name |
671 ;; 20 |[ ]Auto Mode | | |... |
672 ;; 21 |[ ]Menu Lock | | +---------+ +--------------+
673 ;; +-----------------------------+ \------------------|(*)All Pages |
674 ;; VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
675 ;; 23 | Show Settings >|-------|printing| |( )Odd Pages |
676 ;; 24 | Help | |ps-print| |( )Even Sheets|
677 ;; +-----------------------------+ |lpr | |( )Odd Sheets |
678 ;; +--------+ +--------------+
679 ;;
680 ;; See `pr-visible-entry-list' for hiding some parts of the menu.
681 ;;
682 ;; The menu has the following sections:
683 ;;
684 ;; A. Interface:
685 ;;
686 ;; 0. You can use a buffer interface instead of menus. It looks like the
687 ;; customization buffer. Basically, it has the same options found in the
688 ;; menu and some extra options, all this on a buffer.
689 ;;
690 ;; I. PostScript printing:
691 ;;
692 ;; 1. You can generate a PostScript file (if you type C-u before activating
693 ;; menu) or PostScript temporary file for a directory, a buffer, a region
694 ;; or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
695 ;; after file generation, ghostview is activated using the file generated
696 ;; as argument. This option is disabled if spooling is on (option 16).
697 ;; Also, if you already have a PostScript file you can preview it.
698 ;; Instead of previewing each buffer, region or major mode at once, you
699 ;; can save temporarily the PostScript code generated in a buffer and
700 ;; preview it later. The option `Despool...' despools the PostScript
701 ;; spooling buffer in a temporary file and uses ghostview to preview it.
702 ;; If you type C-u before choosing this option, the PostScript code
703 ;; generated is saved in a file instead of saving in a temporary file.
704 ;; To spool the PostScript code generated you need to turn on the option
705 ;; 16. The option `Despool...' is enabled if spooling is on (option
706 ;; 16).
707 ;;
708 ;; NOTE 1: It's possible to customize a major mode printing, just declare
709 ;; the customization in `pr-mode-alist' and invoke some of
710 ;; `*-mode*' commands or select Mode option in Printing menu. An
711 ;; example for major mode usage is when you're using gnus (or mh,
712 ;; or rmail, etc.) and you're in the *Summary* buffer, if you
713 ;; forget to switch to the *Article* buffer before printing,
714 ;; you'll get a nicely formatted list of article subjects shows
715 ;; up at the printer. With major mode printing you don't need to
716 ;; switch from gnus *Summary* buffer first.
717 ;;
718 ;; NOTE 2: There are the following options for PostScript file
719 ;; processing:
720 ;; Ia. Print the file *No Preprocessing*, that is, send it
721 ;; directly to PostScript printer.
722 ;; Ib. PostScript utility processing selection.
723 ;; See `pr-ps-utility-alist' and `pr-setting-database' for
724 ;; documentation.
725 ;; Ic. Do n-up processing before printing.
726 ;; Id. Toggle on/off landscape for PostScript file processing.
727 ;; Ie. Toggle on/off duplex for PostScript file processing.
728 ;; If. Toggle on/off tumble for PostScript file processing.
729 ;;
730 ;; NOTE 3: Don't forget to download and install the utilities declared on
731 ;; `pr-ps-utility-alist'.
732 ;;
733 ;; 2. Operate the same way as option 1, but it sends directly the PostScript
734 ;; code (or put in a file, if you've typed C-u) or it uses ghostscript to
735 ;; print the PostScript file generated. It depends on option 18, if it's
736 ;; turned on, it uses ghostscript; otherwise, it sends directly to
737 ;; printer. If spooling is on (option 16), the PostScript code is saved
738 ;; temporarily in a buffer instead of printing it or saving it in a file.
739 ;; Also, if you already have a PostScript file you can print it. Instead
740 ;; of printing each buffer, region or major mode at once, you can save
741 ;; temporarily the PostScript code generated in a buffer and print it
742 ;; later. The option `Despool...' despools the PostScript spooling
743 ;; buffer directly on a printer. If you type C-u before choosing this
744 ;; option, the PostScript code generated is saved in a file instead of
745 ;; sending to printer. To spool the PostScript code generated you need
746 ;; to turn on the option 16. This option is enabled if spooling is on
747 ;; (option 16). See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
748 ;;
749 ;; 3. You can select a new PostScript printer to send PostScript code
750 ;; generated. For selection it's used all PostScript printers defined
751 ;; in `pr-ps-printer-alist' variable (see it for documentation).
752 ;; See also `pr-setting-database'.
753 ;;
754 ;; II. Text printing:
755 ;;
756 ;; 4. If you have control characters (character code from \000 to \037) in a
757 ;; buffer and you want to print them in a text printer, select this
758 ;; option. All control characters in your buffer or region will be
759 ;; replaced by a printable representation. The printable representations
760 ;; use ^ (for ASCII control characters) or hex. The characters tab,
761 ;; linefeed, space, return and formfeed are not affected. You don't need
762 ;; to select this option if you use any option of section I, the
763 ;; PostScript engine treats control characters properly.
764 ;;
765 ;; 5. If you want to print a directory, buffer, region or major mode in a
766 ;; text printer, select this option. See also the NOTE 1 on option 1.
767 ;;
768 ;; 6. You can select a new text printer to send text generated. For
769 ;; selection it's used all text printers defined in
770 ;; `pr-txt-printer-alist' variable (see it for documentation).
771 ;; See also `pr-setting-database'.
772 ;;
773 ;; III. PostScript page toggle options:
774 ;;
775 ;; 7. If you want a PostScript landscape printing, turn on this option.
776 ;;
777 ;; 8. If you want to have a header in each page in your PostScript code,
778 ;; turn on this option.
779 ;;
780 ;; 9. If you want to draw a gaudy frame around the header, turn on this
781 ;; option. This option is enabled if print header is on (option 8).
782 ;;
783 ;; 10. If you want that the line number is printed in your PostScript code,
784 ;; turn on this option.
785 ;;
786 ;; 11. If you want background zebra stripes in your PostScript code, turn on
787 ;; this option.
788 ;;
789 ;; 12. If you want a duplex printing and your PostScript printer has this
790 ;; feature, turn on this option.
791 ;;
792 ;; 13. If you turned on duplex printing, you can choose if you want to have
793 ;; a printing suitable for binding on the left or right (tumble off), or
794 ;; to have a printing suitable for binding at top or bottom (tumble on).
795 ;; This option is enabled if duplex is on (option 12).
796 ;;
797 ;; 14. If you want a PostScript upside-down printing, turn on this option.
798 ;;
799 ;; 15. With this option, you can choose if you want to print all pages, odd
800 ;; pages, even pages, odd sheets or even sheets.
801 ;; See also `ps-even-or-odd-pages'.
802 ;;
803 ;; IV. PostScript processing toggle options:
804 ;;
805 ;; 16. If you want to spool the PostScript code generated, turn on this
806 ;; option. To spool the PostScript code generated use option 2. You
807 ;; can despool later by choosing option 1 or 2, sub-option `Despool...'.
808 ;;
809 ;; 17. If you use colors in your buffers and want to see these colors on
810 ;; your PostScript code generated, turn on this option. If you have a
811 ;; black/white PostScript printer, these colors are displayed in gray
812 ;; scale by PostScript printer interpreter.
813 ;;
814 ;; 18. If you don't have a PostScript printer to send PostScript files, turn
815 ;; on this option. When this option is on, the ghostscript is used to
816 ;; print PostScript files. In GNU or Unix system, if ghostscript is set
817 ;; as a PostScript filter, you don't need to turn on this option.
818 ;;
819 ;; V. Printing customization:
820 ;;
821 ;; 19. If you want that region is automagically detected, turn on this
822 ;; option. Note that this will only work if you're using transient mark
823 ;; mode. When this option is on, the `*-buffer*' commands will behave
824 ;; like `*-region*' commands, that is, `*-buffer*' commands will print
825 ;; only the region marked instead of all buffer.
826 ;;
827 ;; 20. Turn this option on if you want that when current major-mode is
828 ;; declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
829 ;; behave like `*-mode*' commands.
830 ;;
831 ;; 21. If you want that Printing menu stays open while you are setting
832 ;; toggle options, turn on this option. The variables
833 ;; `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
834 ;; menu position, so don't forget to adjust these variables if menu
835 ;; position is not ok.
836 ;;
837 ;; VI. Customization:
838 ;;
839 ;; 22. Besides all options in section III, IV and V, you can customize much
840 ;; more PostScript options in `ps-print' option. Or you can customize
841 ;; some `lpr' options for text printing. Or customize `printing'
842 ;; options.
843 ;;
844 ;; 23. Show current settings for `printing', `ps-print' or `lpr'.
845 ;;
846 ;; 24. Quick help for printing menu layout.
847 ;;
848 ;;
849 ;; Option Settings
850 ;; ---------------
851 ;;
852 ;; Below it's shown only the main options that affect all `printing' package.
853 ;; Check all the settings below *BEFORE* running `printing' commands.
854 ;;
855 ;; * Example of setting for GNU or Unix system:
856 ;;
857 ;; (require 'printing)
858 ;; (setq pr-path-alist
859 ;; '((unix "." "~/bin" ghostview mpage PATH)
860 ;; (ghostview "$HOME/bin/gsview-dir")
861 ;; (mpage "$HOME/bin/mpage-dir")
862 ;; ))
863 ;; (setq pr-txt-name 'prt_06a)
864 ;; (setq pr-txt-printer-alist
865 ;; '((prt_06a "lpr" nil "prt_06a")
866 ;; (prt_07c nil nil "prt_07c")
867 ;; ))
868 ;; (setq pr-ps-name 'lps_06b)
869 ;; (setq pr-ps-printer-alist
870 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
871 ;; (lps_07c "lpr" nil nil "lps_07c")
872 ;; (lps_08c nil nil nil "lps_08c")
873 ;; ))
874 ;; (setq pr-temp-dir "/tmp/")
875 ;; (setq pr-gv-command "gv")
876 ;; (setq pr-gs-command "gs")
877 ;; (setq pr-gs-switches '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
878 ;; (setq pr-gs-device "uniprint")
879 ;; (setq pr-gs-resolution 300)
880 ;; (setq pr-ps-utility 'mpage)
881 ;; (setq pr-ps-utility-alist
882 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
883 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
884 ;; (inherits-from: . no-duplex))
885 ;; ))
886 ;; (setq pr-setting-database
887 ;; '((no-duplex
888 ;; nil nil nil
889 ;; (pr-file-duplex . nil)
890 ;; (pr-file-tumble . nil))
891 ;; ))
892 ;; (pr-update-menus t) ; update now printer and utility menus
893 ;;
894 ;; * Example of setting for Windows system:
895 ;;
896 ;; (require 'printing)
897 ;; (setq pr-path-alist
898 ;; '((windows "c:/applications/executables" PATH ghostview mpage)
899 ;; (ghostview "c:/gs/gsview-dir")
900 ;; (mpage "c:/mpage-dir")
901 ;; ))
902 ;; (setq pr-txt-name 'prt_06a)
903 ;; (setq pr-txt-printer-alist
904 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
905 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
906 ;; (PRN "" nil "PRN")
907 ;; (standard "redpr.exe" nil "")
908 ;; ))
909 ;; (setq pr-ps-name 'lps_06b)
910 ;; (setq pr-ps-printer-alist
911 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
912 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
913 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
914 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
915 ;; (b/w "gsprint" ("-all" "-twoup") "-printer " "b/w-pr-name")
916 ;; (LPT1 "" nil "" "LPT1:")
917 ;; (PRN "" nil "" "PRN")
918 ;; (standard "redpr.exe" nil "" "")
919 ;; ))
920 ;; (setq pr-temp-dir "C:/WINDOWS/TEMP/")
921 ;; (setq pr-gv-command "c:/gs/gsview/gsview32.exe")
922 ;; (setq pr-gs-command "c:/gs/gswin32.exe")
923 ;; (setq pr-gs-switches '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts"))
924 ;; (setq pr-gs-device "mswinpr2")
925 ;; (setq pr-gs-resolution 300)
926 ;; (setq pr-ps-utility 'psnup)
927 ;; (setq pr-ps-utility-alist
928 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " "
929 ;; nil (inherits-from: . no-duplex))
930 ;; ))
931 ;; (setq pr-setting-database
932 ;; '((no-duplex
933 ;; nil nil nil
934 ;; (pr-file-duplex . nil)
935 ;; (pr-file-tumble . nil))
936 ;; ))
937 ;; (pr-update-menus t) ; update now printer and utility menus
938 ;;
939 ;; NOTE: Don't forget to download and install the utilities declared on
940 ;; `pr-ps-utility-alist'.
941 ;;
942 ;;
943 ;; Utilities
944 ;; ---------
945 ;;
946 ;; `printing' package has the following utilities:
947 ;;
948 ;; `pr-setup' Return the current `printing' setup.
949 ;;
950 ;; `lpr-setup' Return the current `lpr' setup.
951 ;;
952 ;; `pr-update-menus' Update utility, PostScript and text printer menus.
953 ;;
954 ;; `pr-menu-bind' Install `printing' menu in the menubar.
955 ;;
956 ;;
957 ;; Below are some URL where you can find good utilities.
958 ;;
959 ;; * For `printing' package:
960 ;;
961 ;; printing `http://www.cpqd.com.br/~vinicius/emacs/printing.el.gz'
962 ;; ps-print `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'
963 ;;
964 ;; * For GNU or Unix system:
965 ;;
966 ;; gs, gv `http://www.gnu.org/software/ghostscript/ghostscript.html'
967 ;; enscript `http://people.ssh.fi/mtr/genscript/'
968 ;; psnup `http://www.knackered.org/angus/psutils/'
969 ;; mpage `http://www.mesa.nl/pub/mpage/'
970 ;;
971 ;; * For Windows system:
972 ;;
973 ;; gswin32, gsview32
974 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html'
975 ;; gsprint `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'.
976 ;; enscript `http://people.ssh.fi/mtr/genscript/'
977 ;; psnup `http://gnuwin32.sourceforge.net/packages/psutils.htm'
978 ;; redmon `http://www.cs.wisc.edu/~ghost/redmon/'
979 ;;
980 ;;
981 ;; Acknowledgments
982 ;; ---------------
983 ;;
984 ;; Thanks to Stefan Monnier <monnier@iro.umontreal.ca> for GNU Emacs and XEmacs
985 ;; printing menu (in `pr-menu-spec') merging suggestion.
986 ;;
987 ;; Thanks to Lennart Borgman <lennart.borgman.073@student.lu.se> for gsprint
988 ;; suggestion (see tip 5 in section Tips).
989 ;;
990 ;; Thanks to Drew Adams <drew.adams@oracle.com> for suggestions:
991 ;; - directory processing.
992 ;; - `pr-path-alist' variable.
993 ;; - doc fix.
994 ;; - a lot of tests on Windows.
995 ;;
996 ;; Thanks to Fred Labrosse <f.labrosse@maths.bath.ac.uk> for XEmacs tests.
997 ;;
998 ;; Thanks to Klaus Berndl <klaus.berndl@sdm.de> for invaluable help/debugging
999 ;; and for suggestions:
1000 ;; - even/odd pages printing.
1001 ;; - ghostscript parameters for `pr-ps-printer-alist'.
1002 ;; - default printer name.
1003 ;; - completion functions.
1004 ;; - automagic region detection.
1005 ;; - menu entry hiding.
1006 ;; - fast fire PostScript printing command.
1007 ;; - `pr-path-style' variable.
1008 ;;
1009 ;; Thanks to Kim F. Storm <storm@filanet.dk> for beta-test and for suggestions:
1010 ;; - PostScript Print and PostScript Print Preview merge.
1011 ;; - Tools/Printing menu.
1012 ;; - replace *-using-preview by *-using-ghostscript.
1013 ;; - printer selection.
1014 ;; - extra parameters for `pr-ps-printer-alist'.
1015 ;;
1016 ;; Thanks to:
1017 ;; Frederic Corne <frederic.corne@erli.fr> print-nt.el
1018 ;; Tom Vogels <tov@ece.cmu.edu> mh-e-init.el
1019 ;; Matthew O. Persico <mpersico@erols.com> win32-ps-print.el
1020 ;; Volker Franz <volker.franz@tuebingen.mpg.de> ps-print-interface.el
1021 ;; And to all people who contributed with them.
1022 ;;
1023 ;;
1024 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1025
1026 ;;; Code:
1027
1028
1029 (require 'lpr)
1030 (require 'ps-print)
1031
1032
1033 (and (string< ps-print-version "6.6.4")
1034 (error "`printing' requires `ps-print' package version 6.6.4 or later"))
1035
1036
1037 (defconst pr-cygwin-system
1038 (and ps-windows-system (getenv "OSTYPE")
1039 (string-match "cygwin" (getenv "OSTYPE"))))
1040
1041
1042 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1043 ;; To avoid compilation gripes
1044
1045
1046 (or (fboundp 'easy-menu-intern) ; hacked from easymenu.el
1047 (defsubst easy-menu-intern (s)
1048 (if (stringp s) (intern s) s)))
1049
1050
1051
1052 (or (fboundp 'subst-char-in-string) ; hacked from subr.el
1053 (defun subst-char-in-string (fromchar tochar string &optional inplace)
1054 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
1055 Unless optional argument INPLACE is non-nil, return a new string."
1056 (let ((i (length string))
1057 (newstr (if inplace string (copy-sequence string))))
1058 (while (> (setq i (1- i)) 0)
1059 (if (eq (aref newstr i) fromchar)
1060 (aset newstr i tochar)))
1061 newstr)))
1062
1063
1064 (or (fboundp 'make-temp-file) ; hacked from subr.el
1065 (defun make-temp-file (prefix &optional dir-flag suffix)
1066 "Create a temporary file.
1067 The returned file name (created by appending some random characters at the end
1068 of PREFIX, and expanding against `temporary-file-directory' if necessary),
1069 is guaranteed to point to a newly created empty file.
1070 You can then use `write-region' to write new data into the file.
1071
1072 If DIR-FLAG is non-nil, create a new empty directory instead of a file.
1073
1074 If SUFFIX is non-nil, add that at the end of the file name."
1075 (let ((umask (default-file-modes))
1076 file)
1077 (unwind-protect
1078 (progn
1079 ;; Create temp files with strict access rights. It's easy to
1080 ;; loosen them later, whereas it's impossible to close the
1081 ;; time-window of loose permissions otherwise.
1082 (set-default-file-modes ?\700)
1083 (while (condition-case ()
1084 (progn
1085 (setq file
1086 (make-temp-name
1087 (expand-file-name prefix temporary-file-directory)))
1088 (if suffix
1089 (setq file (concat file suffix)))
1090 (if dir-flag
1091 (make-directory file)
1092 (write-region "" nil file nil 'silent nil 'excl))
1093 nil)
1094 (file-already-exists t))
1095 ;; the file was somehow created by someone else between
1096 ;; `make-temp-name' and `write-region', let's try again.
1097 nil)
1098 file)
1099 ;; Reset the umask.
1100 (set-default-file-modes umask)))))
1101
1102
1103 ;; GNU Emacs
1104 (defalias 'pr-e-frame-char-height 'frame-char-height)
1105 (defalias 'pr-e-frame-char-width 'frame-char-width)
1106 (defalias 'pr-e-mouse-pixel-position 'mouse-pixel-position)
1107 ;; XEmacs
1108 (defalias 'pr-x-add-submenu 'add-submenu)
1109 (defalias 'pr-x-event-function 'event-function)
1110 (defalias 'pr-x-event-object 'event-object)
1111 (defalias 'pr-x-find-menu-item 'find-menu-item)
1112 (defalias 'pr-x-font-height 'font-height)
1113 (defalias 'pr-x-font-width 'font-width)
1114 (defalias 'pr-x-get-popup-menu-response 'get-popup-menu-response)
1115 (defalias 'pr-x-make-event 'make-event)
1116 (defalias 'pr-x-misc-user-event-p 'misc-user-event-p)
1117 (defalias 'pr-x-relabel-menu-item 'relabel-menu-item)
1118 (defalias 'pr-x-event-x-pixel 'event-x-pixel)
1119 (defalias 'pr-x-event-y-pixel 'event-y-pixel)
1120
1121 (cond
1122 ((featurep 'xemacs) ; XEmacs
1123 (defvar current-menubar nil)
1124 (defvar current-mouse-event nil)
1125 (defvar zmacs-region-stays nil)
1126 (defalias 'pr-f-set-keymap-parents 'set-keymap-parents)
1127 (defalias 'pr-f-set-keymap-name 'set-keymap-name)
1128 (defun pr-f-read-string (prompt initial history default)
1129 (let ((str (read-string prompt initial)))
1130 (if (and str (not (string= str "")))
1131 str
1132 default)))
1133 (defun pr-keep-region-active ()
1134 (setq zmacs-region-stays t)))
1135
1136 (t ; GNU Emacs
1137 (defvar deactivate-mark nil)
1138 (defalias 'pr-f-set-keymap-parents 'set-keymap-parent)
1139 (defalias 'pr-f-set-keymap-name 'ignore)
1140 (defalias 'pr-f-read-string 'read-string)
1141 (defun pr-keep-region-active ()
1142 (setq deactivate-mark nil))))
1143
1144
1145 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1146 ;; Customization Functions
1147
1148
1149 (defun pr-alist-custom-set (symbol value)
1150 "Set the value of custom variables for printer & utility selection."
1151 (set symbol value)
1152 (and (featurep 'printing) ; update only after printing is loaded
1153 (pr-update-menus t)))
1154
1155
1156 (defun pr-ps-utility-custom-set (symbol value)
1157 "Update utility menu entry."
1158 (set symbol value)
1159 (and (featurep 'printing) ; update only after printing is loaded
1160 (pr-menu-set-utility-title value)))
1161
1162
1163 (defun pr-ps-name-custom-set (symbol value)
1164 "Update `PostScript Printer:' menu entry."
1165 (set symbol value)
1166 (and (featurep 'printing) ; update only after printing is loaded
1167 (pr-menu-set-ps-title value)))
1168
1169
1170 (defun pr-txt-name-custom-set (symbol value)
1171 "Update `Text Printer:' menu entry."
1172 (set symbol value)
1173 (and (featurep 'printing) ; update only after printing is loaded
1174 (pr-menu-set-txt-title value)))
1175
1176
1177 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1178 ;; User Interface (I)
1179
1180
1181 (defgroup printing nil
1182 "Printing Utilities group"
1183 :tag "Printing Utilities"
1184 :link '(emacs-library-link :tag "Source Lisp File" "printing.el")
1185 :prefix "pr-"
1186 :version "20"
1187 :group 'wp
1188 :group 'postscript)
1189
1190
1191 (defcustom pr-path-style
1192 (if (and (not pr-cygwin-system)
1193 ps-windows-system)
1194 'windows
1195 'unix)
1196 "*Specify which path style to use for external commands.
1197
1198 Valid values are:
1199
1200 windows Windows 9x/NT style (\\)
1201
1202 unix Unix style (/)"
1203 :type '(choice :tag "Path style"
1204 (const :tag "Windows 9x/NT Style (\\)" :value windows)
1205 (const :tag "Unix Style (/)" :value unix))
1206 :version "20"
1207 :group 'printing)
1208
1209
1210 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1211 ;; Internal Functions (I)
1212
1213
1214 (defun pr-dosify-file-name (path)
1215 "Replace unix-style directory separator character with dos/windows one."
1216 (interactive "sPath: ")
1217 (if (eq pr-path-style 'windows)
1218 (subst-char-in-string ?/ ?\\ path)
1219 path))
1220
1221
1222 (defun pr-unixify-file-name (path)
1223 "Replace dos/windows-style directory separator character with unix one."
1224 (interactive "sPath: ")
1225 (if (eq pr-path-style 'windows)
1226 (subst-char-in-string ?\\ ?/ path)
1227 path))
1228
1229
1230 (defun pr-standard-file-name (path)
1231 "Ensure the proper directory separator depending on the OS.
1232 That is, if Emacs is running on DOS/Windows, ensure dos/windows-style directory
1233 separator; otherwise, ensure unix-style directory separator."
1234 (if (or pr-cygwin-system ps-windows-system)
1235 (subst-char-in-string ?/ ?\\ path)
1236 (subst-char-in-string ?\\ ?/ path)))
1237
1238
1239 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1240 ;; User Interface (II)
1241
1242
1243 (defcustom pr-path-alist
1244 '((unix PATH)
1245 (cygwin PATH)
1246 (windows PATH))
1247 "*Specify an alist for command paths.
1248
1249 It's used to find commands used for printing package, like gv, gs, gsview.exe,
1250 mpage, print.exe, etc. See also `pr-command' function.
1251
1252 Each element has the form:
1253
1254 (ENTRY DIRECTORY...)
1255
1256 Where:
1257
1258 ENTRY It's a symbol, used to identify this entry.
1259 There must exist at least one of the following entries:
1260
1261 unix this entry is used when Emacs is running on GNU or
1262 Unix system.
1263
1264 cygwin this entry is used when Emacs is running on Windows
1265 95/98/NT/2000 with Cygwin.
1266
1267 windows this entry is used when Emacs is running on Windows
1268 95/98/NT/2000.
1269
1270 DIRECTORY It should be a string or a symbol. If it's a symbol, it should
1271 exist an equal entry in `pr-path-alist'. If it's a string,
1272 it's considered a directory specification.
1273
1274 The directory specification may contain:
1275 $var environment variable expansion
1276 ~/ tilde expansion
1277 ./ current directory
1278 ../ previous directory
1279
1280 For example, let's say the home directory is /home/my and the
1281 current directory is /home/my/dir, so:
1282
1283 THE ENTRY IS EXPANDED TO
1284 ~/entry /home/my/entry
1285 ./entry /home/my/dir/entry
1286 ../entry /home/my/entry
1287 $HOME/entry /home/my/entry
1288 $HOME/~/other/../my/entry /home/my/entry
1289
1290 SPECIAL SYMBOL: If the symbol `PATH' is used in the directory
1291 list and there isn't a `PATH' entry in `pr-path-alist' or the
1292 `PATH' entry has a null directory list, the PATH environment
1293 variable is used.
1294
1295 Examples:
1296
1297 * On GNU or Unix system:
1298
1299 '((unix \".\" \"~/bin\" ghostview mpage PATH)
1300 (ghostview \"$HOME/bin/gsview-dir\")
1301 (mpage \"$HOME/bin/mpage-dir\")
1302 )
1303
1304 * On Windows system:
1305
1306 '((windows \"c:/applications/executables\" PATH ghostview mpage)
1307 (ghostview \"c:/gs/gsview-dir\")
1308 (mpage \"c:/mpage-dir\")
1309 )"
1310 :type '(repeat
1311 (cons :tag ""
1312 (symbol :tag "Identifier ")
1313 (repeat :tag "Directory List"
1314 (choice :menu-tag "Directory"
1315 :tag "Directory"
1316 (string :value "")
1317 (symbol :value symbol)))))
1318 :version "20"
1319 :group 'printing)
1320
1321
1322 (defcustom pr-txt-name 'default
1323 "*Specify a printer for printing a text file.
1324
1325 The printer name symbol should be defined on `pr-txt-printer-alist' (see it for
1326 documentation).
1327
1328 This variable should be modified by customization engine. If this variable is
1329 modified by other means (for example, a lisp function), use `pr-update-menus'
1330 function (see it for documentation) to update text printer menu."
1331 :type 'symbol
1332 :set 'pr-txt-name-custom-set
1333 :version "20"
1334 :group 'printing)
1335
1336
1337 (defcustom pr-txt-printer-alist
1338 (list (list 'default lpr-command nil
1339 (cond ((boundp 'printer-name) printer-name)
1340 (ps-windows-system "PRN")
1341 (t nil)
1342 )))
1343 ;; Examples:
1344 ;; * On GNU or Unix system:
1345 ;; '((prt_06a "lpr" nil "prt_06a")
1346 ;; (prt_07c nil nil "prt_07c")
1347 ;; )
1348 ;; * On Windows system:
1349 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
1350 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
1351 ;; (PRN "" nil "PRN")
1352 ;; (standard "redpr.exe" nil "")
1353 ;; )
1354 "*Specify an alist of all text printers (text printer database).
1355
1356 The alist element has the form:
1357
1358 (SYMBOL COMMAND SWITCHES NAME)
1359
1360 Where:
1361
1362 SYMBOL It's a symbol to identify a text printer. It's for
1363 `pr-txt-name' variable setting and for menu selection.
1364 Examples:
1365 'prt_06a
1366 'my_printer
1367
1368 COMMAND Name of the program for printing a text file. On MS-DOS and
1369 MS-Windows systems, if the value is an empty string, then Emacs
1370 will write directly to the printer port given by NAME (see text
1371 below), that is, the NAME should be something like \"PRN\" or
1372 \"LPT1:\".
1373 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
1374 COMMAND shouldn't be an empty string.
1375 The programs `print' and `nprint' (the standard print programs
1376 on Windows NT and Novell Netware respectively) are handled
1377 specially, using NAME as the destination for output; any other
1378 program is treated like `lpr' except that an explicit filename
1379 is given as the last argument.
1380 If COMMAND is nil, it's used the default printing program:
1381 `print' for Windows system, `lp' for lp system and `lpr' for
1382 all other systems. See also `pr-path-alist'.
1383 Examples:
1384 \"print\"
1385 \"lpr\"
1386 \"lp\"
1387
1388 SWITCHES List of sexp's to pass as extra options for text printer
1389 program. It is recommended to set NAME (see text below)
1390 instead of including an explicit switch on this list.
1391 Example:
1392 . for lpr
1393 '(\"-#3\" \"-l\")
1394 nil
1395
1396 NAME A string that specifies a text printer name.
1397 On Unix-like systems, a string value should be a name
1398 understood by lpr's -P option (or lp's -d option).
1399 On MS-DOS and MS-Windows systems, it is the name of a printer
1400 device or port. Typical non-default settings would be \"LPT1:\"
1401 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
1402 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
1403 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
1404 printer. You can also set it to a name of a file, in which
1405 case the output gets appended to that file. If you want to
1406 discard the printed output, set this to \"NUL\".
1407 Examples:
1408 . for print.exe
1409 \"/D:\\\\\\\\host\\\\share-name\"
1410 \"LPT1:\"
1411 \"PRN\"
1412
1413 . for lpr or lp
1414 \"share-name\"
1415
1416 This variable should be modified by customization engine. If this variable is
1417 modified by other means (for example, a lisp function), use `pr-update-menus'
1418 function (see it for documentation) to update text printer menu.
1419
1420 Examples:
1421
1422 * On GNU or Unix system:
1423
1424 '((prt_06a \"lpr\" nil \"prt_06a\")
1425 (prt_07c nil nil \"prt_07c\")
1426 )
1427
1428 * On Windows system:
1429
1430 '((prt_06a \"print\" nil \"/D:\\\\\\\\printers\\\\prt_06a\")
1431 (prt_07c nil nil \"/D:\\\\\\\\printers\\\\prt_07c\")
1432 (PRN \"\" nil \"PRN\")
1433 (standard \"redpr.exe\" nil \"\")
1434 )
1435
1436 Useful links:
1437
1438 * Information about the print command (print.exe)
1439 `http://www.computerhope.com/printhlp.htm'
1440
1441 * RedMon - Redirection Port Monitor (redpr.exe)
1442 `http://www.cs.wisc.edu/~ghost/redmon/index.htm'
1443
1444 * Redirection Port Monitor (redpr.exe on-line help)
1445 `http://www.cs.wisc.edu/~ghost/redmon/en/redmon.htm'
1446
1447 * UNIX man pages: lpr (or type `man lpr')
1448 `http://bama.ua.edu/cgi-bin/man-cgi?lpr'
1449 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lpr'
1450
1451 * UNIX man pages: lp (or type `man lp')
1452 `http://bama.ua.edu/cgi-bin/man-cgi?lp'
1453 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lp'
1454 "
1455 :type '(repeat
1456 (list :tag "Text Printer"
1457 (symbol :tag "Printer Symbol Name")
1458 (string :tag "Printer Command")
1459 (repeat :tag "Printer Switches"
1460 (sexp :tag "Switch" :value ""))
1461 (choice :menu-tag "Printer Name"
1462 :tag "Printer Name"
1463 (const :tag "None" nil)
1464 string)))
1465 :set 'pr-alist-custom-set
1466 :version "20"
1467 :group 'printing)
1468
1469
1470 (defcustom pr-ps-name 'default
1471 "*Specify a printer for printing a PostScript file.
1472
1473 This printer name symbol should be defined on `pr-ps-printer-alist' (see it for
1474 documentation).
1475
1476 This variable should be modified by customization engine. If this variable is
1477 modified by other means (for example, a lisp function), use `pr-update-menus'
1478 function (see it for documentation) to update PostScript printer menu."
1479 :type 'symbol
1480 :set 'pr-ps-name-custom-set
1481 :version "20"
1482 :group 'printing)
1483
1484
1485 (defcustom pr-ps-printer-alist
1486 (list (list 'default lpr-command nil
1487 (cond (ps-windows-system nil)
1488 (ps-lp-system "-d")
1489 (t "-P"))
1490 (or (getenv "PRINTER") (getenv "LPDEST") ps-printer-name)))
1491 ;; Examples:
1492 ;; * On GNU or Unix system:
1493 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
1494 ;; (lps_07c "lpr" nil nil "lps_07c")
1495 ;; (lps_08c nil nil nil "lps_08c")
1496 ;; )
1497 ;; * On Windows system:
1498 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
1499 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
1500 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
1501 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
1502 ;; (b/w "gsprint" ("-all" "-twoup") "-printer " "b/w-pr-name")
1503 ;; (LPT1 "" nil "" "LPT1:")
1504 ;; (PRN "" nil "" "PRN")
1505 ;; (standard "redpr.exe" nil "" "")
1506 ;; )
1507 "*Specify an alist for all PostScript printers (PostScript printer database).
1508
1509 The alist element has the form:
1510
1511 (SYMBOL COMMAND SWITCHES PRINTER-SWITCH NAME DEFAULT...)
1512
1513 Where:
1514
1515 SYMBOL It's a symbol to identify a PostScript printer. It's for
1516 `pr-ps-name' variable setting and for menu selection.
1517 Examples:
1518 'prt_06a
1519 'my_printer
1520
1521 COMMAND Name of the program for printing a PostScript file. On MS-DOS
1522 and MS-Windows systems, if the value is an empty string then
1523 Emacs will write directly to the printer port given by NAME
1524 (see text below), that is, the NAME should be something like
1525 \"PRN\" or \"LPT1:\".
1526 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
1527 COMMAND shouldn't be an empty string.
1528 The programs `print' and `nprint' (the standard print programs
1529 on Windows NT and Novell Netware respectively) are handled
1530 specially, using NAME as the destination for output; any other
1531 program is treated like `lpr' except that an explicit filename
1532 is given as the last argument.
1533 If COMMAND is nil, it's used the default printing program:
1534 `print' for Windows system, `lp' for lp system and `lpr' for
1535 all other systems. See also `pr-path-alist'.
1536 Examples:
1537 \"print\"
1538 \"lpr\"
1539 \"lp\"
1540 \"cp\"
1541 \"gsprint\"
1542
1543 SWITCHES List of sexp's to pass as extra options for PostScript printer
1544 program. It is recommended to set NAME (see text below)
1545 instead of including an explicit switch on this list.
1546 Example:
1547 . for lpr
1548 '(\"-#3\" \"-l\")
1549 nil
1550
1551 . for gsprint.exe
1552 '(\"-all\" \"-twoup\")
1553
1554 PRINTER-SWITCH A string that specifies PostScript printer name switch. If
1555 it's necessary to have a space between PRINTER-SWITCH and NAME,
1556 it should be inserted at the end of PRINTER-SWITCH string.
1557 If PRINTER-SWITCH is nil, it's used the default printer name
1558 switch: `/D:' for Windows system, `-d' for lp system and `-P'
1559 for all other systems.
1560 Examples:
1561 . for lpr
1562 \"-P \"
1563
1564 . for lp
1565 \"-d \"
1566
1567 . for print.exe
1568 \"/D:\"
1569
1570 . for gsprint.exe
1571 \"-printer \"
1572
1573 NAME A string that specifies a PostScript printer name.
1574 On Unix-like systems, a string value should be a name
1575 understood by lpr's -P option (or lp's -d option).
1576 On MS-DOS and MS-Windows systems, it is the name of a printer
1577 device or port. Typical non-default settings would be \"LPT1:\"
1578 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
1579 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
1580 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
1581 printer. You can also set it to a name of a file, in which
1582 case the output gets appended to that file. If you want to
1583 discard the printed output, set this to \"NUL\".
1584 Examples:
1585 . for cp.exe
1586 \"\\\\\\\\host\\\\share-name\"
1587
1588 . for print.exe or gsprint.exe
1589 \"/D:\\\\\\\\host\\\\share-name\"
1590 \"\\\\\\\\host\\\\share-name\"
1591 \"LPT1:\"
1592 \"PRN\"
1593
1594 . for lpr or lp
1595 \"share-name\"
1596
1597 DEFAULT It's a way to set default values when this entry is selected.
1598 It's a cons like:
1599
1600 (VARIABLE . VALUE)
1601
1602 That associates VARIABLE with VALUE. when this entry is
1603 selected, it's executed the following command:
1604
1605 (set VARIABLE (eval VALUE))
1606
1607 Note that VALUE can be any valid lisp expression. So, don't
1608 forget to quote symbols and constant lists.
1609 If VARIABLE is the special keyword `inherits-from:', VALUE must
1610 be a symbol name setting defined in `pr-setting-database' from
1611 which the current setting inherits the context. Take care with
1612 circular inheritance.
1613 Examples:
1614 '(ps-landscape-mode . nil)
1615 '(ps-spool-duplex . t)
1616 '(pr-gs-device . (my-gs-device t))
1617
1618 This variable should be modified by customization engine. If this variable is
1619 modified by other means (for example, a lisp function), use `pr-update-menus'
1620 function (see it for documentation) to update PostScript printer menu.
1621
1622 Examples:
1623
1624 * On GNU or Unix system:
1625
1626 '((lps_06b \"lpr\" nil \"-P\" \"lps_06b\")
1627 (lps_07c \"lpr\" nil nil \"lps_07c\")
1628 (lps_08c nil nil nil \"lps_08c\")
1629 )
1630
1631 * On Windows system:
1632
1633 '((lps_06a \"print\" nil \"/D:\" \"\\\\\\\\printers\\\\lps_06a\")
1634 (lps_06b \"print\" nil nil \"\\\\\\\\printers\\\\lps_06b\")
1635 (lps_07c \"print\" nil \"\" \"/D:\\\\\\\\printers\\\\lps_07c\")
1636 (lps_08c nil nil nil \"\\\\\\\\printers\\\\lps_08c\")
1637 (b/w1 \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"b/w-pr-name\")
1638 (b/w2 \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer \\\\\\\\printers\\\\lps_06a\")
1639 (LPT1 \"\" nil \"\" \"LPT1:\")
1640 (PRN \"\" nil \"\" \"PRN\")
1641 (standard \"redpr.exe\" nil \"\" \"\")
1642 )
1643
1644
1645 gsprint:
1646
1647 You can use gsprint instead of ghostscript to print monochrome PostScript files
1648 in Windows. The gsprint utility documentation says that it is more efficient
1649 than ghostscript to print monochrome PostScript.
1650
1651 To print non-monochrome PostScript file, the efficiency of ghostscript is
1652 similar to gsprint.
1653
1654 Also the gsprint utility comes together with gsview distribution.
1655
1656 As an example of gsprint declaration:
1657
1658 (setq pr-ps-printer-alist
1659 '((A \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"lps_015\")
1660 (B \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer lps_015\")
1661 ;; some other printer declaration
1662 ))
1663
1664 The example above declares that printer A prints all pages (-all) and two pages
1665 per sheet (-twoup). The printer B declaration does the same as the printer A
1666 declaration, the only difference is the printer name selection.
1667
1668 There are other command line options like:
1669
1670 -mono Render in monochrome as 1bit/pixel (only black and white).
1671 -grey Render in greyscale as 8bits/pixel.
1672 -color Render in color as 24bits/pixel.
1673
1674 The default is `-mono'. So, printer A and B in the example above are using
1675 implicitly the `-mono' option. Note that in `-mono' no gray tone or color is
1676 printed, this includes the zebra stripes, that is, in `-mono' the zebra stripes
1677 are not printed.
1678
1679
1680 Useful links:
1681
1682 * GSPRINT - Ghostscript print to Windows printer
1683 `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'
1684
1685 * Introduction to Ghostscript
1686 `http://www.cs.wisc.edu/~ghost/doc/intro.htm'
1687
1688 * How to use Ghostscript
1689 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
1690
1691 * Information about the print command (print.exe)
1692 `http://www.computerhope.com/printhlp.htm'
1693
1694 * RedMon - Redirection Port Monitor (redpr.exe)
1695 `http://www.cs.wisc.edu/~ghost/redmon/index.htm'
1696
1697 * Redirection Port Monitor (redpr.exe on-line help)
1698 `http://www.cs.wisc.edu/~ghost/redmon/en/redmon.htm'
1699
1700 * UNIX man pages: lpr (or type `man lpr')
1701 `http://bama.ua.edu/cgi-bin/man-cgi?lpr'
1702 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lpr'
1703
1704 * UNIX man pages: lp (or type `man lp')
1705 `http://bama.ua.edu/cgi-bin/man-cgi?lp'
1706 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lp'
1707
1708 * GNU utilities for Win32 (cp.exe)
1709 `http://unxutils.sourceforge.net/'
1710 "
1711 :type '(repeat
1712 (list
1713 :tag "PostScript Printer"
1714 (symbol :tag "Printer Symbol Name")
1715 (string :tag "Printer Command")
1716 (repeat :tag "Printer Switches"
1717 (sexp :tag "Switch" :value ""))
1718 (choice :menu-tag "Printer Name Switch"
1719 :tag "Printer Name Switch"
1720 (const :tag "None" nil)
1721 string)
1722 (choice :menu-tag "Printer Name"
1723 :tag "Printer Name"
1724 (const :tag "None" nil)
1725 string)
1726 (repeat
1727 :tag "Default Value List"
1728 :inline t
1729 (cons
1730 :tag ""
1731 (choice
1732 :menu-tag "Variable"
1733 :tag "Variable"
1734 (const :tag "Landscape" ps-landscape-mode)
1735 (const :tag "Print Header" ps-print-header)
1736 (const :tag "Print Header Frame" ps-print-header-frame)
1737 (const :tag "Line Number" ps-line-number)
1738 (const :tag "Zebra Stripes" ps-zebra-stripes)
1739 (const :tag "Duplex" ps-spool-duplex)
1740 (const :tag "Tumble" ps-spool-tumble)
1741 (const :tag "Upside-Down" ps-print-upside-down)
1742 (const :tag "PS File Landscape" pr-file-landscape)
1743 (const :tag "PS File Duplex" pr-file-duplex)
1744 (const :tag "PS File Tumble" pr-file-tumble)
1745 (const :tag "Auto Region" pr-auto-region)
1746 (const :tag "Auto Mode" pr-auto-mode)
1747 (const :tag "Ghostscript Device" pr-gs-device)
1748 (const :tag "Ghostscript Resolution" pr-gs-resolution)
1749 (const :tag "inherits-from:" inherits-from:)
1750 (variable :tag "Other"))
1751 (sexp :tag "Value")))
1752 ))
1753 :set 'pr-alist-custom-set
1754 :version "20"
1755 :group 'printing)
1756
1757
1758 (defcustom pr-temp-dir
1759 (pr-dosify-file-name
1760 (if (boundp 'temporary-file-directory)
1761 (symbol-value 'temporary-file-directory)
1762 ;; hacked from `temporary-file-directory' variable in files.el
1763 (file-name-as-directory
1764 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP")
1765 (cond (ps-windows-system "c:/temp")
1766 ((memq system-type '(vax-vms axp-vms)) "SYS$SCRATCH:")
1767 (t "/tmp")
1768 )))))
1769 "*Specify a directory for temporary files during printing.
1770
1771 See also `pr-ps-temp-file' and `pr-file-modes'."
1772 :type '(directory :tag "Temporary Directory")
1773 :version "20"
1774 :group 'printing)
1775
1776
1777 (defcustom pr-ps-temp-file "prspool-"
1778 "*Specify PostScript temporary file name prefix.
1779
1780 See also `pr-temp-dir' and `pr-file-modes'."
1781 :type '(file :tag "PostScript Temporary File Name")
1782 :version "21"
1783 :group 'printing)
1784
1785
1786 ;; It uses 0600 as default instead of (default-file-modes).
1787 ;; So, by default, only the session owner have permission to deal with files
1788 ;; generated by `printing'.
1789 (defcustom pr-file-modes ?\600
1790 "*Specify the file permission bits for newly created files.
1791
1792 It should be an integer; only the low 9 bits are used.
1793
1794 See also `pr-temp-dir' and `pr-ps-temp-file'."
1795 :type '(integer :tag "File Permission Bits")
1796 :version "21.3"
1797 :group 'printing)
1798
1799
1800 (defcustom pr-gv-command
1801 (if ps-windows-system
1802 "gsview32.exe"
1803 "gv")
1804 "*Specify path and name of the gsview/gv utility.
1805
1806 See also `pr-path-alist'.
1807
1808 Useful links:
1809
1810 * GNU gv manual
1811 `http://www.gnu.org/software/gv/manual/gv.html'
1812
1813 * GSview Help
1814 `http://www.cs.wisc.edu/~ghost/gsview/gsviewen.htm'
1815
1816 * GSview Help - Common Problems
1817 `http://www.cs.wisc.edu/~ghost/gsview/gsviewen.htm#Common_Problems'
1818
1819 * GSview Readme (compilation & installation)
1820 `http://www.cs.wisc.edu/~ghost/gsview/Readme.htm'
1821
1822 * GSview (main site)
1823 `http://www.cs.wisc.edu/~ghost/gsview/index.htm'
1824
1825 * Ghostscript, Ghostview and GSview
1826 `http://www.cs.wisc.edu/~ghost/'
1827
1828 * Ghostview
1829 `http://www.cs.wisc.edu/~ghost/gv/index.htm'
1830
1831 * gv 3.5, June 1997
1832 `http://www.cs.wisc.edu/~ghost/gv/gv_doc/gv.html'
1833
1834 * MacGSView (MacOS)
1835 `http://www.cs.wisc.edu/~ghost/macos/index.htm'
1836 "
1837 :type '(string :tag "Ghostview Utility")
1838 :version "20"
1839 :group 'printing)
1840
1841
1842 (defcustom pr-gs-command
1843 (if ps-windows-system
1844 "gswin32.exe"
1845 "gs")
1846 "*Specify path and name of the ghostscript utility.
1847
1848 See also `pr-path-alist'.
1849
1850 Useful links:
1851
1852 * Ghostscript, Ghostview and GSview
1853 `http://www.cs.wisc.edu/~ghost/'
1854
1855 * Introduction to Ghostscript
1856 `http://www.cs.wisc.edu/~ghost/doc/intro.htm'
1857
1858 * How to use Ghostscript
1859 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
1860
1861 * Printer compatibility
1862 `http://www.cs.wisc.edu/~ghost/doc/printer.htm'
1863 "
1864 :type '(string :tag "Ghostscript Utility")
1865 :version "20"
1866 :group 'printing)
1867
1868
1869 (defcustom pr-gs-switches
1870 (if ps-windows-system
1871 '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts")
1872 '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
1873 "*Specify ghostscript switches. See the documentation on GS for more info.
1874
1875 It's a list of strings, where each string is one or more ghostscript switches.
1876
1877 A note on the gs switches:
1878
1879 -q quiet
1880 -dNOPAUSE don't wait for user intervention
1881 -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts the directories needed for gs
1882 -c quit it's added at the end to terminate gs
1883
1884 To see ghostscript documentation for more information:
1885
1886 * On GNU or Unix system:
1887 - for full documentation, type: man gs
1888 - for brief documentation, type: gs -h
1889
1890 * On Windows system:
1891 - for full documentation, see in a browser the file
1892 c:/gstools/gs5.50/index.html, that is, the file index.html which is
1893 located in the same directory as gswin32.exe.
1894 - for brief documentation, type: gswin32.exe -h
1895
1896 Useful links:
1897
1898 * Introduction to Ghostscript
1899 `http://www.cs.wisc.edu/~ghost/doc/intro.htm'
1900
1901 * How to use Ghostscript
1902 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
1903
1904 * Printer compatibility
1905 `http://www.cs.wisc.edu/~ghost/doc/printer.htm'
1906 "
1907 :type '(repeat (string :tag "Ghostscript Switch"))
1908 :version "20"
1909 :group 'printing)
1910
1911
1912 (defcustom pr-gs-device
1913 (if ps-windows-system
1914 "mswinpr2"
1915 "uniprint")
1916 "*Specify the ghostscript device switch value (-sDEVICE=).
1917
1918 A note on the gs switches:
1919
1920 -sDEVICE=djet500 the printer - works with HP DeskJet 540
1921
1922 See `pr-gs-switches' for documentation.
1923 See also `pr-ps-printer-alist'."
1924 :type '(string :tag "Ghostscript Device")
1925 :version "20"
1926 :group 'printing)
1927
1928
1929 (defcustom pr-gs-resolution 300
1930 "*Specify ghostscript resolution switch value (-r).
1931
1932 A note on the gs switches:
1933
1934 -r300 resolution 300x300
1935
1936 See `pr-gs-switches' for documentation.
1937 See also `pr-ps-printer-alist'."
1938 :type '(integer :tag "Ghostscript Resolution")
1939 :version "20"
1940 :group 'printing)
1941
1942
1943 (defcustom pr-print-using-ghostscript nil
1944 "*Non-nil means print using ghostscript.
1945
1946 This is useful if you don't have a PostScript printer, so you could use the
1947 ghostscript to print a PostScript file.
1948
1949 In GNU or Unix system, if ghostscript is set as a PostScript filter, this
1950 variable should be nil."
1951 :type 'boolean
1952 :version "20"
1953 :group 'printing)
1954
1955
1956 (defcustom pr-faces-p nil
1957 "*Non-nil means print with face attributes."
1958 :type 'boolean
1959 :version "20"
1960 :group 'printing)
1961
1962
1963 (defcustom pr-spool-p nil
1964 "*Non-nil means spool printing in a buffer."
1965 :type 'boolean
1966 :version "20"
1967 :group 'printing)
1968
1969
1970 (defcustom pr-file-landscape nil
1971 "*Non-nil means print PostScript file in landscape orientation."
1972 :type 'boolean
1973 :version "20"
1974 :group 'printing)
1975
1976
1977 (defcustom pr-file-duplex nil
1978 "*Non-nil means print PostScript file in duplex mode."
1979 :type 'boolean
1980 :version "20"
1981 :group 'printing)
1982
1983
1984 (defcustom pr-file-tumble nil
1985 "*Non-nil means print PostScript file in tumble mode.
1986
1987 If tumble is off, produces a printing suitable for binding on the left or
1988 right.
1989 If tumble is on, produces a printing suitable for binding at the top or
1990 bottom."
1991 :type 'boolean
1992 :version "20"
1993 :group 'printing)
1994
1995
1996 (defcustom pr-auto-region t
1997 "*Non-nil means region is automagically detected.
1998
1999 Note that this will only work if you're using transient mark mode.
2000
2001 When this variable is non-nil, the `*-buffer*' commands will behave like
2002 `*-region*' commands, that is, `*-buffer*' commands will print only the region
2003 marked instead of all buffer."
2004 :type 'boolean
2005 :version "20"
2006 :group 'printing)
2007
2008
2009 (defcustom pr-auto-mode t
2010 "*Non-nil means major-mode specific printing is prefered over normal printing.
2011
2012 That is, if current major-mode is declared in `pr-mode-alist', the `*-buffer*'
2013 and `*-region*' commands will behave like `*-mode*' commands; otherwise,
2014 `*-buffer*' commands will print the current buffer and `*-region*' commands
2015 will print the current region."
2016 :type 'boolean
2017 :version "20"
2018 :group 'printing)
2019
2020
2021 (defcustom pr-mode-alist
2022 '((mh-folder-mode ; mh summary buffer
2023 pr-mh-lpr-1 pr-mh-print-1
2024 2
2025 (ps-article-author ps-article-subject)
2026 ("/pagenumberstring load" pr-article-date)
2027 nil
2028 )
2029 (mh-letter-mode ; mh letter buffer
2030 pr-mh-lpr-2 pr-mh-print-2
2031 2
2032 (ps-article-author ps-article-subject)
2033 ("/pagenumberstring load" pr-article-date)
2034 nil
2035 )
2036 (rmail-summary-mode ; rmail summary buffer
2037 pr-rmail-lpr pr-rmail-print
2038 3
2039 (ps-article-subject ps-article-author buffer-name)
2040 nil
2041 nil
2042 )
2043 (rmail-mode ; rmail buffer
2044 pr-rmail-lpr pr-rmail-print
2045 3
2046 (ps-article-subject ps-article-author buffer-name)
2047 nil
2048 nil
2049 )
2050 (gnus-summary-mode ; gnus summary buffer
2051 pr-gnus-lpr pr-gnus-print
2052 3
2053 (ps-article-subject ps-article-author gnus-newsgroup-name)
2054 nil
2055 nil
2056 )
2057 (gnus-article-mode ; gnus article buffer
2058 pr-gnus-lpr pr-gnus-print
2059 3
2060 (ps-article-subject ps-article-author gnus-newsgroup-name)
2061 nil
2062 nil
2063 )
2064 (Info-mode ; Info buffer
2065 pr-mode-lpr pr-mode-print
2066 2
2067 (ps-info-node ps-info-file)
2068 nil
2069 nil
2070 )
2071 (vm-mode ; vm mode
2072 pr-vm-lpr pr-vm-print
2073 3
2074 (ps-article-subject ps-article-author buffer-name)
2075 nil
2076 nil
2077 )
2078 )
2079 "*Specify an alist for a major-mode and printing functions.
2080
2081 To customize a major mode printing, just declare the customization in
2082 `pr-mode-alist' and invoke some of `*-mode*' commands. An example for major
2083 mode usage is when you're using gnus (or mh, or rmail, etc.) and you're in the
2084 *Summary* buffer, if you forget to switch to the *Article* buffer before
2085 printing, you'll get a nicely formatted list of article subjects shows up at
2086 the printer. With major mode printing you don't need to switch from gnus
2087 *Summary* buffer first.
2088
2089 The elements have the following form:
2090
2091 (MAJOR-MODE
2092 LPR-PRINT PS-PRINT
2093 HEADER-LINES
2094 LEFT-HEADER
2095 RIGHT-HEADER
2096 KILL-LOCAL-VARIABLE
2097 DEFAULT...)
2098
2099 Where:
2100
2101 MAJOR-MODE It's the major mode symbol.
2102
2103 LPR-PRINT It's a symbol function for text printing. It's invoked with
2104 one argument:
2105 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
2106
2107 Usually LPR-PRINT function prepares the environment or buffer
2108 and then call the function `pr-mode-lpr' which it's used to
2109 process the buffer and send it to text printer.
2110
2111 The `pr-mode-lpr' definition is:
2112
2113 (pr-mode-lpr HEADER-LIST &optional FROM TO)
2114
2115 Where HEADER-LIST is like the argument passed to LPR-PRINT.
2116 FROM and TO are the beginning and end markers, respectively,
2117 for a region. If FROM is nil, it's used (point-min); if TO is
2118 nil, it's used (point-max).
2119
2120 PS-PRINT It's a symbol function for PostScript printing. It's invoked
2121 with 3 arguments: n-up printing, file name and the list:
2122 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
2123
2124 Usually PS-PRINT function prepares the environment or buffer
2125 and then call the function `pr-mode-print' which it's used to
2126 process the buffer and send it to PostScript printer.
2127
2128 The `pr-mode-print' definition is:
2129
2130 (pr-mode-print N-UP FILENAME HEADER-LIST &optional FROM TO)
2131
2132 Where N-UP, FILENAME and HEADER-LIST are like the arguments
2133 passed to PS-PRINT. FROM and TO are the beginning and end
2134 markers, respectively, for a region. If TO is nil, it's used
2135 (point-max).
2136
2137 HEADER-LINES It's the number of header lines; if is nil, it uses
2138 `ps-header-lines' value.
2139
2140 LEFT-HEADER It's the left header part, it's a list of string, variable
2141 symbol or function symbol (with no argument); if is nil, it
2142 uses `ps-left-header' value.
2143
2144 RIGHT-HEADER It's the right header part, it's a list of string, variable
2145 symbol or function symbol (with no argument); if is nil, it
2146 uses `ps-right-header' value.
2147
2148 KILL-LOCAL-VARIABLE
2149 Non-nil means to kill all buffer local variable declared in
2150 DEFAULT (see below).
2151
2152 DEFAULT It's a way to set default values when this entry is selected.
2153 It's a cons like:
2154
2155 (VARIABLE-SYM . VALUE)
2156
2157 That associates VARIABLE-SYM with VALUE. when this entry is
2158 selected, it's executed the following command:
2159
2160 (set (make-local-variable VARIABLE-SYM) (eval VALUE))
2161
2162 Note that VALUE can be any valid lisp expression. So, don't
2163 forget to quote symbols and constant lists.
2164 If VARIABLE is the special keyword `inherits-from:', VALUE must
2165 be a symbol name setting defined in `pr-setting-database' from
2166 which the current setting inherits the context. Take care with
2167 circular inheritance.
2168 Examples:
2169 '(ps-landscape-mode . nil)
2170 '(ps-spool-duplex . t)
2171 '(pr-gs-device . (my-gs-device t))"
2172 :type '(repeat
2173 (list
2174 :tag ""
2175 (symbol :tag "Major Mode")
2176 (function :tag "Text Printing Function")
2177 (function :tag "PS Printing Function")
2178 (choice :menu-tag "Number of Header Lines"
2179 :tag "Number of Header Lines"
2180 (integer :tag "Number")
2181 (const :tag "Default Number" nil))
2182 (repeat :tag "Left Header List"
2183 (choice :menu-tag "Left Header"
2184 :tag "Left Header"
2185 string symbol))
2186 (repeat :tag "Right Header List"
2187 (choice :menu-tag "Right Header"
2188 :tag "Right Header"
2189 string symbol))
2190 (boolean :tag "Kill Local Variable At End")
2191 (repeat
2192 :tag "Default Value List"
2193 :inline t
2194 (cons
2195 :tag ""
2196 (choice
2197 :menu-tag "Variable"
2198 :tag "Variable"
2199 (const :tag "Landscape" ps-landscape-mode)
2200 (const :tag "Print Header" ps-print-header)
2201 (const :tag "Print Header Frame" ps-print-header-frame)
2202 (const :tag "Line Number" ps-line-number)
2203 (const :tag "Zebra Stripes" ps-zebra-stripes)
2204 (const :tag "Duplex" ps-spool-duplex)
2205 (const :tag "Tumble" ps-spool-tumble)
2206 (const :tag "Upside-Down" ps-print-upside-down)
2207 (const :tag "PS File Landscape" pr-file-landscape)
2208 (const :tag "PS File Duplex" pr-file-duplex)
2209 (const :tag "PS File Tumble" pr-file-tumble)
2210 (const :tag "Auto Region" pr-auto-region)
2211 (const :tag "Auto Mode" pr-auto-mode)
2212 (const :tag "Ghostscript Device" pr-gs-device)
2213 (const :tag "Ghostscript Resolution" pr-gs-resolution)
2214 (const :tag "inherits-from:" inherits-from:)
2215 (variable :tag "Other"))
2216 (sexp :tag "Value")))
2217 ))
2218 :version "20"
2219 :group 'printing)
2220
2221
2222 (defcustom pr-ps-utility 'mpage
2223 "*Specify PostScript utility symbol.
2224
2225 This utility symbol should be defined on `pr-ps-utility-alist' (see it for
2226 documentation).
2227
2228 This variable should be modified by customization engine. If this variable is
2229 modified by other means (for example, a lisp function), use `pr-update-menus'
2230 function (see it for documentation) to update PostScript utility menu.
2231
2232 NOTE: Don't forget to download and install the utilities declared on
2233 `pr-ps-utility-alist'."
2234 :type '(symbol :tag "PS File Utility")
2235 :set 'pr-ps-utility-custom-set
2236 :version "20"
2237 :group 'printing)
2238
2239
2240 (defcustom pr-ps-utility-alist
2241 '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
2242 (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
2243 (inherits-from: . no-duplex))
2244 )
2245 ;; Examples:
2246 ;; * On GNU or Unix system:
2247 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
2248 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
2249 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
2250 ;; )
2251 ;; * On Windows system:
2252 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
2253 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
2254 ;; )
2255 "*Specify an alist for PostScript utility processing (PS utility database).
2256
2257 The alist element has the form:
2258
2259 (SYMBOL UTILITY MUST-SWITCHES PAPERSIZE N-UP LANDSCAPE DUPLEX TUMBLE OUTPUT
2260 SWITCHES DEFAULT...)
2261
2262 Where:
2263
2264 SYMBOL It's a symbol to identify a PostScript utility. It's for
2265 `pr-ps-utility' variable setting and for menu selection.
2266 Examples:
2267 'mpage
2268 'psnup
2269
2270 UTILITY Name of utility for processing a PostScript file.
2271 See also `pr-path-alist'.
2272 Examples:
2273 . for GNU or Unix system:
2274 \"mpage\"
2275 \"psnup -q\"
2276
2277 . for Windows system:
2278 \"c:/psutils/psnup -q\"
2279
2280 MUST-SWITCHES List of sexp's to pass as options to the PostScript utility
2281 program. These options are necessary to process the utility
2282 program and must be placed before any other switches.
2283 Example:
2284 . for psnup:
2285 '(\"-q\")
2286
2287 PAPERSIZE It's a format string to specify paper size switch.
2288 Example:
2289 . for mpage
2290 \"-b%s\"
2291
2292 N-UP It's a format string to specify n-up switch.
2293 Example:
2294 . for psnup
2295 \"-%d\"
2296
2297 LANDSCAPE It's a string to specify landscape switch. If the utility
2298 doesn't have landscape switch, set to nil.
2299 Example:
2300 . for psnup
2301 \"-l\"
2302
2303 DUPLEX It's a string to specify duplex switch. If the utility doesn't
2304 have duplex switch, set to nil.
2305 Example:
2306 . for psnup
2307 nil
2308
2309 TUMBLE It's a string to specify tumble switch. If the utility doesn't
2310 have tumble switch, set to nil.
2311 Example:
2312 . for psnup
2313 nil
2314
2315 OUTPUT It's a string to specify how to generate an output file. Some
2316 utilities accept an output file option, but some others need
2317 output redirection or some other way to specify an output file.
2318 Example:
2319 . for psnup
2320 \" \" ; psnup ... input output
2321
2322 . for mpage
2323 \">\" ; mpage ... input > output
2324
2325 SWITCHES List of sexp's to pass as extra options to the PostScript utility
2326 program.
2327 Example:
2328 . for psnup
2329 '(\"-q\")
2330 nil
2331
2332 DEFAULT It's a way to set default values when this entry is selected.
2333 It's a cons like:
2334
2335 (VARIABLE . VALUE)
2336
2337 That associates VARIABLE with VALUE. when this entry is
2338 selected, it's executed the following command:
2339
2340 (set VARIABLE (eval VALUE))
2341
2342 Note that VALUE can be any valid lisp expression. So, don't
2343 forget to quote symbols and constant lists.
2344 If VARIABLE is the special keyword `inherits-from:', VALUE must
2345 be a symbol name setting defined in `pr-setting-database' from
2346 which the current setting inherits the context. Take care with
2347 circular inheritance.
2348 Examples:
2349 '(pr-file-landscape . nil)
2350 '(pr-file-duplex . t)
2351 '(pr-gs-device . (my-gs-device t))
2352
2353 This variable should be modified by customization engine. If this variable is
2354 modified by other means (for example, a lisp function), use `pr-update-menus'
2355 function (see it for documentation) to update PostScript utility menu.
2356
2357 NOTE: Don't forget to download and install the utilities declared on
2358 `pr-ps-utility-alist'.
2359
2360 Examples:
2361
2362 * On GNU or Unix system:
2363
2364 '((mpage \"mpage\" nil \"-b%s\" \"-%d\" \"-l\" \"-t\" \"-T\" \">\" nil)
2365 (psnup \"psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" nil
2366 (pr-file-duplex . nil) (pr-file-tumble . nil))
2367 )
2368
2369 * On Windows system:
2370
2371 '((psnup \"c:/psutils/psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \"
2372 nil (pr-file-duplex . nil) (pr-file-tumble . nil))
2373 )
2374
2375 Useful links:
2376
2377 * mpage download (GNU or Unix)
2378 `http://www.mesa.nl/pub/mpage/'
2379
2380 * mpage documentation (GNU or Unix - or type `man mpage')
2381 `http://www.cs.umd.edu/faq/guides/manual_unix/node48.html'
2382 `http://www.rt.com/man/mpage.1.html'
2383
2384 * psnup (Windows, GNU or Unix)
2385 `http://www.knackered.org/angus/psutils/'
2386 `http://gershwin.ens.fr/vdaniel/Doc-Locale/Outils-Gnu-Linux/PsUtils/'
2387
2388 * psnup (PsUtils for Windows)
2389 `http://gnuwin32.sourceforge.net/packages/psutils.htm'
2390
2391 * psnup documentation (GNU or Unix - or type `man psnup')
2392 `http://linux.about.com/library/cmd/blcmdl1_psnup.htm'
2393 `http://amath.colorado.edu/computing/software/man/psnup.html'
2394
2395 * GNU Enscript (Windows, GNU or Unix)
2396 `http://people.ssh.com/mtr/genscript/'
2397
2398 * GNU Enscript documentation (Windows, GNU or Unix)
2399 `http://people.ssh.com/mtr/genscript/enscript.man.html'
2400 (on GNU or Unix, type `man enscript')
2401 "
2402 :type '(repeat
2403 (list :tag "PS File Utility"
2404 (symbol :tag "Utility Symbol")
2405 (string :tag "Utility Name")
2406 (repeat :tag "Must Utility Switches"
2407 (sexp :tag "Switch" :value ""))
2408 (choice :menu-tag "Paper Size"
2409 :tag "Paper Size"
2410 (const :tag "No Paper Size" nil)
2411 (string :tag "Paper Size Format"))
2412 (choice :menu-tag "N-Up"
2413 :tag "N-Up"
2414 (const :tag "No N-Up" nil)
2415 (string :tag "N-Up Format"))
2416 (choice :menu-tag "Landscape"
2417 :tag "Landscape"
2418 (const :tag "No Landscape" nil)
2419 (string :tag "Landscape Switch"))
2420 (choice :menu-tag "Duplex"
2421 :tag "Duplex"
2422 (const :tag "No Duplex" nil)
2423 (string :tag "Duplex Switch"))
2424 (choice :menu-tag "Tumble"
2425 :tag "Tumble"
2426 (const :tag "No Tumble" nil)
2427 (string :tag "Tumble Switch"))
2428 (string :tag "Output Separator")
2429 (repeat :tag "Utility Switches"
2430 (sexp :tag "Switch" :value ""))
2431 (repeat
2432 :tag "Default Value List"
2433 :inline t
2434 (cons
2435 :tag ""
2436 (choice
2437 :menu-tag "Variable"
2438 :tag "Variable"
2439 (const :tag "PS File Landscape" pr-file-landscape)
2440 (const :tag "PS File Duplex" pr-file-duplex)
2441 (const :tag "PS File Tumble" pr-file-tumble)
2442 (const :tag "Ghostscript Device" pr-gs-device)
2443 (const :tag "Ghostscript Resolution" pr-gs-resolution)
2444 (const :tag "inherits-from:" inherits-from:)
2445 (variable :tag "Other"))
2446 (sexp :tag "Value")))
2447 ))
2448 :set 'pr-alist-custom-set
2449 :version "20"
2450 :group 'printing)
2451
2452
2453 (defcustom pr-menu-lock t
2454 "*Non-nil means menu is locked while selecting toggle options.
2455
2456 See also `pr-menu-char-height' and `pr-menu-char-width'."
2457 :type 'boolean
2458 :version "20"
2459 :group 'printing)
2460
2461
2462 (defcustom pr-menu-char-height
2463 (cond ((featurep 'xemacs) ; XEmacs
2464 (pr-x-font-height (face-font 'default)))
2465 (t ; GNU Emacs
2466 (pr-e-frame-char-height)))
2467 "*Specify menu char height in pixels.
2468
2469 This variable is used to guess which vertical position should be locked the
2470 menu, so don't forget to adjust it if menu position is not ok.
2471
2472 See also `pr-menu-lock' and `pr-menu-char-width'."
2473 :type 'integer
2474 :version "20"
2475 :group 'printing)
2476
2477
2478 (defcustom pr-menu-char-width
2479 (cond ((featurep 'xemacs) ; XEmacs
2480 (pr-x-font-width (face-font 'default)))
2481 (t ; GNU Emacs
2482 (pr-e-frame-char-width)))
2483 "*Specify menu char width in pixels.
2484
2485 This variable is used to guess which horizontal position should be locked the
2486 menu, so don't forget to adjust it if menu position is not ok.
2487
2488 See also `pr-menu-lock' and `pr-menu-char-height'."
2489 :type 'integer
2490 :version "20"
2491 :group 'printing)
2492
2493
2494 (defcustom pr-setting-database
2495 '((no-duplex ; setting symbol name
2496 nil nil nil ; inherits local kill-local
2497 (pr-file-duplex . nil) ; settings
2498 (pr-file-tumble . nil))
2499 )
2500 "*Specify an alist for settings in general.
2501
2502 The elements have the following form:
2503
2504 (SYMBOL INHERITS LOCAL KILL-LOCAL SETTING...)
2505
2506 Where:
2507
2508 SYMBOL It's a symbol to identify the setting group.
2509
2510 INHERITS Specify the inheritance for SYMBOL group. It's a symbol name
2511 setting from which the current setting inherits the context.
2512 If INHERITS is nil, means that there is no inheritance.
2513 This is a simple inheritance mechanism.
2514
2515 Let's see an example to illustrate the inheritance mechanism:
2516
2517 (setq pr-setting-database
2518 '((no-duplex ; setting symbol name
2519 nil ; inherits
2520 nil nil ; local kill-local
2521 (pr-file-duplex . nil) ; settings
2522 (pr-file-tumble . nil)
2523 )
2524 (no-duplex-and-landscape ; setting symbol name
2525 no-duplex ; inherits
2526 nil nil ; local kill-local
2527 (pr-file-landscape . nil) ; settings
2528 )))
2529
2530 The example above has two setting groups: no-duplex and
2531 no-duplex-and-landscape. When setting no-duplex is activated
2532 through `inherits-from:' (see `pr-ps-utility', `pr-mode-alist'
2533 and `pr-ps-printer-alist'), the variables pr-file-duplex and
2534 pr-file-tumble are both set to nil.
2535
2536 Now when setting no-duplex-and-landscape is activated through
2537 `inherits-from:', the variable pr-file-landscape is set to nil
2538 and also the settings for no-duplex are done, because
2539 no-duplex-and-landscape inherits settings from no-duplex.
2540
2541 Take care with circular inheritance. It's an error if circular
2542 inheritance happens.
2543
2544 LOCAL Non-nil means that all settings for SYMBOL group will be
2545 declared local buffer.
2546
2547 KILL-LOCAL Non-nil means that all settings for SYMBOL group will be
2548 killed at end. It has effect only when LOCAL is non-nil.
2549
2550 SETTING It's a cons like:
2551
2552 (VARIABLE . VALUE)
2553
2554 That associates VARIABLE with VALUE. when this entry is
2555 selected, it's executed the following command:
2556
2557 * If LOCAL is non-nil:
2558 (set (make-local-variable VARIABLE) (eval VALUE))
2559
2560 * If LOCAL is nil:
2561 (set VARIABLE (eval VALUE))
2562
2563 Note that VALUE can be any valid lisp expression. So, don't
2564 forget to quote symbols and constant lists.
2565 This setting is ignored if VARIABLE is equal to keyword
2566 `inherits-from:'.
2567 Examples:
2568 '(ps-landscape-mode . nil)
2569 '(ps-spool-duplex . t)
2570 '(pr-gs-device . (my-gs-device t))"
2571 :type '(repeat
2572 (list
2573 :tag ""
2574 (symbol :tag "Setting Name")
2575 (choice :menu-tag "Inheritance"
2576 :tag "Inheritance"
2577 (const :tag "No Inheritance" nil)
2578 (symbol :tag "Inherits From"))
2579 (boolean :tag "Local Buffer Setting")
2580 (boolean :tag "Kill Local Variable At End")
2581 (repeat
2582 :tag "Setting List"
2583 :inline t
2584 (cons
2585 :tag ""
2586 (choice
2587 :menu-tag "Variable"
2588 :tag "Variable"
2589 (const :tag "Landscape" ps-landscape-mode)
2590 (const :tag "Print Header" ps-print-header)
2591 (const :tag "Print Header Frame" ps-print-header-frame)
2592 (const :tag "Line Number" ps-line-number)
2593 (const :tag "Zebra Stripes" ps-zebra-stripes)
2594 (const :tag "Duplex" ps-spool-duplex)
2595 (const :tag "Tumble" ps-spool-tumble)
2596 (const :tag "Upside-Down" ps-print-upside-down)
2597 (const :tag "PS File Landscape" pr-file-landscape)
2598 (const :tag "PS File Duplex" pr-file-duplex)
2599 (const :tag "PS File Tumble" pr-file-tumble)
2600 (const :tag "Auto Region" pr-auto-region)
2601 (const :tag "Auto Mode" pr-auto-mode)
2602 (const :tag "Ghostscript Device" pr-gs-device)
2603 (const :tag "Ghostscript Resolution" pr-gs-resolution)
2604 (variable :tag "Other"))
2605 (sexp :tag "Value")))
2606 ))
2607 :version "20"
2608 :group 'printing)
2609
2610
2611 (defcustom pr-visible-entry-list
2612 '(postscript text postscript-options postscript-process printing help)
2613 "*Specify a list of Printing menu visible entries.
2614
2615 Valid values with the corresponding menu parts are:
2616
2617 +------------------------------+
2618 | Printing Interface |
2619 +------------------------------+
2620 `postscript' | PostScript Preview >|
2621 | PostScript Print >|
2622 | PostScript Printer: name >|
2623 +------------------------------+
2624 `text' | Printify >|
2625 | Print >|
2626 | Text Printer: name >|
2627 +------------------------------+
2628 `postscript-options' |[ ] Landscape |
2629 |[ ] Print Header |
2630 |[ ] Print Header Frame |
2631 |[ ] Line Number |
2632 |[ ] Zebra Stripes |
2633 |[ ] Duplex |
2634 |[ ] Tumble |
2635 |[ ] Upside-Down |
2636 | Print All Pages >|
2637 +------------------------------+
2638 `postscript-process' |[ ] Spool Buffer |
2639 |[ ] Print with faces |
2640 |[ ] Print via Ghostscript |
2641 +------------------------------+
2642 `printing' |[ ] Auto Region |
2643 |[ ] Auto Mode |
2644 |[ ] Menu Lock |
2645 +------------------------------+
2646 `help' | Customize >|
2647 | Show Settings >|
2648 | Help |
2649 +------------------------------+
2650
2651 Any other value is ignored."
2652 :type '(repeat :tag "Menu Visible Part"
2653 (choice :menu-tag "Menu Part"
2654 :tag "Menu Part"
2655 (const postscript)
2656 (const text)
2657 (const postscript-options)
2658 (const postscript-process)
2659 (const printing)
2660 (const help)))
2661 :version "20"
2662 :group 'printing)
2663
2664
2665 (defcustom pr-delete-temp-file t
2666 "*Non-nil means delete temporary files.
2667
2668 Set `pr-delete-temp-file' to nil, if the following message (or a similar)
2669 happens when printing:
2670
2671 Error: could not open \"c:\\temp\\prspool.ps\" for reading."
2672 :type 'boolean
2673 :version "20"
2674 :group 'printing)
2675
2676
2677 (defcustom pr-list-directory nil
2678 "*Non-nil means list directory when processing a directory.
2679
2680 That is, any subdirectories (and the superdirectory) of the directory (given as
2681 argument of functions below) are also printed (as dired-mode listings).
2682
2683 It's used by `pr-ps-directory-preview', `pr-ps-directory-using-ghostscript',
2684 `pr-ps-directory-print', `pr-ps-directory-ps-print', `pr-printify-directory'
2685 and `pr-txt-directory'."
2686 :type 'boolean
2687 :version "20"
2688 :group 'printing)
2689
2690
2691 (defcustom pr-buffer-name "*Printing Interface*"
2692 "*Specify the name of the buffer interface for printing package.
2693
2694 It's used by `pr-interface'."
2695 :type 'string
2696 :version "20"
2697 :group 'printing)
2698
2699
2700 (defcustom pr-buffer-name-ignore
2701 (list (regexp-quote pr-buffer-name) ; ignore printing interface buffer
2702 "^ .*$") ; ignore invisible buffers
2703 "*Specify a regexp list for buffer names to be ignored in interface buffer.
2704
2705 NOTE: Case is important for matching, that is, `case-fold-search' is always
2706 nil.
2707
2708 It's used by `pr-interface'."
2709 :type '(repeat (regexp :tag "Buffer Name Regexp"))
2710 :version "20"
2711 :group 'printing)
2712
2713
2714 (defcustom pr-buffer-verbose t
2715 "*Non-nil means to be verbose when editing a field in interface buffer.
2716
2717 It's used by `pr-interface'."
2718 :type 'boolean
2719 :version "20"
2720 :group 'printing)
2721
2722
2723 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2724 ;; Internal Variables
2725
2726
2727 (defvar pr-txt-command nil
2728 "Name of program for printing a text file.
2729 See `pr-txt-printer-alist'.")
2730
2731
2732 (defvar pr-txt-switches nil
2733 "List of sexp's to pass as extra options to the text printer program.
2734 See `pr-txt-printer-alist'.")
2735
2736
2737 (defvar pr-txt-printer nil
2738 "Specify text printer name.
2739 See `pr-txt-printer-alist'.")
2740
2741
2742 (defvar pr-ps-command nil
2743 "Name of program for printing a PostScript file.
2744 See `pr-ps-printer-alist'.")
2745
2746
2747 (defvar pr-ps-switches nil
2748 "List of sexp's to pass as extra options to the PostScript printer program.
2749 See `pr-ps-printer-alist'.")
2750
2751
2752 (defvar pr-ps-printer-switch nil
2753 "Specify PostScript printer name switch.
2754 See `pr-ps-printer-alist'.")
2755
2756
2757 (defvar pr-ps-printer nil
2758 "Specify PostScript printer name.
2759 See `pr-ps-printer-alist'.")
2760
2761
2762 (defvar pr-menu-bar nil
2763 "Specify Printing menu-bar entry.")
2764
2765
2766 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2767 ;; Macros
2768
2769
2770 (defmacro pr-save-file-modes (&rest body)
2771 "Set temporally file modes to `pr-file-modes'."
2772 `(let ((pr--default-file-modes (default-file-modes))) ; save default
2773 (set-default-file-modes pr-file-modes)
2774 ,@body
2775 (set-default-file-modes pr--default-file-modes))) ; restore default
2776
2777
2778 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2779 ;; Keys & Menus
2780
2781
2782 (defmacro pr-xemacs-global-menubar (&rest body)
2783 `(save-excursion
2784 (let ((temp (get-buffer-create (make-temp-name " *Temp"))))
2785 ;; be sure to access global menubar
2786 (set-buffer temp)
2787 ,@body
2788 (kill-buffer temp))))
2789
2790
2791 (defsubst pr-visible-p (key)
2792 (memq key pr-visible-entry-list))
2793
2794
2795 (defsubst pr-mode-alist-p ()
2796 (cdr (assq major-mode pr-mode-alist)))
2797
2798
2799 (defsubst pr-auto-mode-p ()
2800 (and pr-auto-mode (pr-mode-alist-p)))
2801
2802
2803 (defsubst pr-using-ghostscript-p ()
2804 (and pr-print-using-ghostscript (not pr-spool-p)))
2805
2806
2807 (defun pr-get-symbol (name)
2808 (easy-menu-intern name))
2809
2810 (cond
2811 ((featurep 'xemacs) ; XEmacs
2812 (defvar zmacs-region-stays nil) ; to avoid compilation gripes
2813 (defun pr-region-active-p ()
2814 (and pr-auto-region (not zmacs-region-stays) (ps-mark-active-p))))
2815
2816 (t ; GNU Emacs
2817 (defun pr-region-active-p ()
2818 (and pr-auto-region transient-mark-mode mark-active))))
2819
2820
2821 (defconst pr-menu-spec
2822 ;; Menu mapping:
2823 ;; unfortunately XEmacs doesn't support :active for submenus,
2824 ;; only for items.
2825 ;; So, it uses :included instead of :active.
2826 ;; Also, XEmacs doesn't support :help tag.
2827 (let ((pr-:active (if (featurep 'xemacs)
2828 :included ; XEmacs
2829 :active)) ; GNU Emacs
2830 (pr-:help (if (featurep 'xemacs)
2831 'ignore ; XEmacs
2832 #'(lambda (text) (list :help text))))) ; GNU Emacs
2833 `(
2834 ["Printing Interface" pr-interface
2835 ,@(funcall
2836 pr-:help "Use buffer interface instead of menu interface")]
2837 "--"
2838 ("PostScript Preview" :included (pr-visible-p 'postscript)
2839 ,@(funcall
2840 pr-:help "Preview PostScript instead of sending to printer")
2841 ("Directory" ,pr-:active (not pr-spool-p)
2842 ["1-up" (pr-ps-directory-preview 1 nil nil t) t]
2843 ["2-up" (pr-ps-directory-preview 2 nil nil t) t]
2844 ["4-up" (pr-ps-directory-preview 4 nil nil t) t]
2845 ["Other..." (pr-ps-directory-preview nil nil nil t)
2846 :keys "\\[pr-ps-buffer-preview]"])
2847 ("Buffer" ,pr-:active (not pr-spool-p)
2848 ["1-up" (pr-ps-buffer-preview 1 t) t]
2849 ["2-up" (pr-ps-buffer-preview 2 t) t]
2850 ["4-up" (pr-ps-buffer-preview 4 t) t]
2851 ["Other..." (pr-ps-buffer-preview nil t)
2852 :keys "\\[pr-ps-buffer-preview]"])
2853 ("Region" ,pr-:active (and (not pr-spool-p) (ps-mark-active-p))
2854 ["1-up" (pr-ps-region-preview 1 t) t]
2855 ["2-up" (pr-ps-region-preview 2 t) t]
2856 ["4-up" (pr-ps-region-preview 4 t) t]
2857 ["Other..." (pr-ps-region-preview nil t)
2858 :keys "\\[pr-ps-region-preview]"])
2859 ("Mode" ,pr-:active (and (not pr-spool-p) (pr-mode-alist-p))
2860 ["1-up" (pr-ps-mode-preview 1 t) t]
2861 ["2-up" (pr-ps-mode-preview 2 t) t]
2862 ["4-up" (pr-ps-mode-preview 4 t) t]
2863 ["Other..." (pr-ps-mode-preview nil t)
2864 :keys "\\[pr-ps-mode-preview]"])
2865 ("File"
2866 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview)
2867 :keys "\\[pr-ps-file-preview]"
2868 ,@(funcall
2869 pr-:help "Preview PostScript file")]
2870 "--"
2871 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
2872 ,@(funcall
2873 pr-:help "Select PostScript utility")]
2874 "--"
2875 ["1-up..." (pr-ps-file-up-preview 1 t t) pr-ps-utility-alist]
2876 ["2-up..." (pr-ps-file-up-preview 2 t t) pr-ps-utility-alist]
2877 ["4-up..." (pr-ps-file-up-preview 4 t t) pr-ps-utility-alist]
2878 ["Other..." (pr-ps-file-up-preview nil t t)
2879 :keys "\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist]
2880 "--"
2881 ["Landscape" pr-toggle-file-landscape-menu
2882 :style toggle :selected pr-file-landscape
2883 ,@(funcall
2884 pr-:help "Toggle landscape for PostScript file")
2885 :active pr-ps-utility-alist]
2886 ["Duplex" pr-toggle-file-duplex-menu
2887 :style toggle :selected pr-file-duplex
2888 ,@(funcall
2889 pr-:help "Toggle duplex for PostScript file")
2890 :active pr-ps-utility-alist]
2891 ["Tumble" pr-toggle-file-tumble-menu
2892 :style toggle :selected pr-file-tumble
2893 ,@(funcall
2894 pr-:help "Toggle tumble for PostScript file")
2895 :active (and pr-file-duplex pr-ps-utility-alist)])
2896 ["Despool..." (call-interactively 'pr-despool-preview)
2897 :active pr-spool-p :keys "\\[pr-despool-preview]"
2898 ,@(funcall
2899 pr-:help "Despool PostScript buffer to printer or file (C-u)")])
2900 ("PostScript Print" :included (pr-visible-p 'postscript)
2901 ,@(funcall
2902 pr-:help "Send PostScript to printer or file (C-u)")
2903 ("Directory"
2904 ["1-up" (pr-ps-directory-ps-print 1 nil nil t) t]
2905 ["2-up" (pr-ps-directory-ps-print 2 nil nil t) t]
2906 ["4-up" (pr-ps-directory-ps-print 4 nil nil t) t]
2907 ["Other..." (pr-ps-directory-ps-print nil nil nil t)
2908 :keys "\\[pr-ps-buffer-ps-print]"])
2909 ("Buffer"
2910 ["1-up" (pr-ps-buffer-ps-print 1 t) t]
2911 ["2-up" (pr-ps-buffer-ps-print 2 t) t]
2912 ["4-up" (pr-ps-buffer-ps-print 4 t) t]
2913 ["Other..." (pr-ps-buffer-ps-print nil t)
2914 :keys "\\[pr-ps-buffer-ps-print]"])
2915 ("Region" ,pr-:active (ps-mark-active-p)
2916 ["1-up" (pr-ps-region-ps-print 1 t) t]
2917 ["2-up" (pr-ps-region-ps-print 2 t) t]
2918 ["4-up" (pr-ps-region-ps-print 4 t) t]
2919 ["Other..." (pr-ps-region-ps-print nil t)
2920 :keys "\\[pr-ps-region-ps-print]"])
2921 ("Mode" ,pr-:active (pr-mode-alist-p)
2922 ["1-up" (pr-ps-mode-ps-print 1 t) t]
2923 ["2-up" (pr-ps-mode-ps-print 2 t) t]
2924 ["4-up" (pr-ps-mode-ps-print 4 t) t]
2925 ["Other..." (pr-ps-mode-ps-print nil t)
2926 :keys "\\[pr-ps-mode-ps-print]"])
2927 ("File"
2928 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print)
2929 :keys "\\[pr-ps-file-ps-print]"
2930 ,@(funcall
2931 pr-:help "Send PostScript file to printer")]
2932 "--"
2933 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
2934 ,@(funcall
2935 pr-:help "Select PostScript utility")]
2936 "--"
2937 ["1-up..." (pr-ps-file-up-ps-print 1 t t) pr-ps-utility-alist]
2938 ["2-up..." (pr-ps-file-up-ps-print 2 t t) pr-ps-utility-alist]
2939 ["4-up..." (pr-ps-file-up-ps-print 4 t t) pr-ps-utility-alist]
2940 ["Other..." (pr-ps-file-up-ps-print nil t t)
2941 :keys "\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist]
2942 "--"
2943 ["Landscape" pr-toggle-file-landscape-menu
2944 :style toggle :selected pr-file-landscape
2945 ,@(funcall
2946 pr-:help "Toggle landscape for PostScript file")
2947 :active pr-ps-utility-alist]
2948 ["Duplex" pr-toggle-file-duplex-menu
2949 :style toggle :selected pr-file-duplex
2950 ,@(funcall
2951 pr-:help "Toggle duplex for PostScript file")
2952 :active pr-ps-utility-alist]
2953 ["Tumble" pr-toggle-file-tumble-menu
2954 :style toggle :selected pr-file-tumble
2955 ,@(funcall
2956 pr-:help "Toggle tumble for PostScript file")
2957 :active (and pr-file-duplex pr-ps-utility-alist)])
2958 ["Despool..." (call-interactively 'pr-despool-ps-print)
2959 :active pr-spool-p :keys "\\[pr-despool-ps-print]"
2960 ,@(funcall
2961 pr-:help "Despool PostScript buffer to printer or file (C-u)")])
2962 ["PostScript Printers" pr-update-menus
2963 :active pr-ps-printer-alist :included (pr-visible-p 'postscript)
2964 ,@(funcall
2965 pr-:help "Select PostScript printer")]
2966 "--"
2967 ("Printify" :included (pr-visible-p 'text)
2968 ,@(funcall
2969 pr-:help
2970 "Replace non-printing chars with printable representations.")
2971 ["Directory" pr-printify-directory t]
2972 ["Buffer" pr-printify-buffer t]
2973 ["Region" pr-printify-region (ps-mark-active-p)])
2974 ("Print" :included (pr-visible-p 'text)
2975 ,@(funcall
2976 pr-:help "Send text to printer")
2977 ["Directory" pr-txt-directory t]
2978 ["Buffer" pr-txt-buffer t]
2979 ["Region" pr-txt-region (ps-mark-active-p)]
2980 ["Mode" pr-txt-mode (pr-mode-alist-p)])
2981 ["Text Printers" pr-update-menus
2982 :active pr-txt-printer-alist :included (pr-visible-p 'text)
2983 ,@(funcall
2984 pr-:help "Select text printer")]
2985 "--"
2986 ["Landscape" pr-toggle-landscape-menu
2987 :style toggle :selected ps-landscape-mode
2988 :included (pr-visible-p 'postscript-options)]
2989 ["Print Header" pr-toggle-header-menu
2990 :style toggle :selected ps-print-header
2991 :included (pr-visible-p 'postscript-options)]
2992 ["Print Header Frame" pr-toggle-header-frame-menu
2993 :style toggle :selected ps-print-header-frame :active ps-print-header
2994 :included (pr-visible-p 'postscript-options)]
2995 ["Line Number" pr-toggle-line-menu
2996 :style toggle :selected ps-line-number
2997 :included (pr-visible-p 'postscript-options)]
2998 ["Zebra Stripes" pr-toggle-zebra-menu
2999 :style toggle :selected ps-zebra-stripes
3000 :included (pr-visible-p 'postscript-options)]
3001 ["Duplex" pr-toggle-duplex-menu
3002 :style toggle :selected ps-spool-duplex
3003 :included (pr-visible-p 'postscript-options)]
3004 ["Tumble" pr-toggle-tumble-menu
3005 :style toggle :selected ps-spool-tumble :active ps-spool-duplex
3006 :included (pr-visible-p 'postscript-options)]
3007 ["Upside-Down" pr-toggle-upside-down-menu
3008 :style toggle :selected ps-print-upside-down
3009 :included (pr-visible-p 'postscript-options)]
3010 ("Print All Pages" :included (pr-visible-p 'postscript-options)
3011 ,@(funcall
3012 pr-:help "Select odd/even pages/sheets to print")
3013 ["All Pages" (pr-even-or-odd-pages nil)
3014 :style radio :selected (eq ps-even-or-odd-pages nil)]
3015 ["Even Pages" (pr-even-or-odd-pages 'even-page)
3016 :style radio :selected (eq ps-even-or-odd-pages 'even-page)]
3017 ["Odd Pages" (pr-even-or-odd-pages 'odd-page)
3018 :style radio :selected (eq ps-even-or-odd-pages 'odd-page)]
3019 ["Even Sheets" (pr-even-or-odd-pages 'even-sheet)
3020 :style radio :selected (eq ps-even-or-odd-pages 'even-sheet)]
3021 ["Odd Sheets" (pr-even-or-odd-pages 'odd-sheet)
3022 :style radio :selected (eq ps-even-or-odd-pages 'odd-sheet)])
3023 "--"
3024 ["Spool Buffer" pr-toggle-spool-menu
3025 :style toggle :selected pr-spool-p
3026 :included (pr-visible-p 'postscript-process)
3027 ,@(funcall
3028 pr-:help "Toggle PostScript spooling")]
3029 ["Print with faces" pr-toggle-faces-menu
3030 :style toggle :selected pr-faces-p
3031 :included (pr-visible-p 'postscript-process)
3032 ,@(funcall
3033 pr-:help "Toggle PostScript printing with faces")]
3034 ["Print via Ghostscript" pr-toggle-ghostscript-menu
3035 :style toggle :selected pr-print-using-ghostscript
3036 :included (pr-visible-p 'postscript-process)
3037 ,@(funcall
3038 pr-:help "Toggle PostScript generation using ghostscript")]
3039 "--"
3040 ["Auto Region" pr-toggle-region-menu
3041 :style toggle :selected pr-auto-region
3042 :included (pr-visible-p 'printing)]
3043 ["Auto Mode" pr-toggle-mode-menu
3044 :style toggle :selected pr-auto-mode
3045 :included (pr-visible-p 'printing)]
3046 ["Menu Lock" pr-toggle-lock-menu
3047 :style toggle :selected pr-menu-lock
3048 :included (pr-visible-p 'printing)]
3049 "--"
3050 ("Customize" :included (pr-visible-p 'help)
3051 ["printing" pr-customize t]
3052 ["ps-print" ps-print-customize t]
3053 ["lpr" lpr-customize t])
3054 ("Show Settings" :included (pr-visible-p 'help)
3055 ["printing" pr-show-pr-setup t]
3056 ["ps-print" pr-show-ps-setup t]
3057 ["lpr" pr-show-lpr-setup t])
3058 ["Help" pr-help :active t :included (pr-visible-p 'help)]
3059 )))
3060
3061
3062 (defvar pr-menu-print-item "print"
3063 "Non-nil means that menu binding was not done.
3064
3065 Used by `pr-menu-bind' and `pr-update-menus'.")
3066
3067
3068 (defun pr-menu-bind ()
3069 "Install `printing' menu in the menubar.
3070
3071 On Emacs 20, it replaces the Tools/Print menu by Tools/Printing menu.
3072
3073 On Emacs 21 and 22, it replaces the File/Print* menu entries by File/Print
3074 menu.
3075
3076 Calls `pr-update-menus' to adjust menus."
3077 (interactive)
3078 (cond
3079 ((featurep 'xemacs) ; XEmacs
3080 ;; Menu binding
3081 (pr-xemacs-global-menubar
3082 (pr-x-add-submenu nil (cons "Printing" pr-menu-spec) "Apps"))
3083 (setq pr-menu-print-item nil))
3084
3085
3086 (t ; GNU Emacs
3087 ;; Menu binding
3088 (require 'easymenu)
3089 ;; Replace existing "print" item by "Printing" item.
3090 ;; If you're changing this file, you'll load it a second,
3091 ;; third... time, but "print" item exists only in the first load.
3092 (cond
3093 ;; Emacs 20
3094 ((string< emacs-version "21.")
3095 (easy-menu-change '("tools") "Printing" pr-menu-spec pr-menu-print-item)
3096 (when pr-menu-print-item
3097 (easy-menu-remove-item nil '("tools") pr-menu-print-item)
3098 (setq pr-menu-print-item nil
3099 pr-menu-bar (vector 'menu-bar 'tools
3100 (pr-get-symbol "Printing")))))
3101 ;; Emacs 21 & 22
3102 (t
3103 (let* ((has-file (lookup-key global-map (vector 'menu-bar 'file)))
3104 (item-file (if has-file '("file") '("files"))))
3105 (cond
3106 (pr-menu-print-item
3107 (easy-menu-change item-file "Print" pr-menu-spec "print-buffer")
3108 (let ((items '("print-buffer" "print-region"
3109 "ps-print-buffer-faces" "ps-print-region-faces"
3110 "ps-print-buffer" "ps-print-region")))
3111 (while items
3112 (easy-menu-remove-item nil item-file (car items))
3113 (setq items (cdr items)))
3114 (setq pr-menu-print-item nil
3115 pr-menu-bar (vector 'menu-bar
3116 (if has-file 'file 'files)
3117 (pr-get-symbol "Print")))))
3118 (t
3119 (easy-menu-change item-file "Print" pr-menu-spec))))))))
3120 (pr-update-menus t))
3121
3122
3123 ;; Key binding
3124 (let ((pr-print-key (if (featurep 'xemacs)
3125 'f22 ; XEmacs
3126 'print))) ; GNU Emacs
3127 (global-set-key `[,pr-print-key] 'pr-ps-fast-fire)
3128 ;; Well, M-print and S-print are used because in my keyboard S-print works
3129 ;; and M-print doesn't. But M-print can work in other keyboard.
3130 (global-set-key `[(meta ,pr-print-key)] 'pr-ps-mode-using-ghostscript)
3131 (global-set-key `[(shift ,pr-print-key)] 'pr-ps-mode-using-ghostscript)
3132 ;; Well, C-print and C-M-print are used because in my keyboard C-M-print works
3133 ;; and C-print doesn't. But C-print can work in other keyboard.
3134 (global-set-key `[(control ,pr-print-key)] 'pr-txt-fast-fire)
3135 (global-set-key `[(control meta ,pr-print-key)] 'pr-txt-fast-fire))
3136
3137
3138 ;;; You can also use something like:
3139 ;;;(global-set-key "\C-ci" 'pr-interface)
3140 ;;;(global-set-key "\C-cbp" 'pr-ps-buffer-print)
3141 ;;;(global-set-key "\C-cbx" 'pr-ps-buffer-preview)
3142 ;;;(global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
3143 ;;;(global-set-key "\C-crp" 'pr-ps-region-print)
3144 ;;;(global-set-key "\C-crx" 'pr-ps-region-preview)
3145 ;;;(global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
3146
3147
3148 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3149 ;; Help Message
3150
3151
3152 (defconst pr-help-message
3153 (concat "printing.el version " pr-version
3154 " ps-print.el version " ps-print-version
3155 "\n\n
3156 Menu Layout
3157 -----------
3158
3159 The `printing' menu (Tools/Printing or File/Print) has the following layout:
3160
3161 +-----------------------------+
3162 A 0 | Printing Interface |
3163 +-----------------------------+ +-A---------+ +-B------+
3164 I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
3165 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
3166 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
3167 +-----------------------------+ |Mode >|-- B |Other...|
3168 II 4 | Printify >|-----\\ |File >|--\\ +--------+
3169 5 | Print >|---\\ | |Despool... | |
3170 6 | Text Printer: name >|-\\ | | +-----------+ |
3171 +-----------------------------+ | | | +---------+ +------------+
3172 III 7 |[ ]Landscape | | | \\-|Directory| | No Prep... | Ia
3173 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
3174 9 |[ ]Print Header Frame | | | |Region | | name >|- C
3175 10 |[ ]Line Number | | | +---------+ +------------+
3176 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
3177 12 |[ ]Duplex | | \\---|Directory| | 2-up... |
3178 13 |[ ]Tumble | \\--\\ |Buffer | | 4-up... |
3179 14 |[ ]Upside-Down | | |Region | | Other... |
3180 15 | Print All Pages >|--\\ | |Mode | +------------+
3181 +-----------------------------+ | | +---------+ |[ ]Landscape| Id
3182 IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
3183 17 |[ ]Print with faces | | \\--|( )name A| |[ ]Tumble | If
3184 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
3185 +-----------------------------+ | |... |
3186 V 19 |[ ]Auto Region | | |(*)name |
3187 20 |[ ]Auto Mode | | |... |
3188 21 |[ ]Menu Lock | | +---------+ +--------------+
3189 +-----------------------------+ \\------------------|(*)All Pages |
3190 VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
3191 23 | Show Settings >|-------|printing| |( )Odd Pages |
3192 24 | Help | |ps-print| |( )Even Sheets|
3193 +-----------------------------+ |lpr | |( )Odd Sheets |
3194 +--------+ +--------------+
3195
3196 See `pr-visible-entry-list' for hiding some parts of the menu.
3197
3198 The menu has the following sections:
3199
3200 A. Interface:
3201
3202 0. You can use a buffer interface instead of menus. It looks like the
3203 customization buffer. Basically, it has the same options found in the
3204 menu and some extra options, all this on a buffer.
3205
3206 I. PostScript printing:
3207
3208 1. You can generate a PostScript file (if you type C-u before activating
3209 menu) or PostScript temporary file for a directory, a buffer, a region
3210 or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
3211 after file generation, ghostview is activated using the file generated
3212 as argument. This option is disabled if spooling is on (option 16).
3213 Also, if you already have a PostScript file you can preview it.
3214 Instead of previewing each buffer, region or major mode at once, you
3215 can save temporarily the PostScript code generated in a buffer and
3216 preview it later. The option `Despool...' despools the PostScript
3217 spooling buffer in a temporary file and uses ghostview to preview it.
3218 If you type C-u before choosing this option, the PostScript code
3219 generated is saved in a file instead of saving in a temporary file. To
3220 spool the PostScript code generated you need to turn on the option 16.
3221 The option `Despool...' is enabled if spooling is on (option 16).
3222
3223 NOTE 1: It's possible to customize a major mode printing, just declare
3224 the customization in `pr-mode-alist' and invoke some of
3225 `*-mode*' commands or select Mode option in Printing menu. An
3226 example for major mode usage is when you're using gnus (or mh,
3227 or rmail, etc.) and you're in the *Summary* buffer, if you
3228 forget to switch to the *Article* buffer before printing,
3229 you'll get a nicely formatted list of article subjects shows
3230 up at the printer. With major mode printing you don't need to
3231 switch from gnus *Summary* buffer first.
3232
3233 NOTE 2: There are the following options for PostScript file processing:
3234 Ia. Print the file *No Preprocessing*, that is, send it
3235 directly to PostScript printer.
3236 Ib. PostScript utility processing selection.
3237 See `pr-ps-utility-alist' and `pr-setting-database' for
3238 documentation.
3239 Ic. Do n-up processing before printing.
3240 Id. Toggle on/off landscape for PostScript file processing.
3241 Ie. Toggle on/off duplex for PostScript file processing.
3242 If. Toggle on/off tumble for PostScript file processing.
3243
3244 NOTE 3: Don't forget to download and install the utilities declared on
3245 `pr-ps-utility-alist'.
3246
3247 2. Operate the same way as option 1, but it sends directly the PostScript
3248 code (or put in a file, if you've typed C-u) or it uses ghostscript to
3249 print the PostScript file generated. It depends on option 18, if it's
3250 turned on, it uses ghostscript; otherwise, it sends directly to
3251 printer. If spooling is on (option 16), the PostScript code is saved
3252 temporarily in a buffer instead of printing it or saving it in a file.
3253 Also, if you already have a PostScript file you can print it.
3254 Instead of printing each buffer, region or major mode at once, you can
3255 save temporarily the PostScript code generated in a buffer and print it
3256 later. The option `Despool...' despools the PostScript spooling buffer
3257 directly on a printer. If you type C-u before choosing this option,
3258 the PostScript code generated is saved in a file instead of sending it to
3259 the printer. To spool the PostScript code generated you need to turn on
3260 option 16. This option is enabled if spooling is on (option 16).
3261 See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
3262
3263 3. You can select a new PostScript printer to send PostScript code
3264 generated. For selection it's used all PostScript printers defined
3265 in `pr-ps-printer-alist' variable (see it for documentation).
3266 See also `pr-setting-database'.
3267
3268 II. Text printing:
3269
3270 4. If you have control characters (character code from \\000 to \\037) in a
3271 buffer and you want to print them in a text printer, select this
3272 option. All control characters in your buffer or region will be
3273 replaced by a printable representation. The printable representations
3274 use ^ (for ASCII control characters) or hex. The characters tab,
3275 linefeed, space, return and formfeed are not affected.
3276 You don't need to select this option if you use any option of section
3277 I, the PostScript engine treats control characters properly.
3278
3279 5. If you want to print a directory, buffer, region or major mode in a
3280 text printer, select this option. See also the NOTE 1 on option 1.
3281
3282 6. You can select a new text printer to send text generated. For
3283 selection it's used all text printers defined in `pr-txt-printer-alist'
3284 variable (see it for documentation).
3285 See also `pr-setting-database'.
3286
3287 III. PostScript page toggle options:
3288
3289 7. If you want a PostScript landscape printing, turn on this option.
3290
3291 8. If you want to have a header in each page in your PostScript code,
3292 turn on this option.
3293
3294 9. If you want to draw a gaudy frame around the header, turn on this
3295 option. This option is enabled if print header is on (option 8).
3296
3297 10. If you want that the line number is printed in your PostScript code,
3298 turn on this option.
3299
3300 11. If you want background zebra stripes in your PostScript code, turn on
3301 this option.
3302
3303 12. If you want a duplex printing and your PostScript printer has this
3304 feature, turn on this option.
3305
3306 13. If you turned on duplex printing, you can choose if you want to have a
3307 printing suitable for binding on the left or right (tumble off), or to
3308 have a printing suitable for binding at top or bottom (tumble on).
3309 This option is enabled if duplex is on (option 12).
3310
3311 14. If you want a PostScript upside-down printing, turn on this option.
3312
3313 15. With this option, you can choose if you want to print all pages, odd
3314 pages, even pages, odd sheets or even sheets.
3315 See also `ps-even-or-odd-pages'.
3316
3317 IV. PostScript processing toggle options:
3318
3319 16. If you want to spool the PostScript code generated, turn on this
3320 option. To spool the PostScript code generated use option 2. You can
3321 despool later by choosing option 1 or 2, sub-option `Despool...'.
3322
3323 17. If you use colors in your buffers and want to see these colors on your
3324 PostScript code generated, turn on this option. If you have a
3325 black/white PostScript printer, these colors are displayed in gray
3326 scale by PostScript printer interpreter.
3327
3328 18. If you don't have a PostScript printer to send PostScript files, turn
3329 on this option. When this option is on, the ghostscript is used to
3330 print PostScript files. In GNU or Unix system, if ghostscript is set
3331 as a PostScript filter, you don't need to turn on this option.
3332
3333 V. Printing customization:
3334
3335 19. If you want that region is automagically detected, turn on this
3336 option. Note that this will only work if you're using transient mark
3337 mode. When this option is on, the `*-buffer*' commands will behave
3338 like `*-region*' commands, that is, `*-buffer*' commands will print
3339 only the region marked instead of all buffer.
3340
3341 20. Turn this option on if you want that when current major-mode is
3342 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
3343 behave like `*-mode*' commands.
3344
3345 21. If you want that Printing menu stays open while you are setting
3346 toggle options, turn on this option. The variables
3347 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
3348 menu position, so don't forget to adjust these variables if menu
3349 position is not ok.
3350
3351 VI. Customization:
3352
3353 22. Besides all options in section III, IV and V, you can customize much
3354 more PostScript options in `ps-print' option. Or you can customize
3355 some `lpr' options for text printing. Or customize `printing'
3356 options.
3357
3358 23. Show current settings for `printing', `ps-print' or `lpr'.
3359
3360 24. Quick help for printing menu layout.
3361 ")
3362 "Printing help message.")
3363
3364
3365 (defconst pr-interface-help-message
3366 (concat "printing.el version " pr-version
3367 " ps-print.el version " ps-print-version
3368 "\n\n
3369 The printing interface buffer has the same functionality as the printing menu.
3370 The major difference is that the states (like sending PostScript generated to a
3371 file, n-up printing, etc.) are set and saved between priting buffer
3372 activation. Also, the landscape, duplex and tumble values are the same for
3373 PostScript file and directory/buffer/region/mode processing; using menu, there
3374 are different value sets for PostScript file and directory/buffer/region/mode
3375 processing.
3376
3377 The printing interface buffer has the following sections:
3378
3379 1. Print:
3380
3381 Here you can choose to print/preview a buffer, a directory or a PostScript
3382 file:
3383
3384 1a. Buffer:
3385
3386 * Buffer List:
3387 Select a buffer from the current buffer list.
3388
3389 * Region:
3390 If it's on, this means that the selected buffer has an active region,
3391 so you can turn on/off, as you wish.
3392 If it's off when a buffer is selected, this means that the selected
3393 buffer has no active region, so it'll not be possible to turn it on.
3394 If you want to process the region, let this option on.
3395 If you want to process the whole buffer, let this option off.
3396
3397 * Mode:
3398 If it's on, this means that the selected buffer major mode is declared
3399 for major mode processing, so you can turn on/off, as you wish.
3400 If it's off when a buffer is selected, this means that the selected
3401 buffer major mode isn't declared for major mode processing, so it'll
3402 not be possible to turn it on.
3403 If you want the major mode processing, let this option on.
3404 If you don't want the major mode processing, let this option off.
3405
3406 NOTE 1: It's possible to customize a major mode printing, just declare
3407 the customization in `pr-mode-alist' and invoke some of
3408 `*-mode*' commands or select Mode option in Printing menu. An
3409 example for major mode usage is when you're using gnus (or mh,
3410 or rmail, etc.) and you're in the *Summary* buffer, if you
3411 forget to switch to the *Article* buffer before printing,
3412 you'll get a nicely formatted list of article subjects shows
3413 up at the printer. With major mode printing you don't need to
3414 switch from gnus *Summary* buffer first.
3415
3416 1b. Directory:
3417
3418 * Directory:
3419 Specify a valid directory path.
3420
3421 * File Regexp:
3422 Specify a file name regexp. All file names in the directory that
3423 match with regexp will be printed/previewed. An empty file name
3424 regexp means to print/preview all files in the directory.
3425
3426 * List Directory Entry:
3427 If it's turned on, list directory entries besides file entries.
3428
3429 1c. PostScript file:
3430
3431 * PostScript File:
3432 Specify an existent PostScript file to print/preview.
3433
3434 * PostScript Utility:
3435 Select a PostScript utility.
3436 See `pr-ps-utility-alist' and `pr-setting-database' for documentation.
3437
3438 NOTE 2: Don't forget to download and install the utilities declared on
3439 `pr-ps-utility-alist'.
3440
3441 * No Preprocessing:
3442 If it's turned on, don't use the PostScript utility to preprocess the
3443 PostScript file before printing/previewing.
3444
3445 2. PostScript printer:
3446
3447 * PostScript Printer:
3448 You can select a new PostScript printer to send PostScript code
3449 generated. For selection it's used all PostScript printers defined
3450 in `pr-ps-printer-alist' variable (see it for documentation).
3451 See also `pr-setting-database'.
3452
3453 * Despool:
3454 If spooling is on, you can turn it on/off, as you wish.
3455 If spooling is off, it'll not be possible to turn it on.
3456 If it's turned on, specify to despools the PostScript spooling buffer in
3457 a temporary file or in the selected PostScript file when
3458 printing/previewing.
3459
3460 * Preview:
3461 Preview the PostScript generated.
3462
3463 * Print:
3464 Print the PostScript generated.
3465
3466 * Quit:
3467 Quit from printing interface buffer.
3468
3469 * Send to Printer/Temporary File:
3470 If it's turned on, the PostScript generated is sent directly to
3471 PostScript printer or, for previewing, to a temporary file.
3472
3473 * Send to File:
3474 Specify a file name to send the PostScript generated.
3475
3476 * N-Up:
3477 Specify n-up printing.
3478
3479 3. Text printer:
3480
3481 * Text Printer:
3482 Select a new text printer to send text generated. For selection it's used
3483 all text printers defined in `pr-txt-printer-alist' variable (see it for
3484 documentation). See also `pr-setting-database'.
3485
3486 * Printify:
3487 If you have control characters (character code from \\000 to \\037) in a
3488 buffer and you want to print them in a text printer, select this
3489 option. All control characters in your buffer or region will be
3490 replaced by a printable representation. The printable representations
3491 use ^ (for ASCII control characters) or hex. The characters tab,
3492 linefeed, space, return and formfeed are not affected.
3493 You don't need to select this option if you use any option of section
3494 I, the PostScript engine treats control characters properly.
3495
3496 * Print:
3497 To print a directory, buffer, region or major mode in a
3498 text printer, select this option. See also the NOTE 1 on section 1.
3499
3500 * Quit:
3501 Quit from printing interface buffer.
3502
3503 4. Settings:
3504
3505 There are 3 setting columns:
3506
3507 4a. First column (left column):
3508
3509 * Landscape:
3510 PostScript landscape printing.
3511
3512 * Print Header:
3513 To have a header in each page in your PostScript code.
3514
3515 * Print Header Frame:
3516 To draw a gaudy frame around the header.
3517
3518 * Line Number:
3519 The line number is printed in your PostScript code.
3520
3521 * Zebra Stripes:
3522 Background zebra stripes in your PostScript code.
3523
3524 * Duplex:
3525 Duplex printing (if your PostScript printer has this feature).
3526
3527 * Tumble:
3528 If duplex printing is on, you can choose if you want to have a
3529 printing suitable for binding on the left or right (tumble off), or to
3530 have a printing suitable for binding at top or bottom (tumble on).
3531
3532 * Upside-Down:
3533 PostScript upside-down printing.
3534
3535 4b. Second column (middle column):
3536
3537 * Auto Region:
3538 If you want that region is automagically detected, turn on this
3539 option. Note that this will only work if you're using transient mark
3540 mode. When this option is on, the `*-buffer*' commands will behave
3541 like `*-region*' commands, that is, `*-buffer*' commands will print
3542 only the region marked instead of all buffer.
3543
3544 * Auto Mode:
3545 Turn this option on if you want that when current major-mode is
3546 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
3547 behave like `*-mode*' commands.
3548
3549 * Menu Lock:
3550 If you want that Printing menu stays open while you are setting
3551 toggle options, turn on this option. The variables
3552 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
3553 menu position, so don't forget to adjust these variables if menu
3554 position is not ok.
3555
3556 * Spool Buffer:
3557 To spool the PostScript code generated. You can despool later by
3558 setting Despool option on PostScript printer section.
3559
3560 * Print with faces:
3561 If you use colors in your buffers and want to see these colors on your
3562 PostScript code generated, turn on this option. If you have a
3563 black/white PostScript printer, these colors are displayed in gray
3564 scale by PostScript printer interpreter.
3565
3566 * Print via Ghostscript:
3567 If you don't have a PostScript printer to send PostScript files, turn
3568 on this option. When this option is on, the ghostscript is used to
3569 print PostScript files. In GNU or Unix system, if ghostscript is set
3570 as a PostScript filter, you don't need to turn on this option.
3571
3572 * Parity Page Menu:
3573 To print all pages, odd pages, even pages, odd sheets or even sheets.
3574 See also `ps-even-or-odd-pages'.
3575
3576 4c. Third column (right column):
3577
3578 * Verbose:
3579 That is, to be verbose when editing a field in interface buffer.
3580
3581 5. Customize:
3582
3583 Besides all options in section 4, you can customize much more PostScript
3584 options in `ps-print' option. Or you can customize some `lpr' options for
3585 text printing. Or customize `printing' options.
3586
3587 6. Show settings:
3588
3589 Show current settings for `printing', `ps-print' or `lpr'.
3590
3591 7. Help:
3592
3593 Quick help for printing interface buffer and printing menu layout. You can
3594 also quit the printing interface buffer or kill all printing help buffer.
3595 ")
3596 "Printing buffer interface help message.")
3597
3598
3599 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3600 ;; Commands
3601
3602
3603 ;;;###autoload
3604 (defun pr-interface (&optional buffer)
3605 "Activate the printing interface buffer.
3606
3607 If BUFFER is nil, the current buffer is used for printing.
3608
3609 For more information, type \\[pr-interface-help]."
3610 (interactive)
3611 (save-excursion
3612 (set-buffer (or buffer (current-buffer)))
3613 (pr-create-interface)))
3614
3615
3616 ;;;###autoload
3617 (defun pr-ps-directory-preview (n-up dir file-regexp &optional filename)
3618 "Preview directory using ghostview.
3619
3620 Interactively, the command prompts for N-UP printing number, a directory, a
3621 file name regexp for matching and, when you use a prefix argument (C-u), the
3622 command prompts the user for a file name, and saves the PostScript image in
3623 that file instead of saving it in a temporary file.
3624
3625 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3626 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3627 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3628 save the image in a temporary file. If FILENAME is a string, save the
3629 PostScript image in a file with that name. If FILENAME is t, prompts for a
3630 file name.
3631
3632 See also documentation for `pr-list-directory'."
3633 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS preview dir")))
3634 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3635 (pr-prompt "PS preview dir"))
3636 (setq filename (pr-ps-file filename))
3637 (pr-ps-file-list n-up dir file-regexp filename)
3638 (or pr-spool-p
3639 (pr-ps-file-preview filename)))
3640
3641
3642 ;;;###autoload
3643 (defun pr-ps-directory-using-ghostscript (n-up dir file-regexp &optional filename)
3644 "Print directory using PostScript through ghostscript.
3645
3646 Interactively, the command prompts for N-UP printing number, a directory, a
3647 file name regexp for matching and, when you use a prefix argument (C-u), the
3648 command prompts the user for a file name, and saves the PostScript image in
3649 that file instead of saving it in a temporary file.
3650
3651 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3652 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3653 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3654 save the image in a temporary file. If FILENAME is a string, save the
3655 PostScript image in a file with that name. If FILENAME is t, prompts for a
3656 file name.
3657
3658 See also documentation for `pr-list-directory'."
3659 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir GS")))
3660 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3661 (pr-prompt "PS print dir GS"))
3662 (let ((file (pr-ps-file filename)))
3663 (pr-ps-file-list n-up dir file-regexp file)
3664 (pr-ps-file-using-ghostscript file)
3665 (or filename (pr-delete-file file))))
3666
3667
3668 ;;;###autoload
3669 (defun pr-ps-directory-print (n-up dir file-regexp &optional filename)
3670 "Print directory using PostScript printer.
3671
3672 Interactively, the command prompts for N-UP printing number, a directory, a
3673 file name regexp for matching and, when you use a prefix argument (C-u), the
3674 command prompts the user for a file name, and saves the PostScript image in
3675 that file instead of saving it in a temporary file.
3676
3677 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3678 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3679 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3680 save the image in a temporary file. If FILENAME is a string, save the
3681 PostScript image in a file with that name. If FILENAME is t, prompts for a
3682 file name.
3683
3684 See also documentation for `pr-list-directory'."
3685 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir")))
3686 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3687 (pr-prompt "PS print dir"))
3688 (let ((file (pr-ps-file filename)))
3689 (pr-ps-file-list n-up dir file-regexp file)
3690 (pr-ps-file-print file)
3691 (or filename (pr-delete-file file))))
3692
3693
3694 ;;;###autoload
3695 (defun pr-ps-directory-ps-print (n-up dir file-regexp &optional filename)
3696 "Print directory using PostScript printer or through ghostscript.
3697
3698 It depends on `pr-print-using-ghostscript'.
3699
3700 Interactively, the command prompts for N-UP printing number, a directory, a
3701 file name regexp for matching and, when you use a prefix argument (C-u), the
3702 command prompts the user for a file name, and saves the PostScript image in
3703 that file instead of saving it in a temporary file.
3704
3705 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3706 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3707 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3708 save the image in a temporary file. If FILENAME is a string, save the
3709 PostScript image in a file with that name. If FILENAME is t, prompts for a
3710 file name.
3711
3712 See also documentation for `pr-list-directory'."
3713 (interactive (pr-interactive-ps-dir-args
3714 (pr-prompt (pr-prompt-gs "PS print dir"))))
3715 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3716 (pr-prompt (pr-prompt-gs "PS print dir")))
3717 (if (pr-using-ghostscript-p)
3718 (pr-ps-directory-using-ghostscript n-up dir file-regexp filename)
3719 (pr-ps-directory-print n-up dir file-regexp filename)))
3720
3721
3722 ;;;###autoload
3723 (defun pr-ps-buffer-preview (n-up &optional filename)
3724 "Preview buffer using ghostview.
3725
3726 Interactively, the command prompts for N-UP printing number and, when you use a
3727 prefix argument (C-u), the command prompts the user for a file name, and saves
3728 the PostScript image in that file instead of saving it in a temporary file.
3729
3730 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3731 argument FILENAME is treated as follows: if it's nil, save the image in a
3732 temporary file. If FILENAME is a string, save the PostScript image in a file
3733 with that name. If FILENAME is t, prompts for a file name."
3734 (interactive (pr-interactive-n-up-file (pr-prompt "PS preview")))
3735 (if (pr-auto-mode-p)
3736 (pr-ps-mode-preview n-up filename)
3737 (pr-ps-preview (pr-region-active-symbol) n-up filename
3738 (pr-region-active-string "PS preview"))))
3739
3740
3741 ;;;###autoload
3742 (defun pr-ps-buffer-using-ghostscript (n-up &optional filename)
3743 "Print buffer using PostScript through ghostscript.
3744
3745 Interactively, the command prompts for N-UP printing number and, when you use a
3746 prefix argument (C-u), the command prompts the user for a file name, and saves
3747 the PostScript image in that file instead of sending it to the printer.
3748
3749 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3750 argument FILENAME is treated as follows: if it's nil, send the image to the
3751 printer. If FILENAME is a string, save the PostScript image in a file with
3752 that name. If FILENAME is t, prompts for a file name."
3753 (interactive (pr-interactive-n-up-file (pr-prompt "PS print GS")))
3754 (if (pr-auto-mode-p)
3755 (pr-ps-mode-using-ghostscript n-up filename)
3756 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
3757 (pr-region-active-string "PS print GS"))))
3758
3759
3760 ;;;###autoload
3761 (defun pr-ps-buffer-print (n-up &optional filename)
3762 "Print buffer using PostScript printer.
3763
3764 Interactively, the command prompts for N-UP printing number and, when you use a
3765 prefix argument (C-u), the command prompts the user for a file name, and saves
3766 the PostScript image in that file instead of sending it to the printer.
3767
3768 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3769 argument FILENAME is treated as follows: if it's nil, send the image to the
3770 printer. If FILENAME is a string, save the PostScript image in a file with
3771 that name. If FILENAME is t, prompts for a file name."
3772 (interactive (pr-interactive-n-up-file (pr-prompt "PS print")))
3773 (if (pr-auto-mode-p)
3774 (pr-ps-mode-print n-up filename)
3775 (pr-ps-print (pr-region-active-symbol) n-up filename
3776 (pr-region-active-string "PS print"))))
3777
3778
3779 ;;;###autoload
3780 (defun pr-ps-buffer-ps-print (n-up &optional filename)
3781 "Print buffer using PostScript printer or through ghostscript.
3782
3783 It depends on `pr-print-using-ghostscript'.
3784
3785 Interactively, the command prompts for N-UP printing number and, when you use a
3786 prefix argument (C-u), the command prompts the user for a file name, and saves
3787 the PostScript image in that file instead of sending it to the printer.
3788
3789 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3790 argument FILENAME is treated as follows: if it's nil, send the image to the
3791 printer. If FILENAME is a string, save the PostScript image in a file with
3792 that name. If FILENAME is t, prompts for a file name."
3793 (interactive (pr-interactive-n-up-file
3794 (pr-prompt (pr-prompt-gs "PS print"))))
3795 (cond ((pr-auto-mode-p)
3796 (pr-ps-mode-ps-print n-up filename))
3797 ((pr-using-ghostscript-p)
3798 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
3799 (pr-region-active-string "PS print GS")))
3800 (t
3801 (pr-ps-print (pr-region-active-symbol) n-up filename
3802 (pr-region-active-string "PS print")))))
3803
3804
3805 ;;;###autoload
3806 (defun pr-ps-region-preview (n-up &optional filename)
3807 "Preview region using ghostview.
3808
3809 See also `pr-ps-buffer-preview'."
3810 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS preview")))
3811 (if (pr-auto-mode-p)
3812 (let ((pr-auto-region t))
3813 (pr-ps-mode-preview n-up filename))
3814 (pr-ps-preview 'region n-up filename "PS preview region")))
3815
3816
3817 ;;;###autoload
3818 (defun pr-ps-region-using-ghostscript (n-up &optional filename)
3819 "Print region using PostScript through ghostscript.
3820
3821 See also `pr-ps-buffer-using-ghostscript'."
3822 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print GS")))
3823 (if (pr-auto-mode-p)
3824 (let ((pr-auto-region t))
3825 (pr-ps-mode-using-ghostscript n-up filename))
3826 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region")))
3827
3828
3829 ;;;###autoload
3830 (defun pr-ps-region-print (n-up &optional filename)
3831 "Print region using PostScript printer.
3832
3833 See also `pr-ps-buffer-print'."
3834 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print")))
3835 (if (pr-auto-mode-p)
3836 (let ((pr-auto-region t))
3837 (pr-ps-mode-print n-up filename))
3838 (pr-ps-print 'region n-up filename "PS print region")))
3839
3840
3841 ;;;###autoload
3842 (defun pr-ps-region-ps-print (n-up &optional filename)
3843 "Print region using PostScript printer or through ghostscript.
3844
3845 See also `pr-ps-buffer-ps-print'."
3846 (interactive (pr-interactive-n-up-file
3847 (pr-prompt-region (pr-prompt-gs "PS print"))))
3848 (cond ((pr-auto-mode-p)
3849 (let ((pr-auto-region t))
3850 (pr-ps-mode-ps-print n-up filename)))
3851 ((pr-using-ghostscript-p)
3852 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region"))
3853 (t
3854 (pr-ps-print 'region n-up filename "PS print region"))))
3855
3856
3857 ;;;###autoload
3858 (defun pr-ps-mode-preview (n-up &optional filename)
3859 "Preview major mode using ghostview.
3860
3861 See also `pr-ps-buffer-preview'."
3862 (interactive (pr-interactive-n-up-file "PS preview mode"))
3863 (pr-set-n-up-and-filename 'n-up 'filename "PS preview mode")
3864 (let ((file (pr-ps-file filename)))
3865 (and (pr-ps-mode n-up file)
3866 (not pr-spool-p)
3867 (pr-ps-file-preview file))))
3868
3869
3870 ;;;###autoload
3871 (defun pr-ps-mode-using-ghostscript (n-up &optional filename)
3872 "Print major mode using PostScript through ghostscript.
3873
3874 See also `pr-ps-buffer-using-ghostscript'."
3875 (interactive (pr-interactive-n-up-file "PS print GS mode"))
3876 (pr-set-n-up-and-filename 'n-up 'filename "PS print GS mode")
3877 (let ((file (pr-ps-file filename)))
3878 (when (and (pr-ps-mode n-up file)
3879 (not pr-spool-p))
3880 (pr-ps-file-using-ghostscript file)
3881 (or filename (pr-delete-file file)))))
3882
3883
3884 ;;;###autoload
3885 (defun pr-ps-mode-print (n-up &optional filename)
3886 "Print major mode using PostScript printer.
3887
3888 See also `pr-ps-buffer-print'."
3889 (interactive (pr-interactive-n-up-file "PS print mode"))
3890 (pr-set-n-up-and-filename 'n-up 'filename "PS print mode")
3891 (pr-ps-mode n-up filename))
3892
3893
3894 ;;;###autoload
3895 (defun pr-ps-mode-ps-print (n-up &optional filename)
3896 "Print major mode using PostScript or through ghostscript.
3897
3898 See also `pr-ps-buffer-ps-print'."
3899 (interactive (pr-interactive-n-up-file (pr-prompt-gs "PS print mode")))
3900 (if (pr-using-ghostscript-p)
3901 (pr-ps-mode-using-ghostscript n-up filename)
3902 (pr-ps-mode-print n-up filename)))
3903
3904
3905 ;;;###autoload
3906 (defun pr-printify-directory (&optional dir file-regexp)
3907 "Replace nonprinting characters in directory with printable representations.
3908 The printable representations use ^ (for ASCII control characters) or hex.
3909 The characters tab, linefeed, space, return and formfeed are not affected.
3910
3911 Interactively, the command prompts for a directory and a file name regexp for
3912 matching.
3913
3914 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
3915 prompts for FILE(name)-REGEXP.
3916
3917 See also documentation for `pr-list-directory'."
3918 (interactive (pr-interactive-dir-args "Printify dir"))
3919 (pr-set-dir-args 'dir 'file-regexp "Printify dir")
3920 (pr-file-list dir file-regexp 'pr-printify-buffer))
3921
3922
3923 ;;;###autoload
3924 (defun pr-printify-buffer ()
3925 "Replace nonprinting characters in buffer with printable representations.
3926 The printable representations use ^ (for ASCII control characters) or hex.
3927 The characters tab, linefeed, space, return and formfeed are not affected."
3928 (interactive "*")
3929 (if (pr-region-active-p)
3930 (pr-printify-region)
3931 (printify-region (point-min) (point-max))))
3932
3933
3934 ;;;###autoload
3935 (defun pr-printify-region ()
3936 "Replace nonprinting characters in region with printable representations.
3937 The printable representations use ^ (for ASCII control characters) or hex.
3938 The characters tab, linefeed, space, return and formfeed are not affected."
3939 (interactive "*")
3940 (printify-region (point) (mark)))
3941
3942
3943 ;;;###autoload
3944 (defun pr-txt-directory (&optional dir file-regexp)
3945 "Print directory using text printer.
3946
3947 Interactively, the command prompts for a directory and a file name regexp for
3948 matching.
3949
3950 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
3951 prompts for FILE(name)-REGEXP.
3952
3953 See also documentation for `pr-list-directory'."
3954 (interactive (pr-interactive-dir-args "Print dir"))
3955 (pr-set-dir-args 'dir 'file-regexp "Print dir")
3956 (pr-file-list dir file-regexp 'pr-txt-buffer))
3957
3958
3959 ;;;###autoload
3960 (defun pr-txt-buffer ()
3961 "Print buffer using text printer."
3962 (interactive)
3963 (cond ((pr-auto-mode-p)
3964 (pr-txt-mode))
3965 ((pr-region-active-p)
3966 (pr-txt-region))
3967 (t
3968 (pr-txt-print (point-min) (point-max)))))
3969
3970
3971 ;;;###autoload
3972 (defun pr-txt-region ()
3973 "Print region using text printer."
3974 (interactive)
3975 (if (pr-auto-mode-p)
3976 (let ((pr-auto-region t))
3977 (pr-txt-mode))
3978 (pr-txt-print (point) (mark))))
3979
3980
3981 ;;;###autoload
3982 (defun pr-txt-mode ()
3983 "Print major mode using text printer."
3984 (interactive)
3985 (let ((args (pr-mode-alist-p)))
3986 (if args
3987 (funcall (car args) (nthcdr 2 args))
3988 (ding)
3989 (message "`%s' major mode not declared." major-mode))))
3990
3991
3992 ;;;###autoload
3993 (defun pr-despool-preview (&optional filename)
3994 "Preview spooled PostScript.
3995
3996 Interactively, when you use a prefix argument (C-u), the command prompts the
3997 user for a file name, and saves the spooled PostScript image in that file
3998 instead of saving it in a temporary file.
3999
4000 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4001 save the image in a temporary file. If FILENAME is a string, save the
4002 PostScript image in a file with that name."
4003 (interactive (list (ps-print-preprint current-prefix-arg)))
4004 (let ((file (pr-ps-file filename)))
4005 (when (stringp file)
4006 (pr-despool-print file)
4007 (pr-ps-file-preview file))))
4008
4009
4010 ;;;###autoload
4011 (defun pr-despool-using-ghostscript (&optional filename)
4012 "Print spooled PostScript using ghostscript.
4013
4014 Interactively, when you use a prefix argument (C-u), the command prompts the
4015 user for a file name, and saves the spooled PostScript image in that file
4016 instead of sending it to the printer.
4017
4018 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4019 send the image to the printer. If FILENAME is a string, save the PostScript
4020 image in a file with that name."
4021 (interactive (list (ps-print-preprint current-prefix-arg)))
4022 (let ((file (pr-ps-file filename)))
4023 (when (stringp file)
4024 (pr-despool-print file)
4025 (pr-ps-file-using-ghostscript file)
4026 (or filename (pr-delete-file file)))))
4027
4028
4029 ;;;###autoload
4030 (defun pr-despool-print (&optional filename)
4031 "Send the spooled PostScript to the printer.
4032
4033 Interactively, when you use a prefix argument (C-u), the command prompts the
4034 user for a file name, and saves the spooled PostScript image in that file
4035 instead of sending it to the printer.
4036
4037 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4038 send the image to the printer. If FILENAME is a string, save the PostScript
4039 image in a file with that name."
4040 (interactive (list (ps-print-preprint current-prefix-arg)))
4041 (pr-save-file-modes
4042 (let ((ps-lpr-command (pr-command pr-ps-command))
4043 (ps-lpr-switches pr-ps-switches)
4044 (ps-printer-name-option pr-ps-printer-switch)
4045 (ps-printer-name pr-ps-printer))
4046 (ps-despool filename))))
4047
4048
4049 ;;;###autoload
4050 (defun pr-despool-ps-print (&optional filename)
4051 "Send the spooled PostScript to the printer or use ghostscript to print it.
4052
4053 Interactively, when you use a prefix argument (C-u), the command prompts the
4054 user for a file name, and saves the spooled PostScript image in that file
4055 instead of sending it to the printer.
4056
4057 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4058 send the image to the printer. If FILENAME is a string, save the PostScript
4059 image in a file with that name."
4060 (interactive (list (ps-print-preprint current-prefix-arg)))
4061 (if pr-print-using-ghostscript
4062 (pr-despool-using-ghostscript filename)
4063 (pr-despool-print filename)))
4064
4065
4066 ;;;###autoload
4067 (defun pr-ps-file-preview (filename)
4068 "Preview PostScript file FILENAME."
4069 (interactive (list (pr-ps-infile-preprint "Preview ")))
4070 (and (stringp filename) (file-exists-p filename)
4071 (pr-call-process pr-gv-command filename)))
4072
4073
4074 ;;;###autoload
4075 (defun pr-ps-file-up-preview (n-up ifilename &optional ofilename)
4076 "Preview PostScript file FILENAME."
4077 (interactive (pr-interactive-n-up-inout "PS preview"))
4078 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename
4079 "PS preview ")))
4080 (pr-ps-utility-process n-up ifilename outfile)
4081 (pr-ps-file-preview outfile)))
4082
4083
4084 ;;;###autoload
4085 (defun pr-ps-file-using-ghostscript (filename)
4086 "Print PostScript file FILENAME using ghostscript."
4087 (interactive (list (pr-ps-infile-preprint "Print preview ")))
4088 (and (stringp filename) (file-exists-p filename)
4089 (let* ((file (pr-expand-file-name filename))
4090 (tempfile (pr-dosify-file-name (make-temp-file file))))
4091 ;; gs use
4092 (pr-call-process pr-gs-command
4093 (format "-sDEVICE=%s" pr-gs-device)
4094 (format "-r%d" pr-gs-resolution)
4095 (pr-switches-string pr-gs-switches "pr-gs-switches")
4096 (format "-sOutputFile=\"%s\"" tempfile)
4097 file
4098 "-c quit")
4099 ;; printing
4100 (pr-ps-file-print tempfile)
4101 ;; deleting
4102 (pr-delete-file tempfile))))
4103
4104
4105 ;;;###autoload
4106 (defun pr-ps-file-print (filename)
4107 "Print PostScript file FILENAME."
4108 (interactive (list (pr-ps-infile-preprint "Print ")))
4109 (and (stringp filename) (file-exists-p filename)
4110 ;; printing
4111 (let ((file (pr-expand-file-name filename)))
4112 (if (string= pr-ps-command "")
4113 ;; default action
4114 (let ((ps-spool-buffer (get-buffer-create ps-spool-buffer-name)))
4115 (save-excursion
4116 (set-buffer ps-spool-buffer)
4117 (erase-buffer)
4118 (insert-file-contents-literally file))
4119 (pr-despool-print))
4120 ;; use `pr-ps-command' to print
4121 (apply 'pr-call-process
4122 pr-ps-command
4123 (pr-switches-string pr-ps-switches "pr-ps-switches")
4124 (if (string-match "cp" pr-ps-command)
4125 ;; for "cp" (cmd in out)
4126 (list file
4127 (concat pr-ps-printer-switch pr-ps-printer))
4128 ;; else, for others (cmd out in)
4129 (list (concat pr-ps-printer-switch pr-ps-printer)
4130 file)))))))
4131
4132
4133 ;;;###autoload
4134 (defun pr-ps-file-ps-print (filename)
4135 "Send PostScript file FILENAME to printer or use ghostscript to print it."
4136 (interactive (list (pr-ps-infile-preprint
4137 (if pr-print-using-ghostscript
4138 "Print preview "
4139 "Print "))))
4140 (if pr-print-using-ghostscript
4141 (pr-ps-file-using-ghostscript filename)
4142 (pr-ps-file-print filename)))
4143
4144
4145 ;;;###autoload
4146 (defun pr-ps-file-up-ps-print (n-up ifilename &optional ofilename)
4147 "Process a PostScript file IFILENAME and send it to printer.
4148
4149 Interactively, the command prompts for N-UP printing number, for an input
4150 PostScript file IFILENAME and, when you use a prefix argument (C-u), the
4151 command prompts the user for an output PostScript file name OFILENAME, and
4152 saves the PostScript image in that file instead of sending it to the printer.
4153
4154 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
4155 argument IFILENAME is treated as follows: if it's t, prompts for an input
4156 PostScript file name; otherwise, it *must* be a string that it's an input
4157 PostScript file name. The argument OFILENAME is treated as follows: if it's
4158 nil, send the image to the printer. If OFILENAME is a string, save the
4159 PostScript image in a file with that name. If OFILENAME is t, prompts for a
4160 file name."
4161 (interactive (pr-interactive-n-up-inout
4162 (if pr-print-using-ghostscript
4163 "PS print GS"
4164 "PS print")))
4165 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename
4166 (if pr-print-using-ghostscript
4167 "PS print GS "
4168 "PS print "))))
4169 (pr-ps-utility-process n-up ifilename outfile)
4170 (unless ofilename
4171 (pr-ps-file-ps-print outfile)
4172 (pr-delete-file outfile))))
4173
4174
4175 ;;;###autoload
4176 (defun pr-toggle-file-duplex ()
4177 "Toggle duplex for PostScript file."
4178 (interactive)
4179 (pr-toggle-file-duplex-menu t))
4180
4181
4182 ;;;###autoload
4183 (defun pr-toggle-file-tumble ()
4184 "Toggle tumble for PostScript file.
4185
4186 If tumble is off, produces a printing suitable for binding on the left or
4187 right.
4188 If tumble is on, produces a printing suitable for binding at the top or
4189 bottom."
4190 (interactive)
4191 (pr-toggle-file-tumble-menu t))
4192
4193
4194 ;;;###autoload
4195 (defun pr-toggle-file-landscape ()
4196 "Toggle landscape for PostScript file."
4197 (interactive)
4198 (pr-toggle-file-landscape-menu t))
4199
4200
4201 ;;;###autoload
4202 (defun pr-toggle-ghostscript ()
4203 "Toggle printing using ghostscript."
4204 (interactive)
4205 (pr-toggle-ghostscript-menu t))
4206
4207
4208 ;;;###autoload
4209 (defun pr-toggle-faces ()
4210 "Toggle printing with faces."
4211 (interactive)
4212 (pr-toggle-faces-menu t))
4213
4214
4215 ;;;###autoload
4216 (defun pr-toggle-spool ()
4217 "Toggle spooling."
4218 (interactive)
4219 (pr-toggle-spool-menu t))
4220
4221
4222 ;;;###autoload
4223 (defun pr-toggle-duplex ()
4224 "Toggle duplex."
4225 (interactive)
4226 (pr-toggle-duplex-menu t))
4227
4228
4229 ;;;###autoload
4230 (defun pr-toggle-tumble ()
4231 "Toggle tumble.
4232
4233 If tumble is off, produces a printing suitable for binding on the left or
4234 right.
4235 If tumble is on, produces a printing suitable for binding at the top or
4236 bottom."
4237 (interactive)
4238 (pr-toggle-tumble-menu t))
4239
4240
4241 ;;;###autoload
4242 (defun pr-toggle-landscape ()
4243 "Toggle landscape."
4244 (interactive)
4245 (pr-toggle-landscape-menu t))
4246
4247
4248 ;;;###autoload
4249 (defun pr-toggle-upside-down ()
4250 "Toggle upside-down."
4251 (interactive)
4252 (pr-toggle-upside-down-menu t))
4253
4254
4255 ;;;###autoload
4256 (defun pr-toggle-line ()
4257 "Toggle line number."
4258 (interactive)
4259 (pr-toggle-line-menu t))
4260
4261
4262 ;;;###autoload
4263 (defun pr-toggle-zebra ()
4264 "Toggle zebra stripes."
4265 (interactive)
4266 (pr-toggle-zebra-menu t))
4267
4268
4269 ;;;###autoload
4270 (defun pr-toggle-header ()
4271 "Toggle printing header."
4272 (interactive)
4273 (pr-toggle-header-menu t))
4274
4275
4276 ;;;###autoload
4277 (defun pr-toggle-header-frame ()
4278 "Toggle printing header frame."
4279 (interactive)
4280 (pr-toggle-header-frame-menu t))
4281
4282
4283 ;;;###autoload
4284 (defun pr-toggle-lock ()
4285 "Toggle menu lock."
4286 (interactive)
4287 (pr-toggle-lock-menu t))
4288
4289
4290 ;;;###autoload
4291 (defun pr-toggle-region ()
4292 "Toggle auto region."
4293 (interactive)
4294 (pr-toggle-region-menu t))
4295
4296
4297 ;;;###autoload
4298 (defun pr-toggle-mode ()
4299 "Toggle auto mode."
4300 (interactive)
4301 (pr-toggle-mode-menu t))
4302
4303
4304 ;;;###autoload
4305 (defun pr-customize (&rest ignore)
4306 "Customization of the `printing' group."
4307 (interactive)
4308 (customize-group 'printing))
4309
4310
4311 ;;;###autoload
4312 (defun lpr-customize (&rest ignore)
4313 "Customization of the `lpr' group."
4314 (interactive)
4315 (customize-group 'lpr))
4316
4317
4318 ;;;###autoload
4319 (defun pr-help (&rest ignore)
4320 "Help for the printing package."
4321 (interactive)
4322 (pr-show-setup pr-help-message "*Printing Help*"))
4323
4324
4325 ;;;###autoload
4326 (defun pr-ps-name ()
4327 "Interactively select a PostScript printer."
4328 (interactive)
4329 (pr-menu-set-ps-title
4330 (pr-complete-alist "PostScript printer"
4331 pr-ps-printer-alist pr-ps-name)))
4332
4333
4334 ;;;###autoload
4335 (defun pr-txt-name ()
4336 "Interactively select a text printer."
4337 (interactive)
4338 (pr-menu-set-txt-title
4339 (pr-complete-alist "Text printer"
4340 pr-txt-printer-alist pr-txt-name)))
4341
4342
4343 ;;;###autoload
4344 (defun pr-ps-utility ()
4345 "Interactively select a PostScript utility."
4346 (interactive)
4347 (pr-menu-set-utility-title
4348 (pr-complete-alist "Postscript utility"
4349 pr-ps-utility-alist pr-ps-utility)))
4350
4351
4352 ;;;###autoload
4353 (defun pr-show-ps-setup (&rest ignore)
4354 "Show current ps-print settings."
4355 (interactive)
4356 (pr-show-setup (ps-setup) "*PS Setup*"))
4357
4358
4359 ;;;###autoload
4360 (defun pr-show-pr-setup (&rest ignore)
4361 "Show current printing settings."
4362 (interactive)
4363 (pr-show-setup (pr-setup) "*PR Setup*"))
4364
4365
4366 ;;;###autoload
4367 (defun pr-show-lpr-setup (&rest ignore)
4368 "Show current lpr settings."
4369 (interactive)
4370 (pr-show-setup (lpr-setup) "*LPR Setup*"))
4371
4372
4373 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4374 ;; Fast Commands
4375
4376
4377 ;;;###autoload
4378 (defun pr-ps-fast-fire (n-up &optional select)
4379 "Fast fire function for PostScript printing.
4380
4381 If a region is active, the region will be printed instead of the whole buffer.
4382 Also if the current major-mode is defined in `pr-mode-alist', the settings in
4383 `pr-mode-alist' will be used, that is, the current buffer or region will be
4384 printed using `pr-ps-mode-ps-print'.
4385
4386
4387 Interactively, you have the following situations:
4388
4389 M-x pr-ps-fast-fire RET
4390 The command prompts the user for a N-UP value and printing will
4391 immediatelly be done using the current active printer.
4392
4393 C-u M-x pr-ps-fast-fire RET
4394 C-u 0 M-x pr-ps-fast-fire RET
4395 The command prompts the user for a N-UP value and also for a current
4396 PostScript printer, then printing will immediatelly be done using the new
4397 current active printer.
4398
4399 C-u 1 M-x pr-ps-fast-fire RET
4400 The command prompts the user for a N-UP value and also for a file name,
4401 and saves the PostScript image in that file instead of sending it to the
4402 printer.
4403
4404 C-u 2 M-x pr-ps-fast-fire RET
4405 The command prompts the user for a N-UP value, then for a current
4406 PostScript printer and, finally, for a file name. Then change the active
4407 printer to that choosen by user and saves the PostScript image in
4408 that file instead of sending it to the printer.
4409
4410
4411 Noninteractively, the argument N-UP should be a positive integer greater than
4412 zero and the argument SELECT is treated as follows:
4413
4414 If it's nil, send the image to the printer.
4415
4416 If it's a list or an integer lesser or equal to zero, the command prompts
4417 the user for a current PostScript printer, then printing will immediatelly
4418 be done using the new current active printer.
4419
4420 If it's an integer equal to 1, the command prompts the user for a file name
4421 and saves the PostScript image in that file instead of sending it to the
4422 printer.
4423
4424 If it's an integer greater or equal to 2, the command prompts the user for a
4425 current PostScript printer and for a file name. Then change the active
4426 printer to that choosen by user and saves the PostScript image in that file
4427 instead of sending it to the printer.
4428
4429 If it's a symbol which it's defined in `pr-ps-printer-alist', it's the new
4430 active printer and printing will immediatelly be done using the new active
4431 printer.
4432
4433 Otherwise, send the image to the printer.
4434
4435
4436 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
4437 are both set to t."
4438 (interactive (list (pr-interactive-n-up (pr-prompt-gs "PS print fast"))
4439 current-prefix-arg))
4440 (let ((pr-auto-region t)
4441 (pr-auto-mode t)
4442 filename)
4443 (cond ((null select))
4444 ((listp select)
4445 (pr-ps-name))
4446 ((and (symbolp select)
4447 (assq select pr-ps-printer-alist))
4448 (pr-menu-set-ps-title select))
4449 ((integerp select)
4450 (and (/= select 1)
4451 (pr-ps-name))
4452 (and (>= select 1) (not pr-spool-p)
4453 (setq filename (pr-ps-outfile-preprint
4454 (if pr-print-using-ghostscript
4455 "Fast GS "
4456 "Fast "))))))
4457 (pr-ps-buffer-ps-print
4458 (if (integerp n-up)
4459 (min (max n-up 1) 100)
4460 (error "n-up must be an integer greater than zero"))
4461 filename)))
4462
4463
4464 ;;;###autoload
4465 (defun pr-txt-fast-fire (&optional select-printer)
4466 "Fast fire function for text printing.
4467
4468 If a region is active, the region will be printed instead of the whole buffer.
4469 Also if the current major-mode is defined in `pr-mode-alist', the settings in
4470 `pr-mode-alist' will be used, that is, the current buffer or region will be
4471 printed using `pr-txt-mode'.
4472
4473 Interactively, when you use a prefix argument (C-u), the command prompts the
4474 user for a new active text printer.
4475
4476 Noninteractively, the argument SELECT-PRINTER is treated as follows:
4477
4478 If it's nil, the printing is sent to the current active text printer.
4479
4480 If it's a symbol which it's defined in `pr-txt-printer-alist', it's the new
4481 active printer and printing will immediatelly be done using the new active
4482 printer.
4483
4484 If it's non-nil, the command prompts the user for a new active text printer.
4485
4486 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
4487 are both set to t."
4488 (interactive (list current-prefix-arg))
4489 (cond ((null select-printer))
4490 ((and (symbolp select-printer)
4491 (assq select-printer pr-txt-printer-alist))
4492 (pr-menu-set-txt-title select-printer))
4493 (t
4494 (pr-txt-name)))
4495 (let ((pr-auto-region t)
4496 (pr-auto-mode t))
4497 (pr-txt-buffer)))
4498
4499
4500 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4501 ;; Utilities
4502
4503
4504 (defun pr-setup ()
4505 "Return the current `printing' setup.
4506
4507 This is *not* an interactive command.
4508 One way to see `printing' setup is to switch to a *Scratch* buffer and type:
4509
4510 M-: (insert (pr-setup)) RET
4511
4512 Or choose the menu option Printing/Show Settings/printing."
4513 (let (ps-prefix-quote)
4514 (mapconcat
4515 #'ps-print-quote
4516 (list
4517 (concat "\n;;; printing.el version " pr-version "\n")
4518 ";; internal vars"
4519 (ps-comment-string "emacs-version " emacs-version)
4520 (ps-comment-string "pr-txt-command " pr-txt-command)
4521 (ps-comment-string "pr-txt-switches "
4522 (pr-switches-string pr-txt-switches "pr-txt-switches"))
4523 (ps-comment-string "pr-txt-printer " pr-txt-printer)
4524 (ps-comment-string "pr-ps-command " pr-ps-command)
4525 (ps-comment-string "pr-ps-switches "
4526 (pr-switches-string pr-ps-switches "pr-ps-switches"))
4527 (ps-comment-string "pr-ps-printer-switch" pr-ps-printer-switch)
4528 (ps-comment-string "pr-ps-printer " pr-ps-printer)
4529 (ps-comment-string "pr-cygwin-system " pr-cygwin-system)
4530 (ps-comment-string "ps-windows-system " ps-windows-system)
4531 (ps-comment-string "ps-lp-system " ps-lp-system)
4532 nil
4533 '(14 . pr-path-style)
4534 '(14 . pr-path-alist)
4535 nil
4536 '(21 . pr-txt-name)
4537 '(21 . pr-txt-printer-alist)
4538 nil
4539 '(20 . pr-ps-name)
4540 '(20 . pr-ps-printer-alist)
4541 nil
4542 '(20 . pr-temp-dir)
4543 '(20 . pr-ps-temp-file)
4544 '(20 . pr-file-modes)
4545 '(20 . pr-delete-temp-file)
4546 '(20 . pr-list-directory)
4547 nil
4548 '(17 . pr-gv-command)
4549 '(17 . pr-gs-command)
4550 '(17 . pr-gs-switches)
4551 '(17 . pr-gs-device)
4552 '(17 . pr-gs-resolution)
4553 nil
4554 '(27 . pr-print-using-ghostscript)
4555 '(27 . pr-faces-p)
4556 '(27 . pr-spool-p)
4557 '(27 . pr-file-landscape)
4558 '(27 . pr-file-duplex)
4559 '(27 . pr-file-tumble)
4560 '(27 . pr-auto-region)
4561 '(27 . pr-auto-mode)
4562 nil
4563 '(20 . pr-ps-utility)
4564 '(20 . pr-ps-utility-alist)
4565 nil
4566 '(14 . pr-mode-alist)
4567 nil
4568 '(20 . pr-menu-lock)
4569 '(20 . pr-menu-char-height)
4570 '(20 . pr-menu-char-width)
4571 nil
4572 '(20 . pr-setting-database)
4573 nil
4574 '(22 . pr-visible-entry-list)
4575 nil
4576 '(22 . pr-buffer-verbose)
4577 '(22 . pr-buffer-name)
4578 '(22 . pr-buffer-name-ignore)
4579 ")\n\n;;; printing.el - end of settings\n")
4580 "\n")))
4581
4582
4583 (defun lpr-setup ()
4584 "Return the current `lpr' setup.
4585
4586 This is *not* an interactive command.
4587 One way to see `lpr' setup is to switch to a *Scratch* buffer and type:
4588
4589 M-: (insert (lpr-setup)) RET
4590
4591 Or choose the menu option Printing/Show Settings/lpr."
4592 (let (ps-prefix-quote)
4593 (mapconcat
4594 #'ps-print-quote
4595 (list
4596 "\n;;; lpr.el settings\n"
4597 (ps-comment-string "emacs-version" emacs-version)
4598 nil
4599 '(25 . printer-name)
4600 '(25 . lpr-switches)
4601 '(25 . lpr-add-switches)
4602 '(25 . lpr-command)
4603 '(25 . lpr-headers-switches)
4604 '(25 . print-region-function)
4605 '(25 . lpr-page-header-program)
4606 '(25 . lpr-page-header-switches)
4607 ")\n\n;;; lpr.el - end of settings\n")
4608 "\n")))
4609
4610
4611 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4612 ;; mh-e (adapted from mh-e-init.el -- Tom Vogels <tov@ece.cmu.edu>)
4613
4614
4615 (defalias 'pr-mh-get-msg-num 'mh-get-msg-num)
4616 (defalias 'pr-mh-show 'mh-show)
4617 (defalias 'pr-mh-start-of-uncleaned-message 'mh-start-of-uncleaned-message)
4618 (defvar mh-show-buffer nil)
4619
4620
4621 (defun pr-article-date ()
4622 "Find the date of an article or mail message in current buffer.
4623 Return only the dayname, if present, weekday, month, and year."
4624 (save-excursion
4625 (goto-char (point-min))
4626 (if (re-search-forward
4627 "^Date:[ \t]+\\(\\([A-Za-z]+, \\)?[0-9]+ [A-Za-z]+ [0-9]+\\)" nil t)
4628 (buffer-substring (match-beginning 1) (match-end 1))
4629 (format-time-string "%Y/%m/%d"))))
4630
4631
4632 (defun pr-mh-current-message ()
4633 "Go to mh-inbox current message."
4634 (let ((msg (or (pr-mh-get-msg-num nil) 0)))
4635 (pr-mh-show)
4636 (set-buffer mh-show-buffer)
4637 (goto-char (point-min))
4638 (pr-mh-start-of-uncleaned-message)
4639 (message "Printing message %d" msg)))
4640
4641
4642 (defun pr-mh-print-1 (n-up filename header-list)
4643 "Print mh-inbox current message in PostScript."
4644 (save-excursion
4645 (save-window-excursion
4646 (pr-mh-current-message)
4647 (pr-mode-print n-up filename header-list (point)))))
4648
4649
4650 (defun pr-mh-lpr-1 (header-list)
4651 "Print mh-inbox current message in text printer."
4652 (save-excursion
4653 (save-window-excursion
4654 (pr-mh-current-message)
4655 (pr-mode-lpr header-list (point)))))
4656
4657
4658 (defalias 'pr-mh-print-2 'pr-mode-print)
4659
4660
4661 (defalias 'pr-mh-lpr-2 'pr-mode-lpr)
4662
4663
4664 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4665 ;; rmail (hacked from ps-print.el)
4666
4667
4668 (defun pr-rmail-lpr (header-list)
4669 "Print RMAIL current message in text printer."
4670 (pr-lpr-message-from-summary header-list
4671 'rmail-buffer 'rmail-summary-buffer))
4672
4673
4674 (defun pr-rmail-print (n-up filename header-list)
4675 "Print RMAIL current message in PostScript."
4676 (pr-ps-message-from-summary n-up filename header-list
4677 'rmail-buffer 'rmail-summary-buffer))
4678
4679
4680 (defun pr-ps-message-from-summary (n-up filename header-list
4681 summary-buffer summary-default)
4682 "Print current message in PostScript."
4683 (let ((buf (or (and (boundp summary-buffer)
4684 (symbol-value summary-buffer))
4685 (symbol-value summary-default))))
4686 (and (get-buffer buf)
4687 (save-excursion
4688 (set-buffer buf)
4689 (pr-mode-print n-up filename header-list)))))
4690
4691
4692 (defun pr-lpr-message-from-summary (header-list summary-buffer summary-default)
4693 "Print current message in text printer."
4694 (let ((buf (or (and (boundp summary-buffer)
4695 (symbol-value summary-buffer))
4696 (symbol-value summary-default))))
4697 (and (get-buffer buf)
4698 (save-excursion
4699 (set-buffer buf)
4700 (pr-mode-lpr header-list)))))
4701
4702
4703 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4704 ;; gnus (hacked from ps-print.el)
4705
4706
4707 (defvar pr-gnus-article "*Article*")
4708
4709
4710 (defun pr-gnus-print (n-up filename header-list)
4711 "Print *Article* current message in PostScript."
4712 (pr-ps-message-from-summary n-up filename header-list
4713 'gnus-article-buffer 'pr-gnus-article))
4714
4715
4716 (defun pr-gnus-lpr (header-list)
4717 "Print *Article* current message in text printer."
4718 (pr-lpr-message-from-summary header-list
4719 'gnus-article-buffer 'pr-gnus-article))
4720
4721
4722 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4723 ;; vm (hacked from ps-print.el)
4724
4725
4726 (defvar pr-vm-summary "")
4727
4728
4729 (defun pr-vm-print (n-up filename header-list)
4730 "Print current vm message in PostScript."
4731 (pr-ps-message-from-summary n-up filename header-list
4732 'vm-mail-buffer 'pr-vm-summary))
4733
4734
4735 (defun pr-vm-lpr (header-list)
4736 "Print current vm message in text printer."
4737 (pr-lpr-message-from-summary header-list
4738 'vm-mail-buffer 'pr-vm-summary))
4739
4740
4741 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4742 ;; Mode Functions
4743
4744
4745 (defun pr-ps-mode (n-up filename)
4746 "If current major mode is declared, print it in PostScript."
4747 (let ((args (pr-mode-alist-p)))
4748 (if args
4749 (let ((fun (cdr args)))
4750 (funcall (car fun) n-up filename (cdr fun))
4751 t)
4752 (ding)
4753 (message "`%s' major mode not declared." major-mode)
4754 nil)))
4755
4756
4757 (defmacro pr-local-variable (header-list &rest body)
4758 `(save-excursion
4759 (let ((ps-header-lines (or (nth 0 ,header-list) ps-header-lines))
4760 (ps-left-header (or (nth 1 ,header-list) ps-left-header))
4761 (ps-right-header (or (nth 2 ,header-list) ps-right-header))
4762 ps-razzle-dazzle)
4763 (let ((local-var-list (pr-eval-local-alist (nthcdr 4 ,header-list))))
4764 ,@body
4765 (and (nth 3 ,header-list)
4766 (pr-kill-local-variable local-var-list))))))
4767
4768
4769 (defun pr-mode-print (n-up filename header-list &optional from to)
4770 "Print current major mode in PostScript."
4771 (pr-local-variable
4772 header-list
4773 (let ((file (pr-ps-file filename))
4774 (start (cond (from)
4775 ((pr-region-active-p) (region-beginning))
4776 (t nil)
4777 )))
4778 (pr-text2ps (pr-region-active-symbol start) n-up file start
4779 (cond (to)
4780 ((pr-region-active-p) (region-end))
4781 (from (point-max))
4782 ))
4783 (unless (or pr-spool-p filename)
4784 (pr-ps-file-print file)
4785 (pr-delete-file file)))))
4786
4787
4788 (defun pr-mode-lpr (header-list &optional from to)
4789 "Print current major mode in text printer."
4790 (pr-local-variable
4791 header-list
4792 (pr-txt-print (cond (from)
4793 ((pr-region-active-p) (region-beginning))
4794 (t (point-min)))
4795 (cond (to)
4796 ((pr-region-active-p) (region-end))
4797 (t (point-max))))))
4798
4799
4800 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4801 ;; Menu Lock
4802
4803
4804 (defconst pr-menu-entry-alist
4805 '((postscript . 3)
4806 (text . 3)
4807 (postscript-options . 9)
4808 (postscript-process . 3)
4809 (printing . 3)
4810 (help . 3)
4811 )
4812 "Alist that associates menu part with number of items per part.
4813
4814 It's used by `pr-menu-index'.
4815
4816 Each element has the form:
4817
4818 (MENU-PART . NUMBER-OF-ITEMS)
4819
4820 See `pr-visible-entry-alist'.")
4821
4822
4823 (defun pr-menu-index (entry index)
4824 (let ((base-list
4825 (cond ((eq entry 'text)
4826 '(postscript))
4827 ((eq entry 'postscript-options)
4828 '(postscript text))
4829 ((eq entry 'postscript-process)
4830 '(postscript text postscript-options))
4831 ((eq entry 'printing)
4832 '(postscript text postscript-options postscript-process))
4833 (t
4834 nil)
4835 ))
4836 key)
4837 (while base-list
4838 (setq key (car base-list)
4839 base-list (cdr base-list))
4840 (and (pr-visible-p key)
4841 (setq index (+ index
4842 (cdr (assq key pr-menu-entry-alist)))))))
4843 (+ index 2))
4844
4845
4846 (defvar pr-menu-position nil)
4847 (defvar pr-menu-state nil)
4848
4849
4850 (cond
4851 ((featurep 'xemacs)
4852 ;; XEmacs
4853 (defvar current-mouse-event nil) ; to avoid compilation gripes
4854 (defun pr-menu-position (entry index horizontal)
4855 (pr-x-make-event
4856 'button-release
4857 (list 'button 1
4858 'x (- (pr-x-event-x-pixel current-mouse-event) ; X
4859 (* horizontal pr-menu-char-width))
4860 'y (- (pr-x-event-y-pixel current-mouse-event) ; Y
4861 (* (pr-menu-index entry index) pr-menu-char-height)))))
4862 )
4863 (ps-windows-system
4864 ;; GNU Emacs for Windows 9x/NT
4865 (defun pr-menu-position (entry index horizontal)
4866 (let ((pos (cdr (pr-e-mouse-pixel-position))))
4867 (list
4868 (list (or (car pos) 0) ; X
4869 (- (or (cdr pos) 0) ; Y
4870 (* (pr-menu-index entry index) pr-menu-char-height)))
4871 (selected-frame)))) ; frame
4872 )
4873 (t
4874 ;; GNU Emacs
4875 (defun pr-menu-position (entry index horizontal)
4876 (let ((pos (cdr (pr-e-mouse-pixel-position))))
4877 (list
4878 (list (- (or (car pos) 0) ; X
4879 (* horizontal pr-menu-char-width))
4880 (- (or (cdr pos) 0) ; Y
4881 (* (pr-menu-index entry index) pr-menu-char-height)))
4882 (selected-frame)))) ; frame
4883 ))
4884
4885 (cond
4886 ((featurep 'xemacs)
4887 ;; XEmacs
4888 (defvar current-menubar nil) ; to avoid compilation gripes
4889 (defun pr-menu-lookup (path)
4890 (car (pr-x-find-menu-item current-menubar (cons "Printing" path))))
4891
4892 ;; XEmacs
4893 (defun pr-menu-lock (entry index horizontal state path)
4894 (when pr-menu-lock
4895 (or (and pr-menu-position (eq state pr-menu-state))
4896 (setq pr-menu-position (pr-menu-position entry index horizontal)
4897 pr-menu-state state))
4898 (let* ((menu (pr-menu-lookup path))
4899 (result (pr-x-get-popup-menu-response menu pr-menu-position)))
4900 (and (pr-x-misc-user-event-p result)
4901 (funcall (pr-x-event-function result)
4902 (pr-x-event-object result))))
4903 (setq pr-menu-position nil))))
4904
4905
4906 (t
4907 ;; GNU Emacs
4908 (defun pr-menu-lookup (path)
4909 (lookup-key global-map
4910 (if path
4911 (vconcat pr-menu-bar
4912 (mapcar 'pr-get-symbol
4913 (if (listp path)
4914 path
4915 (list path))))
4916 pr-menu-bar)))
4917
4918 ;; GNU Emacs
4919 (defun pr-menu-lock (entry index horizontal state path)
4920 (when pr-menu-lock
4921 (or (and pr-menu-position (eq state pr-menu-state))
4922 (setq pr-menu-position (pr-menu-position entry index horizontal)
4923 pr-menu-state state))
4924 (let* ((menu (pr-menu-lookup path))
4925 (result (x-popup-menu pr-menu-position menu)))
4926 (and result
4927 (let ((command (lookup-key menu (vconcat result))))
4928 (if (fboundp command)
4929 (funcall command)
4930 (eval command)))))
4931 (setq pr-menu-position nil)))))
4932
4933
4934 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4935 ;; Printer & Utility Selection
4936
4937
4938 (defun pr-update-var (var-sym alist)
4939 (or (assq (symbol-value var-sym) alist)
4940 (set var-sym (car (car alist)))))
4941
4942
4943 (defun pr-update-menus (&optional force)
4944 "Update utility, PostScript and text printer menus.
4945
4946 If FORCE is non-nil, update menus doesn't matter if `pr-ps-printer-alist',
4947 `pr-txt-printer-alist' or `pr-ps-utility-alist' were modified or not;
4948 otherwise, update PostScript printer menu iff `pr-ps-printer-menu-modified' is
4949 non-nil, update text printer menu iff `pr-txt-printer-menu-modified' is
4950 non-nil, and update PostScript File menus iff `pr-ps-utility-menu-modified' is
4951 non-nil.
4952
4953 If menu binding was not done, calls `pr-menu-bind'."
4954 (interactive "P")
4955 (if pr-menu-print-item ; since v6.8.4
4956 ;; There was no menu binding yet, so do it now!
4957 ;; This is a hack to be compatible with old versions of printing.
4958 ;; So, user does not need to change printing calling in init files.
4959 (pr-menu-bind)
4960 ;; Here menu binding is ok.
4961 (pr-update-var 'pr-ps-name pr-ps-printer-alist)
4962 (pr-update-var 'pr-txt-name pr-txt-printer-alist)
4963 (pr-update-var 'pr-ps-utility pr-ps-utility-alist)
4964 (pr-do-update-menus force)))
4965
4966
4967 (defvar pr-ps-printer-menu-modified t
4968 "Non-nil means `pr-ps-printer-alist' was modified and we need to update menu.")
4969 (defvar pr-txt-printer-menu-modified t
4970 "Non-nil means `pr-txt-printer-alist' was modified and we need to update menu.")
4971 (defvar pr-ps-utility-menu-modified t
4972 "Non-nil means `pr-ps-utility-alist' was modified and we need to update menu.")
4973
4974
4975 (defconst pr-even-or-odd-alist
4976 '((nil . "Print All Pages")
4977 (even-page . "Print Even Pages")
4978 (odd-page . "Print Odd Pages")
4979 (even-sheet . "Print Even Sheets")
4980 (odd-sheet . "Print Odd Sheets")))
4981
4982
4983 (defun pr-menu-create (name alist var-sym fun entry index)
4984 (cons name
4985 (mapcar
4986 #'(lambda (elt)
4987 (let ((sym (car elt)))
4988 (vector
4989 (symbol-name sym)
4990 (list fun (list 'quote sym) nil (list 'quote entry) index)
4991 :style 'radio
4992 :selected (list 'eq var-sym (list 'quote sym)))))
4993 alist)))
4994
4995
4996 (cond
4997 ((featurep 'xemacs)
4998 ;; XEmacs
4999 (defalias 'pr-update-mode-line 'set-menubar-dirty-flag)
5000
5001 ;; XEmacs
5002 (defvar pr-ps-name-old "PostScript Printers")
5003 (defvar pr-txt-name-old "Text Printers")
5004 (defvar pr-ps-utility-old "PostScript Utility")
5005 (defvar pr-even-or-odd-old "Print All Pages")
5006
5007 ;; XEmacs
5008 (defun pr-do-update-menus (&optional force)
5009 (pr-menu-alist pr-ps-printer-alist
5010 'pr-ps-name
5011 'pr-menu-set-ps-title
5012 '("Printing")
5013 'pr-ps-printer-menu-modified
5014 force
5015 pr-ps-name-old
5016 'postscript 2)
5017 (pr-menu-alist pr-txt-printer-alist
5018 'pr-txt-name
5019 'pr-menu-set-txt-title
5020 '("Printing")
5021 'pr-txt-printer-menu-modified
5022 force
5023 pr-txt-name-old
5024 'text 2)
5025 (let ((save-var pr-ps-utility-menu-modified))
5026 (pr-menu-alist pr-ps-utility-alist
5027 'pr-ps-utility
5028 'pr-menu-set-utility-title
5029 '("Printing" "PostScript Print" "File")
5030 'save-var
5031 force
5032 pr-ps-utility-old
5033 nil 1))
5034 (pr-menu-alist pr-ps-utility-alist
5035 'pr-ps-utility
5036 'pr-menu-set-utility-title
5037 '("Printing" "PostScript Preview" "File")
5038 'pr-ps-utility-menu-modified
5039 force
5040 pr-ps-utility-old
5041 nil 1)
5042 (pr-even-or-odd-pages ps-even-or-odd-pages force))
5043
5044 ;; XEmacs
5045 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
5046 entry index)
5047 (when (and alist (or force (symbol-value modified-sym)))
5048 (pr-xemacs-global-menubar
5049 (pr-x-add-submenu menu-path
5050 (pr-menu-create name alist var-sym
5051 fun entry index)))
5052 (funcall fun (symbol-value var-sym))
5053 (set modified-sym nil)))
5054
5055 ;; XEmacs
5056 (defun pr-relabel-menu-item (newname var-sym)
5057 (pr-xemacs-global-menubar
5058 (pr-x-relabel-menu-item
5059 (list "Printing" (symbol-value var-sym))
5060 newname)
5061 (set var-sym newname)))
5062
5063 ;; XEmacs
5064 (defun pr-menu-set-ps-title (value &optional item entry index)
5065 (pr-relabel-menu-item (format "PostScript Printer: %s" value)
5066 'pr-ps-name-old)
5067 (pr-ps-set-printer value)
5068 (and index
5069 (pr-menu-lock entry index 12 'toggle nil)))
5070
5071 ;; XEmacs
5072 (defun pr-menu-set-txt-title (value &optional item entry index)
5073 (pr-relabel-menu-item (format "Text Printer: %s" value)
5074 'pr-txt-name-old)
5075 (pr-txt-set-printer value)
5076 (and index
5077 (pr-menu-lock entry index 12 'toggle nil)))
5078
5079 ;; XEmacs
5080 (defun pr-menu-set-utility-title (value &optional item entry index)
5081 (pr-xemacs-global-menubar
5082 (let ((newname (format "%s" value)))
5083 (pr-x-relabel-menu-item
5084 (list "Printing" "PostScript Print" "File" pr-ps-utility-old)
5085 newname)
5086 (pr-x-relabel-menu-item
5087 (list "Printing" "PostScript Preview" "File" pr-ps-utility-old)
5088 newname)
5089 (setq pr-ps-utility-old newname)))
5090 (pr-ps-set-utility value)
5091 (and index
5092 (pr-menu-lock entry index 5 nil '("PostScript Print" "File"))))
5093
5094 ;; XEmacs
5095 (defun pr-even-or-odd-pages (value &optional no-lock)
5096 (pr-relabel-menu-item (cdr (assq value pr-even-or-odd-alist))
5097 'pr-even-or-odd-old)
5098 (setq ps-even-or-odd-pages value)
5099 (or no-lock
5100 (pr-menu-lock 'postscript-options 8 12 'toggle nil))))
5101
5102
5103 (t
5104 ;; GNU Emacs
5105 (defalias 'pr-update-mode-line 'force-mode-line-update)
5106
5107 ;; GNU Emacs
5108 (defun pr-do-update-menus (&optional force)
5109 (pr-menu-alist pr-ps-printer-alist
5110 'pr-ps-name
5111 'pr-menu-set-ps-title
5112 "PostScript Printers"
5113 'pr-ps-printer-menu-modified
5114 force
5115 "PostScript Printers"
5116 'postscript 2)
5117 (pr-menu-alist pr-txt-printer-alist
5118 'pr-txt-name
5119 'pr-menu-set-txt-title
5120 "Text Printers"
5121 'pr-txt-printer-menu-modified
5122 force
5123 "Text Printers"
5124 'text 2)
5125 (let ((save-var pr-ps-utility-menu-modified))
5126 (pr-menu-alist pr-ps-utility-alist
5127 'pr-ps-utility
5128 'pr-menu-set-utility-title
5129 '("PostScript Print" "File" "PostScript Utility")
5130 'save-var
5131 force
5132 "PostScript Utility"
5133 nil 1))
5134 (pr-menu-alist pr-ps-utility-alist
5135 'pr-ps-utility
5136 'pr-menu-set-utility-title
5137 '("PostScript Preview" "File" "PostScript Utility")
5138 'pr-ps-utility-menu-modified
5139 force
5140 "PostScript Utility"
5141 nil 1)
5142 (pr-even-or-odd-pages ps-even-or-odd-pages force))
5143
5144 ;; GNU Emacs
5145 (defun pr-menu-get-item (name-list)
5146 ;; NAME-LIST is a string or a list of strings.
5147 (or (listp name-list)
5148 (setq name-list (list name-list)))
5149 (and name-list
5150 (let* ((reversed (reverse name-list))
5151 (name (pr-get-symbol (car reversed)))
5152 (path (nreverse (cdr reversed)))
5153 (menu (lookup-key
5154 global-map
5155 (vconcat pr-menu-bar
5156 (mapcar 'pr-get-symbol path)))))
5157 (assq name (nthcdr 2 menu)))))
5158
5159 ;; GNU Emacs
5160 (defvar pr-temp-menu nil)
5161
5162 ;; GNU Emacs
5163 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
5164 entry index)
5165 (when (and alist (or force (symbol-value modified-sym)))
5166 (easy-menu-define pr-temp-menu nil ""
5167 (pr-menu-create name alist var-sym fun entry index))
5168 (let ((item (pr-menu-get-item menu-path)))
5169 (and item
5170 (let* ((binding (nthcdr 3 item))
5171 (key-binding (cdr binding)))
5172 (setcar binding pr-temp-menu)
5173 (and key-binding (listp (car key-binding))
5174 (setcdr binding (cdr key-binding))) ; skip KEY-BINDING
5175 (funcall fun (symbol-value var-sym) item))))
5176 (set modified-sym nil)))
5177
5178 ;; GNU Emacs
5179 (defun pr-menu-set-item-name (item name)
5180 (and item
5181 (setcar (nthcdr 2 item) name))) ; ITEM-NAME
5182
5183 ;; GNU Emacs
5184 (defun pr-menu-set-ps-title (value &optional item entry index)
5185 (pr-menu-set-item-name (or item
5186 (pr-menu-get-item "PostScript Printers"))
5187 (format "PostScript Printer: %s" value))
5188 (pr-ps-set-printer value)
5189 (and index
5190 (pr-menu-lock entry index 12 'toggle nil)))
5191
5192 ;; GNU Emacs
5193 (defun pr-menu-set-txt-title (value &optional item entry index)
5194 (pr-menu-set-item-name (or item
5195 (pr-menu-get-item "Text Printers"))
5196 (format "Text Printer: %s" value))
5197 (pr-txt-set-printer value)
5198 (and index
5199 (pr-menu-lock entry index 12 'toggle nil)))
5200
5201 ;; GNU Emacs
5202 (defun pr-menu-set-utility-title (value &optional item entry index)
5203 (let ((name (symbol-name value)))
5204 (if item
5205 (pr-menu-set-item-name item name)
5206 (pr-menu-set-item-name
5207 (pr-menu-get-item
5208 '("PostScript Print" "File" "PostScript Utility"))
5209 name)
5210 (pr-menu-set-item-name
5211 (pr-menu-get-item
5212 '("PostScript Preview" "File" "PostScript Utility"))
5213 name)))
5214 (pr-ps-set-utility value)
5215 (and index
5216 (pr-menu-lock entry index 5 nil '("PostScript Print" "File"))))
5217
5218 ;; GNU Emacs
5219 (defun pr-even-or-odd-pages (value &optional no-lock)
5220 (pr-menu-set-item-name (pr-menu-get-item "Print All Pages")
5221 (cdr (assq value pr-even-or-odd-alist)))
5222 (setq ps-even-or-odd-pages value)
5223 (or no-lock
5224 (pr-menu-lock 'postscript-options 8 12 'toggle nil)))))
5225
5226
5227 (defun pr-ps-set-utility (value)
5228 (let ((item (cdr (assq value pr-ps-utility-alist))))
5229 (or item
5230 (error
5231 "Invalid PostScript utility name `%s' for variable `pr-ps-utility'"
5232 value))
5233 (setq pr-ps-utility value)
5234 (pr-eval-alist (nthcdr 9 item)))
5235 (pr-update-mode-line))
5236
5237
5238 (defun pr-ps-set-printer (value)
5239 (let ((ps (cdr (assq value pr-ps-printer-alist))))
5240 (or ps
5241 (error
5242 "Invalid PostScript printer name `%s' for variable `pr-ps-name'"
5243 value))
5244 (setq pr-ps-name value
5245 pr-ps-command (pr-dosify-file-name (nth 0 ps))
5246 pr-ps-switches (nth 1 ps)
5247 pr-ps-printer-switch (nth 2 ps)
5248 pr-ps-printer (nth 3 ps))
5249 (or (stringp pr-ps-command)
5250 (setq pr-ps-command
5251 (cond (ps-windows-system "print")
5252 (ps-lp-system "lp")
5253 (t "lpr")
5254 )))
5255 (or (stringp pr-ps-printer-switch)
5256 (setq pr-ps-printer-switch
5257 (cond (ps-windows-system "/D:")
5258 (ps-lp-system "-d")
5259 (t "-P")
5260 )))
5261 (pr-eval-alist (nthcdr 4 ps)))
5262 (pr-update-mode-line))
5263
5264
5265 (defun pr-txt-set-printer (value)
5266 (let ((txt (cdr (assq value pr-txt-printer-alist))))
5267 (or txt
5268 (error "Invalid text printer name `%s' for variable `pr-txt-name'"
5269 value))
5270 (setq pr-txt-name value
5271 pr-txt-command (pr-dosify-file-name (nth 0 txt))
5272 pr-txt-switches (nth 1 txt)
5273 pr-txt-printer (nth 2 txt)))
5274 (or (stringp pr-txt-command)
5275 (setq pr-txt-command
5276 (cond (ps-windows-system "print")
5277 (ps-lp-system "lp")
5278 (t "lpr")
5279 )))
5280 (pr-update-mode-line))
5281
5282
5283 (defun pr-eval-alist (alist)
5284 (mapcar #'(lambda (option)
5285 (let ((var-sym (car option))
5286 (value (cdr option)))
5287 (if (eq var-sym 'inherits-from:)
5288 (pr-eval-setting-alist value 'global)
5289 (set var-sym (eval value)))))
5290 alist))
5291
5292
5293 (defun pr-eval-local-alist (alist)
5294 (let (local-list)
5295 (mapcar #'(lambda (option)
5296 (let ((var-sym (car option))
5297 (value (cdr option)))
5298 (setq local-list
5299 (if (eq var-sym 'inherits-from:)
5300 (nconc (pr-eval-setting-alist value) local-list)
5301 (set (make-local-variable var-sym) (eval value))
5302 (cons var-sym local-list)))))
5303 alist)
5304 local-list))
5305
5306
5307 (defun pr-eval-setting-alist (key &optional global old)
5308 (let ((setting (cdr (assq key pr-setting-database))))
5309 (and setting
5310 (let ((inherits (nth 0 setting))
5311 (local (nth 1 setting))
5312 (kill (nth 2 setting))
5313 local-list)
5314 (and local global
5315 (progn
5316 (ding)
5317 (message "There are local buffer settings for `%S'." key)
5318 (setq global nil)))
5319 (and inherits
5320 (if (memq inherits old)
5321 (error "Circular inheritance for `%S'" inherits)
5322 (setq local-list
5323 (pr-eval-setting-alist inherits global
5324 (cons inherits old)))))
5325 (mapcar
5326 (cond ((not local) ; global settings
5327 #'(lambda (option)
5328 (let ((var-sym (car option)))
5329 (or (eq var-sym 'inherits-from:)
5330 (set var-sym (eval (cdr option)))))))
5331 (kill ; local settings with killing
5332 #'(lambda (option)
5333 (let ((var-sym (car option)))
5334 (unless (eq var-sym 'inherits-from:)
5335 (setq local-list (cons var-sym local-list))
5336 (set (make-local-variable var-sym)
5337 (eval (cdr option)))))))
5338 (t ; local settings without killing
5339 #'(lambda (option)
5340 (let ((var-sym (car option)))
5341 (or (eq var-sym 'inherits-from:)
5342 (set (make-local-variable var-sym)
5343 (eval (cdr option))))))))
5344 (nthcdr 3 setting))
5345 local-list))))
5346
5347
5348 (defun pr-kill-local-variable (local-var-list)
5349 (mapcar 'kill-local-variable local-var-list))
5350
5351
5352 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5353 ;; Internal Functions (II)
5354
5355
5356 (defun pr-toggle (var-sym mess entry index horizontal state
5357 &optional path no-menu)
5358 (set var-sym (not (symbol-value var-sym)))
5359 (message "%s is %s" mess (if (symbol-value var-sym) "on" "off"))
5360 (or no-menu
5361 (pr-menu-lock entry index horizontal state path)))
5362
5363
5364 (defun pr-toggle-file-duplex-menu (&optional no-menu)
5365 (interactive)
5366 (pr-toggle 'pr-file-duplex "PS file duplex" nil 7 5 nil
5367 '("PostScript Print" "File") no-menu))
5368
5369
5370 (defun pr-toggle-file-tumble-menu (&optional no-menu)
5371 (interactive)
5372 (pr-toggle 'pr-file-tumble "PS file tumble" nil 8 5 nil
5373 '("PostScript Print" "File") no-menu))
5374
5375
5376 (defun pr-toggle-file-landscape-menu (&optional no-menu)
5377 (interactive)
5378 (pr-toggle 'pr-file-landscape "PS file landscape" nil 6 5 nil
5379 '("PostScript Print" "File") no-menu))
5380
5381
5382 (defun pr-toggle-ghostscript-menu (&optional no-menu)
5383 (interactive)
5384 (pr-toggle 'pr-print-using-ghostscript "Printing using ghostscript"
5385 'postscript-process 2 12 'toggle nil no-menu))
5386
5387
5388 (defun pr-toggle-faces-menu (&optional no-menu)
5389 (interactive)
5390 (pr-toggle 'pr-faces-p "Printing with faces"
5391 'postscript-process 1 12 'toggle nil no-menu))
5392
5393
5394 (defun pr-toggle-spool-menu (&optional no-menu)
5395 (interactive)
5396 (pr-toggle 'pr-spool-p "Spooling printing"
5397 'postscript-process 0 12 'toggle nil no-menu))
5398
5399
5400 (defun pr-toggle-duplex-menu (&optional no-menu)
5401 (interactive)
5402 (pr-toggle 'ps-spool-duplex "Printing duplex"
5403 'postscript-options 5 12 'toggle nil no-menu))
5404
5405
5406 (defun pr-toggle-tumble-menu (&optional no-menu)
5407 (interactive)
5408 (pr-toggle 'ps-spool-tumble "Tumble"
5409 'postscript-options 6 12 'toggle nil no-menu))
5410
5411
5412 (defun pr-toggle-landscape-menu (&optional no-menu)
5413 (interactive)
5414 (pr-toggle 'ps-landscape-mode "Landscape"
5415 'postscript-options 0 12 'toggle nil no-menu))
5416
5417
5418 (defun pr-toggle-upside-down-menu (&optional no-menu)
5419 (interactive)
5420 (pr-toggle 'ps-print-upside-down "Upside-Down"
5421 'postscript-options 7 12 'toggle nil no-menu))
5422
5423
5424 (defun pr-toggle-line-menu (&optional no-menu)
5425 (interactive)
5426 (pr-toggle 'ps-line-number "Line number"
5427 'postscript-options 3 12 'toggle nil no-menu))
5428
5429
5430 (defun pr-toggle-zebra-menu (&optional no-menu)
5431 (interactive)
5432 (pr-toggle 'ps-zebra-stripes "Zebra stripe"
5433 'postscript-options 4 12 'toggle nil no-menu))
5434
5435
5436 (defun pr-toggle-header-menu (&optional no-menu)
5437 (interactive)
5438 (pr-toggle 'ps-print-header "Print header"
5439 'postscript-options 1 12 'toggle nil no-menu))
5440
5441
5442 (defun pr-toggle-header-frame-menu (&optional no-menu)
5443 (interactive)
5444 (pr-toggle 'ps-print-header-frame "Print header frame"
5445 'postscript-options 2 12 'toggle nil no-menu))
5446
5447
5448 (defun pr-toggle-lock-menu (&optional no-menu)
5449 (interactive)
5450 (pr-toggle 'pr-menu-lock "Menu lock"
5451 'printing 2 12 'toggle nil no-menu))
5452
5453
5454 (defun pr-toggle-region-menu (&optional no-menu)
5455 (interactive)
5456 (pr-toggle 'pr-auto-region "Auto region"
5457 'printing 0 12 'toggle nil no-menu))
5458
5459
5460 (defun pr-toggle-mode-menu (&optional no-menu)
5461 (interactive)
5462 (pr-toggle 'pr-auto-mode "Auto mode"
5463 'printing 1 12 'toggle nil no-menu))
5464
5465
5466 (defun pr-prompt (str)
5467 (if (pr-auto-mode-p)
5468 (concat str " mode")
5469 (pr-region-active-string str)))
5470
5471
5472 (defun pr-prompt-region (str)
5473 (concat str (if (pr-auto-mode-p)
5474 " mode"
5475 " region")))
5476
5477
5478 (defun pr-prompt-gs (str)
5479 (if (pr-using-ghostscript-p)
5480 (concat str " GS")
5481 str))
5482
5483
5484 (defun pr-region-active-symbol (&optional region-p)
5485 (if (or region-p (pr-region-active-p))
5486 'region
5487 'buffer))
5488
5489
5490 (defun pr-region-active-string (prefix)
5491 (concat prefix
5492 (if (pr-region-active-p)
5493 " region"
5494 " buffer")))
5495
5496
5497 (defun pr-show-setup (settings buffer-name)
5498 (with-output-to-temp-buffer buffer-name
5499 (princ settings)
5500 (print-help-return-message)))
5501
5502
5503 (defun pr-complete-alist (prompt alist default)
5504 (let ((collection (mapcar #'(lambda (elt)
5505 (setq elt (car elt))
5506 (cons (symbol-name elt) elt))
5507 alist)))
5508 (cdr (assoc (completing-read (concat prompt ": ")
5509 collection nil t
5510 (symbol-name default) nil
5511 (symbol-name default))
5512 collection))))
5513
5514
5515 (defun pr-delete-file (file)
5516 (and pr-delete-temp-file (file-exists-p file)
5517 (delete-file file)))
5518
5519
5520 (defun pr-expand-file-name (filename)
5521 (pr-dosify-file-name (expand-file-name filename)))
5522
5523
5524 (defun pr-ps-outfile-preprint (&optional mess)
5525 (let* ((prompt (format "%soutput PostScript file name: " (or mess "")))
5526 (res (read-file-name prompt default-directory "" nil)))
5527 (while (cond ((not (file-writable-p res))
5528 (ding)
5529 (setq prompt "is unwritable"))
5530 ((file-directory-p res)
5531 (ding)
5532 (setq prompt "is a directory"))
5533 ((file-exists-p res)
5534 (ding)
5535 (setq prompt "exists")
5536 (not (y-or-n-p (format "File `%s' exists; overwrite? "
5537 res))))
5538 (t nil))
5539 (setq res (read-file-name
5540 (format "File %s; PostScript file: " prompt)
5541 (file-name-directory res) nil nil
5542 (file-name-nondirectory res))))
5543 (pr-expand-file-name res)))
5544
5545
5546 (defun pr-ps-infile-preprint (&optional mess)
5547 (let* ((prompt (format "%sinput PostScript file name: " (or mess "")))
5548 (res (read-file-name prompt default-directory "" nil)))
5549 (while (cond ((not (file-exists-p res))
5550 (ding)
5551 (setq prompt "doesn't exist"))
5552 ((not (file-readable-p res))
5553 (ding)
5554 (setq prompt "is unreadable"))
5555 ((file-directory-p res)
5556 (ding)
5557 (setq prompt "is a directory"))
5558 (t nil))
5559 (setq res (read-file-name
5560 (format "File %s; PostScript file: " prompt)
5561 (file-name-directory res) nil nil
5562 (file-name-nondirectory res))))
5563 (pr-expand-file-name res)))
5564
5565
5566 (defun pr-ps-utility-args (n-up-sym infile-sym outfile-sym prompt)
5567 ;; check arguments for PostScript file processing.
5568 ;; n-up
5569 (or (symbol-value n-up-sym)
5570 (set n-up-sym (pr-interactive-n-up prompt)))
5571 ;; input file
5572 (and (eq (symbol-value infile-sym) t)
5573 (set infile-sym (pr-ps-infile-preprint prompt)))
5574 (or (symbol-value infile-sym)
5575 (error "%s: input PostScript file name is missing" prompt))
5576 (set infile-sym (pr-dosify-file-name (symbol-value infile-sym)))
5577 ;; output file
5578 (and (eq (symbol-value outfile-sym) t)
5579 (set outfile-sym (and current-prefix-arg
5580 (pr-ps-outfile-preprint prompt))))
5581 (and (symbol-value outfile-sym)
5582 (set outfile-sym (pr-dosify-file-name (symbol-value outfile-sym))))
5583 (pr-ps-file (symbol-value outfile-sym)))
5584
5585
5586 (defun pr-ps-utility-process (n-up infile outfile)
5587 ;; activate utility to process a PostScript file.
5588 (let (item)
5589 (and (stringp infile) (file-exists-p infile)
5590 (setq item (cdr (assq pr-ps-utility pr-ps-utility-alist)))
5591 (pr-call-process (nth 0 item)
5592 (pr-switches-string (nth 1 item)
5593 "pr-ps-utility-alist entry")
5594 (pr-switches-string (nth 8 item)
5595 "pr-ps-utility-alist entry")
5596 (and (nth 2 item)
5597 (format (nth 2 item) ps-paper-type))
5598 (format (nth 3 item) n-up)
5599 (and pr-file-landscape (nth 4 item))
5600 (and pr-file-duplex (nth 5 item))
5601 (and pr-file-tumble (nth 6 item))
5602 (pr-expand-file-name infile)
5603 (nth 7 item)
5604 (pr-expand-file-name outfile)))))
5605
5606
5607 (defun pr-remove-nil-from-list (lst)
5608 (while (and lst (null (car lst)))
5609 (setq lst (cdr lst)))
5610 (let ((b lst)
5611 (l (cdr lst)))
5612 (while l
5613 (if (car l)
5614 (setq b l
5615 l (cdr l))
5616 (setq l (cdr l))
5617 (setcdr b l))))
5618 lst)
5619
5620
5621 (defun pr-call-process (command &rest args)
5622 (let ((buffer (get-buffer-create "*Printing Command Output*"))
5623 (cmd (pr-command command))
5624 status)
5625 (setq args (pr-remove-nil-from-list args))
5626 ;; *Printing Command Output* == show command & args
5627 (save-excursion
5628 (set-buffer buffer)
5629 (goto-char (point-max))
5630 (insert (format "%s %S\n" cmd args)))
5631 ;; *Printing Command Output* == show any return message from command
5632 (pr-save-file-modes
5633 (setq status
5634 (condition-case data
5635 (apply 'call-process cmd nil buffer nil args)
5636 ((quit error)
5637 (error-message-string data)))))
5638 ;; *Printing Command Output* == show exit status
5639 (save-excursion
5640 (set-buffer buffer)
5641 (goto-char (point-max))
5642 (insert (format "Exit status: %s\n\n" status)))
5643 ;; message if error status
5644 (if (or (stringp status)
5645 (and (integerp status) (/= status 0)))
5646 (message
5647 "Printing error status: %s (see *Printing Command Output* buffer)"
5648 status))))
5649
5650
5651 (defun pr-txt-print (from to)
5652 (let ((lpr-command (pr-standard-file-name (pr-command pr-txt-command)))
5653 (lpr-switches (pr-switches pr-txt-switches "pr-txt-switches"))
5654 (printer-name pr-txt-printer))
5655 (lpr-region from to)))
5656
5657
5658 (defun pr-switches-string (switches mess)
5659 ;; If SWITCHES is nil, return nil.
5660 ;; Otherwise, return the list of string in a string.
5661 (and switches
5662 (mapconcat 'identity (pr-switches switches mess) " ")))
5663
5664
5665 (defun pr-switches (switches mess)
5666 (or (listp switches)
5667 (error "%S should have a list of strings" mess))
5668 (ps-flatten-list ; dynamic evaluation
5669 (mapcar 'ps-eval-switch switches)))
5670
5671
5672 (defun pr-ps-preview (kind n-up filename mess)
5673 (pr-set-n-up-and-filename 'n-up 'filename mess)
5674 (let ((file (pr-ps-file filename)))
5675 (pr-text2ps kind n-up file)
5676 (or pr-spool-p (pr-ps-file-preview file))))
5677
5678
5679 (defun pr-ps-using-ghostscript (kind n-up filename mess)
5680 (pr-set-n-up-and-filename 'n-up 'filename mess)
5681 (let ((file (pr-ps-file filename)))
5682 (pr-text2ps kind n-up file)
5683 (unless (or pr-spool-p filename)
5684 (pr-ps-file-using-ghostscript file)
5685 (pr-delete-file file))))
5686
5687
5688 (defun pr-ps-print (kind n-up filename mess)
5689 (pr-set-n-up-and-filename 'n-up 'filename mess)
5690 (let ((file (pr-ps-file filename)))
5691 (pr-text2ps kind n-up file)
5692 (unless (or pr-spool-p filename)
5693 (pr-ps-file-print file)
5694 (pr-delete-file file))))
5695
5696
5697 (defun pr-ps-file (&optional filename)
5698 (pr-dosify-file-name (or filename
5699 (make-temp-file
5700 (convert-standard-filename
5701 (expand-file-name pr-ps-temp-file pr-temp-dir))
5702 nil ".ps"))))
5703
5704
5705 (defun pr-interactive-n-up (mess)
5706 (or (stringp mess) (setq mess "*"))
5707 (save-match-data
5708 (let* ((fmt-prompt "%s[%s] N-up printing: (default 1) ")
5709 (prompt "")
5710 (str (pr-f-read-string (format fmt-prompt prompt mess) "1" nil "1"))
5711 int)
5712 (while (if (string-match "^\\s *[0-9]+$" str)
5713 (setq int (string-to-number str)
5714 prompt (cond ((< int 1) "Integer below 1; ")
5715 ((> int 100) "Integer above 100; ")
5716 (t nil)))
5717 (setq prompt "Invalid integer syntax; "))
5718 (ding)
5719 (setq str
5720 (pr-f-read-string (format fmt-prompt prompt mess) str nil "1")))
5721 int)))
5722
5723
5724 (defun pr-interactive-dir (mess)
5725 (let* ((dir-name (file-name-directory (or (buffer-file-name)
5726 default-directory)))
5727 (fmt-prompt (concat "%s[" mess "] Directory to print: "))
5728 (dir (read-file-name (format fmt-prompt "")
5729 "" dir-name nil dir-name))
5730 prompt)
5731 (while (cond ((not (file-directory-p dir))
5732 (ding)
5733 (setq prompt "It's not a directory! "))
5734 ((not (file-readable-p dir))
5735 (ding)
5736 (setq prompt "Directory is unreadable! "))
5737 (t nil))
5738 (setq dir-name (file-name-directory dir)
5739 dir (read-file-name (format fmt-prompt prompt)
5740 "" dir-name nil dir-name)))
5741 (file-name-as-directory dir)))
5742
5743
5744 (defun pr-interactive-regexp (mess)
5745 (pr-f-read-string (format "[%s] File regexp to print: " mess) "" nil ""))
5746
5747
5748 (defun pr-interactive-dir-args (mess)
5749 (list
5750 ;; get directory argument
5751 (pr-interactive-dir mess)
5752 ;; get file name regexp
5753 (pr-interactive-regexp mess)))
5754
5755
5756 (defun pr-interactive-ps-dir-args (mess)
5757 (list
5758 ;; get n-up argument
5759 (pr-interactive-n-up mess)
5760 ;; get directory argument
5761 (pr-interactive-dir mess)
5762 ;; get file name regexp
5763 (pr-interactive-regexp mess)
5764 ;; get output file name
5765 (and (not pr-spool-p)
5766 (ps-print-preprint current-prefix-arg))))
5767
5768
5769 (defun pr-interactive-n-up-file (mess)
5770 (list
5771 ;; get n-up argument
5772 (pr-interactive-n-up mess)
5773 ;; get output file name
5774 (and (not pr-spool-p)
5775 (ps-print-preprint current-prefix-arg))))
5776
5777
5778 (defun pr-interactive-n-up-inout (mess)
5779 (list
5780 ;; get n-up argument
5781 (pr-interactive-n-up mess)
5782 ;; get input file name
5783 (pr-ps-infile-preprint (concat mess " "))
5784 ;; get output file name
5785 (ps-print-preprint current-prefix-arg)))
5786
5787
5788 (defun pr-set-outfilename (filename-sym)
5789 (and (not pr-spool-p)
5790 (eq (symbol-value filename-sym) t)
5791 (set filename-sym (and current-prefix-arg
5792 (ps-print-preprint current-prefix-arg))))
5793 (and (symbol-value filename-sym)
5794 (set filename-sym (pr-dosify-file-name (symbol-value filename-sym)))))
5795
5796
5797 (defun pr-set-n-up-and-filename (n-up-sym filename-sym mess)
5798 ;; n-up
5799 (or (symbol-value n-up-sym)
5800 (set n-up-sym (pr-interactive-n-up mess)))
5801 ;; output file
5802 (pr-set-outfilename filename-sym))
5803
5804
5805 (defun pr-set-dir-args (dir-sym regexp-sym mess)
5806 ;; directory
5807 (or (symbol-value dir-sym)
5808 (set dir-sym (pr-interactive-dir mess)))
5809 ;; file name regexp
5810 (or (symbol-value regexp-sym)
5811 (set regexp-sym (pr-interactive-regexp mess))))
5812
5813
5814 (defun pr-set-ps-dir-args (n-up-sym dir-sym regexp-sym filename-sym mess)
5815 ;; n-up
5816 (or (symbol-value n-up-sym)
5817 (set n-up-sym (pr-interactive-n-up mess)))
5818 ;; directory & file name regexp
5819 (pr-set-dir-args dir-sym regexp-sym mess)
5820 ;; output file
5821 (pr-set-outfilename filename-sym))
5822
5823
5824 (defun pr-find-buffer-visiting (file)
5825 (if (not (file-directory-p file))
5826 (find-buffer-visiting (if ps-windows-system
5827 (downcase file)
5828 file))
5829 (let ((truename (file-truename file))
5830 (blist (buffer-list))
5831 found)
5832 (while (and (not found) blist)
5833 (save-excursion
5834 (set-buffer (car blist))
5835 (and (eq major-mode 'dired-mode)
5836 (save-excursion
5837 (goto-char (point-min))
5838 (string= (buffer-substring-no-properties
5839 (+ (point-min) 2)
5840 (progn
5841 (end-of-line)
5842 (1- (point))))
5843 truename))
5844 (setq found (car blist))))
5845 (setq blist (cdr blist)))
5846 found)))
5847
5848
5849 (defun pr-file-list (dir file-regexp fun)
5850 (mapcar #'(lambda (file)
5851 (and (or pr-list-directory
5852 (not (file-directory-p file)))
5853 (let ((buffer (pr-find-buffer-visiting file))
5854 pop-up-windows
5855 pop-up-frames)
5856 (and (or buffer
5857 (file-readable-p file))
5858 (save-excursion
5859 (set-buffer (or buffer
5860 (find-file-noselect file)))
5861 (funcall fun)
5862 (or buffer
5863 (kill-buffer (current-buffer))))))))
5864 (directory-files dir t file-regexp)))
5865
5866
5867 (defun pr-delete-file-if-exists (filename)
5868 (and (not pr-spool-p) (stringp filename) (file-exists-p filename)
5869 (delete-file filename)))
5870
5871
5872 (defun pr-ps-file-list (n-up dir file-regexp filename)
5873 (pr-delete-file-if-exists (setq filename (pr-expand-file-name filename)))
5874 (let ((pr-spool-p t))
5875 (pr-file-list dir file-regexp
5876 #'(lambda ()
5877 (if (pr-auto-mode-p)
5878 (pr-ps-mode n-up filename)
5879 (pr-text2ps 'buffer n-up filename)))))
5880 (or pr-spool-p
5881 (pr-despool-print filename)))
5882
5883
5884 (defun pr-text2ps (kind n-up filename &optional from to)
5885 (pr-save-file-modes
5886 (let ((ps-n-up-printing n-up)
5887 (ps-spool-config (and (eq ps-spool-config 'setpagedevice)
5888 'setpagedevice)))
5889 (pr-delete-file-if-exists filename)
5890 (cond (pr-faces-p
5891 (cond (pr-spool-p
5892 ;; pr-faces-p and pr-spool-p
5893 ;; here FILENAME arg is ignored
5894 (cond ((eq kind 'buffer)
5895 (ps-spool-buffer-with-faces))
5896 ((eq kind 'region)
5897 (ps-spool-region-with-faces (or from (point))
5898 (or to (mark))))
5899 ))
5900 ;; pr-faces-p and not pr-spool-p
5901 ((eq kind 'buffer)
5902 (ps-print-buffer-with-faces filename))
5903 ((eq kind 'region)
5904 (ps-print-region-with-faces (or from (point))
5905 (or to (mark)) filename))
5906 ))
5907 (pr-spool-p
5908 ;; not pr-faces-p and pr-spool-p
5909 ;; here FILENAME arg is ignored
5910 (cond ((eq kind 'buffer)
5911 (ps-spool-buffer))
5912 ((eq kind 'region)
5913 (ps-spool-region (or from (point)) (or to (mark))))
5914 ))
5915 ;; not pr-faces-p and not pr-spool-p
5916 ((eq kind 'buffer)
5917 (ps-print-buffer filename))
5918 ((eq kind 'region)
5919 (ps-print-region (or from (point)) (or to (mark)) filename))
5920 ))))
5921
5922
5923 (defun pr-command (command)
5924 "Return absolute file name specification for COMMAND.
5925
5926 If COMMAND is an empty string, return it.
5927
5928 If COMMAND is already an absolute file name specification, return it.
5929 Else it uses `pr-path-alist' to find COMMAND, if find it then return it;
5930 otherwise, gives an error.
5931
5932 When using `pr-path-alist' to find COMMAND, the entries `cygwin', `windows' and
5933 `unix' are used (see `pr-path-alist' for documentation).
5934
5935 If Emacs is running on Windows 95/98/NT/2000, tries to find COMMAND,
5936 COMMAND.exe, COMMAND.bat and COMMAND.com in this order."
5937 (if (string= command "")
5938 command
5939 (pr-dosify-file-name
5940 (or (pr-find-command command)
5941 (pr-path-command (cond (pr-cygwin-system 'cygwin)
5942 (ps-windows-system 'windows)
5943 (t 'unix))
5944 (file-name-nondirectory command)
5945 nil)
5946 (error "Command not found: %s"
5947 (file-name-nondirectory command))))))
5948
5949
5950 (defun pr-path-command (symbol command sym-list)
5951 (let ((lpath (cdr (assq symbol pr-path-alist)))
5952 cmd)
5953 ;; PATH expansion
5954 (and (eq symbol 'PATH) (null lpath)
5955 (setq lpath (parse-colon-path (getenv "PATH"))))
5956 (while (and lpath
5957 (not
5958 (setq cmd
5959 (let ((path (car lpath)))
5960 (cond
5961 ;; symbol expansion
5962 ((symbolp path)
5963 (and (not (memq path sym-list))
5964 (pr-path-command path command
5965 (cons path sym-list))))
5966 ;; normal path
5967 ((stringp path)
5968 (pr-find-command
5969 (expand-file-name
5970 (substitute-in-file-name
5971 (concat (file-name-as-directory path)
5972 command)))))
5973 )))))
5974 (setq lpath (cdr lpath)))
5975 cmd))
5976
5977
5978 (defun pr-find-command (cmd)
5979 (if ps-windows-system
5980 ;; windows system
5981 (let ((ext (cons (file-name-extension cmd t)
5982 (list ".exe" ".bat" ".com")))
5983 found)
5984 (setq cmd (file-name-sans-extension cmd))
5985 (while (and ext
5986 (setq found (concat cmd (car ext)))
5987 (not (and (file-regular-p found)
5988 (file-executable-p found))))
5989 (setq ext (cdr ext)
5990 found nil))
5991 found)
5992 ;; non-windows systems
5993 (and (file-regular-p cmd)
5994 (file-executable-p cmd)
5995 cmd)))
5996
5997
5998 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5999 ;; Printing Interface (inspired on ps-print-interface.el)
6000
6001
6002 (require 'widget)
6003 (require 'wid-edit)
6004 (require 'cus-edit)
6005
6006
6007 (defvar pr-i-window-configuration nil)
6008
6009 (defvar pr-i-buffer nil)
6010 (defvar pr-i-region nil)
6011 (defvar pr-i-mode nil)
6012 (defvar pr-i-despool nil)
6013 (defvar pr-i-ps-as-is t)
6014 (defvar pr-i-n-up 1)
6015 (defvar pr-i-directory "./")
6016 (defvar pr-i-regexp "")
6017 (defvar pr-i-ps-file "")
6018 (defvar pr-i-out-file "")
6019 (defvar pr-i-answer-yes nil)
6020 (defvar pr-i-process 'buffer)
6021 (defvar pr-i-ps-send 'printer)
6022
6023
6024 (defvar pr-interface-map nil
6025 "Keymap for pr-interface.")
6026
6027 (unless pr-interface-map
6028 (setq pr-interface-map (make-sparse-keymap))
6029 (cond ((featurep 'xemacs) ; XEmacs
6030 (pr-f-set-keymap-parents pr-interface-map (list widget-keymap))
6031 (pr-f-set-keymap-name pr-interface-map 'pr-interface-map))
6032 (t ; GNU Emacs
6033 (pr-f-set-keymap-parents pr-interface-map widget-keymap)))
6034 (define-key pr-interface-map "q" 'pr-interface-quit)
6035 (define-key pr-interface-map "?" 'pr-interface-help))
6036
6037
6038 (defmacro pr-interface-save (&rest body)
6039 `(save-excursion
6040 (set-buffer pr-i-buffer)
6041 ,@body))
6042
6043
6044 (defun pr-create-interface ()
6045 "Create the front end for printing package."
6046 (setq pr-i-buffer (buffer-name (current-buffer))
6047 pr-i-region (ps-mark-active-p)
6048 pr-i-mode (pr-mode-alist-p)
6049 pr-i-window-configuration (current-window-configuration))
6050
6051 (put 'pr-i-process 'pr-widget-list nil)
6052 (put 'pr-i-ps-send 'pr-widget-list nil)
6053
6054 (delete-other-windows)
6055 (kill-buffer (get-buffer-create pr-buffer-name))
6056 (switch-to-buffer (get-buffer-create pr-buffer-name))
6057
6058 ;; header
6059 (let ((versions (concat "printing v" pr-version
6060 " ps-print v" ps-print-version)))
6061 (widget-insert (make-string (- 79 (length versions)) ?\ ) versions))
6062 (pr-insert-italic "\nCurrent Directory : " 1)
6063 (pr-insert-italic default-directory)
6064
6065 (pr-insert-section-1) ; 1. Print
6066 (pr-insert-section-2) ; 2. PostScript Printer
6067 (pr-insert-section-3) ; 3. Text Printer
6068
6069 ;; separator
6070 (widget-insert "\n\n " (make-string 77 ?-))
6071
6072 (pr-insert-section-4) ; 4. Settings
6073 (pr-insert-section-5) ; 5. Customize
6074 (pr-insert-section-6) ; 6. Show Settings
6075 (pr-insert-section-7) ; 7. Help
6076
6077 (use-local-map pr-interface-map)
6078 (widget-setup)
6079 (goto-char (point-min))
6080
6081 (and pr-i-region ; let region activated
6082 (pr-keep-region-active)))
6083
6084
6085 (defun pr-insert-section-1 ()
6086 ;; 1. Print:
6087 (pr-insert-italic "\nPrint :" 1)
6088
6089 ;; 1a. Buffer:
6090 ;; 1a. Buffer: Buffer List
6091 (pr-insert-radio-button 'pr-i-process 'buffer)
6092 (pr-insert-menu "Buffer List" 'pr-i-buffer
6093 (let ((blist (buffer-list))
6094 case-fold-search choices)
6095 (while blist
6096 (let ((name (buffer-name (car blist)))
6097 (ignore pr-buffer-name-ignore)
6098 found)
6099 (setq blist (cdr blist))
6100 (while (and ignore (not found))
6101 (setq found (string-match (car ignore) name)
6102 ignore (cdr ignore)))
6103 (or found
6104 (setq choices
6105 (cons (list 'quote
6106 (list 'choice-item
6107 :format "%[%t%]"
6108 name))
6109 choices)))))
6110 (nreverse choices))
6111 " Buffer : " nil
6112 '(progn
6113 (pr-interface-save
6114 (setq pr-i-region (ps-mark-active-p)
6115 pr-i-mode (pr-mode-alist-p)))
6116 (pr-update-checkbox 'pr-i-region)
6117 (pr-update-checkbox 'pr-i-mode)))
6118 ;; 1a. Buffer: Region
6119 (put 'pr-i-region 'pr-widget
6120 (pr-insert-checkbox
6121 "\n "
6122 'pr-i-region
6123 #'(lambda (widget &rest ignore)
6124 (let ((region-p (pr-interface-save
6125 (ps-mark-active-p))))
6126 (cond ((null (widget-value widget)) ; widget is nil
6127 (setq pr-i-region nil))
6128 (region-p ; widget is true and there is a region
6129 (setq pr-i-region t)
6130 (widget-value-set widget t)
6131 (widget-setup)) ; MUST be called after widget-value-set
6132 (t ; widget is true and there is no region
6133 (ding)
6134 (message "There is no region active")
6135 (setq pr-i-region nil)
6136 (widget-value-set widget nil)
6137 (widget-setup))))) ; MUST be called after widget-value-set
6138 " Region"))
6139 ;; 1a. Buffer: Mode
6140 (put 'pr-i-mode 'pr-widget
6141 (pr-insert-checkbox
6142 " "
6143 'pr-i-mode
6144 #'(lambda (widget &rest ignore)
6145 (let ((mode-p (pr-interface-save
6146 (pr-mode-alist-p))))
6147 (cond
6148 ((null (widget-value widget)) ; widget is nil
6149 (setq pr-i-mode nil))
6150 (mode-p ; widget is true and there is a `mode'
6151 (setq pr-i-mode t)
6152 (widget-value-set widget t)
6153 (widget-setup)) ; MUST be called after widget-value-set
6154 (t ; widget is true and there is no `mode'
6155 (ding)
6156 (message
6157 "This buffer isn't in a mode that printing treats specially.")
6158 (setq pr-i-mode nil)
6159 (widget-value-set widget nil)
6160 (widget-setup))))) ; MUST be called after widget-value-set
6161 " Mode\n"))
6162
6163 ;; 1b. Directory:
6164 (pr-insert-radio-button 'pr-i-process 'directory)
6165 (widget-create
6166 'directory
6167 :size 58
6168 :format " Directory : %v"
6169 :notify 'pr-interface-directory
6170 :action (lambda (widget &optional event)
6171 (if (pr-interface-directory widget)
6172 (pr-widget-field-action widget event)
6173 (ding)
6174 (message "Please specify a readable directory")))
6175 pr-i-directory)
6176 ;; 1b. Directory: File Regexp
6177 (widget-create 'regexp
6178 :size 58
6179 :format "\n File Regexp : %v\n"
6180 :notify (lambda (widget &rest ignore)
6181 (setq pr-i-regexp (widget-value widget)))
6182 pr-i-regexp)
6183 ;; 1b. Directory: List Directory Entry
6184 (widget-insert " ")
6185 (pr-insert-toggle 'pr-list-directory " List Directory Entry\n")
6186
6187 ;; 1c. PostScript File:
6188 (pr-insert-radio-button 'pr-i-process 'file)
6189 (widget-create
6190 'file
6191 :size 51
6192 :format " PostScript File : %v"
6193 :notify 'pr-interface-infile
6194 :action (lambda (widget &rest event)
6195 (if (pr-interface-infile widget)
6196 (pr-widget-field-action widget event)
6197 (ding)
6198 (message "Please specify a readable PostScript file")))
6199 pr-i-ps-file)
6200 ;; 1c. PostScript File: PostScript Utility
6201 (pr-insert-menu "PostScript Utility" 'pr-ps-utility
6202 (pr-choice-alist pr-ps-utility-alist)
6203 "\n PostScript Utility : "
6204 " ")
6205 ;; 1c. PostScript File: No Preprocessing
6206 (pr-insert-toggle 'pr-i-ps-as-is " No Preprocessing"))
6207
6208
6209 (defun pr-insert-section-2 ()
6210 ;; 2. PostScript Printer:
6211 ;; 2. PostScript Printer: PostScript Printer List
6212 (pr-insert-italic "\n\nPostScript Printer : " 2 20)
6213 (pr-insert-menu "PostScript Printer" 'pr-ps-name
6214 (pr-choice-alist pr-ps-printer-alist))
6215 ;; 2. PostScript Printer: Despool
6216 (put 'pr-i-despool 'pr-widget
6217 (pr-insert-checkbox
6218 " "
6219 'pr-i-despool
6220 #'(lambda (widget &rest ignore)
6221 (if pr-spool-p
6222 (setq pr-i-despool (not pr-i-despool))
6223 (ding)
6224 (message "Can despool only when spooling is actually selected")
6225 (setq pr-i-despool nil))
6226 (widget-value-set widget pr-i-despool)
6227 (widget-setup)) ; MUST be called after widget-value-set
6228 " Despool "))
6229 ;; 2. PostScript Printer: Preview Print Quit
6230 (pr-insert-button 'pr-interface-preview "Preview" " ")
6231 (pr-insert-button 'pr-interface-ps-print "Print" " ")
6232 (pr-insert-button 'pr-interface-quit "Quit")
6233 ;; 2. PostScript Printer: Send to Printer/Temporary File
6234 (pr-insert-radio-button 'pr-i-ps-send 'printer)
6235 (widget-insert " Send to Printer/Temporary File")
6236 ;; 2. PostScript Printer: Send to File
6237 (pr-insert-radio-button 'pr-i-ps-send 'file)
6238 (widget-create
6239 'file
6240 :size 57
6241 :format " Send to File : %v"
6242 :notify 'pr-interface-outfile
6243 :action (lambda (widget &rest event)
6244 (if (and (pr-interface-outfile widget)
6245 (or (not (file-exists-p pr-i-out-file))
6246 (setq pr-i-answer-yes
6247 (y-or-n-p "File exists; overwrite? "))))
6248 (pr-widget-field-action widget event)
6249 (ding)
6250 (message "Please specify a writable PostScript file")))
6251 pr-i-out-file)
6252 ;; 2. PostScript Printer: N-Up
6253 (widget-create
6254 'integer
6255 :size 3
6256 :format "\n N-Up : %v"
6257 :notify (lambda (widget &rest ignore)
6258 (let ((value (if (string= (widget-apply widget :value-get) "")
6259 0
6260 (widget-value widget))))
6261 (if (and (integerp value)
6262 (<= 1 value) (<= value 100))
6263 (progn
6264 (message " ")
6265 (setq pr-i-n-up value))
6266 (ding)
6267 (message "Please specify an integer between 1 and 100"))))
6268 pr-i-n-up))
6269
6270
6271 (defun pr-insert-section-3 ()
6272 ;; 3. Text Printer:
6273 (pr-insert-italic "\n\nText Printer : " 2 14)
6274 (pr-insert-menu "Text Printer" 'pr-txt-name
6275 (pr-choice-alist pr-txt-printer-alist)
6276 nil " ")
6277 (pr-insert-button 'pr-interface-printify "Printify" " ")
6278 (pr-insert-button 'pr-interface-txt-print "Print" " ")
6279 (pr-insert-button 'pr-interface-quit "Quit"))
6280
6281
6282 (defun pr-insert-section-4 ()
6283 ;; 4. Settings:
6284 ;; 4. Settings: Landscape Auto Region Verbose
6285 (pr-insert-checkbox "\n\n " 'ps-landscape-mode
6286 #'(lambda (&rest ignore)
6287 (setq ps-landscape-mode (not ps-landscape-mode)
6288 pr-file-landscape ps-landscape-mode))
6289 " Landscape ")
6290 (pr-insert-toggle 'pr-auto-region " Auto Region ")
6291 (pr-insert-toggle 'pr-buffer-verbose " Verbose\n ")
6292
6293 ;; 4. Settings: Print Header Auto Mode
6294 (pr-insert-toggle 'ps-print-header " Print Header ")
6295 (pr-insert-toggle 'pr-auto-mode " Auto Mode\n ")
6296
6297 ;; 4. Settings: Print Header Frame Menu Lock
6298 (pr-insert-toggle 'ps-print-header-frame " Print Header Frame ")
6299 (pr-insert-toggle 'pr-menu-lock " Menu Lock\n ")
6300
6301 ;; 4. Settings: Line Number
6302 (pr-insert-toggle 'ps-line-number " Line Number\n ")
6303
6304 ;; 4. Settings: Zebra Stripes Spool Buffer
6305 (pr-insert-toggle 'ps-zebra-stripes " Zebra Stripes")
6306 (pr-insert-checkbox " "
6307 'pr-spool-p
6308 #'(lambda (&rest ignore)
6309 (setq pr-spool-p (not pr-spool-p))
6310 (unless pr-spool-p
6311 (setq pr-i-despool nil)
6312 (pr-update-checkbox 'pr-i-despool)))
6313 " Spool Buffer")
6314
6315 ;; 4. Settings: Duplex Print with faces
6316 (pr-insert-checkbox "\n "
6317 'ps-spool-duplex
6318 #'(lambda (&rest ignore)
6319 (setq ps-spool-duplex (not ps-spool-duplex)
6320 pr-file-duplex ps-spool-duplex))
6321 " Duplex ")
6322 (pr-insert-toggle 'pr-faces-p " Print with faces")
6323
6324 ;; 4. Settings: Tumble Print via Ghostscript
6325 (pr-insert-checkbox "\n "
6326 'ps-spool-tumble
6327 #'(lambda (&rest ignore)
6328 (setq ps-spool-tumble (not ps-spool-tumble)
6329 pr-file-tumble ps-spool-tumble))
6330 " Tumble ")
6331 (pr-insert-toggle 'pr-print-using-ghostscript " Print via Ghostscript\n ")
6332
6333 ;; 4. Settings: Upside-Down Page Parity
6334 (pr-insert-toggle 'ps-print-upside-down " Upside-Down")
6335 (pr-insert-italic "\n\nSelect Pages : " 2 14)
6336 (pr-insert-menu "Page Parity" 'ps-even-or-odd-pages
6337 (mapcar #'(lambda (alist)
6338 (list 'quote
6339 (list 'choice-item
6340 :format "%[%t%]"
6341 :tag (cdr alist)
6342 :value (car alist))))
6343 pr-even-or-odd-alist)))
6344
6345
6346 (defun pr-insert-section-5 ()
6347 ;; 5. Customize:
6348 (pr-insert-italic "\n\nCustomize : " 2 11)
6349 (pr-insert-button 'pr-customize "printing" " ")
6350 (pr-insert-button #'(lambda (&rest ignore) (ps-print-customize))
6351 "ps-print" " ")
6352 (pr-insert-button 'lpr-customize "lpr"))
6353
6354
6355 (defun pr-insert-section-6 ()
6356 ;; 6. Show Settings:
6357 (pr-insert-italic "\nShow Settings : " 1 14)
6358 (pr-insert-button 'pr-show-pr-setup "printing" " ")
6359 (pr-insert-button 'pr-show-ps-setup "ps-print" " ")
6360 (pr-insert-button 'pr-show-lpr-setup "lpr"))
6361
6362
6363 (defun pr-insert-section-7 ()
6364 ;; 7. Help:
6365 (pr-insert-italic "\nHelp : " 1 5)
6366 (pr-insert-button 'pr-interface-help "Interface Help" " ")
6367 (pr-insert-button 'pr-help "Menu Help" " ")
6368 (pr-insert-button 'pr-interface-quit "Quit" "\n ")
6369 (pr-insert-button 'pr-kill-help "Kill All Printing Help Buffer"))
6370
6371
6372 (defun pr-kill-help (&rest ignore)
6373 "Kill all printing help buffer."
6374 (interactive)
6375 (let ((help '("*Printing Interface Help*" "*Printing Help*"
6376 "*LPR Setup*" "*PR Setup*" "*PS Setup*")))
6377 (while help
6378 (let ((buffer (get-buffer (car help))))
6379 (setq help (cdr help))
6380 (when buffer
6381 (delete-windows-on buffer)
6382 (kill-buffer buffer)))))
6383 (recenter (- (window-height) 2)))
6384
6385
6386 (defun pr-interface-quit (&rest ignore)
6387 "Kill the printing buffer interface and quit."
6388 (interactive)
6389 (kill-buffer pr-buffer-name)
6390 (set-window-configuration pr-i-window-configuration))
6391
6392
6393 (defun pr-interface-help (&rest ignore)
6394 "printing buffer interface help."
6395 (interactive)
6396 (pr-show-setup pr-interface-help-message "*Printing Interface Help*"))
6397
6398
6399 (defun pr-interface-txt-print (&rest ignore)
6400 "Print using lpr package."
6401 (interactive)
6402 (condition-case data
6403 (cond
6404 ((eq pr-i-process 'directory)
6405 (pr-i-directory)
6406 (pr-interface-save
6407 (pr-txt-directory pr-i-directory pr-i-regexp)))
6408 ((eq pr-i-process 'buffer)
6409 (pr-interface-save
6410 (cond (pr-i-region
6411 (let ((pr-auto-mode pr-i-mode))
6412 (pr-txt-region)))
6413 (pr-i-mode
6414 (let (pr-auto-region)
6415 (pr-txt-mode)))
6416 (t
6417 (let (pr-auto-mode pr-auto-region)
6418 (pr-txt-buffer)))
6419 )))
6420 ((eq pr-i-process 'file)
6421 (error "Please specify a text file"))
6422 (t
6423 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6424 )
6425 ;; handlers
6426 ((quit error)
6427 (ding)
6428 (message (error-message-string data)))))
6429
6430
6431 (defun pr-interface-printify (&rest ignore)
6432 "Printify a buffer."
6433 (interactive)
6434 (condition-case data
6435 (cond
6436 ((eq pr-i-process 'directory)
6437 (pr-i-directory)
6438 (pr-interface-save
6439 (pr-printify-directory pr-i-directory pr-i-regexp)))
6440 ((eq pr-i-process 'buffer)
6441 (pr-interface-save
6442 (if pr-i-region
6443 (pr-printify-region)
6444 (pr-printify-buffer))))
6445 ((eq pr-i-process 'file)
6446 (error "Cannot printify a PostScript file"))
6447 (t
6448 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6449 )
6450 ;; handlers
6451 ((quit error)
6452 (ding)
6453 (message (error-message-string data)))))
6454
6455
6456 (defun pr-interface-ps-print (&rest ignore)
6457 "Print using ps-print package."
6458 (interactive)
6459 (pr-interface-ps 'pr-despool-ps-print 'pr-ps-directory-ps-print
6460 'pr-ps-file-ps-print 'pr-ps-file-up-ps-print
6461 'pr-ps-region-ps-print 'pr-ps-mode-ps-print
6462 'pr-ps-buffer-ps-print))
6463
6464
6465 (defun pr-interface-preview (&rest ignore)
6466 "Preview a PostScript file."
6467 (interactive)
6468 (pr-interface-ps 'pr-despool-preview 'pr-ps-directory-preview
6469 'pr-ps-file-preview 'pr-ps-file-up-preview
6470 'pr-ps-region-preview 'pr-ps-mode-preview
6471 'pr-ps-buffer-preview))
6472
6473
6474 (defun pr-interface-ps (ps-despool ps-directory ps-file ps-file-up ps-region
6475 ps-mode ps-buffer)
6476 (condition-case data
6477 (let ((outfile (or (and (eq pr-i-process 'file) pr-i-ps-as-is)
6478 (pr-i-ps-send))))
6479 (cond
6480 ((and pr-i-despool pr-spool-p)
6481 (pr-interface-save
6482 (funcall ps-despool outfile))
6483 (setq pr-i-despool nil)
6484 (pr-update-checkbox 'pr-i-despool))
6485 ((eq pr-i-process 'directory)
6486 (pr-i-directory)
6487 (pr-interface-save
6488 (funcall ps-directory
6489 pr-i-n-up pr-i-directory pr-i-regexp outfile)))
6490 ((eq pr-i-process 'file)
6491 (cond ((or (file-directory-p pr-i-ps-file)
6492 (not (file-readable-p pr-i-ps-file)))
6493 (error "Please specify a readable PostScript file"))
6494 (pr-i-ps-as-is
6495 (pr-interface-save
6496 (funcall ps-file pr-i-ps-file)))
6497 (t
6498 (pr-interface-save
6499 (funcall ps-file-up pr-i-n-up pr-i-ps-file outfile)))
6500 ))
6501 ((eq pr-i-process 'buffer)
6502 (pr-interface-save
6503 (cond (pr-i-region
6504 (let ((pr-auto-mode pr-i-mode))
6505 (funcall ps-region pr-i-n-up outfile)))
6506 (pr-i-mode
6507 (let (pr-auto-region)
6508 (funcall ps-mode pr-i-n-up outfile)))
6509 (t
6510 (let (pr-auto-mode pr-auto-region)
6511 (funcall ps-buffer pr-i-n-up outfile)))
6512 )))
6513 (t
6514 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6515 ))
6516 ;; handlers
6517 ((quit error)
6518 (ding)
6519 (message (error-message-string data)))))
6520
6521
6522 (defun pr-i-ps-send ()
6523 (cond ((eq pr-i-ps-send 'printer)
6524 nil)
6525 ((not (eq pr-i-ps-send 'file))
6526 (error "Internal error: `pr-i-ps-send' = %S" pr-i-ps-send))
6527 ((or (file-directory-p pr-i-out-file)
6528 (not (file-writable-p pr-i-out-file)))
6529 (error "Please specify a writable PostScript file"))
6530 ((or (not (file-exists-p pr-i-out-file))
6531 pr-i-answer-yes
6532 (setq pr-i-answer-yes
6533 (y-or-n-p (format "File `%s' exists; overwrite? "
6534 pr-i-out-file))))
6535 pr-i-out-file)
6536 (t
6537 (error "File already exists"))))
6538
6539
6540 (defun pr-i-directory ()
6541 (or (and (file-directory-p pr-i-directory)
6542 (file-readable-p pr-i-directory))
6543 (error "Please specify be a readable directory")))
6544
6545
6546 (defun pr-interface-directory (widget &rest ignore)
6547 (and pr-buffer-verbose
6548 (message "You can use M-TAB or ESC TAB for file completion"))
6549 (let ((dir (widget-value widget)))
6550 (and (file-directory-p dir)
6551 (file-readable-p dir)
6552 (setq pr-i-directory dir))))
6553
6554
6555 (defun pr-interface-infile (widget &rest ignore)
6556 (and pr-buffer-verbose
6557 (message "You can use M-TAB or ESC TAB for file completion"))
6558 (let ((file (widget-value widget)))
6559 (and (not (file-directory-p file))
6560 (file-readable-p file)
6561 (setq pr-i-ps-file file))))
6562
6563
6564 (defun pr-interface-outfile (widget &rest ignore)
6565 (setq pr-i-answer-yes nil)
6566 (and pr-buffer-verbose
6567 (message "You can use M-TAB or ESC TAB for file completion"))
6568 (let ((file (widget-value widget)))
6569 (and (not (file-directory-p file))
6570 (file-writable-p file)
6571 (setq pr-i-out-file file))))
6572
6573
6574 (defun pr-widget-field-action (widget event)
6575 (and (get-buffer "*Completions*") ; clean frame window
6576 (delete-windows-on "*Completions*"))
6577 (message " ") ; clean echo area
6578 (widget-field-action widget event))
6579
6580
6581 (defun pr-insert-italic (str &optional from to)
6582 (let ((len (length str)))
6583 (put-text-property (if from (max from 0) 0)
6584 (if to (max to len) len)
6585 'face 'italic str)
6586 (widget-insert str)))
6587
6588
6589 (defun pr-insert-checkbox (before var-sym fun label)
6590 (widget-insert before)
6591 (prog1
6592 (widget-create 'checkbox
6593 :notify fun
6594 (symbol-value var-sym))
6595 (widget-insert label)))
6596
6597
6598 (defun pr-insert-toggle (var-sym label)
6599 (widget-create 'checkbox
6600 :notify `(lambda (&rest ignore)
6601 (setq ,var-sym (not ,var-sym)))
6602 (symbol-value var-sym))
6603 (widget-insert label))
6604
6605
6606 (defun pr-insert-button (fun label &optional separator)
6607 (widget-create 'push-button
6608 :notify fun
6609 label)
6610 (and separator
6611 (widget-insert separator)))
6612
6613
6614 (defun pr-insert-menu (tag var-sym choices &optional before after &rest body)
6615 (and before (widget-insert before))
6616 (eval `(widget-create 'menu-choice
6617 :tag ,tag
6618 :format "%v"
6619 :inline t
6620 :value ,var-sym
6621 :notify (lambda (widget &rest ignore)
6622 (setq ,var-sym (widget-value widget))
6623 ,@body)
6624 :void '(choice-item :format "%[%t%]"
6625 :tag "Can not display value!")
6626 ,@choices))
6627 (and after (widget-insert after)))
6628
6629
6630 (defun pr-insert-radio-button (var-sym sym)
6631 (widget-insert "\n")
6632 (let ((wid-list (get var-sym 'pr-widget-list))
6633 (wid (eval `(widget-create
6634 'radio-button
6635 :format " %[%v%]"
6636 :value (eq ,var-sym (quote ,sym))
6637 :notify (lambda (&rest ignore)
6638 (setq ,var-sym (quote ,sym))
6639 (pr-update-radio-button (quote ,var-sym)))))))
6640 (put var-sym 'pr-widget-list (cons (cons wid sym) wid-list))))
6641
6642
6643 (defun pr-update-radio-button (var-sym)
6644 (let ((wid-list (get var-sym 'pr-widget-list)))
6645 (while wid-list
6646 (let ((wid (car (car wid-list)))
6647 (value (cdr (car wid-list))))
6648 (setq wid-list (cdr wid-list))
6649 (widget-value-set wid (eq (symbol-value var-sym) value))))
6650 (widget-setup)))
6651
6652
6653 (defun pr-update-checkbox (var-sym)
6654 (let ((wid (get var-sym 'pr-widget)))
6655 (when wid
6656 (widget-value-set wid (symbol-value var-sym))
6657 (widget-setup))))
6658
6659
6660 (defun pr-choice-alist (alist)
6661 (let ((max (apply 'max (mapcar #'(lambda (alist)
6662 (length (symbol-name (car alist))))
6663 alist))))
6664 (mapcar #'(lambda (alist)
6665 (let* ((sym (car alist))
6666 (name (symbol-name sym)))
6667 (list
6668 'quote
6669 (list
6670 'choice-item
6671 :format "%[%t%]"
6672 :tag (concat name
6673 (make-string (- max (length name)) ?_))
6674 :value sym))))
6675 alist)))
6676
6677
6678 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6679
6680
6681 (provide 'printing)
6682
6683
6684 ;; arch-tag: 9ce9ac3f-0f60-4370-900b-1943215d9d18
6685 ;;; printing.el ends here