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