(elp-instrument-function): Use called-interactively-p.
[emacs.git] / lisp / printing.el
blob3efb53111fd8d51b8c543b3499ca2c39dc5fd670
1 ;;; printing.el --- printing utilities
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004
4 ;; Free Software Foundation, Inc.
6 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br>
7 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br>
8 ;; Time-stamp: <2004/09/26 22:11:24 vinicius>
9 ;; Keywords: wp, print, PostScript
10 ;; Version: 6.8.1
11 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
13 (defconst pr-version "6.8.1"
14 "printing.el, v 6.8.1 <2004/09/26 vinicius>
16 Please send all bug fixes and enhancements to
17 Vinicius Jose Latorre <viniciusjl@ig.com.br>
20 ;; This file is part of GNU Emacs.
22 ;; GNU Emacs is free software; you can redistribute it and/or modify it under
23 ;; the terms of the GNU General Public License as published by the Free
24 ;; Software Foundation; either version 2, or (at your option) any later
25 ;; version.
27 ;; GNU Emacs is distributed in the hope that it will be useful, but WITHOUT ANY
28 ;; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
29 ;; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
30 ;; details.
32 ;; You should have received a copy of the GNU General Public License along with
33 ;; GNU Emacs; see the file COPYING. If not, write to the Free Software
34 ;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
36 ;;; Commentary:
38 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
40 ;; Introduction
41 ;; ------------
43 ;; With `printing' you can preview or print a PostScript file. You can also
44 ;; print a text file using PostScript, and preview or print buffers that use
45 ;; certain special modes like mh-folder-mode, rmail-summary-mode,
46 ;; gnus-summary-mode, etc. This package also includes a PostScript/text
47 ;; printer database.
49 ;; There are two user interfaces:
51 ;; * Menu interface:
52 ;; The `printing' menu replaces the usual print options in the menu bar.
53 ;; This is the default user interface.
55 ;; * Buffer interface:
56 ;; You can use a buffer interface instead of menus. It looks like a
57 ;; customization buffer. Basically, it has the same options found in the
58 ;; menu and some extra options, all this on a buffer.
60 ;; `printing' is prepared to run on GNU, Unix and NT systems.
61 ;; On GNU or Unix system, `printing' depends on gs and gv utilities.
62 ;; On NT system, `printing' depends on gstools (gswin32.exe and gsview32.exe).
63 ;; To obtain ghostscript, ghostview and GSview see the URL
64 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html'.
66 ;; `printing' depends on ps-print package to generate PostScript files, to
67 ;; spool and to despool PostScript buffer. So, `printing' provides an
68 ;; interface to ps-print package and it also provides some extra stuff.
70 ;; To download the latest ps-print package see
71 ;; `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'.
72 ;; Please, see README file for ps-print installation instructions.
74 ;; `printing' was inspired on:
76 ;; print-nt.el Frederic Corne <frederic.corne@erli.fr>
77 ;; Special printing functions for Windows NT
79 ;; mh-e-init.el Tom Vogels <tov@ece.cmu.edu>
80 ;; PS-print for mail messages
82 ;; win32-ps-print.el Matthew O. Persico <mpersico@erols.com>
83 ;; PostScript printing with ghostscript
85 ;; ps-print-interface.el Volker Franz <volker.franz@tuebingen.mpg.de>
86 ;; Graphical front end for ps-print and previewing
89 ;; Log Messages
90 ;; ------------
92 ;; The buffer *Printing Command Output* is where the `printing' log messages
93 ;; are inserted. All program called by `printing' has a log entry in the
94 ;; buffer *Printing Command Output*. A log entry has the following form:
96 ;; PROGRAM (ARG...)
97 ;; MESSAGE
98 ;; Exit status: CODE
100 ;; Where
101 ;; PROGRAM is the program activated by `printing',
102 ;; ARG is an argument passed to PROGRAM (it can have more than one argument),
103 ;; MESSAGE is an error message returned by PROGRAM (it can have no message, if
104 ;; PROGRAM is successful),
105 ;; and CODE is a numeric exit status or a signal description string.
107 ;; For example, after previewing a PostScript file, *Printing Command Output*
108 ;; will have the following entry:
110 ;; /usr/X11R6/bin/gv ("/home/user/example/file.ps")
111 ;; Exit status: 0
113 ;; In the example above, the previewing was successful. If during previewing,
114 ;; you quit gv execution (by typing C-g during Emacs session), the log entry
115 ;; would be:
117 ;; /usr/X11R6/bin/gv ("/home/user/example/file.ps")
118 ;; Exit status: Quit
120 ;; So, if something goes wrong, a good place to take a look is the buffer
121 ;; *Printing Command Output*. Don't forget to see also the buffer *Messages*,
122 ;; it can help.
125 ;; Novices (First Users)
126 ;; ---------------------
128 ;; First of all, see printing documentation only to get an idea of what
129 ;; `printing' is capable.
131 ;; Then try to set the variables: `pr-ps-name', `pr-ps-printer-alist',
132 ;; `pr-txt-name', `pr-txt-printer-alist' and `pr-path-alist'. These variables
133 ;; are the main variables for printing processing.
135 ;; Now, please, see these variables documentation deeper. You can do this by
136 ;; typing C-h v pr-ps-name RET (for example) if you already loaded printing
137 ;; package, or by browsing printing.el source file.
139 ;; If the documentation isn't clear or if you find a way to improve the
140 ;; documentation, please, send an email to maintainer. All printing users
141 ;; will thank you.
143 ;; One way to set variables is by calling `pr-customize', customize all
144 ;; variables and save the customization by future sessions (see Options
145 ;; section). Other way is by coding your settings on Emacs init file (that is,
146 ;; .emacs file), see below for a first setting template that it should be
147 ;; inserted on your ~/.emacs file (or c:/_emacs, if you're using Windows 9x/NT
148 ;; or MS-DOS):
150 ;; * Example of setting for Windows system:
152 ;; (require 'printing) ; load printing package
153 ;; (setq pr-path-alist
154 ;; '((windows "c:/applications/executables" PATH ghostview mpage)
155 ;; (ghostview "c:/gs/gsview-dir")
156 ;; (mpage "c:/mpage-dir")
157 ;; ))
158 ;; (setq pr-txt-name 'prt_06a)
159 ;; (setq pr-txt-printer-alist
160 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
161 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
162 ;; (PRN "" nil "PRN")
163 ;; (standard "redpr.exe" nil "")
164 ;; ))
165 ;; (setq pr-ps-name 'lps_06b)
166 ;; (setq pr-ps-printer-alist
167 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
168 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
169 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
170 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
171 ;; (LPT1 "" nil "" "LPT1:")
172 ;; (PRN "" nil "" "PRN")
173 ;; (standard "redpr.exe" nil "" "")
174 ;; ))
175 ;; (pr-update-menus t) ; update now printer and utility menus
177 ;; * Example of setting for GNU or Unix system:
179 ;; (require 'printing) ; load printing package
180 ;; (setq pr-path-alist
181 ;; '((unix "." "~/bin" ghostview mpage PATH)
182 ;; (ghostview "$HOME/bin/gsview-dir")
183 ;; (mpage "$HOME/bin/mpage-dir")
184 ;; ))
185 ;; (setq pr-txt-name 'prt_06a)
186 ;; (setq pr-txt-printer-alist
187 ;; '((prt_06a "lpr" nil "prt_06a")
188 ;; (prt_07c nil nil "prt_07c")
189 ;; ))
190 ;; (setq pr-ps-name 'lps_06b)
191 ;; (setq pr-ps-printer-alist
192 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
193 ;; (lps_07c "lpr" nil nil "lps_07c")
194 ;; (lps_08c nil nil nil "lps_08c")
195 ;; ))
196 ;; (pr-update-menus t) ; update now printer and utility menus
199 ;; NOTE 1: Don't forget to download and install ghostscript utilities (see
200 ;; Utilities section).
202 ;; NOTE 2: The `printer-name' and `ps-printer-name' variables don't need to be
203 ;; set, as they are implicit set by `pr-ps-printer-alist' and
204 ;; `pr-txt-printer-alist'.
206 ;; NOTE 3: The duplex feature will only work on PostScript printers that
207 ;; support this feature.
208 ;; You can check if your PostScript printer supports duplex feature
209 ;; by checking the printer manual. Or you can try these steps:
210 ;; 1. Open a buffer (or use the *scratch* buffer).
211 ;; 2. Type:
212 ;; First line (on first page)
213 ;; ^L
214 ;; Second line (on second page)
215 ;; 3. Print this buffer with duplex turned on.
216 ;; If it's printed 2 (two) sheets of paper, then your PostScript
217 ;; printer doesn't have duplex feature; otherwise, it's ok, your
218 ;; printer does have duplex feature.
220 ;; NOTE 4: See Tips section.
223 ;; Tips
224 ;; ----
226 ;; 1. If you have a local printer, that is, a printer which is connected
227 ;; directly to your computer, don't forget to connect the printer to your
228 ;; computer before printing.
230 ;; 2. If you try to print a file and it seems that the file was printed, but
231 ;; there is no paper in the printer, then try to set `pr-delete-temp-file'
232 ;; to nil. Probably `printing' is deleting the temporary file before your
233 ;; local system can get it to send to the printer.
235 ;; 3. Don't try to print a dynamic buffer, that is, a buffer which is
236 ;; modifying while `printing' tries to print. Eventually you got an error
237 ;; message. Instead, save the dynamic buffer to a file or copy it in
238 ;; another buffer and, then, print the file or the new static buffer.
239 ;; An example of dynamic buffer is the *Messages* buffer.
241 ;; 4. When running Emacs on Windows (with or without cygwin), check if your
242 ;; printer is a text printer or not by typing in a DOS window:
244 ;; print /D:\\host\printer somefile.txt
246 ;; Where, `host' is the machine where the printer is directly connected,
247 ;; `printer' is the printer name and `somefile.txt' is a text file.
249 ;; If the printer `\\host\printer' doesn't print the content of
250 ;; `somefile.txt' or, instead, it returns the following message:
252 ;; PostScript Error Handler
253 ;; Offending Command = CCC
254 ;; Stack =
256 ;; Where `CCC' is whatever is at the beginning of the text to be printed.
258 ;; Therefore, the printer `\\host\printer' is not a text printer, but a
259 ;; PostScript printer. So, please, don't include this printer in
260 ;; `pr-txt-printer-alist' (which see).
262 ;; 5. Use gsprint instead of ghostscript to print monochrome PostScript files
263 ;; in Windows. The gsprint utility is faster than ghostscript to print
264 ;; monochrome PostScript.
266 ;; To print non-monochrome PostScript file, the efficiency of ghostscript
267 ;; is similar to gsprint.
269 ;; Also the gsprint utility comes together with gsview distribution.
271 ;; For more information about gsprint see
272 ;; `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'.
275 ;; Using `printing'
276 ;; ----------------
278 ;; To use `printing' insert in your ~/.emacs file (or c:/_emacs, if you're
279 ;; using Windows 9x/NT or MS-DOS):
281 ;; (require 'printing)
283 ;; When `printing' is loaded:
284 ;; * On Emacs 20:
285 ;; it replaces the Tools/Print menu by Tools/Printing menu.
286 ;; * On Emacs 21:
287 ;; it replaces the File/Print* menu entries by File/Print menu.
288 ;; Please, see section Menu Layout below for menu explanation.
290 ;; To use `printing' utilities you can use the Printing menu options, type M-x
291 ;; followed by one of the commands below, or type a key associated with the
292 ;; command you want (if there is a key binding).
294 ;; `printing' has the following commands:
296 ;; pr-interface
297 ;; pr-ps-directory-preview
298 ;; pr-ps-directory-using-ghostscript
299 ;; pr-ps-directory-print
300 ;; pr-ps-directory-ps-print
301 ;; pr-ps-buffer-preview
302 ;; pr-ps-buffer-using-ghostscript
303 ;; pr-ps-buffer-print
304 ;; pr-ps-buffer-ps-print
305 ;; pr-ps-region-preview
306 ;; pr-ps-region-using-ghostscript
307 ;; pr-ps-region-print
308 ;; pr-ps-region-ps-print
309 ;; pr-ps-mode-preview
310 ;; pr-ps-mode-using-ghostscript
311 ;; pr-ps-mode-print
312 ;; pr-ps-mode-ps-print
313 ;; pr-ps-file-preview
314 ;; pr-ps-file-up-preview
315 ;; pr-ps-file-using-ghostscript
316 ;; pr-ps-file-print
317 ;; pr-ps-file-ps-print
318 ;; pr-ps-file-up-ps-print
319 ;; pr-ps-fast-fire
320 ;; pr-despool-preview
321 ;; pr-despool-using-ghostscript
322 ;; pr-despool-print
323 ;; pr-despool-ps-print
324 ;; pr-printify-directory
325 ;; pr-printify-buffer
326 ;; pr-printify-region
327 ;; pr-txt-directory
328 ;; pr-txt-buffer
329 ;; pr-txt-region
330 ;; pr-txt-mode
331 ;; pr-txt-fast-fire
332 ;; pr-toggle-file-duplex
333 ;; pr-toggle-file-tumble
334 ;; pr-toggle-file-landscape
335 ;; pr-toggle-ghostscript
336 ;; pr-toggle-faces
337 ;; pr-toggle-spool
338 ;; pr-toggle-duplex
339 ;; pr-toggle-tumble
340 ;; pr-toggle-landscape
341 ;; pr-toggle-upside-down
342 ;; pr-toggle-line
343 ;; pr-toggle-zebra
344 ;; pr-toggle-header
345 ;; pr-toggle-lock
346 ;; pr-toggle-region
347 ;; pr-toggle-mode
348 ;; pr-customize
349 ;; lpr-customize
350 ;; pr-help
351 ;; pr-ps-name
352 ;; pr-txt-name
353 ;; pr-ps-utility
354 ;; pr-show-ps-setup
355 ;; pr-show-pr-setup
356 ;; pr-show-lpr-setup
358 ;; The general meanings of above commands are:
360 ;; PREFIX:
361 ;; `pr-interface' buffer interface for printing package.
362 ;; `pr-help' help for printing package.
363 ;; `pr-ps-name' interactively select a PostScript printer.
364 ;; `pr-txt-name' interactively select a text printer.
365 ;; `pr-ps-utility' interactively select a PostScript utility.
366 ;; `pr-show-*-setup' show current settings.
367 ;; `pr-ps-*' deal with PostScript code generation.
368 ;; `pr-txt-*' deal with text generation.
369 ;; `pr-toggle-*' toggle on/off some boolean variable.
370 ;; `pr-despool-*' despool the PostScript spooling buffer.
371 ;; `pr-printify-*' replace nonprintable ASCII by printable ASCII
372 ;; representation.
374 ;; SUFFIX:
375 ;; `*-customize' customization.
376 ;; `*-preview' preview a PostScript file.
377 ;; `*-using-ghostscript' use ghostscript to print.
378 ;; `*-fast-fire' fast fire command (see it for documentation).
379 ;; `*-print' send PostScript directly to printer.
380 ;; `*-ps-print' send PostScript directly to printer or use
381 ;; ghostscript to print. It depends on
382 ;; `pr-print-using-ghostscript' option.
384 ;; INFIX/SUFFIX:
385 ;; `*-directory*' process a directory.
386 ;; `*-buffer*' process a buffer.
387 ;; `*-region*' process a region.
388 ;; `*-mode*' process a major mode (see explanation below).
389 ;; `*-file-*' process a PostScript file.
390 ;; `*-file-up-*' process a PostScript file using a filter utility.
392 ;; Here are some examples:
394 ;; `pr-ps-buffer-using-ghostscript'
395 ;; Use ghostscript to print a buffer.
397 ;; `pr-ps-file-print'
398 ;; Print a PostScript file.
400 ;; `pr-toggle-spool'
401 ;; Toggle spooling buffer.
403 ;; So you can preview through ghostview, use ghostscript to print (if you don't
404 ;; have a PostScript printer) or send directly to printer a PostScript code
405 ;; generated by `ps-print' package.
407 ;; Besides operating one buffer or region each time, you also can postpone
408 ;; previewing or printing by saving the PostScript code generated in a
409 ;; temporary Emacs buffer. This way you can save banner pages between
410 ;; successive printing. You can toggle on/off spooling by invoking
411 ;; `pr-toggle-spool' interactively or through menu bar.
413 ;; If you type, for example:
415 ;; C-u M-x pr-ps-buffer-print RET
417 ;; The `pr-ps-buffer-print' command prompts you for a n-up printing number and
418 ;; a file name, and save the PostScript code generated to the file name instead
419 ;; of sending to printer.
421 ;; This behavior is similar with the commands that deal with PostScript code
422 ;; generation, that is, with `pr-ps-*' and `pr-despool-*' commands. If
423 ;; spooling is on, only `pr-despool-*' commands prompt for a file name and save
424 ;; the PostScript code spooled in this file.
426 ;; Besides the behavior described above, the `*-directory*' commands also
427 ;; prompt for a directory and a file name regexp. So, it's possible to process
428 ;; all or certain files on a directory at once (see also documentation for
429 ;; `pr-list-directory').
431 ;; `printing' has also a special way to handle some major mode through
432 ;; `*-mode*' commands. So it's possible to customize a major mode printing,
433 ;; it's only needed to declare the customization in `pr-mode-alist' (see
434 ;; section Options) and invoke some of `*-mode*' commands. An example for
435 ;; major mode usage is when you're using gnus (or mh, or rmail, etc.) and
436 ;; you're in the *Summary* buffer, if you forget to switch to the *Article*
437 ;; buffer before printing, you'll get a nicely formatted list of article
438 ;; subjects shows up at the printer. With major mode printing you don't need
439 ;; to switch from gnus *Summary* buffer first.
441 ;; Current global keyboard mapping for GNU Emacs is:
443 ;; (global-set-key [print] 'pr-ps-fast-fire)
444 ;; (global-set-key [M-print] 'pr-ps-mode-using-ghostscript)
445 ;; (global-set-key [C-print] 'pr-txt-fast-fire)
447 ;; And for XEmacs is:
449 ;; (global-set-key 'f22 'pr-ps-fast-fire)
450 ;; (global-set-key '(meta f22) 'pr-ps-mode-using-ghostscript)
451 ;; (global-set-key '(control f22) 'pr-txt-fast-fire)
453 ;; As a suggestion of global keyboard mapping for some `printing' commands:
455 ;; (global-set-key "\C-ci" 'pr-interface)
456 ;; (global-set-key "\C-cbp" 'pr-ps-buffer-print)
457 ;; (global-set-key "\C-cbx" 'pr-ps-buffer-preview)
458 ;; (global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
459 ;; (global-set-key "\C-crp" 'pr-ps-region-print)
460 ;; (global-set-key "\C-crx" 'pr-ps-region-preview)
461 ;; (global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
464 ;; Options
465 ;; -------
467 ;; Below it's shown a brief description of `printing' options, please, see the
468 ;; options declaration in the code for a long documentation.
470 ;; `pr-path-style' Specify which path style to use for external
471 ;; commands.
473 ;; `pr-path-alist' Specify an alist for command paths.
475 ;; `pr-txt-name' Specify a printer for printing a text file.
477 ;; `pr-txt-printer-alist' Specify an alist of all text printers.
479 ;; `pr-ps-name' Specify a printer for printing a PostScript
480 ;; file.
482 ;; `pr-ps-printer-alist' Specify an alist for all PostScript printers.
484 ;; `pr-temp-dir' Specify a directory for temporary files during
485 ;; printing.
487 ;; `pr-ps-temp-file' Specify PostScript temporary file name.
489 ;; `pr-gv-command' Specify path and name of the gsview/gv
490 ;; utility.
492 ;; `pr-gs-command' Specify path and name of the ghostscript
493 ;; utility.
495 ;; `pr-gs-switches' Specify ghostscript switches.
497 ;; `pr-gs-device' Specify ghostscript device switch value.
499 ;; `pr-gs-resolution' Specify ghostscript resolution switch value.
501 ;; `pr-print-using-ghostscript' Non-nil means print using ghostscript.
503 ;; `pr-faces-p' Non-nil means print with face attributes.
505 ;; `pr-spool-p' Non-nil means spool printing in a buffer.
507 ;; `pr-file-landscape' Non-nil means print PostScript file in
508 ;; landscape orientation.
510 ;; `pr-file-duplex' Non-nil means print PostScript file in duplex
511 ;; mode.
513 ;; `pr-file-tumble' Non-nil means print PostScript file in tumble
514 ;; mode.
516 ;; `pr-auto-region' Non-nil means region is automagically detected.
518 ;; `pr-auto-mode' Non-nil means major-mode specific printing is
519 ;; prefered over normal printing.
521 ;; `pr-mode-alist' Specify an alist for a major-mode and printing
522 ;; function.
524 ;; `pr-ps-utility' Specify PostScript utility processing.
526 ;; `pr-ps-utility-alist' Specify an alist for PostScript utility
527 ;; processing.
529 ;; `pr-menu-lock' Non-nil means menu is locked while selecting
530 ;; toggle options.
532 ;; `pr-menu-char-height' Specify menu char height in pixels.
534 ;; `pr-menu-char-width' Specify menu char width in pixels.
536 ;; `pr-setting-database' Specify an alist for settings in general.
538 ;; `pr-visible-entry-list' Specify a list of Printing menu visible
539 ;; entries.
541 ;; `pr-delete-temp-file' Non-nil means delete temporary files.
543 ;; `pr-list-directory' Non-nil means list directory when processing a
544 ;; directory.
546 ;; `pr-buffer-name' Specify the name of the buffer interface for
547 ;; printing package.
549 ;; `pr-buffer-name-ignore' Specify a regexp list for buffer names to be
550 ;; ignored in interface buffer.
552 ;; `pr-buffer-verbose' Non-nil means to be verbose when editing a
553 ;; field in interface buffer.
555 ;; To set the above options you may:
557 ;; a) insert the code in your ~/.emacs, like:
559 ;; (setq pr-faces-p t)
561 ;; This way always keep your default settings when you enter a new Emacs
562 ;; session.
564 ;; b) or use `set-variable' in your Emacs session, like:
566 ;; M-x set-variable RET pr-faces-p RET t RET
568 ;; This way keep your settings only during the current Emacs session.
570 ;; c) or use customization, for example:
571 ;; click on menu-bar *Help* option,
572 ;; then click on *Customize*,
573 ;; then click on *Browse Customization Groups*,
574 ;; expand *PostScript* group,
575 ;; expand *Printing* group
576 ;; and then customize `printing' options.
577 ;; Through this way, you may choose if the settings are kept or not when
578 ;; you leave out the current Emacs session.
580 ;; d) or see the option value:
582 ;; C-h v pr-faces-p RET
584 ;; and click the *customize* hypertext button.
585 ;; Through this way, you may choose if the settings are kept or not when
586 ;; you leave out the current Emacs session.
588 ;; e) or invoke:
590 ;; M-x pr-customize RET
592 ;; and then customize `printing' options.
593 ;; Through this way, you may choose if the settings are kept or not when
594 ;; you leave out the current Emacs session.
596 ;; f) or use menu bar, for example:
597 ;; click on menu-bar *File* option,
598 ;; then click on *Printing*,
599 ;; then click on *Customize*,
600 ;; then click on *printing*
601 ;; and then customize `printing' options.
602 ;; Through this way, you may choose if the settings are kept or not when
603 ;; you leave out the current Emacs session.
606 ;; Menu Layout
607 ;; -----------
609 ;; The `printing' menu (Tools/Printing or File/Print) has the following layout:
611 ;; +-----------------------------+
612 ;; A 0 | Printing Interface |
613 ;; +-----------------------------+ +-A---------+ +-B------+
614 ;; I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
615 ;; 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
616 ;; 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
617 ;; +-----------------------------+ |Mode >|-- B |Other...|
618 ;; II 4 | Printify >|-----\ |File >|--\ +--------+
619 ;; 5 | Print >|---\ | |Despool... | |
620 ;; 6 | Text Printer: name >|-\ | | +-----------+ |
621 ;; +-----------------------------+ | | | +---------+ +------------+
622 ;; III 7 |[ ]Landscape | | | \-|Directory| | No Prep... | Ia
623 ;; 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
624 ;; 9 |[ ]Print Header Frame | | | |Region | | name >|- C
625 ;; 10 |[ ]Line Number | | | +---------+ +------------+
626 ;; 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
627 ;; 12 |[ ]Duplex | | \---|Directory| | 2-up... |
628 ;; 13 |[ ]Tumble | \--\ |Buffer | | 4-up... |
629 ;; 14 |[ ]Upside-Down | | |Region | | Other... |
630 ;; 15 | Print All Pages >|--\ | |Mode | +------------+
631 ;; +-----------------------------+ | | +---------+ |[ ]Landscape| Id
632 ;; IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
633 ;; 17 |[ ]Print with faces | | \--|( )name A| |[ ]Tumble | If
634 ;; 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
635 ;; +-----------------------------+ | |... |
636 ;; V 19 |[ ]Auto Region | | |(*)name |
637 ;; 20 |[ ]Auto Mode | | |... |
638 ;; 21 |[ ]Menu Lock | | +---------+ +--------------+
639 ;; +-----------------------------+ \------------------|(*)All Pages |
640 ;; VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
641 ;; 23 | Show Settings >|-------|printing| |( )Odd Pages |
642 ;; 24 | Help | |ps-print| |( )Even Sheets|
643 ;; +-----------------------------+ |lpr | |( )Odd Sheets |
644 ;; +--------+ +--------------+
646 ;; See `pr-visible-entry-list' for hiding some parts of the menu.
648 ;; The menu has the following sections:
650 ;; A. Interface:
652 ;; 0. You can use a buffer interface instead of menus. It looks like the
653 ;; customization buffer. Basically, it has the same options found in the
654 ;; menu and some extra options, all this on a buffer.
656 ;; I. PostScript printing:
658 ;; 1. You can generate a PostScript file (if you type C-u before activating
659 ;; menu) or PostScript temporary file for a directory, a buffer, a region
660 ;; or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
661 ;; after file generation, ghostview is activated using the file generated
662 ;; as argument. This option is disabled if spooling is on (option 16).
663 ;; Also, if you already have a PostScript file you can preview it.
664 ;; Instead of previewing each buffer, region or major mode at once, you
665 ;; can save temporarily the PostScript code generated in a buffer and
666 ;; preview it later. The option `Despool...' despools the PostScript
667 ;; spooling buffer in a temporary file and uses ghostview to preview it.
668 ;; If you type C-u before choosing this option, the PostScript code
669 ;; generated is saved in a file instead of saving in a temporary file.
670 ;; To spool the PostScript code generated you need to turn on the option
671 ;; 16. The option `Despool...' is enabled if spooling is on (option
672 ;; 16).
674 ;; NOTE 1: It's possible to customize a major mode printing, just declare
675 ;; the customization in `pr-mode-alist' and invoke some of
676 ;; `*-mode*' commands or select Mode option in Printing menu. An
677 ;; example for major mode usage is when you're using gnus (or mh,
678 ;; or rmail, etc.) and you're in the *Summary* buffer, if you
679 ;; forget to switch to the *Article* buffer before printing,
680 ;; you'll get a nicely formatted list of article subjects shows
681 ;; up at the printer. With major mode printing you don't need to
682 ;; switch from gnus *Summary* buffer first.
684 ;; NOTE 2: There are the following options for PostScript file
685 ;; processing:
686 ;; Ia. Print the file *No Preprocessing*, that is, send it
687 ;; directly to PostScript printer.
688 ;; Ib. PostScript utility processing selection.
689 ;; See `pr-ps-utility-alist' and `pr-setting-database' for
690 ;; documentation.
691 ;; Ic. Do n-up processing before printing.
692 ;; Id. Toggle on/off landscape for PostScript file processing.
693 ;; Ie. Toggle on/off duplex for PostScript file processing.
694 ;; If. Toggle on/off tumble for PostScript file processing.
696 ;; NOTE 3: Don't forget to download and install the utilities declared on
697 ;; `pr-ps-utility-alist'.
699 ;; 2. Operate the same way as option 1, but it sends directly the PostScript
700 ;; code (or put in a file, if you've typed C-u) or it uses ghostscript to
701 ;; print the PostScript file generated. It depends on option 18, if it's
702 ;; turned on, it uses ghostscript; otherwise, it sends directly to
703 ;; printer. If spooling is on (option 16), the PostScript code is saved
704 ;; temporarily in a buffer instead of printing it or saving it in a file.
705 ;; Also, if you already have a PostScript file you can print it. Instead
706 ;; of printing each buffer, region or major mode at once, you can save
707 ;; temporarily the PostScript code generated in a buffer and print it
708 ;; later. The option `Despool...' despools the PostScript spooling
709 ;; buffer directly on a printer. If you type C-u before choosing this
710 ;; option, the PostScript code generated is saved in a file instead of
711 ;; sending to printer. To spool the PostScript code generated you need
712 ;; to turn on the option 16. This option is enabled if spooling is on
713 ;; (option 16). See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
715 ;; 3. You can select a new PostScript printer to send PostScript code
716 ;; generated. For selection it's used all PostScript printers defined
717 ;; in `pr-ps-printer-alist' variable (see it for documentation).
718 ;; See also `pr-setting-database'.
720 ;; II. Text printing:
722 ;; 4. If you have control characters (character code from \000 to \037) in a
723 ;; buffer and you want to print them in a text printer, select this
724 ;; option. All control characters in your buffer or region will be
725 ;; replaced by a printable representation. The printable representations
726 ;; use ^ (for ASCII control characters) or hex. The characters tab,
727 ;; linefeed, space, return and formfeed are not affected. You don't need
728 ;; to select this option if you use any option of section I, the
729 ;; PostScript engine treats control characters properly.
731 ;; 5. If you want to print a directory, buffer, region or major mode in a
732 ;; text printer, select this option. See also the NOTE 1 on option 1.
734 ;; 6. You can select a new text printer to send text generated. For
735 ;; selection it's used all text printers defined in
736 ;; `pr-txt-printer-alist' variable (see it for documentation).
737 ;; See also `pr-setting-database'.
739 ;; III. PostScript page toggle options:
741 ;; 7. If you want a PostScript landscape printing, turn on this option.
743 ;; 8. If you want to have a header in each page in your PostScript code,
744 ;; turn on this option.
746 ;; 9. If you want to draw a gaudy frame around the header, turn on this
747 ;; option. This option is enabled if print header is on (option 8).
749 ;; 10. If you want that the line number is printed in your PostScript code,
750 ;; turn on this option.
752 ;; 11. If you want background zebra stripes in your PostScript code, turn on
753 ;; this option.
755 ;; 12. If you want a duplex printing and your PostScript printer has this
756 ;; feature, turn on this option.
758 ;; 13. If you turned on duplex printing, you can choose if you want to have
759 ;; a printing suitable for binding on the left or right (tumble off), or
760 ;; to have a printing suitable for binding at top or bottom (tumble on).
761 ;; This option is enabled if duplex is on (option 12).
763 ;; 14. If you want a PostScript upside-down printing, turn on this option.
765 ;; 15. With this option, you can choose if you want to print all pages, odd
766 ;; pages, even pages, odd sheets or even sheets.
767 ;; See also `ps-even-or-odd-pages'.
769 ;; IV. PostScript processing toggle options:
771 ;; 16. If you want to spool the PostScript code generated, turn on this
772 ;; option. To spool the PostScript code generated use option 2. You
773 ;; can despool later by choosing option 1 or 2, sub-option `Despool...'.
775 ;; 17. If you use colors in your buffers and want to see these colors on
776 ;; your PostScript code generated, turn on this option. If you have a
777 ;; black/white PostScript printer, these colors are displayed in gray
778 ;; scale by PostScript printer interpreter.
780 ;; 18. If you don't have a PostScript printer to send PostScript files, turn
781 ;; on this option. When this option is on, the ghostscript is used to
782 ;; print PostScript files. In GNU or Unix system, if ghostscript is set
783 ;; as a PostScript filter, you don't need to turn on this option.
785 ;; V. Printing customization:
787 ;; 19. If you want that region is automagically detected, turn on this
788 ;; option. Note that this will only work if you're using transient mark
789 ;; mode. When this option is on, the `*-buffer*' commands will behave
790 ;; like `*-region*' commands, that is, `*-buffer*' commands will print
791 ;; only the region marked instead of all buffer.
793 ;; 20. Turn this option on if you want that when current major-mode is
794 ;; declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
795 ;; behave like `*-mode*' commands.
797 ;; 21. If you want that Printing menu stays open while you are setting
798 ;; toggle options, turn on this option. The variables
799 ;; `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
800 ;; menu position, so don't forget to adjust these variables if menu
801 ;; position is not ok.
803 ;; VI. Customization:
805 ;; 22. Besides all options in section III, IV and V, you can customize much
806 ;; more PostScript options in `ps-print' option. Or you can customize
807 ;; some `lpr' options for text printing. Or customize `printing'
808 ;; options.
810 ;; 23. Show current settings for `printing', `ps-print' or `lpr'.
812 ;; 24. Quick help for printing menu layout.
815 ;; Option Settings
816 ;; ---------------
818 ;; Below it's shown only the main options that affect all `printing' package.
819 ;; Check all the settings below *BEFORE* running `printing' commands.
821 ;; * Example of setting for GNU or Unix system:
823 ;; (require 'printing)
824 ;; (setq pr-path-alist
825 ;; '((unix "." "~/bin" ghostview mpage PATH)
826 ;; (ghostview "$HOME/bin/gsview-dir")
827 ;; (mpage "$HOME/bin/mpage-dir")
828 ;; ))
829 ;; (setq pr-txt-name 'prt_06a)
830 ;; (setq pr-txt-printer-alist
831 ;; '((prt_06a "lpr" nil "prt_06a")
832 ;; (prt_07c nil nil "prt_07c")
833 ;; ))
834 ;; (setq pr-ps-name 'lps_06b)
835 ;; (setq pr-ps-printer-alist
836 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
837 ;; (lps_07c "lpr" nil nil "lps_07c")
838 ;; (lps_08c nil nil nil "lps_08c")
839 ;; ))
840 ;; (setq pr-temp-dir "/tmp/")
841 ;; (setq pr-gv-command "gv")
842 ;; (setq pr-gs-command "gs")
843 ;; (setq pr-gs-switches '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
844 ;; (setq pr-gs-device "uniprint")
845 ;; (setq pr-gs-resolution 300)
846 ;; (setq pr-ps-utility 'mpage)
847 ;; (setq pr-ps-utility-alist
848 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
849 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
850 ;; (inherits-from: . no-duplex))
851 ;; ))
852 ;; (setq pr-setting-database
853 ;; '((no-duplex
854 ;; nil nil nil
855 ;; (pr-file-duplex . nil)
856 ;; (pr-file-tumble . nil))
857 ;; ))
858 ;; (pr-update-menus t) ; update now printer and utility menus
860 ;; * Example of setting for Windows system:
862 ;; (require 'printing)
863 ;; (setq pr-path-alist
864 ;; '((windows "c:/applications/executables" PATH ghostview mpage)
865 ;; (ghostview "c:/gs/gsview-dir")
866 ;; (mpage "c:/mpage-dir")
867 ;; ))
868 ;; (setq pr-txt-name 'prt_06a)
869 ;; (setq pr-txt-printer-alist
870 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
871 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
872 ;; (PRN "" nil "PRN")
873 ;; (standard "redpr.exe" nil "")
874 ;; ))
875 ;; (setq pr-ps-name 'lps_06b)
876 ;; (setq pr-ps-printer-alist
877 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
878 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
879 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
880 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
881 ;; (LPT1 "" nil "" "LPT1:")
882 ;; (PRN "" nil "" "PRN")
883 ;; (standard "redpr.exe" nil "" "")
884 ;; ))
885 ;; (setq pr-temp-dir "C:/WINDOWS/TEMP/")
886 ;; (setq pr-gv-command "c:/gs/gsview/gsview32.exe")
887 ;; (setq pr-gs-command "c:/gs/gswin32.exe")
888 ;; (setq pr-gs-switches '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts"))
889 ;; (setq pr-gs-device "mswinpr2")
890 ;; (setq pr-gs-resolution 300)
891 ;; (setq pr-ps-utility 'psnup)
892 ;; (setq pr-ps-utility-alist
893 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " "
894 ;; nil (inherits-from: . no-duplex))
895 ;; ))
896 ;; (setq pr-setting-database
897 ;; '((no-duplex
898 ;; nil nil nil
899 ;; (pr-file-duplex . nil)
900 ;; (pr-file-tumble . nil))
901 ;; ))
902 ;; (pr-update-menus t) ; update now printer and utility menus
904 ;; NOTE: Don't forget to download and install the utilities declared on
905 ;; `pr-ps-utility-alist'.
908 ;; Utilities
909 ;; ---------
911 ;; `printing' package has the following utilities:
913 ;; `pr-setup' Return the current `printing' setup.
915 ;; `lpr-setup' Return the current `lpr' setup.
917 ;; `pr-update-menus' Update utility, PostScript and text printer menus.
919 ;; Below are some URL where you can find good utilities.
921 ;; * For `printing' package:
923 ;; printing `http://www.cpqd.com.br/~vinicius/emacs/printing.el.gz'
924 ;; ps-print `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'
926 ;; * For GNU or Unix system:
928 ;; gs, gv `http://www.gnu.org/software/ghostscript/ghostscript.html'
929 ;; enscript `http://people.ssh.fi/mtr/genscript/'
930 ;; psnup `http://www.dcs.ed.ac.uk/home/ajcd/psutils/index.html'
931 ;; mpage `http://www.mesa.nl/pub/mpage/'
933 ;; * For Windows system:
935 ;; gswin32, gsview32
936 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html'
937 ;; gsprint `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'.
938 ;; enscript `http://people.ssh.fi/mtr/genscript/'
939 ;; psnup `http://www.dcs.ed.ac.uk/home/ajcd/psutils/index.html'
940 ;; redmon `http://www.cs.wisc.edu/~ghost/redmon/'
943 ;; Acknowledgments
944 ;; ---------------
946 ;; Thanks to Lennart Borgman <lennart.borgman.073@student.lu.se> for gsprint
947 ;; suggestion (see tip 5 in section Tips).
949 ;; Thanks to Drew Adams <drew.adams@oracle.com> for suggestions:
950 ;; - directory processing.
951 ;; - `pr-path-alist' variable.
952 ;; - doc fix.
953 ;; - a lot of tests on Windows.
955 ;; Thanks to Fred Labrosse <f.labrosse@maths.bath.ac.uk> for XEmacs tests.
957 ;; Thanks to Klaus Berndl <klaus.berndl@sdm.de> for invaluable help/debugging
958 ;; and for suggestions:
959 ;; - even/odd pages printing.
960 ;; - ghostscript parameters for `pr-ps-printer-alist'.
961 ;; - default printer name.
962 ;; - completion functions.
963 ;; - automagic region detection.
964 ;; - menu entry hiding.
965 ;; - fast fire PostScript printing command.
966 ;; - `pr-path-style' variable.
968 ;; Thanks to Kim F. Storm <storm@filanet.dk> for beta-test and for suggestions:
969 ;; - PostScript Print and PostScript Print Preview merge.
970 ;; - Tools/Printing menu.
971 ;; - replace *-using-preview by *-using-ghostscript.
972 ;; - printer selection.
973 ;; - extra parameters for `pr-ps-printer-alist'.
975 ;; Thanks to:
976 ;; Frederic Corne <frederic.corne@erli.fr> print-nt.el
977 ;; Tom Vogels <tov@ece.cmu.edu> mh-e-init.el
978 ;; Matthew O. Persico <mpersico@erols.com> win32-ps-print.el
979 ;; Volker Franz <volker.franz@tuebingen.mpg.de> ps-print-interface.el
980 ;; And to all people who contributed with them.
983 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
985 ;;; Code:
988 (require 'lpr)
989 (require 'ps-print)
992 (and (string< ps-print-version "6.6.4")
993 (error "`printing' requires `ps-print' package version 6.6.4 or later"))
996 (eval-and-compile
997 (defconst pr-cygwin-system
998 (and ps-windows-system (getenv "OSTYPE")
999 (string-match "cygwin" (getenv "OSTYPE")))))
1002 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1003 ;; To avoid compilation gripes
1006 (eval-and-compile
1008 (or (fboundp 'subst-char-in-string)
1009 (defun subst-char-in-string (fromchar tochar string &optional inplace)
1010 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
1011 Unless optional argument INPLACE is non-nil, return a new string."
1012 (let ((i (length string))
1013 (newstr (if inplace string (copy-sequence string))))
1014 (while (> (setq i (1- i)) 0)
1015 (if (eq (aref newstr i) fromchar)
1016 (aset newstr i tochar)))
1017 newstr)))
1019 ;; GNU Emacs
1020 (defalias 'pr-e-frame-char-height 'frame-char-height)
1021 (defalias 'pr-e-frame-char-width 'frame-char-width)
1022 (defalias 'pr-e-mouse-pixel-position 'mouse-pixel-position)
1023 ;; XEmacs
1024 (defalias 'pr-x-add-submenu 'add-submenu)
1025 (defalias 'pr-x-event-function 'event-function)
1026 (defalias 'pr-x-event-object 'event-object)
1027 (defalias 'pr-x-find-menu-item 'find-menu-item)
1028 (defalias 'pr-x-font-height 'font-height)
1029 (defalias 'pr-x-font-width 'font-width)
1030 (defalias 'pr-x-get-popup-menu-response 'get-popup-menu-response)
1031 (defalias 'pr-x-make-event 'make-event)
1032 (defalias 'pr-x-misc-user-event-p 'misc-user-event-p)
1033 (defalias 'pr-x-relabel-menu-item 'relabel-menu-item)
1034 (defalias 'pr-x-event-x-pixel 'event-x-pixel)
1035 (defalias 'pr-x-event-y-pixel 'event-y-pixel)
1037 (cond
1038 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
1039 (defvar deactivate-mark nil)
1040 (defalias 'pr-f-set-keymap-parents 'set-keymap-parent)
1041 (defalias 'pr-f-set-keymap-name 'ignore)
1042 (defalias 'pr-f-read-string 'read-string)
1043 (defun pr-keep-region-active ()
1044 (setq deactivate-mark nil)))
1046 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
1047 (defvar current-menubar nil)
1048 (defvar current-mouse-event nil)
1049 (defvar zmacs-region-stays nil)
1050 (defalias 'pr-f-set-keymap-parents 'set-keymap-parents)
1051 (defalias 'pr-f-set-keymap-name 'set-keymap-name)
1052 (defun pr-f-read-string (prompt initial history default)
1053 (let ((str (read-string prompt initial)))
1054 (if (and str (not (string= str "")))
1056 default)))
1057 (defun pr-keep-region-active ()
1058 (setq zmacs-region-stays t)))))
1061 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1062 ;; Customization Functions
1065 (defun pr-alist-custom-set (symbol value)
1066 "Set the value of custom variables for printer & utility selection."
1067 (set symbol value)
1068 (and (featurep 'printing) ; update only after printing is loaded
1069 (pr-update-menus t)))
1072 (defun pr-ps-utility-custom-set (symbol value)
1073 "Update utility menu entry."
1074 (set symbol value)
1075 (and (featurep 'printing) ; update only after printing is loaded
1076 (pr-menu-set-utility-title value)))
1079 (defun pr-ps-name-custom-set (symbol value)
1080 "Update `PostScript Printer:' menu entry."
1081 (set symbol value)
1082 (and (featurep 'printing) ; update only after printing is loaded
1083 (pr-menu-set-ps-title value)))
1086 (defun pr-txt-name-custom-set (symbol value)
1087 "Update `Text Printer:' menu entry."
1088 (set symbol value)
1089 (and (featurep 'printing) ; update only after printing is loaded
1090 (pr-menu-set-txt-title value)))
1093 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1094 ;; User Interface (I)
1097 (defgroup printing nil
1098 "Printing Utilities group"
1099 :tag "Printing Utilities"
1100 :link '(emacs-library-link :tag "Source Lisp File" "printing.el")
1101 :prefix "pr-"
1102 :group 'wp
1103 :group 'postscript)
1106 (defcustom pr-path-style
1107 (if (and (not pr-cygwin-system)
1108 ps-windows-system)
1109 'windows
1110 'unix)
1111 "*Specify which path style to use for external commands.
1113 Valid values are:
1115 windows Windows 9x/NT style (\\)
1117 unix Unix style (/)"
1118 :type '(choice :tag "Path style"
1119 (const :tag "Windows 9x/NT Style (\\)" :value windows)
1120 (const :tag "Unix Style (/)" :value unix))
1121 :group 'printing)
1124 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1125 ;; Internal Functions (I)
1128 (defun pr-dosify-file-name (path)
1129 "Replace unix-style directory separator character with dos/windows one."
1130 (interactive "sPath: ")
1131 (if (eq pr-path-style 'windows)
1132 (subst-char-in-string ?/ ?\\ path)
1133 path))
1136 (defun pr-unixify-file-name (path)
1137 "Replace dos/windows-style directory separator character with unix one."
1138 (interactive "sPath: ")
1139 (if (eq pr-path-style 'windows)
1140 (subst-char-in-string ?\\ ?/ path)
1141 path))
1144 (defun pr-standard-file-name (path)
1145 "Ensure the proper directory separator depending on the OS.
1146 That is, if Emacs is running on DOS/Windows, ensure dos/windows-style directory
1147 separator; otherwise, ensure unix-style directory separator."
1148 (if (or pr-cygwin-system ps-windows-system)
1149 (subst-char-in-string ?/ ?\\ path)
1150 (subst-char-in-string ?\\ ?/ path)))
1153 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1154 ;; User Interface (II)
1157 (defcustom pr-path-alist
1158 '((unix PATH)
1159 (cygwin PATH)
1160 (windows PATH))
1161 "*Specify an alist for command paths.
1163 It's used to find commands used for printing package, like gv, gs, gsview.exe,
1164 mpage, print.exe, etc. See also `pr-command' function.
1166 Each element has the form:
1168 (ENTRY DIRECTORY...)
1170 Where:
1172 ENTRY It's a symbol, used to identify this entry.
1173 There must exist at least one of the following entries:
1175 unix this entry is used when Emacs is running on GNU or
1176 Unix system.
1178 cygwin this entry is used when Emacs is running on Windows
1179 95/98/NT/2000 with Cygwin.
1181 windows this entry is used when Emacs is running on Windows
1182 95/98/NT/2000.
1184 DIRECTORY It should be a string or a symbol. If it's a symbol, it should
1185 exist an equal entry in `pr-path-alist'. If it's a string,
1186 it's considered a directory specification.
1188 The directory specification may contain:
1189 $var environment variable expansion
1190 ~/ tilde expansion
1191 ./ current directory
1192 ../ previous directory
1194 For example, let's say the home directory is /home/my and the
1195 current directory is /home/my/dir, so:
1197 THE ENTRY IS EXPANDED TO
1198 ~/entry /home/my/entry
1199 ./entry /home/my/dir/entry
1200 ../entry /home/my/entry
1201 $HOME/entry /home/my/entry
1202 $HOME/~/other/../my/entry /home/my/entry
1204 SPECIAL SYMBOL: If the symbol `PATH' is used in the directory
1205 list and there isn't a `PATH' entry in `pr-path-alist' or the
1206 `PATH' entry has a null directory list, the PATH environment
1207 variable is used.
1209 Examples:
1211 * On GNU or Unix system:
1213 '((unix \".\" \"~/bin\" ghostview mpage PATH)
1214 (ghostview \"$HOME/bin/gsview-dir\")
1215 (mpage \"$HOME/bin/mpage-dir\")
1218 * On Windows system:
1220 '((windows \"c:/applications/executables\" PATH ghostview mpage)
1221 (ghostview \"c:/gs/gsview-dir\")
1222 (mpage \"c:/mpage-dir\")
1224 :type '(repeat
1225 (cons :tag ""
1226 (symbol :tag "Identifier ")
1227 (repeat :tag "Directory List"
1228 (choice :menu-tag "Directory"
1229 :tag "Directory"
1230 (string :value "")
1231 (symbol :value symbol)))))
1232 :group 'printing)
1235 (defcustom pr-txt-name 'default
1236 "*Specify a printer for printing a text file.
1238 The printer name symbol should be defined on `pr-txt-printer-alist' (see it for
1239 documentation).
1241 This variable should be modified by customization engine. If this variable is
1242 modified by other means (for example, a lisp function), use `pr-update-menus'
1243 function (see it for documentation) to update text printer menu."
1244 :type 'symbol
1245 :set 'pr-txt-name-custom-set
1246 :group 'printing)
1249 (defcustom pr-txt-printer-alist
1250 (list (list 'default lpr-command nil
1251 (cond ((boundp 'printer-name) printer-name)
1252 (ps-windows-system "PRN")
1253 (t nil)
1255 ;; Examples:
1256 ;; * On GNU or Unix system:
1257 ;; '((prt_06a "lpr" nil "prt_06a")
1258 ;; (prt_07c nil nil "prt_07c")
1259 ;; )
1260 ;; * On Windows system:
1261 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
1262 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
1263 ;; (PRN "" nil "PRN")
1264 ;; (standard "redpr.exe" nil "")
1265 ;; )
1266 "*Specify an alist of all text printers (text printer database).
1268 The alist element has the form:
1270 (SYMBOL COMMAND SWITCHES NAME)
1272 Where:
1274 SYMBOL It's a symbol to identify a text printer. It's for
1275 `pr-txt-name' variable setting and for menu selection.
1276 Examples:
1277 'prt_06a
1278 'my_printer
1280 COMMAND Name of the program for printing a text file. On MS-DOS and
1281 MS-Windows systems, if the value is an empty string, then Emacs
1282 will write directly to the printer port given by NAME (see text
1283 below), that is, the NAME should be something like \"PRN\" or
1284 \"LPT1:\".
1285 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
1286 COMMAND shouldn't be an empty string.
1287 The programs `print' and `nprint' (the standard print programs
1288 on Windows NT and Novell Netware respectively) are handled
1289 specially, using NAME as the destination for output; any other
1290 program is treated like `lpr' except that an explicit filename
1291 is given as the last argument.
1292 If COMMAND is nil, it's used the default printing program:
1293 `print' for Windows system, `lp' for lp system and `lpr' for
1294 all other systems. See also `pr-path-alist'.
1295 Examples:
1296 \"print\"
1297 \"lpr\"
1298 \"lp\"
1300 SWITCHES List of sexp's to pass as extra options for text printer
1301 program. It is recommended to set NAME (see text below)
1302 instead of including an explicit switch on this list.
1303 Example:
1304 . for lpr
1305 '(\"-#3\" \"-l\")
1308 NAME A string that specifies a text printer name.
1309 On Unix-like systems, a string value should be a name
1310 understood by lpr's -P option (or lp's -d option).
1311 On MS-DOS and MS-Windows systems, it is the name of a printer
1312 device or port. Typical non-default settings would be \"LPT1:\"
1313 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
1314 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
1315 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
1316 printer. You can also set it to a name of a file, in which
1317 case the output gets appended to that file. If you want to
1318 discard the printed output, set this to \"NUL\".
1319 Examples:
1320 . for print.exe
1321 \"/D:\\\\\\\\host\\\\share-name\"
1322 \"LPT1:\"
1323 \"PRN\"
1325 . for lpr or lp
1326 \"share-name\"
1328 This variable should be modified by customization engine. If this variable is
1329 modified by other means (for example, a lisp function), use `pr-update-menus'
1330 function (see it for documentation) to update text printer menu.
1332 Examples:
1334 * On GNU or Unix system:
1336 '((prt_06a \"lpr\" nil \"prt_06a\")
1337 (prt_07c nil nil \"prt_07c\")
1340 * On Windows system:
1342 '((prt_06a \"print\" nil \"/D:\\\\\\\\printers\\\\prt_06a\")
1343 (prt_07c nil nil \"/D:\\\\\\\\printers\\\\prt_07c\")
1344 (PRN \"\" nil \"PRN\")
1345 (standard \"redpr.exe\" nil \"\")
1347 :type '(repeat
1348 (list :tag "Text Printer"
1349 (symbol :tag "Printer Symbol Name")
1350 (string :tag "Printer Command")
1351 (repeat :tag "Printer Switches"
1352 (sexp :tag "Switch" :value ""))
1353 (choice :menu-tag "Printer Name"
1354 :tag "Printer Name"
1355 (const :tag "None" nil)
1356 string)))
1357 :set 'pr-alist-custom-set
1358 :group 'printing)
1361 (defcustom pr-ps-name 'default
1362 "*Specify a printer for printing a PostScript file.
1364 This printer name symbol should be defined on `pr-ps-printer-alist' (see it for
1365 documentation).
1367 This variable should be modified by customization engine. If this variable is
1368 modified by other means (for example, a lisp function), use `pr-update-menus'
1369 function (see it for documentation) to update PostScript printer menu."
1370 :type 'symbol
1371 :set 'pr-ps-name-custom-set
1372 :group 'printing)
1375 (defcustom pr-ps-printer-alist
1376 (list (list 'default lpr-command nil
1377 (cond (ps-windows-system nil)
1378 (ps-lp-system "-d")
1379 (t "-P"))
1380 (or (getenv "PRINTER") (getenv "LPDEST") ps-printer-name)))
1381 ;; Examples:
1382 ;; * On GNU or Unix system:
1383 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
1384 ;; (lps_07c "lpr" nil nil "lps_07c")
1385 ;; (lps_08c nil nil nil "lps_08c")
1386 ;; )
1387 ;; * On Windows system:
1388 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
1389 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
1390 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
1391 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
1392 ;; (LPT1 "" nil "" "LPT1:")
1393 ;; (PRN "" nil "" "PRN")
1394 ;; (standard "redpr.exe" nil "" "")
1395 ;; )
1396 "*Specify an alist for all PostScript printers (PostScript printer database).
1398 The alist element has the form:
1400 (SYMBOL COMMAND SWITCHES PRINTER-SWITCH NAME DEFAULT...)
1402 Where:
1404 SYMBOL It's a symbol to identify a PostScript printer. It's for
1405 `pr-ps-name' variable setting and for menu selection.
1406 Examples:
1407 'prt_06a
1408 'my_printer
1410 COMMAND Name of the program for printing a PostScript file. On MS-DOS
1411 and MS-Windows systems, if the value is an empty string then
1412 Emacs will write directly to the printer port given by NAME
1413 (see text below), that is, the NAME should be something like
1414 \"PRN\" or \"LPT1:\".
1415 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
1416 COMMAND shouldn't be an empty string.
1417 The programs `print' and `nprint' (the standard print programs
1418 on Windows NT and Novell Netware respectively) are handled
1419 specially, using NAME as the destination for output; any other
1420 program is treated like `lpr' except that an explicit filename
1421 is given as the last argument.
1422 If COMMAND is nil, it's used the default printing program:
1423 `print' for Windows system, `lp' for lp system and `lpr' for
1424 all other systems. See also `pr-path-alist'.
1425 Examples:
1426 \"print\"
1427 \"lpr\"
1428 \"lp\"
1429 \"cp\"
1431 SWITCHES List of sexp's to pass as extra options for PostScript printer
1432 program. It is recommended to set NAME (see text below)
1433 instead of including an explicit switch on this list.
1434 Example:
1435 . for lpr
1436 '(\"-#3\" \"-l\")
1439 PRINTER-SWITCH A string that specifies PostScript printer name switch. If
1440 it's necessary to have a space between PRINTER-SWITCH and NAME,
1441 it should be inserted at the end of PRINTER-SWITCH string.
1442 If PRINTER-SWITCH is nil, it's used the default printer name
1443 switch: `/D:' for Windows system, `-d' for lp system and `-P'
1444 for all other systems.
1445 Examples:
1446 . for lpr
1447 \"-P \"
1449 . for lp
1450 \"-d \"
1452 . for print.exe
1453 \"/D:\"
1455 NAME A string that specifies a PostScript printer name.
1456 On Unix-like systems, a string value should be a name
1457 understood by lpr's -P option (or lp's -d option).
1458 On MS-DOS and MS-Windows systems, it is the name of a printer
1459 device or port. Typical non-default settings would be \"LPT1:\"
1460 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
1461 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
1462 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
1463 printer. You can also set it to a name of a file, in which
1464 case the output gets appended to that file. If you want to
1465 discard the printed output, set this to \"NUL\".
1466 Examples:
1467 . for cp.exe
1468 \"\\\\\\\\host\\\\share-name\"
1470 . for print.exe
1471 \"/D:\\\\\\\\host\\\\share-name\"
1472 \"\\\\\\\\host\\\\share-name\"
1473 \"LPT1:\"
1474 \"PRN\"
1476 . for lpr or lp
1477 \"share-name\"
1479 DEFAULT It's a way to set default values when this entry is selected.
1480 It's a cons like:
1482 (VARIABLE . VALUE)
1484 That associates VARIABLE with VALUE. when this entry is
1485 selected, it's executed the following command:
1487 (set VARIABLE (eval VALUE))
1489 Note that VALUE can be any valid lisp expression. So, don't
1490 forget to quote symbols and constant lists.
1491 If VARIABLE is the special keyword `inherits-from:', VALUE must
1492 be a symbol name setting defined in `pr-setting-database' from
1493 which the current setting inherits the context. Take care with
1494 circular inheritance.
1495 Examples:
1496 '(ps-landscape-mode . nil)
1497 '(ps-spool-duplex . t)
1498 '(pr-gs-device . (my-gs-device t))
1500 This variable should be modified by customization engine. If this variable is
1501 modified by other means (for example, a lisp function), use `pr-update-menus'
1502 function (see it for documentation) to update PostScript printer menu.
1504 Examples:
1506 * On GNU or Unix system:
1508 '((lps_06b \"lpr\" nil \"-P\" \"lps_06b\")
1509 (lps_07c \"lpr\" nil nil \"lps_07c\")
1510 (lps_08c nil nil nil \"lps_08c\")
1513 * On Windows system:
1515 '((lps_06a \"print\" nil \"/D:\" \"\\\\\\\\printers\\\\lps_06a\")
1516 (lps_06b \"print\" nil nil \"\\\\\\\\printers\\\\lps_06b\")
1517 (lps_07c \"print\" nil \"\" \"/D:\\\\\\\\printers\\\\lps_07c\")
1518 (lps_08c nil nil nil \"\\\\\\\\printers\\\\lps_08c\")
1519 (LPT1 \"\" nil \"\" \"LPT1:\")
1520 (PRN \"\" nil \"\" \"PRN\")
1521 (standard \"redpr.exe\" nil \"\" \"\")
1523 :type '(repeat
1524 (list
1525 :tag "PostScript Printer"
1526 (symbol :tag "Printer Symbol Name")
1527 (string :tag "Printer Command")
1528 (repeat :tag "Printer Switches"
1529 (sexp :tag "Switch" :value ""))
1530 (choice :menu-tag "Printer Name Switch"
1531 :tag "Printer Name Switch"
1532 (const :tag "None" nil)
1533 string)
1534 (choice :menu-tag "Printer Name"
1535 :tag "Printer Name"
1536 (const :tag "None" nil)
1537 string)
1538 (repeat
1539 :tag "Default Value List"
1540 :inline t
1541 (cons
1542 :tag ""
1543 (choice
1544 :menu-tag "Variable"
1545 :tag "Variable"
1546 (const :tag "Landscape" ps-landscape-mode)
1547 (const :tag "Print Header" ps-print-header)
1548 (const :tag "Print Header Frame" ps-print-header-frame)
1549 (const :tag "Line Number" ps-line-number)
1550 (const :tag "Zebra Stripes" ps-zebra-stripes)
1551 (const :tag "Duplex" ps-spool-duplex)
1552 (const :tag "Tumble" ps-spool-tumble)
1553 (const :tag "Upside-Down" ps-print-upside-down)
1554 (const :tag "PS File Landscape" pr-file-landscape)
1555 (const :tag "PS File Duplex" pr-file-duplex)
1556 (const :tag "PS File Tumble" pr-file-tumble)
1557 (const :tag "Auto Region" pr-auto-region)
1558 (const :tag "Auto Mode" pr-auto-mode)
1559 (const :tag "Ghostscript Device" pr-gs-device)
1560 (const :tag "Ghostscript Resolution" pr-gs-resolution)
1561 (const :tag "inherits-from:" inherits-from:)
1562 (variable :tag "Other"))
1563 (sexp :tag "Value")))
1565 :set 'pr-alist-custom-set
1566 :group 'printing)
1569 (defcustom pr-temp-dir
1570 (pr-dosify-file-name
1571 (if (boundp 'temporary-file-directory)
1572 (symbol-value 'temporary-file-directory)
1573 ;; hacked from `temporary-file-directory' variable in files.el
1574 (file-name-as-directory
1575 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP")
1576 (cond (ps-windows-system "c:/temp")
1577 ((memq system-type '(vax-vms axp-vms)) "SYS$SCRATCH:")
1578 (t "/tmp")
1579 )))))
1580 "*Specify a directory for temporary files during printing."
1581 :type '(directory :tag "Temporary Directory")
1582 :group 'printing)
1585 (defcustom pr-ps-temp-file "prspool.ps"
1586 "*Specify PostScript temporary file name."
1587 :type '(file :tag "PostScript Temporary File Name")
1588 :group 'printing)
1591 (defcustom pr-gv-command
1592 (if ps-windows-system
1593 "gsview32.exe"
1594 "gv")
1595 "*Specify path and name of the gsview/gv utility.
1597 See also `pr-path-alist'."
1598 :type '(string :tag "Ghostview Utility")
1599 :group 'printing)
1602 (defcustom pr-gs-command
1603 (if ps-windows-system
1604 "gswin32.exe"
1605 "gs")
1606 "*Specify path and name of the ghostscript utility.
1608 See also `pr-path-alist'."
1609 :type '(string :tag "Ghostscript Utility")
1610 :group 'printing)
1613 (defcustom pr-gs-switches
1614 (if ps-windows-system
1615 '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts")
1616 '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
1617 "*Specify ghostscript switches. See the documentation on GS for more info.
1619 It's a list of strings, where each string is one or more ghostscript switches.
1621 A note on the gs switches:
1623 -q quiet
1624 -dNOPAUSE don't wait for user intervention
1625 -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts the directories needed for gs
1626 -c quit it's added at the end to terminate gs
1628 To see ghostscript documentation for more information:
1630 * On GNU or Unix system:
1631 - for full documentation, type: man gs
1632 - for brief documentation, type: gs -h
1634 * On Windows system:
1635 - for full documentation, see in a browser the file
1636 c:/gstools/gs5.50/index.html, that is, the file index.html which is
1637 located in the same directory as gswin32.exe.
1638 - for brief documentation, type: gswin32.exe -h"
1639 :type '(repeat (string :tag "Ghostscript Switch"))
1640 :group 'printing)
1643 (defcustom pr-gs-device
1644 (if ps-windows-system
1645 "mswinpr2"
1646 "uniprint")
1647 "*Specify the ghostscript device switch value (-sDEVICE=).
1649 A note on the gs switches:
1651 -sDEVICE=djet500 the printer - works with HP DeskJet 540
1653 See `pr-gs-switches' for documentation.
1654 See also `pr-ps-printer-alist'."
1655 :type '(string :tag "Ghostscript Device")
1656 :group 'printing)
1659 (defcustom pr-gs-resolution 300
1660 "*Specify ghostscript resolution switch value (-r).
1662 A note on the gs switches:
1664 -r300 resolution 300x300
1666 See `pr-gs-switches' for documentation.
1667 See also `pr-ps-printer-alist'."
1668 :type '(integer :tag "Ghostscript Resolution")
1669 :group 'printing)
1672 (defcustom pr-print-using-ghostscript nil
1673 "*Non-nil means print using ghostscript.
1675 This is useful if you don't have a PostScript printer, so you could use the
1676 ghostscript to print a PostScript file.
1678 In GNU or Unix system, if ghostscript is set as a PostScript filter, this
1679 variable should be nil."
1680 :type 'boolean
1681 :group 'printing)
1684 (defcustom pr-faces-p nil
1685 "*Non-nil means print with face attributes."
1686 :type 'boolean
1687 :group 'printing)
1690 (defcustom pr-spool-p nil
1691 "*Non-nil means spool printing in a buffer."
1692 :type 'boolean
1693 :group 'printing)
1696 (defcustom pr-file-landscape nil
1697 "*Non-nil means print PostScript file in landscape orientation."
1698 :type 'boolean
1699 :group 'printing)
1702 (defcustom pr-file-duplex nil
1703 "*Non-nil means print PostScript file in duplex mode."
1704 :type 'boolean
1705 :group 'printing)
1708 (defcustom pr-file-tumble nil
1709 "*Non-nil means print PostScript file in tumble mode.
1711 If tumble is off, produces a printing suitable for binding on the left or
1712 right.
1713 If tumble is on, produces a printing suitable for binding at the top or
1714 bottom."
1715 :type 'boolean
1716 :group 'printing)
1719 (defcustom pr-auto-region t
1720 "*Non-nil means region is automagically detected.
1722 Note that this will only work if you're using transient mark mode.
1724 When this variable is non-nil, the `*-buffer*' commands will behave like
1725 `*-region*' commands, that is, `*-buffer*' commands will print only the region
1726 marked instead of all buffer."
1727 :type 'boolean
1728 :group 'printing)
1731 (defcustom pr-auto-mode t
1732 "*Non-nil means major-mode specific printing is prefered over normal printing.
1734 That is, if current major-mode is declared in `pr-mode-alist', the `*-buffer*'
1735 and `*-region*' commands will behave like `*-mode*' commands; otherwise,
1736 `*-buffer*' commands will print the current buffer and `*-region*' commands
1737 will print the current region."
1738 :type 'boolean
1739 :group 'printing)
1742 (defcustom pr-mode-alist
1743 '((mh-folder-mode ; mh summary buffer
1744 pr-mh-lpr-1 pr-mh-print-1
1746 (ps-article-author ps-article-subject)
1747 ("/pagenumberstring load" pr-article-date)
1750 (mh-letter-mode ; mh letter buffer
1751 pr-mh-lpr-2 pr-mh-print-2
1753 (ps-article-author ps-article-subject)
1754 ("/pagenumberstring load" pr-article-date)
1757 (rmail-summary-mode ; rmail summary buffer
1758 pr-rmail-lpr pr-rmail-print
1760 (ps-article-subject ps-article-author buffer-name)
1764 (rmail-mode ; rmail buffer
1765 pr-rmail-lpr pr-rmail-print
1767 (ps-article-subject ps-article-author buffer-name)
1771 (gnus-summary-mode ; gnus summary buffer
1772 pr-gnus-lpr pr-gnus-print
1774 (ps-article-subject ps-article-author gnus-newsgroup-name)
1778 (gnus-article-mode ; gnus article buffer
1779 pr-gnus-lpr pr-gnus-print
1781 (ps-article-subject ps-article-author gnus-newsgroup-name)
1785 (Info-mode ; Info buffer
1786 pr-mode-lpr pr-mode-print
1788 (ps-info-node ps-info-file)
1792 (vm-mode ; vm mode
1793 pr-vm-lpr pr-vm-print
1795 (ps-article-subject ps-article-author buffer-name)
1800 "*Specify an alist for a major-mode and printing functions.
1802 To customize a major mode printing, just declare the customization in
1803 `pr-mode-alist' and invoke some of `*-mode*' commands. An example for major
1804 mode usage is when you're using gnus (or mh, or rmail, etc.) and you're in the
1805 *Summary* buffer, if you forget to switch to the *Article* buffer before
1806 printing, you'll get a nicely formatted list of article subjects shows up at
1807 the printer. With major mode printing you don't need to switch from gnus
1808 *Summary* buffer first.
1810 The elements have the following form:
1812 (MAJOR-MODE
1813 LPR-PRINT PS-PRINT
1814 HEADER-LINES
1815 LEFT-HEADER
1816 RIGHT-HEADER
1817 KILL-LOCAL-VARIABLE
1818 DEFAULT...)
1820 Where:
1822 MAJOR-MODE It's the major mode symbol.
1824 LPR-PRINT It's a symbol function for text printing. It's invoked with
1825 one argument:
1826 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
1828 Usually LPR-PRINT function prepares the environment or buffer
1829 and then call the function `pr-mode-lpr' which it's used to
1830 process the buffer and send it to text printer.
1832 The `pr-mode-lpr' definition is:
1834 (pr-mode-lpr HEADER-LIST &optional FROM TO)
1836 Where HEADER-LIST is like the argument passed to LPR-PRINT.
1837 FROM and TO are the beginning and end markers, respectively,
1838 for a region. If FROM is nil, it's used (point-min); if TO is
1839 nil, it's used (point-max).
1841 PS-PRINT It's a symbol function for PostScript printing. It's invoked
1842 with 3 arguments: n-up printing, file name and the list:
1843 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
1845 Usually PS-PRINT function prepares the environment or buffer
1846 and then call the function `pr-mode-print' which it's used to
1847 process the buffer and send it to PostScript printer.
1849 The `pr-mode-print' definition is:
1851 (pr-mode-print N-UP FILENAME HEADER-LIST &optional FROM TO)
1853 Where N-UP, FILENAME and HEADER-LIST are like the arguments
1854 passed to PS-PRINT. FROM and TO are the beginning and end
1855 markers, respectively, for a region. If TO is nil, it's used
1856 (point-max).
1858 HEADER-LINES It's the number of header lines; if is nil, it uses
1859 `ps-header-lines' value.
1861 LEFT-HEADER It's the left header part, it's a list of string, variable
1862 symbol or function symbol (with no argument); if is nil, it
1863 uses `ps-left-header' value.
1865 RIGHT-HEADER It's the right header part, it's a list of string, variable
1866 symbol or function symbol (with no argument); if is nil, it
1867 uses `ps-right-header' value.
1869 KILL-LOCAL-VARIABLE
1870 Non-nil means to kill all buffer local variable declared in
1871 DEFAULT (see below).
1873 DEFAULT It's a way to set default values when this entry is selected.
1874 It's a cons like:
1876 (VARIABLE-SYM . VALUE)
1878 That associates VARIABLE-SYM with VALUE. when this entry is
1879 selected, it's executed the following command:
1881 (set (make-local-variable VARIABLE-SYM) (eval VALUE))
1883 Note that VALUE can be any valid lisp expression. So, don't
1884 forget to quote symbols and constant lists.
1885 If VARIABLE is the special keyword `inherits-from:', VALUE must
1886 be a symbol name setting defined in `pr-setting-database' from
1887 which the current setting inherits the context. Take care with
1888 circular inheritance.
1889 Examples:
1890 '(ps-landscape-mode . nil)
1891 '(ps-spool-duplex . t)
1892 '(pr-gs-device . (my-gs-device t))"
1893 :type '(repeat
1894 (list
1895 :tag ""
1896 (symbol :tag "Major Mode")
1897 (function :tag "Text Printing Function")
1898 (function :tag "PS Printing Function")
1899 (choice :menu-tag "Number of Header Lines"
1900 :tag "Number of Header Lines"
1901 (integer :tag "Number")
1902 (const :tag "Default Number" nil))
1903 (repeat :tag "Left Header List"
1904 (choice :menu-tag "Left Header"
1905 :tag "Left Header"
1906 string symbol))
1907 (repeat :tag "Right Header List"
1908 (choice :menu-tag "Right Header"
1909 :tag "Right Header"
1910 string symbol))
1911 (boolean :tag "Kill Local Variable At End")
1912 (repeat
1913 :tag "Default Value List"
1914 :inline t
1915 (cons
1916 :tag ""
1917 (choice
1918 :menu-tag "Variable"
1919 :tag "Variable"
1920 (const :tag "Landscape" ps-landscape-mode)
1921 (const :tag "Print Header" ps-print-header)
1922 (const :tag "Print Header Frame" ps-print-header-frame)
1923 (const :tag "Line Number" ps-line-number)
1924 (const :tag "Zebra Stripes" ps-zebra-stripes)
1925 (const :tag "Duplex" ps-spool-duplex)
1926 (const :tag "Tumble" ps-spool-tumble)
1927 (const :tag "Upside-Down" ps-print-upside-down)
1928 (const :tag "PS File Landscape" pr-file-landscape)
1929 (const :tag "PS File Duplex" pr-file-duplex)
1930 (const :tag "PS File Tumble" pr-file-tumble)
1931 (const :tag "Auto Region" pr-auto-region)
1932 (const :tag "Auto Mode" pr-auto-mode)
1933 (const :tag "Ghostscript Device" pr-gs-device)
1934 (const :tag "Ghostscript Resolution" pr-gs-resolution)
1935 (const :tag "inherits-from:" inherits-from:)
1936 (variable :tag "Other"))
1937 (sexp :tag "Value")))
1939 :group 'printing)
1942 (defcustom pr-ps-utility 'mpage
1943 "*Specify PostScript utility symbol.
1945 This utility symbol should be defined on `pr-ps-utility-alist' (see it for
1946 documentation).
1948 This variable should be modified by customization engine. If this variable is
1949 modified by other means (for example, a lisp function), use `pr-update-menus'
1950 function (see it for documentation) to update PostScript utility menu.
1952 NOTE: Don't forget to download and install the utilities declared on
1953 `pr-ps-utility-alist'."
1954 :type '(symbol :tag "PS File Utility")
1955 :set 'pr-ps-utility-custom-set
1956 :group 'printing)
1959 (defcustom pr-ps-utility-alist
1960 '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
1961 (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
1962 (inherits-from: . no-duplex))
1964 ;; Examples:
1965 ;; * On GNU or Unix system:
1966 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
1967 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
1968 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
1969 ;; )
1970 ;; * On Windows system:
1971 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
1972 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
1973 ;; )
1974 "*Specify an alist for PostScript utility processing (PS utility database).
1976 The alist element has the form:
1978 (SYMBOL UTILITY MUST-SWITCHES PAPERSIZE N-UP LANDSCAPE DUPLEX TUMBLE OUTPUT
1979 SWITCHES DEFAULT...)
1981 Where:
1983 SYMBOL It's a symbol to identify a PostScript utility. It's for
1984 `pr-ps-utility' variable setting and for menu selection.
1985 Examples:
1986 'mpage
1987 'psnup
1989 UTILITY Name of utility for processing a PostScript file.
1990 See also `pr-path-alist'.
1991 Examples:
1992 . for GNU or Unix system:
1993 \"mpage\"
1994 \"psnup -q\"
1996 . for Windows system:
1997 \"c:/psutils/psnup -q\"
1999 MUST-SWITCHES List of sexp's to pass as options to the PostScript utility
2000 program. These options are necessary to process the utility
2001 program and must be placed before any other switches.
2002 Example:
2003 . for psnup:
2004 '(\"-q\")
2006 PAPERSIZE It's a format string to specify paper size switch.
2007 Example:
2008 . for mpage
2009 \"-b%s\"
2011 N-UP It's a format string to specify n-up switch.
2012 Example:
2013 . for psnup
2014 \"-%d\"
2016 LANDSCAPE It's a string to specify landscape switch. If the utility
2017 doesn't have landscape switch, set to nil.
2018 Example:
2019 . for psnup
2020 \"-l\"
2022 DUPLEX It's a string to specify duplex switch. If the utility doesn't
2023 have duplex switch, set to nil.
2024 Example:
2025 . for psnup
2028 TUMBLE It's a string to specify tumble switch. If the utility doesn't
2029 have tumble switch, set to nil.
2030 Example:
2031 . for psnup
2034 OUTPUT It's a string to specify how to generate an output file. Some
2035 utilities accept an output file option, but some others need
2036 output redirection or some other way to specify an output file.
2037 Example:
2038 . for psnup
2039 \" \" ; psnup ... input output
2041 . for mpage
2042 \">\" ; mpage ... input > output
2044 SWITCHES List of sexp's to pass as extra options to the PostScript utility
2045 program.
2046 Example:
2047 . for psnup
2048 '(\"-q\")
2051 DEFAULT It's a way to set default values when this entry is selected.
2052 It's a cons like:
2054 (VARIABLE . VALUE)
2056 That associates VARIABLE with VALUE. when this entry is
2057 selected, it's executed the following command:
2059 (set VARIABLE (eval VALUE))
2061 Note that VALUE can be any valid lisp expression. So, don't
2062 forget to quote symbols and constant lists.
2063 If VARIABLE is the special keyword `inherits-from:', VALUE must
2064 be a symbol name setting defined in `pr-setting-database' from
2065 which the current setting inherits the context. Take care with
2066 circular inheritance.
2067 Examples:
2068 '(pr-file-landscape . nil)
2069 '(pr-file-duplex . t)
2070 '(pr-gs-device . (my-gs-device t))
2072 This variable should be modified by customization engine. If this variable is
2073 modified by other means (for example, a lisp function), use `pr-update-menus'
2074 function (see it for documentation) to update PostScript utility menu.
2076 NOTE: Don't forget to download and install the utilities declared on
2077 `pr-ps-utility-alist'.
2079 Examples:
2081 * On GNU or Unix system:
2083 '((mpage \"mpage\" nil \"-b%s\" \"-%d\" \"-l\" \"-t\" \"-T\" \">\" nil)
2084 (psnup \"psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" nil
2085 (pr-file-duplex . nil) (pr-file-tumble . nil))
2088 * On Windows system:
2090 '((psnup \"c:/psutils/psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \"
2091 nil (pr-file-duplex . nil) (pr-file-tumble . nil))
2093 :type '(repeat
2094 (list :tag "PS File Utility"
2095 (symbol :tag "Utility Symbol")
2096 (string :tag "Utility Name")
2097 (repeat :tag "Must Utility Switches"
2098 (sexp :tag "Switch" :value ""))
2099 (choice :menu-tag "Paper Size"
2100 :tag "Paper Size"
2101 (const :tag "No Paper Size" nil)
2102 (string :tag "Paper Size Format"))
2103 (choice :menu-tag "N-Up"
2104 :tag "N-Up"
2105 (const :tag "No N-Up" nil)
2106 (string :tag "N-Up Format"))
2107 (choice :menu-tag "Landscape"
2108 :tag "Landscape"
2109 (const :tag "No Landscape" nil)
2110 (string :tag "Landscape Switch"))
2111 (choice :menu-tag "Duplex"
2112 :tag "Duplex"
2113 (const :tag "No Duplex" nil)
2114 (string :tag "Duplex Switch"))
2115 (choice :menu-tag "Tumble"
2116 :tag "Tumble"
2117 (const :tag "No Tumble" nil)
2118 (string :tag "Tumble Switch"))
2119 (string :tag "Output Separator")
2120 (repeat :tag "Utility Switches"
2121 (sexp :tag "Switch" :value ""))
2122 (repeat
2123 :tag "Default Value List"
2124 :inline t
2125 (cons
2126 :tag ""
2127 (choice
2128 :menu-tag "Variable"
2129 :tag "Variable"
2130 (const :tag "PS File Landscape" pr-file-landscape)
2131 (const :tag "PS File Duplex" pr-file-duplex)
2132 (const :tag "PS File Tumble" pr-file-tumble)
2133 (const :tag "Ghostscript Device" pr-gs-device)
2134 (const :tag "Ghostscript Resolution" pr-gs-resolution)
2135 (const :tag "inherits-from:" inherits-from:)
2136 (variable :tag "Other"))
2137 (sexp :tag "Value")))
2139 :set 'pr-alist-custom-set
2140 :group 'printing)
2143 (defcustom pr-menu-lock t
2144 "*Non-nil means menu is locked while selecting toggle options.
2146 See also `pr-menu-char-height' and `pr-menu-char-width'."
2147 :type 'boolean
2148 :group 'printing)
2151 (defcustom pr-menu-char-height
2152 (cond ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
2153 (pr-e-frame-char-height))
2154 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
2155 (pr-x-font-height (face-font 'default))))
2156 "*Specify menu char height in pixels.
2158 This variable is used to guess which vertical position should be locked the
2159 menu, so don't forget to adjust it if menu position is not ok.
2161 See also `pr-menu-lock' and `pr-menu-char-width'."
2162 :type 'integer
2163 :group 'printing)
2166 (defcustom pr-menu-char-width
2167 (cond ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
2168 (pr-e-frame-char-width))
2169 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
2170 (pr-x-font-width (face-font 'default))))
2171 "*Specify menu char width in pixels.
2173 This variable is used to guess which horizontal position should be locked the
2174 menu, so don't forget to adjust it if menu position is not ok.
2176 See also `pr-menu-lock' and `pr-menu-char-height'."
2177 :type 'integer
2178 :group 'printing)
2181 (defcustom pr-setting-database
2182 '((no-duplex ; setting symbol name
2183 nil nil nil ; inherits local kill-local
2184 (pr-file-duplex . nil) ; settings
2185 (pr-file-tumble . nil))
2187 "*Specify an alist for settings in general.
2189 The elements have the following form:
2191 (SYMBOL INHERITS LOCAL KILL-LOCAL SETTING...)
2193 Where:
2195 SYMBOL It's a symbol to identify the setting group.
2197 INHERITS Specify the inheritance for SYMBOL group. It's a symbol name
2198 setting from which the current setting inherits the context.
2199 If INHERITS is nil, means that there is no inheritance.
2200 This is a simple inheritance mechanism.
2202 Let's see an example to illustrate the inheritance mechanism:
2204 (setq pr-setting-database
2205 '((no-duplex ; setting symbol name
2206 nil ; inherits
2207 nil nil ; local kill-local
2208 (pr-file-duplex . nil) ; settings
2209 (pr-file-tumble . nil)
2211 (no-duplex-and-landscape ; setting symbol name
2212 no-duplex ; inherits
2213 nil nil ; local kill-local
2214 (pr-file-landscape . nil) ; settings
2217 The example above has two setting groups: no-duplex and
2218 no-duplex-and-landscape. When setting no-duplex is activated
2219 through `inherits-from:' (see `pr-ps-utility', `pr-mode-alist'
2220 and `pr-ps-printer-alist'), the variables pr-file-duplex and
2221 pr-file-tumble are both set to nil.
2223 Now when setting no-duplex-and-landscape is activated through
2224 `inherits-from:', the variable pr-file-landscape is set to nil
2225 and also the settings for no-duplex are done, because
2226 no-duplex-and-landscape inherits settings from no-duplex.
2228 Take care with circular inheritance. It's an error if circular
2229 inheritance happens.
2231 LOCAL Non-nil means that all settings for SYMBOL group will be
2232 declared local buffer.
2234 KILL-LOCAL Non-nil means that all settings for SYMBOL group will be
2235 killed at end. It has effect only when LOCAL is non-nil.
2237 SETTING It's a cons like:
2239 (VARIABLE . VALUE)
2241 That associates VARIABLE with VALUE. when this entry is
2242 selected, it's executed the following command:
2244 * If LOCAL is non-nil:
2245 (set (make-local-variable VARIABLE) (eval VALUE))
2247 * If LOCAL is nil:
2248 (set VARIABLE (eval VALUE))
2250 Note that VALUE can be any valid lisp expression. So, don't
2251 forget to quote symbols and constant lists.
2252 This setting is ignored if VARIABLE is equal to keyword
2253 `inherits-from:'.
2254 Examples:
2255 '(ps-landscape-mode . nil)
2256 '(ps-spool-duplex . t)
2257 '(pr-gs-device . (my-gs-device t))"
2258 :type '(repeat
2259 (list
2260 :tag ""
2261 (symbol :tag "Setting Name")
2262 (choice :menu-tag "Inheritance"
2263 :tag "Inheritance"
2264 (const :tag "No Inheritance" nil)
2265 (symbol :tag "Inherits From"))
2266 (boolean :tag "Local Buffer Setting")
2267 (boolean :tag "Kill Local Variable At End")
2268 (repeat
2269 :tag "Setting List"
2270 :inline t
2271 (cons
2272 :tag ""
2273 (choice
2274 :menu-tag "Variable"
2275 :tag "Variable"
2276 (const :tag "Landscape" ps-landscape-mode)
2277 (const :tag "Print Header" ps-print-header)
2278 (const :tag "Print Header Frame" ps-print-header-frame)
2279 (const :tag "Line Number" ps-line-number)
2280 (const :tag "Zebra Stripes" ps-zebra-stripes)
2281 (const :tag "Duplex" ps-spool-duplex)
2282 (const :tag "Tumble" ps-spool-tumble)
2283 (const :tag "Upside-Down" ps-print-upside-down)
2284 (const :tag "PS File Landscape" pr-file-landscape)
2285 (const :tag "PS File Duplex" pr-file-duplex)
2286 (const :tag "PS File Tumble" pr-file-tumble)
2287 (const :tag "Auto Region" pr-auto-region)
2288 (const :tag "Auto Mode" pr-auto-mode)
2289 (const :tag "Ghostscript Device" pr-gs-device)
2290 (const :tag "Ghostscript Resolution" pr-gs-resolution)
2291 (variable :tag "Other"))
2292 (sexp :tag "Value")))
2294 :group 'printing)
2297 (defcustom pr-visible-entry-list
2298 '(postscript text postscript-options postscript-process printing help)
2299 "*Specify a list of Printing menu visible entries.
2301 Valid values with the corresponding menu parts are:
2303 +------------------------------+
2304 | Printing Interface |
2305 +------------------------------+
2306 `postscript' | PostScript Preview >|
2307 | PostScript Print >|
2308 | PostScript Printer: name >|
2309 +------------------------------+
2310 `text' | Printify >|
2311 | Print >|
2312 | Text Printer: name >|
2313 +------------------------------+
2314 `postscript-options' |[ ] Landscape |
2315 |[ ] Print Header |
2316 |[ ] Print Header Frame |
2317 |[ ] Line Number |
2318 |[ ] Zebra Stripes |
2319 |[ ] Duplex |
2320 |[ ] Tumble |
2321 |[ ] Upside-Down |
2322 | Print All Pages >|
2323 +------------------------------+
2324 `postscript-process' |[ ] Spool Buffer |
2325 |[ ] Print with faces |
2326 |[ ] Print via Ghostscript |
2327 +------------------------------+
2328 `printing' |[ ] Auto Region |
2329 |[ ] Auto Mode |
2330 |[ ] Menu Lock |
2331 +------------------------------+
2332 `help' | Customize >|
2333 | Show Settings >|
2334 | Help |
2335 +------------------------------+
2337 Any other value is ignored."
2338 :type '(repeat :tag "Menu Visible Part"
2339 (choice :menu-tag "Menu Part"
2340 :tag "Menu Part"
2341 (const postscript)
2342 (const text)
2343 (const postscript-options)
2344 (const postscript-process)
2345 (const printing)
2346 (const help)))
2347 :group 'printing)
2350 (defcustom pr-delete-temp-file t
2351 "*Non-nil means delete temporary files.
2353 Set `pr-delete-temp-file' to nil, if the following message (or a similar)
2354 happens when printing:
2356 Error: could not open \"c:\\temp\\prspool.ps\" for reading."
2357 :type 'boolean
2358 :group 'printing)
2361 (defcustom pr-list-directory nil
2362 "*Non-nil means list directory when processing a directory.
2364 That is, any subdirectories (and the superdirectory) of the directory (given as
2365 argument of functions below) are also printed (as dired-mode listings).
2367 It's used by `pr-ps-directory-preview', `pr-ps-directory-using-ghostscript',
2368 `pr-ps-directory-print', `pr-ps-directory-ps-print', `pr-printify-directory'
2369 and `pr-txt-directory'."
2370 :type 'boolean
2371 :group 'printing)
2374 (defcustom pr-buffer-name "*Printing Interface*"
2375 "*Specify the name of the buffer interface for printing package.
2377 It's used by `pr-interface'."
2378 :type 'string
2379 :group 'printing)
2382 (defcustom pr-buffer-name-ignore
2383 (list (regexp-quote pr-buffer-name) ; ignore printing interface buffer
2384 "^ .*$") ; ignore invisible buffers
2385 "*Specify a regexp list for buffer names to be ignored in interface buffer.
2387 NOTE: Case is important for matching, that is, `case-fold-search' is always
2388 nil.
2390 It's used by `pr-interface'."
2391 :type '(repeat (regexp :tag "Buffer Name Regexp"))
2392 :group 'printing)
2395 (defcustom pr-buffer-verbose t
2396 "*Non-nil means to be verbose when editing a field in interface buffer.
2398 It's used by `pr-interface'."
2399 :type 'boolean
2400 :group 'printing)
2403 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2404 ;; Internal Variables
2407 (defvar pr-txt-command nil
2408 "Name of program for printing a text file.
2409 See `pr-txt-printer-alist'.")
2412 (defvar pr-txt-switches nil
2413 "List of sexp's to pass as extra options to the text printer program.
2414 See `pr-txt-printer-alist'.")
2417 (defvar pr-txt-printer nil
2418 "Specify text printer name.
2419 See `pr-txt-printer-alist'.")
2422 (defvar pr-ps-command nil
2423 "Name of program for printing a PostScript file.
2424 See `pr-ps-printer-alist'.")
2427 (defvar pr-ps-switches nil
2428 "List of sexp's to pass as extra options to the PostScript printer program.
2429 See `pr-ps-printer-alist'.")
2432 (defvar pr-ps-printer-switch nil
2433 "Specify PostScript printer name switch.
2434 See `pr-ps-printer-alist'.")
2437 (defvar pr-ps-printer nil
2438 "Specify PostScript printer name.
2439 See `pr-ps-printer-alist'.")
2442 (defvar pr-menu-bar nil
2443 "Specify Printing menu-bar entry.")
2446 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2447 ;; Keys & Menus
2450 (defmacro pr-xemacs-global-menubar (&rest body)
2451 `(save-excursion
2452 (let ((temp (get-buffer-create (make-temp-name " *Temp"))))
2453 ;; be sure to access global menubar
2454 (set-buffer temp)
2455 ,@body
2456 (kill-buffer temp))))
2459 (defsubst pr-visible-p (key)
2460 (memq key pr-visible-entry-list))
2463 (defsubst pr-mode-alist-p ()
2464 (cdr (assq major-mode pr-mode-alist)))
2467 (defsubst pr-auto-mode-p ()
2468 (and pr-auto-mode (pr-mode-alist-p)))
2471 (defsubst pr-using-ghostscript-p ()
2472 (and pr-print-using-ghostscript (not pr-spool-p)))
2475 (eval-and-compile
2476 (defun pr-get-symbol (name)
2477 ;; Recent versions of easy-menu downcase names before interning them.
2478 (and (fboundp 'easy-menu-name-match)
2479 (setq name (downcase name)))
2480 (or (intern-soft name)
2481 (make-symbol name)))
2483 (cond
2484 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
2485 (defsubst pr-region-active-p ()
2486 (and pr-auto-region transient-mark-mode mark-active)))
2488 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
2489 (defvar zmacs-region-stays nil) ; to avoid compilation gripes
2490 (defsubst pr-region-active-p ()
2491 (and pr-auto-region (not zmacs-region-stays) (ps-mark-active-p)))))
2494 (defconst pr-menu-spec
2495 (cond
2496 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
2498 ["Printing Interface" pr-interface
2499 :help "Use buffer interface instead of menu interface"]
2500 "--"
2501 ("PostScript Preview" :visible (pr-visible-p 'postscript)
2502 :help "Preview PostScript instead of sending to printer"
2503 ("Directory" :active (not pr-spool-p)
2504 ["1-up" (pr-ps-directory-preview 1 nil nil t) t]
2505 ["2-up" (pr-ps-directory-preview 2 nil nil t) t]
2506 ["4-up" (pr-ps-directory-preview 4 nil nil t) t]
2507 ["Other..." (pr-ps-directory-preview nil nil nil t)
2508 :keys "\\[pr-ps-buffer-preview]"])
2509 ("Buffer" :active (not pr-spool-p)
2510 ["1-up" (pr-ps-buffer-preview 1 t) t]
2511 ["2-up" (pr-ps-buffer-preview 2 t) t]
2512 ["4-up" (pr-ps-buffer-preview 4 t) t]
2513 ["Other..." (pr-ps-buffer-preview nil t)
2514 :keys "\\[pr-ps-buffer-preview]"])
2515 ("Region" :active (and (not pr-spool-p) (ps-mark-active-p))
2516 ["1-up" (pr-ps-region-preview 1 t) t]
2517 ["2-up" (pr-ps-region-preview 2 t) t]
2518 ["4-up" (pr-ps-region-preview 4 t) t]
2519 ["Other..." (pr-ps-region-preview nil t)
2520 :keys "\\[pr-ps-region-preview]"])
2521 ("Mode" :active (and (not pr-spool-p) (pr-mode-alist-p))
2522 ["1-up" (pr-ps-mode-preview 1 t) t]
2523 ["2-up" (pr-ps-mode-preview 2 t) t]
2524 ["4-up" (pr-ps-mode-preview 4 t) t]
2525 ["Other..." (pr-ps-mode-preview nil t)
2526 :keys "\\[pr-ps-mode-preview]"])
2527 ("File"
2528 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview)
2529 :keys "\\[pr-ps-file-preview]"
2530 :help "Preview PostScript file"]
2531 "--"
2532 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
2533 :help "Select PostScript utility"]
2534 "--"
2535 ["1-up..." (pr-ps-file-up-preview 1 t t) pr-ps-utility-alist]
2536 ["2-up..." (pr-ps-file-up-preview 2 t t) pr-ps-utility-alist]
2537 ["4-up..." (pr-ps-file-up-preview 4 t t) pr-ps-utility-alist]
2538 ["Other..." (pr-ps-file-up-preview nil t t)
2539 :keys "\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist]
2540 "--"
2541 ["Landscape" pr-toggle-file-landscape
2542 :style toggle :selected pr-file-landscape
2543 :help "Toggle landscape for PostScript file"
2544 :active pr-ps-utility-alist]
2545 ["Duplex" pr-toggle-file-duplex
2546 :style toggle :selected pr-file-duplex
2547 :help "Toggle duplex for PostScript file"
2548 :active pr-ps-utility-alist]
2549 ["Tumble" pr-toggle-file-tumble
2550 :style toggle :selected pr-file-tumble
2551 :help "Toggle tumble for PostScript file"
2552 :active (and pr-file-duplex pr-ps-utility-alist)])
2553 ["Despool..." (call-interactively 'pr-despool-preview)
2554 :active pr-spool-p :keys "\\[pr-despool-preview]"
2555 :help "Despool PostScript buffer to printer or file (C-u)"])
2556 ("PostScript Print" :visible (pr-visible-p 'postscript)
2557 :help "Send PostScript to printer or file (C-u)"
2558 ("Directory"
2559 ["1-up" (pr-ps-directory-ps-print 1 nil nil t) t]
2560 ["2-up" (pr-ps-directory-ps-print 2 nil nil t) t]
2561 ["4-up" (pr-ps-directory-ps-print 4 nil nil t) t]
2562 ["Other..." (pr-ps-directory-ps-print nil nil nil t)
2563 :keys "\\[pr-ps-buffer-ps-print]"])
2564 ("Buffer"
2565 ["1-up" (pr-ps-buffer-ps-print 1 t) t]
2566 ["2-up" (pr-ps-buffer-ps-print 2 t) t]
2567 ["4-up" (pr-ps-buffer-ps-print 4 t) t]
2568 ["Other..." (pr-ps-buffer-ps-print nil t)
2569 :keys "\\[pr-ps-buffer-ps-print]"])
2570 ("Region" :active (ps-mark-active-p)
2571 ["1-up" (pr-ps-region-ps-print 1 t) t]
2572 ["2-up" (pr-ps-region-ps-print 2 t) t]
2573 ["4-up" (pr-ps-region-ps-print 4 t) t]
2574 ["Other..." (pr-ps-region-ps-print nil t)
2575 :keys "\\[pr-ps-region-ps-print]"])
2576 ("Mode" :active (pr-mode-alist-p)
2577 ["1-up" (pr-ps-mode-ps-print 1 t) t]
2578 ["2-up" (pr-ps-mode-ps-print 2 t) t]
2579 ["4-up" (pr-ps-mode-ps-print 4 t) t]
2580 ["Other..." (pr-ps-mode-ps-print nil t)
2581 :keys "\\[pr-ps-mode-ps-print]"])
2582 ("File"
2583 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print)
2584 :keys "\\[pr-ps-file-ps-print]"
2585 :help "Send PostScript file to printer"]
2586 "--"
2587 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
2588 :help "Select PostScript utility"]
2589 "--"
2590 ["1-up..." (pr-ps-file-up-ps-print 1 t t) pr-ps-utility-alist]
2591 ["2-up..." (pr-ps-file-up-ps-print 2 t t) pr-ps-utility-alist]
2592 ["4-up..." (pr-ps-file-up-ps-print 4 t t) pr-ps-utility-alist]
2593 ["Other..." (pr-ps-file-up-ps-print nil t t)
2594 :keys "\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist]
2595 "--"
2596 ["Landscape" pr-toggle-file-landscape
2597 :style toggle :selected pr-file-landscape
2598 :help "Toggle landscape for PostScript file"
2599 :active pr-ps-utility-alist]
2600 ["Duplex" pr-toggle-file-duplex
2601 :style toggle :selected pr-file-duplex
2602 :help "Toggle duplex for PostScript file"
2603 :active pr-ps-utility-alist]
2604 ["Tumble" pr-toggle-file-tumble
2605 :style toggle :selected pr-file-tumble
2606 :help "Toggle tumble for PostScript file"
2607 :active (and pr-file-duplex pr-ps-utility-alist)])
2608 ["Despool..." (call-interactively 'pr-despool-ps-print)
2609 :active pr-spool-p :keys "\\[pr-despool-ps-print]"
2610 :help "Despool PostScript buffer to printer or file (C-u)"])
2611 ["PostScript Printers" pr-update-menus
2612 :active pr-ps-printer-alist :included (pr-visible-p 'postscript)
2613 :help "Select PostScript printer"]
2614 "--"
2615 ("Printify" :visible (pr-visible-p 'text)
2616 :help "Replace non-printing chars with printable representations."
2617 ["Directory" pr-printify-directory t]
2618 ["Buffer" pr-printify-buffer t]
2619 ["Region" pr-printify-region (ps-mark-active-p)])
2620 ("Print" :visible (pr-visible-p 'text)
2621 :help "Send text to printer"
2622 ["Directory" pr-txt-directory t]
2623 ["Buffer" pr-txt-buffer t]
2624 ["Region" pr-txt-region (ps-mark-active-p)]
2625 ["Mode" pr-txt-mode (pr-mode-alist-p)])
2626 ["Text Printers" pr-update-menus
2627 :active pr-txt-printer-alist :included (pr-visible-p 'text)
2628 :help "Select text printer"]
2629 "--"
2630 ["Landscape" pr-toggle-landscape
2631 :style toggle :selected ps-landscape-mode
2632 :included (pr-visible-p 'postscript-options)]
2633 ["Print Header" pr-toggle-header
2634 :style toggle :selected ps-print-header
2635 :included (pr-visible-p 'postscript-options)]
2636 ["Print Header Frame" pr-toggle-header-frame
2637 :style toggle :selected ps-print-header-frame :active ps-print-header
2638 :included (pr-visible-p 'postscript-options)]
2639 ["Line Number" pr-toggle-line
2640 :style toggle :selected ps-line-number
2641 :included (pr-visible-p 'postscript-options)]
2642 ["Zebra Stripes" pr-toggle-zebra
2643 :style toggle :selected ps-zebra-stripes
2644 :included (pr-visible-p 'postscript-options)]
2645 ["Duplex" pr-toggle-duplex
2646 :style toggle :selected ps-spool-duplex
2647 :included (pr-visible-p 'postscript-options)]
2648 ["Tumble" pr-toggle-tumble
2649 :style toggle :selected ps-spool-tumble :active ps-spool-duplex
2650 :included (pr-visible-p 'postscript-options)]
2651 ["Upside-Down" pr-toggle-upside-down
2652 :style toggle :selected ps-print-upside-down
2653 :included (pr-visible-p 'postscript-options)]
2654 ("Print All Pages" :visible (pr-visible-p 'postscript-options)
2655 :help "Select odd/even pages/sheets to print"
2656 ["All Pages" (pr-even-or-odd-pages nil)
2657 :style radio :selected (eq ps-even-or-odd-pages nil)]
2658 ["Even Pages" (pr-even-or-odd-pages 'even-page)
2659 :style radio :selected (eq ps-even-or-odd-pages 'even-page)]
2660 ["Odd Pages" (pr-even-or-odd-pages 'odd-page)
2661 :style radio :selected (eq ps-even-or-odd-pages 'odd-page)]
2662 ["Even Sheets" (pr-even-or-odd-pages 'even-sheet)
2663 :style radio :selected (eq ps-even-or-odd-pages 'even-sheet)]
2664 ["Odd Sheets" (pr-even-or-odd-pages 'odd-sheet)
2665 :style radio :selected (eq ps-even-or-odd-pages 'odd-sheet)])
2666 "--"
2667 ["Spool Buffer" pr-toggle-spool
2668 :style toggle :selected pr-spool-p
2669 :included (pr-visible-p 'postscript-process)
2670 :help "Toggle PostScript spooling"]
2671 ["Print with faces" pr-toggle-faces
2672 :style toggle :selected pr-faces-p
2673 :included (pr-visible-p 'postscript-process)
2674 :help "Toggle PostScript printing with faces"]
2675 ["Print via Ghostscript" pr-toggle-ghostscript
2676 :style toggle :selected pr-print-using-ghostscript
2677 :included (pr-visible-p 'postscript-process)
2678 :help "Toggle PostScript generation using ghostscript"]
2679 "--"
2680 ["Auto Region" pr-toggle-region
2681 :style toggle :selected pr-auto-region
2682 :included (pr-visible-p 'printing)]
2683 ["Auto Mode" pr-toggle-mode
2684 :style toggle :selected pr-auto-mode
2685 :included (pr-visible-p 'printing)]
2686 ["Menu Lock" pr-toggle-lock
2687 :style toggle :selected pr-menu-lock
2688 :included (pr-visible-p 'printing)]
2689 "--"
2690 ("Customize" :visible (pr-visible-p 'help)
2691 ["printing" pr-customize t]
2692 ["ps-print" ps-print-customize t]
2693 ["lpr" lpr-customize t])
2694 ("Show Settings" :visible (pr-visible-p 'help)
2695 ["printing" pr-show-pr-setup t]
2696 ["ps-print" pr-show-ps-setup t]
2697 ["lpr" pr-show-lpr-setup t])
2698 ["Help" pr-help :active t :included (pr-visible-p 'help)]
2702 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
2703 ;; Menu mapping:
2704 ;; unfortunately XEmacs doesn't support :active or :visible
2705 ;; for submenus, only for items.
2706 ;; It uses :included instead of :active or :visible.
2707 ;; Also, XEmacs doesn't support :help tag.
2709 ["Printing Interface" pr-interface]
2710 "--"
2711 ("PostScript Preview" :included (pr-visible-p 'postscript)
2712 ("Directory" :included (not pr-spool-p)
2713 ["1-up" (pr-ps-directory-preview 1 nil nil t) t]
2714 ["2-up" (pr-ps-directory-preview 2 nil nil t) t]
2715 ["4-up" (pr-ps-directory-preview 4 nil nil t) t]
2716 ["Other..." (pr-ps-directory-preview nil nil nil t)
2717 :keys "\\[pr-ps-buffer-preview]"])
2718 ("Buffer" :included (not pr-spool-p)
2719 ["1-up" (pr-ps-buffer-preview 1 t) t]
2720 ["2-up" (pr-ps-buffer-preview 2 t) t]
2721 ["4-up" (pr-ps-buffer-preview 4 t) t]
2722 ["Other..." (pr-ps-buffer-preview nil t)
2723 :keys "\\[pr-ps-buffer-preview]"])
2724 ("Region" :included (and (not pr-spool-p) (ps-mark-active-p))
2725 ["1-up" (pr-ps-region-preview 1 t) t]
2726 ["2-up" (pr-ps-region-preview 2 t) t]
2727 ["4-up" (pr-ps-region-preview 4 t) t]
2728 ["Other..." (pr-ps-region-preview nil t)
2729 :keys "\\[pr-ps-region-preview]"])
2730 ("Mode" :included (and (not pr-spool-p) (pr-mode-alist-p))
2731 ["1-up" (pr-ps-mode-preview 1 t) t]
2732 ["2-up" (pr-ps-mode-preview 2 t) t]
2733 ["4-up" (pr-ps-mode-preview 4 t) t]
2734 ["Other..." (pr-ps-mode-preview nil t)
2735 :keys "\\[pr-ps-mode-preview]"])
2736 ("File"
2737 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview)
2738 :keys "\\[pr-ps-file-preview]"]
2739 "--"
2740 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist]
2741 "--"
2742 ["1-up..." (pr-ps-file-up-preview 1 t t) pr-ps-utility-alist]
2743 ["2-up..." (pr-ps-file-up-preview 2 t t) pr-ps-utility-alist]
2744 ["4-up..." (pr-ps-file-up-preview 4 t t) pr-ps-utility-alist]
2745 ["Other..." (pr-ps-file-up-preview nil t t)
2746 :keys "\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist]
2747 "--"
2748 ["Landscape" pr-toggle-file-landscape
2749 :style toggle :selected pr-file-landscape
2750 :active pr-ps-utility-alist]
2751 ["Duplex" pr-toggle-file-duplex
2752 :style toggle :selected pr-file-duplex
2753 :active pr-ps-utility-alist]
2754 ["Tumble" pr-toggle-file-tumble
2755 :style toggle :selected pr-file-tumble
2756 :active (and pr-file-duplex pr-ps-utility-alist)])
2757 ["Despool..." (call-interactively 'pr-despool-preview)
2758 :active pr-spool-p :keys "\\[pr-despool-preview]"])
2759 ("PostScript Print" :included (pr-visible-p 'postscript)
2760 ("Directory"
2761 ["1-up" (pr-ps-directory-ps-print 1 nil nil t) t]
2762 ["2-up" (pr-ps-directory-ps-print 2 nil nil t) t]
2763 ["4-up" (pr-ps-directory-ps-print 4 nil nil t) t]
2764 ["Other..." (pr-ps-directory-ps-print nil nil nil t)
2765 :keys "\\[pr-ps-buffer-ps-print]"])
2766 ("Buffer"
2767 ["1-up" (pr-ps-buffer-ps-print 1 t) t]
2768 ["2-up" (pr-ps-buffer-ps-print 2 t) t]
2769 ["4-up" (pr-ps-buffer-ps-print 4 t) t]
2770 ["Other..." (pr-ps-buffer-ps-print nil t)
2771 :keys "\\[pr-ps-buffer-ps-print]"])
2772 ("Region" :included (ps-mark-active-p)
2773 ["1-up" (pr-ps-region-ps-print 1 t) t]
2774 ["2-up" (pr-ps-region-ps-print 2 t) t]
2775 ["4-up" (pr-ps-region-ps-print 4 t) t]
2776 ["Other..." (pr-ps-region-ps-print nil t)
2777 :keys "\\[pr-ps-region-ps-print]"])
2778 ("Mode" :included (pr-mode-alist-p)
2779 ["1-up" (pr-ps-mode-ps-print 1 t) t]
2780 ["2-up" (pr-ps-mode-ps-print 2 t) t]
2781 ["4-up" (pr-ps-mode-ps-print 4 t) t]
2782 ["Other..." (pr-ps-mode-ps-print nil t)
2783 :keys "\\[pr-ps-mode-ps-print]"])
2784 ("File"
2785 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print)
2786 :keys "\\[pr-ps-file-ps-print]"]
2787 "--"
2788 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist]
2789 "--"
2790 ["1-up..." (pr-ps-file-up-ps-print 1 t t) pr-ps-utility-alist]
2791 ["2-up..." (pr-ps-file-up-ps-print 2 t t) pr-ps-utility-alist]
2792 ["4-up..." (pr-ps-file-up-ps-print 4 t t) pr-ps-utility-alist]
2793 ["Other..." (pr-ps-file-up-ps-print nil t t)
2794 :keys "\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist]
2795 "--"
2796 ["Landscape" pr-toggle-file-landscape
2797 :style toggle :selected pr-file-landscape
2798 :active pr-ps-utility-alist]
2799 ["Duplex" pr-toggle-file-duplex
2800 :style toggle :selected pr-file-duplex
2801 :active pr-ps-utility-alist]
2802 ["Tumble" pr-toggle-file-tumble
2803 :style toggle :selected pr-file-tumble
2804 :active (and pr-file-duplex pr-ps-utility-alist)])
2805 ["Despool..." (call-interactively 'pr-despool-ps-print)
2806 :active pr-spool-p :keys "\\[pr-despool-ps-print]"])
2807 ["PostScript Printers" pr-update-menus
2808 :active pr-ps-printer-alist :included (pr-visible-p 'postscript)]
2809 "--"
2810 ("Printify" :included (pr-visible-p 'text)
2811 ["Directory" pr-printify-directory t]
2812 ["Buffer" pr-printify-buffer t]
2813 ["Region" pr-printify-region (ps-mark-active-p)])
2814 ("Print" :included (pr-visible-p 'text)
2815 ["Directory" pr-txt-directory t]
2816 ["Buffer" pr-txt-buffer t]
2817 ["Region" pr-txt-region (ps-mark-active-p)]
2818 ["Mode" pr-txt-mode (pr-mode-alist-p)])
2819 ["Text Printers" pr-update-menus
2820 :active pr-txt-printer-alist :included (pr-visible-p 'text)]
2821 "--"
2822 ["Landscape" pr-toggle-landscape
2823 :style toggle :selected ps-landscape-mode
2824 :included (pr-visible-p 'postscript-options)]
2825 ["Print Header" pr-toggle-header
2826 :style toggle :selected ps-print-header
2827 :included (pr-visible-p 'postscript-options)]
2828 ["Print Header Frame" pr-toggle-header-frame
2829 :style toggle :selected ps-print-header-frame :active ps-print-header
2830 :included (pr-visible-p 'postscript-options)]
2831 ["Line Number" pr-toggle-line
2832 :style toggle :selected ps-line-number
2833 :included (pr-visible-p 'postscript-options)]
2834 ["Zebra Stripes" pr-toggle-zebra
2835 :style toggle :selected ps-zebra-stripes
2836 :included (pr-visible-p 'postscript-options)]
2837 ["Duplex" pr-toggle-duplex
2838 :style toggle :selected ps-spool-duplex
2839 :included (pr-visible-p 'postscript-options)]
2840 ["Tumble" pr-toggle-tumble
2841 :style toggle :selected ps-spool-tumble :active ps-spool-duplex
2842 :included (pr-visible-p 'postscript-options)]
2843 ["Upside-Down" pr-toggle-upside-down
2844 :style toggle :selected ps-print-upside-down
2845 :included (pr-visible-p 'postscript-options)]
2846 ("Print All Pages" :included (pr-visible-p 'postscript-options)
2847 ["All Pages" (pr-even-or-odd-pages nil)
2848 :style radio :selected (eq ps-even-or-odd-pages nil)]
2849 ["Even Pages" (pr-even-or-odd-pages 'even-page)
2850 :style radio :selected (eq ps-even-or-odd-pages 'even-page)]
2851 ["Odd Pages" (pr-even-or-odd-pages 'odd-page)
2852 :style radio :selected (eq ps-even-or-odd-pages 'odd-page)]
2853 ["Even Sheets" (pr-even-or-odd-pages 'even-sheet)
2854 :style radio :selected (eq ps-even-or-odd-pages 'even-sheet)]
2855 ["Odd Sheets" (pr-even-or-odd-pages 'odd-sheet)
2856 :style radio :selected (eq ps-even-or-odd-pages 'odd-sheet)])
2857 "--"
2858 ["Spool Buffer" pr-toggle-spool
2859 :style toggle :selected pr-spool-p
2860 :included (pr-visible-p 'postscript-process)]
2861 ["Print with faces" pr-toggle-faces
2862 :style toggle :selected pr-faces-p
2863 :included (pr-visible-p 'postscript-process)]
2864 ["Print via Ghostscript" pr-toggle-ghostscript
2865 :style toggle :selected pr-print-using-ghostscript
2866 :included (pr-visible-p 'postscript-process)]
2867 "--"
2868 ["Auto Region" pr-toggle-region
2869 :style toggle :selected pr-auto-region
2870 :included (pr-visible-p 'printing)]
2871 ["Auto Mode" pr-toggle-mode
2872 :style toggle :selected pr-auto-mode
2873 :included (pr-visible-p 'printing)]
2874 ["Menu Lock" pr-toggle-lock
2875 :style toggle :selected pr-menu-lock
2876 :included (pr-visible-p 'printing)]
2877 "--"
2878 ("Customize" :included (pr-visible-p 'help)
2879 ["printing" pr-customize t]
2880 ["ps-print" ps-print-customize t]
2881 ["lpr" lpr-customize t])
2882 ("Show Settings" :included (pr-visible-p 'help)
2883 ["printing" pr-show-pr-setup t]
2884 ["ps-print" pr-show-ps-setup t]
2885 ["lpr" pr-show-lpr-setup t])
2886 ["Help" pr-help :active t :included (pr-visible-p 'help)]
2891 (cond
2892 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
2893 ;; Menu binding
2894 (require 'easymenu)
2895 ;; Replace existing "print" item by "Printing" item.
2896 ;; If you're changing this file, you'll load it a second,
2897 ;; third... time, but "print" item exists only in the first load.
2898 (defvar pr-menu-print-item "print")
2899 (cond
2900 ;; Emacs 20
2901 ((string< emacs-version "21.")
2902 (easy-menu-change '("tools") "Printing" pr-menu-spec pr-menu-print-item)
2903 (when pr-menu-print-item
2904 (easy-menu-remove-item nil '("tools") pr-menu-print-item)
2905 (setq pr-menu-print-item nil
2906 pr-menu-bar (vector 'menu-bar 'tools
2907 (pr-get-symbol "Printing")))))
2908 ;; Emacs 21
2909 (pr-menu-print-item
2910 (easy-menu-change '("files") "Print" pr-menu-spec "print-buffer")
2911 (let ((items '("print-buffer" "print-region"
2912 "ps-print-buffer-faces" "ps-print-region-faces"
2913 "ps-print-buffer" "ps-print-region")))
2914 (while items
2915 (easy-menu-remove-item nil '("files") (car items))
2916 (setq items (cdr items)))
2917 (setq pr-menu-print-item nil
2918 pr-menu-bar (vector 'menu-bar 'files
2919 (pr-get-symbol "Print")))))
2921 (easy-menu-change '("files") "Print" pr-menu-spec)))
2923 ;; Key binding
2924 (global-set-key [print] 'pr-ps-fast-fire)
2925 (global-set-key [M-print] 'pr-ps-mode-using-ghostscript)
2926 (global-set-key [C-print] 'pr-txt-fast-fire))
2929 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
2930 ;; Menu binding
2931 (pr-xemacs-global-menubar
2932 (pr-x-add-submenu nil (cons "Printing" pr-menu-spec) "Apps"))
2934 ;; Key binding
2935 (global-set-key 'f22 'pr-ps-fast-fire)
2936 (global-set-key '(meta f22) 'pr-ps-mode-using-ghostscript)
2937 (global-set-key '(control f22) 'pr-txt-fast-fire))))
2940 ;;; You can also use something like:
2941 ;;;(global-set-key "\C-ci" 'pr-interface)
2942 ;;;(global-set-key "\C-cbp" 'pr-ps-buffer-print)
2943 ;;;(global-set-key "\C-cbx" 'pr-ps-buffer-preview)
2944 ;;;(global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
2945 ;;;(global-set-key "\C-crp" 'pr-ps-region-print)
2946 ;;;(global-set-key "\C-crx" 'pr-ps-region-preview)
2947 ;;;(global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
2950 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2951 ;; Help Message
2954 (defconst pr-help-message
2955 (concat "printing.el version " pr-version
2956 " ps-print.el version " ps-print-version
2957 "\n\n
2958 Menu Layout
2959 -----------
2961 The `printing' menu (Tools/Printing or File/Print) has the following layout:
2963 +-----------------------------+
2964 A 0 | Printing Interface |
2965 +-----------------------------+ +-A---------+ +-B------+
2966 I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
2967 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
2968 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
2969 +-----------------------------+ |Mode >|-- B |Other...|
2970 II 4 | Printify >|-----\\ |File >|--\\ +--------+
2971 5 | Print >|---\\ | |Despool... | |
2972 6 | Text Printer: name >|-\\ | | +-----------+ |
2973 +-----------------------------+ | | | +---------+ +------------+
2974 III 7 |[ ]Landscape | | | \\-|Directory| | No Prep... | Ia
2975 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
2976 9 |[ ]Print Header Frame | | | |Region | | name >|- C
2977 10 |[ ]Line Number | | | +---------+ +------------+
2978 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
2979 12 |[ ]Duplex | | \\---|Directory| | 2-up... |
2980 13 |[ ]Tumble | \\--\\ |Buffer | | 4-up... |
2981 14 |[ ]Upside-Down | | |Region | | Other... |
2982 15 | Print All Pages >|--\\ | |Mode | +------------+
2983 +-----------------------------+ | | +---------+ |[ ]Landscape| Id
2984 IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
2985 17 |[ ]Print with faces | | \\--|( )name A| |[ ]Tumble | If
2986 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
2987 +-----------------------------+ | |... |
2988 V 19 |[ ]Auto Region | | |(*)name |
2989 20 |[ ]Auto Mode | | |... |
2990 21 |[ ]Menu Lock | | +---------+ +--------------+
2991 +-----------------------------+ \\------------------|(*)All Pages |
2992 VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
2993 23 | Show Settings >|-------|printing| |( )Odd Pages |
2994 24 | Help | |ps-print| |( )Even Sheets|
2995 +-----------------------------+ |lpr | |( )Odd Sheets |
2996 +--------+ +--------------+
2998 See `pr-visible-entry-list' for hiding some parts of the menu.
3000 The menu has the following sections:
3002 A. Interface:
3004 0. You can use a buffer interface instead of menus. It looks like the
3005 customization buffer. Basically, it has the same options found in the
3006 menu and some extra options, all this on a buffer.
3008 I. PostScript printing:
3010 1. You can generate a PostScript file (if you type C-u before activating
3011 menu) or PostScript temporary file for a directory, a buffer, a region
3012 or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
3013 after file generation, ghostview is activated using the file generated
3014 as argument. This option is disabled if spooling is on (option 16).
3015 Also, if you already have a PostScript file you can preview it.
3016 Instead of previewing each buffer, region or major mode at once, you
3017 can save temporarily the PostScript code generated in a buffer and
3018 preview it later. The option `Despool...' despools the PostScript
3019 spooling buffer in a temporary file and uses ghostview to preview it.
3020 If you type C-u before choosing this option, the PostScript code
3021 generated is saved in a file instead of saving in a temporary file. To
3022 spool the PostScript code generated you need to turn on the option 16.
3023 The option `Despool...' is enabled if spooling is on (option 16).
3025 NOTE 1: It's possible to customize a major mode printing, just declare
3026 the customization in `pr-mode-alist' and invoke some of
3027 `*-mode*' commands or select Mode option in Printing menu. An
3028 example for major mode usage is when you're using gnus (or mh,
3029 or rmail, etc.) and you're in the *Summary* buffer, if you
3030 forget to switch to the *Article* buffer before printing,
3031 you'll get a nicely formatted list of article subjects shows
3032 up at the printer. With major mode printing you don't need to
3033 switch from gnus *Summary* buffer first.
3035 NOTE 2: There are the following options for PostScript file processing:
3036 Ia. Print the file *No Preprocessing*, that is, send it
3037 directly to PostScript printer.
3038 Ib. PostScript utility processing selection.
3039 See `pr-ps-utility-alist' and `pr-setting-database' for
3040 documentation.
3041 Ic. Do n-up processing before printing.
3042 Id. Toggle on/off landscape for PostScript file processing.
3043 Ie. Toggle on/off duplex for PostScript file processing.
3044 If. Toggle on/off tumble for PostScript file processing.
3046 NOTE 3: Don't forget to download and install the utilities declared on
3047 `pr-ps-utility-alist'.
3049 2. Operate the same way as option 1, but it sends directly the PostScript
3050 code (or put in a file, if you've typed C-u) or it uses ghostscript to
3051 print the PostScript file generated. It depends on option 18, if it's
3052 turned on, it uses ghostscript; otherwise, it sends directly to
3053 printer. If spooling is on (option 16), the PostScript code is saved
3054 temporarily in a buffer instead of printing it or saving it in a file.
3055 Also, if you already have a PostScript file you can print it.
3056 Instead of printing each buffer, region or major mode at once, you can
3057 save temporarily the PostScript code generated in a buffer and print it
3058 later. The option `Despool...' despools the PostScript spooling buffer
3059 directly on a printer. If you type C-u before choosing this option,
3060 the PostScript code generated is saved in a file instead of sending it to
3061 the printer. To spool the PostScript code generated you need to turn on
3062 option 16. This option is enabled if spooling is on (option 16).
3063 See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
3065 3. You can select a new PostScript printer to send PostScript code
3066 generated. For selection it's used all PostScript printers defined
3067 in `pr-ps-printer-alist' variable (see it for documentation).
3068 See also `pr-setting-database'.
3070 II. Text printing:
3072 4. If you have control characters (character code from \\000 to \\037) in a
3073 buffer and you want to print them in a text printer, select this
3074 option. All control characters in your buffer or region will be
3075 replaced by a printable representation. The printable representations
3076 use ^ (for ASCII control characters) or hex. The characters tab,
3077 linefeed, space, return and formfeed are not affected.
3078 You don't need to select this option if you use any option of section
3079 I, the PostScript engine treats control characters properly.
3081 5. If you want to print a directory, buffer, region or major mode in a
3082 text printer, select this option. See also the NOTE 1 on option 1.
3084 6. You can select a new text printer to send text generated. For
3085 selection it's used all text printers defined in `pr-txt-printer-alist'
3086 variable (see it for documentation).
3087 See also `pr-setting-database'.
3089 III. PostScript page toggle options:
3091 7. If you want a PostScript landscape printing, turn on this option.
3093 8. If you want to have a header in each page in your PostScript code,
3094 turn on this option.
3096 9. If you want to draw a gaudy frame around the header, turn on this
3097 option. This option is enabled if print header is on (option 8).
3099 10. If you want that the line number is printed in your PostScript code,
3100 turn on this option.
3102 11. If you want background zebra stripes in your PostScript code, turn on
3103 this option.
3105 12. If you want a duplex printing and your PostScript printer has this
3106 feature, turn on this option.
3108 13. If you turned on duplex printing, you can choose if you want to have a
3109 printing suitable for binding on the left or right (tumble off), or to
3110 have a printing suitable for binding at top or bottom (tumble on).
3111 This option is enabled if duplex is on (option 12).
3113 14. If you want a PostScript upside-down printing, turn on this option.
3115 15. With this option, you can choose if you want to print all pages, odd
3116 pages, even pages, odd sheets or even sheets.
3117 See also `ps-even-or-odd-pages'.
3119 IV. PostScript processing toggle options:
3121 16. If you want to spool the PostScript code generated, turn on this
3122 option. To spool the PostScript code generated use option 2. You can
3123 despool later by choosing option 1 or 2, sub-option `Despool...'.
3125 17. If you use colors in your buffers and want to see these colors on your
3126 PostScript code generated, turn on this option. If you have a
3127 black/white PostScript printer, these colors are displayed in gray
3128 scale by PostScript printer interpreter.
3130 18. If you don't have a PostScript printer to send PostScript files, turn
3131 on this option. When this option is on, the ghostscript is used to
3132 print PostScript files. In GNU or Unix system, if ghostscript is set
3133 as a PostScript filter, you don't need to turn on this option.
3135 V. Printing customization:
3137 19. If you want that region is automagically detected, turn on this
3138 option. Note that this will only work if you're using transient mark
3139 mode. When this option is on, the `*-buffer*' commands will behave
3140 like `*-region*' commands, that is, `*-buffer*' commands will print
3141 only the region marked instead of all buffer.
3143 20. Turn this option on if you want that when current major-mode is
3144 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
3145 behave like `*-mode*' commands.
3147 21. If you want that Printing menu stays open while you are setting
3148 toggle options, turn on this option. The variables
3149 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
3150 menu position, so don't forget to adjust these variables if menu
3151 position is not ok.
3153 VI. Customization:
3155 22. Besides all options in section III, IV and V, you can customize much
3156 more PostScript options in `ps-print' option. Or you can customize
3157 some `lpr' options for text printing. Or customize `printing'
3158 options.
3160 23. Show current settings for `printing', `ps-print' or `lpr'.
3162 24. Quick help for printing menu layout.
3164 "Printing help message.")
3167 (defconst pr-interface-help-message
3168 (concat "printing.el version " pr-version
3169 " ps-print.el version " ps-print-version
3170 "\n\n
3171 The printing interface buffer has the same functionality as the printing menu.
3172 The major difference is that the states (like sending PostScript generated to a
3173 file, n-up printing, etc.) are set and saved between priting buffer
3174 activation. Also, the landscape, duplex and tumble values are the same for
3175 PostScript file and directory/buffer/region/mode processing; using menu, there
3176 are different value sets for PostScript file and directory/buffer/region/mode
3177 processing.
3179 The printing interface buffer has the following sections:
3181 1. Print:
3183 Here you can choose to print/preview a buffer, a directory or a PostScript
3184 file:
3186 1a. Buffer:
3188 * Buffer List:
3189 Select a buffer from the current buffer list.
3191 * Region:
3192 If it's on, this means that the selected buffer has an active region,
3193 so you can turn on/off, as you wish.
3194 If it's off when a buffer is selected, this means that the selected
3195 buffer has no active region, so it'll not be possible to turn it on.
3196 If you want to process the region, let this option on.
3197 If you want to process the whole buffer, let this option off.
3199 * Mode:
3200 If it's on, this means that the selected buffer major mode is declared
3201 for major mode processing, so you can turn on/off, as you wish.
3202 If it's off when a buffer is selected, this means that the selected
3203 buffer major mode isn't declared for major mode processing, so it'll
3204 not be possible to turn it on.
3205 If you want the major mode processing, let this option on.
3206 If you don't want the major mode processing, let this option off.
3208 NOTE 1: It's possible to customize a major mode printing, just declare
3209 the customization in `pr-mode-alist' and invoke some of
3210 `*-mode*' commands or select Mode option in Printing menu. An
3211 example for major mode usage is when you're using gnus (or mh,
3212 or rmail, etc.) and you're in the *Summary* buffer, if you
3213 forget to switch to the *Article* buffer before printing,
3214 you'll get a nicely formatted list of article subjects shows
3215 up at the printer. With major mode printing you don't need to
3216 switch from gnus *Summary* buffer first.
3218 1b. Directory:
3220 * Directory:
3221 Specify a valid directory path.
3223 * File Regexp:
3224 Specify a file name regexp. All file names in the directory that
3225 match with regexp will be printed/previewed. An empty file name
3226 regexp means to print/preview all files in the directory.
3228 * List Directory Entry:
3229 If it's turned on, list directory entries besides file entries.
3231 1c. PostScript file:
3233 * PostScript File:
3234 Specify an existent PostScript file to print/preview.
3236 * PostScript Utility:
3237 Select a PostScript utility.
3238 See `pr-ps-utility-alist' and `pr-setting-database' for documentation.
3240 NOTE 2: Don't forget to download and install the utilities declared on
3241 `pr-ps-utility-alist'.
3243 * No Preprocessing:
3244 If it's turned on, don't use the PostScript utility to preprocess the
3245 PostScript file before printing/previewing.
3247 2. PostScript printer:
3249 * PostScript Printer:
3250 You can select a new PostScript printer to send PostScript code
3251 generated. For selection it's used all PostScript printers defined
3252 in `pr-ps-printer-alist' variable (see it for documentation).
3253 See also `pr-setting-database'.
3255 * Despool:
3256 If spooling is on, you can turn it on/off, as you wish.
3257 If spooling is off, it'll not be possible to turn it on.
3258 If it's turned on, specify to despools the PostScript spooling buffer in
3259 a temporary file or in the selected PostScript file when
3260 printing/previewing.
3262 * Preview:
3263 Preview the PostScript generated.
3265 * Print:
3266 Print the PostScript generated.
3268 * Quit:
3269 Quit from printing interface buffer.
3271 * Send to Printer/Temporary File:
3272 If it's turned on, the PostScript generated is sent directly to
3273 PostScript printer or, for previewing, to a temporary file.
3275 * Send to File:
3276 Specify a file name to send the PostScript generated.
3278 * N-Up:
3279 Specify n-up printing.
3281 3. Text printer:
3283 * Text Printer:
3284 Select a new text printer to send text generated. For selection it's used
3285 all text printers defined in `pr-txt-printer-alist' variable (see it for
3286 documentation). See also `pr-setting-database'.
3288 * Printify:
3289 If you have control characters (character code from \\000 to \\037) in a
3290 buffer and you want to print them in a text printer, select this
3291 option. All control characters in your buffer or region will be
3292 replaced by a printable representation. The printable representations
3293 use ^ (for ASCII control characters) or hex. The characters tab,
3294 linefeed, space, return and formfeed are not affected.
3295 You don't need to select this option if you use any option of section
3296 I, the PostScript engine treats control characters properly.
3298 * Print:
3299 To print a directory, buffer, region or major mode in a
3300 text printer, select this option. See also the NOTE 1 on section 1.
3302 * Quit:
3303 Quit from printing interface buffer.
3305 4. Settings:
3307 There are 3 setting columns:
3309 4a. First column (left column):
3311 * Landscape:
3312 PostScript landscape printing.
3314 * Print Header:
3315 To have a header in each page in your PostScript code.
3317 * Print Header Frame:
3318 To draw a gaudy frame around the header.
3320 * Line Number:
3321 The line number is printed in your PostScript code.
3323 * Zebra Stripes:
3324 Background zebra stripes in your PostScript code.
3326 * Duplex:
3327 Duplex printing (if your PostScript printer has this feature).
3329 * Tumble:
3330 If duplex printing is on, you can choose if you want to have a
3331 printing suitable for binding on the left or right (tumble off), or to
3332 have a printing suitable for binding at top or bottom (tumble on).
3334 * Upside-Down:
3335 PostScript upside-down printing.
3337 4b. Second column (middle column):
3339 * Auto Region:
3340 If you want that region is automagically detected, turn on this
3341 option. Note that this will only work if you're using transient mark
3342 mode. When this option is on, the `*-buffer*' commands will behave
3343 like `*-region*' commands, that is, `*-buffer*' commands will print
3344 only the region marked instead of all buffer.
3346 * Auto Mode:
3347 Turn this option on if you want that when current major-mode is
3348 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
3349 behave like `*-mode*' commands.
3351 * Menu Lock:
3352 If you want that Printing menu stays open while you are setting
3353 toggle options, turn on this option. The variables
3354 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
3355 menu position, so don't forget to adjust these variables if menu
3356 position is not ok.
3358 * Spool Buffer:
3359 To spool the PostScript code generated. You can despool later by
3360 setting Despool option on PostScript printer section.
3362 * Print with faces:
3363 If you use colors in your buffers and want to see these colors on your
3364 PostScript code generated, turn on this option. If you have a
3365 black/white PostScript printer, these colors are displayed in gray
3366 scale by PostScript printer interpreter.
3368 * Print via Ghostscript:
3369 If you don't have a PostScript printer to send PostScript files, turn
3370 on this option. When this option is on, the ghostscript is used to
3371 print PostScript files. In GNU or Unix system, if ghostscript is set
3372 as a PostScript filter, you don't need to turn on this option.
3374 * Parity Page Menu:
3375 To print all pages, odd pages, even pages, odd sheets or even sheets.
3376 See also `ps-even-or-odd-pages'.
3378 4c. Third column (right column):
3380 * Verbose:
3381 That is, to be verbose when editing a field in interface buffer.
3383 5. Customize:
3385 Besides all options in section 4, you can customize much more PostScript
3386 options in `ps-print' option. Or you can customize some `lpr' options for
3387 text printing. Or customize `printing' options.
3389 6. Show settings:
3391 Show current settings for `printing', `ps-print' or `lpr'.
3393 7. Help:
3395 Quick help for printing interface buffer and printing menu layout. You can
3396 also quit the printing interface buffer or kill all printing help buffer.
3398 "Printing buffer interface help message.")
3401 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3402 ;; Commands
3405 ;;;###autoload
3406 (defun pr-interface (&optional buffer)
3407 "Activate the printing interface buffer.
3409 If BUFFER is nil, the current buffer is used for printing.
3411 For more information, type \\[pr-interface-help]."
3412 (interactive)
3413 (save-excursion
3414 (set-buffer (or buffer (current-buffer)))
3415 (pr-create-interface)))
3418 ;;;###autoload
3419 (defun pr-ps-directory-preview (n-up dir file-regexp &optional filename)
3420 "Preview directory using ghostview.
3422 Interactively, the command prompts for N-UP printing number, a directory, a
3423 file name regexp for matching and, when you use a prefix argument (C-u), the
3424 command prompts the user for a file name, and saves the PostScript image in
3425 that file instead of saving it in a temporary file.
3427 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3428 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3429 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3430 save the image in a temporary file. If FILENAME is a string, save the
3431 PostScript image in a file with that name. If FILENAME is t, prompts for a
3432 file name.
3434 See also documentation for `pr-list-directory'."
3435 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS preview dir")))
3436 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3437 (pr-prompt "PS preview dir"))
3438 (setq filename (pr-ps-file filename))
3439 (pr-ps-file-list n-up dir file-regexp filename)
3440 (or pr-spool-p
3441 (pr-ps-file-preview filename)))
3444 ;;;###autoload
3445 (defun pr-ps-directory-using-ghostscript (n-up dir file-regexp &optional filename)
3446 "Print directory using PostScript through ghostscript.
3448 Interactively, the command prompts for N-UP printing number, a directory, a
3449 file name regexp for matching and, when you use a prefix argument (C-u), the
3450 command prompts the user for a file name, and saves the PostScript image in
3451 that file instead of saving it in a temporary file.
3453 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3454 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3455 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3456 save the image in a temporary file. If FILENAME is a string, save the
3457 PostScript image in a file with that name. If FILENAME is t, prompts for a
3458 file name.
3460 See also documentation for `pr-list-directory'."
3461 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir GS")))
3462 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3463 (pr-prompt "PS print dir GS"))
3464 (let ((file (pr-ps-file filename)))
3465 (pr-ps-file-list n-up dir file-regexp file)
3466 (pr-ps-file-using-ghostscript file)
3467 (or filename (pr-delete-file file))))
3470 ;;;###autoload
3471 (defun pr-ps-directory-print (n-up dir file-regexp &optional filename)
3472 "Print directory using PostScript printer.
3474 Interactively, the command prompts for N-UP printing number, a directory, a
3475 file name regexp for matching and, when you use a prefix argument (C-u), the
3476 command prompts the user for a file name, and saves the PostScript image in
3477 that file instead of saving it in a temporary file.
3479 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3480 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3481 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3482 save the image in a temporary file. If FILENAME is a string, save the
3483 PostScript image in a file with that name. If FILENAME is t, prompts for a
3484 file name.
3486 See also documentation for `pr-list-directory'."
3487 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir")))
3488 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3489 (pr-prompt "PS print dir"))
3490 (let ((file (pr-ps-file filename)))
3491 (pr-ps-file-list n-up dir file-regexp file)
3492 (pr-ps-file-print file)
3493 (or filename (pr-delete-file file))))
3496 ;;;###autoload
3497 (defun pr-ps-directory-ps-print (n-up dir file-regexp &optional filename)
3498 "Print directory using PostScript printer or through ghostscript.
3500 It depends on `pr-print-using-ghostscript'.
3502 Interactively, the command prompts for N-UP printing number, a directory, a
3503 file name regexp for matching and, when you use a prefix argument (C-u), the
3504 command prompts the user for a file name, and saves the PostScript image in
3505 that file instead of saving it in a temporary file.
3507 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3508 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3509 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3510 save the image in a temporary file. If FILENAME is a string, save the
3511 PostScript image in a file with that name. If FILENAME is t, prompts for a
3512 file name.
3514 See also documentation for `pr-list-directory'."
3515 (interactive (pr-interactive-ps-dir-args
3516 (pr-prompt (pr-prompt-gs "PS print dir"))))
3517 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3518 (pr-prompt (pr-prompt-gs "PS print dir")))
3519 (if (pr-using-ghostscript-p)
3520 (pr-ps-directory-using-ghostscript n-up dir file-regexp filename)
3521 (pr-ps-directory-print n-up dir file-regexp filename)))
3524 ;;;###autoload
3525 (defun pr-ps-buffer-preview (n-up &optional filename)
3526 "Preview buffer using ghostview.
3528 Interactively, the command prompts for N-UP printing number and, when you use a
3529 prefix argument (C-u), the command prompts the user for a file name, and saves
3530 the PostScript image in that file instead of saving it in a temporary file.
3532 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3533 argument FILENAME is treated as follows: if it's nil, save the image in a
3534 temporary file. If FILENAME is a string, save the PostScript image in a file
3535 with that name. If FILENAME is t, prompts for a file name."
3536 (interactive (pr-interactive-n-up-file (pr-prompt "PS preview")))
3537 (if (pr-auto-mode-p)
3538 (pr-ps-mode-preview n-up filename)
3539 (pr-ps-preview (pr-region-active-symbol) n-up filename
3540 (pr-region-active-string "PS preview"))))
3543 ;;;###autoload
3544 (defun pr-ps-buffer-using-ghostscript (n-up &optional filename)
3545 "Print buffer using PostScript through ghostscript.
3547 Interactively, the command prompts for N-UP printing number and, when you use a
3548 prefix argument (C-u), the command prompts the user for a file name, and saves
3549 the PostScript image in that file instead of sending it to the printer.
3551 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3552 argument FILENAME is treated as follows: if it's nil, send the image to the
3553 printer. If FILENAME is a string, save the PostScript image in a file with
3554 that name. If FILENAME is t, prompts for a file name."
3555 (interactive (pr-interactive-n-up-file (pr-prompt "PS print GS")))
3556 (if (pr-auto-mode-p)
3557 (pr-ps-mode-using-ghostscript n-up filename)
3558 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
3559 (pr-region-active-string "PS print GS"))))
3562 ;;;###autoload
3563 (defun pr-ps-buffer-print (n-up &optional filename)
3564 "Print buffer using PostScript printer.
3566 Interactively, the command prompts for N-UP printing number and, when you use a
3567 prefix argument (C-u), the command prompts the user for a file name, and saves
3568 the PostScript image in that file instead of sending it to the printer.
3570 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3571 argument FILENAME is treated as follows: if it's nil, send the image to the
3572 printer. If FILENAME is a string, save the PostScript image in a file with
3573 that name. If FILENAME is t, prompts for a file name."
3574 (interactive (pr-interactive-n-up-file (pr-prompt "PS print")))
3575 (if (pr-auto-mode-p)
3576 (pr-ps-mode-print n-up filename)
3577 (pr-ps-print (pr-region-active-symbol) n-up filename
3578 (pr-region-active-string "PS print"))))
3581 ;;;###autoload
3582 (defun pr-ps-buffer-ps-print (n-up &optional filename)
3583 "Print buffer using PostScript printer or through ghostscript.
3585 It depends on `pr-print-using-ghostscript'.
3587 Interactively, the command prompts for N-UP printing number and, when you use a
3588 prefix argument (C-u), the command prompts the user for a file name, and saves
3589 the PostScript image in that file instead of sending it to the printer.
3591 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3592 argument FILENAME is treated as follows: if it's nil, send the image to the
3593 printer. If FILENAME is a string, save the PostScript image in a file with
3594 that name. If FILENAME is t, prompts for a file name."
3595 (interactive (pr-interactive-n-up-file
3596 (pr-prompt (pr-prompt-gs "PS print"))))
3597 (cond ((pr-auto-mode-p)
3598 (pr-ps-mode-ps-print n-up filename))
3599 ((pr-using-ghostscript-p)
3600 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
3601 (pr-region-active-string "PS print GS")))
3603 (pr-ps-print (pr-region-active-symbol) n-up filename
3604 (pr-region-active-string "PS print")))))
3607 ;;;###autoload
3608 (defun pr-ps-region-preview (n-up &optional filename)
3609 "Preview region using ghostview.
3611 See also `pr-ps-buffer-preview'."
3612 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS preview")))
3613 (if (pr-auto-mode-p)
3614 (let ((pr-auto-region t))
3615 (pr-ps-mode-preview n-up filename))
3616 (pr-ps-preview 'region n-up filename "PS preview region")))
3619 ;;;###autoload
3620 (defun pr-ps-region-using-ghostscript (n-up &optional filename)
3621 "Print region using PostScript through ghostscript.
3623 See also `pr-ps-buffer-using-ghostscript'."
3624 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print GS")))
3625 (if (pr-auto-mode-p)
3626 (let ((pr-auto-region t))
3627 (pr-ps-mode-using-ghostscript n-up filename))
3628 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region")))
3631 ;;;###autoload
3632 (defun pr-ps-region-print (n-up &optional filename)
3633 "Print region using PostScript printer.
3635 See also `pr-ps-buffer-print'."
3636 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print")))
3637 (if (pr-auto-mode-p)
3638 (let ((pr-auto-region t))
3639 (pr-ps-mode-print n-up filename))
3640 (pr-ps-print 'region n-up filename "PS print region")))
3643 ;;;###autoload
3644 (defun pr-ps-region-ps-print (n-up &optional filename)
3645 "Print region using PostScript printer or through ghostscript.
3647 See also `pr-ps-buffer-ps-print'."
3648 (interactive (pr-interactive-n-up-file
3649 (pr-prompt-region (pr-prompt-gs "PS print"))))
3650 (cond ((pr-auto-mode-p)
3651 (let ((pr-auto-region t))
3652 (pr-ps-mode-ps-print n-up filename)))
3653 ((pr-using-ghostscript-p)
3654 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region"))
3656 (pr-ps-print 'region n-up filename "PS print region"))))
3659 ;;;###autoload
3660 (defun pr-ps-mode-preview (n-up &optional filename)
3661 "Preview major mode using ghostview.
3663 See also `pr-ps-buffer-preview'."
3664 (interactive (pr-interactive-n-up-file "PS preview mode"))
3665 (pr-set-n-up-and-filename 'n-up 'filename "PS preview mode")
3666 (let ((file (pr-ps-file filename)))
3667 (and (pr-ps-mode n-up file)
3668 (not pr-spool-p)
3669 (pr-ps-file-preview file))))
3672 ;;;###autoload
3673 (defun pr-ps-mode-using-ghostscript (n-up &optional filename)
3674 "Print major mode using PostScript through ghostscript.
3676 See also `pr-ps-buffer-using-ghostscript'."
3677 (interactive (pr-interactive-n-up-file "PS print GS mode"))
3678 (pr-set-n-up-and-filename 'n-up 'filename "PS print GS mode")
3679 (let ((file (pr-ps-file filename)))
3680 (when (and (pr-ps-mode n-up file)
3681 (not pr-spool-p))
3682 (pr-ps-file-using-ghostscript file)
3683 (or filename (pr-delete-file file)))))
3686 ;;;###autoload
3687 (defun pr-ps-mode-print (n-up &optional filename)
3688 "Print major mode using PostScript printer.
3690 See also `pr-ps-buffer-print'."
3691 (interactive (pr-interactive-n-up-file "PS print mode"))
3692 (pr-set-n-up-and-filename 'n-up 'filename "PS print mode")
3693 (pr-ps-mode n-up filename))
3696 ;;;###autoload
3697 (defun pr-ps-mode-ps-print (n-up &optional filename)
3698 "Print major mode using PostScript or through ghostscript.
3700 See also `pr-ps-buffer-ps-print'."
3701 (interactive (pr-interactive-n-up-file (pr-prompt-gs "PS print mode")))
3702 (if (pr-using-ghostscript-p)
3703 (pr-ps-mode-using-ghostscript n-up filename)
3704 (pr-ps-mode-print n-up filename)))
3707 ;;;###autoload
3708 (defun pr-printify-directory (&optional dir file-regexp)
3709 "Replace nonprinting characters in directory with printable representations.
3710 The printable representations use ^ (for ASCII control characters) or hex.
3711 The characters tab, linefeed, space, return and formfeed are not affected.
3713 Interactively, the command prompts for a directory and a file name regexp for
3714 matching.
3716 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
3717 prompts for FILE(name)-REGEXP.
3719 See also documentation for `pr-list-directory'."
3720 (interactive (pr-interactive-dir-args "Printify dir"))
3721 (pr-set-dir-args 'dir 'file-regexp "Printify dir")
3722 (pr-file-list dir file-regexp 'pr-printify-buffer))
3725 ;;;###autoload
3726 (defun pr-printify-buffer ()
3727 "Replace nonprinting characters in buffer with printable representations.
3728 The printable representations use ^ (for ASCII control characters) or hex.
3729 The characters tab, linefeed, space, return and formfeed are not affected."
3730 (interactive "*")
3731 (if (pr-region-active-p)
3732 (pr-printify-region)
3733 (printify-region (point-min) (point-max))))
3736 ;;;###autoload
3737 (defun pr-printify-region ()
3738 "Replace nonprinting characters in region with printable representations.
3739 The printable representations use ^ (for ASCII control characters) or hex.
3740 The characters tab, linefeed, space, return and formfeed are not affected."
3741 (interactive "*")
3742 (printify-region (point) (mark)))
3745 ;;;###autoload
3746 (defun pr-txt-directory (&optional dir file-regexp)
3747 "Print directory using text printer.
3749 Interactively, the command prompts for a directory and a file name regexp for
3750 matching.
3752 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
3753 prompts for FILE(name)-REGEXP.
3755 See also documentation for `pr-list-directory'."
3756 (interactive (pr-interactive-dir-args "Print dir"))
3757 (pr-set-dir-args 'dir 'file-regexp "Print dir")
3758 (pr-file-list dir file-regexp 'pr-txt-buffer))
3761 ;;;###autoload
3762 (defun pr-txt-buffer ()
3763 "Print buffer using text printer."
3764 (interactive)
3765 (cond ((pr-auto-mode-p)
3766 (pr-txt-mode))
3767 ((pr-region-active-p)
3768 (pr-txt-region))
3770 (pr-txt-print (point-min) (point-max)))))
3773 ;;;###autoload
3774 (defun pr-txt-region ()
3775 "Print region using text printer."
3776 (interactive)
3777 (if (pr-auto-mode-p)
3778 (let ((pr-auto-region t))
3779 (pr-txt-mode))
3780 (pr-txt-print (point) (mark))))
3783 ;;;###autoload
3784 (defun pr-txt-mode ()
3785 "Print major mode using text printer."
3786 (interactive)
3787 (let ((args (pr-mode-alist-p)))
3788 (if args
3789 (funcall (car args) (nthcdr 2 args))
3790 (ding)
3791 (message "`%s' major mode not declared." major-mode))))
3794 ;;;###autoload
3795 (defun pr-despool-preview (&optional filename)
3796 "Preview spooled PostScript.
3798 Interactively, when you use a prefix argument (C-u), the command prompts the
3799 user for a file name, and saves the spooled PostScript image in that file
3800 instead of saving it in a temporary file.
3802 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3803 save the image in a temporary file. If FILENAME is a string, save the
3804 PostScript image in a file with that name."
3805 (interactive (list (ps-print-preprint current-prefix-arg)))
3806 (let ((file (pr-ps-file filename)))
3807 (when (stringp file)
3808 (pr-despool-print file)
3809 (pr-ps-file-preview file))))
3812 ;;;###autoload
3813 (defun pr-despool-using-ghostscript (&optional filename)
3814 "Print spooled PostScript using ghostscript.
3816 Interactively, when you use a prefix argument (C-u), the command prompts the
3817 user for a file name, and saves the spooled PostScript image in that file
3818 instead of sending it to the printer.
3820 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3821 send the image to the printer. If FILENAME is a string, save the PostScript
3822 image in a file with that name."
3823 (interactive (list (ps-print-preprint current-prefix-arg)))
3824 (let ((file (pr-ps-file filename)))
3825 (when (stringp file)
3826 (pr-despool-print file)
3827 (pr-ps-file-using-ghostscript file)
3828 (or filename (pr-delete-file file)))))
3831 ;;;###autoload
3832 (defun pr-despool-print (&optional filename)
3833 "Send the spooled PostScript to the printer.
3835 Interactively, when you use a prefix argument (C-u), the command prompts the
3836 user for a file name, and saves the spooled PostScript image in that file
3837 instead of sending it to the printer.
3839 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3840 send the image to the printer. If FILENAME is a string, save the PostScript
3841 image in a file with that name."
3842 (interactive (list (ps-print-preprint current-prefix-arg)))
3843 (let ((ps-lpr-command (pr-command pr-ps-command))
3844 (ps-lpr-switches pr-ps-switches)
3845 (ps-printer-name-option pr-ps-printer-switch)
3846 (ps-printer-name pr-ps-printer))
3847 (ps-despool filename)))
3850 ;;;###autoload
3851 (defun pr-despool-ps-print (&optional filename)
3852 "Send the spooled PostScript to the printer or use ghostscript to print it.
3854 Interactively, when you use a prefix argument (C-u), the command prompts the
3855 user for a file name, and saves the spooled PostScript image in that file
3856 instead of sending it to the printer.
3858 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3859 send the image to the printer. If FILENAME is a string, save the PostScript
3860 image in a file with that name."
3861 (interactive (list (ps-print-preprint current-prefix-arg)))
3862 (if pr-print-using-ghostscript
3863 (pr-despool-using-ghostscript filename)
3864 (pr-despool-print filename)))
3867 ;;;###autoload
3868 (defun pr-ps-file-preview (filename)
3869 "Preview PostScript file FILENAME."
3870 (interactive (list (pr-ps-infile-preprint "Preview ")))
3871 (and (stringp filename) (file-exists-p filename)
3872 (pr-call-process pr-gv-command filename)))
3875 ;;;###autoload
3876 (defun pr-ps-file-up-preview (n-up ifilename &optional ofilename)
3877 "Preview PostScript file FILENAME."
3878 (interactive (pr-interactive-n-up-inout "PS preview"))
3879 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename
3880 "PS preview ")))
3881 (pr-ps-utility-process n-up ifilename outfile)
3882 (pr-ps-file-preview outfile)))
3885 ;;;###autoload
3886 (defun pr-ps-file-using-ghostscript (filename)
3887 "Print PostScript file FILENAME using ghostscript."
3888 (interactive (list (pr-ps-infile-preprint "Print preview ")))
3889 (and (stringp filename) (file-exists-p filename)
3890 (let* ((file (pr-expand-file-name filename))
3891 (tempfile (pr-dosify-file-name (make-temp-file file))))
3892 ;; gs use
3893 (pr-call-process pr-gs-command
3894 (format "-sDEVICE=%s" pr-gs-device)
3895 (format "-r%d" pr-gs-resolution)
3896 (pr-switches-string pr-gs-switches "pr-gs-switches")
3897 (format "-sOutputFile=\"%s\"" tempfile)
3898 file
3899 "-c quit")
3900 ;; printing
3901 (pr-ps-file-print tempfile)
3902 ;; deleting
3903 (pr-delete-file tempfile))))
3906 ;;;###autoload
3907 (defun pr-ps-file-print (filename)
3908 "Print PostScript file FILENAME."
3909 (interactive (list (pr-ps-infile-preprint "Print ")))
3910 (and (stringp filename) (file-exists-p filename)
3911 ;; printing
3912 (let ((file (pr-expand-file-name filename)))
3913 (if (string= pr-ps-command "")
3914 (let ((ps-spool-buffer (get-buffer-create ps-spool-buffer-name)))
3915 (save-excursion
3916 (set-buffer ps-spool-buffer)
3917 (erase-buffer)
3918 (insert-file-contents-literally file))
3919 (pr-despool-print))
3920 (apply 'pr-call-process
3921 pr-ps-command
3922 (pr-switches-string pr-ps-switches "pr-gs-switches")
3923 (if (string-match "cp" pr-ps-command)
3924 ;; for "cp" (cmd in out)
3925 (list file
3926 (concat pr-ps-printer-switch pr-ps-printer))
3927 ;; else, for others (cmd out in)
3928 (list (concat pr-ps-printer-switch pr-ps-printer)
3929 file)))))))
3932 ;;;###autoload
3933 (defun pr-ps-file-ps-print (filename)
3934 "Send PostScript file FILENAME to printer or use ghostscript to print it."
3935 (interactive (list (pr-ps-infile-preprint
3936 (if pr-print-using-ghostscript
3937 "Print preview "
3938 "Print "))))
3939 (if pr-print-using-ghostscript
3940 (pr-ps-file-using-ghostscript filename)
3941 (pr-ps-file-print filename)))
3944 ;;;###autoload
3945 (defun pr-ps-file-up-ps-print (n-up ifilename &optional ofilename)
3946 "Process a PostScript file IFILENAME and send it to printer.
3948 Interactively, the command prompts for N-UP printing number, for an input
3949 PostScript file IFILENAME and, when you use a prefix argument (C-u), the
3950 command prompts the user for an output PostScript file name OFILENAME, and
3951 saves the PostScript image in that file instead of sending it to the printer.
3953 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3954 argument IFILENAME is treated as follows: if it's t, prompts for an input
3955 PostScript file name; otherwise, it *must* be a string that it's an input
3956 PostScript file name. The argument OFILENAME is treated as follows: if it's
3957 nil, send the image to the printer. If OFILENAME is a string, save the
3958 PostScript image in a file with that name. If OFILENAME is t, prompts for a
3959 file name."
3960 (interactive (pr-interactive-n-up-inout
3961 (if pr-print-using-ghostscript
3962 "PS print GS"
3963 "PS print")))
3964 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename
3965 (if pr-print-using-ghostscript
3966 "PS print GS "
3967 "PS print "))))
3968 (pr-ps-utility-process n-up ifilename outfile)
3969 (unless ofilename
3970 (pr-ps-file-ps-print outfile)
3971 (pr-delete-file outfile))))
3974 ;;;###autoload
3975 (defun pr-toggle-file-duplex ()
3976 "Toggle duplex for PostScript file."
3977 (interactive)
3978 (pr-toggle 'pr-file-duplex "PS file duplex" nil 7 5 nil
3979 '("PostScript Print" "File")))
3982 ;;;###autoload
3983 (defun pr-toggle-file-tumble ()
3984 "Toggle tumble for PostScript file.
3986 If tumble is off, produces a printing suitable for binding on the left or
3987 right.
3988 If tumble is on, produces a printing suitable for binding at the top or
3989 bottom."
3990 (interactive)
3991 (pr-toggle 'pr-file-tumble "PS file tumble" nil 8 5 nil
3992 '("PostScript Print" "File")))
3995 ;;;###autoload
3996 (defun pr-toggle-file-landscape ()
3997 "Toggle landscape for PostScript file."
3998 (interactive)
3999 (pr-toggle 'pr-file-landscape "PS file landscape" nil 6 5 nil
4000 '("PostScript Print" "File")))
4003 ;;;###autoload
4004 (defun pr-toggle-ghostscript ()
4005 "Toggle printing using ghostscript."
4006 (interactive)
4007 (pr-toggle 'pr-print-using-ghostscript "Printing using ghostscript"
4008 'postscript-process 2 12 'toggle))
4011 ;;;###autoload
4012 (defun pr-toggle-faces ()
4013 "Toggle printing with faces."
4014 (interactive)
4015 (pr-toggle 'pr-faces-p "Printing with faces"
4016 'postscript-process 1 12 'toggle))
4019 ;;;###autoload
4020 (defun pr-toggle-spool ()
4021 "Toggle spooling."
4022 (interactive)
4023 (pr-toggle 'pr-spool-p "Spooling printing"
4024 'postscript-process 0 12 'toggle))
4027 ;;;###autoload
4028 (defun pr-toggle-duplex ()
4029 "Toggle duplex."
4030 (interactive)
4031 (pr-toggle 'ps-spool-duplex "Printing duplex"
4032 'postcsript-options 5 12 'toggle))
4035 ;;;###autoload
4036 (defun pr-toggle-tumble ()
4037 "Toggle tumble.
4039 If tumble is off, produces a printing suitable for binding on the left or
4040 right.
4041 If tumble is on, produces a printing suitable for binding at the top or
4042 bottom."
4043 (interactive)
4044 (pr-toggle 'ps-spool-tumble "Tumble"
4045 'postscript-options 6 12 'toggle))
4048 ;;;###autoload
4049 (defun pr-toggle-landscape ()
4050 "Toggle landscape."
4051 (interactive)
4052 (pr-toggle 'ps-landscape-mode "Landscape"
4053 'postscript-options 0 12 'toggle))
4056 ;;;###autoload
4057 (defun pr-toggle-upside-down ()
4058 "Toggle upside-down."
4059 (interactive)
4060 (pr-toggle 'ps-print-upside-down "Upside-Down"
4061 'postscript-options 7 12 'toggle))
4064 ;;;###autoload
4065 (defun pr-toggle-line ()
4066 "Toggle line number."
4067 (interactive)
4068 (pr-toggle 'ps-line-number "Line number"
4069 'postscript-options 3 12 'toggle))
4072 ;;;###autoload
4073 (defun pr-toggle-zebra ()
4074 "Toggle zebra stripes."
4075 (interactive)
4076 (pr-toggle 'ps-zebra-stripes "Zebra stripe"
4077 'postscript-options 4 12 'toggle))
4080 ;;;###autoload
4081 (defun pr-toggle-header ()
4082 "Toggle printing header."
4083 (interactive)
4084 (pr-toggle 'ps-print-header "Print header"
4085 'postscript-options 1 12 'toggle))
4088 ;;;###autoload
4089 (defun pr-toggle-header-frame ()
4090 "Toggle printing header frame."
4091 (interactive)
4092 (pr-toggle 'ps-print-header-frame "Print header frame"
4093 'postscript-options 2 12 'toggle))
4096 ;;;###autoload
4097 (defun pr-toggle-lock ()
4098 "Toggle menu lock."
4099 (interactive)
4100 (pr-toggle 'pr-menu-lock "Menu lock"
4101 'printing 2 12 'toggle))
4104 ;;;###autoload
4105 (defun pr-toggle-region ()
4106 "Toggle auto region."
4107 (interactive)
4108 (pr-toggle 'pr-auto-region "Auto region"
4109 'printing 0 12 'toggle))
4112 ;;;###autoload
4113 (defun pr-toggle-mode ()
4114 "Toggle auto mode."
4115 (interactive)
4116 (pr-toggle 'pr-auto-mode "Auto mode"
4117 'printing 1 12 'toggle))
4120 ;;;###autoload
4121 (defun pr-customize (&rest ignore)
4122 "Customization of the `printing' group."
4123 (interactive)
4124 (customize-group 'printing))
4127 ;;;###autoload
4128 (defun lpr-customize (&rest ignore)
4129 "Customization of the `lpr' group."
4130 (interactive)
4131 (customize-group 'lpr))
4134 ;;;###autoload
4135 (defun pr-help (&rest ignore)
4136 "Help for the printing package."
4137 (interactive)
4138 (pr-show-setup pr-help-message "*Printing Help*"))
4141 ;;;###autoload
4142 (defun pr-ps-name ()
4143 "Interactively select a PostScript printer."
4144 (interactive)
4145 (pr-menu-set-ps-title
4146 (pr-complete-alist "PostScript printer" pr-ps-printer-alist pr-ps-name)))
4149 ;;;###autoload
4150 (defun pr-txt-name ()
4151 "Interactively select a text printer."
4152 (interactive)
4153 (pr-menu-set-txt-title
4154 (pr-complete-alist "Text printer" pr-txt-printer-alist pr-txt-name)))
4157 ;;;###autoload
4158 (defun pr-ps-utility ()
4159 "Interactively select a PostScript utility."
4160 (interactive)
4161 (pr-menu-set-utility-title
4162 (pr-complete-alist "Postscript utility" pr-ps-utility-alist pr-ps-utility)))
4165 ;;;###autoload
4166 (defun pr-show-ps-setup (&rest ignore)
4167 "Show current ps-print settings."
4168 (interactive)
4169 (pr-show-setup (ps-setup) "*PS Setup*"))
4172 ;;;###autoload
4173 (defun pr-show-pr-setup (&rest ignore)
4174 "Show current printing settings."
4175 (interactive)
4176 (pr-show-setup (pr-setup) "*PR Setup*"))
4179 ;;;###autoload
4180 (defun pr-show-lpr-setup (&rest ignore)
4181 "Show current lpr settings."
4182 (interactive)
4183 (pr-show-setup (lpr-setup) "*LPR Setup*"))
4186 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4187 ;; Fast Commands
4190 ;;;###autoload
4191 (defun pr-ps-fast-fire (n-up &optional select)
4192 "Fast fire function for PostScript printing.
4194 If a region is active, the region will be printed instead of the whole buffer.
4195 Also if the current major-mode is defined in `pr-mode-alist', the settings in
4196 `pr-mode-alist' will be used, that is, the current buffer or region will be
4197 printed using `pr-ps-mode-ps-print'.
4200 Interactively, you have the following situations:
4202 M-x pr-ps-fast-fire RET
4203 The command prompts the user for a N-UP value and printing will
4204 immediatelly be done using the current active printer.
4206 C-u M-x pr-ps-fast-fire RET
4207 C-u 0 M-x pr-ps-fast-fire RET
4208 The command prompts the user for a N-UP value and also for a current
4209 PostScript printer, then printing will immediatelly be done using the new
4210 current active printer.
4212 C-u 1 M-x pr-ps-fast-fire RET
4213 The command prompts the user for a N-UP value and also for a file name,
4214 and saves the PostScript image in that file instead of sending it to the
4215 printer.
4217 C-u 2 M-x pr-ps-fast-fire RET
4218 The command prompts the user for a N-UP value, then for a current
4219 PostScript printer and, finally, for a file name. Then change the active
4220 printer to that choosen by user and saves the PostScript image in
4221 that file instead of sending it to the printer.
4224 Noninteractively, the argument N-UP should be a positive integer greater than
4225 zero and the argument SELECT is treated as follows:
4227 If it's nil, send the image to the printer.
4229 If it's a list or an integer lesser or equal to zero, the command prompts
4230 the user for a current PostScript printer, then printing will immediatelly
4231 be done using the new current active printer.
4233 If it's an integer equal to 1, the command prompts the user for a file name
4234 and saves the PostScript image in that file instead of sending it to the
4235 printer.
4237 If it's an integer greater or equal to 2, the command prompts the user for a
4238 current PostScript printer and for a file name. Then change the active
4239 printer to that choosen by user and saves the PostScript image in that file
4240 instead of sending it to the printer.
4242 If it's a symbol which it's defined in `pr-ps-printer-alist', it's the new
4243 active printer and printing will immediatelly be done using the new active
4244 printer.
4246 Otherwise, send the image to the printer.
4249 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
4250 are both set to t."
4251 (interactive (list (pr-interactive-n-up (pr-prompt-gs "PS print fast"))
4252 current-prefix-arg))
4253 (let ((pr-auto-region t)
4254 (pr-auto-mode t)
4255 filename)
4256 (cond ((null select))
4257 ((listp select)
4258 (pr-ps-name))
4259 ((and (symbolp select)
4260 (assq select pr-ps-printer-alist))
4261 (pr-menu-set-ps-title select))
4262 ((integerp select)
4263 (and (/= select 1)
4264 (pr-ps-name))
4265 (and (>= select 1) (not pr-spool-p)
4266 (setq filename (pr-ps-outfile-preprint
4267 (if pr-print-using-ghostscript
4268 "Fast GS "
4269 "Fast "))))))
4270 (pr-ps-buffer-ps-print
4271 (if (integerp n-up)
4272 (min (max n-up 1) 100)
4273 (error "n-up must be an integer greater than zero"))
4274 filename)))
4277 ;;;###autoload
4278 (defun pr-txt-fast-fire (&optional select-printer)
4279 "Fast fire function for text printing.
4281 If a region is active, the region will be printed instead of the whole buffer.
4282 Also if the current major-mode is defined in `pr-mode-alist', the settings in
4283 `pr-mode-alist' will be used, that is, the current buffer or region will be
4284 printed using `pr-txt-mode'.
4286 Interactively, when you use a prefix argument (C-u), the command prompts the
4287 user for a new active text printer.
4289 Noninteractively, the argument SELECT-PRINTER is treated as follows:
4291 If it's nil, the printing is sent to the current active text printer.
4293 If it's a symbol which it's defined in `pr-txt-printer-alist', it's the new
4294 active printer and printing will immediatelly be done using the new active
4295 printer.
4297 If it's non-nil, the command prompts the user for a new active text printer.
4299 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
4300 are both set to t."
4301 (interactive (list current-prefix-arg))
4302 (cond ((null select-printer))
4303 ((and (symbolp select-printer)
4304 (assq select-printer pr-txt-printer-alist))
4305 (pr-menu-set-txt-title select-printer))
4307 (pr-txt-name)))
4308 (let ((pr-auto-region t)
4309 (pr-auto-mode t))
4310 (pr-txt-buffer)))
4313 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4314 ;; Utilities
4317 (defun pr-setup ()
4318 "Return the current `printing' setup.
4320 This is *not* an interactive command.
4321 One way to see `printing' setup is to switch to a *Scratch* buffer and type:
4323 M-: (insert (pr-setup)) RET
4325 Or choose the menu option Printing/Show Settings/printing."
4326 (let (ps-prefix-quote)
4327 (mapconcat
4328 #'ps-print-quote
4329 (list
4330 (concat "\n;;; printing.el version " pr-version "\n")
4331 ";; internal vars"
4332 (ps-comment-string "pr-txt-command " pr-txt-command)
4333 (ps-comment-string "pr-txt-switches "
4334 (pr-switches-string pr-txt-switches "pr-txt-switches"))
4335 (ps-comment-string "pr-txt-printer " pr-txt-printer)
4336 (ps-comment-string "pr-ps-command " pr-ps-command)
4337 (ps-comment-string "pr-ps-switches "
4338 (pr-switches-string pr-ps-switches "pr-ps-switches"))
4339 (ps-comment-string "pr-ps-printer-switch" pr-ps-printer-switch)
4340 (ps-comment-string "pr-ps-printer " pr-ps-printer)
4341 (ps-comment-string "pr-cygwin-system " pr-cygwin-system)
4342 (ps-comment-string "ps-windows-system " ps-windows-system)
4343 (ps-comment-string "ps-lp-system " ps-lp-system)
4345 '(14 . pr-path-style)
4346 '(14 . pr-path-alist)
4348 '(21 . pr-txt-name)
4349 '(21 . pr-txt-printer-alist)
4351 '(20 . pr-ps-name)
4352 '(20 . pr-ps-printer-alist)
4354 '(20 . pr-temp-dir)
4355 '(20 . pr-ps-temp-file)
4356 '(20 . pr-delete-temp-file)
4357 '(20 . pr-list-directory)
4359 '(17 . pr-gv-command)
4360 '(17 . pr-gs-command)
4361 '(17 . pr-gs-switches)
4362 '(17 . pr-gs-device)
4363 '(17 . pr-gs-resolution)
4365 '(27 . pr-print-using-ghostscript)
4366 '(27 . pr-faces-p)
4367 '(27 . pr-spool-p)
4368 '(27 . pr-file-landscape)
4369 '(27 . pr-file-duplex)
4370 '(27 . pr-file-tumble)
4371 '(27 . pr-auto-region)
4372 '(27 . pr-auto-mode)
4374 '(20 . pr-ps-utility)
4375 '(20 . pr-ps-utility-alist)
4377 '(14 . pr-mode-alist)
4379 '(20 . pr-menu-lock)
4380 '(20 . pr-menu-char-height)
4381 '(20 . pr-menu-char-width)
4383 '(20 . pr-setting-database)
4385 '(22 . pr-visible-entry-list)
4387 '(22 . pr-buffer-verbose)
4388 '(22 . pr-buffer-name)
4389 '(22 . pr-buffer-name-ignore)
4390 ")\n\n;;; printing.el - end of settings\n")
4391 "\n")))
4394 (defun lpr-setup ()
4395 "Return the current `lpr' setup.
4397 This is *not* an interactive command.
4398 One way to see `lpr' setup is to switch to a *Scratch* buffer and type:
4400 M-: (insert (lpr-setup)) RET
4402 Or choose the menu option Printing/Show Settings/lpr."
4403 (let (ps-prefix-quote)
4404 (mapconcat
4405 #'ps-print-quote
4406 '("\n;;; lpr.el settings\n"
4407 (25 . printer-name)
4408 (25 . lpr-switches)
4409 (25 . lpr-add-switches)
4410 (25 . lpr-command)
4411 (25 . lpr-headers-switches)
4412 (25 . print-region-function)
4413 (25 . lpr-page-header-program)
4414 (25 . lpr-page-header-switches)
4415 ")\n\n;;; lpr.el - end of settings\n")
4416 "\n")))
4419 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4420 ;; mh-e (adapted from mh-e-init.el -- Tom Vogels <tov@ece.cmu.edu>)
4423 (defalias 'pr-mh-get-msg-num 'mh-get-msg-num)
4424 (defalias 'pr-mh-show 'mh-show)
4425 (defalias 'pr-mh-start-of-uncleaned-message 'mh-start-of-uncleaned-message)
4426 (defvar mh-show-buffer nil)
4429 (defun pr-article-date ()
4430 "Find the date of an article or mail message in current buffer.
4431 Return only the dayname, if present, weekday, month, and year."
4432 (save-excursion
4433 (goto-char (point-min))
4434 (if (re-search-forward
4435 "^Date:[ \t]+\\(\\([A-Za-z]+, \\)?[0-9]+ [A-Za-z]+ [0-9]+\\)" nil t)
4436 (buffer-substring (match-beginning 1) (match-end 1))
4437 (format-time-string "%Y/%m/%d"))))
4440 (defun pr-mh-current-message ()
4441 "Go to mh-inbox current message."
4442 (let ((msg (or (pr-mh-get-msg-num nil) 0)))
4443 (pr-mh-show)
4444 (set-buffer mh-show-buffer)
4445 (goto-char (point-min))
4446 (pr-mh-start-of-uncleaned-message)
4447 (message "Printing message %d" msg)))
4450 (defun pr-mh-print-1 (n-up filename header-list)
4451 "Print mh-inbox current message in PostScript."
4452 (save-excursion
4453 (save-window-excursion
4454 (pr-mh-current-message)
4455 (pr-mode-print n-up filename header-list (point)))))
4458 (defun pr-mh-lpr-1 (header-list)
4459 "Print mh-inbox current message in text printer."
4460 (save-excursion
4461 (save-window-excursion
4462 (pr-mh-current-message)
4463 (pr-mode-lpr header-list (point)))))
4466 (defalias 'pr-mh-print-2 'pr-mode-print)
4469 (defalias 'pr-mh-lpr-2 'pr-mode-lpr)
4472 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4473 ;; rmail (hacked from ps-print.el)
4476 (defun pr-rmail-lpr (header-list)
4477 "Print RMAIL current message in text printer."
4478 (pr-lpr-message-from-summary header-list
4479 'rmail-buffer 'rmail-summary-buffer))
4482 (defun pr-rmail-print (n-up filename header-list)
4483 "Print RMAIL current message in PostScript."
4484 (pr-ps-message-from-summary n-up filename header-list
4485 'rmail-buffer 'rmail-summary-buffer))
4488 (defun pr-ps-message-from-summary (n-up filename header-list
4489 summary-buffer summary-default)
4490 "Print current message in PostScript."
4491 (let ((buf (or (and (boundp summary-buffer)
4492 (symbol-value summary-buffer))
4493 (symbol-value summary-default))))
4494 (and (get-buffer buf)
4495 (save-excursion
4496 (set-buffer buf)
4497 (pr-mode-print n-up filename header-list)))))
4500 (defun pr-lpr-message-from-summary (header-list summary-buffer summary-default)
4501 "Print current message in text printer."
4502 (let ((buf (or (and (boundp summary-buffer)
4503 (symbol-value summary-buffer))
4504 (symbol-value summary-default))))
4505 (and (get-buffer buf)
4506 (save-excursion
4507 (set-buffer buf)
4508 (pr-mode-lpr header-list)))))
4511 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4512 ;; gnus (hacked from ps-print.el)
4515 (defvar pr-gnus-article "*Article*")
4518 (defun pr-gnus-print (n-up filename header-list)
4519 "Print *Article* current message in PostScript."
4520 (pr-ps-message-from-summary n-up filename header-list
4521 'gnus-article-buffer 'pr-gnus-article))
4524 (defun pr-gnus-lpr (header-list)
4525 "Print *Article* current message in text printer."
4526 (pr-lpr-message-from-summary header-list
4527 'gnus-article-buffer 'pr-gnus-article))
4530 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4531 ;; vm (hacked from ps-print.el)
4534 (defvar pr-vm-summary "")
4537 (defun pr-vm-print (n-up filename header-list)
4538 "Print current vm message in PostScript."
4539 (pr-ps-message-from-summary n-up filename header-list
4540 'vm-mail-buffer 'pr-vm-summary))
4543 (defun pr-vm-lpr (header-list)
4544 "Print current vm message in text printer."
4545 (pr-lpr-message-from-summary header-list
4546 'vm-mail-buffer 'pr-vm-summary))
4549 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4550 ;; Mode Functions
4553 (defun pr-ps-mode (n-up filename)
4554 "If current major mode is declared, print it in PostScript."
4555 (let ((args (pr-mode-alist-p)))
4556 (if args
4557 (let ((fun (cdr args)))
4558 (funcall (car fun) n-up filename (cdr fun))
4560 (ding)
4561 (message "`%s' major mode not declared." major-mode)
4562 nil)))
4565 (defmacro pr-local-variable (header-list &rest body)
4566 `(save-excursion
4567 (let ((ps-header-lines (or (nth 0 ,header-list) ps-header-lines))
4568 (ps-left-header (or (nth 1 ,header-list) ps-left-header))
4569 (ps-right-header (or (nth 2 ,header-list) ps-right-header))
4570 ps-razzle-dazzle)
4571 (let ((local-var-list (pr-eval-local-alist (nthcdr 4 ,header-list))))
4572 ,@body
4573 (and (nth 3 ,header-list)
4574 (pr-kill-local-variable local-var-list))))))
4577 (defun pr-mode-print (n-up filename header-list &optional from to)
4578 "Print current major mode in PostScript."
4579 (pr-local-variable
4580 header-list
4581 (let ((file (pr-ps-file filename))
4582 (start (cond (from)
4583 ((pr-region-active-p) (region-beginning))
4584 (t nil)
4586 (pr-text2ps (pr-region-active-symbol start) n-up file start
4587 (cond (to)
4588 ((pr-region-active-p) (region-end))
4589 (from (point-max))
4591 (unless (or pr-spool-p filename)
4592 (pr-ps-file-print file)
4593 (pr-delete-file file)))))
4596 (defun pr-mode-lpr (header-list &optional from to)
4597 "Print current major mode in text printer."
4598 (pr-local-variable
4599 header-list
4600 (pr-txt-print (cond (from)
4601 ((pr-region-active-p) (region-beginning))
4602 (t (point-min)))
4603 (cond (to)
4604 ((pr-region-active-p) (region-end))
4605 (t (point-max))))))
4608 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4609 ;; Menu Lock
4612 (defconst pr-menu-entry-alist
4613 '((postscript . 3)
4614 (text . 3)
4615 (postscript-options . 9)
4616 (postscript-process . 3)
4617 (printing . 3)
4618 (help . 3)
4620 "Alist that associates menu part with number of items per part.
4622 It's used by `pr-menu-index'.
4624 Each element has the form:
4626 (MENU-PART . NUMBER-OF-ITEMS)
4628 See `pr-visible-entry-alist'.")
4631 (defun pr-menu-index (entry index)
4632 (let ((base-list
4633 (cond ((eq entry 'text)
4634 '(postscript))
4635 ((eq entry 'postscript-options)
4636 '(postscript text))
4637 ((eq entry 'postscript-process)
4638 '(postscript text postscript-options))
4639 ((eq entry 'printing)
4640 '(postscript text postscript-options postscript-process))
4642 nil)
4644 key)
4645 (while base-list
4646 (setq key (car base-list)
4647 base-list (cdr base-list))
4648 (and (pr-visible-p key)
4649 (setq index (+ index
4650 (cdr (assq key pr-menu-entry-alist)))))))
4651 (+ index 2))
4654 (defvar pr-menu-position nil)
4655 (defvar pr-menu-state nil)
4658 (eval-and-compile
4659 (cond
4660 ((eq ps-print-emacs-type 'xemacs)
4661 ;; XEmacs
4662 (defvar current-mouse-event nil) ; to avoid compilation gripes
4663 (defun pr-menu-position (entry index horizontal)
4664 (pr-x-make-event
4665 'button-release
4666 (list 'button 1
4667 'x (- (pr-x-event-x-pixel current-mouse-event) ; X
4668 (* horizontal pr-menu-char-width))
4669 'y (- (pr-x-event-y-pixel current-mouse-event) ; Y
4670 (* (pr-menu-index entry index) pr-menu-char-height)))))
4672 (ps-windows-system
4673 ;; GNU Emacs for Windows 9x/NT
4674 (defun pr-menu-position (entry index horizontal)
4675 (let ((pos (cdr (pr-e-mouse-pixel-position))))
4676 (list
4677 (list (or (car pos) 0) ; X
4678 (- (or (cdr pos) 0) ; Y
4679 (* (pr-menu-index entry index) pr-menu-char-height)))
4680 (selected-frame)))) ; frame
4683 ;; GNU Emacs
4684 (defun pr-menu-position (entry index horizontal)
4685 (let ((pos (cdr (pr-e-mouse-pixel-position))))
4686 (list
4687 (list (- (or (car pos) 0) ; X
4688 (* horizontal pr-menu-char-width))
4689 (- (or (cdr pos) 0) ; Y
4690 (* (pr-menu-index entry index) pr-menu-char-height)))
4691 (selected-frame)))) ; frame
4694 (cond
4695 ((eq ps-print-emacs-type 'emacs)
4696 ;; GNU Emacs
4697 (defun pr-menu-lookup (path)
4698 (let ((ipath pr-menu-bar))
4699 (lookup-key global-map
4700 (if path
4701 (vconcat ipath
4702 (mapcar 'pr-get-symbol
4703 (if (listp path)
4704 path
4705 (list path))))
4706 ipath))))
4708 ;; GNU Emacs
4709 (defun pr-menu-lock (entry index horizontal state path)
4710 (when (and (not (interactive-p)) pr-menu-lock)
4711 (or (and pr-menu-position (eq state pr-menu-state))
4712 (setq pr-menu-position (pr-menu-position entry index horizontal)
4713 pr-menu-state state))
4714 (let* ((menu (pr-menu-lookup path))
4715 (result (x-popup-menu pr-menu-position menu)))
4716 (and result
4717 (let ((command (lookup-key menu (vconcat result))))
4718 (if (fboundp command)
4719 (funcall command)
4720 (eval command)))))
4721 (setq pr-menu-position nil))))
4724 ((eq ps-print-emacs-type 'xemacs)
4725 ;; XEmacs
4726 (defvar current-menubar nil) ; to avoid compilation gripes
4727 (defun pr-menu-lookup (path)
4728 (car (pr-x-find-menu-item current-menubar (cons "Printing" path))))
4730 ;; XEmacs
4731 (defun pr-menu-lock (entry index horizontal state path)
4732 (when (and (not (interactive-p)) pr-menu-lock)
4733 (or (and pr-menu-position (eq state pr-menu-state))
4734 (setq pr-menu-position (pr-menu-position entry index horizontal)
4735 pr-menu-state state))
4736 (let* ((menu (pr-menu-lookup path))
4737 (result (pr-x-get-popup-menu-response menu pr-menu-position)))
4738 (and (pr-x-misc-user-event-p result)
4739 (funcall (pr-x-event-function result)
4740 (pr-x-event-object result))))
4741 (setq pr-menu-position nil))))))
4744 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4745 ;; Printer & Utility Selection
4748 (defun pr-update-var (var-sym alist)
4749 (or (assq (symbol-value var-sym) alist)
4750 (set var-sym (car (car alist)))))
4753 (defun pr-update-menus (&optional force)
4754 "Update utility, PostScript and text printer menus.
4756 If FORCE is non-nil, update menus doesn't matter if `pr-ps-printer-alist',
4757 `pr-txt-printer-alist' or `pr-ps-utility-alist' were modified or not;
4758 otherwise, update PostScript printer menu iff `pr-ps-printer-menu-modified' is
4759 non-nil, update text printer menu iff `pr-txt-printer-menu-modified' is
4760 non-nil, and update PostScript File menus iff `pr-ps-utility-menu-modified' is
4761 non-nil."
4762 (interactive "P")
4763 (pr-update-var 'pr-ps-name pr-ps-printer-alist)
4764 (pr-update-var 'pr-txt-name pr-txt-printer-alist)
4765 (pr-update-var 'pr-ps-utility pr-ps-utility-alist)
4766 (pr-do-update-menus force))
4769 (defvar pr-ps-printer-menu-modified t
4770 "Non-nil means `pr-ps-printer-alist' was modified and we need to update menu.")
4771 (defvar pr-txt-printer-menu-modified t
4772 "Non-nil means `pr-txt-printer-alist' was modified and we need to update menu.")
4773 (defvar pr-ps-utility-menu-modified t
4774 "Non-nil means `pr-ps-utility-alist' was modified and we need to update menu.")
4777 (defconst pr-even-or-odd-alist
4778 '((nil . "Print All Pages")
4779 (even-page . "Print Even Pages")
4780 (odd-page . "Print Odd Pages")
4781 (even-sheet . "Print Even Sheets")
4782 (odd-sheet . "Print Odd Sheets")))
4785 (defun pr-menu-create (name alist var-sym fun entry index)
4786 (cons name
4787 (mapcar
4788 #'(lambda (elt)
4789 (let ((sym (car elt)))
4790 (vector
4791 (symbol-name sym)
4792 (list fun (list 'quote sym) nil (list 'quote entry) index)
4793 :style 'radio
4794 :selected (list 'eq var-sym (list 'quote sym)))))
4795 alist)))
4798 (eval-and-compile
4799 (cond
4800 ((eq ps-print-emacs-type 'emacs)
4801 ;; GNU Emacs
4802 (defalias 'pr-update-mode-line 'force-mode-line-update)
4804 ;; GNU Emacs
4805 (defun pr-do-update-menus (&optional force)
4806 (pr-menu-alist pr-ps-printer-alist
4807 'pr-ps-name
4808 'pr-menu-set-ps-title
4809 "PostScript Printers"
4810 'pr-ps-printer-menu-modified
4811 force
4812 "PostScript Printers"
4813 'postscript 2)
4814 (pr-menu-alist pr-txt-printer-alist
4815 'pr-txt-name
4816 'pr-menu-set-txt-title
4817 "Text Printers"
4818 'pr-txt-printer-menu-modified
4819 force
4820 "Text Printers"
4821 'text 2)
4822 (let ((save-var pr-ps-utility-menu-modified))
4823 (pr-menu-alist pr-ps-utility-alist
4824 'pr-ps-utility
4825 'pr-menu-set-utility-title
4826 '("PostScript Print" "File" "PostScript Utility")
4827 'save-var
4828 force
4829 "PostScript Utility"
4830 nil 1))
4831 (pr-menu-alist pr-ps-utility-alist
4832 'pr-ps-utility
4833 'pr-menu-set-utility-title
4834 '("PostScript Preview" "File" "PostScript Utility")
4835 'pr-ps-utility-menu-modified
4836 force
4837 "PostScript Utility"
4838 nil 1)
4839 (pr-even-or-odd-pages ps-even-or-odd-pages force))
4841 ;; GNU Emacs
4842 (defvar pr-temp-menu nil)
4844 ;; GNU Emacs
4845 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
4846 entry index)
4847 (when (and alist (or force (symbol-value modified-sym)))
4848 (easy-menu-define pr-temp-menu nil ""
4849 (pr-menu-create name alist var-sym fun entry index))
4850 (let ((item (pr-menu-get-item menu-path)))
4851 (and item
4852 (let* ((binding (nthcdr 3 item))
4853 (key-binding (cdr binding)))
4854 (setcar binding pr-temp-menu)
4855 (and key-binding (listp (car key-binding))
4856 (setcdr binding (cdr key-binding))) ; skip KEY-BINDING
4857 (funcall fun (symbol-value var-sym) item))))
4858 (set modified-sym nil)))
4860 ;; GNU Emacs
4861 (defun pr-menu-set-ps-title (value &optional item entry index)
4862 (pr-menu-set-item-name (or item
4863 (pr-menu-get-item "PostScript Printers"))
4864 (format "PostScript Printer: %s" value))
4865 (pr-ps-set-printer value)
4866 (and index
4867 (pr-menu-lock entry index 12 'toggle nil)))
4869 ;; GNU Emacs
4870 (defun pr-menu-set-txt-title (value &optional item entry index)
4871 (pr-menu-set-item-name (or item
4872 (pr-menu-get-item "Text Printers"))
4873 (format "Text Printer: %s" value))
4874 (pr-txt-set-printer value)
4875 (and index
4876 (pr-menu-lock entry index 12 'toggle nil)))
4878 ;; GNU Emacs
4879 (defun pr-menu-set-utility-title (value &optional item entry index)
4880 (let ((name (symbol-name value)))
4881 (if item
4882 (pr-menu-set-item-name item name)
4883 (pr-menu-set-item-name
4884 (pr-menu-get-item
4885 '("PostScript Print" "File" "PostScript Utility"))
4886 name)
4887 (pr-menu-set-item-name
4888 (pr-menu-get-item
4889 '("PostScript Preview" "File" "PostScript Utility"))
4890 name)))
4891 (pr-ps-set-utility value)
4892 (and index
4893 (pr-menu-lock entry index 5 nil '("PostScript Print" "File"))))
4895 ;; GNU Emacs
4896 (defun pr-even-or-odd-pages (value &optional no-lock)
4897 (pr-menu-set-item-name (pr-menu-get-item "Print All Pages")
4898 (cdr (assq value pr-even-or-odd-alist)))
4899 (setq ps-even-or-odd-pages value)
4900 (or no-lock
4901 (pr-menu-lock 'postscript-options 8 12 'toggle nil))))
4904 ((eq ps-print-emacs-type 'xemacs)
4905 ;; XEmacs
4906 (defalias 'pr-update-mode-line 'set-menubar-dirty-flag)
4908 ;; XEmacs
4909 (defvar pr-ps-name-old "PostScript Printers")
4910 (defvar pr-txt-name-old "Text Printers")
4911 (defvar pr-ps-utility-old "PostScript Utility")
4912 (defvar pr-even-or-odd-old "Print All Pages")
4914 ;; XEmacs
4915 (defun pr-do-update-menus (&optional force)
4916 (pr-menu-alist pr-ps-printer-alist
4917 'pr-ps-name
4918 'pr-menu-set-ps-title
4919 '("Printing")
4920 'pr-ps-printer-menu-modified
4921 force
4922 pr-ps-name-old
4923 'postscript 2)
4924 (pr-menu-alist pr-txt-printer-alist
4925 'pr-txt-name
4926 'pr-menu-set-txt-title
4927 '("Printing")
4928 'pr-txt-printer-menu-modified
4929 force
4930 pr-txt-name-old
4931 'text 2)
4932 (let ((save-var pr-ps-utility-menu-modified))
4933 (pr-menu-alist pr-ps-utility-alist
4934 'pr-ps-utility
4935 'pr-menu-set-utility-title
4936 '("Printing" "PostScript Print" "File")
4937 'save-var
4938 force
4939 pr-ps-utility-old
4940 nil 1))
4941 (pr-menu-alist pr-ps-utility-alist
4942 'pr-ps-utility
4943 'pr-menu-set-utility-title
4944 '("Printing" "PostScript Preview" "File")
4945 'pr-ps-utility-menu-modified
4946 force
4947 pr-ps-utility-old
4948 nil 1)
4949 (pr-even-or-odd-pages ps-even-or-odd-pages force))
4951 ;; XEmacs
4952 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
4953 entry index)
4954 (when (and alist (or force (symbol-value modified-sym)))
4955 (pr-xemacs-global-menubar
4956 (pr-x-add-submenu menu-path
4957 (pr-menu-create name alist var-sym
4958 fun entry index)))
4959 (funcall fun (symbol-value var-sym))
4960 (set modified-sym nil)))
4962 ;; XEmacs
4963 (defun pr-menu-set-ps-title (value &optional item entry index)
4964 (pr-relabel-menu-item (format "PostScript Printer: %s" value)
4965 'pr-ps-name-old)
4966 (pr-ps-set-printer value)
4967 (and index
4968 (pr-menu-lock entry index 12 'toggle nil)))
4970 ;; XEmacs
4971 (defun pr-menu-set-txt-title (value &optional item entry index)
4972 (pr-relabel-menu-item (format "Text Printer: %s" value)
4973 'pr-txt-name-old)
4974 (pr-txt-set-printer value)
4975 (and index
4976 (pr-menu-lock entry index 12 'toggle nil)))
4978 ;; XEmacs
4979 (defun pr-menu-set-utility-title (value &optional item entry index)
4980 (pr-xemacs-global-menubar
4981 (let ((newname (format "%s" value)))
4982 (pr-x-relabel-menu-item
4983 (list "Printing" "PostScript Print" "File" pr-ps-utility-old)
4984 newname)
4985 (pr-x-relabel-menu-item
4986 (list "Printing" "PostScript Preview" "File" pr-ps-utility-old)
4987 newname)
4988 (setq pr-ps-utility-old newname)))
4989 (pr-ps-set-utility value)
4990 (and index
4991 (pr-menu-lock entry index 5 nil '("PostScript Print" "File"))))
4993 ;; XEmacs
4994 (defun pr-even-or-odd-pages (value &optional no-lock)
4995 (pr-relabel-menu-item (cdr (assq value pr-even-or-odd-alist))
4996 'pr-even-or-odd-old)
4997 (setq ps-even-or-odd-pages value)
4998 (or no-lock
4999 (pr-menu-lock 'postscript-options 8 12 'toggle nil))))))
5001 ;; XEmacs
5002 (defun pr-relabel-menu-item (newname var-sym)
5003 (pr-xemacs-global-menubar
5004 (pr-x-relabel-menu-item
5005 (list "Printing" (symbol-value var-sym))
5006 newname)
5007 (set var-sym newname)))
5009 ;; GNU Emacs
5010 (defun pr-menu-set-item-name (item name)
5011 (and item
5012 (setcar (nthcdr 2 item) name))) ; ITEM-NAME
5014 ;; GNU Emacs
5015 (defun pr-menu-get-item (name-list)
5016 ;; NAME-LIST is a string or a list of strings.
5017 (let ((ipath pr-menu-bar)
5018 (len (and (listp name-list) (length name-list))))
5019 (and len (= len 1)
5020 (setq name-list (car name-list)))
5021 (cond
5022 ((null name-list)
5023 ;; nil
5024 nil)
5025 ((listp name-list)
5026 ;; list and (length list) > 1
5027 (let* ((copy (copy-sequence name-list))
5028 (name (pr-get-symbol (nth (1- len) copy)))
5029 (path (progn
5030 (setcdr (nthcdr (- len 2) copy) nil)
5031 copy))
5032 (menu (lookup-key
5033 global-map
5034 (if path
5035 (vconcat ipath
5036 (mapcar 'pr-get-symbol path))
5037 ipath))))
5038 (assq name (nthcdr 2 menu))))
5040 ;; string
5041 (let ((name (pr-get-symbol name-list))
5042 (menu (lookup-key global-map ipath)))
5043 (assq name (nthcdr 2 menu)))))))
5046 (defun pr-ps-set-utility (value)
5047 (let ((item (cdr (assq value pr-ps-utility-alist))))
5048 (or item
5049 (error
5050 "Invalid PostScript utility name `%s' for variable `pr-ps-utility'"
5051 value))
5052 (setq pr-ps-utility value)
5053 (pr-eval-alist (nthcdr 9 item)))
5054 (pr-update-mode-line))
5057 (defun pr-ps-set-printer (value)
5058 (let ((ps (cdr (assq value pr-ps-printer-alist))))
5059 (or ps
5060 (error
5061 "Invalid PostScript printer name `%s' for variable `pr-ps-name'"
5062 value))
5063 (setq pr-ps-name value
5064 pr-ps-command (pr-dosify-file-name (nth 0 ps))
5065 pr-ps-switches (nth 1 ps)
5066 pr-ps-printer-switch (nth 2 ps)
5067 pr-ps-printer (nth 3 ps))
5068 (or (stringp pr-ps-command)
5069 (setq pr-ps-command
5070 (cond (ps-windows-system "print")
5071 (ps-lp-system "lp")
5072 (t "lpr")
5074 (or (stringp pr-ps-printer-switch)
5075 (setq pr-ps-printer-switch
5076 (cond (ps-windows-system "/D:")
5077 (ps-lp-system "-d")
5078 (t "-P")
5080 (pr-eval-alist (nthcdr 4 ps)))
5081 (pr-update-mode-line))
5084 (defun pr-txt-set-printer (value)
5085 (let ((txt (cdr (assq value pr-txt-printer-alist))))
5086 (or txt
5087 (error "Invalid text printer name `%s' for variable `pr-txt-name'"
5088 value))
5089 (setq pr-txt-name value
5090 pr-txt-command (pr-dosify-file-name (nth 0 txt))
5091 pr-txt-switches (nth 1 txt)
5092 pr-txt-printer (nth 2 txt)))
5093 (or (stringp pr-txt-command)
5094 (setq pr-txt-command
5095 (cond (ps-windows-system "print")
5096 (ps-lp-system "lp")
5097 (t "lpr")
5099 (pr-update-mode-line))
5102 (defun pr-eval-alist (alist)
5103 (mapcar #'(lambda (option)
5104 (let ((var-sym (car option))
5105 (value (cdr option)))
5106 (if (eq var-sym 'inherits-from:)
5107 (pr-eval-setting-alist value 'global)
5108 (set var-sym (eval value)))))
5109 alist))
5112 (defun pr-eval-local-alist (alist)
5113 (let (local-list)
5114 (mapcar #'(lambda (option)
5115 (let ((var-sym (car option))
5116 (value (cdr option)))
5117 (setq local-list
5118 (if (eq var-sym 'inherits-from:)
5119 (nconc (pr-eval-setting-alist value) local-list)
5120 (set (make-local-variable var-sym) (eval value))
5121 (cons var-sym local-list)))))
5122 alist)
5123 local-list))
5126 (defun pr-eval-setting-alist (key &optional global old)
5127 (let ((setting (cdr (assq key pr-setting-database))))
5128 (and setting
5129 (let ((inherits (nth 0 setting))
5130 (local (nth 1 setting))
5131 (kill (nth 2 setting))
5132 local-list)
5133 (and local global
5134 (progn
5135 (ding)
5136 (message "There are local buffer settings for `%S'." key)
5137 (setq global nil)))
5138 (and inherits
5139 (if (memq inherits old)
5140 (error "Circular inheritance for `%S'" inherits)
5141 (setq local-list
5142 (pr-eval-setting-alist inherits global
5143 (cons inherits old)))))
5144 (mapcar
5145 (cond ((not local) ; global settings
5146 #'(lambda (option)
5147 (let ((var-sym (car option)))
5148 (or (eq var-sym 'inherits-from:)
5149 (set var-sym (eval (cdr option)))))))
5150 (kill ; local settings with killing
5151 #'(lambda (option)
5152 (let ((var-sym (car option)))
5153 (unless (eq var-sym 'inherits-from:)
5154 (setq local-list (cons var-sym local-list))
5155 (set (make-local-variable var-sym)
5156 (eval (cdr option)))))))
5157 (t ; local settings without killing
5158 #'(lambda (option)
5159 (let ((var-sym (car option)))
5160 (or (eq var-sym 'inherits-from:)
5161 (set (make-local-variable var-sym)
5162 (eval (cdr option))))))))
5163 (nthcdr 3 setting))
5164 local-list))))
5167 (defun pr-kill-local-variable (local-var-list)
5168 (mapcar 'kill-local-variable local-var-list))
5171 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5172 ;; Internal Functions (II)
5175 (defun pr-prompt (str)
5176 (if (pr-auto-mode-p)
5177 (concat str " mode")
5178 (pr-region-active-string str)))
5181 (defun pr-prompt-region (str)
5182 (concat str (if (pr-auto-mode-p)
5183 " mode"
5184 " region")))
5187 (defun pr-prompt-gs (str)
5188 (if (pr-using-ghostscript-p)
5189 (concat str " GS")
5190 str))
5193 (defun pr-region-active-symbol (&optional region-p)
5194 (if (or region-p (pr-region-active-p))
5195 'region
5196 'buffer))
5199 (defun pr-region-active-string (prefix)
5200 (concat prefix
5201 (if (pr-region-active-p)
5202 " region"
5203 " buffer")))
5206 (defun pr-show-setup (settings buffer-name)
5207 (with-output-to-temp-buffer buffer-name
5208 (princ settings)
5209 (print-help-return-message)))
5212 (defun pr-complete-alist (prompt alist default)
5213 (let ((collection (mapcar #'(lambda (elt)
5214 (setq elt (car elt))
5215 (cons (symbol-name elt) elt))
5216 alist)))
5217 (cdr (assoc (completing-read (concat prompt ": ")
5218 collection nil t
5219 (symbol-name default) nil
5220 (symbol-name default))
5221 collection))))
5224 (defun pr-delete-file (file)
5225 (and pr-delete-temp-file (file-exists-p file)
5226 (delete-file file)))
5229 (defun pr-expand-file-name (filename)
5230 (pr-dosify-file-name (expand-file-name filename)))
5233 (defun pr-ps-outfile-preprint (&optional mess)
5234 (let* ((prompt (format "%soutput PostScript file name: " (or mess "")))
5235 (res (read-file-name prompt default-directory "" nil)))
5236 (while (cond ((not (file-writable-p res))
5237 (ding)
5238 (setq prompt "is unwritable"))
5239 ((file-directory-p res)
5240 (ding)
5241 (setq prompt "is a directory"))
5242 ((file-exists-p res)
5243 (ding)
5244 (setq prompt "exists")
5245 (not (y-or-n-p (format "File `%s' exists; overwrite? "
5246 res))))
5247 (t nil))
5248 (setq res (read-file-name
5249 (format "File %s; PostScript file: " prompt)
5250 (file-name-directory res) nil nil
5251 (file-name-nondirectory res))))
5252 (pr-expand-file-name res)))
5255 (defun pr-ps-infile-preprint (&optional mess)
5256 (let* ((prompt (format "%sinput PostScript file name: " (or mess "")))
5257 (res (read-file-name prompt default-directory "" nil)))
5258 (while (cond ((not (file-exists-p res))
5259 (ding)
5260 (setq prompt "doesn't exist"))
5261 ((not (file-readable-p res))
5262 (ding)
5263 (setq prompt "is unreadable"))
5264 ((file-directory-p res)
5265 (ding)
5266 (setq prompt "is a directory"))
5267 (t nil))
5268 (setq res (read-file-name
5269 (format "File %s; PostScript file: " prompt)
5270 (file-name-directory res) nil nil
5271 (file-name-nondirectory res))))
5272 (pr-expand-file-name res)))
5275 (defun pr-toggle (var-sym mess entry index horizontal state &optional path)
5276 (set var-sym (not (symbol-value var-sym)))
5277 (message "%s is %s" mess (if (symbol-value var-sym) "on" "off"))
5278 (pr-menu-lock entry index horizontal state path))
5281 (defun pr-ps-utility-args (n-up-sym infile-sym outfile-sym prompt)
5282 ;; n-up
5283 (or (symbol-value n-up-sym)
5284 (set n-up-sym (pr-interactive-n-up prompt)))
5285 (and (eq (symbol-value infile-sym) t)
5286 (set infile-sym (and (not (interactive-p))
5287 (pr-ps-infile-preprint prompt))))
5288 ;; input file
5289 (or (symbol-value infile-sym)
5290 (error "%s: input PostScript file name is missing" prompt))
5291 (set infile-sym (pr-dosify-file-name (symbol-value infile-sym)))
5292 ;; output file
5293 (and (eq (symbol-value outfile-sym) t)
5294 (set outfile-sym (and (not (interactive-p))
5295 current-prefix-arg
5296 (pr-ps-outfile-preprint prompt))))
5297 (and (symbol-value outfile-sym)
5298 (set outfile-sym (pr-dosify-file-name (symbol-value outfile-sym))))
5299 (pr-ps-file (symbol-value outfile-sym)))
5302 (defun pr-ps-utility-process (n-up infile outfile)
5303 (let (item)
5304 (and (stringp infile) (file-exists-p infile)
5305 (setq item (cdr (assq pr-ps-utility pr-ps-utility-alist)))
5306 (pr-call-process (nth 0 item)
5307 (pr-switches-string (nth 1 item)
5308 "pr-ps-utility-alist entry")
5309 (pr-switches-string (nth 8 item)
5310 "pr-ps-utility-alist entry")
5311 (and (nth 2 item)
5312 (format (nth 2 item) ps-paper-type))
5313 (format (nth 3 item) n-up)
5314 (and pr-file-landscape (nth 4 item))
5315 (and pr-file-duplex (nth 5 item))
5316 (and pr-file-tumble (nth 6 item))
5317 (pr-expand-file-name infile)
5318 (nth 7 item)
5319 (pr-expand-file-name outfile)))))
5322 (defun pr-remove-nil-from-list (lst)
5323 (while (and lst (null (car lst)))
5324 (setq lst (cdr lst)))
5325 (let ((b lst)
5326 (l (cdr lst)))
5327 (while l
5328 (if (car l)
5329 (setq b l
5330 l (cdr l))
5331 (setq l (cdr l))
5332 (setcdr b l))))
5333 lst)
5336 (defun pr-call-process (command &rest args)
5337 (let ((buffer (get-buffer-create "*Printing Command Output*"))
5338 (cmd (pr-command command))
5339 status)
5340 (setq args (pr-remove-nil-from-list args))
5341 (save-excursion
5342 (set-buffer buffer)
5343 (goto-char (point-max))
5344 (insert (format "%s %S\n" cmd args)))
5345 (setq status
5346 (condition-case data
5347 (apply 'call-process cmd nil buffer nil args)
5348 ((quit error)
5349 (error-message-string data))))
5350 (save-excursion
5351 (set-buffer buffer)
5352 (goto-char (point-max))
5353 (insert (format "Exit status: %s\n" status)))))
5356 (defun pr-txt-print (from to)
5357 (let ((lpr-command (pr-standard-file-name (pr-command pr-txt-command)))
5358 (lpr-switches (pr-switches pr-txt-switches "pr-txt-switches"))
5359 (printer-name pr-txt-printer))
5360 (lpr-region from to)))
5363 (defun pr-switches-string (switches mess)
5364 (mapconcat 'identity (pr-switches switches mess) " "))
5367 (defun pr-switches (switches mess)
5368 (or (listp switches)
5369 (error "%S should have a list of strings" mess))
5370 (ps-flatten-list ; dynamic evaluation
5371 (mapcar 'ps-eval-switch switches)))
5374 (defun pr-ps-preview (kind n-up filename mess)
5375 (pr-set-n-up-and-filename 'n-up 'filename mess)
5376 (let ((file (pr-ps-file filename)))
5377 (pr-text2ps kind n-up file)
5378 (or pr-spool-p (pr-ps-file-preview file))))
5381 (defun pr-ps-using-ghostscript (kind n-up filename mess)
5382 (pr-set-n-up-and-filename 'n-up 'filename mess)
5383 (let ((file (pr-ps-file filename)))
5384 (pr-text2ps kind n-up file)
5385 (unless (or pr-spool-p filename)
5386 (pr-ps-file-using-ghostscript file)
5387 (pr-delete-file file))))
5390 (defun pr-ps-print (kind n-up filename mess)
5391 (pr-set-n-up-and-filename 'n-up 'filename mess)
5392 (let ((file (pr-ps-file filename)))
5393 (pr-text2ps kind n-up file)
5394 (unless (or pr-spool-p filename)
5395 (pr-ps-file-print file)
5396 (pr-delete-file file))))
5399 (defun pr-ps-file (&optional filename)
5400 (pr-dosify-file-name (or filename
5401 (convert-standard-filename
5402 (expand-file-name pr-ps-temp-file pr-temp-dir)))))
5405 (defun pr-interactive-n-up (mess)
5406 (or (stringp mess) (setq mess "*"))
5407 (save-match-data
5408 (let* ((fmt-prompt "%s[%s] N-up printing: (default 1) ")
5409 (prompt "")
5410 (str (pr-f-read-string (format fmt-prompt prompt mess) "1" nil "1"))
5411 int)
5412 (while (if (string-match "^\\s *[0-9]+$" str)
5413 (setq int (string-to-int str)
5414 prompt (cond ((< int 1) "Integer below 1; ")
5415 ((> int 100) "Integer above 100; ")
5416 (t nil)))
5417 (setq prompt "Invalid integer syntax; "))
5418 (ding)
5419 (setq str
5420 (pr-f-read-string (format fmt-prompt prompt mess) str nil "1")))
5421 int)))
5424 (defun pr-interactive-dir (mess)
5425 (let* ((dir-name (file-name-directory (or (buffer-file-name)
5426 default-directory)))
5427 (fmt-prompt (concat "%s[" mess "] Directory to print: "))
5428 (dir (read-file-name (format fmt-prompt "")
5429 "" dir-name nil dir-name))
5430 prompt)
5431 (while (cond ((not (file-directory-p dir))
5432 (ding)
5433 (setq prompt "It's not a directory! "))
5434 ((not (file-readable-p dir))
5435 (ding)
5436 (setq prompt "Directory is unreadable! "))
5437 (t nil))
5438 (setq dir-name (file-name-directory dir)
5439 dir (read-file-name (format fmt-prompt prompt)
5440 "" dir-name nil dir-name)))
5441 (file-name-as-directory dir)))
5444 (defun pr-interactive-regexp (mess)
5445 (pr-f-read-string (format "[%s] File regexp to print: " mess) "" nil ""))
5448 (defun pr-interactive-dir-args (mess)
5449 (list
5450 ;; get directory argument
5451 (pr-interactive-dir mess)
5452 ;; get file name regexp
5453 (pr-interactive-regexp mess)))
5456 (defun pr-interactive-ps-dir-args (mess)
5457 (list
5458 ;; get n-up argument
5459 (pr-interactive-n-up mess)
5460 ;; get directory argument
5461 (pr-interactive-dir mess)
5462 ;; get file name regexp
5463 (pr-interactive-regexp mess)
5464 ;; get output file name
5465 (and (not pr-spool-p)
5466 (ps-print-preprint current-prefix-arg))))
5469 (defun pr-interactive-n-up-file (mess)
5470 (list
5471 ;; get n-up argument
5472 (pr-interactive-n-up mess)
5473 ;; get output file name
5474 (and (not pr-spool-p)
5475 (ps-print-preprint current-prefix-arg))))
5478 (defun pr-interactive-n-up-inout (mess)
5479 (list
5480 ;; get n-up argument
5481 (pr-interactive-n-up mess)
5482 ;; get input file name
5483 (pr-ps-infile-preprint (concat mess " "))
5484 ;; get output file name
5485 (ps-print-preprint current-prefix-arg)))
5488 (defun pr-set-outfilename (filename-sym)
5489 (and (not pr-spool-p)
5490 (eq (symbol-value filename-sym) t)
5491 (set filename-sym (and (not (interactive-p))
5492 current-prefix-arg
5493 (ps-print-preprint current-prefix-arg))))
5494 (and (symbol-value filename-sym)
5495 (set filename-sym (pr-dosify-file-name (symbol-value filename-sym)))))
5498 (defun pr-set-n-up-and-filename (n-up-sym filename-sym mess)
5499 ;; n-up
5500 (or (symbol-value n-up-sym)
5501 (set n-up-sym (pr-interactive-n-up mess)))
5502 ;; output file
5503 (pr-set-outfilename filename-sym))
5506 (defun pr-set-dir-args (dir-sym regexp-sym mess)
5507 ;; directory
5508 (or (symbol-value dir-sym)
5509 (set dir-sym (pr-interactive-dir mess)))
5510 ;; file name regexp
5511 (or (symbol-value regexp-sym)
5512 (set regexp-sym (pr-interactive-regexp mess))))
5515 (defun pr-set-ps-dir-args (n-up-sym dir-sym regexp-sym filename-sym mess)
5516 ;; n-up
5517 (or (symbol-value n-up-sym)
5518 (set n-up-sym (pr-interactive-n-up mess)))
5519 ;; directory & file name regexp
5520 (pr-set-dir-args dir-sym regexp-sym mess)
5521 ;; output file
5522 (pr-set-outfilename filename-sym))
5525 (defun pr-find-buffer-visiting (file)
5526 (if (not (file-directory-p file))
5527 (find-buffer-visiting (if ps-windows-system
5528 (downcase file)
5529 file))
5530 (let ((truename (file-truename file))
5531 (blist (buffer-list))
5532 found)
5533 (while (and (not found) blist)
5534 (save-excursion
5535 (set-buffer (car blist))
5536 (and (eq major-mode 'dired-mode)
5537 (save-excursion
5538 (goto-char (point-min))
5539 (string= (buffer-substring-no-properties
5540 (+ (point-min) 2)
5541 (progn
5542 (end-of-line)
5543 (1- (point))))
5544 truename))
5545 (setq found (car blist))))
5546 (setq blist (cdr blist)))
5547 found)))
5550 (defun pr-file-list (dir file-regexp fun)
5551 (mapcar #'(lambda (file)
5552 (and (or pr-list-directory
5553 (not (file-directory-p file)))
5554 (let ((buffer (pr-find-buffer-visiting file))
5555 pop-up-windows
5556 pop-up-frames)
5557 (and (or buffer
5558 (file-readable-p file))
5559 (save-excursion
5560 (set-buffer (or buffer
5561 (find-file-noselect file)))
5562 (funcall fun)
5563 (or buffer
5564 (kill-buffer (current-buffer))))))))
5565 (directory-files dir t file-regexp)))
5568 (defun pr-delete-file-if-exists (filename)
5569 (and (not pr-spool-p) (stringp filename) (file-exists-p filename)
5570 (delete-file filename)))
5573 (defun pr-ps-file-list (n-up dir file-regexp filename)
5574 (pr-delete-file-if-exists (setq filename (pr-expand-file-name filename)))
5575 (let ((pr-spool-p t))
5576 (pr-file-list dir file-regexp
5577 #'(lambda ()
5578 (if (pr-auto-mode-p)
5579 (pr-ps-mode n-up filename)
5580 (pr-text2ps 'buffer n-up filename)))))
5581 (or pr-spool-p
5582 (pr-despool-print filename)))
5585 (defun pr-text2ps (kind n-up filename &optional from to)
5586 (let ((ps-n-up-printing n-up)
5587 (ps-spool-config (and (eq ps-spool-config 'setpagedevice)
5588 'setpagedevice)))
5589 (pr-delete-file-if-exists filename)
5590 (cond (pr-faces-p
5591 (cond (pr-spool-p
5592 ;; pr-faces-p and pr-spool-p
5593 ;; here FILENAME arg is ignored
5594 (cond ((eq kind 'buffer)
5595 (ps-spool-buffer-with-faces))
5596 ((eq kind 'region)
5597 (ps-spool-region-with-faces (or from (point))
5598 (or to (mark))))
5600 ;; pr-faces-p and not pr-spool-p
5601 ((eq kind 'buffer)
5602 (ps-print-buffer-with-faces filename))
5603 ((eq kind 'region)
5604 (ps-print-region-with-faces (or from (point))
5605 (or to (mark)) filename))
5607 (pr-spool-p
5608 ;; not pr-faces-p and pr-spool-p
5609 ;; here FILENAME arg is ignored
5610 (cond ((eq kind 'buffer)
5611 (ps-spool-buffer))
5612 ((eq kind 'region)
5613 (ps-spool-region (or from (point)) (or to (mark))))
5615 ;; not pr-faces-p and not pr-spool-p
5616 ((eq kind 'buffer)
5617 (ps-print-buffer filename))
5618 ((eq kind 'region)
5619 (ps-print-region (or from (point)) (or to (mark)) filename))
5623 (defun pr-command (command)
5624 "Return absolute file name specification for COMMAND.
5626 If COMMAND is an empty string, return it.
5628 If COMMAND is already an absolute file name specification, return it.
5629 Else it uses `pr-path-alist' to find COMMAND, if find it then return it;
5630 otherwise, gives an error.
5632 When using `pr-path-alist' to find COMMAND, the entries `cygwin', `windows' and
5633 `unix' are used (see `pr-path-alist' for documentation).
5635 If Emacs is running on Windows 95/98/NT/2000, tries to find COMMAND,
5636 COMMAND.exe, COMMAND.bat and COMMAND.com in this order."
5637 (if (string= command "")
5638 command
5639 (pr-dosify-file-name
5640 (or (pr-find-command command)
5641 (pr-path-command (cond (pr-cygwin-system 'cygwin)
5642 (ps-windows-system 'windows)
5643 (t 'unix))
5644 (file-name-nondirectory command)
5645 nil)
5646 (error "Command not found: %s"
5647 (file-name-nondirectory command))))))
5650 (defun pr-path-command (symbol command sym-list)
5651 (let ((lpath (cdr (assq symbol pr-path-alist)))
5652 cmd)
5653 ;; PATH expansion
5654 (and (eq symbol 'PATH) (null lpath)
5655 (setq lpath (parse-colon-path (getenv "PATH"))))
5656 (while (and lpath
5657 (not
5658 (setq cmd
5659 (let ((path (car lpath)))
5660 (cond
5661 ;; symbol expansion
5662 ((symbolp path)
5663 (and (not (memq path sym-list))
5664 (pr-path-command path command
5665 (cons path sym-list))))
5666 ;; normal path
5667 ((stringp path)
5668 (pr-find-command
5669 (expand-file-name
5670 (substitute-in-file-name
5671 (concat (file-name-as-directory path)
5672 command)))))
5673 )))))
5674 (setq lpath (cdr lpath)))
5675 cmd))
5678 (defun pr-find-command (cmd)
5679 (if ps-windows-system
5680 ;; windows system
5681 (let ((ext (cons (file-name-extension cmd t)
5682 (list ".exe" ".bat" ".com")))
5683 found)
5684 (setq cmd (file-name-sans-extension cmd))
5685 (while (and ext
5686 (setq found (concat cmd (car ext)))
5687 (not (and (file-regular-p found)
5688 (file-executable-p found))))
5689 (setq ext (cdr ext)
5690 found nil))
5691 found)
5692 ;; non-windows systems
5693 (and (file-regular-p cmd)
5694 (file-executable-p cmd)
5695 cmd)))
5698 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5699 ;; Printing Interface (inspired on ps-print-interface.el)
5702 (require 'widget)
5703 (require 'wid-edit)
5704 (require 'cus-edit)
5707 (defvar pr-i-window-configuration nil)
5709 (defvar pr-i-buffer nil)
5710 (defvar pr-i-region nil)
5711 (defvar pr-i-mode nil)
5712 (defvar pr-i-despool nil)
5713 (defvar pr-i-ps-as-is t)
5714 (defvar pr-i-n-up 1)
5715 (defvar pr-i-directory "./")
5716 (defvar pr-i-regexp "")
5717 (defvar pr-i-ps-file "")
5718 (defvar pr-i-out-file "")
5719 (defvar pr-i-answer-yes nil)
5720 (defvar pr-i-process 'buffer)
5721 (defvar pr-i-ps-send 'printer)
5724 (defvar pr-interface-map nil
5725 "Keymap for pr-interface.")
5727 (if pr-interface-map
5729 (setq pr-interface-map (make-sparse-keymap))
5730 (cond ((eq ps-print-emacs-type 'xemacs) ; XEmacs
5731 (pr-f-set-keymap-parents pr-interface-map (list widget-keymap))
5732 (pr-f-set-keymap-name pr-interface-map 'pr-interface-map))
5733 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
5734 (pr-f-set-keymap-parents pr-interface-map widget-keymap)))
5735 (define-key pr-interface-map "q" 'pr-interface-quit)
5736 (define-key pr-interface-map "?" 'pr-interface-help))
5739 (defmacro pr-interface-save (&rest body)
5740 `(save-excursion
5741 (set-buffer pr-i-buffer)
5742 ,@body))
5745 (defun pr-create-interface ()
5746 "Create the front end for printing package."
5747 (setq pr-i-buffer (buffer-name (current-buffer))
5748 pr-i-region (ps-mark-active-p)
5749 pr-i-mode (pr-mode-alist-p)
5750 pr-i-window-configuration (current-window-configuration))
5752 (put 'pr-i-process 'pr-widget-list nil)
5753 (put 'pr-i-ps-send 'pr-widget-list nil)
5755 (delete-other-windows)
5756 (kill-buffer (get-buffer-create pr-buffer-name))
5757 (switch-to-buffer (get-buffer-create pr-buffer-name))
5759 ;; header
5760 (let ((versions (concat "printing v" pr-version
5761 " ps-print v" ps-print-version)))
5762 (widget-insert (make-string (- 79 (length versions)) ?\ ) versions))
5763 (pr-insert-italic "\nCurrent Directory : " 1)
5764 (pr-insert-italic default-directory)
5766 (pr-insert-section-1) ; 1. Print
5767 (pr-insert-section-2) ; 2. PostScript Printer
5768 (pr-insert-section-3) ; 3. Text Printer
5770 ;; separator
5771 (widget-insert "\n\n " (make-string 77 ?-))
5773 (pr-insert-section-4) ; 4. Settings
5774 (pr-insert-section-5) ; 5. Customize
5775 (pr-insert-section-6) ; 6. Show Settings
5776 (pr-insert-section-7) ; 7. Help
5778 (use-local-map pr-interface-map)
5779 (widget-setup)
5780 (goto-char (point-min))
5782 (and pr-i-region ; let region activated
5783 (pr-keep-region-active)))
5786 (defun pr-insert-section-1 ()
5787 ;; 1. Print:
5788 (pr-insert-italic "\nPrint :" 1)
5790 ;; 1a. Buffer:
5791 ;; 1a. Buffer: Buffer List
5792 (pr-insert-radio-button 'pr-i-process 'buffer)
5793 (pr-insert-menu "Buffer List" 'pr-i-buffer
5794 (let ((blist (buffer-list))
5795 case-fold-search choices)
5796 (while blist
5797 (let ((name (buffer-name (car blist)))
5798 (ignore pr-buffer-name-ignore)
5799 found)
5800 (setq blist (cdr blist))
5801 (while (and ignore (not found))
5802 (setq found (string-match (car ignore) name)
5803 ignore (cdr ignore)))
5804 (or found
5805 (setq choices
5806 (cons (list 'quote
5807 (list 'choice-item
5808 :format "%[%t%]"
5809 name))
5810 choices)))))
5811 (nreverse choices))
5812 " Buffer : " nil
5813 '(progn
5814 (pr-interface-save
5815 (setq pr-i-region (ps-mark-active-p)
5816 pr-i-mode (pr-mode-alist-p)))
5817 (pr-update-checkbox 'pr-i-region)
5818 (pr-update-checkbox 'pr-i-mode)))
5819 ;; 1a. Buffer: Region
5820 (put 'pr-i-region 'pr-widget
5821 (pr-insert-checkbox
5822 "\n "
5823 'pr-i-region
5824 #'(lambda (widget &rest ignore)
5825 (let ((region-p (pr-interface-save
5826 (ps-mark-active-p))))
5827 (cond ((null (widget-value widget)) ; widget is nil
5828 (setq pr-i-region nil))
5829 (region-p ; widget is true and there is a region
5830 (setq pr-i-region t)
5831 (widget-value-set widget t)
5832 (widget-setup)) ; MUST be called after widget-value-set
5833 (t ; widget is true and there is no region
5834 (ding)
5835 (message "There is no region active")
5836 (setq pr-i-region nil)
5837 (widget-value-set widget nil)
5838 (widget-setup))))) ; MUST be called after widget-value-set
5839 " Region"))
5840 ;; 1a. Buffer: Mode
5841 (put 'pr-i-mode 'pr-widget
5842 (pr-insert-checkbox
5844 'pr-i-mode
5845 #'(lambda (widget &rest ignore)
5846 (let ((mode-p (pr-interface-save
5847 (pr-mode-alist-p))))
5848 (cond
5849 ((null (widget-value widget)) ; widget is nil
5850 (setq pr-i-mode nil))
5851 (mode-p ; widget is true and there is a `mode'
5852 (setq pr-i-mode t)
5853 (widget-value-set widget t)
5854 (widget-setup)) ; MUST be called after widget-value-set
5855 (t ; widget is true and there is no `mode'
5856 (ding)
5857 (message
5858 "This buffer isn't in a mode that printing treats specially.")
5859 (setq pr-i-mode nil)
5860 (widget-value-set widget nil)
5861 (widget-setup))))) ; MUST be called after widget-value-set
5862 " Mode\n"))
5864 ;; 1b. Directory:
5865 (pr-insert-radio-button 'pr-i-process 'directory)
5866 (widget-create
5867 'directory
5868 :size 58
5869 :format " Directory : %v"
5870 :notify 'pr-interface-directory
5871 :action (lambda (widget &optional event)
5872 (if (pr-interface-directory widget)
5873 (pr-widget-field-action widget event)
5874 (ding)
5875 (message "Please specify a readable directory")))
5876 pr-i-directory)
5877 ;; 1b. Directory: File Regexp
5878 (widget-create 'regexp
5879 :size 58
5880 :format "\n File Regexp : %v\n"
5881 :notify (lambda (widget &rest ignore)
5882 (setq pr-i-regexp (widget-value widget)))
5883 pr-i-regexp)
5884 ;; 1b. Directory: List Directory Entry
5885 (widget-insert " ")
5886 (pr-insert-toggle 'pr-list-directory " List Directory Entry\n")
5888 ;; 1c. PostScript File:
5889 (pr-insert-radio-button 'pr-i-process 'file)
5890 (widget-create
5891 'file
5892 :size 51
5893 :format " PostScript File : %v"
5894 :notify 'pr-interface-infile
5895 :action (lambda (widget &rest event)
5896 (if (pr-interface-infile widget)
5897 (pr-widget-field-action widget event)
5898 (ding)
5899 (message "Please specify a readable PostScript file")))
5900 pr-i-ps-file)
5901 ;; 1c. PostScript File: PostScript Utility
5902 (pr-insert-menu "PostScript Utility" 'pr-ps-utility
5903 (pr-choice-alist pr-ps-utility-alist)
5904 "\n PostScript Utility : "
5905 " ")
5906 ;; 1c. PostScript File: No Preprocessing
5907 (pr-insert-toggle 'pr-i-ps-as-is " No Preprocessing"))
5910 (defun pr-insert-section-2 ()
5911 ;; 2. PostScript Printer:
5912 ;; 2. PostScript Printer: PostScript Printer List
5913 (pr-insert-italic "\n\nPostScript Printer : " 2 20)
5914 (pr-insert-menu "PostScript Printer" 'pr-ps-name
5915 (pr-choice-alist pr-ps-printer-alist))
5916 ;; 2. PostScript Printer: Despool
5917 (put 'pr-i-despool 'pr-widget
5918 (pr-insert-checkbox
5920 'pr-i-despool
5921 #'(lambda (widget &rest ignore)
5922 (if pr-spool-p
5923 (setq pr-i-despool (not pr-i-despool))
5924 (ding)
5925 (message "Can despool only when spooling is actually selected")
5926 (setq pr-i-despool nil))
5927 (widget-value-set widget pr-i-despool)
5928 (widget-setup)) ; MUST be called after widget-value-set
5929 " Despool "))
5930 ;; 2. PostScript Printer: Preview Print Quit
5931 (pr-insert-button 'pr-interface-preview "Preview" " ")
5932 (pr-insert-button 'pr-interface-ps-print "Print" " ")
5933 (pr-insert-button 'pr-interface-quit "Quit")
5934 ;; 2. PostScript Printer: Send to Printer/Temporary File
5935 (pr-insert-radio-button 'pr-i-ps-send 'printer)
5936 (widget-insert " Send to Printer/Temporary File")
5937 ;; 2. PostScript Printer: Send to File
5938 (pr-insert-radio-button 'pr-i-ps-send 'file)
5939 (widget-create
5940 'file
5941 :size 57
5942 :format " Send to File : %v"
5943 :notify 'pr-interface-outfile
5944 :action (lambda (widget &rest event)
5945 (if (and (pr-interface-outfile widget)
5946 (or (not (file-exists-p pr-i-out-file))
5947 (setq pr-i-answer-yes
5948 (y-or-n-p "File exists; overwrite? "))))
5949 (pr-widget-field-action widget event)
5950 (ding)
5951 (message "Please specify a writable PostScript file")))
5952 pr-i-out-file)
5953 ;; 2. PostScript Printer: N-Up
5954 (widget-create
5955 'integer
5956 :size 3
5957 :format "\n N-Up : %v"
5958 :notify (lambda (widget &rest ignore)
5959 (let ((value (if (string= (widget-apply widget :value-get) "")
5961 (widget-value widget))))
5962 (if (and (integerp value)
5963 (<= 1 value) (<= value 100))
5964 (progn
5965 (message " ")
5966 (setq pr-i-n-up value))
5967 (ding)
5968 (message "Please specify an integer between 1 and 100"))))
5969 pr-i-n-up))
5972 (defun pr-insert-section-3 ()
5973 ;; 3. Text Printer:
5974 (pr-insert-italic "\n\nText Printer : " 2 14)
5975 (pr-insert-menu "Text Printer" 'pr-txt-name
5976 (pr-choice-alist pr-txt-printer-alist)
5977 nil " ")
5978 (pr-insert-button 'pr-interface-printify "Printify" " ")
5979 (pr-insert-button 'pr-interface-txt-print "Print" " ")
5980 (pr-insert-button 'pr-interface-quit "Quit"))
5983 (defun pr-insert-section-4 ()
5984 ;; 4. Settings:
5985 ;; 4. Settings: Landscape Auto Region Verbose
5986 (pr-insert-checkbox "\n\n " 'ps-landscape-mode
5987 #'(lambda (&rest ignore)
5988 (setq ps-landscape-mode (not ps-landscape-mode)
5989 pr-file-landscape ps-landscape-mode))
5990 " Landscape ")
5991 (pr-insert-toggle 'pr-auto-region " Auto Region ")
5992 (pr-insert-toggle 'pr-buffer-verbose " Verbose\n ")
5994 ;; 4. Settings: Print Header Auto Mode
5995 (pr-insert-toggle 'ps-print-header " Print Header ")
5996 (pr-insert-toggle 'pr-auto-mode " Auto Mode\n ")
5998 ;; 4. Settings: Print Header Frame Menu Lock
5999 (pr-insert-toggle 'ps-print-header-frame " Print Header Frame ")
6000 (pr-insert-toggle 'pr-menu-lock " Menu Lock\n ")
6002 ;; 4. Settings: Line Number
6003 (pr-insert-toggle 'ps-line-number " Line Number\n ")
6005 ;; 4. Settings: Zebra Stripes Spool Buffer
6006 (pr-insert-toggle 'ps-zebra-stripes " Zebra Stripes")
6007 (pr-insert-checkbox " "
6008 'pr-spool-p
6009 #'(lambda (&rest ignore)
6010 (setq pr-spool-p (not pr-spool-p))
6011 (unless pr-spool-p
6012 (setq pr-i-despool nil)
6013 (pr-update-checkbox 'pr-i-despool)))
6014 " Spool Buffer")
6016 ;; 4. Settings: Duplex Print with faces
6017 (pr-insert-checkbox "\n "
6018 'ps-spool-duplex
6019 #'(lambda (&rest ignore)
6020 (setq ps-spool-duplex (not ps-spool-duplex)
6021 pr-file-duplex ps-spool-duplex))
6022 " Duplex ")
6023 (pr-insert-toggle 'pr-faces-p " Print with faces")
6025 ;; 4. Settings: Tumble Print via Ghostscript
6026 (pr-insert-checkbox "\n "
6027 'ps-spool-tumble
6028 #'(lambda (&rest ignore)
6029 (setq ps-spool-tumble (not ps-spool-tumble)
6030 pr-file-tumble ps-spool-tumble))
6031 " Tumble ")
6032 (pr-insert-toggle 'pr-print-using-ghostscript " Print via Ghostscript\n ")
6034 ;; 4. Settings: Upside-Down Page Parity
6035 (pr-insert-toggle 'ps-print-upside-down " Upside-Down")
6036 (pr-insert-italic "\n\nSelect Pages : " 2 14)
6037 (pr-insert-menu "Page Parity" 'ps-even-or-odd-pages
6038 (mapcar #'(lambda (alist)
6039 (list 'quote
6040 (list 'choice-item
6041 :format "%[%t%]"
6042 :tag (cdr alist)
6043 :value (car alist))))
6044 pr-even-or-odd-alist)))
6047 (defun pr-insert-section-5 ()
6048 ;; 5. Customize:
6049 (pr-insert-italic "\n\nCustomize : " 2 11)
6050 (pr-insert-button 'pr-customize "printing" " ")
6051 (pr-insert-button #'(lambda (&rest ignore) (ps-print-customize))
6052 "ps-print" " ")
6053 (pr-insert-button 'lpr-customize "lpr"))
6056 (defun pr-insert-section-6 ()
6057 ;; 6. Show Settings:
6058 (pr-insert-italic "\nShow Settings : " 1 14)
6059 (pr-insert-button 'pr-show-pr-setup "printing" " ")
6060 (pr-insert-button 'pr-show-ps-setup "ps-print" " ")
6061 (pr-insert-button 'pr-show-lpr-setup "lpr"))
6064 (defun pr-insert-section-7 ()
6065 ;; 7. Help:
6066 (pr-insert-italic "\nHelp : " 1 5)
6067 (pr-insert-button 'pr-interface-help "Interface Help" " ")
6068 (pr-insert-button 'pr-help "Menu Help" " ")
6069 (pr-insert-button 'pr-interface-quit "Quit" "\n ")
6070 (pr-insert-button 'pr-kill-help "Kill All Printing Help Buffer"))
6073 (defun pr-kill-help (&rest ignore)
6074 "Kill all printing help buffer."
6075 (interactive)
6076 (let ((help '("*Printing Interface Help*" "*Printing Help*"
6077 "*LPR Setup*" "*PR Setup*" "*PS Setup*")))
6078 (while help
6079 (let ((buffer (get-buffer (car help))))
6080 (setq help (cdr help))
6081 (when buffer
6082 (delete-windows-on buffer)
6083 (kill-buffer buffer)))))
6084 (recenter (- (window-height) 2)))
6087 (defun pr-interface-quit (&rest ignore)
6088 "Kill the printing buffer interface and quit."
6089 (interactive)
6090 (kill-buffer pr-buffer-name)
6091 (set-window-configuration pr-i-window-configuration))
6094 (defun pr-interface-help (&rest ignore)
6095 "printing buffer interface help."
6096 (interactive)
6097 (pr-show-setup pr-interface-help-message "*Printing Interface Help*"))
6100 (defun pr-interface-txt-print (&rest ignore)
6101 "Print using lpr package."
6102 (interactive)
6103 (condition-case data
6104 (cond
6105 ((eq pr-i-process 'directory)
6106 (pr-i-directory)
6107 (pr-interface-save
6108 (pr-txt-directory pr-i-directory pr-i-regexp)))
6109 ((eq pr-i-process 'buffer)
6110 (pr-interface-save
6111 (cond (pr-i-region
6112 (let ((pr-auto-mode pr-i-mode))
6113 (pr-txt-region)))
6114 (pr-i-mode
6115 (let (pr-auto-region)
6116 (pr-txt-mode)))
6118 (let (pr-auto-mode pr-auto-region)
6119 (pr-txt-buffer)))
6121 ((eq pr-i-process 'file)
6122 (error "Please specify a text file"))
6124 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6126 ;; handlers
6127 ((quit error)
6128 (ding)
6129 (message (error-message-string data)))))
6132 (defun pr-interface-printify (&rest ignore)
6133 "Printify a buffer."
6134 (interactive)
6135 (condition-case data
6136 (cond
6137 ((eq pr-i-process 'directory)
6138 (pr-i-directory)
6139 (pr-interface-save
6140 (pr-printify-directory pr-i-directory pr-i-regexp)))
6141 ((eq pr-i-process 'buffer)
6142 (pr-interface-save
6143 (if pr-i-region
6144 (pr-printify-region)
6145 (pr-printify-buffer))))
6146 ((eq pr-i-process 'file)
6147 (error "Cannot printify a PostScript file"))
6149 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6151 ;; handlers
6152 ((quit error)
6153 (ding)
6154 (message (error-message-string data)))))
6157 (defun pr-interface-ps-print (&rest ignore)
6158 "Print using ps-print package."
6159 (interactive)
6160 (pr-interface-ps 'pr-despool-ps-print 'pr-ps-directory-ps-print
6161 'pr-ps-file-ps-print 'pr-ps-file-up-ps-print
6162 'pr-ps-region-ps-print 'pr-ps-mode-ps-print
6163 'pr-ps-buffer-ps-print))
6166 (defun pr-interface-preview (&rest ignore)
6167 "Preview a PostScript file."
6168 (interactive)
6169 (pr-interface-ps 'pr-despool-preview 'pr-ps-directory-preview
6170 'pr-ps-file-preview 'pr-ps-file-up-preview
6171 'pr-ps-region-preview 'pr-ps-mode-preview
6172 'pr-ps-buffer-preview))
6175 (defun pr-interface-ps (ps-despool ps-directory ps-file ps-file-up ps-region
6176 ps-mode ps-buffer)
6177 (condition-case data
6178 (let ((outfile (or (and (eq pr-i-process 'file) pr-i-ps-as-is)
6179 (pr-i-ps-send))))
6180 (cond
6181 ((and pr-i-despool pr-spool-p)
6182 (pr-interface-save
6183 (funcall ps-despool outfile))
6184 (setq pr-i-despool nil)
6185 (pr-update-checkbox 'pr-i-despool))
6186 ((eq pr-i-process 'directory)
6187 (pr-i-directory)
6188 (pr-interface-save
6189 (funcall ps-directory
6190 pr-i-n-up pr-i-directory pr-i-regexp outfile)))
6191 ((eq pr-i-process 'file)
6192 (cond ((or (file-directory-p pr-i-ps-file)
6193 (not (file-readable-p pr-i-ps-file)))
6194 (error "Please specify a readable PostScript file"))
6195 (pr-i-ps-as-is
6196 (pr-interface-save
6197 (funcall ps-file pr-i-ps-file)))
6199 (pr-interface-save
6200 (funcall ps-file-up pr-i-n-up pr-i-ps-file outfile)))
6202 ((eq pr-i-process 'buffer)
6203 (pr-interface-save
6204 (cond (pr-i-region
6205 (let ((pr-auto-mode pr-i-mode))
6206 (funcall ps-region pr-i-n-up outfile)))
6207 (pr-i-mode
6208 (let (pr-auto-region)
6209 (funcall ps-mode pr-i-n-up outfile)))
6211 (let (pr-auto-mode pr-auto-region)
6212 (funcall ps-buffer pr-i-n-up outfile)))
6215 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6217 ;; handlers
6218 ((quit error)
6219 (ding)
6220 (message (error-message-string data)))))
6223 (defun pr-i-ps-send ()
6224 (cond ((eq pr-i-ps-send 'printer)
6225 nil)
6226 ((not (eq pr-i-ps-send 'file))
6227 (error "Internal error: `pr-i-ps-send' = %S" pr-i-ps-send))
6228 ((or (file-directory-p pr-i-out-file)
6229 (not (file-writable-p pr-i-out-file)))
6230 (error "Please specify a writable PostScript file"))
6231 ((or (not (file-exists-p pr-i-out-file))
6232 pr-i-answer-yes
6233 (setq pr-i-answer-yes
6234 (y-or-n-p (format "File `%s' exists; overwrite? "
6235 pr-i-out-file))))
6236 pr-i-out-file)
6238 (error "File already exists"))))
6241 (defun pr-i-directory ()
6242 (or (and (file-directory-p pr-i-directory)
6243 (file-readable-p pr-i-directory))
6244 (error "Please specify be a readable directory")))
6247 (defun pr-interface-directory (widget &rest ignore)
6248 (and pr-buffer-verbose
6249 (message "You can use M-TAB or ESC TAB for file completion"))
6250 (let ((dir (widget-value widget)))
6251 (and (file-directory-p dir)
6252 (file-readable-p dir)
6253 (setq pr-i-directory dir))))
6256 (defun pr-interface-infile (widget &rest ignore)
6257 (and pr-buffer-verbose
6258 (message "You can use M-TAB or ESC TAB for file completion"))
6259 (let ((file (widget-value widget)))
6260 (and (not (file-directory-p file))
6261 (file-readable-p file)
6262 (setq pr-i-ps-file file))))
6265 (defun pr-interface-outfile (widget &rest ignore)
6266 (setq pr-i-answer-yes nil)
6267 (and pr-buffer-verbose
6268 (message "You can use M-TAB or ESC TAB for file completion"))
6269 (let ((file (widget-value widget)))
6270 (and (not (file-directory-p file))
6271 (file-writable-p file)
6272 (setq pr-i-out-file file))))
6275 (defun pr-widget-field-action (widget event)
6276 (and (get-buffer "*Completions*") ; clean frame window
6277 (delete-windows-on "*Completions*"))
6278 (message " ") ; clean echo area
6279 (widget-field-action widget event))
6282 (defun pr-insert-italic (str &optional from to)
6283 (let ((len (length str)))
6284 (put-text-property (if from (max from 0) 0)
6285 (if to (max to len) len)
6286 'face 'italic str)
6287 (widget-insert str)))
6290 (defun pr-insert-checkbox (before var-sym fun label)
6291 (widget-insert before)
6292 (prog1
6293 (widget-create 'checkbox
6294 :notify fun
6295 (symbol-value var-sym))
6296 (widget-insert label)))
6299 (defun pr-insert-toggle (var-sym label)
6300 (widget-create 'checkbox
6301 :notify `(lambda (&rest ignore)
6302 (setq ,var-sym (not ,var-sym)))
6303 (symbol-value var-sym))
6304 (widget-insert label))
6307 (defun pr-insert-button (fun label &optional separator)
6308 (widget-create 'push-button
6309 :notify fun
6310 label)
6311 (and separator
6312 (widget-insert separator)))
6315 (defun pr-insert-menu (tag var-sym choices &optional before after &rest body)
6316 (and before (widget-insert before))
6317 (eval `(widget-create 'menu-choice
6318 :tag ,tag
6319 :format "%v"
6320 :inline t
6321 :value ,var-sym
6322 :notify (lambda (widget &rest ignore)
6323 (setq ,var-sym (widget-value widget))
6324 ,@body)
6325 :void '(choice-item :format "%[%t%]"
6326 :tag "Can not display value!")
6327 ,@choices))
6328 (and after (widget-insert after)))
6331 (defun pr-insert-radio-button (var-sym sym)
6332 (widget-insert "\n")
6333 (let ((wid-list (get var-sym 'pr-widget-list))
6334 (wid (eval `(widget-create
6335 'radio-button
6336 :format " %[%v%]"
6337 :value (eq ,var-sym (quote ,sym))
6338 :notify (lambda (&rest ignore)
6339 (setq ,var-sym (quote ,sym))
6340 (pr-update-radio-button (quote ,var-sym)))))))
6341 (put var-sym 'pr-widget-list (cons (cons wid sym) wid-list))))
6344 (defun pr-update-radio-button (var-sym)
6345 (let ((wid-list (get var-sym 'pr-widget-list)))
6346 (while wid-list
6347 (let ((wid (car (car wid-list)))
6348 (value (cdr (car wid-list))))
6349 (setq wid-list (cdr wid-list))
6350 (widget-value-set wid (eq (symbol-value var-sym) value))))
6351 (widget-setup)))
6354 (defun pr-update-checkbox (var-sym)
6355 (let ((wid (get var-sym 'pr-widget)))
6356 (when wid
6357 (widget-value-set wid (symbol-value var-sym))
6358 (widget-setup))))
6361 (defun pr-choice-alist (alist)
6362 (let ((max (apply 'max (mapcar #'(lambda (alist)
6363 (length (symbol-name (car alist))))
6364 alist))))
6365 (mapcar #'(lambda (alist)
6366 (let* ((sym (car alist))
6367 (name (symbol-name sym)))
6368 (list
6369 'quote
6370 (list
6371 'choice-item
6372 :format "%[%t%]"
6373 :tag (concat name
6374 (make-string (- max (length name)) ?_))
6375 :value sym))))
6376 alist)))
6379 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6382 (pr-update-menus t)
6385 (provide 'printing)
6388 ;;; arch-tag: 9ce9ac3f-0f60-4370-900b-1943215d9d18
6389 ;;; printing.el ends here