]> code.delx.au - gnu-emacs/blob - lisp/printing.el
Add 2012 to FSF copyright years for Emacs files (do not merge to trunk)
[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, 2011, 2012 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 (cond
1391 ;; GNU Emacs 20
1392 ((< emacs-major-version 21)
1393 (defun pr-global-menubar (pr-menu-spec)
1394 (require 'easymenu)
1395 (easy-menu-change '("tools") "Printing" pr-menu-spec pr-menu-print-item)
1396 (when pr-menu-print-item
1397 (easy-menu-remove-item nil '("tools") pr-menu-print-item)
1398 (setq pr-menu-print-item nil
1399 pr-menu-bar (vector 'menu-bar 'tools
1400 (pr-get-symbol "Printing")))))
1401 )
1402 ;; GNU Emacs 21 & 22
1403 (t
1404 (defun pr-global-menubar (pr-menu-spec)
1405 (require 'easymenu)
1406 (let ((menu-file (if (= emacs-major-version 21)
1407 '("menu-bar" "files") ; GNU Emacs 21
1408 '("menu-bar" "file")))) ; GNU Emacs 22 or higher
1409 (cond
1410 (pr-menu-print-item
1411 (easy-menu-add-item global-map menu-file
1412 (easy-menu-create-menu "Print" pr-menu-spec)
1413 "print-buffer")
1414 (dolist (item '("print-buffer" "print-region"
1415 "ps-print-buffer-faces" "ps-print-region-faces"
1416 "ps-print-buffer" "ps-print-region"))
1417 (easy-menu-remove-item global-map menu-file item))
1418 (setq pr-menu-print-item nil
1419 pr-menu-bar (vector 'menu-bar
1420 (pr-get-symbol (nth 1 menu-file))
1421 (pr-get-symbol "Print"))))
1422 (t
1423 (easy-menu-add-item global-map menu-file
1424 (easy-menu-create-menu "Print" pr-menu-spec)))
1425 )))
1426 )))
1427
1428 (eval-and-compile
1429 (cond
1430 (ps-windows-system
1431 ;; GNU Emacs for Windows 9x/NT
1432 (defun pr-menu-position (entry index horizontal)
1433 (let ((pos (cdr (mouse-pixel-position))))
1434 (list
1435 (list (or (car pos) 0) ; X
1436 (- (or (cdr pos) 0) ; Y
1437 (* (pr-menu-index entry index) pr-menu-char-height)))
1438 (selected-frame)))) ; frame
1439 )
1440 (t
1441 ;; GNU Emacs
1442 (defun pr-menu-position (entry index horizontal)
1443 (let ((pos (cdr (mouse-pixel-position))))
1444 (list
1445 (list (- (or (car pos) 0) ; X
1446 (* horizontal pr-menu-char-width))
1447 (- (or (cdr pos) 0) ; Y
1448 (* (pr-menu-index entry index) pr-menu-char-height)))
1449 (selected-frame)))) ; frame
1450 )))
1451
1452 (defvar pr-menu-position nil)
1453 (defvar pr-menu-state nil)
1454
1455 ;; GNU Emacs
1456 (defun pr-menu-lookup (path)
1457 (lookup-key global-map
1458 (if path
1459 (vconcat pr-menu-bar
1460 (mapcar 'pr-get-symbol
1461 (if (listp path)
1462 path
1463 (list path))))
1464 pr-menu-bar)))
1465
1466 ;; GNU Emacs
1467 (defun pr-menu-lock (entry index horizontal state path)
1468 (when pr-menu-lock
1469 (or (and pr-menu-position (eq state pr-menu-state))
1470 (setq pr-menu-position (pr-menu-position entry index horizontal)
1471 pr-menu-state state))
1472 (let* ((menu (pr-menu-lookup path))
1473 (result (x-popup-menu pr-menu-position menu)))
1474 (and result
1475 (let ((command (lookup-key menu (vconcat result))))
1476 (if (fboundp command)
1477 (funcall command)
1478 (eval command)))))
1479 (setq pr-menu-position nil)))
1480
1481 ;; GNU Emacs
1482 (defalias 'pr-update-mode-line 'force-mode-line-update)
1483
1484 ;; GNU Emacs
1485 (defun pr-do-update-menus (&optional force)
1486 (pr-menu-alist pr-ps-printer-alist
1487 'pr-ps-name
1488 'pr-menu-set-ps-title
1489 "PostScript Printers"
1490 'pr-ps-printer-menu-modified
1491 force
1492 "PostScript Printers"
1493 'postscript 2)
1494 (pr-menu-alist pr-txt-printer-alist
1495 'pr-txt-name
1496 'pr-menu-set-txt-title
1497 "Text Printers"
1498 'pr-txt-printer-menu-modified
1499 force
1500 "Text Printers"
1501 'text 2)
1502 (let ((save-var pr-ps-utility-menu-modified))
1503 (pr-menu-alist pr-ps-utility-alist
1504 'pr-ps-utility
1505 'pr-menu-set-utility-title
1506 '("PostScript Print" "File" "PostScript Utility")
1507 'save-var
1508 force
1509 "PostScript Utility"
1510 nil 1))
1511 (pr-menu-alist pr-ps-utility-alist
1512 'pr-ps-utility
1513 'pr-menu-set-utility-title
1514 '("PostScript Preview" "File" "PostScript Utility")
1515 'pr-ps-utility-menu-modified
1516 force
1517 "PostScript Utility"
1518 nil 1)
1519 (pr-even-or-odd-pages ps-even-or-odd-pages force))
1520
1521 ;; GNU Emacs
1522 (defun pr-menu-get-item (name-list)
1523 ;; NAME-LIST is a string or a list of strings.
1524 (or (listp name-list)
1525 (setq name-list (list name-list)))
1526 (and name-list
1527 (let* ((reversed (reverse name-list))
1528 (name (pr-get-symbol (car reversed)))
1529 (path (nreverse (cdr reversed)))
1530 (menu (lookup-key
1531 global-map
1532 (vconcat pr-menu-bar
1533 (mapcar 'pr-get-symbol path)))))
1534 (assq name (nthcdr 2 menu)))))
1535
1536 ;; GNU Emacs
1537 (defvar pr-temp-menu nil)
1538
1539 ;; GNU Emacs
1540 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
1541 entry index)
1542 (when (and alist (or force (symbol-value modified-sym)))
1543 (easy-menu-define pr-temp-menu nil ""
1544 (pr-menu-create name alist var-sym fun entry index))
1545 (let ((item (pr-menu-get-item menu-path)))
1546 (and item
1547 (let* ((binding (nthcdr 3 item))
1548 (key-binding (cdr binding)))
1549 (setcar binding pr-temp-menu)
1550 (and key-binding (listp (car key-binding))
1551 (setcdr binding (cdr key-binding))) ; skip KEY-BINDING
1552 (funcall fun (symbol-value var-sym) item))))
1553 (set modified-sym nil)))
1554
1555 ;; GNU Emacs
1556 (defun pr-menu-set-item-name (item name)
1557 (and item
1558 (setcar (nthcdr 2 item) name))) ; ITEM-NAME
1559
1560 ;; GNU Emacs
1561 (defun pr-menu-set-ps-title (value &optional item entry index)
1562 (pr-menu-set-item-name (or item
1563 (pr-menu-get-item "PostScript Printers"))
1564 (format "PostScript Printer: %s" value))
1565 (pr-ps-set-printer value)
1566 (and index
1567 (pr-menu-lock entry index 12 'toggle nil)))
1568
1569 ;; GNU Emacs
1570 (defun pr-menu-set-txt-title (value &optional item entry index)
1571 (pr-menu-set-item-name (or item
1572 (pr-menu-get-item "Text Printers"))
1573 (format "Text Printer: %s" value))
1574 (pr-txt-set-printer value)
1575 (and index
1576 (pr-menu-lock entry index 12 'toggle nil)))
1577
1578 ;; GNU Emacs
1579 (defun pr-menu-set-utility-title (value &optional item entry index)
1580 (let ((name (symbol-name value)))
1581 (if item
1582 (pr-menu-set-item-name item name)
1583 (pr-menu-set-item-name
1584 (pr-menu-get-item
1585 '("PostScript Print" "File" "PostScript Utility"))
1586 name)
1587 (pr-menu-set-item-name
1588 (pr-menu-get-item
1589 '("PostScript Preview" "File" "PostScript Utility"))
1590 name)))
1591 (pr-ps-set-utility value)
1592 (and index
1593 (pr-menu-lock entry index 5 nil '("PostScript Print" "File"))))
1594
1595 ;; GNU Emacs
1596 (defun pr-even-or-odd-pages (value &optional no-lock)
1597 (pr-menu-set-item-name (pr-menu-get-item "Print All Pages")
1598 (cdr (assq value pr-even-or-odd-alist)))
1599 (setq ps-even-or-odd-pages value)
1600 (or no-lock
1601 (pr-menu-lock 'postscript-options 8 12 'toggle nil)))
1602
1603 )) ; end cond featurep
1604
1605
1606 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1607 ;; Internal Functions (I)
1608
1609
1610 (defun pr-dosify-file-name (path)
1611 "Replace unix-style directory separator character with dos/windows one."
1612 (interactive "sPath: ")
1613 (if (eq pr-path-style 'windows)
1614 (subst-char-in-string ?/ ?\\ path)
1615 path))
1616
1617
1618 (defun pr-unixify-file-name (path)
1619 "Replace dos/windows-style directory separator character with unix one."
1620 (interactive "sPath: ")
1621 (if (eq pr-path-style 'windows)
1622 (subst-char-in-string ?\\ ?/ path)
1623 path))
1624
1625
1626 (defun pr-standard-file-name (path)
1627 "Ensure the proper directory separator depending on the OS.
1628 That is, if Emacs is running on DOS/Windows, ensure dos/windows-style directory
1629 separator; otherwise, ensure unix-style directory separator."
1630 (if (or pr-cygwin-system ps-windows-system)
1631 (subst-char-in-string ?/ ?\\ path)
1632 (subst-char-in-string ?\\ ?/ path)))
1633
1634
1635 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1636 ;; Customization Functions
1637
1638
1639 (defun pr-alist-custom-set (symbol value)
1640 "Set the value of custom variables for printer & utility selection."
1641 (set symbol value)
1642 (and (featurep 'printing) ; update only after printing is loaded
1643 (pr-update-menus t)))
1644
1645
1646 (defun pr-ps-utility-custom-set (symbol value)
1647 "Update utility menu entry."
1648 (set symbol value)
1649 (and (featurep 'printing) ; update only after printing is loaded
1650 (pr-menu-set-utility-title value)))
1651
1652
1653 (defun pr-ps-name-custom-set (symbol value)
1654 "Update `PostScript Printer:' menu entry."
1655 (set symbol value)
1656 (and (featurep 'printing) ; update only after printing is loaded
1657 (pr-menu-set-ps-title value)))
1658
1659
1660 (defun pr-txt-name-custom-set (symbol value)
1661 "Update `Text Printer:' menu entry."
1662 (set symbol value)
1663 (and (featurep 'printing) ; update only after printing is loaded
1664 (pr-menu-set-txt-title value)))
1665
1666
1667 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1668 ;; User Interface
1669
1670
1671 (defgroup printing nil
1672 "Printing Utilities group."
1673 :tag "Printing Utilities"
1674 :link '(emacs-library-link :tag "Source Lisp File" "printing.el")
1675 :prefix "pr-"
1676 :version "22.1"
1677 :group 'wp
1678 :group 'postscript)
1679
1680
1681 (defcustom pr-path-style
1682 (if (and (not pr-cygwin-system)
1683 ps-windows-system)
1684 'windows
1685 'unix)
1686 "Specify which path style to use for external commands.
1687
1688 Valid values are:
1689
1690 windows Windows 9x/NT style (\\)
1691
1692 unix Unix style (/)"
1693 :type '(choice :tag "Path style"
1694 (const :tag "Windows 9x/NT Style (\\)" :value windows)
1695 (const :tag "Unix Style (/)" :value unix))
1696 :group 'printing)
1697
1698
1699 (defcustom pr-path-alist
1700 '((unix PATH)
1701 (cygwin PATH)
1702 (windows PATH))
1703 "Specify an alist for command paths.
1704
1705 It's used to find commands used for printing package, like gv, gs, gsview.exe,
1706 mpage, print.exe, etc. See also `pr-command' function.
1707
1708 Each element has the form:
1709
1710 (ENTRY DIRECTORY...)
1711
1712 Where:
1713
1714 ENTRY It's a symbol, used to identify this entry.
1715 There must exist at least one of the following entries:
1716
1717 unix this entry is used when Emacs is running on GNU or
1718 Unix system.
1719
1720 cygwin this entry is used when Emacs is running on Windows
1721 95/98/NT/2000 with Cygwin.
1722
1723 windows this entry is used when Emacs is running on Windows
1724 95/98/NT/2000.
1725
1726 DIRECTORY It should be a string or a symbol. If it's a symbol, it should
1727 exist an equal entry in `pr-path-alist'. If it's a string,
1728 it's considered a directory specification.
1729
1730 The directory specification may contain:
1731 $var environment variable expansion
1732 ~/ tilde expansion
1733 ./ current directory
1734 ../ previous directory
1735
1736 For example, let's say the home directory is /home/my and the
1737 current directory is /home/my/dir, so:
1738
1739 THE ENTRY IS EXPANDED TO
1740 ~/entry /home/my/entry
1741 ./entry /home/my/dir/entry
1742 ../entry /home/my/entry
1743 $HOME/entry /home/my/entry
1744 $HOME/~/other/../my/entry /home/my/entry
1745
1746 SPECIAL SYMBOL: If the symbol `PATH' is used in the directory
1747 list and there isn't a `PATH' entry in `pr-path-alist' or the
1748 `PATH' entry has a null directory list, the PATH environment
1749 variable is used.
1750
1751 Examples:
1752
1753 * On GNU or Unix system:
1754
1755 '((unix \".\" \"~/bin\" ghostview mpage PATH)
1756 (ghostview \"$HOME/bin/gsview-dir\")
1757 (mpage \"$HOME/bin/mpage-dir\")
1758 )
1759
1760 * On Windows system:
1761
1762 '((windows \"c:/applications/executables\" PATH ghostview mpage)
1763 (ghostview \"c:/gs/gsview-dir\")
1764 (mpage \"c:/mpage-dir\")
1765 )"
1766 :type '(repeat
1767 (cons :tag ""
1768 (symbol :tag "Identifier ")
1769 (repeat :tag "Directory List"
1770 (choice :menu-tag "Directory"
1771 :tag "Directory"
1772 (string :value "")
1773 (symbol :value symbol)))))
1774 :group 'printing)
1775
1776
1777 (defcustom pr-txt-name 'default
1778 "Specify a printer for printing a text file.
1779
1780 The printer name symbol should be defined on `pr-txt-printer-alist' (see it for
1781 documentation).
1782
1783 This variable should be modified by customization engine. If this variable is
1784 modified by other means (for example, a lisp function), use `pr-update-menus'
1785 function (see it for documentation) to update text printer menu."
1786 :type 'symbol
1787 :set 'pr-txt-name-custom-set
1788 :group 'printing)
1789
1790
1791 (defcustom pr-txt-printer-alist
1792 (list (list 'default lpr-command nil
1793 (cond ((boundp 'printer-name) printer-name)
1794 (ps-windows-system "PRN")
1795 (t nil)
1796 )))
1797 ;; Examples:
1798 ;; * On GNU or Unix system:
1799 ;; '((prt_06a "lpr" nil "prt_06a")
1800 ;; (prt_07c nil nil "prt_07c")
1801 ;; )
1802 ;; * On Windows system:
1803 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
1804 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
1805 ;; (PRN "" nil "PRN")
1806 ;; (standard "redpr.exe" nil "")
1807 ;; )
1808 "Specify an alist of all text printers (text printer database).
1809
1810 The alist element has the form:
1811
1812 (SYMBOL COMMAND SWITCHES NAME)
1813
1814 Where:
1815
1816 SYMBOL It's a symbol to identify a text printer. It's for
1817 `pr-txt-name' variable setting and for menu selection.
1818 Examples:
1819 'prt_06a
1820 'my_printer
1821
1822 COMMAND Name of the program for printing a text file. On MS-DOS and
1823 MS-Windows systems, if the value is an empty string, then Emacs
1824 will write directly to the printer port given by NAME (see text
1825 below), that is, the NAME should be something like \"PRN\" or
1826 \"LPT1:\".
1827 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
1828 COMMAND shouldn't be an empty string.
1829 The programs `print' and `nprint' (the standard print programs
1830 on Windows NT and Novell Netware respectively) are handled
1831 specially, using NAME as the destination for output; any other
1832 program is treated like `lpr' except that an explicit filename
1833 is given as the last argument.
1834 If COMMAND is nil, it's used the default printing program:
1835 `print' for Windows system, `lp' for lp system and `lpr' for
1836 all other systems. See also `pr-path-alist'.
1837 Examples:
1838 \"print\"
1839 \"lpr\"
1840 \"lp\"
1841
1842 SWITCHES List of sexp's to pass as extra options for text printer
1843 program. It is recommended to set NAME (see text below)
1844 instead of including an explicit switch on this list.
1845 Example:
1846 . for lpr
1847 '(\"-#3\" \"-l\")
1848 nil
1849
1850 NAME A string that specifies a text printer name.
1851 On Unix-like systems, a string value should be a name
1852 understood by lpr's -P option (or lp's -d option).
1853 On MS-DOS and MS-Windows systems, it is the name of a printer
1854 device or port. Typical non-default settings would be \"LPT1:\"
1855 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
1856 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
1857 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
1858 printer. You can also set it to a name of a file, in which
1859 case the output gets appended to that file. If you want to
1860 discard the printed output, set this to \"NUL\".
1861 Examples:
1862 . for print.exe
1863 \"/D:\\\\\\\\host\\\\share-name\"
1864 \"LPT1:\"
1865 \"PRN\"
1866
1867 . for lpr or lp
1868 \"share-name\"
1869
1870 This variable should be modified by customization engine. If this variable is
1871 modified by other means (for example, a lisp function), use `pr-update-menus'
1872 function (see it for documentation) to update text printer menu.
1873
1874 Examples:
1875
1876 * On GNU or Unix system:
1877
1878 '((prt_06a \"lpr\" nil \"prt_06a\")
1879 (prt_07c nil nil \"prt_07c\")
1880 )
1881
1882 * On Windows system:
1883
1884 '((prt_06a \"print\" nil \"/D:\\\\\\\\printers\\\\prt_06a\")
1885 (prt_07c nil nil \"/D:\\\\\\\\printers\\\\prt_07c\")
1886 (PRN \"\" nil \"PRN\")
1887 (standard \"redpr.exe\" nil \"\")
1888 )
1889
1890 Useful links:
1891
1892 * Information about the print command (print.exe)
1893 `http://www.computerhope.com/printhlp.htm'
1894
1895 * RedMon - Redirection Port Monitor (redpr.exe)
1896 `http://www.cs.wisc.edu/~ghost/redmon/index.htm'
1897
1898 * Redirection Port Monitor (redpr.exe on-line help)
1899 `http://www.cs.wisc.edu/~ghost/redmon/en/redmon.htm'
1900
1901 * UNIX man pages: lpr (or type `man lpr')
1902 `http://bama.ua.edu/cgi-bin/man-cgi?lpr'
1903 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lpr'
1904
1905 * UNIX man pages: lp (or type `man lp')
1906 `http://bama.ua.edu/cgi-bin/man-cgi?lp'
1907 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lp'
1908 "
1909 :type '(repeat
1910 (list :tag "Text Printer"
1911 (symbol :tag "Printer Symbol Name")
1912 (string :tag "Printer Command")
1913 (repeat :tag "Printer Switches"
1914 (sexp :tag "Switch" :value ""))
1915 (choice :menu-tag "Printer Name"
1916 :tag "Printer Name"
1917 (const :tag "None" nil)
1918 string)))
1919 :set 'pr-alist-custom-set
1920 :group 'printing)
1921
1922
1923 (defcustom pr-ps-name 'default
1924 "Specify a printer for printing a PostScript file.
1925
1926 This printer name symbol should be defined on `pr-ps-printer-alist' (see it for
1927 documentation).
1928
1929 This variable should be modified by customization engine. If this variable is
1930 modified by other means (for example, a lisp function), use `pr-update-menus'
1931 function (see it for documentation) to update PostScript printer menu."
1932 :type 'symbol
1933 :set 'pr-ps-name-custom-set
1934 :group 'printing)
1935
1936
1937 (defcustom pr-ps-printer-alist
1938 (list (list 'default lpr-command nil
1939 (cond (ps-windows-system nil)
1940 (ps-lp-system "-d")
1941 (t "-P"))
1942 (or (getenv "PRINTER") (getenv "LPDEST") ps-printer-name)))
1943 ;; Examples:
1944 ;; * On GNU or Unix system:
1945 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
1946 ;; (lps_07c "lpr" nil nil "lps_07c")
1947 ;; (lps_08c nil nil nil "lps_08c")
1948 ;; )
1949 ;; * On Windows system:
1950 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
1951 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
1952 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
1953 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
1954 ;; (b/w "gsprint" ("-all" "-twoup") "-printer " "b/w-pr-name")
1955 ;; (LPT1 "" nil "" "LPT1:")
1956 ;; (PRN "" nil "" "PRN")
1957 ;; (standard "redpr.exe" nil "" "")
1958 ;; )
1959 "Specify an alist for all PostScript printers (PostScript printer database).
1960
1961 The alist element has the form:
1962
1963 (SYMBOL COMMAND SWITCHES PRINTER-SWITCH NAME DEFAULT...)
1964
1965 Where:
1966
1967 SYMBOL It's a symbol to identify a PostScript printer. It's for
1968 `pr-ps-name' variable setting and for menu selection.
1969 Examples:
1970 'prt_06a
1971 'my_printer
1972
1973 COMMAND Name of the program for printing a PostScript file. On MS-DOS
1974 and MS-Windows systems, if the value is an empty string then
1975 Emacs will write directly to the printer port given by NAME
1976 (see text below), that is, the NAME should be something like
1977 \"PRN\" or \"LPT1:\".
1978 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
1979 COMMAND shouldn't be an empty string.
1980 The programs `print' and `nprint' (the standard print programs
1981 on Windows NT and Novell Netware respectively) are handled
1982 specially, using NAME as the destination for output; any other
1983 program is treated like `lpr' except that an explicit filename
1984 is given as the last argument.
1985 If COMMAND is nil, it's used the default printing program:
1986 `print' for Windows system, `lp' for lp system and `lpr' for
1987 all other systems. See also `pr-path-alist'.
1988 Examples:
1989 \"print\"
1990 \"lpr\"
1991 \"lp\"
1992 \"cp\"
1993 \"gsprint\"
1994
1995 SWITCHES List of sexp's to pass as extra options for PostScript printer
1996 program. It is recommended to set NAME (see text below)
1997 instead of including an explicit switch on this list.
1998 Example:
1999 . for lpr
2000 '(\"-#3\" \"-l\")
2001 nil
2002
2003 . for gsprint.exe
2004 '(\"-all\" \"-twoup\")
2005
2006 PRINTER-SWITCH A string that specifies PostScript printer name switch. If
2007 it's necessary to have a space between PRINTER-SWITCH and NAME,
2008 it should be inserted at the end of PRINTER-SWITCH string.
2009 If PRINTER-SWITCH is nil, it's used the default printer name
2010 switch: `/D:' for Windows system, `-d' for lp system and `-P'
2011 for all other systems.
2012 Examples:
2013 . for lpr
2014 \"-P \"
2015
2016 . for lp
2017 \"-d \"
2018
2019 . for print.exe
2020 \"/D:\"
2021
2022 . for gsprint.exe
2023 \"-printer \"
2024
2025 NAME A string that specifies a PostScript printer name.
2026 On Unix-like systems, a string value should be a name
2027 understood by lpr's -P option (or lp's -d option).
2028 On MS-DOS and MS-Windows systems, it is the name of a printer
2029 device or port. Typical non-default settings would be \"LPT1:\"
2030 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
2031 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
2032 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
2033 printer. You can also set it to a name of a file, in which
2034 case the output gets appended to that file. If you want to
2035 discard the printed output, set this to \"NUL\".
2036 Examples:
2037 . for cp.exe
2038 \"\\\\\\\\host\\\\share-name\"
2039
2040 . for print.exe or gsprint.exe
2041 \"/D:\\\\\\\\host\\\\share-name\"
2042 \"\\\\\\\\host\\\\share-name\"
2043 \"LPT1:\"
2044 \"PRN\"
2045
2046 . for lpr or lp
2047 \"share-name\"
2048
2049 DEFAULT It's a way to set default values when this entry is selected.
2050 It's a cons like:
2051
2052 (VARIABLE . VALUE)
2053
2054 Which associates VARIABLE with VALUE. When this entry is
2055 selected, it's executed the following command:
2056
2057 (set VARIABLE (eval VALUE))
2058
2059 Note that VALUE can be any valid lisp expression. So, don't
2060 forget to quote symbols and constant lists.
2061 If VARIABLE is the special keyword `inherits-from:', VALUE must
2062 be a symbol name setting defined in `pr-setting-database' from
2063 which the current setting inherits the context. Take care with
2064 circular inheritance.
2065 Examples:
2066 '(ps-landscape-mode . nil)
2067 '(ps-spool-duplex . t)
2068 '(pr-gs-device . (my-gs-device t))
2069
2070 This variable should be modified by customization engine. If this variable is
2071 modified by other means (for example, a lisp function), use `pr-update-menus'
2072 function (see it for documentation) to update PostScript printer menu.
2073
2074 Examples:
2075
2076 * On GNU or Unix system:
2077
2078 '((lps_06b \"lpr\" nil \"-P\" \"lps_06b\")
2079 (lps_07c \"lpr\" nil nil \"lps_07c\")
2080 (lps_08c nil nil nil \"lps_08c\")
2081 )
2082
2083 * On Windows system:
2084
2085 '((lps_06a \"print\" nil \"/D:\" \"\\\\\\\\printers\\\\lps_06a\")
2086 (lps_06b \"print\" nil nil \"\\\\\\\\printers\\\\lps_06b\")
2087 (lps_07c \"print\" nil \"\" \"/D:\\\\\\\\printers\\\\lps_07c\")
2088 (lps_08c nil nil nil \"\\\\\\\\printers\\\\lps_08c\")
2089 (b/w1 \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"b/w-pr-name\")
2090 (b/w2 \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer \\\\\\\\printers\\\\lps_06a\")
2091 (LPT1 \"\" nil \"\" \"LPT1:\")
2092 (PRN \"\" nil \"\" \"PRN\")
2093 (standard \"redpr.exe\" nil \"\" \"\")
2094 )
2095
2096
2097 gsprint:
2098
2099 You can use gsprint instead of ghostscript to print monochrome PostScript files
2100 in Windows. The gsprint utility documentation says that it is more efficient
2101 than ghostscript to print monochrome PostScript.
2102
2103 To print non-monochrome PostScript file, the efficiency of ghostscript is
2104 similar to gsprint.
2105
2106 Also the gsprint utility comes together with gsview distribution.
2107
2108 As an example of gsprint declaration:
2109
2110 (setq pr-ps-printer-alist
2111 '((A \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"lps_015\")
2112 (B \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer lps_015\")
2113 ;; some other printer declaration
2114 ))
2115
2116 The example above declares that printer A prints all pages (-all) and two pages
2117 per sheet (-twoup). The printer B declaration does the same as the printer A
2118 declaration, the only difference is the printer name selection.
2119
2120 There are other command line options like:
2121
2122 -mono Render in monochrome as 1bit/pixel (only black and white).
2123 -grey Render in greyscale as 8bits/pixel.
2124 -color Render in color as 24bits/pixel.
2125
2126 The default is `-mono'. So, printer A and B in the example above are using
2127 implicitly the `-mono' option. Note that in `-mono' no gray tone or color is
2128 printed, this includes the zebra stripes, that is, in `-mono' the zebra stripes
2129 are not printed.
2130
2131
2132 Useful links:
2133
2134 * GSPRINT - Ghostscript print to Windows printer
2135 `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'
2136
2137 * Introduction to Ghostscript
2138 `http://www.cs.wisc.edu/~ghost/doc/intro.htm'
2139
2140 * How to use Ghostscript
2141 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
2142
2143 * Information about the print command (print.exe)
2144 `http://www.computerhope.com/printhlp.htm'
2145
2146 * RedMon - Redirection Port Monitor (redpr.exe)
2147 `http://www.cs.wisc.edu/~ghost/redmon/index.htm'
2148
2149 * Redirection Port Monitor (redpr.exe on-line help)
2150 `http://www.cs.wisc.edu/~ghost/redmon/en/redmon.htm'
2151
2152 * UNIX man pages: lpr (or type `man lpr')
2153 `http://bama.ua.edu/cgi-bin/man-cgi?lpr'
2154 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lpr'
2155
2156 * UNIX man pages: lp (or type `man lp')
2157 `http://bama.ua.edu/cgi-bin/man-cgi?lp'
2158 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lp'
2159
2160 * GNU utilities for Win32 (cp.exe)
2161 `http://unxutils.sourceforge.net/'
2162 "
2163 :type '(repeat
2164 (list
2165 :tag "PostScript Printer"
2166 (symbol :tag "Printer Symbol Name")
2167 (string :tag "Printer Command")
2168 (repeat :tag "Printer Switches"
2169 (sexp :tag "Switch" :value ""))
2170 (choice :menu-tag "Printer Name Switch"
2171 :tag "Printer Name Switch"
2172 (const :tag "None" nil)
2173 string)
2174 (choice :menu-tag "Printer Name"
2175 :tag "Printer Name"
2176 (const :tag "None" nil)
2177 string)
2178 (repeat
2179 :tag "Default Value List"
2180 :inline t
2181 (cons
2182 :tag ""
2183 (choice
2184 :menu-tag "Variable"
2185 :tag "Variable"
2186 (const :tag "Landscape" ps-landscape-mode)
2187 (const :tag "Print Header" ps-print-header)
2188 (const :tag "Print Header Frame" ps-print-header-frame)
2189 (const :tag "Line Number" ps-line-number)
2190 (const :tag "Zebra Stripes" ps-zebra-stripes)
2191 (const :tag "Duplex" ps-spool-duplex)
2192 (const :tag "Tumble" ps-spool-tumble)
2193 (const :tag "Upside-Down" ps-print-upside-down)
2194 (const :tag "PS File Landscape" pr-file-landscape)
2195 (const :tag "PS File Duplex" pr-file-duplex)
2196 (const :tag "PS File Tumble" pr-file-tumble)
2197 (const :tag "Auto Region" pr-auto-region)
2198 (const :tag "Auto Mode" pr-auto-mode)
2199 (const :tag "Ghostscript Device" pr-gs-device)
2200 (const :tag "Ghostscript Resolution" pr-gs-resolution)
2201 (const :tag "inherits-from:" inherits-from:)
2202 (variable :tag "Other"))
2203 (sexp :tag "Value")))
2204 ))
2205 :set 'pr-alist-custom-set
2206 :group 'printing)
2207
2208
2209 (defcustom pr-temp-dir
2210 (pr-dosify-file-name
2211 (if (boundp 'temporary-file-directory)
2212 (symbol-value 'temporary-file-directory)
2213 ;; hacked from `temporary-file-directory' variable in files.el
2214 (file-name-as-directory
2215 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP")
2216 (cond (ps-windows-system "c:/temp")
2217 (t "/tmp")
2218 )))))
2219 "Specify a directory for temporary files during printing.
2220
2221 See also `pr-ps-temp-file' and `pr-file-modes'."
2222 :type '(directory :tag "Temporary Directory")
2223 :group 'printing)
2224
2225
2226 (defcustom pr-ps-temp-file "prspool-"
2227 "Specify PostScript temporary file name prefix.
2228
2229 See also `pr-temp-dir' and `pr-file-modes'."
2230 :type '(file :tag "PostScript Temporary File Name")
2231 :group 'printing)
2232
2233
2234 ;; It uses 0600 as default instead of (default-file-modes).
2235 ;; So, by default, only the session owner have permission to deal with files
2236 ;; generated by `printing'.
2237 (defcustom pr-file-modes ?\600
2238 "Specify the file permission bits for newly created files.
2239
2240 It should be an integer; only the low 9 bits are used.
2241
2242 See also `pr-temp-dir' and `pr-ps-temp-file'."
2243 :type '(integer :tag "File Permission Bits")
2244 :group 'printing)
2245
2246
2247 (defcustom pr-gv-command
2248 (if ps-windows-system
2249 "gsview32.exe"
2250 "gv")
2251 "Specify path and name of the gsview/gv utility.
2252
2253 See also `pr-path-alist'.
2254
2255 Useful links:
2256
2257 * GNU gv manual
2258 `http://www.gnu.org/software/gv/manual/gv.html'
2259
2260 * GSview Help
2261 `http://www.cs.wisc.edu/~ghost/gsview/gsviewen.htm'
2262
2263 * GSview Help - Common Problems
2264 `http://www.cs.wisc.edu/~ghost/gsview/gsviewen.htm#Common_Problems'
2265
2266 * GSview Readme (compilation & installation)
2267 `http://www.cs.wisc.edu/~ghost/gsview/Readme.htm'
2268
2269 * GSview (main site)
2270 `http://www.cs.wisc.edu/~ghost/gsview/index.htm'
2271
2272 * Ghostscript, Ghostview and GSview
2273 `http://www.cs.wisc.edu/~ghost/'
2274
2275 * Ghostview
2276 `http://www.cs.wisc.edu/~ghost/gv/index.htm'
2277
2278 * gv 3.5, June 1997
2279 `http://www.cs.wisc.edu/~ghost/gv/gv_doc/gv.html'
2280
2281 * MacGSView (MacOS)
2282 `http://www.cs.wisc.edu/~ghost/macos/index.htm'
2283 "
2284 :type '(string :tag "Ghostview Utility")
2285 :group 'printing)
2286
2287
2288 (defcustom pr-gs-command
2289 (if ps-windows-system
2290 "gswin32.exe"
2291 "gs")
2292 "Specify path and name of the ghostscript utility.
2293
2294 See also `pr-path-alist'.
2295
2296 Useful links:
2297
2298 * Ghostscript, Ghostview and GSview
2299 `http://www.cs.wisc.edu/~ghost/'
2300
2301 * Introduction to Ghostscript
2302 `http://www.cs.wisc.edu/~ghost/doc/intro.htm'
2303
2304 * How to use Ghostscript
2305 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
2306
2307 * Printer compatibility
2308 `http://www.cs.wisc.edu/~ghost/doc/printer.htm'
2309 "
2310 :type '(string :tag "Ghostscript Utility")
2311 :group 'printing)
2312
2313
2314 (defcustom pr-gs-switches
2315 (if ps-windows-system
2316 '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts")
2317 '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
2318 "Specify ghostscript switches. See the documentation on GS for more info.
2319
2320 It's a list of strings, where each string is one or more ghostscript switches.
2321
2322 A note on the gs switches:
2323
2324 -q quiet
2325 -dNOPAUSE don't wait for user intervention
2326 -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts the directories needed for gs
2327 -c quit it's added at the end to terminate gs
2328
2329 To see ghostscript documentation for more information:
2330
2331 * On GNU or Unix system:
2332 - for full documentation, type: man gs
2333 - for brief documentation, type: gs -h
2334
2335 * On Windows system:
2336 - for full documentation, see in a browser the file
2337 c:/gstools/gs5.50/index.html, that is, the file index.html which is
2338 located in the same directory as gswin32.exe.
2339 - for brief documentation, type: gswin32.exe -h
2340
2341 Useful links:
2342
2343 * Introduction to Ghostscript
2344 `http://www.cs.wisc.edu/~ghost/doc/intro.htm'
2345
2346 * How to use Ghostscript
2347 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
2348
2349 * Printer compatibility
2350 `http://www.cs.wisc.edu/~ghost/doc/printer.htm'
2351 "
2352 :type '(repeat (string :tag "Ghostscript Switch"))
2353 :group 'printing)
2354
2355
2356 (defcustom pr-gs-device
2357 (if ps-windows-system
2358 "mswinpr2"
2359 "uniprint")
2360 "Specify the ghostscript device switch value (-sDEVICE=).
2361
2362 A note on the gs switches:
2363
2364 -sDEVICE=djet500 the printer - works with HP DeskJet 540
2365
2366 See `pr-gs-switches' for documentation.
2367 See also `pr-ps-printer-alist'."
2368 :type '(string :tag "Ghostscript Device")
2369 :group 'printing)
2370
2371
2372 (defcustom pr-gs-resolution 300
2373 "Specify ghostscript resolution switch value (-r).
2374
2375 A note on the gs switches:
2376
2377 -r300 resolution 300x300
2378
2379 See `pr-gs-switches' for documentation.
2380 See also `pr-ps-printer-alist'."
2381 :type '(integer :tag "Ghostscript Resolution")
2382 :group 'printing)
2383
2384
2385 (defcustom pr-print-using-ghostscript nil
2386 "Non-nil means print using ghostscript.
2387
2388 This is useful if you don't have a PostScript printer, so you could use the
2389 ghostscript to print a PostScript file.
2390
2391 In GNU or Unix system, if ghostscript is set as a PostScript filter, this
2392 variable should be nil."
2393 :type 'boolean
2394 :group 'printing)
2395
2396
2397 (defcustom pr-faces-p nil
2398 "Non-nil means print with face attributes."
2399 :type 'boolean
2400 :group 'printing)
2401
2402
2403 (defcustom pr-spool-p nil
2404 "Non-nil means spool printing in a buffer."
2405 :type 'boolean
2406 :group 'printing)
2407
2408
2409 (defcustom pr-file-landscape nil
2410 "Non-nil means print PostScript file in landscape orientation."
2411 :type 'boolean
2412 :group 'printing)
2413
2414
2415 (defcustom pr-file-duplex nil
2416 "Non-nil means print PostScript file in duplex mode."
2417 :type 'boolean
2418 :group 'printing)
2419
2420
2421 (defcustom pr-file-tumble nil
2422 "Non-nil means print PostScript file in tumble mode.
2423
2424 If tumble is off, produces a printing suitable for binding on the left or
2425 right.
2426 If tumble is on, produces a printing suitable for binding at the top or
2427 bottom."
2428 :type 'boolean
2429 :group 'printing)
2430
2431
2432 (defcustom pr-auto-region t
2433 "Non-nil means region is automagically detected.
2434
2435 Note that this will only work if you're using transient mark mode.
2436
2437 When this variable is non-nil, the `*-buffer*' commands will behave like
2438 `*-region*' commands, that is, `*-buffer*' commands will print only the region
2439 marked instead of all buffer."
2440 :type 'boolean
2441 :group 'printing)
2442
2443
2444 (defcustom pr-auto-mode t
2445 "Non-nil means major-mode specific printing is prefered over normal printing.
2446
2447 That is, if current major-mode is declared in `pr-mode-alist', the `*-buffer*'
2448 and `*-region*' commands will behave like `*-mode*' commands; otherwise,
2449 `*-buffer*' commands will print the current buffer and `*-region*' commands
2450 will print the current region."
2451 :type 'boolean
2452 :group 'printing)
2453
2454
2455 (defcustom pr-mode-alist
2456 '((mh-folder-mode ; mh summary buffer
2457 pr-mh-lpr-1 pr-mh-print-1
2458 2
2459 (ps-article-author ps-article-subject)
2460 ("/pagenumberstring load" pr-article-date)
2461 nil
2462 )
2463 (mh-letter-mode ; mh letter buffer
2464 pr-mh-lpr-2 pr-mh-print-2
2465 2
2466 (ps-article-author ps-article-subject)
2467 ("/pagenumberstring load" pr-article-date)
2468 nil
2469 )
2470 (rmail-summary-mode ; rmail summary buffer
2471 pr-rmail-lpr pr-rmail-print
2472 3
2473 (ps-article-subject ps-article-author buffer-name)
2474 nil
2475 nil
2476 )
2477 (rmail-mode ; rmail buffer
2478 pr-rmail-lpr pr-rmail-print
2479 3
2480 (ps-article-subject ps-article-author buffer-name)
2481 nil
2482 nil
2483 )
2484 (gnus-summary-mode ; gnus summary buffer
2485 pr-gnus-lpr pr-gnus-print
2486 3
2487 (ps-article-subject ps-article-author gnus-newsgroup-name)
2488 nil
2489 nil
2490 )
2491 (gnus-article-mode ; gnus article buffer
2492 pr-gnus-lpr pr-gnus-print
2493 3
2494 (ps-article-subject ps-article-author gnus-newsgroup-name)
2495 nil
2496 nil
2497 )
2498 (Info-mode ; Info buffer
2499 pr-mode-lpr pr-mode-print
2500 2
2501 (ps-info-node ps-info-file)
2502 nil
2503 nil
2504 )
2505 (vm-mode ; vm mode
2506 pr-vm-lpr pr-vm-print
2507 3
2508 (ps-article-subject ps-article-author buffer-name)
2509 nil
2510 nil
2511 )
2512 )
2513 "Specify an alist for a major-mode and printing functions.
2514
2515 To customize a major mode printing, just declare the customization in
2516 `pr-mode-alist' and invoke some of `*-mode*' commands. An example for major
2517 mode usage is when you're using gnus (or mh, or rmail, etc.) and you're in the
2518 *Summary* buffer, if you forget to switch to the *Article* buffer before
2519 printing, you'll get a nicely formatted list of article subjects shows up at
2520 the printer. With major mode printing you don't need to switch from gnus
2521 *Summary* buffer first.
2522
2523 The elements have the following form:
2524
2525 (MAJOR-MODE
2526 LPR-PRINT PS-PRINT
2527 HEADER-LINES
2528 LEFT-HEADER
2529 RIGHT-HEADER
2530 KILL-LOCAL-VARIABLE
2531 DEFAULT...)
2532
2533 Where:
2534
2535 MAJOR-MODE It's the major mode symbol.
2536
2537 LPR-PRINT It's a symbol function for text printing. It's invoked with
2538 one argument:
2539 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
2540
2541 Usually LPR-PRINT function prepares the environment or buffer
2542 and then call the function `pr-mode-lpr' which it's used to
2543 process the buffer and send it to text printer.
2544
2545 The `pr-mode-lpr' definition is:
2546
2547 (pr-mode-lpr HEADER-LIST &optional FROM TO)
2548
2549 Where HEADER-LIST is like the argument passed to LPR-PRINT.
2550 FROM and TO are the beginning and end markers, respectively,
2551 for a region. If FROM is nil, it's used (point-min); if TO is
2552 nil, it's used (point-max).
2553
2554 PS-PRINT It's a symbol function for PostScript printing. It's invoked
2555 with 3 arguments: n-up printing, file name and the list:
2556 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
2557
2558 Usually PS-PRINT function prepares the environment or buffer
2559 and then call the function `pr-mode-print' which it's used to
2560 process the buffer and send it to PostScript printer.
2561
2562 The `pr-mode-print' definition is:
2563
2564 (pr-mode-print N-UP FILENAME HEADER-LIST &optional FROM TO)
2565
2566 Where N-UP, FILENAME and HEADER-LIST are like the arguments
2567 passed to PS-PRINT. FROM and TO are the beginning and end
2568 markers, respectively, for a region. If TO is nil, it's used
2569 (point-max).
2570
2571 HEADER-LINES It's the number of header lines; if is nil, it uses
2572 `ps-header-lines' value.
2573
2574 LEFT-HEADER It's the left header part, it's a list of string, variable
2575 symbol or function symbol (with no argument); if is nil, it
2576 uses `ps-left-header' value.
2577
2578 RIGHT-HEADER It's the right header part, it's a list of string, variable
2579 symbol or function symbol (with no argument); if is nil, it
2580 uses `ps-right-header' value.
2581
2582 KILL-LOCAL-VARIABLE
2583 Non-nil means to kill all buffer local variable declared in
2584 DEFAULT (see below).
2585
2586 DEFAULT It's a way to set default values when this entry is selected.
2587 It's a cons like:
2588
2589 (VARIABLE-SYM . VALUE)
2590
2591 Which associates VARIABLE-SYM with VALUE. When this entry is
2592 selected, it's executed the following command:
2593
2594 (set (make-local-variable VARIABLE-SYM) (eval VALUE))
2595
2596 Note that VALUE can be any valid lisp expression. So, don't
2597 forget to quote symbols and constant lists.
2598 If VARIABLE is the special keyword `inherits-from:', VALUE must
2599 be a symbol name setting defined in `pr-setting-database' from
2600 which the current setting inherits the context. Take care with
2601 circular inheritance.
2602 Examples:
2603 '(ps-landscape-mode . nil)
2604 '(ps-spool-duplex . t)
2605 '(pr-gs-device . (my-gs-device t))"
2606 :type '(repeat
2607 (list
2608 :tag ""
2609 (symbol :tag "Major Mode")
2610 (function :tag "Text Printing Function")
2611 (function :tag "PS Printing Function")
2612 (choice :menu-tag "Number of Header Lines"
2613 :tag "Number of Header Lines"
2614 (integer :tag "Number")
2615 (const :tag "Default Number" nil))
2616 (repeat :tag "Left Header List"
2617 (choice :menu-tag "Left Header"
2618 :tag "Left Header"
2619 string symbol))
2620 (repeat :tag "Right Header List"
2621 (choice :menu-tag "Right Header"
2622 :tag "Right Header"
2623 string symbol))
2624 (boolean :tag "Kill Local Variable At End")
2625 (repeat
2626 :tag "Default Value List"
2627 :inline t
2628 (cons
2629 :tag ""
2630 (choice
2631 :menu-tag "Variable"
2632 :tag "Variable"
2633 (const :tag "Landscape" ps-landscape-mode)
2634 (const :tag "Print Header" ps-print-header)
2635 (const :tag "Print Header Frame" ps-print-header-frame)
2636 (const :tag "Line Number" ps-line-number)
2637 (const :tag "Zebra Stripes" ps-zebra-stripes)
2638 (const :tag "Duplex" ps-spool-duplex)
2639 (const :tag "Tumble" ps-spool-tumble)
2640 (const :tag "Upside-Down" ps-print-upside-down)
2641 (const :tag "PS File Landscape" pr-file-landscape)
2642 (const :tag "PS File Duplex" pr-file-duplex)
2643 (const :tag "PS File Tumble" pr-file-tumble)
2644 (const :tag "Auto Region" pr-auto-region)
2645 (const :tag "Auto Mode" pr-auto-mode)
2646 (const :tag "Ghostscript Device" pr-gs-device)
2647 (const :tag "Ghostscript Resolution" pr-gs-resolution)
2648 (const :tag "inherits-from:" inherits-from:)
2649 (variable :tag "Other"))
2650 (sexp :tag "Value")))
2651 ))
2652 :group 'printing)
2653
2654
2655 (defcustom pr-ps-utility 'mpage
2656 "Specify PostScript utility symbol.
2657
2658 This utility symbol should be defined on `pr-ps-utility-alist' (see it for
2659 documentation).
2660
2661 This variable should be modified by customization engine. If this variable is
2662 modified by other means (for example, a lisp function), use `pr-update-menus'
2663 function (see it for documentation) to update PostScript utility menu.
2664
2665 NOTE: Don't forget to download and install the utilities declared on
2666 `pr-ps-utility-alist'."
2667 :type '(symbol :tag "PS File Utility")
2668 :set 'pr-ps-utility-custom-set
2669 :group 'printing)
2670
2671
2672 (defcustom pr-ps-utility-alist
2673 '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
2674 (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
2675 (inherits-from: . no-duplex))
2676 )
2677 ;; Examples:
2678 ;; * On GNU or Unix system:
2679 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
2680 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
2681 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
2682 ;; )
2683 ;; * On Windows system:
2684 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
2685 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
2686 ;; )
2687 "Specify an alist for PostScript utility processing (PS utility database).
2688
2689 The alist element has the form:
2690
2691 (SYMBOL UTILITY MUST-SWITCHES PAPERSIZE N-UP LANDSCAPE DUPLEX TUMBLE OUTPUT
2692 SWITCHES DEFAULT...)
2693
2694 Where:
2695
2696 SYMBOL It's a symbol to identify a PostScript utility. It's for
2697 `pr-ps-utility' variable setting and for menu selection.
2698 Examples:
2699 'mpage
2700 'psnup
2701
2702 UTILITY Name of utility for processing a PostScript file.
2703 See also `pr-path-alist'.
2704 Examples:
2705 . for GNU or Unix system:
2706 \"mpage\"
2707 \"psnup -q\"
2708
2709 . for Windows system:
2710 \"c:/psutils/psnup -q\"
2711
2712 MUST-SWITCHES List of sexp's to pass as options to the PostScript utility
2713 program. These options are necessary to process the utility
2714 program and must be placed before any other switches.
2715 Example:
2716 . for psnup:
2717 '(\"-q\")
2718
2719 PAPERSIZE It's a format string to specify paper size switch.
2720 Example:
2721 . for mpage
2722 \"-b%s\"
2723
2724 N-UP It's a format string to specify n-up switch.
2725 Example:
2726 . for psnup
2727 \"-%d\"
2728
2729 LANDSCAPE It's a string to specify landscape switch. If the utility
2730 doesn't have landscape switch, set to nil.
2731 Example:
2732 . for psnup
2733 \"-l\"
2734
2735 DUPLEX It's a string to specify duplex switch. If the utility doesn't
2736 have duplex switch, set to nil.
2737 Example:
2738 . for psnup
2739 nil
2740
2741 TUMBLE It's a string to specify tumble switch. If the utility doesn't
2742 have tumble switch, set to nil.
2743 Example:
2744 . for psnup
2745 nil
2746
2747 OUTPUT It's a string to specify how to generate an output file. Some
2748 utilities accept an output file option, but some others need
2749 output redirection or some other way to specify an output file.
2750 Example:
2751 . for psnup
2752 \" \" ; psnup ... input output
2753
2754 . for mpage
2755 \">\" ; mpage ... input > output
2756
2757 SWITCHES List of sexp's to pass as extra options to the PostScript utility
2758 program.
2759 Example:
2760 . for psnup
2761 '(\"-q\")
2762 nil
2763
2764 DEFAULT It's a way to set default values when this entry is selected.
2765 It's a cons like:
2766
2767 (VARIABLE . VALUE)
2768
2769 Which associates VARIABLE with VALUE. When this entry is
2770 selected, it's executed the following command:
2771
2772 (set VARIABLE (eval VALUE))
2773
2774 Note that VALUE can be any valid lisp expression. So, don't
2775 forget to quote symbols and constant lists.
2776 If VARIABLE is the special keyword `inherits-from:', VALUE must
2777 be a symbol name setting defined in `pr-setting-database' from
2778 which the current setting inherits the context. Take care with
2779 circular inheritance.
2780 Examples:
2781 '(pr-file-landscape . nil)
2782 '(pr-file-duplex . t)
2783 '(pr-gs-device . (my-gs-device t))
2784
2785 This variable should be modified by customization engine. If this variable is
2786 modified by other means (for example, a lisp function), use `pr-update-menus'
2787 function (see it for documentation) to update PostScript utility menu.
2788
2789 NOTE: Don't forget to download and install the utilities declared on
2790 `pr-ps-utility-alist'.
2791
2792 Examples:
2793
2794 * On GNU or Unix system:
2795
2796 '((mpage \"mpage\" nil \"-b%s\" \"-%d\" \"-l\" \"-t\" \"-T\" \">\" nil)
2797 (psnup \"psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" nil
2798 (pr-file-duplex . nil) (pr-file-tumble . nil))
2799 )
2800
2801 * On Windows system:
2802
2803 '((psnup \"c:/psutils/psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \"
2804 nil (pr-file-duplex . nil) (pr-file-tumble . nil))
2805 )
2806
2807 Useful links:
2808
2809 * mpage download (GNU or Unix)
2810 `http://www.mesa.nl/pub/mpage/'
2811
2812 * mpage documentation (GNU or Unix - or type `man mpage')
2813 `http://www.cs.umd.edu/faq/guides/manual_unix/node48.html'
2814 `http://www.rt.com/man/mpage.1.html'
2815
2816 * psnup (Windows, GNU or Unix)
2817 `http://www.knackered.org/angus/psutils/'
2818 `http://gershwin.ens.fr/vdaniel/Doc-Locale/Outils-Gnu-Linux/PsUtils/'
2819
2820 * psnup (PsUtils for Windows)
2821 `http://gnuwin32.sourceforge.net/packages/psutils.htm'
2822
2823 * psnup documentation (GNU or Unix - or type `man psnup')
2824 `http://linux.about.com/library/cmd/blcmdl1_psnup.htm'
2825 `http://amath.colorado.edu/computing/software/man/psnup.html'
2826
2827 * GNU Enscript (Windows, GNU or Unix)
2828 `http://people.ssh.com/mtr/genscript/'
2829
2830 * GNU Enscript documentation (Windows, GNU or Unix)
2831 `http://people.ssh.com/mtr/genscript/enscript.man.html'
2832 (on GNU or Unix, type `man enscript')
2833 "
2834 :type '(repeat
2835 (list :tag "PS File Utility"
2836 (symbol :tag "Utility Symbol")
2837 (string :tag "Utility Name")
2838 (repeat :tag "Must Utility Switches"
2839 (sexp :tag "Switch" :value ""))
2840 (choice :menu-tag "Paper Size"
2841 :tag "Paper Size"
2842 (const :tag "No Paper Size" nil)
2843 (string :tag "Paper Size Format"))
2844 (choice :menu-tag "N-Up"
2845 :tag "N-Up"
2846 (const :tag "No N-Up" nil)
2847 (string :tag "N-Up Format"))
2848 (choice :menu-tag "Landscape"
2849 :tag "Landscape"
2850 (const :tag "No Landscape" nil)
2851 (string :tag "Landscape Switch"))
2852 (choice :menu-tag "Duplex"
2853 :tag "Duplex"
2854 (const :tag "No Duplex" nil)
2855 (string :tag "Duplex Switch"))
2856 (choice :menu-tag "Tumble"
2857 :tag "Tumble"
2858 (const :tag "No Tumble" nil)
2859 (string :tag "Tumble Switch"))
2860 (string :tag "Output Separator")
2861 (repeat :tag "Utility Switches"
2862 (sexp :tag "Switch" :value ""))
2863 (repeat
2864 :tag "Default Value List"
2865 :inline t
2866 (cons
2867 :tag ""
2868 (choice
2869 :menu-tag "Variable"
2870 :tag "Variable"
2871 (const :tag "PS File Landscape" pr-file-landscape)
2872 (const :tag "PS File Duplex" pr-file-duplex)
2873 (const :tag "PS File Tumble" pr-file-tumble)
2874 (const :tag "Ghostscript Device" pr-gs-device)
2875 (const :tag "Ghostscript Resolution" pr-gs-resolution)
2876 (const :tag "inherits-from:" inherits-from:)
2877 (variable :tag "Other"))
2878 (sexp :tag "Value")))
2879 ))
2880 :set 'pr-alist-custom-set
2881 :group 'printing)
2882
2883
2884 (defcustom pr-menu-lock t
2885 "Non-nil means menu is locked while selecting toggle options.
2886
2887 See also `pr-menu-char-height' and `pr-menu-char-width'."
2888 :type 'boolean
2889 :group 'printing)
2890
2891
2892 (defcustom pr-menu-char-height (pr-menu-char-height)
2893 "Specify menu char height in pixels.
2894
2895 This variable is used to guess which vertical position should be locked the
2896 menu, so don't forget to adjust it if menu position is not ok.
2897
2898 See also `pr-menu-lock' and `pr-menu-char-width'."
2899 :type 'integer
2900 :group 'printing)
2901
2902
2903 (defcustom pr-menu-char-width (pr-menu-char-width)
2904 "Specify menu char width in pixels.
2905
2906 This variable is used to guess which horizontal position should be locked the
2907 menu, so don't forget to adjust it if menu position is not ok.
2908
2909 See also `pr-menu-lock' and `pr-menu-char-height'."
2910 :type 'integer
2911 :group 'printing)
2912
2913
2914 (defcustom pr-setting-database
2915 '((no-duplex ; setting symbol name
2916 nil nil nil ; inherits local kill-local
2917 (pr-file-duplex . nil) ; settings
2918 (pr-file-tumble . nil))
2919 )
2920 "Specify an alist for settings in general.
2921
2922 The elements have the following form:
2923
2924 (SYMBOL INHERITS LOCAL KILL-LOCAL SETTING...)
2925
2926 Where:
2927
2928 SYMBOL It's a symbol to identify the setting group.
2929
2930 INHERITS Specify the inheritance for SYMBOL group. It's a symbol name
2931 setting from which the current setting inherits the context.
2932 If INHERITS is nil, means that there is no inheritance.
2933 This is a simple inheritance mechanism.
2934
2935 Let's see an example to illustrate the inheritance mechanism:
2936
2937 (setq pr-setting-database
2938 '((no-duplex ; setting symbol name
2939 nil ; inherits
2940 nil nil ; local kill-local
2941 (pr-file-duplex . nil) ; settings
2942 (pr-file-tumble . nil)
2943 )
2944 (no-duplex-and-landscape ; setting symbol name
2945 no-duplex ; inherits
2946 nil nil ; local kill-local
2947 (pr-file-landscape . nil) ; settings
2948 )))
2949
2950 The example above has two setting groups: no-duplex and
2951 no-duplex-and-landscape. When setting no-duplex is activated
2952 through `inherits-from:' (see `pr-ps-utility', `pr-mode-alist'
2953 and `pr-ps-printer-alist'), the variables pr-file-duplex and
2954 pr-file-tumble are both set to nil.
2955
2956 Now when setting no-duplex-and-landscape is activated through
2957 `inherits-from:', the variable pr-file-landscape is set to nil
2958 and also the settings for no-duplex are done, because
2959 no-duplex-and-landscape inherits settings from no-duplex.
2960
2961 Take care with circular inheritance. It's an error if circular
2962 inheritance happens.
2963
2964 LOCAL Non-nil means that all settings for SYMBOL group will be
2965 declared local buffer.
2966
2967 KILL-LOCAL Non-nil means that all settings for SYMBOL group will be
2968 killed at end. It has effect only when LOCAL is non-nil.
2969
2970 SETTING It's a cons like:
2971
2972 (VARIABLE . VALUE)
2973
2974 Which associates VARIABLE with VALUE. When this entry is
2975 selected, it's executed the following command:
2976
2977 * If LOCAL is non-nil:
2978 (set (make-local-variable VARIABLE) (eval VALUE))
2979
2980 * If LOCAL is nil:
2981 (set VARIABLE (eval VALUE))
2982
2983 Note that VALUE can be any valid lisp expression. So, don't
2984 forget to quote symbols and constant lists.
2985 This setting is ignored if VARIABLE is equal to keyword
2986 `inherits-from:'.
2987 Examples:
2988 '(ps-landscape-mode . nil)
2989 '(ps-spool-duplex . t)
2990 '(pr-gs-device . (my-gs-device t))"
2991 :type '(repeat
2992 (list
2993 :tag ""
2994 (symbol :tag "Setting Name")
2995 (choice :menu-tag "Inheritance"
2996 :tag "Inheritance"
2997 (const :tag "No Inheritance" nil)
2998 (symbol :tag "Inherits From"))
2999 (boolean :tag "Local Buffer Setting")
3000 (boolean :tag "Kill Local Variable At End")
3001 (repeat
3002 :tag "Setting List"
3003 :inline t
3004 (cons
3005 :tag ""
3006 (choice
3007 :menu-tag "Variable"
3008 :tag "Variable"
3009 (const :tag "Landscape" ps-landscape-mode)
3010 (const :tag "Print Header" ps-print-header)
3011 (const :tag "Print Header Frame" ps-print-header-frame)
3012 (const :tag "Line Number" ps-line-number)
3013 (const :tag "Zebra Stripes" ps-zebra-stripes)
3014 (const :tag "Duplex" ps-spool-duplex)
3015 (const :tag "Tumble" ps-spool-tumble)
3016 (const :tag "Upside-Down" ps-print-upside-down)
3017 (const :tag "PS File Landscape" pr-file-landscape)
3018 (const :tag "PS File Duplex" pr-file-duplex)
3019 (const :tag "PS File Tumble" pr-file-tumble)
3020 (const :tag "Auto Region" pr-auto-region)
3021 (const :tag "Auto Mode" pr-auto-mode)
3022 (const :tag "Ghostscript Device" pr-gs-device)
3023 (const :tag "Ghostscript Resolution" pr-gs-resolution)
3024 (variable :tag "Other"))
3025 (sexp :tag "Value")))
3026 ))
3027 :group 'printing)
3028
3029
3030 (defcustom pr-visible-entry-list
3031 '(postscript text postscript-options postscript-process printing help)
3032 "Specify a list of Printing menu visible entries.
3033
3034 Valid values with the corresponding menu parts are:
3035
3036 +------------------------------+
3037 | Printing Interface |
3038 +------------------------------+
3039 `postscript' | PostScript Preview >|
3040 | PostScript Print >|
3041 | PostScript Printer: name >|
3042 +------------------------------+
3043 `text' | Printify >|
3044 | Print >|
3045 | Text Printer: name >|
3046 +------------------------------+
3047 `postscript-options' |[ ] Landscape |
3048 |[ ] Print Header |
3049 |[ ] Print Header Frame |
3050 |[ ] Line Number |
3051 |[ ] Zebra Stripes |
3052 |[ ] Duplex |
3053 |[ ] Tumble |
3054 |[ ] Upside-Down |
3055 | Print All Pages >|
3056 +------------------------------+
3057 `postscript-process' |[ ] Spool Buffer |
3058 |[ ] Print with faces |
3059 |[ ] Print via Ghostscript |
3060 +------------------------------+
3061 `printing' |[ ] Auto Region |
3062 |[ ] Auto Mode |
3063 |[ ] Menu Lock |
3064 +------------------------------+
3065 `help' | Customize >|
3066 | Show Settings >|
3067 | Help |
3068 +------------------------------+
3069
3070 Any other value is ignored."
3071 :type '(repeat :tag "Menu Visible Part"
3072 (choice :menu-tag "Menu Part"
3073 :tag "Menu Part"
3074 (const postscript)
3075 (const text)
3076 (const postscript-options)
3077 (const postscript-process)
3078 (const printing)
3079 (const help)))
3080 :group 'printing)
3081
3082
3083 (defcustom pr-delete-temp-file t
3084 "Non-nil means delete temporary files.
3085
3086 Set `pr-delete-temp-file' to nil, if the following message (or a similar)
3087 happens when printing:
3088
3089 Error: could not open \"c:\\temp\\prspool.ps\" for reading."
3090 :type 'boolean
3091 :group 'printing)
3092
3093
3094 (defcustom pr-list-directory nil
3095 "Non-nil means list directory when processing a directory.
3096
3097 That is, any subdirectories (and the superdirectory) of the directory (given as
3098 argument of functions below) are also printed (as dired-mode listings).
3099
3100 It's used by `pr-ps-directory-preview', `pr-ps-directory-using-ghostscript',
3101 `pr-ps-directory-print', `pr-ps-directory-ps-print', `pr-printify-directory'
3102 and `pr-txt-directory'."
3103 :type 'boolean
3104 :group 'printing)
3105
3106
3107 (defcustom pr-buffer-name "*Printing Interface*"
3108 "Specify the name of the buffer interface for printing package.
3109
3110 It's used by `pr-interface'."
3111 :type 'string
3112 :group 'printing)
3113
3114
3115 (defcustom pr-buffer-name-ignore
3116 (list (regexp-quote pr-buffer-name) ; ignore printing interface buffer
3117 "^ .*$") ; ignore invisible buffers
3118 "Specify a regexp list for buffer names to be ignored in interface buffer.
3119
3120 NOTE: Case is important for matching, that is, `case-fold-search' is always
3121 nil.
3122
3123 It's used by `pr-interface'."
3124 :type '(repeat (regexp :tag "Buffer Name Regexp"))
3125 :group 'printing)
3126
3127
3128 (defcustom pr-buffer-verbose t
3129 "Non-nil means to be verbose when editing a field in interface buffer.
3130
3131 It's used by `pr-interface'."
3132 :type 'boolean
3133 :group 'printing)
3134
3135
3136 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3137 ;; Internal Variables
3138
3139
3140 (defvar pr-txt-command nil
3141 "Name of program for printing a text file.
3142 See `pr-txt-printer-alist'.")
3143
3144
3145 (defvar pr-txt-switches nil
3146 "List of sexp's to pass as extra options to the text printer program.
3147 See `pr-txt-printer-alist'.")
3148
3149
3150 (defvar pr-txt-printer nil
3151 "Specify text printer name.
3152 See `pr-txt-printer-alist'.")
3153
3154
3155 (defvar pr-ps-command nil
3156 "Name of program for printing a PostScript file.
3157 See `pr-ps-printer-alist'.")
3158
3159
3160 (defvar pr-ps-switches nil
3161 "List of sexp's to pass as extra options to the PostScript printer program.
3162 See `pr-ps-printer-alist'.")
3163
3164
3165 (defvar pr-ps-printer-switch nil
3166 "Specify PostScript printer name switch.
3167 See `pr-ps-printer-alist'.")
3168
3169
3170 (defvar pr-ps-printer nil
3171 "Specify PostScript printer name.
3172 See `pr-ps-printer-alist'.")
3173
3174
3175 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3176 ;; Macros
3177
3178
3179 (defmacro pr-save-file-modes (&rest body)
3180 "Set temporally file modes to `pr-file-modes'."
3181 `(let ((pr--default-file-modes (default-file-modes))) ; save default
3182 (set-default-file-modes pr-file-modes)
3183 ,@body
3184 (set-default-file-modes pr--default-file-modes))) ; restore default
3185
3186
3187 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3188 ;; Keys & Menus
3189
3190
3191 (defsubst pr-visible-p (key)
3192 (memq key pr-visible-entry-list))
3193
3194
3195 (defsubst pr-mode-alist-p ()
3196 (cdr (assq major-mode pr-mode-alist)))
3197
3198
3199 (defsubst pr-auto-mode-p ()
3200 (and pr-auto-mode (pr-mode-alist-p)))
3201
3202
3203 (defsubst pr-using-ghostscript-p ()
3204 (and pr-print-using-ghostscript (not pr-spool-p)))
3205
3206
3207 (defalias 'pr-get-symbol
3208 (if (fboundp 'easy-menu-intern) ; hacked from easymenu.el
3209 'easy-menu-intern
3210 (lambda (s) (if (stringp s) (intern s) s))))
3211
3212
3213 (defconst pr-menu-spec
3214 ;; Menu mapping:
3215 ;; unfortunately XEmacs doesn't support :active for submenus,
3216 ;; only for items.
3217 ;; So, it uses :included instead of :active.
3218 ;; Also, XEmacs doesn't support :help tag.
3219 (let ((pr-:active (if (featurep 'xemacs)
3220 :included ; XEmacs
3221 :active)) ; GNU Emacs
3222 (pr-:help (if (featurep 'xemacs)
3223 'ignore ; XEmacs
3224 #'(lambda (text) (list :help text))))) ; GNU Emacs
3225 `(
3226 ["Printing Interface" pr-interface
3227 ,@(funcall
3228 pr-:help "Use buffer interface instead of menu interface")]
3229 "--"
3230 ("PostScript Preview" :included (pr-visible-p 'postscript)
3231 ,@(funcall
3232 pr-:help "Preview PostScript instead of sending to printer")
3233 ("Directory" ,pr-:active (not pr-spool-p)
3234 ["1-up" (pr-ps-directory-preview 1 nil nil t) t]
3235 ["2-up" (pr-ps-directory-preview 2 nil nil t) t]
3236 ["4-up" (pr-ps-directory-preview 4 nil nil t) t]
3237 ["Other..." (pr-ps-directory-preview nil nil nil t)
3238 :keys "\\[pr-ps-buffer-preview]"])
3239 ("Buffer" ,pr-:active (not pr-spool-p)
3240 ["1-up" (pr-ps-buffer-preview 1 t) t]
3241 ["2-up" (pr-ps-buffer-preview 2 t) t]
3242 ["4-up" (pr-ps-buffer-preview 4 t) t]
3243 ["Other..." (pr-ps-buffer-preview nil t)
3244 :keys "\\[pr-ps-buffer-preview]"])
3245 ("Region" ,pr-:active (and (not pr-spool-p) (ps-mark-active-p))
3246 ["1-up" (pr-ps-region-preview 1 t) t]
3247 ["2-up" (pr-ps-region-preview 2 t) t]
3248 ["4-up" (pr-ps-region-preview 4 t) t]
3249 ["Other..." (pr-ps-region-preview nil t)
3250 :keys "\\[pr-ps-region-preview]"])
3251 ("Mode" ,pr-:active (and (not pr-spool-p) (pr-mode-alist-p))
3252 ["1-up" (pr-ps-mode-preview 1 t) t]
3253 ["2-up" (pr-ps-mode-preview 2 t) t]
3254 ["4-up" (pr-ps-mode-preview 4 t) t]
3255 ["Other..." (pr-ps-mode-preview nil t)
3256 :keys "\\[pr-ps-mode-preview]"])
3257 ("File"
3258 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview)
3259 :keys "\\[pr-ps-file-preview]"
3260 ,@(funcall
3261 pr-:help "Preview PostScript file")]
3262 "--"
3263 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
3264 ,@(funcall
3265 pr-:help "Select PostScript utility")]
3266 "--"
3267 ["1-up..." (pr-ps-file-up-preview 1 t t) pr-ps-utility-alist]
3268 ["2-up..." (pr-ps-file-up-preview 2 t t) pr-ps-utility-alist]
3269 ["4-up..." (pr-ps-file-up-preview 4 t t) pr-ps-utility-alist]
3270 ["Other..." (pr-ps-file-up-preview nil t t)
3271 :keys "\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist]
3272 "--"
3273 ["Landscape" pr-toggle-file-landscape-menu
3274 :style toggle :selected pr-file-landscape
3275 ,@(funcall
3276 pr-:help "Toggle landscape for PostScript file")
3277 :active pr-ps-utility-alist]
3278 ["Duplex" pr-toggle-file-duplex-menu
3279 :style toggle :selected pr-file-duplex
3280 ,@(funcall
3281 pr-:help "Toggle duplex for PostScript file")
3282 :active pr-ps-utility-alist]
3283 ["Tumble" pr-toggle-file-tumble-menu
3284 :style toggle :selected pr-file-tumble
3285 ,@(funcall
3286 pr-:help "Toggle tumble for PostScript file")
3287 :active (and pr-file-duplex pr-ps-utility-alist)])
3288 ["Despool..." (call-interactively 'pr-despool-preview)
3289 :active pr-spool-p :keys "\\[pr-despool-preview]"
3290 ,@(funcall
3291 pr-:help "Despool PostScript buffer to printer or file (C-u)")])
3292 ("PostScript Print" :included (pr-visible-p 'postscript)
3293 ,@(funcall
3294 pr-:help "Send PostScript to printer or file (C-u)")
3295 ("Directory"
3296 ["1-up" (pr-ps-directory-ps-print 1 nil nil t) t]
3297 ["2-up" (pr-ps-directory-ps-print 2 nil nil t) t]
3298 ["4-up" (pr-ps-directory-ps-print 4 nil nil t) t]
3299 ["Other..." (pr-ps-directory-ps-print nil nil nil t)
3300 :keys "\\[pr-ps-buffer-ps-print]"])
3301 ("Buffer"
3302 ["1-up" (pr-ps-buffer-ps-print 1 t) t]
3303 ["2-up" (pr-ps-buffer-ps-print 2 t) t]
3304 ["4-up" (pr-ps-buffer-ps-print 4 t) t]
3305 ["Other..." (pr-ps-buffer-ps-print nil t)
3306 :keys "\\[pr-ps-buffer-ps-print]"])
3307 ("Region" ,pr-:active (ps-mark-active-p)
3308 ["1-up" (pr-ps-region-ps-print 1 t) t]
3309 ["2-up" (pr-ps-region-ps-print 2 t) t]
3310 ["4-up" (pr-ps-region-ps-print 4 t) t]
3311 ["Other..." (pr-ps-region-ps-print nil t)
3312 :keys "\\[pr-ps-region-ps-print]"])
3313 ("Mode" ,pr-:active (pr-mode-alist-p)
3314 ["1-up" (pr-ps-mode-ps-print 1 t) t]
3315 ["2-up" (pr-ps-mode-ps-print 2 t) t]
3316 ["4-up" (pr-ps-mode-ps-print 4 t) t]
3317 ["Other..." (pr-ps-mode-ps-print nil t)
3318 :keys "\\[pr-ps-mode-ps-print]"])
3319 ("File"
3320 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print)
3321 :keys "\\[pr-ps-file-ps-print]"
3322 ,@(funcall
3323 pr-:help "Send PostScript file to printer")]
3324 "--"
3325 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
3326 ,@(funcall
3327 pr-:help "Select PostScript utility")]
3328 "--"
3329 ["1-up..." (pr-ps-file-up-ps-print 1 t t) pr-ps-utility-alist]
3330 ["2-up..." (pr-ps-file-up-ps-print 2 t t) pr-ps-utility-alist]
3331 ["4-up..." (pr-ps-file-up-ps-print 4 t t) pr-ps-utility-alist]
3332 ["Other..." (pr-ps-file-up-ps-print nil t t)
3333 :keys "\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist]
3334 "--"
3335 ["Landscape" pr-toggle-file-landscape-menu
3336 :style toggle :selected pr-file-landscape
3337 ,@(funcall
3338 pr-:help "Toggle landscape for PostScript file")
3339 :active pr-ps-utility-alist]
3340 ["Duplex" pr-toggle-file-duplex-menu
3341 :style toggle :selected pr-file-duplex
3342 ,@(funcall
3343 pr-:help "Toggle duplex for PostScript file")
3344 :active pr-ps-utility-alist]
3345 ["Tumble" pr-toggle-file-tumble-menu
3346 :style toggle :selected pr-file-tumble
3347 ,@(funcall
3348 pr-:help "Toggle tumble for PostScript file")
3349 :active (and pr-file-duplex pr-ps-utility-alist)])
3350 ["Despool..." (call-interactively 'pr-despool-ps-print)
3351 :active pr-spool-p :keys "\\[pr-despool-ps-print]"
3352 ,@(funcall
3353 pr-:help "Despool PostScript buffer to printer or file (C-u)")])
3354 ["PostScript Printers" pr-update-menus
3355 :active pr-ps-printer-alist :included (pr-visible-p 'postscript)
3356 ,@(funcall
3357 pr-:help "Select PostScript printer")]
3358 "--"
3359 ("Printify" :included (pr-visible-p 'text)
3360 ,@(funcall
3361 pr-:help
3362 "Replace non-printing chars with printable representations.")
3363 ["Directory" pr-printify-directory t]
3364 ["Buffer" pr-printify-buffer t]
3365 ["Region" pr-printify-region (ps-mark-active-p)])
3366 ("Print" :included (pr-visible-p 'text)
3367 ,@(funcall
3368 pr-:help "Send text to printer")
3369 ["Directory" pr-txt-directory t]
3370 ["Buffer" pr-txt-buffer t]
3371 ["Region" pr-txt-region (ps-mark-active-p)]
3372 ["Mode" pr-txt-mode (pr-mode-alist-p)])
3373 ["Text Printers" pr-update-menus
3374 :active pr-txt-printer-alist :included (pr-visible-p 'text)
3375 ,@(funcall
3376 pr-:help "Select text printer")]
3377 "--"
3378 ["Landscape" pr-toggle-landscape-menu
3379 :style toggle :selected ps-landscape-mode
3380 :included (pr-visible-p 'postscript-options)]
3381 ["Print Header" pr-toggle-header-menu
3382 :style toggle :selected ps-print-header
3383 :included (pr-visible-p 'postscript-options)]
3384 ["Print Header Frame" pr-toggle-header-frame-menu
3385 :style toggle :selected ps-print-header-frame :active ps-print-header
3386 :included (pr-visible-p 'postscript-options)]
3387 ["Line Number" pr-toggle-line-menu
3388 :style toggle :selected ps-line-number
3389 :included (pr-visible-p 'postscript-options)]
3390 ["Zebra Stripes" pr-toggle-zebra-menu
3391 :style toggle :selected ps-zebra-stripes
3392 :included (pr-visible-p 'postscript-options)]
3393 ["Duplex" pr-toggle-duplex-menu
3394 :style toggle :selected ps-spool-duplex
3395 :included (pr-visible-p 'postscript-options)]
3396 ["Tumble" pr-toggle-tumble-menu
3397 :style toggle :selected ps-spool-tumble :active ps-spool-duplex
3398 :included (pr-visible-p 'postscript-options)]
3399 ["Upside-Down" pr-toggle-upside-down-menu
3400 :style toggle :selected ps-print-upside-down
3401 :included (pr-visible-p 'postscript-options)]
3402 ("Print All Pages" :included (pr-visible-p 'postscript-options)
3403 ,@(funcall
3404 pr-:help "Select odd/even pages/sheets to print")
3405 ["All Pages" (pr-even-or-odd-pages nil)
3406 :style radio :selected (eq ps-even-or-odd-pages nil)]
3407 ["Even Pages" (pr-even-or-odd-pages 'even-page)
3408 :style radio :selected (eq ps-even-or-odd-pages 'even-page)]
3409 ["Odd Pages" (pr-even-or-odd-pages 'odd-page)
3410 :style radio :selected (eq ps-even-or-odd-pages 'odd-page)]
3411 ["Even Sheets" (pr-even-or-odd-pages 'even-sheet)
3412 :style radio :selected (eq ps-even-or-odd-pages 'even-sheet)]
3413 ["Odd Sheets" (pr-even-or-odd-pages 'odd-sheet)
3414 :style radio :selected (eq ps-even-or-odd-pages 'odd-sheet)])
3415 "--"
3416 ["Spool Buffer" pr-toggle-spool-menu
3417 :style toggle :selected pr-spool-p
3418 :included (pr-visible-p 'postscript-process)
3419 ,@(funcall
3420 pr-:help "Toggle PostScript spooling")]
3421 ["Print with faces" pr-toggle-faces-menu
3422 :style toggle :selected pr-faces-p
3423 :included (pr-visible-p 'postscript-process)
3424 ,@(funcall
3425 pr-:help "Toggle PostScript printing with faces")]
3426 ["Print via Ghostscript" pr-toggle-ghostscript-menu
3427 :style toggle :selected pr-print-using-ghostscript
3428 :included (pr-visible-p 'postscript-process)
3429 ,@(funcall
3430 pr-:help "Toggle PostScript generation using ghostscript")]
3431 "--"
3432 ["Auto Region" pr-toggle-region-menu
3433 :style toggle :selected pr-auto-region
3434 :included (pr-visible-p 'printing)]
3435 ["Auto Mode" pr-toggle-mode-menu
3436 :style toggle :selected pr-auto-mode
3437 :included (pr-visible-p 'printing)]
3438 ["Menu Lock" pr-toggle-lock-menu
3439 :style toggle :selected pr-menu-lock
3440 :included (pr-visible-p 'printing)]
3441 "--"
3442 ("Customize" :included (pr-visible-p 'help)
3443 ["printing" pr-customize t]
3444 ["ps-print" ps-print-customize t]
3445 ["lpr" lpr-customize t])
3446 ("Show Settings" :included (pr-visible-p 'help)
3447 ["printing" pr-show-pr-setup t]
3448 ["ps-print" pr-show-ps-setup t]
3449 ["lpr" pr-show-lpr-setup t])
3450 ["Help" pr-help :active t :included (pr-visible-p 'help)]
3451 )))
3452
3453
3454 (defun pr-menu-bind ()
3455 "Install `printing' menu in the menubar.
3456 This replaces the File/Print* menu entries with a File/Print sub-menu.
3457 Calls `pr-update-menus' to adjust menus."
3458 (interactive)
3459 (pr-global-menubar pr-menu-spec)
3460 (pr-update-menus t))
3461
3462
3463 ;; Key binding
3464 (let ((pr-print-key (if (featurep 'xemacs)
3465 'f22 ; XEmacs
3466 'print))) ; GNU Emacs
3467 (global-set-key `[,pr-print-key] 'pr-ps-fast-fire)
3468 ;; Well, M-print and S-print are used because in my keyboard S-print works
3469 ;; and M-print doesn't. But M-print can work in other keyboard.
3470 (global-set-key `[(meta ,pr-print-key)] 'pr-ps-mode-using-ghostscript)
3471 (global-set-key `[(shift ,pr-print-key)] 'pr-ps-mode-using-ghostscript)
3472 ;; Well, C-print and C-M-print are used because in my keyboard C-M-print works
3473 ;; and C-print doesn't. But C-print can work in other keyboard.
3474 (global-set-key `[(control ,pr-print-key)] 'pr-txt-fast-fire)
3475 (global-set-key `[(control meta ,pr-print-key)] 'pr-txt-fast-fire))
3476
3477
3478 ;;; You can also use something like:
3479 ;;;(global-set-key "\C-ci" 'pr-interface)
3480 ;;;(global-set-key "\C-cbp" 'pr-ps-buffer-print)
3481 ;;;(global-set-key "\C-cbx" 'pr-ps-buffer-preview)
3482 ;;;(global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
3483 ;;;(global-set-key "\C-crp" 'pr-ps-region-print)
3484 ;;;(global-set-key "\C-crx" 'pr-ps-region-preview)
3485 ;;;(global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
3486
3487
3488 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3489 ;; Help Message
3490
3491
3492 (defconst pr-help-message
3493 (concat "printing.el version " pr-version
3494 " ps-print.el version " ps-print-version
3495 "\n\n
3496 Menu Layout
3497 -----------
3498
3499 The `printing' menu (Tools/Printing or File/Print) has the following layout:
3500
3501 +-----------------------------+
3502 A 0 | Printing Interface |
3503 +-----------------------------+ +-A---------+ +-B------+
3504 I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
3505 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
3506 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
3507 +-----------------------------+ |Mode >|-- B |Other...|
3508 II 4 | Printify >|-----\\ |File >|--\\ +--------+
3509 5 | Print >|---\\ | |Despool... | |
3510 6 | Text Printer: name >|-\\ | | +-----------+ |
3511 +-----------------------------+ | | | +---------+ +------------+
3512 III 7 |[ ]Landscape | | | \\-|Directory| | No Prep... | Ia
3513 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
3514 9 |[ ]Print Header Frame | | | |Region | | name >|- C
3515 10 |[ ]Line Number | | | +---------+ +------------+
3516 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
3517 12 |[ ]Duplex | | \\---|Directory| | 2-up... |
3518 13 |[ ]Tumble | \\--\\ |Buffer | | 4-up... |
3519 14 |[ ]Upside-Down | | |Region | | Other... |
3520 15 | Print All Pages >|--\\ | |Mode | +------------+
3521 +-----------------------------+ | | +---------+ |[ ]Landscape| Id
3522 IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
3523 17 |[ ]Print with faces | | \\--|( )name A| |[ ]Tumble | If
3524 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
3525 +-----------------------------+ | |... |
3526 V 19 |[ ]Auto Region | | |(*)name |
3527 20 |[ ]Auto Mode | | |... |
3528 21 |[ ]Menu Lock | | +---------+ +--------------+
3529 +-----------------------------+ \\------------------|(*)All Pages |
3530 VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
3531 23 | Show Settings >|-------|printing| |( )Odd Pages |
3532 24 | Help | |ps-print| |( )Even Sheets|
3533 +-----------------------------+ |lpr | |( )Odd Sheets |
3534 +--------+ +--------------+
3535
3536 See `pr-visible-entry-list' for hiding some parts of the menu.
3537
3538 The menu has the following sections:
3539
3540 A. Interface:
3541
3542 0. You can use a buffer interface instead of menus. It looks like the
3543 customization buffer. Basically, it has the same options found in the
3544 menu and some extra options, all this on a buffer.
3545
3546 I. PostScript printing:
3547
3548 1. You can generate a PostScript file (if you type C-u before activating
3549 menu) or PostScript temporary file for a directory, a buffer, a region
3550 or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
3551 after file generation, ghostview is activated using the file generated
3552 as argument. This option is disabled if spooling is on (option 16).
3553 Also, if you already have a PostScript file you can preview it.
3554 Instead of previewing each buffer, region or major mode at once, you
3555 can save temporarily the PostScript code generated in a buffer and
3556 preview it later. The option `Despool...' despools the PostScript
3557 spooling buffer in a temporary file and uses ghostview to preview it.
3558 If you type C-u before choosing this option, the PostScript code
3559 generated is saved in a file instead of saving in a temporary file. To
3560 spool the PostScript code generated you need to turn on the option 16.
3561 The option `Despool...' is enabled if spooling is on (option 16).
3562
3563 NOTE 1: It's possible to customize a major mode printing, just declare
3564 the customization in `pr-mode-alist' and invoke some of
3565 `*-mode*' commands or select Mode option in Printing menu. An
3566 example for major mode usage is when you're using gnus (or mh,
3567 or rmail, etc.) and you're in the *Summary* buffer, if you
3568 forget to switch to the *Article* buffer before printing,
3569 you'll get a nicely formatted list of article subjects shows
3570 up at the printer. With major mode printing you don't need to
3571 switch from gnus *Summary* buffer first.
3572
3573 NOTE 2: There are the following options for PostScript file processing:
3574 Ia. Print the file *No Preprocessing*, that is, send it
3575 directly to PostScript printer.
3576 Ib. PostScript utility processing selection.
3577 See `pr-ps-utility-alist' and `pr-setting-database' for
3578 documentation.
3579 Ic. Do n-up processing before printing.
3580 Id. Toggle on/off landscape for PostScript file processing.
3581 Ie. Toggle on/off duplex for PostScript file processing.
3582 If. Toggle on/off tumble for PostScript file processing.
3583
3584 NOTE 3: Don't forget to download and install the utilities declared on
3585 `pr-ps-utility-alist'.
3586
3587 2. Operate the same way as option 1, but it sends directly the PostScript
3588 code (or put in a file, if you've typed C-u) or it uses ghostscript to
3589 print the PostScript file generated. It depends on option 18, if it's
3590 turned on, it uses ghostscript; otherwise, it sends directly to
3591 printer. If spooling is on (option 16), the PostScript code is saved
3592 temporarily in a buffer instead of printing it or saving it in a file.
3593 Also, if you already have a PostScript file you can print it.
3594 Instead of printing each buffer, region or major mode at once, you can
3595 save temporarily the PostScript code generated in a buffer and print it
3596 later. The option `Despool...' despools the PostScript spooling buffer
3597 directly on a printer. If you type C-u before choosing this option,
3598 the PostScript code generated is saved in a file instead of sending it to
3599 the printer. To spool the PostScript code generated you need to turn on
3600 option 16. This option is enabled if spooling is on (option 16).
3601 See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
3602
3603 3. You can select a new PostScript printer to send PostScript code
3604 generated. For selection it's used all PostScript printers defined
3605 in `pr-ps-printer-alist' variable (see it for documentation).
3606 See also `pr-setting-database'.
3607
3608 II. Text printing:
3609
3610 4. If you have control characters (character code from \\000 to \\037) in a
3611 buffer and you want to print them in a text printer, select this
3612 option. All control characters in your buffer or region will be
3613 replaced by a printable representation. The printable representations
3614 use ^ (for ASCII control characters) or hex. The characters tab,
3615 linefeed, space, return and formfeed are not affected.
3616 You don't need to select this option if you use any option of section
3617 I, the PostScript engine treats control characters properly.
3618
3619 5. If you want to print a directory, buffer, region or major mode in a
3620 text printer, select this option. See also the NOTE 1 on option 1.
3621
3622 6. You can select a new text printer to send text generated. For
3623 selection it's used all text printers defined in `pr-txt-printer-alist'
3624 variable (see it for documentation).
3625 See also `pr-setting-database'.
3626
3627 III. PostScript page toggle options:
3628
3629 7. If you want a PostScript landscape printing, turn on this option.
3630
3631 8. If you want to have a header in each page in your PostScript code,
3632 turn on this option.
3633
3634 9. If you want to draw a gaudy frame around the header, turn on this
3635 option. This option is enabled if print header is on (option 8).
3636
3637 10. If you want that the line number is printed in your PostScript code,
3638 turn on this option.
3639
3640 11. If you want background zebra stripes in your PostScript code, turn on
3641 this option.
3642
3643 12. If you want a duplex printing and your PostScript printer has this
3644 feature, turn on this option.
3645
3646 13. If you turned on duplex printing, you can choose if you want to have a
3647 printing suitable for binding on the left or right (tumble off), or to
3648 have a printing suitable for binding at top or bottom (tumble on).
3649 This option is enabled if duplex is on (option 12).
3650
3651 14. If you want a PostScript upside-down printing, turn on this option.
3652
3653 15. With this option, you can choose if you want to print all pages, odd
3654 pages, even pages, odd sheets or even sheets.
3655 See also `ps-even-or-odd-pages'.
3656
3657 IV. PostScript processing toggle options:
3658
3659 16. If you want to spool the PostScript code generated, turn on this
3660 option. To spool the PostScript code generated use option 2. You can
3661 despool later by choosing option 1 or 2, sub-option `Despool...'.
3662
3663 17. If you use colors in your buffers and want to see these colors on your
3664 PostScript code generated, turn on this option. If you have a
3665 black/white PostScript printer, these colors are displayed in gray
3666 scale by PostScript printer interpreter.
3667
3668 18. If you don't have a PostScript printer to send PostScript files, turn
3669 on this option. When this option is on, the ghostscript is used to
3670 print PostScript files. In GNU or Unix system, if ghostscript is set
3671 as a PostScript filter, you don't need to turn on this option.
3672
3673 V. Printing customization:
3674
3675 19. If you want that region is automagically detected, turn on this
3676 option. Note that this will only work if you're using transient mark
3677 mode. When this option is on, the `*-buffer*' commands will behave
3678 like `*-region*' commands, that is, `*-buffer*' commands will print
3679 only the region marked instead of all buffer.
3680
3681 20. Turn this option on if you want that when current major-mode is
3682 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
3683 behave like `*-mode*' commands.
3684
3685 21. If you want that Printing menu stays open while you are setting
3686 toggle options, turn on this option. The variables
3687 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
3688 menu position, so don't forget to adjust these variables if menu
3689 position is not ok.
3690
3691 VI. Customization:
3692
3693 22. Besides all options in section III, IV and V, you can customize much
3694 more PostScript options in `ps-print' option. Or you can customize
3695 some `lpr' options for text printing. Or customize `printing'
3696 options.
3697
3698 23. Show current settings for `printing', `ps-print' or `lpr'.
3699
3700 24. Quick help for printing menu layout.
3701 ")
3702 "Printing help message.")
3703
3704
3705 (defconst pr-interface-help-message
3706 (concat "printing.el version " pr-version
3707 " ps-print.el version " ps-print-version
3708 "\n\n
3709 The printing interface buffer has the same functionality as the printing menu.
3710 The major difference is that the states (like sending PostScript generated to a
3711 file, n-up printing, etc.) are set and saved between priting buffer
3712 activation. Also, the landscape, duplex and tumble values are the same for
3713 PostScript file and directory/buffer/region/mode processing; using menu, there
3714 are different value sets for PostScript file and directory/buffer/region/mode
3715 processing.
3716
3717 The printing interface buffer has the following sections:
3718
3719 1. Print:
3720
3721 Here you can choose to print/preview a buffer, a directory or a PostScript
3722 file:
3723
3724 1a. Buffer:
3725
3726 * Buffer List:
3727 Select a buffer from the current buffer list.
3728
3729 * Region:
3730 If it's on, this means that the selected buffer has an active region,
3731 so you can turn on/off, as you wish.
3732 If it's off when a buffer is selected, this means that the selected
3733 buffer has no active region, so it'll not be possible to turn it on.
3734 If you want to process the region, let this option on.
3735 If you want to process the whole buffer, let this option off.
3736
3737 * Mode:
3738 If it's on, this means that the selected buffer major mode is declared
3739 for major mode processing, so you can turn on/off, as you wish.
3740 If it's off when a buffer is selected, this means that the selected
3741 buffer major mode isn't declared for major mode processing, so it'll
3742 not be possible to turn it on.
3743 If you want the major mode processing, let this option on.
3744 If you don't want the major mode processing, let this option off.
3745
3746 NOTE 1: It's possible to customize a major mode printing, just declare
3747 the customization in `pr-mode-alist' and invoke some of
3748 `*-mode*' commands or select Mode option in Printing menu. An
3749 example for major mode usage is when you're using gnus (or mh,
3750 or rmail, etc.) and you're in the *Summary* buffer, if you
3751 forget to switch to the *Article* buffer before printing,
3752 you'll get a nicely formatted list of article subjects shows
3753 up at the printer. With major mode printing you don't need to
3754 switch from gnus *Summary* buffer first.
3755
3756 1b. Directory:
3757
3758 * Directory:
3759 Specify a valid directory path.
3760
3761 * File Regexp:
3762 Specify a file name regexp. All file names in the directory that
3763 match with regexp will be printed/previewed. An empty file name
3764 regexp means to print/preview all files in the directory.
3765
3766 * List Directory Entry:
3767 If it's turned on, list directory entries besides file entries.
3768
3769 1c. PostScript file:
3770
3771 * PostScript File:
3772 Specify an existent PostScript file to print/preview.
3773
3774 * PostScript Utility:
3775 Select a PostScript utility.
3776 See `pr-ps-utility-alist' and `pr-setting-database' for documentation.
3777
3778 NOTE 2: Don't forget to download and install the utilities declared on
3779 `pr-ps-utility-alist'.
3780
3781 * No Preprocessing:
3782 If it's turned on, don't use the PostScript utility to preprocess the
3783 PostScript file before printing/previewing.
3784
3785 2. PostScript printer:
3786
3787 * PostScript Printer:
3788 You can select a new PostScript printer to send PostScript code
3789 generated. For selection it's used all PostScript printers defined
3790 in `pr-ps-printer-alist' variable (see it for documentation).
3791 See also `pr-setting-database'.
3792
3793 * Despool:
3794 If spooling is on, you can turn it on/off, as you wish.
3795 If spooling is off, it'll not be possible to turn it on.
3796 If it's turned on, specify to despools the PostScript spooling buffer in
3797 a temporary file or in the selected PostScript file when
3798 printing/previewing.
3799
3800 * Preview:
3801 Preview the PostScript generated.
3802
3803 * Print:
3804 Print the PostScript generated.
3805
3806 * Quit:
3807 Quit from printing interface buffer.
3808
3809 * Send to Printer/Temporary File:
3810 If it's turned on, the PostScript generated is sent directly to
3811 PostScript printer or, for previewing, to a temporary file.
3812
3813 * Send to File:
3814 Specify a file name to send the PostScript generated.
3815
3816 * N-Up:
3817 Specify n-up printing.
3818
3819 3. Text printer:
3820
3821 * Text Printer:
3822 Select a new text printer to send text generated. For selection it's used
3823 all text printers defined in `pr-txt-printer-alist' variable (see it for
3824 documentation). See also `pr-setting-database'.
3825
3826 * Printify:
3827 If you have control characters (character code from \\000 to \\037) in a
3828 buffer and you want to print them in a text printer, select this
3829 option. All control characters in your buffer or region will be
3830 replaced by a printable representation. The printable representations
3831 use ^ (for ASCII control characters) or hex. The characters tab,
3832 linefeed, space, return and formfeed are not affected.
3833 You don't need to select this option if you use any option of section
3834 I, the PostScript engine treats control characters properly.
3835
3836 * Print:
3837 To print a directory, buffer, region or major mode in a
3838 text printer, select this option. See also the NOTE 1 on section 1.
3839
3840 * Quit:
3841 Quit from printing interface buffer.
3842
3843 4. Settings:
3844
3845 There are 3 setting columns:
3846
3847 4a. First column (left column):
3848
3849 * Landscape:
3850 PostScript landscape printing.
3851
3852 * Print Header:
3853 To have a header in each page in your PostScript code.
3854
3855 * Print Header Frame:
3856 To draw a gaudy frame around the header.
3857
3858 * Line Number:
3859 The line number is printed in your PostScript code.
3860
3861 * Zebra Stripes:
3862 Background zebra stripes in your PostScript code.
3863
3864 * Duplex:
3865 Duplex printing (if your PostScript printer has this feature).
3866
3867 * Tumble:
3868 If duplex printing is on, you can choose if you want to have a
3869 printing suitable for binding on the left or right (tumble off), or to
3870 have a printing suitable for binding at top or bottom (tumble on).
3871
3872 * Upside-Down:
3873 PostScript upside-down printing.
3874
3875 4b. Second column (middle column):
3876
3877 * Auto Region:
3878 If you want that region is automagically detected, turn on this
3879 option. Note that this will only work if you're using transient mark
3880 mode. When this option is on, the `*-buffer*' commands will behave
3881 like `*-region*' commands, that is, `*-buffer*' commands will print
3882 only the region marked instead of all buffer.
3883
3884 * Auto Mode:
3885 Turn this option on if you want that when current major-mode is
3886 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
3887 behave like `*-mode*' commands.
3888
3889 * Menu Lock:
3890 If you want that Printing menu stays open while you are setting
3891 toggle options, turn on this option. The variables
3892 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
3893 menu position, so don't forget to adjust these variables if menu
3894 position is not ok.
3895
3896 * Spool Buffer:
3897 To spool the PostScript code generated. You can despool later by
3898 setting Despool option on PostScript printer section.
3899
3900 * Print with faces:
3901 If you use colors in your buffers and want to see these colors on your
3902 PostScript code generated, turn on this option. If you have a
3903 black/white PostScript printer, these colors are displayed in gray
3904 scale by PostScript printer interpreter.
3905
3906 * Print via Ghostscript:
3907 If you don't have a PostScript printer to send PostScript files, turn
3908 on this option. When this option is on, the ghostscript is used to
3909 print PostScript files. In GNU or Unix system, if ghostscript is set
3910 as a PostScript filter, you don't need to turn on this option.
3911
3912 * Parity Page Menu:
3913 To print all pages, odd pages, even pages, odd sheets or even sheets.
3914 See also `ps-even-or-odd-pages'.
3915
3916 4c. Third column (right column):
3917
3918 * Verbose:
3919 That is, to be verbose when editing a field in interface buffer.
3920
3921 5. Customize:
3922
3923 Besides all options in section 4, you can customize much more PostScript
3924 options in `ps-print' option. Or you can customize some `lpr' options for
3925 text printing. Or customize `printing' options.
3926
3927 6. Show settings:
3928
3929 Show current settings for `printing', `ps-print' or `lpr'.
3930
3931 7. Help:
3932
3933 Quick help for printing interface buffer and printing menu layout. You can
3934 also quit the printing interface buffer or kill all printing help buffer.
3935 ")
3936 "Printing buffer interface help message.")
3937
3938
3939 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3940 ;; Commands
3941
3942
3943 ;;;###autoload
3944 (defun pr-interface (&optional buffer)
3945 "Activate the printing interface buffer.
3946
3947 If BUFFER is nil, the current buffer is used for printing.
3948
3949 For more information, type \\[pr-interface-help]."
3950 (interactive)
3951 (with-current-buffer (or buffer (current-buffer))
3952 (pr-create-interface)))
3953
3954
3955 ;;;###autoload
3956 (defun pr-ps-directory-preview (n-up dir file-regexp &optional filename)
3957 "Preview directory using ghostview.
3958
3959 Interactively, the command prompts for N-UP printing number, a directory, a
3960 file name regexp for matching and, when you use a prefix argument (C-u), the
3961 command prompts the user for a file name, and saves the PostScript image in
3962 that file instead of saving it in a temporary file.
3963
3964 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3965 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3966 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3967 save the image in a temporary file. If FILENAME is a string, save the
3968 PostScript image in a file with that name. If FILENAME is t, prompts for a
3969 file name.
3970
3971 See also documentation for `pr-list-directory'."
3972 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS preview dir")))
3973 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3974 (pr-prompt "PS preview dir"))
3975 (setq filename (pr-ps-file filename))
3976 (pr-ps-file-list n-up dir file-regexp filename)
3977 (or pr-spool-p
3978 (pr-ps-file-preview filename)))
3979
3980
3981 ;;;###autoload
3982 (defun pr-ps-directory-using-ghostscript (n-up dir file-regexp &optional filename)
3983 "Print directory using PostScript through ghostscript.
3984
3985 Interactively, the command prompts for N-UP printing number, a directory, a
3986 file name regexp for matching and, when you use a prefix argument (C-u), the
3987 command prompts the user for a file name, and saves the PostScript image in
3988 that file instead of saving it in a temporary file.
3989
3990 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3991 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3992 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3993 save the image in a temporary file. If FILENAME is a string, save the
3994 PostScript image in a file with that name. If FILENAME is t, prompts for a
3995 file name.
3996
3997 See also documentation for `pr-list-directory'."
3998 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir GS")))
3999 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
4000 (pr-prompt "PS print dir GS"))
4001 (let ((file (pr-ps-file filename)))
4002 (pr-ps-file-list n-up dir file-regexp file)
4003 (pr-ps-file-using-ghostscript file)
4004 (or filename (pr-delete-file file))))
4005
4006
4007 ;;;###autoload
4008 (defun pr-ps-directory-print (n-up dir file-regexp &optional filename)
4009 "Print directory using PostScript printer.
4010
4011 Interactively, the command prompts for N-UP printing number, a directory, a
4012 file name regexp for matching and, when you use a prefix argument (C-u), the
4013 command prompts the user for a file name, and saves the PostScript image in
4014 that file instead of saving it in a temporary file.
4015
4016 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
4017 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
4018 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
4019 save the image in a temporary file. If FILENAME is a string, save the
4020 PostScript image in a file with that name. If FILENAME is t, prompts for a
4021 file name.
4022
4023 See also documentation for `pr-list-directory'."
4024 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir")))
4025 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
4026 (pr-prompt "PS print dir"))
4027 (let ((file (pr-ps-file filename)))
4028 (pr-ps-file-list n-up dir file-regexp file)
4029 (pr-ps-file-print file)
4030 (or filename (pr-delete-file file))))
4031
4032
4033 ;;;###autoload
4034 (defun pr-ps-directory-ps-print (n-up dir file-regexp &optional filename)
4035 "Print directory using PostScript printer or through ghostscript.
4036
4037 It depends on `pr-print-using-ghostscript'.
4038
4039 Interactively, the command prompts for N-UP printing number, a directory, a
4040 file name regexp for matching and, when you use a prefix argument (C-u), the
4041 command prompts the user for a file name, and saves the PostScript image in
4042 that file instead of saving it in a temporary file.
4043
4044 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
4045 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
4046 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
4047 save the image in a temporary file. If FILENAME is a string, save the
4048 PostScript image in a file with that name. If FILENAME is t, prompts for a
4049 file name.
4050
4051 See also documentation for `pr-list-directory'."
4052 (interactive (pr-interactive-ps-dir-args
4053 (pr-prompt (pr-prompt-gs "PS print dir"))))
4054 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
4055 (pr-prompt (pr-prompt-gs "PS print dir")))
4056 (if (pr-using-ghostscript-p)
4057 (pr-ps-directory-using-ghostscript n-up dir file-regexp filename)
4058 (pr-ps-directory-print n-up dir file-regexp filename)))
4059
4060
4061 ;;;###autoload
4062 (defun pr-ps-buffer-preview (n-up &optional filename)
4063 "Preview buffer using ghostview.
4064
4065 Interactively, the command prompts for N-UP printing number and, when you use a
4066 prefix argument (C-u), the command prompts the user for a file name, and saves
4067 the PostScript image in that file instead of saving it in a temporary file.
4068
4069 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
4070 argument FILENAME is treated as follows: if it's nil, save the image in a
4071 temporary file. If FILENAME is a string, save the PostScript image in a file
4072 with that name. If FILENAME is t, prompts for a file name."
4073 (interactive (pr-interactive-n-up-file (pr-prompt "PS preview")))
4074 (if (pr-auto-mode-p)
4075 (pr-ps-mode-preview n-up filename)
4076 (pr-ps-preview (pr-region-active-symbol) n-up filename
4077 (pr-region-active-string "PS preview"))))
4078
4079
4080 ;;;###autoload
4081 (defun pr-ps-buffer-using-ghostscript (n-up &optional filename)
4082 "Print buffer using PostScript through ghostscript.
4083
4084 Interactively, the command prompts for N-UP printing number and, when you use a
4085 prefix argument (C-u), the command prompts the user for a file name, and saves
4086 the PostScript image in that file instead of sending it to the printer.
4087
4088 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
4089 argument FILENAME is treated as follows: if it's nil, send the image to the
4090 printer. If FILENAME is a string, save the PostScript image in a file with
4091 that name. If FILENAME is t, prompts for a file name."
4092 (interactive (pr-interactive-n-up-file (pr-prompt "PS print GS")))
4093 (if (pr-auto-mode-p)
4094 (pr-ps-mode-using-ghostscript n-up filename)
4095 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
4096 (pr-region-active-string "PS print GS"))))
4097
4098
4099 ;;;###autoload
4100 (defun pr-ps-buffer-print (n-up &optional filename)
4101 "Print buffer using PostScript printer.
4102
4103 Interactively, the command prompts for N-UP printing number and, when you use a
4104 prefix argument (C-u), the command prompts the user for a file name, and saves
4105 the PostScript image in that file instead of sending it to the printer.
4106
4107 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
4108 argument FILENAME is treated as follows: if it's nil, send the image to the
4109 printer. If FILENAME is a string, save the PostScript image in a file with
4110 that name. If FILENAME is t, prompts for a file name."
4111 (interactive (pr-interactive-n-up-file (pr-prompt "PS print")))
4112 (if (pr-auto-mode-p)
4113 (pr-ps-mode-print n-up filename)
4114 (pr-ps-print (pr-region-active-symbol) n-up filename
4115 (pr-region-active-string "PS print"))))
4116
4117
4118 ;;;###autoload
4119 (defun pr-ps-buffer-ps-print (n-up &optional filename)
4120 "Print buffer using PostScript printer or through ghostscript.
4121
4122 It depends on `pr-print-using-ghostscript'.
4123
4124 Interactively, the command prompts for N-UP printing number and, when you use a
4125 prefix argument (C-u), the command prompts the user for a file name, and saves
4126 the PostScript image in that file instead of sending it to the printer.
4127
4128 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
4129 argument FILENAME is treated as follows: if it's nil, send the image to the
4130 printer. If FILENAME is a string, save the PostScript image in a file with
4131 that name. If FILENAME is t, prompts for a file name."
4132 (interactive (pr-interactive-n-up-file
4133 (pr-prompt (pr-prompt-gs "PS print"))))
4134 (cond ((pr-auto-mode-p)
4135 (pr-ps-mode-ps-print n-up filename))
4136 ((pr-using-ghostscript-p)
4137 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
4138 (pr-region-active-string "PS print GS")))
4139 (t
4140 (pr-ps-print (pr-region-active-symbol) n-up filename
4141 (pr-region-active-string "PS print")))))
4142
4143
4144 ;;;###autoload
4145 (defun pr-ps-region-preview (n-up &optional filename)
4146 "Preview region using ghostview.
4147
4148 See also `pr-ps-buffer-preview'."
4149 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS preview")))
4150 (if (pr-auto-mode-p)
4151 (let ((pr-auto-region t))
4152 (pr-ps-mode-preview n-up filename))
4153 (pr-ps-preview 'region n-up filename "PS preview region")))
4154
4155
4156 ;;;###autoload
4157 (defun pr-ps-region-using-ghostscript (n-up &optional filename)
4158 "Print region using PostScript through ghostscript.
4159
4160 See also `pr-ps-buffer-using-ghostscript'."
4161 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print GS")))
4162 (if (pr-auto-mode-p)
4163 (let ((pr-auto-region t))
4164 (pr-ps-mode-using-ghostscript n-up filename))
4165 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region")))
4166
4167
4168 ;;;###autoload
4169 (defun pr-ps-region-print (n-up &optional filename)
4170 "Print region using PostScript printer.
4171
4172 See also `pr-ps-buffer-print'."
4173 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print")))
4174 (if (pr-auto-mode-p)
4175 (let ((pr-auto-region t))
4176 (pr-ps-mode-print n-up filename))
4177 (pr-ps-print 'region n-up filename "PS print region")))
4178
4179
4180 ;;;###autoload
4181 (defun pr-ps-region-ps-print (n-up &optional filename)
4182 "Print region using PostScript printer or through ghostscript.
4183
4184 See also `pr-ps-buffer-ps-print'."
4185 (interactive (pr-interactive-n-up-file
4186 (pr-prompt-region (pr-prompt-gs "PS print"))))
4187 (cond ((pr-auto-mode-p)
4188 (let ((pr-auto-region t))
4189 (pr-ps-mode-ps-print n-up filename)))
4190 ((pr-using-ghostscript-p)
4191 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region"))
4192 (t
4193 (pr-ps-print 'region n-up filename "PS print region"))))
4194
4195
4196 ;;;###autoload
4197 (defun pr-ps-mode-preview (n-up &optional filename)
4198 "Preview major mode using ghostview.
4199
4200 See also `pr-ps-buffer-preview'."
4201 (interactive (pr-interactive-n-up-file "PS preview mode"))
4202 (pr-set-n-up-and-filename 'n-up 'filename "PS preview mode")
4203 (let ((file (pr-ps-file filename)))
4204 (and (pr-ps-mode n-up file)
4205 (not pr-spool-p)
4206 (pr-ps-file-preview file))))
4207
4208
4209 ;;;###autoload
4210 (defun pr-ps-mode-using-ghostscript (n-up &optional filename)
4211 "Print major mode using PostScript through ghostscript.
4212
4213 See also `pr-ps-buffer-using-ghostscript'."
4214 (interactive (pr-interactive-n-up-file "PS print GS mode"))
4215 (pr-set-n-up-and-filename 'n-up 'filename "PS print GS mode")
4216 (let ((file (pr-ps-file filename)))
4217 (when (and (pr-ps-mode n-up file)
4218 (not pr-spool-p))
4219 (pr-ps-file-using-ghostscript file)
4220 (or filename (pr-delete-file file)))))
4221
4222
4223 ;;;###autoload
4224 (defun pr-ps-mode-print (n-up &optional filename)
4225 "Print major mode using PostScript printer.
4226
4227 See also `pr-ps-buffer-print'."
4228 (interactive (pr-interactive-n-up-file "PS print mode"))
4229 (pr-set-n-up-and-filename 'n-up 'filename "PS print mode")
4230 (pr-ps-mode n-up filename))
4231
4232
4233 ;;;###autoload
4234 (defun pr-ps-mode-ps-print (n-up &optional filename)
4235 "Print major mode using PostScript or through ghostscript.
4236
4237 See also `pr-ps-buffer-ps-print'."
4238 (interactive (pr-interactive-n-up-file (pr-prompt-gs "PS print mode")))
4239 (if (pr-using-ghostscript-p)
4240 (pr-ps-mode-using-ghostscript n-up filename)
4241 (pr-ps-mode-print n-up filename)))
4242
4243
4244 ;;;###autoload
4245 (defun pr-printify-directory (&optional dir file-regexp)
4246 "Replace nonprinting characters in directory with printable representations.
4247 The printable representations use ^ (for ASCII control characters) or hex.
4248 The characters tab, linefeed, space, return and formfeed are not affected.
4249
4250 Interactively, the command prompts for a directory and a file name regexp for
4251 matching.
4252
4253 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
4254 prompts for FILE(name)-REGEXP.
4255
4256 See also documentation for `pr-list-directory'."
4257 (interactive (pr-interactive-dir-args "Printify dir"))
4258 (pr-set-dir-args 'dir 'file-regexp "Printify dir")
4259 (pr-file-list dir file-regexp 'pr-printify-buffer))
4260
4261
4262 ;;;###autoload
4263 (defun pr-printify-buffer ()
4264 "Replace nonprinting characters in buffer with printable representations.
4265 The printable representations use ^ (for ASCII control characters) or hex.
4266 The characters tab, linefeed, space, return and formfeed are not affected."
4267 (interactive "*")
4268 (if (pr-region-active-p)
4269 (pr-printify-region)
4270 (printify-region (point-min) (point-max))))
4271
4272
4273 ;;;###autoload
4274 (defun pr-printify-region ()
4275 "Replace nonprinting characters in region with printable representations.
4276 The printable representations use ^ (for ASCII control characters) or hex.
4277 The characters tab, linefeed, space, return and formfeed are not affected."
4278 (interactive "*")
4279 (printify-region (point) (mark)))
4280
4281
4282 ;;;###autoload
4283 (defun pr-txt-directory (&optional dir file-regexp)
4284 "Print directory using text printer.
4285
4286 Interactively, the command prompts for a directory and a file name regexp for
4287 matching.
4288
4289 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
4290 prompts for FILE(name)-REGEXP.
4291
4292 See also documentation for `pr-list-directory'."
4293 (interactive (pr-interactive-dir-args "Print dir"))
4294 (pr-set-dir-args 'dir 'file-regexp "Print dir")
4295 (pr-file-list dir file-regexp 'pr-txt-buffer))
4296
4297
4298 ;;;###autoload
4299 (defun pr-txt-buffer ()
4300 "Print buffer using text printer."
4301 (interactive)
4302 (cond ((pr-auto-mode-p)
4303 (pr-txt-mode))
4304 ((pr-region-active-p)
4305 (pr-txt-region))
4306 (t
4307 (pr-txt-print (point-min) (point-max)))))
4308
4309
4310 ;;;###autoload
4311 (defun pr-txt-region ()
4312 "Print region using text printer."
4313 (interactive)
4314 (if (pr-auto-mode-p)
4315 (let ((pr-auto-region t))
4316 (pr-txt-mode))
4317 (pr-txt-print (point) (mark))))
4318
4319
4320 ;;;###autoload
4321 (defun pr-txt-mode ()
4322 "Print major mode using text printer."
4323 (interactive)
4324 (let ((args (pr-mode-alist-p)))
4325 (if args
4326 (funcall (car args) (nthcdr 2 args))
4327 (ding)
4328 (message "`%s' major mode not declared." major-mode))))
4329
4330
4331 ;;;###autoload
4332 (defun pr-despool-preview (&optional filename)
4333 "Preview spooled PostScript.
4334
4335 Interactively, when you use a prefix argument (C-u), the command prompts the
4336 user for a file name, and saves the spooled PostScript image in that file
4337 instead of saving it in a temporary file.
4338
4339 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4340 save the image in a temporary file. If FILENAME is a string, save the
4341 PostScript image in a file with that name."
4342 (interactive (list (ps-print-preprint current-prefix-arg)))
4343 (let ((file (pr-ps-file filename)))
4344 (when (stringp file)
4345 (pr-despool-print file)
4346 (pr-ps-file-preview file))))
4347
4348
4349 ;;;###autoload
4350 (defun pr-despool-using-ghostscript (&optional filename)
4351 "Print spooled PostScript using ghostscript.
4352
4353 Interactively, when you use a prefix argument (C-u), the command prompts the
4354 user for a file name, and saves the spooled PostScript image in that file
4355 instead of sending it to the printer.
4356
4357 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4358 send the image to the printer. If FILENAME is a string, save the PostScript
4359 image in a file with that name."
4360 (interactive (list (ps-print-preprint current-prefix-arg)))
4361 (let ((file (pr-ps-file filename)))
4362 (when (stringp file)
4363 (pr-despool-print file)
4364 (pr-ps-file-using-ghostscript file)
4365 (or filename (pr-delete-file file)))))
4366
4367
4368 ;;;###autoload
4369 (defun pr-despool-print (&optional filename)
4370 "Send the spooled PostScript to the printer.
4371
4372 Interactively, when you use a prefix argument (C-u), the command prompts the
4373 user for a file name, and saves the spooled PostScript image in that file
4374 instead of sending it to the printer.
4375
4376 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4377 send the image to the printer. If FILENAME is a string, save the PostScript
4378 image in a file with that name."
4379 (interactive (list (ps-print-preprint current-prefix-arg)))
4380 (pr-save-file-modes
4381 (let ((ps-lpr-command (pr-command pr-ps-command))
4382 (ps-lpr-switches pr-ps-switches)
4383 (ps-printer-name-option pr-ps-printer-switch)
4384 (ps-printer-name pr-ps-printer))
4385 (ps-despool filename))))
4386
4387
4388 ;;;###autoload
4389 (defun pr-despool-ps-print (&optional filename)
4390 "Send the spooled PostScript to the printer or use ghostscript to print it.
4391
4392 Interactively, when you use a prefix argument (C-u), the command prompts the
4393 user for a file name, and saves the spooled PostScript image in that file
4394 instead of sending it to the printer.
4395
4396 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4397 send the image to the printer. If FILENAME is a string, save the PostScript
4398 image in a file with that name."
4399 (interactive (list (ps-print-preprint current-prefix-arg)))
4400 (if pr-print-using-ghostscript
4401 (pr-despool-using-ghostscript filename)
4402 (pr-despool-print filename)))
4403
4404
4405 ;;;###autoload
4406 (defun pr-ps-file-preview (filename)
4407 "Preview PostScript file FILENAME."
4408 (interactive (list (pr-ps-infile-preprint "Preview ")))
4409 (and (stringp filename) (file-exists-p filename)
4410 (pr-call-process pr-gv-command filename)))
4411
4412
4413 ;;;###autoload
4414 (defun pr-ps-file-up-preview (n-up ifilename &optional ofilename)
4415 "Preview PostScript file FILENAME."
4416 (interactive (pr-interactive-n-up-inout "PS preview"))
4417 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename
4418 "PS preview ")))
4419 (pr-ps-utility-process n-up ifilename outfile)
4420 (pr-ps-file-preview outfile)))
4421
4422
4423 ;;;###autoload
4424 (defun pr-ps-file-using-ghostscript (filename)
4425 "Print PostScript file FILENAME using ghostscript."
4426 (interactive (list (pr-ps-infile-preprint "Print preview ")))
4427 (and (stringp filename) (file-exists-p filename)
4428 (let* ((file (pr-expand-file-name filename))
4429 (tempfile (pr-dosify-file-name (make-temp-file file))))
4430 ;; gs use
4431 (pr-call-process pr-gs-command
4432 (format "-sDEVICE=%s" pr-gs-device)
4433 (format "-r%d" pr-gs-resolution)
4434 (pr-switches-string pr-gs-switches "pr-gs-switches")
4435 (format "-sOutputFile=\"%s\"" tempfile)
4436 file
4437 "-c quit")
4438 ;; printing
4439 (pr-ps-file-print tempfile)
4440 ;; deleting
4441 (pr-delete-file tempfile))))
4442
4443
4444 ;;;###autoload
4445 (defun pr-ps-file-print (filename)
4446 "Print PostScript file FILENAME."
4447 (interactive (list (pr-ps-infile-preprint "Print ")))
4448 (and (stringp filename) (file-exists-p filename)
4449 ;; printing
4450 (let ((file (pr-expand-file-name filename)))
4451 (if (string= pr-ps-command "")
4452 ;; default action
4453 (let ((ps-spool-buffer (get-buffer-create ps-spool-buffer-name)))
4454 (with-current-buffer ps-spool-buffer
4455 (erase-buffer)
4456 (insert-file-contents-literally file))
4457 (pr-despool-print))
4458 ;; use `pr-ps-command' to print
4459 (apply 'pr-call-process
4460 pr-ps-command
4461 (pr-switches-string pr-ps-switches "pr-ps-switches")
4462 (if (string-match "cp" pr-ps-command)
4463 ;; for "cp" (cmd in out)
4464 (list file
4465 (concat pr-ps-printer-switch pr-ps-printer))
4466 ;; else, for others (cmd out in)
4467 (list (concat pr-ps-printer-switch pr-ps-printer)
4468 file)))))))
4469
4470
4471 ;;;###autoload
4472 (defun pr-ps-file-ps-print (filename)
4473 "Send PostScript file FILENAME to printer or use ghostscript to print it."
4474 (interactive (list (pr-ps-infile-preprint
4475 (if pr-print-using-ghostscript
4476 "Print preview "
4477 "Print "))))
4478 (if pr-print-using-ghostscript
4479 (pr-ps-file-using-ghostscript filename)
4480 (pr-ps-file-print filename)))
4481
4482
4483 ;;;###autoload
4484 (defun pr-ps-file-up-ps-print (n-up ifilename &optional ofilename)
4485 "Process a PostScript file IFILENAME and send it to printer.
4486
4487 Interactively, the command prompts for N-UP printing number, for an input
4488 PostScript file IFILENAME and, when you use a prefix argument (C-u), the
4489 command prompts the user for an output PostScript file name OFILENAME, and
4490 saves the PostScript image in that file instead of sending it to the printer.
4491
4492 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
4493 argument IFILENAME is treated as follows: if it's t, prompts for an input
4494 PostScript file name; otherwise, it *must* be a string that it's an input
4495 PostScript file name. The argument OFILENAME is treated as follows: if it's
4496 nil, send the image to the printer. If OFILENAME is a string, save the
4497 PostScript image in a file with that name. If OFILENAME is t, prompts for a
4498 file name."
4499 (interactive (pr-interactive-n-up-inout
4500 (if pr-print-using-ghostscript
4501 "PS print GS"
4502 "PS print")))
4503 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename
4504 (if pr-print-using-ghostscript
4505 "PS print GS "
4506 "PS print "))))
4507 (pr-ps-utility-process n-up ifilename outfile)
4508 (unless ofilename
4509 (pr-ps-file-ps-print outfile)
4510 (pr-delete-file outfile))))
4511
4512
4513 ;;;###autoload
4514 (defun pr-toggle-file-duplex ()
4515 "Toggle duplex for PostScript file."
4516 (interactive)
4517 (pr-toggle-file-duplex-menu t))
4518
4519
4520 ;;;###autoload
4521 (defun pr-toggle-file-tumble ()
4522 "Toggle tumble for PostScript file.
4523
4524 If tumble is off, produces a printing suitable for binding on the left or
4525 right.
4526 If tumble is on, produces a printing suitable for binding at the top or
4527 bottom."
4528 (interactive)
4529 (pr-toggle-file-tumble-menu t))
4530
4531
4532 ;;;###autoload
4533 (defun pr-toggle-file-landscape ()
4534 "Toggle landscape for PostScript file."
4535 (interactive)
4536 (pr-toggle-file-landscape-menu t))
4537
4538
4539 ;;;###autoload
4540 (defun pr-toggle-ghostscript ()
4541 "Toggle printing using ghostscript."
4542 (interactive)
4543 (pr-toggle-ghostscript-menu t))
4544
4545
4546 ;;;###autoload
4547 (defun pr-toggle-faces ()
4548 "Toggle printing with faces."
4549 (interactive)
4550 (pr-toggle-faces-menu t))
4551
4552
4553 ;;;###autoload
4554 (defun pr-toggle-spool ()
4555 "Toggle spooling."
4556 (interactive)
4557 (pr-toggle-spool-menu t))
4558
4559
4560 ;;;###autoload
4561 (defun pr-toggle-duplex ()
4562 "Toggle duplex."
4563 (interactive)
4564 (pr-toggle-duplex-menu t))
4565
4566
4567 ;;;###autoload
4568 (defun pr-toggle-tumble ()
4569 "Toggle tumble.
4570
4571 If tumble is off, produces a printing suitable for binding on the left or
4572 right.
4573 If tumble is on, produces a printing suitable for binding at the top or
4574 bottom."
4575 (interactive)
4576 (pr-toggle-tumble-menu t))
4577
4578
4579 ;;;###autoload
4580 (defun pr-toggle-landscape ()
4581 "Toggle landscape."
4582 (interactive)
4583 (pr-toggle-landscape-menu t))
4584
4585
4586 ;;;###autoload
4587 (defun pr-toggle-upside-down ()
4588 "Toggle upside-down."
4589 (interactive)
4590 (pr-toggle-upside-down-menu t))
4591
4592
4593 ;;;###autoload
4594 (defun pr-toggle-line ()
4595 "Toggle line number."
4596 (interactive)
4597 (pr-toggle-line-menu t))
4598
4599
4600 ;;;###autoload
4601 (defun pr-toggle-zebra ()
4602 "Toggle zebra stripes."
4603 (interactive)
4604 (pr-toggle-zebra-menu t))
4605
4606
4607 ;;;###autoload
4608 (defun pr-toggle-header ()
4609 "Toggle printing header."
4610 (interactive)
4611 (pr-toggle-header-menu t))
4612
4613
4614 ;;;###autoload
4615 (defun pr-toggle-header-frame ()
4616 "Toggle printing header frame."
4617 (interactive)
4618 (pr-toggle-header-frame-menu t))
4619
4620
4621 ;;;###autoload
4622 (defun pr-toggle-lock ()
4623 "Toggle menu lock."
4624 (interactive)
4625 (pr-toggle-lock-menu t))
4626
4627
4628 ;;;###autoload
4629 (defun pr-toggle-region ()
4630 "Toggle auto region."
4631 (interactive)
4632 (pr-toggle-region-menu t))
4633
4634
4635 ;;;###autoload
4636 (defun pr-toggle-mode ()
4637 "Toggle auto mode."
4638 (interactive)
4639 (pr-toggle-mode-menu t))
4640
4641
4642 ;;;###autoload
4643 (defun pr-customize (&rest ignore)
4644 "Customization of the `printing' group."
4645 (interactive)
4646 (customize-group 'printing))
4647
4648
4649 ;;;###autoload
4650 (defun lpr-customize (&rest ignore)
4651 "Customization of the `lpr' group."
4652 (interactive)
4653 (customize-group 'lpr))
4654
4655
4656 ;;;###autoload
4657 (defun pr-help (&rest ignore)
4658 "Help for the printing package."
4659 (interactive)
4660 (pr-show-setup pr-help-message "*Printing Help*"))
4661
4662
4663 ;;;###autoload
4664 (defun pr-ps-name ()
4665 "Interactively select a PostScript printer."
4666 (interactive)
4667 (pr-menu-set-ps-title
4668 (pr-complete-alist "PostScript printer"
4669 pr-ps-printer-alist pr-ps-name)))
4670
4671
4672 ;;;###autoload
4673 (defun pr-txt-name ()
4674 "Interactively select a text printer."
4675 (interactive)
4676 (pr-menu-set-txt-title
4677 (pr-complete-alist "Text printer"
4678 pr-txt-printer-alist pr-txt-name)))
4679
4680
4681 ;;;###autoload
4682 (defun pr-ps-utility ()
4683 "Interactively select a PostScript utility."
4684 (interactive)
4685 (pr-menu-set-utility-title
4686 (pr-complete-alist "Postscript utility"
4687 pr-ps-utility-alist pr-ps-utility)))
4688
4689
4690 ;;;###autoload
4691 (defun pr-show-ps-setup (&rest ignore)
4692 "Show current ps-print settings."
4693 (interactive)
4694 (pr-show-setup (ps-setup) "*PS Setup*"))
4695
4696
4697 ;;;###autoload
4698 (defun pr-show-pr-setup (&rest ignore)
4699 "Show current printing settings."
4700 (interactive)
4701 (pr-show-setup (pr-setup) "*PR Setup*"))
4702
4703
4704 ;;;###autoload
4705 (defun pr-show-lpr-setup (&rest ignore)
4706 "Show current lpr settings."
4707 (interactive)
4708 (pr-show-setup (lpr-setup) "*LPR Setup*"))
4709
4710
4711 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4712 ;; Fast Commands
4713
4714
4715 ;;;###autoload
4716 (defun pr-ps-fast-fire (n-up &optional select)
4717 "Fast fire function for PostScript printing.
4718
4719 If a region is active, the region will be printed instead of the whole buffer.
4720 Also if the current major-mode is defined in `pr-mode-alist', the settings in
4721 `pr-mode-alist' will be used, that is, the current buffer or region will be
4722 printed using `pr-ps-mode-ps-print'.
4723
4724
4725 Interactively, you have the following situations:
4726
4727 M-x pr-ps-fast-fire RET
4728 The command prompts the user for a N-UP value and printing will
4729 immediatelly be done using the current active printer.
4730
4731 C-u M-x pr-ps-fast-fire RET
4732 C-u 0 M-x pr-ps-fast-fire RET
4733 The command prompts the user for a N-UP value and also for a current
4734 PostScript printer, then printing will immediatelly be done using the new
4735 current active printer.
4736
4737 C-u 1 M-x pr-ps-fast-fire RET
4738 The command prompts the user for a N-UP value and also for a file name,
4739 and saves the PostScript image in that file instead of sending it to the
4740 printer.
4741
4742 C-u 2 M-x pr-ps-fast-fire RET
4743 The command prompts the user for a N-UP value, then for a current
4744 PostScript printer and, finally, for a file name. Then change the active
4745 printer to that chosen by user and saves the PostScript image in
4746 that file instead of sending it to the printer.
4747
4748
4749 Noninteractively, the argument N-UP should be a positive integer greater than
4750 zero and the argument SELECT is treated as follows:
4751
4752 If it's nil, send the image to the printer.
4753
4754 If it's a list or an integer lesser or equal to zero, the command prompts
4755 the user for a current PostScript printer, then printing will immediatelly
4756 be done using the new current active printer.
4757
4758 If it's an integer equal to 1, the command prompts the user for a file name
4759 and saves the PostScript image in that file instead of sending it to the
4760 printer.
4761
4762 If it's an integer greater or equal to 2, the command prompts the user for a
4763 current PostScript printer and for a file name. Then change the active
4764 printer to that chosen by user and saves the PostScript image in that file
4765 instead of sending it to the printer.
4766
4767 If it's a symbol which it's defined in `pr-ps-printer-alist', it's the new
4768 active printer and printing will immediatelly be done using the new active
4769 printer.
4770
4771 Otherwise, send the image to the printer.
4772
4773
4774 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
4775 are both set to t."
4776 (interactive (list (pr-interactive-n-up (pr-prompt-gs "PS print fast"))
4777 current-prefix-arg))
4778 (let ((pr-auto-region t)
4779 (pr-auto-mode t)
4780 filename)
4781 (cond ((null select))
4782 ((listp select)
4783 (pr-ps-name))
4784 ((and (symbolp select)
4785 (assq select pr-ps-printer-alist))
4786 (pr-menu-set-ps-title select))
4787 ((integerp select)
4788 (and (/= select 1)
4789 (pr-ps-name))
4790 (and (>= select 1) (not pr-spool-p)
4791 (setq filename (pr-ps-outfile-preprint
4792 (if pr-print-using-ghostscript
4793 "Fast GS "
4794 "Fast "))))))
4795 (pr-ps-buffer-ps-print
4796 (if (integerp n-up)
4797 (min (max n-up 1) 100)
4798 (error "n-up must be an integer greater than zero"))
4799 filename)))
4800
4801
4802 ;;;###autoload
4803 (defun pr-txt-fast-fire (&optional select-printer)
4804 "Fast fire function for text printing.
4805
4806 If a region is active, the region will be printed instead of the whole buffer.
4807 Also if the current major-mode is defined in `pr-mode-alist', the settings in
4808 `pr-mode-alist' will be used, that is, the current buffer or region will be
4809 printed using `pr-txt-mode'.
4810
4811 Interactively, when you use a prefix argument (C-u), the command prompts the
4812 user for a new active text printer.
4813
4814 Noninteractively, the argument SELECT-PRINTER is treated as follows:
4815
4816 If it's nil, the printing is sent to the current active text printer.
4817
4818 If it's a symbol which it's defined in `pr-txt-printer-alist', it's the new
4819 active printer and printing will immediatelly be done using the new active
4820 printer.
4821
4822 If it's non-nil, the command prompts the user for a new active text printer.
4823
4824 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
4825 are both set to t."
4826 (interactive (list current-prefix-arg))
4827 (cond ((null select-printer))
4828 ((and (symbolp select-printer)
4829 (assq select-printer pr-txt-printer-alist))
4830 (pr-menu-set-txt-title select-printer))
4831 (t
4832 (pr-txt-name)))
4833 (let ((pr-auto-region t)
4834 (pr-auto-mode t))
4835 (pr-txt-buffer)))
4836
4837
4838 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4839 ;; Utilities
4840
4841
4842 (defun pr-setup ()
4843 "Return the current `printing' setup.
4844
4845 This is *not* an interactive command.
4846 One way to see `printing' setup is to switch to a *Scratch* buffer and type:
4847
4848 M-: (insert (pr-setup)) RET
4849
4850 Or choose the menu option Printing/Show Settings/printing."
4851 (let (ps-prefix-quote)
4852 (mapconcat
4853 #'ps-print-quote
4854 (list
4855 (concat "\n;;; printing.el version " pr-version "\n")
4856 ";; internal vars"
4857 (ps-comment-string "emacs-version " emacs-version)
4858 (ps-comment-string "pr-txt-command " pr-txt-command)
4859 (ps-comment-string "pr-txt-switches "
4860 (pr-switches-string pr-txt-switches "pr-txt-switches"))
4861 (ps-comment-string "pr-txt-printer " pr-txt-printer)
4862 (ps-comment-string "pr-ps-command " pr-ps-command)
4863 (ps-comment-string "pr-ps-switches "
4864 (pr-switches-string pr-ps-switches "pr-ps-switches"))
4865 (ps-comment-string "pr-ps-printer-switch" pr-ps-printer-switch)
4866 (ps-comment-string "pr-ps-printer " pr-ps-printer)
4867 (ps-comment-string "pr-cygwin-system " pr-cygwin-system)
4868 (ps-comment-string "ps-windows-system " ps-windows-system)
4869 (ps-comment-string "ps-lp-system " ps-lp-system)
4870 nil
4871 '(14 . pr-path-style)
4872 '(14 . pr-path-alist)
4873 nil
4874 '(21 . pr-txt-name)
4875 '(21 . pr-txt-printer-alist)
4876 nil
4877 '(20 . pr-ps-name)
4878 '(20 . pr-ps-printer-alist)
4879 nil
4880 '(20 . pr-temp-dir)
4881 '(20 . pr-ps-temp-file)
4882 '(20 . pr-file-modes)
4883 '(20 . pr-delete-temp-file)
4884 '(20 . pr-list-directory)
4885 nil
4886 '(17 . pr-gv-command)
4887 '(17 . pr-gs-command)
4888 '(17 . pr-gs-switches)
4889 '(17 . pr-gs-device)
4890 '(17 . pr-gs-resolution)
4891 nil
4892 '(27 . pr-print-using-ghostscript)
4893 '(27 . pr-faces-p)
4894 '(27 . pr-spool-p)
4895 '(27 . pr-file-landscape)
4896 '(27 . pr-file-duplex)
4897 '(27 . pr-file-tumble)
4898 '(27 . pr-auto-region)
4899 '(27 . pr-auto-mode)
4900 nil
4901 '(20 . pr-ps-utility)
4902 '(20 . pr-ps-utility-alist)
4903 nil
4904 '(14 . pr-mode-alist)
4905 nil
4906 '(20 . pr-menu-lock)
4907 '(20 . pr-menu-char-height)
4908 '(20 . pr-menu-char-width)
4909 nil
4910 '(20 . pr-setting-database)
4911 nil
4912 '(22 . pr-visible-entry-list)
4913 nil
4914 '(22 . pr-buffer-verbose)
4915 '(22 . pr-buffer-name)
4916 '(22 . pr-buffer-name-ignore)
4917 ")\n\n;;; printing.el - end of settings\n")
4918 "\n")))
4919
4920
4921 (defun lpr-setup ()
4922 "Return the current `lpr' setup.
4923
4924 This is *not* an interactive command.
4925 One way to see `lpr' setup is to switch to a *Scratch* buffer and type:
4926
4927 M-: (insert (lpr-setup)) RET
4928
4929 Or choose the menu option Printing/Show Settings/lpr."
4930 (let (ps-prefix-quote)
4931 (mapconcat
4932 #'ps-print-quote
4933 (list
4934 "\n;;; lpr.el settings\n"
4935 (ps-comment-string "emacs-version" emacs-version)
4936 nil
4937 '(25 . printer-name)
4938 '(25 . lpr-switches)
4939 '(25 . lpr-add-switches)
4940 '(25 . lpr-command)
4941 '(25 . lpr-headers-switches)
4942 '(25 . print-region-function)
4943 '(25 . lpr-page-header-program)
4944 '(25 . lpr-page-header-switches)
4945 ")\n\n;;; lpr.el - end of settings\n")
4946 "\n")))
4947
4948
4949 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4950 ;; mh-e (adapted from mh-e-init.el -- Tom Vogels <tov@ece.cmu.edu>)
4951
4952 (declare-function mh-get-msg-num "mh-utils" (error-if-no-message))
4953 (declare-function mh-show "mh-show" (&optional message redisplay-flag))
4954 (declare-function mh-start-of-uncleaned-message "mh-show" ())
4955 (defvar mh-show-buffer)
4956
4957
4958 (defun pr-article-date ()
4959 "Find the date of an article or mail message in current buffer.
4960 Return only the dayname, if present, weekday, month, and year."
4961 (save-excursion
4962 (goto-char (point-min))
4963 (if (re-search-forward
4964 "^Date:[ \t]+\\(\\([A-Za-z]+, \\)?[0-9]+ [A-Za-z]+ [0-9]+\\)" nil t)
4965 (buffer-substring (match-beginning 1) (match-end 1))
4966 (format-time-string "%Y/%m/%d"))))
4967
4968
4969 (defun pr-mh-current-message ()
4970 "Go to mh-inbox current message."
4971 (let ((msg (or (mh-get-msg-num nil) 0)))
4972 (mh-show)
4973 (set-buffer mh-show-buffer)
4974 (goto-char (point-min))
4975 (mh-start-of-uncleaned-message)
4976 (message "Printing message %d" msg)))
4977
4978
4979 (defun pr-mh-print-1 (n-up filename header-list)
4980 "Print mh-inbox current message in PostScript."
4981 (save-excursion
4982 (save-window-excursion
4983 (pr-mh-current-message)
4984 (pr-mode-print n-up filename header-list (point)))))
4985
4986
4987 (defun pr-mh-lpr-1 (header-list)
4988 "Print mh-inbox current message in text printer."
4989 (save-excursion
4990 (save-window-excursion
4991 (pr-mh-current-message)
4992 (pr-mode-lpr header-list (point)))))
4993
4994
4995 (defalias 'pr-mh-print-2 'pr-mode-print)
4996
4997
4998 (defalias 'pr-mh-lpr-2 'pr-mode-lpr)
4999
5000
5001 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5002 ;; rmail (hacked from ps-print.el)
5003
5004
5005 (defun pr-rmail-lpr (header-list)
5006 "Print RMAIL current message in text printer."
5007 (pr-lpr-message-from-summary header-list
5008 'rmail-buffer 'rmail-summary-buffer))
5009
5010
5011 (defun pr-rmail-print (n-up filename header-list)
5012 "Print RMAIL current message in PostScript."
5013 (pr-ps-message-from-summary n-up filename header-list
5014 'rmail-buffer 'rmail-summary-buffer))
5015
5016
5017 (defun pr-ps-message-from-summary (n-up filename header-list
5018 summary-buffer summary-default)
5019 "Print current message in PostScript."
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-print n-up filename header-list)))))
5026
5027
5028 (defun pr-lpr-message-from-summary (header-list summary-buffer summary-default)
5029 "Print current message in text printer."
5030 (let ((buf (or (and (boundp summary-buffer)
5031 (symbol-value summary-buffer))
5032 (symbol-value summary-default))))
5033 (and (get-buffer buf)
5034 (with-current-buffer buf
5035 (pr-mode-lpr header-list)))))
5036
5037
5038 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5039 ;; gnus (hacked from ps-print.el)
5040
5041
5042 (defvar pr-gnus-article "*Article*")
5043
5044
5045 (defun pr-gnus-print (n-up filename header-list)
5046 "Print *Article* current message in PostScript."
5047 (pr-ps-message-from-summary n-up filename header-list
5048 'gnus-article-buffer 'pr-gnus-article))
5049
5050
5051 (defun pr-gnus-lpr (header-list)
5052 "Print *Article* current message in text printer."
5053 (pr-lpr-message-from-summary header-list
5054 'gnus-article-buffer 'pr-gnus-article))
5055
5056
5057 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5058 ;; vm (hacked from ps-print.el)
5059
5060
5061 (defvar pr-vm-summary "")
5062
5063
5064 (defun pr-vm-print (n-up filename header-list)
5065 "Print current vm message in PostScript."
5066 (pr-ps-message-from-summary n-up filename header-list
5067 'vm-mail-buffer 'pr-vm-summary))
5068
5069
5070 (defun pr-vm-lpr (header-list)
5071 "Print current vm message in text printer."
5072 (pr-lpr-message-from-summary header-list
5073 'vm-mail-buffer 'pr-vm-summary))
5074
5075
5076 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5077 ;; Mode Functions
5078
5079
5080 (defun pr-ps-mode (n-up filename)
5081 "If current major mode is declared, print it in PostScript."
5082 (let ((args (pr-mode-alist-p)))
5083 (if args
5084 (let ((fun (cdr args)))
5085 (funcall (car fun) n-up filename (cdr fun))
5086 t)
5087 (ding)
5088 (message "`%s' major mode not declared." major-mode)
5089 nil)))
5090
5091
5092 (defmacro pr-local-variable (header-list &rest body)
5093 `(save-excursion
5094 (let ((ps-header-lines (or (nth 0 ,header-list) ps-header-lines))
5095 (ps-left-header (or (nth 1 ,header-list) ps-left-header))
5096 (ps-right-header (or (nth 2 ,header-list) ps-right-header))
5097 ps-razzle-dazzle)
5098 (let ((local-var-list (pr-eval-local-alist (nthcdr 4 ,header-list))))
5099 ,@body
5100 (and (nth 3 ,header-list)
5101 (pr-kill-local-variable local-var-list))))))
5102
5103
5104 (defun pr-mode-print (n-up filename header-list &optional from to)
5105 "Print current major mode in PostScript."
5106 (pr-local-variable
5107 header-list
5108 (let ((file (pr-ps-file filename))
5109 (start (cond (from)
5110 ((pr-region-active-p) (region-beginning))
5111 (t nil)
5112 )))
5113 (pr-text2ps (pr-region-active-symbol start) n-up file start
5114 (cond (to)
5115 ((pr-region-active-p) (region-end))
5116 (from (point-max))
5117 ))
5118 (unless (or pr-spool-p filename)
5119 (pr-ps-file-print file)
5120 (pr-delete-file file)))))
5121
5122
5123 (defun pr-mode-lpr (header-list &optional from to)
5124 "Print current major mode in text printer."
5125 (pr-local-variable
5126 header-list
5127 (pr-txt-print (cond (from)
5128 ((pr-region-active-p) (region-beginning))
5129 (t (point-min)))
5130 (cond (to)
5131 ((pr-region-active-p) (region-end))
5132 (t (point-max))))))
5133
5134
5135 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5136 ;; Menu Lock
5137
5138
5139 (defconst pr-menu-entry-alist
5140 '((postscript . 3)
5141 (text . 3)
5142 (postscript-options . 9)
5143 (postscript-process . 3)
5144 (printing . 3)
5145 (help . 3)
5146 )
5147 "Alist that associates menu part with number of items per part.
5148
5149 It's used by `pr-menu-index'.
5150
5151 Each element has the form:
5152
5153 (MENU-PART . NUMBER-OF-ITEMS)
5154
5155 See `pr-visible-entry-alist'.")
5156
5157
5158 (defun pr-menu-index (entry index)
5159 (let ((base-list
5160 (cond ((eq entry 'text)
5161 '(postscript))
5162 ((eq entry 'postscript-options)
5163 '(postscript text))
5164 ((eq entry 'postscript-process)
5165 '(postscript text postscript-options))
5166 ((eq entry 'printing)
5167 '(postscript text postscript-options postscript-process))
5168 (t
5169 nil)
5170 ))
5171 key)
5172 (while base-list
5173 (setq key (car base-list)
5174 base-list (cdr base-list))
5175 (and (pr-visible-p key)
5176 (setq index (+ index
5177 (cdr (assq key pr-menu-entry-alist)))))))
5178 (+ index 2))
5179
5180
5181 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5182 ;; Printer & Utility Selection
5183
5184
5185 (defun pr-update-var (var-sym alist)
5186 (or (assq (symbol-value var-sym) alist)
5187 (set var-sym (car (car alist)))))
5188
5189
5190 (defun pr-update-menus (&optional force)
5191 "Update utility, PostScript and text printer menus.
5192
5193 If FORCE is non-nil, update menus doesn't matter if `pr-ps-printer-alist',
5194 `pr-txt-printer-alist' or `pr-ps-utility-alist' were modified or not;
5195 otherwise, update PostScript printer menu if `pr-ps-printer-menu-modified' is
5196 non-nil, update text printer menu if `pr-txt-printer-menu-modified' is
5197 non-nil, and update PostScript File menus if `pr-ps-utility-menu-modified' is
5198 non-nil.
5199
5200 If menu binding was not done, calls `pr-menu-bind'."
5201 (interactive "P")
5202 (if pr-menu-print-item ; since v6.8.4
5203 ;; There was no menu binding yet, so do it now!
5204 ;; This is a hack to be compatible with old versions of printing.
5205 ;; So, user does not need to change printing calling in init files.
5206 (pr-menu-bind)
5207 ;; Here menu binding is ok.
5208 (pr-update-var 'pr-ps-name pr-ps-printer-alist)
5209 (pr-update-var 'pr-txt-name pr-txt-printer-alist)
5210 (pr-update-var 'pr-ps-utility pr-ps-utility-alist)
5211 (pr-do-update-menus force)))
5212
5213
5214 (defun pr-menu-create (name alist var-sym fun entry index)
5215 (cons name
5216 (mapcar
5217 #'(lambda (elt)
5218 (let ((sym (car elt)))
5219 (vector
5220 (symbol-name sym)
5221 (list fun (list 'quote sym) nil (list 'quote entry) index)
5222 :style 'radio
5223 :selected (list 'eq var-sym (list 'quote sym)))))
5224 alist)))
5225
5226
5227 (defun pr-ps-set-utility (value)
5228 (let ((item (cdr (assq value pr-ps-utility-alist))))
5229 (or item
5230 (error
5231 "Invalid PostScript utility name `%s' for variable `pr-ps-utility'"
5232 value))
5233 (setq pr-ps-utility value)
5234 (pr-eval-alist (nthcdr 9 item)))
5235 (pr-update-mode-line))
5236
5237
5238 (defun pr-ps-set-printer (value)
5239 (let ((ps (cdr (assq value pr-ps-printer-alist))))
5240 (or ps
5241 (error
5242 "Invalid PostScript printer name `%s' for variable `pr-ps-name'"
5243 value))
5244 (setq pr-ps-name value
5245 pr-ps-command (pr-dosify-file-name (nth 0 ps))
5246 pr-ps-switches (nth 1 ps)
5247 pr-ps-printer-switch (nth 2 ps)
5248 pr-ps-printer (nth 3 ps))
5249 (or (stringp pr-ps-command)
5250 (setq pr-ps-command
5251 (cond (ps-windows-system "print")
5252 (ps-lp-system "lp")
5253 (t "lpr")
5254 )))
5255 (or (stringp pr-ps-printer-switch)
5256 (setq pr-ps-printer-switch
5257 (cond (ps-windows-system "/D:")
5258 (ps-lp-system "-d")
5259 (t "-P")
5260 )))
5261 (pr-eval-alist (nthcdr 4 ps)))
5262 (pr-update-mode-line))
5263
5264
5265 (defun pr-txt-set-printer (value)
5266 (let ((txt (cdr (assq value pr-txt-printer-alist))))
5267 (or txt
5268 (error "Invalid text printer name `%s' for variable `pr-txt-name'"
5269 value))
5270 (setq pr-txt-name value
5271 pr-txt-command (pr-dosify-file-name (nth 0 txt))
5272 pr-txt-switches (nth 1 txt)
5273 pr-txt-printer (nth 2 txt)))
5274 (or (stringp pr-txt-command)
5275 (setq pr-txt-command
5276 (cond (ps-windows-system "print")
5277 (ps-lp-system "lp")
5278 (t "lpr")
5279 )))
5280 (pr-update-mode-line))
5281
5282
5283 (defun pr-eval-alist (alist)
5284 (mapcar #'(lambda (option)
5285 (let ((var-sym (car option))
5286 (value (cdr option)))
5287 (if (eq var-sym 'inherits-from:)
5288 (pr-eval-setting-alist value 'global)
5289 (set var-sym (eval value)))))
5290 alist))
5291
5292
5293 (defun pr-eval-local-alist (alist)
5294 (let (local-list)
5295 (mapc #'(lambda (option)
5296 (let ((var-sym (car option))
5297 (value (cdr option)))
5298 (setq local-list
5299 (if (eq var-sym 'inherits-from:)
5300 (nconc (pr-eval-setting-alist value) local-list)
5301 (set (make-local-variable var-sym) (eval value))
5302 (cons var-sym local-list)))))
5303 alist)
5304 local-list))
5305
5306
5307 (defun pr-eval-setting-alist (key &optional global old)
5308 (let ((setting (cdr (assq key pr-setting-database))))
5309 (and setting
5310 (let ((inherits (nth 0 setting))
5311 (local (nth 1 setting))
5312 (kill (nth 2 setting))
5313 local-list)
5314 (and local global
5315 (progn
5316 (ding)
5317 (message "There are local buffer settings for `%S'." key)
5318 (setq global nil)))
5319 (and inherits
5320 (if (memq inherits old)
5321 (error "Circular inheritance for `%S'" inherits)
5322 (setq local-list
5323 (pr-eval-setting-alist inherits global
5324 (cons inherits old)))))
5325 (mapc
5326 (cond ((not local) ; global settings
5327 #'(lambda (option)
5328 (let ((var-sym (car option)))
5329 (or (eq var-sym 'inherits-from:)
5330 (set var-sym (eval (cdr option)))))))
5331 (kill ; local settings with killing
5332 #'(lambda (option)
5333 (let ((var-sym (car option)))
5334 (unless (eq var-sym 'inherits-from:)
5335 (setq local-list (cons var-sym local-list))
5336 (set (make-local-variable var-sym)
5337 (eval (cdr option)))))))
5338 (t ; local settings without killing
5339 #'(lambda (option)
5340 (let ((var-sym (car option)))
5341 (or (eq var-sym 'inherits-from:)
5342 (set (make-local-variable var-sym)
5343 (eval (cdr option))))))))
5344 (nthcdr 3 setting))
5345 local-list))))
5346
5347
5348 (defun pr-kill-local-variable (local-var-list)
5349 (mapcar 'kill-local-variable local-var-list))
5350
5351
5352 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5353 ;; Internal Functions (II)
5354
5355
5356 (defun pr-toggle (var-sym mess entry index horizontal state
5357 &optional path no-menu)
5358 (set var-sym (not (symbol-value var-sym)))
5359 (message "%s is %s" mess (if (symbol-value var-sym) "on" "off"))
5360 (or no-menu
5361 (pr-menu-lock entry index horizontal state path)))
5362
5363
5364 (defun pr-toggle-file-duplex-menu (&optional no-menu)
5365 (interactive)
5366 (pr-toggle 'pr-file-duplex "PS file duplex" nil 7 5 nil
5367 '("PostScript Print" "File") no-menu))
5368
5369
5370 (defun pr-toggle-file-tumble-menu (&optional no-menu)
5371 (interactive)
5372 (pr-toggle 'pr-file-tumble "PS file tumble" nil 8 5 nil
5373 '("PostScript Print" "File") no-menu))
5374
5375
5376 (defun pr-toggle-file-landscape-menu (&optional no-menu)
5377 (interactive)
5378 (pr-toggle 'pr-file-landscape "PS file landscape" nil 6 5 nil
5379 '("PostScript Print" "File") no-menu))
5380
5381
5382 (defun pr-toggle-ghostscript-menu (&optional no-menu)
5383 (interactive)
5384 (pr-toggle 'pr-print-using-ghostscript "Printing using ghostscript"
5385 'postscript-process 2 12 'toggle nil no-menu))
5386
5387
5388 (defun pr-toggle-faces-menu (&optional no-menu)
5389 (interactive)
5390 (pr-toggle 'pr-faces-p "Printing with faces"
5391 'postscript-process 1 12 'toggle nil no-menu))
5392
5393
5394 (defun pr-toggle-spool-menu (&optional no-menu)
5395 (interactive)
5396 (pr-toggle 'pr-spool-p "Spooling printing"
5397 'postscript-process 0 12 'toggle nil no-menu))
5398
5399
5400 (defun pr-toggle-duplex-menu (&optional no-menu)
5401 (interactive)
5402 (pr-toggle 'ps-spool-duplex "Printing duplex"
5403 'postscript-options 5 12 'toggle nil no-menu))
5404
5405
5406 (defun pr-toggle-tumble-menu (&optional no-menu)
5407 (interactive)
5408 (pr-toggle 'ps-spool-tumble "Tumble"
5409 'postscript-options 6 12 'toggle nil no-menu))
5410
5411
5412 (defun pr-toggle-landscape-menu (&optional no-menu)
5413 (interactive)
5414 (pr-toggle 'ps-landscape-mode "Landscape"
5415 'postscript-options 0 12 'toggle nil no-menu))
5416
5417
5418 (defun pr-toggle-upside-down-menu (&optional no-menu)
5419 (interactive)
5420 (pr-toggle 'ps-print-upside-down "Upside-Down"
5421 'postscript-options 7 12 'toggle nil no-menu))
5422
5423
5424 (defun pr-toggle-line-menu (&optional no-menu)
5425 (interactive)
5426 (pr-toggle 'ps-line-number "Line number"
5427 'postscript-options 3 12 'toggle nil no-menu))
5428
5429
5430 (defun pr-toggle-zebra-menu (&optional no-menu)
5431 (interactive)
5432 (pr-toggle 'ps-zebra-stripes "Zebra stripe"
5433 'postscript-options 4 12 'toggle nil no-menu))
5434
5435
5436 (defun pr-toggle-header-menu (&optional no-menu)
5437 (interactive)
5438 (pr-toggle 'ps-print-header "Print header"
5439 'postscript-options 1 12 'toggle nil no-menu))
5440
5441
5442 (defun pr-toggle-header-frame-menu (&optional no-menu)
5443 (interactive)
5444 (pr-toggle 'ps-print-header-frame "Print header frame"
5445 'postscript-options 2 12 'toggle nil no-menu))
5446
5447
5448 (defun pr-toggle-lock-menu (&optional no-menu)
5449 (interactive)
5450 (pr-toggle 'pr-menu-lock "Menu lock"
5451 'printing 2 12 'toggle nil no-menu))
5452
5453
5454 (defun pr-toggle-region-menu (&optional no-menu)
5455 (interactive)
5456 (pr-toggle 'pr-auto-region "Auto region"
5457 'printing 0 12 'toggle nil no-menu))
5458
5459
5460 (defun pr-toggle-mode-menu (&optional no-menu)
5461 (interactive)
5462 (pr-toggle 'pr-auto-mode "Auto mode"
5463 'printing 1 12 'toggle nil no-menu))
5464
5465
5466 (defun pr-prompt (str)
5467 (if (pr-auto-mode-p)
5468 (concat str " mode")
5469 (pr-region-active-string str)))
5470
5471
5472 (defun pr-prompt-region (str)
5473 (concat str (if (pr-auto-mode-p)
5474 " mode"
5475 " region")))
5476
5477
5478 (defun pr-prompt-gs (str)
5479 (if (pr-using-ghostscript-p)
5480 (concat str " GS")
5481 str))
5482
5483
5484 (defun pr-region-active-symbol (&optional region-p)
5485 (if (or region-p (pr-region-active-p))
5486 'region
5487 'buffer))
5488
5489
5490 (defun pr-region-active-string (prefix)
5491 (concat prefix
5492 (if (pr-region-active-p)
5493 " region"
5494 " buffer")))
5495
5496
5497 (defun pr-show-setup (settings buffer-name)
5498 (with-output-to-temp-buffer buffer-name
5499 (princ settings)
5500 (help-print-return-message)))
5501
5502
5503 (defun pr-complete-alist (prompt alist default)
5504 (let ((collection (mapcar #'(lambda (elt)
5505 (setq elt (car elt))
5506 (cons (symbol-name elt) elt))
5507 alist)))
5508 (cdr (assoc (completing-read (concat prompt ": ")
5509 collection nil t
5510 (symbol-name default) nil
5511 (symbol-name default))
5512 collection))))
5513
5514
5515 (defun pr-delete-file (file)
5516 (and pr-delete-temp-file (file-exists-p file)
5517 (delete-file file)))
5518
5519
5520 (defun pr-expand-file-name (filename)
5521 (pr-dosify-file-name (expand-file-name filename)))
5522
5523
5524 (defun pr-ps-outfile-preprint (&optional mess)
5525 (let* ((prompt (format "%soutput PostScript file name: " (or mess "")))
5526 (res (read-file-name prompt default-directory "" nil)))
5527 (while (cond ((not (file-writable-p res))
5528 (ding)
5529 (setq prompt "is unwritable"))
5530 ((file-directory-p res)
5531 (ding)
5532 (setq prompt "is a directory"))
5533 ((file-exists-p res)
5534 (ding)
5535 (setq prompt "exists")
5536 (not (y-or-n-p (format "File `%s' exists; overwrite? "
5537 res))))
5538 (t nil))
5539 (setq res (read-file-name
5540 (format "File %s; PostScript file: " prompt)
5541 (file-name-directory res) nil nil
5542 (file-name-nondirectory res))))
5543 (pr-expand-file-name res)))
5544
5545
5546 (defun pr-ps-infile-preprint (&optional mess)
5547 (let* ((prompt (format "%sinput PostScript file name: " (or mess "")))
5548 (res (read-file-name prompt default-directory "" nil)))
5549 (while (cond ((not (file-exists-p res))
5550 (ding)
5551 (setq prompt "doesn't exist"))
5552 ((not (file-readable-p res))
5553 (ding)
5554 (setq prompt "is unreadable"))
5555 ((file-directory-p res)
5556 (ding)
5557 (setq prompt "is a directory"))
5558 (t nil))
5559 (setq res (read-file-name
5560 (format "File %s; PostScript file: " prompt)
5561 (file-name-directory res) nil nil
5562 (file-name-nondirectory res))))
5563 (pr-expand-file-name res)))
5564
5565
5566 (defun pr-ps-utility-args (n-up-sym infile-sym outfile-sym prompt)
5567 ;; check arguments for PostScript file processing.
5568 ;; n-up
5569 (or (symbol-value n-up-sym)
5570 (set n-up-sym (pr-interactive-n-up prompt)))
5571 ;; input file
5572 (and (eq (symbol-value infile-sym) t)
5573 (set infile-sym (pr-ps-infile-preprint prompt)))
5574 (or (symbol-value infile-sym)
5575 (error "%s: input PostScript file name is missing" prompt))
5576 (set infile-sym (pr-dosify-file-name (symbol-value infile-sym)))
5577 ;; output file
5578 (and (eq (symbol-value outfile-sym) t)
5579 (set outfile-sym (and current-prefix-arg
5580 (pr-ps-outfile-preprint prompt))))
5581 (and (symbol-value outfile-sym)
5582 (set outfile-sym (pr-dosify-file-name (symbol-value outfile-sym))))
5583 (pr-ps-file (symbol-value outfile-sym)))
5584
5585
5586 (defun pr-ps-utility-process (n-up infile outfile)
5587 ;; activate utility to process a PostScript file.
5588 (let (item)
5589 (and (stringp infile) (file-exists-p infile)
5590 (setq item (cdr (assq pr-ps-utility pr-ps-utility-alist)))
5591 (pr-call-process (nth 0 item)
5592 (pr-switches-string (nth 1 item)
5593 "pr-ps-utility-alist entry")
5594 (pr-switches-string (nth 8 item)
5595 "pr-ps-utility-alist entry")
5596 (and (nth 2 item)
5597 (format (nth 2 item) ps-paper-type))
5598 (format (nth 3 item) n-up)
5599 (and pr-file-landscape (nth 4 item))
5600 (and pr-file-duplex (nth 5 item))
5601 (and pr-file-tumble (nth 6 item))
5602 (pr-expand-file-name infile)
5603 (nth 7 item)
5604 (pr-expand-file-name outfile)))))
5605
5606
5607 (defun pr-remove-nil-from-list (lst)
5608 (while (and lst (null (car lst)))
5609 (setq lst (cdr lst)))
5610 (let ((b lst)
5611 (l (cdr lst)))
5612 (while l
5613 (if (car l)
5614 (setq b l
5615 l (cdr l))
5616 (setq l (cdr l))
5617 (setcdr b l))))
5618 lst)
5619
5620
5621 (defun pr-call-process (command &rest args)
5622 (let ((buffer (get-buffer-create "*Printing Command Output*"))
5623 (cmd (pr-command command))
5624 status)
5625 (setq args (pr-remove-nil-from-list args))
5626 ;; *Printing Command Output* == show command & args
5627 (with-current-buffer buffer
5628 (goto-char (point-max))
5629 (insert (format "%s %S\n" cmd args)))
5630 ;; *Printing Command Output* == show any return message from command
5631 (pr-save-file-modes
5632 (setq status
5633 (condition-case data
5634 (apply 'call-process cmd nil buffer nil args)
5635 ((quit error)
5636 (error-message-string data)))))
5637 ;; *Printing Command Output* == show exit status
5638 (with-current-buffer buffer
5639 (goto-char (point-max))
5640 (insert (format "Exit status: %s\n\n" status)))
5641 ;; message if error status
5642 (if (or (stringp status)
5643 (and (integerp status) (/= status 0)))
5644 (message
5645 "Printing error status: %s (see *Printing Command Output* buffer)"
5646 status))))
5647
5648
5649 (defun pr-txt-print (from to)
5650 (let ((lpr-command (pr-standard-file-name (pr-command pr-txt-command)))
5651 (lpr-switches (pr-switches pr-txt-switches "pr-txt-switches"))
5652 (printer-name pr-txt-printer))
5653 (lpr-region from to)))
5654
5655
5656 (defun pr-switches-string (switches mess)
5657 ;; If SWITCHES is nil, return nil.
5658 ;; Otherwise, return the list of string in a string.
5659 (and switches
5660 (mapconcat 'identity (pr-switches switches mess) " ")))
5661
5662
5663 (defun pr-switches (switches mess)
5664 (or (listp switches)
5665 (error "%S should have a list of strings" mess))
5666 (ps-flatten-list ; dynamic evaluation
5667 (mapcar 'ps-eval-switch switches)))
5668
5669
5670 (defun pr-ps-preview (kind n-up filename mess)
5671 (pr-set-n-up-and-filename 'n-up 'filename mess)
5672 (let ((file (pr-ps-file filename)))
5673 (pr-text2ps kind n-up file)
5674 (or pr-spool-p (pr-ps-file-preview file))))
5675
5676
5677 (defun pr-ps-using-ghostscript (kind n-up filename mess)
5678 (pr-set-n-up-and-filename 'n-up 'filename mess)
5679 (let ((file (pr-ps-file filename)))
5680 (pr-text2ps kind n-up file)
5681 (unless (or pr-spool-p filename)
5682 (pr-ps-file-using-ghostscript file)
5683 (pr-delete-file file))))
5684
5685
5686 (defun pr-ps-print (kind n-up filename mess)
5687 (pr-set-n-up-and-filename 'n-up 'filename mess)
5688 (let ((file (pr-ps-file filename)))
5689 (pr-text2ps kind n-up file)
5690 (unless (or pr-spool-p filename)
5691 (pr-ps-file-print file)
5692 (pr-delete-file file))))
5693
5694
5695 (defun pr-ps-file (&optional filename)
5696 (pr-dosify-file-name (or filename
5697 (make-temp-file
5698 (convert-standard-filename
5699 (expand-file-name pr-ps-temp-file pr-temp-dir))
5700 nil ".ps"))))
5701
5702
5703 (defun pr-interactive-n-up (mess)
5704 (or (stringp mess) (setq mess "*"))
5705 (save-match-data
5706 (let* ((fmt-prompt "%s[%s] N-up printing (default 1): ")
5707 (prompt "")
5708 (str (pr-read-string (format fmt-prompt prompt mess) "1" nil "1"))
5709 int)
5710 (while (if (string-match "^\\s *[0-9]+$" str)
5711 (setq int (string-to-number str)
5712 prompt (cond ((< int 1) "Integer below 1; ")
5713 ((> int 100) "Integer above 100; ")
5714 (t nil)))
5715 (setq prompt "Invalid integer syntax; "))
5716 (ding)
5717 (setq str
5718 (pr-read-string (format fmt-prompt prompt mess) str nil "1")))
5719 int)))
5720
5721
5722 (defun pr-interactive-dir (mess)
5723 (let* ((dir-name (file-name-directory (or (buffer-file-name)
5724 default-directory)))
5725 (fmt-prompt (concat "%s[" mess "] Directory to print: "))
5726 (dir (read-file-name (format fmt-prompt "")
5727 "" dir-name nil dir-name))
5728 prompt)
5729 (while (cond ((not (file-directory-p dir))
5730 (ding)
5731 (setq prompt "It's not a directory! "))
5732 ((not (file-readable-p dir))
5733 (ding)
5734 (setq prompt "Directory is unreadable! "))
5735 (t nil))
5736 (setq dir-name (file-name-directory dir)
5737 dir (read-file-name (format fmt-prompt prompt)
5738 "" dir-name nil dir-name)))
5739 (file-name-as-directory dir)))
5740
5741
5742 (defun pr-interactive-regexp (mess)
5743 (pr-read-string (format "[%s] File regexp to print: " mess) "" nil ""))
5744
5745
5746 (defun pr-interactive-dir-args (mess)
5747 (list
5748 ;; get directory argument
5749 (pr-interactive-dir mess)
5750 ;; get file name regexp
5751 (pr-interactive-regexp mess)))
5752
5753
5754 (defun pr-interactive-ps-dir-args (mess)
5755 (list
5756 ;; get n-up argument
5757 (pr-interactive-n-up mess)
5758 ;; get directory argument
5759 (pr-interactive-dir mess)
5760 ;; get file name regexp
5761 (pr-interactive-regexp mess)
5762 ;; get output file name
5763 (and (not pr-spool-p)
5764 (ps-print-preprint current-prefix-arg))))
5765
5766
5767 (defun pr-interactive-n-up-file (mess)
5768 (list
5769 ;; get n-up argument
5770 (pr-interactive-n-up mess)
5771 ;; get output file name
5772 (and (not pr-spool-p)
5773 (ps-print-preprint current-prefix-arg))))
5774
5775
5776 (defun pr-interactive-n-up-inout (mess)
5777 (list
5778 ;; get n-up argument
5779 (pr-interactive-n-up mess)
5780 ;; get input file name
5781 (pr-ps-infile-preprint (concat mess " "))
5782 ;; get output file name
5783 (ps-print-preprint current-prefix-arg)))
5784
5785
5786 (defun pr-set-outfilename (filename-sym)
5787 (and (not pr-spool-p)
5788 (eq (symbol-value filename-sym) t)
5789 (set filename-sym (and current-prefix-arg
5790 (ps-print-preprint current-prefix-arg))))
5791 (and (symbol-value filename-sym)
5792 (set filename-sym (pr-dosify-file-name (symbol-value filename-sym)))))
5793
5794
5795 (defun pr-set-n-up-and-filename (n-up-sym filename-sym mess)
5796 ;; n-up
5797 (or (symbol-value n-up-sym)
5798 (set n-up-sym (pr-interactive-n-up mess)))
5799 ;; output file
5800 (pr-set-outfilename filename-sym))
5801
5802
5803 (defun pr-set-dir-args (dir-sym regexp-sym mess)
5804 ;; directory
5805 (or (symbol-value dir-sym)
5806 (set dir-sym (pr-interactive-dir mess)))
5807 ;; file name regexp
5808 (or (symbol-value regexp-sym)
5809 (set regexp-sym (pr-interactive-regexp mess))))
5810
5811
5812 (defun pr-set-ps-dir-args (n-up-sym dir-sym regexp-sym filename-sym mess)
5813 ;; n-up
5814 (or (symbol-value n-up-sym)
5815 (set n-up-sym (pr-interactive-n-up mess)))
5816 ;; directory & file name regexp
5817 (pr-set-dir-args dir-sym regexp-sym mess)
5818 ;; output file
5819 (pr-set-outfilename filename-sym))
5820
5821
5822 (defun pr-find-buffer-visiting (file)
5823 (if (not (file-directory-p file))
5824 (find-buffer-visiting (if ps-windows-system
5825 (downcase file)
5826 file))
5827 (let ((truename (file-truename file))
5828 (blist (buffer-list))
5829 found)
5830 (while (and (not found) blist)
5831 (with-current-buffer (car blist)
5832 (and (eq major-mode 'dired-mode)
5833 (save-excursion
5834 (goto-char (point-min))
5835 (string= (buffer-substring-no-properties
5836 (+ (point-min) 2)
5837 (progn
5838 (end-of-line)
5839 (1- (point))))
5840 truename))
5841 (setq found (car blist))))
5842 (setq blist (cdr blist)))
5843 found)))
5844
5845
5846 (defun pr-file-list (dir file-regexp fun)
5847 (mapcar #'(lambda (file)
5848 (and (or pr-list-directory
5849 (not (file-directory-p file)))
5850 (let ((buffer (pr-find-buffer-visiting file))
5851 pop-up-windows
5852 pop-up-frames)
5853 (and (or buffer
5854 (file-readable-p file))
5855 (with-current-buffer (or buffer
5856 (find-file-noselect file))
5857 (funcall fun)
5858 (or buffer
5859 (kill-buffer (current-buffer))))))))
5860 (directory-files dir t file-regexp)))
5861
5862
5863 (defun pr-delete-file-if-exists (filename)
5864 (and (not pr-spool-p) (stringp filename) (file-exists-p filename)
5865 (delete-file filename)))
5866
5867
5868 (defun pr-ps-file-list (n-up dir file-regexp filename)
5869 (pr-delete-file-if-exists (setq filename (pr-expand-file-name filename)))
5870 (let ((pr-spool-p t))
5871 (pr-file-list dir file-regexp
5872 #'(lambda ()
5873 (if (pr-auto-mode-p)
5874 (pr-ps-mode n-up filename)
5875 (pr-text2ps 'buffer n-up filename)))))
5876 (or pr-spool-p
5877 (pr-despool-print filename)))
5878
5879
5880 (defun pr-text2ps (kind n-up filename &optional from to)
5881 (pr-save-file-modes
5882 (let ((ps-n-up-printing n-up)
5883 (ps-spool-config (and (eq ps-spool-config 'setpagedevice)
5884 'setpagedevice)))
5885 (pr-delete-file-if-exists filename)
5886 (cond (pr-faces-p
5887 (cond (pr-spool-p
5888 ;; pr-faces-p and pr-spool-p
5889 ;; here FILENAME arg is ignored
5890 (cond ((eq kind 'buffer)
5891 (ps-spool-buffer-with-faces))
5892 ((eq kind 'region)
5893 (ps-spool-region-with-faces (or from (point))
5894 (or to (mark))))
5895 ))
5896 ;; pr-faces-p and not pr-spool-p
5897 ((eq kind 'buffer)
5898 (ps-print-buffer-with-faces filename))
5899 ((eq kind 'region)
5900 (ps-print-region-with-faces (or from (point))
5901 (or to (mark)) filename))
5902 ))
5903 (pr-spool-p
5904 ;; not pr-faces-p and pr-spool-p
5905 ;; here FILENAME arg is ignored
5906 (cond ((eq kind 'buffer)
5907 (ps-spool-buffer))
5908 ((eq kind 'region)
5909 (ps-spool-region (or from (point)) (or to (mark))))
5910 ))
5911 ;; not pr-faces-p and not pr-spool-p
5912 ((eq kind 'buffer)
5913 (ps-print-buffer filename))
5914 ((eq kind 'region)
5915 (ps-print-region (or from (point)) (or to (mark)) filename))
5916 ))))
5917
5918
5919 (defun pr-command (command)
5920 "Return absolute file name specification for COMMAND.
5921
5922 If COMMAND is an empty string, return it.
5923
5924 If COMMAND is already an absolute file name specification, return it.
5925 Else it uses `pr-path-alist' to find COMMAND, if find it then return it;
5926 otherwise, gives an error.
5927
5928 When using `pr-path-alist' to find COMMAND, the entries `cygwin', `windows' and
5929 `unix' are used (see `pr-path-alist' for documentation).
5930
5931 If Emacs is running on Windows 95/98/NT/2000, tries to find COMMAND,
5932 COMMAND.exe, COMMAND.bat and COMMAND.com in this order."
5933 (if (string= command "")
5934 command
5935 (pr-dosify-file-name
5936 (or (pr-find-command command)
5937 (pr-path-command (cond (pr-cygwin-system 'cygwin)
5938 (ps-windows-system 'windows)
5939 (t 'unix))
5940 (file-name-nondirectory command)
5941 nil)
5942 (error "Command not found: %s"
5943 (file-name-nondirectory command))))))
5944
5945
5946 (defun pr-path-command (symbol command sym-list)
5947 (let ((lpath (cdr (assq symbol pr-path-alist)))
5948 cmd)
5949 ;; PATH expansion
5950 (and (eq symbol 'PATH) (null lpath)
5951 (setq lpath (parse-colon-path (getenv "PATH"))))
5952 (while (and lpath
5953 (not
5954 (setq cmd
5955 (let ((path (car lpath)))
5956 (cond
5957 ;; symbol expansion
5958 ((symbolp path)
5959 (and (not (memq path sym-list))
5960 (pr-path-command path command
5961 (cons path sym-list))))
5962 ;; normal path
5963 ((stringp path)
5964 (pr-find-command
5965 (expand-file-name
5966 (substitute-in-file-name
5967 (concat (file-name-as-directory path)
5968 command)))))
5969 )))))
5970 (setq lpath (cdr lpath)))
5971 cmd))
5972
5973
5974 (defun pr-find-command (cmd)
5975 (if ps-windows-system
5976 ;; windows system
5977 (let ((ext (cons (file-name-extension cmd t)
5978 (list ".exe" ".bat" ".com")))
5979 found)
5980 (setq cmd (file-name-sans-extension cmd))
5981 (while (and ext
5982 (setq found (concat cmd (car ext)))
5983 (not (and (file-regular-p found)
5984 (file-executable-p found))))
5985 (setq ext (cdr ext)
5986 found nil))
5987 found)
5988 ;; non-windows systems
5989 (and (file-regular-p cmd)
5990 (file-executable-p cmd)
5991 cmd)))
5992
5993
5994 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5995 ;; Printing Interface (inspired by ps-print-interface.el)
5996
5997
5998 (eval-when-compile
5999 (require 'cus-edit)
6000 (require 'wid-edit)
6001 (require 'widget))
6002
6003
6004 (defvar pr-i-window-configuration nil)
6005
6006 (defvar pr-i-buffer nil)
6007 (defvar pr-i-region nil)
6008 (defvar pr-i-mode nil)
6009 (defvar pr-i-despool nil)
6010 (defvar pr-i-ps-as-is t)
6011 (defvar pr-i-n-up 1)
6012 (defvar pr-i-directory "./")
6013 (defvar pr-i-regexp "")
6014 (defvar pr-i-ps-file "")
6015 (defvar pr-i-out-file "")
6016 (defvar pr-i-answer-yes nil)
6017 (defvar pr-i-process 'buffer)
6018 (defvar pr-i-ps-send 'printer)
6019
6020
6021 (defvar pr-interface-map nil
6022 "Keymap for pr-interface.")
6023
6024 (unless pr-interface-map
6025 (let ((map (make-sparse-keymap)))
6026 (cond ((featurep 'xemacs) ; XEmacs
6027 (pr-set-keymap-parents map (list widget-keymap))
6028 (pr-set-keymap-name map 'pr-interface-map))
6029 (t ; GNU Emacs
6030 (pr-set-keymap-parents map widget-keymap)))
6031 (define-key map "q" 'pr-interface-quit)
6032 (define-key map "?" 'pr-interface-help)
6033 (setq pr-interface-map map)))
6034
6035
6036 (defmacro pr-interface-save (&rest body)
6037 `(with-current-buffer pr-i-buffer
6038 ,@body))
6039
6040
6041 (defun pr-create-interface ()
6042 "Create the front end for printing package."
6043 (setq pr-i-buffer (buffer-name (current-buffer))
6044 pr-i-region (ps-mark-active-p)
6045 pr-i-mode (pr-mode-alist-p)
6046 pr-i-window-configuration (current-window-configuration))
6047
6048 (put 'pr-i-process 'pr-widget-list nil)
6049 (put 'pr-i-ps-send 'pr-widget-list nil)
6050
6051 (delete-other-windows)
6052 (kill-buffer (get-buffer-create pr-buffer-name))
6053 (switch-to-buffer (get-buffer-create pr-buffer-name))
6054
6055 ;; header
6056 (let ((versions (concat "printing v" pr-version
6057 " ps-print v" ps-print-version)))
6058 ;; to keep compatibility with Emacs 20 & 21:
6059 ;; DO NOT REPLACE `?\ ' BY `?\s'
6060 (widget-insert (make-string (- 79 (length versions)) ?\ ) versions))
6061 (pr-insert-italic "\nCurrent Directory : " 1)
6062 (pr-insert-italic default-directory)
6063
6064 (pr-insert-section-1) ; 1. Print
6065 (pr-insert-section-2) ; 2. PostScript Printer
6066 (pr-insert-section-3) ; 3. Text Printer
6067
6068 ;; separator
6069 (widget-insert "\n\n " (make-string 77 ?-))
6070
6071 (pr-insert-section-4) ; 4. Settings
6072 (pr-insert-section-5) ; 5. Customize
6073 (pr-insert-section-6) ; 6. Show Settings
6074 (pr-insert-section-7) ; 7. Help
6075
6076 (use-local-map pr-interface-map)
6077 (widget-setup)
6078 (goto-char (point-min))
6079
6080 (and pr-i-region ; let region activated
6081 (pr-keep-region-active)))
6082
6083
6084 (defun pr-insert-section-1 ()
6085 ;; 1. Print:
6086 (pr-insert-italic "\nPrint :" 1)
6087
6088 ;; 1a. Buffer:
6089 ;; 1a. Buffer: Buffer List
6090 (pr-insert-radio-button 'pr-i-process 'buffer)
6091 (pr-insert-menu "Buffer List" 'pr-i-buffer
6092 (let ((blist (buffer-list))
6093 case-fold-search choices)
6094 (while blist
6095 (let ((name (buffer-name (car blist)))
6096 (ignore pr-buffer-name-ignore)
6097 found)
6098 (setq blist (cdr blist))
6099 (while (and ignore (not found))
6100 (setq found (string-match (car ignore) name)
6101 ignore (cdr ignore)))
6102 (or found
6103 (setq choices
6104 (cons (list 'quote
6105 (list 'choice-item
6106 :format "%[%t%]"
6107 name))
6108 choices)))))
6109 (nreverse choices))
6110 " Buffer : " nil
6111 '(progn
6112 (pr-interface-save
6113 (setq pr-i-region (ps-mark-active-p)
6114 pr-i-mode (pr-mode-alist-p)))
6115 (pr-update-checkbox 'pr-i-region)
6116 (pr-update-checkbox 'pr-i-mode)))
6117 ;; 1a. Buffer: Region
6118 (put 'pr-i-region 'pr-widget
6119 (pr-insert-checkbox
6120 "\n "
6121 'pr-i-region
6122 #'(lambda (widget &rest ignore)
6123 (let ((region-p (pr-interface-save
6124 (ps-mark-active-p))))
6125 (cond ((null (widget-value widget)) ; widget is nil
6126 (setq pr-i-region nil))
6127 (region-p ; widget is true and there is a region
6128 (setq pr-i-region t)
6129 (widget-value-set widget t)
6130 (widget-setup)) ; MUST be called after widget-value-set
6131 (t ; widget is true and there is no region
6132 (ding)
6133 (message "There is no region active")
6134 (setq pr-i-region nil)
6135 (widget-value-set widget nil)
6136 (widget-setup))))) ; MUST be called after widget-value-set
6137 " Region"))
6138 ;; 1a. Buffer: Mode
6139 (put 'pr-i-mode 'pr-widget
6140 (pr-insert-checkbox
6141 " "
6142 'pr-i-mode
6143 #'(lambda (widget &rest ignore)
6144 (let ((mode-p (pr-interface-save
6145 (pr-mode-alist-p))))
6146 (cond
6147 ((null (widget-value widget)) ; widget is nil
6148 (setq pr-i-mode nil))
6149 (mode-p ; widget is true and there is a `mode'
6150 (setq pr-i-mode t)
6151 (widget-value-set widget t)
6152 (widget-setup)) ; MUST be called after widget-value-set
6153 (t ; widget is true and there is no `mode'
6154 (ding)
6155 (message
6156 "This buffer isn't in a mode that printing treats specially.")
6157 (setq pr-i-mode nil)
6158 (widget-value-set widget nil)
6159 (widget-setup))))) ; MUST be called after widget-value-set
6160 " Mode\n"))
6161
6162 ;; 1b. Directory:
6163 (pr-insert-radio-button 'pr-i-process 'directory)
6164 (widget-create
6165 'directory
6166 :size 58
6167 :format " Directory : %v"
6168 :notify 'pr-interface-directory
6169 :action (lambda (widget &optional event)
6170 (if (pr-interface-directory widget)
6171 (pr-widget-field-action widget event)
6172 (ding)
6173 (message "Please specify a readable directory")))
6174 pr-i-directory)
6175 ;; 1b. Directory: File Regexp
6176 (widget-create 'regexp
6177 :size 58
6178 :format "\n File Regexp : %v\n"
6179 :notify (lambda (widget &rest ignore)
6180 (setq pr-i-regexp (widget-value widget)))
6181 pr-i-regexp)
6182 ;; 1b. Directory: List Directory Entry
6183 (widget-insert " ")
6184 (pr-insert-toggle 'pr-list-directory " List Directory Entry\n")
6185
6186 ;; 1c. PostScript File:
6187 (pr-insert-radio-button 'pr-i-process 'file)
6188 (widget-create
6189 'file
6190 :size 51
6191 :format " PostScript File : %v"
6192 :notify 'pr-interface-infile
6193 :action (lambda (widget &rest event)
6194 (if (pr-interface-infile widget)
6195 (pr-widget-field-action widget event)
6196 (ding)
6197 (message "Please specify a readable PostScript file")))
6198 pr-i-ps-file)
6199 ;; 1c. PostScript File: PostScript Utility
6200 (pr-insert-menu "PostScript Utility" 'pr-ps-utility
6201 (pr-choice-alist pr-ps-utility-alist)
6202 "\n PostScript Utility : "
6203 " ")
6204 ;; 1c. PostScript File: No Preprocessing
6205 (pr-insert-toggle 'pr-i-ps-as-is " No Preprocessing"))
6206
6207
6208 (defun pr-insert-section-2 ()
6209 ;; 2. PostScript Printer:
6210 ;; 2. PostScript Printer: PostScript Printer List
6211 (pr-insert-italic "\n\nPostScript Printer : " 2 20)
6212 (pr-insert-menu "PostScript Printer" 'pr-ps-name
6213 (pr-choice-alist pr-ps-printer-alist))
6214 ;; 2. PostScript Printer: Despool
6215 (put 'pr-i-despool 'pr-widget
6216 (pr-insert-checkbox
6217 " "
6218 'pr-i-despool
6219 #'(lambda (widget &rest ignore)
6220 (if pr-spool-p
6221 (setq pr-i-despool (not pr-i-despool))
6222 (ding)
6223 (message "Can despool only when spooling is actually selected")
6224 (setq pr-i-despool nil))
6225 (widget-value-set widget pr-i-despool)
6226 (widget-setup)) ; MUST be called after widget-value-set
6227 " Despool "))
6228 ;; 2. PostScript Printer: Preview Print Quit
6229 (pr-insert-button 'pr-interface-preview "Preview" " ")
6230 (pr-insert-button 'pr-interface-ps-print "Print" " ")
6231 (pr-insert-button 'pr-interface-quit "Quit")
6232 ;; 2. PostScript Printer: Send to Printer/Temporary File
6233 (pr-insert-radio-button 'pr-i-ps-send 'printer)
6234 (widget-insert " Send to Printer/Temporary File")
6235 ;; 2. PostScript Printer: Send to File
6236 (pr-insert-radio-button 'pr-i-ps-send 'file)
6237 (widget-create
6238 'file
6239 :size 57
6240 :format " Send to File : %v"
6241 :notify 'pr-interface-outfile
6242 :action (lambda (widget &rest event)
6243 (if (and (pr-interface-outfile widget)
6244 (or (not (file-exists-p pr-i-out-file))
6245 (setq pr-i-answer-yes
6246 (y-or-n-p "File exists; overwrite? "))))
6247 (pr-widget-field-action widget event)
6248 (ding)
6249 (message "Please specify a writable PostScript file")))
6250 pr-i-out-file)
6251 ;; 2. PostScript Printer: N-Up
6252 (widget-create
6253 'integer
6254 :size 3
6255 :format "\n N-Up : %v"
6256 :notify (lambda (widget &rest ignore)
6257 (let ((value (if (string= (widget-apply widget :value-get) "")
6258 0
6259 (widget-value widget))))
6260 (if (and (integerp value)
6261 (<= 1 value) (<= value 100))
6262 (progn
6263 (message " ")
6264 (setq pr-i-n-up value))
6265 (ding)
6266 (message "Please specify an integer between 1 and 100"))))
6267 pr-i-n-up))
6268
6269
6270 (defun pr-insert-section-3 ()
6271 ;; 3. Text Printer:
6272 (pr-insert-italic "\n\nText Printer : " 2 14)
6273 (pr-insert-menu "Text Printer" 'pr-txt-name
6274 (pr-choice-alist pr-txt-printer-alist)
6275 nil " ")
6276 (pr-insert-button 'pr-interface-printify "Printify" " ")
6277 (pr-insert-button 'pr-interface-txt-print "Print" " ")
6278 (pr-insert-button 'pr-interface-quit "Quit"))
6279
6280
6281 (defun pr-insert-section-4 ()
6282 ;; 4. Settings:
6283 ;; 4. Settings: Landscape Auto Region Verbose
6284 (pr-insert-checkbox "\n\n " 'ps-landscape-mode
6285 #'(lambda (&rest ignore)
6286 (setq ps-landscape-mode (not ps-landscape-mode)
6287 pr-file-landscape ps-landscape-mode))
6288 " Landscape ")
6289 (pr-insert-toggle 'pr-auto-region " Auto Region ")
6290 (pr-insert-toggle 'pr-buffer-verbose " Verbose\n ")
6291
6292 ;; 4. Settings: Print Header Auto Mode
6293 (pr-insert-toggle 'ps-print-header " Print Header ")
6294 (pr-insert-toggle 'pr-auto-mode " Auto Mode\n ")
6295
6296 ;; 4. Settings: Print Header Frame Menu Lock
6297 (pr-insert-toggle 'ps-print-header-frame " Print Header Frame ")
6298 (pr-insert-toggle 'pr-menu-lock " Menu Lock\n ")
6299
6300 ;; 4. Settings: Line Number
6301 (pr-insert-toggle 'ps-line-number " Line Number\n ")
6302
6303 ;; 4. Settings: Zebra Stripes Spool Buffer
6304 (pr-insert-toggle 'ps-zebra-stripes " Zebra Stripes")
6305 (pr-insert-checkbox " "
6306 'pr-spool-p
6307 #'(lambda (&rest ignore)
6308 (setq pr-spool-p (not pr-spool-p))
6309 (unless pr-spool-p
6310 (setq pr-i-despool nil)
6311 (pr-update-checkbox 'pr-i-despool)))
6312 " Spool Buffer")
6313
6314 ;; 4. Settings: Duplex Print with faces
6315 (pr-insert-checkbox "\n "
6316 'ps-spool-duplex
6317 #'(lambda (&rest ignore)
6318 (setq ps-spool-duplex (not ps-spool-duplex)
6319 pr-file-duplex ps-spool-duplex))
6320 " Duplex ")
6321 (pr-insert-toggle 'pr-faces-p " Print with faces")
6322
6323 ;; 4. Settings: Tumble Print via Ghostscript
6324 (pr-insert-checkbox "\n "
6325 'ps-spool-tumble
6326 #'(lambda (&rest ignore)
6327 (setq ps-spool-tumble (not ps-spool-tumble)
6328 pr-file-tumble ps-spool-tumble))
6329 " Tumble ")
6330 (pr-insert-toggle 'pr-print-using-ghostscript " Print via Ghostscript\n ")
6331
6332 ;; 4. Settings: Upside-Down Page Parity
6333 (pr-insert-toggle 'ps-print-upside-down " Upside-Down")
6334 (pr-insert-italic "\n\nSelect Pages : " 2 14)
6335 (pr-insert-menu "Page Parity" 'ps-even-or-odd-pages
6336 (mapcar #'(lambda (alist)
6337 (list 'quote
6338 (list 'choice-item
6339 :format "%[%t%]"
6340 :tag (cdr alist)
6341 :value (car alist))))
6342 pr-even-or-odd-alist)))
6343
6344
6345 (defun pr-insert-section-5 ()
6346 ;; 5. Customize:
6347 (pr-insert-italic "\n\nCustomize : " 2 11)
6348 (pr-insert-button 'pr-customize "printing" " ")
6349 (pr-insert-button #'(lambda (&rest ignore) (ps-print-customize))
6350 "ps-print" " ")
6351 (pr-insert-button 'lpr-customize "lpr"))
6352
6353
6354 (defun pr-insert-section-6 ()
6355 ;; 6. Show Settings:
6356 (pr-insert-italic "\nShow Settings : " 1 14)
6357 (pr-insert-button 'pr-show-pr-setup "printing" " ")
6358 (pr-insert-button 'pr-show-ps-setup "ps-print" " ")
6359 (pr-insert-button 'pr-show-lpr-setup "lpr"))
6360
6361
6362 (defun pr-insert-section-7 ()
6363 ;; 7. Help:
6364 (pr-insert-italic "\nHelp : " 1 5)
6365 (pr-insert-button 'pr-interface-help "Interface Help" " ")
6366 (pr-insert-button 'pr-help "Menu Help" " ")
6367 (pr-insert-button 'pr-interface-quit "Quit" "\n ")
6368 (pr-insert-button 'pr-kill-help "Kill All Printing Help Buffer"))
6369
6370
6371 (defun pr-kill-help (&rest ignore)
6372 "Kill all printing help buffer."
6373 (interactive)
6374 (let ((help '("*Printing Interface Help*" "*Printing Help*"
6375 "*LPR Setup*" "*PR Setup*" "*PS Setup*")))
6376 (while help
6377 (let ((buffer (get-buffer (car help))))
6378 (setq help (cdr help))
6379 (when buffer
6380 (delete-windows-on buffer)
6381 (kill-buffer buffer)))))
6382 (recenter (- (window-height) 2)))
6383
6384
6385 (defun pr-interface-quit (&rest ignore)
6386 "Kill the printing buffer interface and quit."
6387 (interactive)
6388 (kill-buffer pr-buffer-name)
6389 (set-window-configuration pr-i-window-configuration))
6390
6391
6392 (defun pr-interface-help (&rest ignore)
6393 "printing buffer interface help."
6394 (interactive)
6395 (pr-show-setup pr-interface-help-message "*Printing Interface Help*"))
6396
6397
6398 (defun pr-interface-txt-print (&rest ignore)
6399 "Print using lpr package."
6400 (interactive)
6401 (condition-case data
6402 (cond
6403 ((eq pr-i-process 'directory)
6404 (pr-i-directory)
6405 (pr-interface-save
6406 (pr-txt-directory pr-i-directory pr-i-regexp)))
6407 ((eq pr-i-process 'buffer)
6408 (pr-interface-save
6409 (cond (pr-i-region
6410 (let ((pr-auto-mode pr-i-mode))
6411 (pr-txt-region)))
6412 (pr-i-mode
6413 (let (pr-auto-region)
6414 (pr-txt-mode)))
6415 (t
6416 (let (pr-auto-mode pr-auto-region)
6417 (pr-txt-buffer)))
6418 )))
6419 ((eq pr-i-process 'file)
6420 (error "Please specify a text file"))
6421 (t
6422 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6423 )
6424 ;; handlers
6425 ((quit error)
6426 (ding)
6427 (message "%s" (error-message-string data)))))
6428
6429
6430 (defun pr-interface-printify (&rest ignore)
6431 "Printify a buffer."
6432 (interactive)
6433 (condition-case data
6434 (cond
6435 ((eq pr-i-process 'directory)
6436 (pr-i-directory)
6437 (pr-interface-save
6438 (pr-printify-directory pr-i-directory pr-i-regexp)))
6439 ((eq pr-i-process 'buffer)
6440 (pr-interface-save
6441 (if pr-i-region
6442 (pr-printify-region)
6443 (pr-printify-buffer))))
6444 ((eq pr-i-process 'file)
6445 (error "Cannot printify a PostScript file"))
6446 (t
6447 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6448 )
6449 ;; handlers
6450 ((quit error)
6451 (ding)
6452 (message "%s" (error-message-string data)))))
6453
6454
6455 (defun pr-interface-ps-print (&rest ignore)
6456 "Print using ps-print package."
6457 (interactive)
6458 (pr-interface-ps 'pr-despool-ps-print 'pr-ps-directory-ps-print
6459 'pr-ps-file-ps-print 'pr-ps-file-up-ps-print
6460 'pr-ps-region-ps-print 'pr-ps-mode-ps-print
6461 'pr-ps-buffer-ps-print))
6462
6463
6464 (defun pr-interface-preview (&rest ignore)
6465 "Preview a PostScript file."
6466 (interactive)
6467 (pr-interface-ps 'pr-despool-preview 'pr-ps-directory-preview
6468 'pr-ps-file-preview 'pr-ps-file-up-preview
6469 'pr-ps-region-preview 'pr-ps-mode-preview
6470 'pr-ps-buffer-preview))
6471
6472
6473 (defun pr-interface-ps (ps-despool ps-directory ps-file ps-file-up ps-region
6474 ps-mode ps-buffer)
6475 (condition-case data
6476 (let ((outfile (or (and (eq pr-i-process 'file) pr-i-ps-as-is)
6477 (pr-i-ps-send))))
6478 (cond
6479 ((and pr-i-despool pr-spool-p)
6480 (pr-interface-save
6481 (funcall ps-despool outfile))
6482 (setq pr-i-despool nil)
6483 (pr-update-checkbox 'pr-i-despool))
6484 ((eq pr-i-process 'directory)
6485 (pr-i-directory)
6486 (pr-interface-save
6487 (funcall ps-directory
6488 pr-i-n-up pr-i-directory pr-i-regexp outfile)))
6489 ((eq pr-i-process 'file)
6490 (cond ((or (file-directory-p pr-i-ps-file)
6491 (not (file-readable-p pr-i-ps-file)))
6492 (error "Please specify a readable PostScript file"))
6493 (pr-i-ps-as-is
6494 (pr-interface-save
6495 (funcall ps-file pr-i-ps-file)))
6496 (t
6497 (pr-interface-save
6498 (funcall ps-file-up pr-i-n-up pr-i-ps-file outfile)))
6499 ))
6500 ((eq pr-i-process 'buffer)
6501 (pr-interface-save
6502 (cond (pr-i-region
6503 (let ((pr-auto-mode pr-i-mode))
6504 (funcall ps-region pr-i-n-up outfile)))
6505 (pr-i-mode
6506 (let (pr-auto-region)
6507 (funcall ps-mode pr-i-n-up outfile)))
6508 (t
6509 (let (pr-auto-mode pr-auto-region)
6510 (funcall ps-buffer pr-i-n-up outfile)))
6511 )))
6512 (t
6513 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6514 ))
6515 ;; handlers
6516 ((quit error)
6517 (ding)
6518 (message "%s" (error-message-string data)))))
6519
6520
6521 (defun pr-i-ps-send ()
6522 (cond ((eq pr-i-ps-send 'printer)
6523 nil)
6524 ((not (eq pr-i-ps-send 'file))
6525 (error "Internal error: `pr-i-ps-send' = %S" pr-i-ps-send))
6526 ((or (file-directory-p pr-i-out-file)
6527 (not (file-writable-p pr-i-out-file)))
6528 (error "Please specify a writable PostScript file"))
6529 ((or (not (file-exists-p pr-i-out-file))
6530 pr-i-answer-yes
6531 (setq pr-i-answer-yes
6532 (y-or-n-p (format "File `%s' exists; overwrite? "
6533 pr-i-out-file))))
6534 pr-i-out-file)
6535 (t
6536 (error "File already exists"))))
6537
6538
6539 (defun pr-i-directory ()
6540 (or (and (file-directory-p pr-i-directory)
6541 (file-readable-p pr-i-directory))
6542 (error "Please specify be a readable directory")))
6543
6544
6545 (defun pr-interface-directory (widget &rest ignore)
6546 (and pr-buffer-verbose
6547 (message "You can use M-TAB or ESC TAB for file completion"))
6548 (let ((dir (widget-value widget)))
6549 (and (file-directory-p dir)
6550 (file-readable-p dir)
6551 (setq pr-i-directory dir))))
6552
6553
6554 (defun pr-interface-infile (widget &rest ignore)
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-readable-p file)
6560 (setq pr-i-ps-file file))))
6561
6562
6563 (defun pr-interface-outfile (widget &rest ignore)
6564 (setq pr-i-answer-yes nil)
6565 (and pr-buffer-verbose
6566 (message "You can use M-TAB or ESC TAB for file completion"))
6567 (let ((file (widget-value widget)))
6568 (and (not (file-directory-p file))
6569 (file-writable-p file)
6570 (setq pr-i-out-file file))))
6571
6572
6573 (defun pr-widget-field-action (widget event)
6574 (and (get-buffer "*Completions*") ; clean frame window
6575 (delete-windows-on "*Completions*"))
6576 (message " ") ; clean echo area
6577 (widget-field-action widget event))
6578
6579
6580 (defun pr-insert-italic (str &optional from to)
6581 (let ((len (length str)))
6582 (put-text-property (if from (max from 0) 0)
6583 (if to (max to len) len)
6584 'face 'italic str)
6585 (widget-insert str)))
6586
6587
6588 (defun pr-insert-checkbox (before var-sym fun label)
6589 (widget-insert before)
6590 (prog1
6591 (widget-create 'checkbox
6592 :notify fun
6593 (symbol-value var-sym))
6594 (widget-insert label)))
6595
6596
6597 (defun pr-insert-toggle (var-sym label)
6598 (widget-create 'checkbox
6599 :notify `(lambda (&rest ignore)
6600 (setq ,var-sym (not ,var-sym)))
6601 (symbol-value var-sym))
6602 (widget-insert label))
6603
6604
6605 (defun pr-insert-button (fun label &optional separator)
6606 (widget-create 'push-button
6607 :notify fun
6608 label)
6609 (and separator
6610 (widget-insert separator)))
6611
6612
6613 (defun pr-insert-menu (tag var-sym choices &optional before after &rest body)
6614 (and before (widget-insert before))
6615 (eval `(widget-create 'menu-choice
6616 :tag ,tag
6617 :format "%v"
6618 :inline t
6619 :value ,var-sym
6620 :notify (lambda (widget &rest ignore)
6621 (setq ,var-sym (widget-value widget))
6622 ,@body)
6623 :void '(choice-item :format "%[%t%]"
6624 :tag "Can not display value!")
6625 ,@choices))
6626 (and after (widget-insert after)))
6627
6628
6629 (defun pr-insert-radio-button (var-sym sym)
6630 (widget-insert "\n")
6631 (let ((wid-list (get var-sym 'pr-widget-list))
6632 (wid (eval `(widget-create
6633 'radio-button
6634 :format " %[%v%]"
6635 :value (eq ,var-sym (quote ,sym))
6636 :notify (lambda (&rest ignore)
6637 (setq ,var-sym (quote ,sym))
6638 (pr-update-radio-button (quote ,var-sym)))))))
6639 (put var-sym 'pr-widget-list (cons (cons wid sym) wid-list))))
6640
6641
6642 (defun pr-update-radio-button (var-sym)
6643 (let ((wid-list (get var-sym 'pr-widget-list)))
6644 (while wid-list
6645 (let ((wid (car (car wid-list)))
6646 (value (cdr (car wid-list))))
6647 (setq wid-list (cdr wid-list))
6648 (widget-value-set wid (eq (symbol-value var-sym) value))))
6649 (widget-setup)))
6650
6651
6652 (defun pr-update-checkbox (var-sym)
6653 (let ((wid (get var-sym 'pr-widget)))
6654 (when wid
6655 (widget-value-set wid (symbol-value var-sym))
6656 (widget-setup))))
6657
6658
6659 (defun pr-choice-alist (alist)
6660 (let ((max (apply 'max (mapcar #'(lambda (alist)
6661 (length (symbol-name (car alist))))
6662 alist))))
6663 (mapcar #'(lambda (alist)
6664 (let* ((sym (car alist))
6665 (name (symbol-name sym)))
6666 (list
6667 'quote
6668 (list
6669 'choice-item
6670 :format "%[%t%]"
6671 :tag (concat name
6672 (make-string (- max (length name)) ?_))
6673 :value sym))))
6674 alist)))
6675
6676
6677 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6678
6679
6680 (provide 'printing)
6681
6682
6683 ;;; printing.el ends here