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