(Finteractive_form): Doc fix.
[emacs.git] / lisp / printing.el
blob08303e0595d1f73eb2884651ff2fa1d10e729d06
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/07/20 21:44:43 vinicius>
9 ;; Keywords: wp, print, PostScript
10 ;; Version: 6.8
11 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
13 (defconst pr-version "6.8"
14 "printing.el, v 6.8 <2004/07/12 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, take a glance of printing documentation only to have an idea
129 ;; of what `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 more in deep. You can do
136 ;; this by typing C-h v pr-ps-name RET (for example) if you already loaded
137 ;; printing 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).
263 ;; Using `printing'
264 ;; ----------------
266 ;; To use `printing' insert in your ~/.emacs file (or c:/_emacs, if you're
267 ;; using Windows 9x/NT or MS-DOS):
269 ;; (require 'printing)
271 ;; When `printing' is loaded:
272 ;; * On Emacs 20:
273 ;; it replaces the Tools/Print menu by Tools/Printing menu.
274 ;; * On Emacs 21:
275 ;; it replaces the File/Print* menu entries by File/Print menu.
276 ;; Please, see section Menu Layout below for menu explanation.
278 ;; To use `printing' utilities you can use the Printing menu options, type M-x
279 ;; followed by one of the commands below, or type a key associated with the
280 ;; command you want (if there is a key binding).
282 ;; `printing' has the following commands:
284 ;; pr-interface
285 ;; pr-ps-directory-preview
286 ;; pr-ps-directory-using-ghostscript
287 ;; pr-ps-directory-print
288 ;; pr-ps-directory-ps-print
289 ;; pr-ps-buffer-preview
290 ;; pr-ps-buffer-using-ghostscript
291 ;; pr-ps-buffer-print
292 ;; pr-ps-buffer-ps-print
293 ;; pr-ps-region-preview
294 ;; pr-ps-region-using-ghostscript
295 ;; pr-ps-region-print
296 ;; pr-ps-region-ps-print
297 ;; pr-ps-mode-preview
298 ;; pr-ps-mode-using-ghostscript
299 ;; pr-ps-mode-print
300 ;; pr-ps-mode-ps-print
301 ;; pr-ps-file-preview
302 ;; pr-ps-file-up-preview
303 ;; pr-ps-file-using-ghostscript
304 ;; pr-ps-file-print
305 ;; pr-ps-file-ps-print
306 ;; pr-ps-file-up-ps-print
307 ;; pr-ps-fast-fire
308 ;; pr-despool-preview
309 ;; pr-despool-using-ghostscript
310 ;; pr-despool-print
311 ;; pr-despool-ps-print
312 ;; pr-printify-directory
313 ;; pr-printify-buffer
314 ;; pr-printify-region
315 ;; pr-txt-directory
316 ;; pr-txt-buffer
317 ;; pr-txt-region
318 ;; pr-txt-mode
319 ;; pr-txt-fast-fire
320 ;; pr-toggle-file-duplex
321 ;; pr-toggle-file-tumble
322 ;; pr-toggle-file-landscape
323 ;; pr-toggle-ghostscript
324 ;; pr-toggle-faces
325 ;; pr-toggle-spool
326 ;; pr-toggle-duplex
327 ;; pr-toggle-tumble
328 ;; pr-toggle-landscape
329 ;; pr-toggle-upside-down
330 ;; pr-toggle-line
331 ;; pr-toggle-zebra
332 ;; pr-toggle-header
333 ;; pr-toggle-lock
334 ;; pr-toggle-region
335 ;; pr-toggle-mode
336 ;; pr-customize
337 ;; lpr-customize
338 ;; pr-help
339 ;; pr-ps-name
340 ;; pr-txt-name
341 ;; pr-ps-utility
342 ;; pr-show-ps-setup
343 ;; pr-show-pr-setup
344 ;; pr-show-lpr-setup
346 ;; The general meanings of above commands are:
348 ;; PREFIX:
349 ;; `pr-interface' buffer interface for printing package.
350 ;; `pr-help' help for printing package.
351 ;; `pr-ps-name' interactively select a PostScript printer.
352 ;; `pr-txt-name' interactively select a text printer.
353 ;; `pr-ps-utility' interactively select a PostScript utility.
354 ;; `pr-show-*-setup' show current settings.
355 ;; `pr-ps-*' deal with PostScript code generation.
356 ;; `pr-txt-*' deal with text generation.
357 ;; `pr-toggle-*' toggle on/off some boolean variable.
358 ;; `pr-despool-*' despool the PostScript spooling buffer.
359 ;; `pr-printify-*' replace nonprintable ASCII by printable ASCII
360 ;; representation.
362 ;; SUFFIX:
363 ;; `*-customize' customization.
364 ;; `*-preview' preview a PostScript file.
365 ;; `*-using-ghostscript' use ghostscript to print.
366 ;; `*-fast-fire' fast fire command (see it for documentation).
367 ;; `*-print' send PostScript directly to printer.
368 ;; `*-ps-print' send PostScript directly to printer or use
369 ;; ghostscript to print. It depends on
370 ;; `pr-print-using-ghostscript' option.
372 ;; INFIX/SUFFIX:
373 ;; `*-directory*' process a directory.
374 ;; `*-buffer*' process a buffer.
375 ;; `*-region*' process a region.
376 ;; `*-mode*' process a major mode (see explanation below).
377 ;; `*-file-*' process a PostScript file.
378 ;; `*-file-up-*' process a PostScript file using a filter utility.
380 ;; Here are some examples:
382 ;; `pr-ps-buffer-using-ghostscript'
383 ;; Use ghostscript to print a buffer.
385 ;; `pr-ps-file-print'
386 ;; Print a PostScript file.
388 ;; `pr-toggle-spool'
389 ;; Toggle spooling buffer.
391 ;; So you can preview through ghostview, use ghostscript to print (if you don't
392 ;; have a PostScript printer) or send directly to printer a PostScript code
393 ;; generated by `ps-print' package.
395 ;; Besides operating one buffer or region each time, you also can postpone
396 ;; previewing or printing by saving the PostScript code generated in a
397 ;; temporary Emacs buffer. This way you can save banner pages between
398 ;; successive printing. You can toggle on/off spooling by invoking
399 ;; `pr-toggle-spool' interactively or through menu bar.
401 ;; If you type, for example:
403 ;; C-u M-x pr-ps-buffer-print RET
405 ;; The `pr-ps-buffer-print' command prompts you for a n-up printing number and
406 ;; a file name, and save the PostScript code generated to the file name instead
407 ;; of sending to printer.
409 ;; This behavior is similar with the commands that deal with PostScript code
410 ;; generation, that is, with `pr-ps-*' and `pr-despool-*' commands. If
411 ;; spooling is on, only `pr-despool-*' commands prompt for a file name and save
412 ;; the PostScript code spooled in this file.
414 ;; Besides the behavior described above, the `*-directory*' commands also
415 ;; prompt for a directory and a file name regexp. So, it's possible to process
416 ;; all or certain files on a directory at once (see also documentation for
417 ;; `pr-list-directory').
419 ;; `printing' has also a special way to handle some major mode through
420 ;; `*-mode*' commands. So it's possible to customize a major mode printing,
421 ;; it's only needed to declare the customization in `pr-mode-alist' (see
422 ;; section Options) and invoke some of `*-mode*' commands. An example for
423 ;; major mode usage is when you're using gnus (or mh, or rmail, etc.) and
424 ;; you're in the *Summary* buffer, if you forget to switch to the *Article*
425 ;; buffer before printing, you'll get a nicely formatted list of article
426 ;; subjects shows up at the printer. With major mode printing you don't need
427 ;; to switch from gnus *Summary* buffer first.
429 ;; Current global keyboard mapping for GNU Emacs is:
431 ;; (global-set-key [print] 'pr-ps-fast-fire)
432 ;; (global-set-key [M-print] 'pr-ps-mode-using-ghostscript)
433 ;; (global-set-key [C-print] 'pr-txt-fast-fire)
435 ;; And for XEmacs is:
437 ;; (global-set-key 'f22 'pr-ps-fast-fire)
438 ;; (global-set-key '(meta f22) 'pr-ps-mode-using-ghostscript)
439 ;; (global-set-key '(control f22) 'pr-txt-fast-fire)
441 ;; As a suggestion of global keyboard mapping for some `printing' commands:
443 ;; (global-set-key "\C-ci" 'pr-interface)
444 ;; (global-set-key "\C-cbp" 'pr-ps-buffer-print)
445 ;; (global-set-key "\C-cbx" 'pr-ps-buffer-preview)
446 ;; (global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
447 ;; (global-set-key "\C-crp" 'pr-ps-region-print)
448 ;; (global-set-key "\C-crx" 'pr-ps-region-preview)
449 ;; (global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
452 ;; Options
453 ;; -------
455 ;; Below it's shown a brief description of `printing' options, please, see the
456 ;; options declaration in the code for a long documentation.
458 ;; `pr-path-style' Specify which path style to use for external
459 ;; commands.
461 ;; `pr-path-alist' Specify an alist for command paths.
463 ;; `pr-txt-name' Specify a printer for printing a text file.
465 ;; `pr-txt-printer-alist' Specify an alist of all text printers.
467 ;; `pr-ps-name' Specify a printer for printing a PostScript
468 ;; file.
470 ;; `pr-ps-printer-alist' Specify an alist for all PostScript printers.
472 ;; `pr-temp-dir' Specify a directory for temporary files during
473 ;; printing.
475 ;; `pr-ps-temp-file' Specify PostScript temporary file name.
477 ;; `pr-gv-command' Specify path and name of the gsview/gv
478 ;; utility.
480 ;; `pr-gs-command' Specify path and name of the ghostscript
481 ;; utility.
483 ;; `pr-gs-switches' Specify ghostscript switches.
485 ;; `pr-gs-device' Specify ghostscript device switch value.
487 ;; `pr-gs-resolution' Specify ghostscript resolution switch value.
489 ;; `pr-print-using-ghostscript' Non-nil means print using ghostscript.
491 ;; `pr-faces-p' Non-nil means print with face attributes.
493 ;; `pr-spool-p' Non-nil means spool printing in a buffer.
495 ;; `pr-file-landscape' Non-nil means print PostScript file in
496 ;; landscape orientation.
498 ;; `pr-file-duplex' Non-nil means print PostScript file in duplex
499 ;; mode.
501 ;; `pr-file-tumble' Non-nil means print PostScript file in tumble
502 ;; mode.
504 ;; `pr-auto-region' Non-nil means region is automagically detected.
506 ;; `pr-auto-mode' Non-nil means major-mode specific printing is
507 ;; prefered over normal printing.
509 ;; `pr-mode-alist' Specify an alist for a major-mode and printing
510 ;; function.
512 ;; `pr-ps-utility' Specify PostScript utility processing.
514 ;; `pr-ps-utility-alist' Specify an alist for PostScript utility
515 ;; processing.
517 ;; `pr-menu-lock' Non-nil means menu is locked while selecting
518 ;; toggle options.
520 ;; `pr-menu-char-height' Specify menu char height in pixels.
522 ;; `pr-menu-char-width' Specify menu char width in pixels.
524 ;; `pr-setting-database' Specify an alist for settings in general.
526 ;; `pr-visible-entry-list' Specify a list of Printing menu visible
527 ;; entries.
529 ;; `pr-delete-temp-file' Non-nil means delete temporary files.
531 ;; `pr-list-directory' Non-nil means list directory when processing a
532 ;; directory.
534 ;; `pr-buffer-name' Specify the name of the buffer interface for
535 ;; printing package.
537 ;; `pr-buffer-name-ignore' Specify a regexp list for buffer names to be
538 ;; ignored in interface buffer.
540 ;; `pr-buffer-verbose' Non-nil means to be verbose when editing a
541 ;; field in interface buffer.
543 ;; To set the above options you may:
545 ;; a) insert the code in your ~/.emacs, like:
547 ;; (setq pr-faces-p t)
549 ;; This way always keep your default settings when you enter a new Emacs
550 ;; session.
552 ;; b) or use `set-variable' in your Emacs session, like:
554 ;; M-x set-variable RET pr-faces-p RET t RET
556 ;; This way keep your settings only during the current Emacs session.
558 ;; c) or use customization, for example:
559 ;; click on menu-bar *Help* option,
560 ;; then click on *Customize*,
561 ;; then click on *Browse Customization Groups*,
562 ;; expand *PostScript* group,
563 ;; expand *Printing* group
564 ;; and then customize `printing' options.
565 ;; Through this way, you may choose if the settings are kept or not when
566 ;; you leave out the current Emacs session.
568 ;; d) or see the option value:
570 ;; C-h v pr-faces-p RET
572 ;; and click the *customize* hypertext button.
573 ;; Through this way, you may choose if the settings are kept or not when
574 ;; you leave out the current Emacs session.
576 ;; e) or invoke:
578 ;; M-x pr-customize RET
580 ;; and then customize `printing' options.
581 ;; Through this way, you may choose if the settings are kept or not when
582 ;; you leave out the current Emacs session.
584 ;; f) or use menu bar, for example:
585 ;; click on menu-bar *File* option,
586 ;; then click on *Printing*,
587 ;; then click on *Customize*,
588 ;; then click on *printing*
589 ;; and then customize `printing' options.
590 ;; Through this way, you may choose if the settings are kept or not when
591 ;; you leave out the current Emacs session.
594 ;; Menu Layout
595 ;; -----------
597 ;; The `printing' menu (Tools/Printing or File/Print) has the following layout:
599 ;; +-----------------------------+
600 ;; A 0 | Printing Interface |
601 ;; +-----------------------------+ +-A---------+ +-B------+
602 ;; I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
603 ;; 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
604 ;; 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
605 ;; +-----------------------------+ |Mode >|-- B |Other...|
606 ;; II 4 | Printify >|-----\ |File >|--\ +--------+
607 ;; 5 | Print >|---\ | |Despool... | |
608 ;; 6 | Text Printer: name >|-\ | | +-----------+ |
609 ;; +-----------------------------+ | | | +---------+ +------------+
610 ;; III 7 |[ ]Landscape | | | \-|Directory| | No Prep... | Ia
611 ;; 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
612 ;; 9 |[ ]Print Header Frame | | | |Region | | name >|- C
613 ;; 10 |[ ]Line Number | | | +---------+ +------------+
614 ;; 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
615 ;; 12 |[ ]Duplex | | \---|Directory| | 2-up... |
616 ;; 13 |[ ]Tumble | \--\ |Buffer | | 4-up... |
617 ;; 14 |[ ]Upside-Down | | |Region | | Other... |
618 ;; 15 | Print All Pages >|--\ | |Mode | +------------+
619 ;; +-----------------------------+ | | +---------+ |[ ]Landscape| Id
620 ;; IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
621 ;; 17 |[ ]Print with faces | | \--|( )name A| |[ ]Tumble | If
622 ;; 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
623 ;; +-----------------------------+ | |... |
624 ;; V 19 |[ ]Auto Region | | |(*)name |
625 ;; 20 |[ ]Auto Mode | | |... |
626 ;; 21 |[ ]Menu Lock | | +---------+ +--------------+
627 ;; +-----------------------------+ \------------------|(*)All Pages |
628 ;; VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
629 ;; 23 | Show Settings >|-------|printing| |( )Odd Pages |
630 ;; 24 | Help | |ps-print| |( )Even Sheets|
631 ;; +-----------------------------+ |lpr | |( )Odd Sheets |
632 ;; +--------+ +--------------+
634 ;; See `pr-visible-entry-list' for hiding some parts of the menu.
636 ;; The menu has the following sections:
638 ;; A. Interface:
640 ;; 0. You can use a buffer interface instead of menus. It looks like the
641 ;; customization buffer. Basically, it has the same options found in the
642 ;; menu and some extra options, all this on a buffer.
644 ;; I. PostScript printing:
646 ;; 1. You can generate a PostScript file (if you type C-u before activating
647 ;; menu) or PostScript temporary file for a directory, a buffer, a region
648 ;; or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
649 ;; after file generation, ghostview is activated using the file generated
650 ;; as argument. This option is disabled if spooling is on (option 16).
651 ;; Also, if you already have a PostScript file you can preview it.
652 ;; Instead of previewing each buffer, region or major mode at once, you
653 ;; can save temporarily the PostScript code generated in a buffer and
654 ;; preview it later. The option `Despool...' despools the PostScript
655 ;; spooling buffer in a temporary file and uses ghostview to preview it.
656 ;; If you type C-u before choosing this option, the PostScript code
657 ;; generated is saved in a file instead of saving in a temporary file.
658 ;; To spool the PostScript code generated you need to turn on the option
659 ;; 16. The option `Despool...' is enabled if spooling is on (option
660 ;; 16).
662 ;; NOTE 1: It's possible to customize a major mode printing, just declare
663 ;; the customization in `pr-mode-alist' and invoke some of
664 ;; `*-mode*' commands or select Mode option in Printing menu. An
665 ;; example for major mode usage is when you're using gnus (or mh,
666 ;; or rmail, etc.) and you're in the *Summary* buffer, if you
667 ;; forget to switch to the *Article* buffer before printing,
668 ;; you'll get a nicely formatted list of article subjects shows
669 ;; up at the printer. With major mode printing you don't need to
670 ;; switch from gnus *Summary* buffer first.
672 ;; NOTE 2: There are the following options for PostScript file
673 ;; processing:
674 ;; Ia. Print the file *No Preprocessing*, that is, send it
675 ;; directly to PostScript printer.
676 ;; Ib. PostScript utility processing selection.
677 ;; See `pr-ps-utility-alist' and `pr-setting-database' for
678 ;; documentation.
679 ;; Ic. Do n-up processing before printing.
680 ;; Id. Toggle on/off landscape for PostScript file processing.
681 ;; Ie. Toggle on/off duplex for PostScript file processing.
682 ;; If. Toggle on/off tumble for PostScript file processing.
684 ;; NOTE 3: Don't forget to download and install the utilities declared on
685 ;; `pr-ps-utility-alist'.
687 ;; 2. Operate the same way as option 1, but it sends directly the PostScript
688 ;; code (or put in a file, if you've typed C-u) or it uses ghostscript to
689 ;; print the PostScript file generated. It depends on option 18, if it's
690 ;; turned on, it uses ghostscript; otherwise, it sends directly to
691 ;; printer. If spooling is on (option 16), the PostScript code is saved
692 ;; temporarily in a buffer instead of printing it or saving it in a file.
693 ;; Also, if you already have a PostScript file you can print it. Instead
694 ;; of printing each buffer, region or major mode at once, you can save
695 ;; temporarily the PostScript code generated in a buffer and print it
696 ;; later. The option `Despool...' despools the PostScript spooling
697 ;; buffer directly on a printer. If you type C-u before choosing this
698 ;; option, the PostScript code generated is saved in a file instead of
699 ;; sending to printer. To spool the PostScript code generated you need
700 ;; to turn on the option 16. This option is enabled if spooling is on
701 ;; (option 16). See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
703 ;; 3. You can select a new PostScript printer to send PostScript code
704 ;; generated. For selection it's used all PostScript printers defined
705 ;; in `pr-ps-printer-alist' variable (see it for documentation).
706 ;; See also `pr-setting-database'.
708 ;; II. Text printing:
710 ;; 4. If you have control characters (character code from \000 to \037) in a
711 ;; buffer and you want to print them in a text printer, select this
712 ;; option. All control characters in your buffer or region will be
713 ;; replaced by a printable representation. The printable representations
714 ;; use ^ (for ASCII control characters) or hex. The characters tab,
715 ;; linefeed, space, return and formfeed are not affected. You don't need
716 ;; to select this option if you use any option of section I, the
717 ;; PostScript engine treats control characters properly.
719 ;; 5. If you want to print a directory, buffer, region or major mode in a
720 ;; text printer, select this option. See also the NOTE 1 on option 1.
722 ;; 6. You can select a new text printer to send text generated. For
723 ;; selection it's used all text printers defined in
724 ;; `pr-txt-printer-alist' variable (see it for documentation).
725 ;; See also `pr-setting-database'.
727 ;; III. PostScript page toggle options:
729 ;; 7. If you want a PostScript landscape printing, turn on this option.
731 ;; 8. If you want to have a header in each page in your PostScript code,
732 ;; turn on this option.
734 ;; 9. If you want to draw a gaudy frame around the header, turn on this
735 ;; option. This option is enabled if print header is on (option 8).
737 ;; 10. If you want that the line number is printed in your PostScript code,
738 ;; turn on this option.
740 ;; 11. If you want background zebra stripes in your PostScript code, turn on
741 ;; this option.
743 ;; 12. If you want a duplex printing and your PostScript printer has this
744 ;; feature, turn on this option.
746 ;; 13. If you turned on duplex printing, you can choose if you want to have
747 ;; a printing suitable for binding on the left or right (tumble off), or
748 ;; to have a printing suitable for binding at top or bottom (tumble on).
749 ;; This option is enabled if duplex is on (option 12).
751 ;; 14. If you want a PostScript upside-down printing, turn on this option.
753 ;; 15. With this option, you can choose if you want to print all pages, odd
754 ;; pages, even pages, odd sheets or even sheets.
755 ;; See also `ps-even-or-odd-pages'.
757 ;; IV. PostScript processing toggle options:
759 ;; 16. If you want to spool the PostScript code generated, turn on this
760 ;; option. To spool the PostScript code generated use option 2. You
761 ;; can despool later by choosing option 1 or 2, sub-option `Despool...'.
763 ;; 17. If you use colors in your buffers and want to see these colors on
764 ;; your PostScript code generated, turn on this option. If you have a
765 ;; black/white PostScript printer, these colors are displayed in gray
766 ;; scale by PostScript printer interpreter.
768 ;; 18. If you don't have a PostScript printer to send PostScript files, turn
769 ;; on this option. When this option is on, the ghostscript is used to
770 ;; print PostScript files. In GNU or Unix system, if ghostscript is set
771 ;; as a PostScript filter, you don't need to turn on this option.
773 ;; V. Printing customization:
775 ;; 19. If you want that region is automagically detected, turn on this
776 ;; option. Note that this will only work if you're using transient mark
777 ;; mode. When this option is on, the `*-buffer*' commands will behave
778 ;; like `*-region*' commands, that is, `*-buffer*' commands will print
779 ;; only the region marked instead of all buffer.
781 ;; 20. Turn this option on if you want that when current major-mode is
782 ;; declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
783 ;; behave like `*-mode*' commands.
785 ;; 21. If you want that Printing menu stays open while you are setting
786 ;; toggle options, turn on this option. The variables
787 ;; `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
788 ;; menu position, so don't forget to adjust these variables if menu
789 ;; position is not ok.
791 ;; VI. Customization:
793 ;; 22. Besides all options in section III, IV and V, you can customize much
794 ;; more PostScript options in `ps-print' option. Or you can customize
795 ;; some `lpr' options for text printing. Or customize `printing'
796 ;; options.
798 ;; 23. Show current settings for `printing', `ps-print' or `lpr'.
800 ;; 24. Quick help for printing menu layout.
803 ;; Option Settings
804 ;; ---------------
806 ;; Below it's shown only the main options that affect all `printing' package.
807 ;; Check all the settings below *BEFORE* running `printing' commands.
809 ;; * Example of setting for GNU or Unix system:
811 ;; (require 'printing)
812 ;; (setq pr-path-alist
813 ;; '((unix "." "~/bin" ghostview mpage PATH)
814 ;; (ghostview "$HOME/bin/gsview-dir")
815 ;; (mpage "$HOME/bin/mpage-dir")
816 ;; ))
817 ;; (setq pr-txt-name 'prt_06a)
818 ;; (setq pr-txt-printer-alist
819 ;; '((prt_06a "lpr" nil "prt_06a")
820 ;; (prt_07c nil nil "prt_07c")
821 ;; ))
822 ;; (setq pr-ps-name 'lps_06b)
823 ;; (setq pr-ps-printer-alist
824 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
825 ;; (lps_07c "lpr" nil nil "lps_07c")
826 ;; (lps_08c nil nil nil "lps_08c")
827 ;; ))
828 ;; (setq pr-temp-dir "/tmp/")
829 ;; (setq pr-gv-command "gv")
830 ;; (setq pr-gs-command "gs")
831 ;; (setq pr-gs-switches '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
832 ;; (setq pr-gs-device "uniprint")
833 ;; (setq pr-gs-resolution 300)
834 ;; (setq pr-ps-utility 'mpage)
835 ;; (setq pr-ps-utility-alist
836 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
837 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
838 ;; (inherits-from: . no-duplex))
839 ;; ))
840 ;; (setq pr-setting-database
841 ;; '((no-duplex
842 ;; nil nil nil
843 ;; (pr-file-duplex . nil)
844 ;; (pr-file-tumble . nil))
845 ;; ))
846 ;; (pr-update-menus t) ; update now printer and utility menus
848 ;; * Example of setting for Windows system:
850 ;; (require 'printing)
851 ;; (setq pr-path-alist
852 ;; '((windows "c:/applications/executables" PATH ghostview mpage)
853 ;; (ghostview "c:/gs/gsview-dir")
854 ;; (mpage "c:/mpage-dir")
855 ;; ))
856 ;; (setq pr-txt-name 'prt_06a)
857 ;; (setq pr-txt-printer-alist
858 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
859 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
860 ;; (PRN "" nil "PRN")
861 ;; (standard "redpr.exe" nil "")
862 ;; ))
863 ;; (setq pr-ps-name 'lps_06b)
864 ;; (setq pr-ps-printer-alist
865 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
866 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
867 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
868 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
869 ;; (LPT1 "" nil "" "LPT1:")
870 ;; (PRN "" nil "" "PRN")
871 ;; (standard "redpr.exe" nil "" "")
872 ;; ))
873 ;; (setq pr-temp-dir "C:/WINDOWS/TEMP/")
874 ;; (setq pr-gv-command "c:/gs/gsview/gsview32.exe")
875 ;; (setq pr-gs-command "c:/gs/gswin32.exe")
876 ;; (setq pr-gs-switches '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts"))
877 ;; (setq pr-gs-device "mswinpr2")
878 ;; (setq pr-gs-resolution 300)
879 ;; (setq pr-ps-utility 'psnup)
880 ;; (setq pr-ps-utility-alist
881 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " "
882 ;; nil (inherits-from: . no-duplex))
883 ;; ))
884 ;; (setq pr-setting-database
885 ;; '((no-duplex
886 ;; nil nil nil
887 ;; (pr-file-duplex . nil)
888 ;; (pr-file-tumble . nil))
889 ;; ))
890 ;; (pr-update-menus t) ; update now printer and utility menus
892 ;; NOTE: Don't forget to download and install the utilities declared on
893 ;; `pr-ps-utility-alist'.
896 ;; Utilities
897 ;; ---------
899 ;; `printing' package has the following utilities:
901 ;; `pr-setup' Return the current `printing' setup.
903 ;; `lpr-setup' Return the current `lpr' setup.
905 ;; `pr-update-menus' Update utility, PostScript and text printer menus.
907 ;; Below are some URL where you can find good utilities.
909 ;; * For `printing' package:
911 ;; printing `http://www.cpqd.com.br/~vinicius/emacs/printing.el.gz'
912 ;; ps-print `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'
914 ;; * For GNU or Unix system:
916 ;; gs, gv `http://www.gnu.org/software/ghostscript/ghostscript.html'
917 ;; enscript `http://people.ssh.fi/mtr/genscript/'
918 ;; psnup `http://www.dcs.ed.ac.uk/home/ajcd/psutils/index.html'
919 ;; mpage `http://www.mesa.nl/pub/mpage/'
921 ;; * For Windows system:
923 ;; gswin32, gsview32
924 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html'
925 ;; enscript `http://people.ssh.fi/mtr/genscript/'
926 ;; psnup `http://www.dcs.ed.ac.uk/home/ajcd/psutils/index.html'
927 ;; redmon `http://www.cs.wisc.edu/~ghost/redmon/'
930 ;; Acknowledgments
931 ;; ---------------
933 ;; Thanks to Drew Adams <drew.adams@oracle.com> for suggestions:
934 ;; - directory processing.
935 ;; - `pr-path-alist' variable.
936 ;; - doc fix.
937 ;; - a lot of tests on Windows.
939 ;; Thanks to Fred Labrosse <f.labrosse@maths.bath.ac.uk> for XEmacs tests.
941 ;; Thanks to Klaus Berndl <klaus.berndl@sdm.de> for invaluable help/debugging
942 ;; and for suggestions:
943 ;; - even/odd pages printing.
944 ;; - ghostscript parameters for `pr-ps-printer-alist'.
945 ;; - default printer name.
946 ;; - completion functions.
947 ;; - automagic region detection.
948 ;; - menu entry hiding.
949 ;; - fast fire PostScript printing command.
950 ;; - `pr-path-style' variable.
952 ;; Thanks to Kim F. Storm <storm@filanet.dk> for beta-test and for suggestions:
953 ;; - PostScript Print and PostScript Print Preview merge.
954 ;; - Tools/Printing menu.
955 ;; - replace *-using-preview by *-using-ghostscript.
956 ;; - printer selection.
957 ;; - extra parameters for `pr-ps-printer-alist'.
959 ;; Thanks to:
960 ;; Frederic Corne <frederic.corne@erli.fr> print-nt.el
961 ;; Tom Vogels <tov@ece.cmu.edu> mh-e-init.el
962 ;; Matthew O. Persico <mpersico@erols.com> win32-ps-print.el
963 ;; Volker Franz <volker.franz@tuebingen.mpg.de> ps-print-interface.el
964 ;; And to all people who contributed with them.
967 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
969 ;;; Code:
972 (require 'lpr)
973 (require 'ps-print)
976 (and (string< ps-print-version "6.6.4")
977 (error "`printing' requires `ps-print' package version 6.6.4 or later"))
980 (eval-and-compile
981 (defconst pr-cygwin-system
982 (and ps-windows-system (getenv "OSTYPE")
983 (string-match "cygwin" (getenv "OSTYPE")))))
986 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
987 ;; To avoid compilation gripes
990 (eval-and-compile
992 (or (fboundp 'subst-char-in-string)
993 (defun subst-char-in-string (fromchar tochar string &optional inplace)
994 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
995 Unless optional argument INPLACE is non-nil, return a new string."
996 (let ((i (length string))
997 (newstr (if inplace string (copy-sequence string))))
998 (while (> (setq i (1- i)) 0)
999 (if (eq (aref newstr i) fromchar)
1000 (aset newstr i tochar)))
1001 newstr)))
1003 ;; GNU Emacs
1004 (defalias 'pr-e-frame-char-height 'frame-char-height)
1005 (defalias 'pr-e-frame-char-width 'frame-char-width)
1006 (defalias 'pr-e-mouse-pixel-position 'mouse-pixel-position)
1007 ;; XEmacs
1008 (defalias 'pr-x-add-submenu 'add-submenu)
1009 (defalias 'pr-x-event-function 'event-function)
1010 (defalias 'pr-x-event-object 'event-object)
1011 (defalias 'pr-x-find-menu-item 'find-menu-item)
1012 (defalias 'pr-x-font-height 'font-height)
1013 (defalias 'pr-x-font-width 'font-width)
1014 (defalias 'pr-x-get-popup-menu-response 'get-popup-menu-response)
1015 (defalias 'pr-x-make-event 'make-event)
1016 (defalias 'pr-x-misc-user-event-p 'misc-user-event-p)
1017 (defalias 'pr-x-relabel-menu-item 'relabel-menu-item)
1018 (defalias 'pr-x-event-x-pixel 'event-x-pixel)
1019 (defalias 'pr-x-event-y-pixel 'event-y-pixel)
1021 (cond
1022 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
1023 (defvar deactivate-mark nil)
1024 (defalias 'pr-f-set-keymap-parents 'set-keymap-parent)
1025 (defalias 'pr-f-set-keymap-name 'ignore)
1026 (defalias 'pr-f-read-string 'read-string)
1027 (defun pr-keep-region-active ()
1028 (setq deactivate-mark nil)))
1030 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
1031 (defvar current-menubar nil)
1032 (defvar current-mouse-event nil)
1033 (defvar zmacs-region-stays nil)
1034 (defalias 'pr-f-set-keymap-parents 'set-keymap-parents)
1035 (defalias 'pr-f-set-keymap-name 'set-keymap-name)
1036 (defun pr-f-read-string (prompt initial history default)
1037 (let ((str (read-string prompt initial)))
1038 (if (and str (not (string= str "")))
1040 default)))
1041 (defun pr-keep-region-active ()
1042 (setq zmacs-region-stays t)))))
1045 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1046 ;; Customization Functions
1049 (defun pr-alist-custom-set (symbol value)
1050 "Set the value of custom variables for printer & utility selection."
1051 (set symbol value)
1052 (and (featurep 'printing) ; update only after printing is loaded
1053 (pr-update-menus t)))
1056 (defun pr-ps-utility-custom-set (symbol value)
1057 "Update utility menu entry."
1058 (set symbol value)
1059 (and (featurep 'printing) ; update only after printing is loaded
1060 (pr-menu-set-utility-title value)))
1063 (defun pr-ps-name-custom-set (symbol value)
1064 "Update `PostScript Printer:' menu entry."
1065 (set symbol value)
1066 (and (featurep 'printing) ; update only after printing is loaded
1067 (pr-menu-set-ps-title value)))
1070 (defun pr-txt-name-custom-set (symbol value)
1071 "Update `Text Printer:' menu entry."
1072 (set symbol value)
1073 (and (featurep 'printing) ; update only after printing is loaded
1074 (pr-menu-set-txt-title value)))
1077 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1078 ;; User Interface (I)
1081 (defgroup printing nil
1082 "Printing Utilities group"
1083 :tag "Printing Utilities"
1084 :link '(emacs-library-link :tag "Source Lisp File" "printing.el")
1085 :prefix "pr-"
1086 :group 'wp
1087 :group 'postscript)
1090 (defcustom pr-path-style
1091 (if (and (not pr-cygwin-system)
1092 ps-windows-system)
1093 'windows
1094 'unix)
1095 "*Specify which path style to use for external commands.
1097 Valid values are:
1099 windows Windows 9x/NT style (\\)
1101 unix Unix style (/)"
1102 :type '(choice :tag "Path style"
1103 (const :tag "Windows 9x/NT Style (\\)" :value windows)
1104 (const :tag "Unix Style (/)" :value unix))
1105 :group 'printing)
1108 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1109 ;; Internal Functions (I)
1112 (defun pr-dosify-file-name (path)
1113 "Replace unix-style directory separator character with dos/windows one."
1114 (interactive "sPath: ")
1115 (if (eq pr-path-style 'windows)
1116 (subst-char-in-string ?/ ?\\ path)
1117 path))
1120 (defun pr-unixify-file-name (path)
1121 "Replace dos/windows-style directory separator character with unix one."
1122 (interactive "sPath: ")
1123 (if (eq pr-path-style 'windows)
1124 (subst-char-in-string ?\\ ?/ path)
1125 path))
1128 (defun pr-standard-file-name (path)
1129 "Ensure the proper directory separator depending on the OS.
1130 That is, if Emacs is running on DOS/Windows, ensure dos/windows-style directory
1131 separator; otherwise, ensure unix-style directory separator."
1132 (if (or pr-cygwin-system ps-windows-system)
1133 (subst-char-in-string ?/ ?\\ path)
1134 (subst-char-in-string ?\\ ?/ path)))
1137 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1138 ;; User Interface (II)
1141 (defcustom pr-path-alist
1142 '((unix PATH)
1143 (cygwin PATH)
1144 (windows PATH))
1145 "*Specify an alist for command paths.
1147 It's used to find commands used for printing package, like gv, gs, gsview.exe,
1148 mpage, print.exe, etc. See also `pr-command' function.
1150 Each element has the form:
1152 (ENTRY DIRECTORY...)
1154 Where:
1156 ENTRY It's a symbol, used to identify this entry.
1157 There must exist at least one of the following entries:
1159 unix this entry is used when Emacs is running on GNU or
1160 Unix system.
1162 cygwin this entry is used when Emacs is running on Windows
1163 95/98/NT/2000 with Cygwin.
1165 windows this entry is used when Emacs is running on Windows
1166 95/98/NT/2000.
1168 DIRECTORY It should be a string or a symbol. If it's a symbol, it should
1169 exist an equal entry in `pr-path-alist'. If it's a string,
1170 it's considered a directory specification.
1172 The directory specification may contain:
1173 $var environment variable expansion
1174 ~/ tilde expansion
1175 ./ current directory
1176 ../ previous directory
1178 For example, let's say the home directory is /home/my and the
1179 current directory is /home/my/dir, so:
1181 THE ENTRY IS EXPANDED TO
1182 ~/entry /home/my/entry
1183 ./entry /home/my/dir/entry
1184 ../entry /home/my/entry
1185 $HOME/entry /home/my/entry
1186 $HOME/~/other/../my/entry /home/my/entry
1188 SPECIAL SYMBOL: If the symbol `PATH' is used in the directory
1189 list and there isn't a `PATH' entry in `pr-path-alist' or the
1190 `PATH' entry has a null directory list, the PATH environment
1191 variable is used.
1193 Examples:
1195 * On GNU or Unix system:
1197 '((unix \".\" \"~/bin\" ghostview mpage PATH)
1198 (ghostview \"$HOME/bin/gsview-dir\")
1199 (mpage \"$HOME/bin/mpage-dir\")
1202 * On Windows system:
1204 '((windows \"c:/applications/executables\" PATH ghostview mpage)
1205 (ghostview \"c:/gs/gsview-dir\")
1206 (mpage \"c:/mpage-dir\")
1208 :type '(repeat
1209 (cons :tag ""
1210 (symbol :tag "Identifier ")
1211 (repeat :tag "Directory List"
1212 (choice :menu-tag "Directory"
1213 :tag "Directory"
1214 (string :value "")
1215 (symbol :value symbol)))))
1216 :group 'printing)
1219 (defcustom pr-txt-name 'default
1220 "*Specify a printer for printing a text file.
1222 The printer name symbol should be defined on `pr-txt-printer-alist' (see it for
1223 documentation).
1225 This variable should be modified by customization engine. If this variable is
1226 modified by other means (for example, a lisp function), use `pr-update-menus'
1227 function (see it for documentation) to update text printer menu."
1228 :type 'symbol
1229 :set 'pr-txt-name-custom-set
1230 :group 'printing)
1233 (defcustom pr-txt-printer-alist
1234 (list (list 'default lpr-command nil
1235 (cond ((boundp 'printer-name) printer-name)
1236 (ps-windows-system "PRN")
1237 (t nil)
1239 ;; Examples:
1240 ;; * On GNU or Unix system:
1241 ;; '((prt_06a "lpr" nil "prt_06a")
1242 ;; (prt_07c nil nil "prt_07c")
1243 ;; )
1244 ;; * On Windows system:
1245 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
1246 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
1247 ;; (PRN "" nil "PRN")
1248 ;; (standard "redpr.exe" nil "")
1249 ;; )
1250 "*Specify an alist of all text printers (text printer database).
1252 The alist element has the form:
1254 (SYMBOL COMMAND SWITCHES NAME)
1256 Where:
1258 SYMBOL It's a symbol to identify a text printer. It's for
1259 `pr-txt-name' variable setting and for menu selection.
1260 Examples:
1261 'prt_06a
1262 'my_printer
1264 COMMAND Name of the program for printing a text file. On MS-DOS and
1265 MS-Windows systems, if the value is an empty string, then Emacs
1266 will write directly to the printer port given by NAME (see text
1267 below), that is, the NAME should be something like \"PRN\" or
1268 \"LPT1:\".
1269 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
1270 COMMAND shouldn't be an empty string.
1271 The programs `print' and `nprint' (the standard print programs
1272 on Windows NT and Novell Netware respectively) are handled
1273 specially, using NAME as the destination for output; any other
1274 program is treated like `lpr' except that an explicit filename
1275 is given as the last argument.
1276 If COMMAND is nil, it's used the default printing program:
1277 `print' for Windows system, `lp' for lp system and `lpr' for
1278 all other systems. See also `pr-path-alist'.
1279 Examples:
1280 \"print\"
1281 \"lpr\"
1282 \"lp\"
1284 SWITCHES List of sexp's to pass as extra options for text printer
1285 program. It is recommended to set NAME (see text below)
1286 instead of including an explicit switch on this list.
1287 Example:
1288 . for lpr
1289 '(\"-#3\" \"-l\")
1292 NAME A string that specifies a text printer name.
1293 On Unix-like systems, a string value should be a name
1294 understood by lpr's -P option (or lp's -d option).
1295 On MS-DOS and MS-Windows systems, it is the name of a printer
1296 device or port. Typical non-default settings would be \"LPT1:\"
1297 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
1298 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
1299 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
1300 printer. You can also set it to a name of a file, in which
1301 case the output gets appended to that file. If you want to
1302 discard the printed output, set this to \"NUL\".
1303 Examples:
1304 . for print.exe
1305 \"/D:\\\\\\\\host\\\\share-name\"
1306 \"LPT1:\"
1307 \"PRN\"
1309 . for lpr or lp
1310 \"share-name\"
1312 This variable should be modified by customization engine. If this variable is
1313 modified by other means (for example, a lisp function), use `pr-update-menus'
1314 function (see it for documentation) to update text printer menu.
1316 Examples:
1318 * On GNU or Unix system:
1320 '((prt_06a \"lpr\" nil \"prt_06a\")
1321 (prt_07c nil nil \"prt_07c\")
1324 * On Windows system:
1326 '((prt_06a \"print\" nil \"/D:\\\\\\\\printers\\\\prt_06a\")
1327 (prt_07c nil nil \"/D:\\\\\\\\printers\\\\prt_07c\")
1328 (PRN \"\" nil \"PRN\")
1329 (standard \"redpr.exe\" nil \"\")
1331 :type '(repeat
1332 (list :tag "Text Printer"
1333 (symbol :tag "Printer Symbol Name")
1334 (string :tag "Printer Command")
1335 (repeat :tag "Printer Switches"
1336 (sexp :tag "Switch" :value ""))
1337 (choice :menu-tag "Printer Name"
1338 :tag "Printer Name"
1339 (const :tag "None" nil)
1340 string)))
1341 :set 'pr-alist-custom-set
1342 :group 'printing)
1345 (defcustom pr-ps-name 'default
1346 "*Specify a printer for printing a PostScript file.
1348 This printer name symbol should be defined on `pr-ps-printer-alist' (see it for
1349 documentation).
1351 This variable should be modified by customization engine. If this variable is
1352 modified by other means (for example, a lisp function), use `pr-update-menus'
1353 function (see it for documentation) to update PostScript printer menu."
1354 :type 'symbol
1355 :set 'pr-ps-name-custom-set
1356 :group 'printing)
1359 (defcustom pr-ps-printer-alist
1360 (list (list 'default lpr-command nil
1361 (cond (ps-windows-system nil)
1362 (ps-lp-system "-d")
1363 (t "-P"))
1364 (or (getenv "PRINTER") (getenv "LPDEST") ps-printer-name)))
1365 ;; Examples:
1366 ;; * On GNU or Unix system:
1367 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
1368 ;; (lps_07c "lpr" nil nil "lps_07c")
1369 ;; (lps_08c nil nil nil "lps_08c")
1370 ;; )
1371 ;; * On Windows system:
1372 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
1373 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
1374 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
1375 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
1376 ;; (LPT1 "" nil "" "LPT1:")
1377 ;; (PRN "" nil "" "PRN")
1378 ;; (standard "redpr.exe" nil "" "")
1379 ;; )
1380 "*Specify an alist for all PostScript printers (PostScript printer database).
1382 The alist element has the form:
1384 (SYMBOL COMMAND SWITCHES PRINTER-SWITCH NAME DEFAULT...)
1386 Where:
1388 SYMBOL It's a symbol to identify a PostScript printer. It's for
1389 `pr-ps-name' variable setting and for menu selection.
1390 Examples:
1391 'prt_06a
1392 'my_printer
1394 COMMAND Name of the program for printing a PostScript file. On MS-DOS
1395 and MS-Windows systems, if the value is an empty string then
1396 Emacs will write directly to the printer port given by NAME
1397 (see text below), that is, the NAME should be something like
1398 \"PRN\" or \"LPT1:\".
1399 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
1400 COMMAND shouldn't be an empty string.
1401 The programs `print' and `nprint' (the standard print programs
1402 on Windows NT and Novell Netware respectively) are handled
1403 specially, using NAME as the destination for output; any other
1404 program is treated like `lpr' except that an explicit filename
1405 is given as the last argument.
1406 If COMMAND is nil, it's used the default printing program:
1407 `print' for Windows system, `lp' for lp system and `lpr' for
1408 all other systems. See also `pr-path-alist'.
1409 Examples:
1410 \"print\"
1411 \"lpr\"
1412 \"lp\"
1413 \"cp\"
1415 SWITCHES List of sexp's to pass as extra options for PostScript printer
1416 program. It is recommended to set NAME (see text below)
1417 instead of including an explicit switch on this list.
1418 Example:
1419 . for lpr
1420 '(\"-#3\" \"-l\")
1423 PRINTER-SWITCH A string that specifies PostScript printer name switch. If
1424 it's necessary to have a space between PRINTER-SWITCH and NAME,
1425 it should be inserted at the end of PRINTER-SWITCH string.
1426 If PRINTER-SWITCH is nil, it's used the default printer name
1427 switch: `/D:' for Windows system, `-d' for lp system and `-P'
1428 for all other systems.
1429 Examples:
1430 . for lpr
1431 \"-P \"
1433 . for lp
1434 \"-d \"
1436 . for print.exe
1437 \"/D:\"
1439 NAME A string that specifies a PostScript printer name.
1440 On Unix-like systems, a string value should be a name
1441 understood by lpr's -P option (or lp's -d option).
1442 On MS-DOS and MS-Windows systems, it is the name of a printer
1443 device or port. Typical non-default settings would be \"LPT1:\"
1444 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
1445 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
1446 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
1447 printer. You can also set it to a name of a file, in which
1448 case the output gets appended to that file. If you want to
1449 discard the printed output, set this to \"NUL\".
1450 Examples:
1451 . for cp.exe
1452 \"\\\\\\\\host\\\\share-name\"
1454 . for print.exe
1455 \"/D:\\\\\\\\host\\\\share-name\"
1456 \"\\\\\\\\host\\\\share-name\"
1457 \"LPT1:\"
1458 \"PRN\"
1460 . for lpr or lp
1461 \"share-name\"
1463 DEFAULT It's a way to set default values when this entry is selected.
1464 It's a cons like:
1466 (VARIABLE . VALUE)
1468 That associates VARIABLE with VALUE. when this entry is
1469 selected, it's executed the following command:
1471 (set VARIABLE (eval VALUE))
1473 Note that VALUE can be any valid lisp expression. So, don't
1474 forget to quote symbols and constant lists.
1475 If VARIABLE is the special keyword `inherits-from:', VALUE must
1476 be a symbol name setting defined in `pr-setting-database' from
1477 which the current setting inherits the context. Take care with
1478 circular inheritance.
1479 Examples:
1480 '(ps-landscape-mode . nil)
1481 '(ps-spool-duplex . t)
1482 '(pr-gs-device . (my-gs-device t))
1484 This variable should be modified by customization engine. If this variable is
1485 modified by other means (for example, a lisp function), use `pr-update-menus'
1486 function (see it for documentation) to update PostScript printer menu.
1488 Examples:
1490 * On GNU or Unix system:
1492 '((lps_06b \"lpr\" nil \"-P\" \"lps_06b\")
1493 (lps_07c \"lpr\" nil nil \"lps_07c\")
1494 (lps_08c nil nil nil \"lps_08c\")
1497 * On Windows system:
1499 '((lps_06a \"print\" nil \"/D:\" \"\\\\\\\\printers\\\\lps_06a\")
1500 (lps_06b \"print\" nil nil \"\\\\\\\\printers\\\\lps_06b\")
1501 (lps_07c \"print\" nil \"\" \"/D:\\\\\\\\printers\\\\lps_07c\")
1502 (lps_08c nil nil nil \"\\\\\\\\printers\\\\lps_08c\")
1503 (LPT1 \"\" nil \"\" \"LPT1:\")
1504 (PRN \"\" nil \"\" \"PRN\")
1505 (standard \"redpr.exe\" nil \"\" \"\")
1507 :type '(repeat
1508 (list
1509 :tag "PostScript Printer"
1510 (symbol :tag "Printer Symbol Name")
1511 (string :tag "Printer Command")
1512 (repeat :tag "Printer Switches"
1513 (sexp :tag "Switch" :value ""))
1514 (choice :menu-tag "Printer Name Switch"
1515 :tag "Printer Name Switch"
1516 (const :tag "None" nil)
1517 string)
1518 (choice :menu-tag "Printer Name"
1519 :tag "Printer Name"
1520 (const :tag "None" nil)
1521 string)
1522 (repeat
1523 :tag "Default Value List"
1524 :inline t
1525 (cons
1526 :tag ""
1527 (choice
1528 :menu-tag "Variable"
1529 :tag "Variable"
1530 (const :tag "Landscape" ps-landscape-mode)
1531 (const :tag "Print Header" ps-print-header)
1532 (const :tag "Print Header Frame" ps-print-header-frame)
1533 (const :tag "Line Number" ps-line-number)
1534 (const :tag "Zebra Stripes" ps-zebra-stripes)
1535 (const :tag "Duplex" ps-spool-duplex)
1536 (const :tag "Tumble" ps-spool-tumble)
1537 (const :tag "Upside-Down" ps-print-upside-down)
1538 (const :tag "PS File Landscape" pr-file-landscape)
1539 (const :tag "PS File Duplex" pr-file-duplex)
1540 (const :tag "PS File Tumble" pr-file-tumble)
1541 (const :tag "Auto Region" pr-auto-region)
1542 (const :tag "Auto Mode" pr-auto-mode)
1543 (const :tag "Ghostscript Device" pr-gs-device)
1544 (const :tag "Ghostscript Resolution" pr-gs-resolution)
1545 (const :tag "inherits-from:" inherits-from:)
1546 (variable :tag "Other"))
1547 (sexp :tag "Value")))
1549 :set 'pr-alist-custom-set
1550 :group 'printing)
1553 (defcustom pr-temp-dir
1554 (pr-dosify-file-name
1555 (if (boundp 'temporary-file-directory)
1556 (symbol-value 'temporary-file-directory)
1557 ;; hacked from `temporary-file-directory' variable in files.el
1558 (file-name-as-directory
1559 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP")
1560 (cond (ps-windows-system "c:/temp")
1561 ((memq system-type '(vax-vms axp-vms)) "SYS$SCRATCH:")
1562 (t "/tmp")
1563 )))))
1564 "*Specify a directory for temporary files during printing."
1565 :type '(directory :tag "Temporary Directory")
1566 :group 'printing)
1569 (defcustom pr-ps-temp-file "prspool.ps"
1570 "*Specify PostScript temporary file name."
1571 :type '(file :tag "PostScript Temporary File Name")
1572 :group 'printing)
1575 (defcustom pr-gv-command
1576 (if ps-windows-system
1577 "gsview32.exe"
1578 "gv")
1579 "*Specify path and name of the gsview/gv utility.
1581 See also `pr-path-alist'."
1582 :type '(string :tag "Ghostview Utility")
1583 :group 'printing)
1586 (defcustom pr-gs-command
1587 (if ps-windows-system
1588 "gswin32.exe"
1589 "gs")
1590 "*Specify path and name of the ghostscript utility.
1592 See also `pr-path-alist'."
1593 :type '(string :tag "Ghostscript Utility")
1594 :group 'printing)
1597 (defcustom pr-gs-switches
1598 (if ps-windows-system
1599 '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts")
1600 '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
1601 "*Specify ghostscript switches. See the documentation on GS for more info.
1603 It's a list of strings, where each string is one or more ghostscript switches.
1605 A note on the gs switches:
1607 -q quiet
1608 -dNOPAUSE don't wait for user intervention
1609 -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts the directories needed for gs
1610 -c quit it's added at the end to terminate gs
1612 To see ghostscript documentation for more information:
1614 * On GNU or Unix system:
1615 - for full documentation, type: man gs
1616 - for brief documentation, type: gs -h
1618 * On Windows system:
1619 - for full documentation, see in a browser the file
1620 c:/gstools/gs5.50/index.html, that is, the file index.html which is
1621 located in the same directory as gswin32.exe.
1622 - for brief documentation, type: gswin32.exe -h"
1623 :type '(repeat (string :tag "Ghostscript Switch"))
1624 :group 'printing)
1627 (defcustom pr-gs-device
1628 (if ps-windows-system
1629 "mswinpr2"
1630 "uniprint")
1631 "*Specify the ghostscript device switch value (-sDEVICE=).
1633 A note on the gs switches:
1635 -sDEVICE=djet500 the printer - works with HP DeskJet 540
1637 See `pr-gs-switches' for documentation.
1638 See also `pr-ps-printer-alist'."
1639 :type '(string :tag "Ghostscript Device")
1640 :group 'printing)
1643 (defcustom pr-gs-resolution 300
1644 "*Specify ghostscript resolution switch value (-r).
1646 A note on the gs switches:
1648 -r300 resolution 300x300
1650 See `pr-gs-switches' for documentation.
1651 See also `pr-ps-printer-alist'."
1652 :type '(integer :tag "Ghostscript Resolution")
1653 :group 'printing)
1656 (defcustom pr-print-using-ghostscript nil
1657 "*Non-nil means print using ghostscript.
1659 This is useful if you don't have a PostScript printer, so you could use the
1660 ghostscript to print a PostScript file.
1662 In GNU or Unix system, if ghostscript is set as a PostScript filter, this
1663 variable should be nil."
1664 :type 'boolean
1665 :group 'printing)
1668 (defcustom pr-faces-p nil
1669 "*Non-nil means print with face attributes."
1670 :type 'boolean
1671 :group 'printing)
1674 (defcustom pr-spool-p nil
1675 "*Non-nil means spool printing in a buffer."
1676 :type 'boolean
1677 :group 'printing)
1680 (defcustom pr-file-landscape nil
1681 "*Non-nil means print PostScript file in landscape orientation."
1682 :type 'boolean
1683 :group 'printing)
1686 (defcustom pr-file-duplex nil
1687 "*Non-nil means print PostScript file in duplex mode."
1688 :type 'boolean
1689 :group 'printing)
1692 (defcustom pr-file-tumble nil
1693 "*Non-nil means print PostScript file in tumble mode.
1695 If tumble is off, produces a printing suitable for binding on the left or
1696 right.
1697 If tumble is on, produces a printing suitable for binding at the top or
1698 bottom."
1699 :type 'boolean
1700 :group 'printing)
1703 (defcustom pr-auto-region t
1704 "*Non-nil means region is automagically detected.
1706 Note that this will only work if you're using transient mark mode.
1708 When this variable is non-nil, the `*-buffer*' commands will behave like
1709 `*-region*' commands, that is, `*-buffer*' commands will print only the region
1710 marked instead of all buffer."
1711 :type 'boolean
1712 :group 'printing)
1715 (defcustom pr-auto-mode t
1716 "*Non-nil means major-mode specific printing is prefered over normal printing.
1718 That is, if current major-mode is declared in `pr-mode-alist', the `*-buffer*'
1719 and `*-region*' commands will behave like `*-mode*' commands; otherwise,
1720 `*-buffer*' commands will print the current buffer and `*-region*' commands
1721 will print the current region."
1722 :type 'boolean
1723 :group 'printing)
1726 (defcustom pr-mode-alist
1727 '((mh-folder-mode ; mh summary buffer
1728 pr-mh-lpr-1 pr-mh-print-1
1730 (ps-article-author ps-article-subject)
1731 ("/pagenumberstring load" pr-article-date)
1734 (mh-letter-mode ; mh letter buffer
1735 pr-mh-lpr-2 pr-mh-print-2
1737 (ps-article-author ps-article-subject)
1738 ("/pagenumberstring load" pr-article-date)
1741 (rmail-summary-mode ; rmail summary buffer
1742 pr-rmail-lpr pr-rmail-print
1744 (ps-article-subject ps-article-author buffer-name)
1748 (rmail-mode ; rmail buffer
1749 pr-rmail-lpr pr-rmail-print
1751 (ps-article-subject ps-article-author buffer-name)
1755 (gnus-summary-mode ; gnus summary buffer
1756 pr-gnus-lpr pr-gnus-print
1758 (ps-article-subject ps-article-author gnus-newsgroup-name)
1762 (gnus-article-mode ; gnus article buffer
1763 pr-gnus-lpr pr-gnus-print
1765 (ps-article-subject ps-article-author gnus-newsgroup-name)
1769 (Info-mode ; Info buffer
1770 pr-mode-lpr pr-mode-print
1772 (ps-info-node ps-info-file)
1776 (vm-mode ; vm mode
1777 pr-vm-lpr pr-vm-print
1779 (ps-article-subject ps-article-author buffer-name)
1784 "*Specify an alist for a major-mode and printing functions.
1786 To customize a major mode printing, just declare the customization in
1787 `pr-mode-alist' and invoke some of `*-mode*' commands. An example for major
1788 mode usage is when you're using gnus (or mh, or rmail, etc.) and you're in the
1789 *Summary* buffer, if you forget to switch to the *Article* buffer before
1790 printing, you'll get a nicely formatted list of article subjects shows up at
1791 the printer. With major mode printing you don't need to switch from gnus
1792 *Summary* buffer first.
1794 The elements have the following form:
1796 (MAJOR-MODE
1797 LPR-PRINT PS-PRINT
1798 HEADER-LINES
1799 LEFT-HEADER
1800 RIGHT-HEADER
1801 KILL-LOCAL-VARIABLE
1802 DEFAULT...)
1804 Where:
1806 MAJOR-MODE It's the major mode symbol.
1808 LPR-PRINT It's a symbol function for text printing. It's invoked with
1809 one argument:
1810 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
1812 Usually LPR-PRINT function prepares the environment or buffer
1813 and then call the function `pr-mode-lpr' which it's used to
1814 process the buffer and send it to text printer.
1816 The `pr-mode-lpr' definition is:
1818 (pr-mode-lpr HEADER-LIST &optional FROM TO)
1820 Where HEADER-LIST is like the argument passed to LPR-PRINT.
1821 FROM and TO are the beginning and end markers, respectively,
1822 for a region. If FROM is nil, it's used (point-min); if TO is
1823 nil, it's used (point-max).
1825 PS-PRINT It's a symbol function for PostScript printing. It's invoked
1826 with 3 arguments: n-up printing, file name and the list:
1827 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
1829 Usually PS-PRINT function prepares the environment or buffer
1830 and then call the function `pr-mode-print' which it's used to
1831 process the buffer and send it to PostScript printer.
1833 The `pr-mode-print' definition is:
1835 (pr-mode-print N-UP FILENAME HEADER-LIST &optional FROM TO)
1837 Where N-UP, FILENAME and HEADER-LIST are like the arguments
1838 passed to PS-PRINT. FROM and TO are the beginning and end
1839 markers, respectively, for a region. If TO is nil, it's used
1840 (point-max).
1842 HEADER-LINES It's the number of header lines; if is nil, it uses
1843 `ps-header-lines' value.
1845 LEFT-HEADER It's the left header part, it's a list of string, variable
1846 symbol or function symbol (with no argument); if is nil, it
1847 uses `ps-left-header' value.
1849 RIGHT-HEADER It's the right header part, it's a list of string, variable
1850 symbol or function symbol (with no argument); if is nil, it
1851 uses `ps-right-header' value.
1853 KILL-LOCAL-VARIABLE
1854 Non-nil means to kill all buffer local variable declared in
1855 DEFAULT (see below).
1857 DEFAULT It's a way to set default values when this entry is selected.
1858 It's a cons like:
1860 (VARIABLE-SYM . VALUE)
1862 That associates VARIABLE-SYM with VALUE. when this entry is
1863 selected, it's executed the following command:
1865 (set (make-local-variable VARIABLE-SYM) (eval VALUE))
1867 Note that VALUE can be any valid lisp expression. So, don't
1868 forget to quote symbols and constant lists.
1869 If VARIABLE is the special keyword `inherits-from:', VALUE must
1870 be a symbol name setting defined in `pr-setting-database' from
1871 which the current setting inherits the context. Take care with
1872 circular inheritance.
1873 Examples:
1874 '(ps-landscape-mode . nil)
1875 '(ps-spool-duplex . t)
1876 '(pr-gs-device . (my-gs-device t))"
1877 :type '(repeat
1878 (list
1879 :tag ""
1880 (symbol :tag "Major Mode")
1881 (function :tag "Text Printing Function")
1882 (function :tag "PS Printing Function")
1883 (choice :menu-tag "Number of Header Lines"
1884 :tag "Number of Header Lines"
1885 (integer :tag "Number")
1886 (const :tag "Default Number" nil))
1887 (repeat :tag "Left Header List"
1888 (choice :menu-tag "Left Header"
1889 :tag "Left Header"
1890 string symbol))
1891 (repeat :tag "Right Header List"
1892 (choice :menu-tag "Right Header"
1893 :tag "Right Header"
1894 string symbol))
1895 (boolean :tag "Kill Local Variable At End")
1896 (repeat
1897 :tag "Default Value List"
1898 :inline t
1899 (cons
1900 :tag ""
1901 (choice
1902 :menu-tag "Variable"
1903 :tag "Variable"
1904 (const :tag "Landscape" ps-landscape-mode)
1905 (const :tag "Print Header" ps-print-header)
1906 (const :tag "Print Header Frame" ps-print-header-frame)
1907 (const :tag "Line Number" ps-line-number)
1908 (const :tag "Zebra Stripes" ps-zebra-stripes)
1909 (const :tag "Duplex" ps-spool-duplex)
1910 (const :tag "Tumble" ps-spool-tumble)
1911 (const :tag "Upside-Down" ps-print-upside-down)
1912 (const :tag "PS File Landscape" pr-file-landscape)
1913 (const :tag "PS File Duplex" pr-file-duplex)
1914 (const :tag "PS File Tumble" pr-file-tumble)
1915 (const :tag "Auto Region" pr-auto-region)
1916 (const :tag "Auto Mode" pr-auto-mode)
1917 (const :tag "Ghostscript Device" pr-gs-device)
1918 (const :tag "Ghostscript Resolution" pr-gs-resolution)
1919 (const :tag "inherits-from:" inherits-from:)
1920 (variable :tag "Other"))
1921 (sexp :tag "Value")))
1923 :group 'printing)
1926 (defcustom pr-ps-utility 'mpage
1927 "*Specify PostScript utility symbol.
1929 This utility symbol should be defined on `pr-ps-utility-alist' (see it for
1930 documentation).
1932 This variable should be modified by customization engine. If this variable is
1933 modified by other means (for example, a lisp function), use `pr-update-menus'
1934 function (see it for documentation) to update PostScript utility menu.
1936 NOTE: Don't forget to download and install the utilities declared on
1937 `pr-ps-utility-alist'."
1938 :type '(symbol :tag "PS File Utility")
1939 :set 'pr-ps-utility-custom-set
1940 :group 'printing)
1943 (defcustom pr-ps-utility-alist
1944 '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
1945 (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
1946 (inherits-from: . no-duplex))
1948 ;; Examples:
1949 ;; * On GNU or Unix system:
1950 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
1951 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
1952 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
1953 ;; )
1954 ;; * On Windows system:
1955 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
1956 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
1957 ;; )
1958 "*Specify an alist for PostScript utility processing (PS utility database).
1960 The alist element has the form:
1962 (SYMBOL UTILITY MUST-SWITCHES PAPERSIZE N-UP LANDSCAPE DUPLEX TUMBLE OUTPUT
1963 SWITCHES DEFAULT...)
1965 Where:
1967 SYMBOL It's a symbol to identify a PostScript utility. It's for
1968 `pr-ps-utility' variable setting and for menu selection.
1969 Examples:
1970 'mpage
1971 'psnup
1973 UTILITY Name of utility for processing a PostScript file.
1974 See also `pr-path-alist'.
1975 Examples:
1976 . for GNU or Unix system:
1977 \"mpage\"
1978 \"psnup -q\"
1980 . for Windows system:
1981 \"c:/psutils/psnup -q\"
1983 MUST-SWITCHES List of sexp's to pass as options to the PostScript utility
1984 program. These options are necessary to process the utility
1985 program and must be placed before any other switches.
1986 Example:
1987 . for psnup:
1988 '(\"-q\")
1990 PAPERSIZE It's a format string to specify paper size switch.
1991 Example:
1992 . for mpage
1993 \"-b%s\"
1995 N-UP It's a format string to specify n-up switch.
1996 Example:
1997 . for psnup
1998 \"-%d\"
2000 LANDSCAPE It's a string to specify landscape switch. If the utility
2001 doesn't have landscape switch, set to nil.
2002 Example:
2003 . for psnup
2004 \"-l\"
2006 DUPLEX It's a string to specify duplex switch. If the utility doesn't
2007 have duplex switch, set to nil.
2008 Example:
2009 . for psnup
2012 TUMBLE It's a string to specify tumble switch. If the utility doesn't
2013 have tumble switch, set to nil.
2014 Example:
2015 . for psnup
2018 OUTPUT It's a string to specify how to generate an output file. Some
2019 utilities accept an output file option, but some others need
2020 output redirection or some other way to specify an output file.
2021 Example:
2022 . for psnup
2023 \" \" ; psnup ... input output
2025 . for mpage
2026 \">\" ; mpage ... input > output
2028 SWITCHES List of sexp's to pass as extra options to the PostScript utility
2029 program.
2030 Example:
2031 . for psnup
2032 '(\"-q\")
2035 DEFAULT It's a way to set default values when this entry is selected.
2036 It's a cons like:
2038 (VARIABLE . VALUE)
2040 That associates VARIABLE with VALUE. when this entry is
2041 selected, it's executed the following command:
2043 (set VARIABLE (eval VALUE))
2045 Note that VALUE can be any valid lisp expression. So, don't
2046 forget to quote symbols and constant lists.
2047 If VARIABLE is the special keyword `inherits-from:', VALUE must
2048 be a symbol name setting defined in `pr-setting-database' from
2049 which the current setting inherits the context. Take care with
2050 circular inheritance.
2051 Examples:
2052 '(pr-file-landscape . nil)
2053 '(pr-file-duplex . t)
2054 '(pr-gs-device . (my-gs-device t))
2056 This variable should be modified by customization engine. If this variable is
2057 modified by other means (for example, a lisp function), use `pr-update-menus'
2058 function (see it for documentation) to update PostScript utility menu.
2060 NOTE: Don't forget to download and install the utilities declared on
2061 `pr-ps-utility-alist'.
2063 Examples:
2065 * On GNU or Unix system:
2067 '((mpage \"mpage\" nil \"-b%s\" \"-%d\" \"-l\" \"-t\" \"-T\" \">\" nil)
2068 (psnup \"psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" nil
2069 (pr-file-duplex . nil) (pr-file-tumble . nil))
2072 * On Windows system:
2074 '((psnup \"c:/psutils/psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \"
2075 nil (pr-file-duplex . nil) (pr-file-tumble . nil))
2077 :type '(repeat
2078 (list :tag "PS File Utility"
2079 (symbol :tag "Utility Symbol")
2080 (string :tag "Utility Name")
2081 (repeat :tag "Must Utility Switches"
2082 (sexp :tag "Switch" :value ""))
2083 (choice :menu-tag "Paper Size"
2084 :tag "Paper Size"
2085 (const :tag "No Paper Size" nil)
2086 (string :tag "Paper Size Format"))
2087 (choice :menu-tag "N-Up"
2088 :tag "N-Up"
2089 (const :tag "No N-Up" nil)
2090 (string :tag "N-Up Format"))
2091 (choice :menu-tag "Landscape"
2092 :tag "Landscape"
2093 (const :tag "No Landscape" nil)
2094 (string :tag "Landscape Switch"))
2095 (choice :menu-tag "Duplex"
2096 :tag "Duplex"
2097 (const :tag "No Duplex" nil)
2098 (string :tag "Duplex Switch"))
2099 (choice :menu-tag "Tumble"
2100 :tag "Tumble"
2101 (const :tag "No Tumble" nil)
2102 (string :tag "Tumble Switch"))
2103 (string :tag "Output Separator")
2104 (repeat :tag "Utility Switches"
2105 (sexp :tag "Switch" :value ""))
2106 (repeat
2107 :tag "Default Value List"
2108 :inline t
2109 (cons
2110 :tag ""
2111 (choice
2112 :menu-tag "Variable"
2113 :tag "Variable"
2114 (const :tag "PS File Landscape" pr-file-landscape)
2115 (const :tag "PS File Duplex" pr-file-duplex)
2116 (const :tag "PS File Tumble" pr-file-tumble)
2117 (const :tag "Ghostscript Device" pr-gs-device)
2118 (const :tag "Ghostscript Resolution" pr-gs-resolution)
2119 (const :tag "inherits-from:" inherits-from:)
2120 (variable :tag "Other"))
2121 (sexp :tag "Value")))
2123 :set 'pr-alist-custom-set
2124 :group 'printing)
2127 (defcustom pr-menu-lock t
2128 "*Non-nil means menu is locked while selecting toggle options.
2130 See also `pr-menu-char-height' and `pr-menu-char-width'."
2131 :type 'boolean
2132 :group 'printing)
2135 (defcustom pr-menu-char-height
2136 (cond ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
2137 (pr-e-frame-char-height))
2138 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
2139 (pr-x-font-height (face-font 'default))))
2140 "*Specify menu char height in pixels.
2142 This variable is used to guess which vertical position should be locked the
2143 menu, so don't forget to adjust it if menu position is not ok.
2145 See also `pr-menu-lock' and `pr-menu-char-width'."
2146 :type 'integer
2147 :group 'printing)
2150 (defcustom pr-menu-char-width
2151 (cond ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
2152 (pr-e-frame-char-width))
2153 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
2154 (pr-x-font-width (face-font 'default))))
2155 "*Specify menu char width in pixels.
2157 This variable is used to guess which horizontal position should be locked the
2158 menu, so don't forget to adjust it if menu position is not ok.
2160 See also `pr-menu-lock' and `pr-menu-char-height'."
2161 :type 'integer
2162 :group 'printing)
2165 (defcustom pr-setting-database
2166 '((no-duplex ; setting symbol name
2167 nil nil nil ; inherits local kill-local
2168 (pr-file-duplex . nil) ; settings
2169 (pr-file-tumble . nil))
2171 "*Specify an alist for settings in general.
2173 The elements have the following form:
2175 (SYMBOL INHERITS LOCAL KILL-LOCAL SETTING...)
2177 Where:
2179 SYMBOL It's a symbol to identify the setting group.
2181 INHERITS Specify the inheritance for SYMBOL group. It's a symbol name
2182 setting from which the current setting inherits the context.
2183 If INHERITS is nil, means that there is no inheritance.
2184 This is a simple inheritance mechanism.
2186 Let's see an example to illustrate the inheritance mechanism:
2188 (setq pr-setting-database
2189 '((no-duplex ; setting symbol name
2190 nil ; inherits
2191 nil nil ; local kill-local
2192 (pr-file-duplex . nil) ; settings
2193 (pr-file-tumble . nil)
2195 (no-duplex-and-landscape ; setting symbol name
2196 no-duplex ; inherits
2197 nil nil ; local kill-local
2198 (pr-file-landscape . nil) ; settings
2201 The example above has two setting groups: no-duplex and
2202 no-duplex-and-landscape. When setting no-duplex is activated
2203 through `inherits-from:' (see `pr-ps-utility', `pr-mode-alist'
2204 and `pr-ps-printer-alist'), the variables pr-file-duplex and
2205 pr-file-tumble are both set to nil.
2207 Now when setting no-duplex-and-landscape is activated through
2208 `inherits-from:', the variable pr-file-landscape is set to nil
2209 and also the settings for no-duplex are done, because
2210 no-duplex-and-landscape inherits settings from no-duplex.
2212 Take care with circular inheritance. It's an error if circular
2213 inheritance happens.
2215 LOCAL Non-nil means that all settings for SYMBOL group will be
2216 declared local buffer.
2218 KILL-LOCAL Non-nil means that all settings for SYMBOL group will be
2219 killed at end. It has effect only when LOCAL is non-nil.
2221 SETTING It's a cons like:
2223 (VARIABLE . VALUE)
2225 That associates VARIABLE with VALUE. when this entry is
2226 selected, it's executed the following command:
2228 * If LOCAL is non-nil:
2229 (set (make-local-variable VARIABLE) (eval VALUE))
2231 * If LOCAL is nil:
2232 (set VARIABLE (eval VALUE))
2234 Note that VALUE can be any valid lisp expression. So, don't
2235 forget to quote symbols and constant lists.
2236 This setting is ignored if VARIABLE is equal to keyword
2237 `inherits-from:'.
2238 Examples:
2239 '(ps-landscape-mode . nil)
2240 '(ps-spool-duplex . t)
2241 '(pr-gs-device . (my-gs-device t))"
2242 :type '(repeat
2243 (list
2244 :tag ""
2245 (symbol :tag "Setting Name")
2246 (choice :menu-tag "Inheritance"
2247 :tag "Inheritance"
2248 (const :tag "No Inheritance" nil)
2249 (symbol :tag "Inherits From"))
2250 (boolean :tag "Local Buffer Setting")
2251 (boolean :tag "Kill Local Variable At End")
2252 (repeat
2253 :tag "Setting List"
2254 :inline t
2255 (cons
2256 :tag ""
2257 (choice
2258 :menu-tag "Variable"
2259 :tag "Variable"
2260 (const :tag "Landscape" ps-landscape-mode)
2261 (const :tag "Print Header" ps-print-header)
2262 (const :tag "Print Header Frame" ps-print-header-frame)
2263 (const :tag "Line Number" ps-line-number)
2264 (const :tag "Zebra Stripes" ps-zebra-stripes)
2265 (const :tag "Duplex" ps-spool-duplex)
2266 (const :tag "Tumble" ps-spool-tumble)
2267 (const :tag "Upside-Down" ps-print-upside-down)
2268 (const :tag "PS File Landscape" pr-file-landscape)
2269 (const :tag "PS File Duplex" pr-file-duplex)
2270 (const :tag "PS File Tumble" pr-file-tumble)
2271 (const :tag "Auto Region" pr-auto-region)
2272 (const :tag "Auto Mode" pr-auto-mode)
2273 (const :tag "Ghostscript Device" pr-gs-device)
2274 (const :tag "Ghostscript Resolution" pr-gs-resolution)
2275 (variable :tag "Other"))
2276 (sexp :tag "Value")))
2278 :group 'printing)
2281 (defcustom pr-visible-entry-list
2282 '(postscript text postscript-options postscript-process printing help)
2283 "*Specify a list of Printing menu visible entries.
2285 Valid values with the corresponding menu parts are:
2287 +------------------------------+
2288 | Printing Interface |
2289 +------------------------------+
2290 `postscript' | PostScript Preview >|
2291 | PostScript Print >|
2292 | PostScript Printer: name >|
2293 +------------------------------+
2294 `text' | Printify >|
2295 | Print >|
2296 | Text Printer: name >|
2297 +------------------------------+
2298 `postscript-options' |[ ] Landscape |
2299 |[ ] Print Header |
2300 |[ ] Print Header Frame |
2301 |[ ] Line Number |
2302 |[ ] Zebra Stripes |
2303 |[ ] Duplex |
2304 |[ ] Tumble |
2305 |[ ] Upside-Down |
2306 | Print All Pages >|
2307 +------------------------------+
2308 `postscript-process' |[ ] Spool Buffer |
2309 |[ ] Print with faces |
2310 |[ ] Print via Ghostscript |
2311 +------------------------------+
2312 `printing' |[ ] Auto Region |
2313 |[ ] Auto Mode |
2314 |[ ] Menu Lock |
2315 +------------------------------+
2316 `help' | Customize >|
2317 | Show Settings >|
2318 | Help |
2319 +------------------------------+
2321 Any other value is ignored."
2322 :type '(repeat :tag "Menu Visible Part"
2323 (choice :menu-tag "Menu Part"
2324 :tag "Menu Part"
2325 (const postscript)
2326 (const text)
2327 (const postscript-options)
2328 (const postscript-process)
2329 (const printing)
2330 (const help)))
2331 :group 'printing)
2334 (defcustom pr-delete-temp-file t
2335 "*Non-nil means delete temporary files.
2337 Set `pr-delete-temp-file' to nil, if the following message (or a similar)
2338 happens when printing:
2340 Error: could not open \"c:\\temp\\prspool.ps\" for reading."
2341 :type 'boolean
2342 :group 'printing)
2345 (defcustom pr-list-directory nil
2346 "*Non-nil means list directory when processing a directory.
2348 That is, any subdirectories (and the superdirectory) of the directory (given as
2349 argument of functions below) are also printed (as dired-mode listings).
2351 It's used by `pr-ps-directory-preview', `pr-ps-directory-using-ghostscript',
2352 `pr-ps-directory-print', `pr-ps-directory-ps-print', `pr-printify-directory'
2353 and `pr-txt-directory'."
2354 :type 'boolean
2355 :group 'printing)
2358 (defcustom pr-buffer-name "*Printing Interface*"
2359 "*Specify the name of the buffer interface for printing package.
2361 It's used by `pr-interface'."
2362 :type 'string
2363 :group 'printing)
2366 (defcustom pr-buffer-name-ignore
2367 (list (regexp-quote pr-buffer-name) ; ignore printing interface buffer
2368 "^ .*$") ; ignore invisible buffers
2369 "*Specify a regexp list for buffer names to be ignored in interface buffer.
2371 NOTE: Case is important for matching, that is, `case-fold-search' is always
2372 nil.
2374 It's used by `pr-interface'."
2375 :type '(repeat (regexp :tag "Buffer Name Regexp"))
2376 :group 'printing)
2379 (defcustom pr-buffer-verbose t
2380 "*Non-nil means to be verbose when editing a field in interface buffer.
2382 It's used by `pr-interface'."
2383 :type 'boolean
2384 :group 'printing)
2387 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2388 ;; Internal Variables
2391 (defvar pr-txt-command nil
2392 "Name of program for printing a text file.
2393 See `pr-txt-printer-alist'.")
2396 (defvar pr-txt-switches nil
2397 "List of sexp's to pass as extra options to the text printer program.
2398 See `pr-txt-printer-alist'.")
2401 (defvar pr-txt-printer nil
2402 "Specify text printer name.
2403 See `pr-txt-printer-alist'.")
2406 (defvar pr-ps-command nil
2407 "Name of program for printing a PostScript file.
2408 See `pr-ps-printer-alist'.")
2411 (defvar pr-ps-switches nil
2412 "List of sexp's to pass as extra options to the PostScript printer program.
2413 See `pr-ps-printer-alist'.")
2416 (defvar pr-ps-printer-switch nil
2417 "Specify PostScript printer name switch.
2418 See `pr-ps-printer-alist'.")
2421 (defvar pr-ps-printer nil
2422 "Specify PostScript printer name.
2423 See `pr-ps-printer-alist'.")
2426 (defvar pr-menu-bar nil
2427 "Specify Printing menu-bar entry.")
2430 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2431 ;; Keys & Menus
2434 (defmacro pr-xemacs-global-menubar (&rest body)
2435 `(save-excursion
2436 (let ((temp (get-buffer-create (make-temp-name " *Temp"))))
2437 ;; be sure to access global menubar
2438 (set-buffer temp)
2439 ,@body
2440 (kill-buffer temp))))
2443 (defsubst pr-visible-p (key)
2444 (memq key pr-visible-entry-list))
2447 (defsubst pr-mode-alist-p ()
2448 (cdr (assq major-mode pr-mode-alist)))
2451 (defsubst pr-auto-mode-p ()
2452 (and pr-auto-mode (pr-mode-alist-p)))
2455 (defsubst pr-using-ghostscript-p ()
2456 (and pr-print-using-ghostscript (not pr-spool-p)))
2459 (eval-and-compile
2460 (defun pr-get-symbol (name)
2461 ;; Recent versions of easy-menu downcase names before interning them.
2462 (and (fboundp 'easy-menu-name-match)
2463 (setq name (downcase name)))
2464 (or (intern-soft name)
2465 (make-symbol name)))
2467 (cond
2468 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
2469 (defsubst pr-region-active-p ()
2470 (and pr-auto-region transient-mark-mode mark-active)))
2472 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
2473 (defvar zmacs-region-stays nil) ; to avoid compilation gripes
2474 (defsubst pr-region-active-p ()
2475 (and pr-auto-region (not zmacs-region-stays) (ps-mark-active-p)))))
2478 (defconst pr-menu-spec
2479 (cond
2480 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
2482 ["Printing Interface" pr-interface
2483 :help "Use buffer interface instead of menu interface"]
2484 "--"
2485 ("PostScript Preview" :visible (pr-visible-p 'postscript)
2486 :help "Preview PostScript instead of sending to printer"
2487 ("Directory" :active (not pr-spool-p)
2488 ["1-up" (pr-ps-directory-preview 1 nil nil t) t]
2489 ["2-up" (pr-ps-directory-preview 2 nil nil t) t]
2490 ["4-up" (pr-ps-directory-preview 4 nil nil t) t]
2491 ["Other..." (pr-ps-directory-preview nil nil nil t)
2492 :keys "\\[pr-ps-buffer-preview]"])
2493 ("Buffer" :active (not pr-spool-p)
2494 ["1-up" (pr-ps-buffer-preview 1 t) t]
2495 ["2-up" (pr-ps-buffer-preview 2 t) t]
2496 ["4-up" (pr-ps-buffer-preview 4 t) t]
2497 ["Other..." (pr-ps-buffer-preview nil t)
2498 :keys "\\[pr-ps-buffer-preview]"])
2499 ("Region" :active (and (not pr-spool-p) (ps-mark-active-p))
2500 ["1-up" (pr-ps-region-preview 1 t) t]
2501 ["2-up" (pr-ps-region-preview 2 t) t]
2502 ["4-up" (pr-ps-region-preview 4 t) t]
2503 ["Other..." (pr-ps-region-preview nil t)
2504 :keys "\\[pr-ps-region-preview]"])
2505 ("Mode" :active (and (not pr-spool-p) (pr-mode-alist-p))
2506 ["1-up" (pr-ps-mode-preview 1 t) t]
2507 ["2-up" (pr-ps-mode-preview 2 t) t]
2508 ["4-up" (pr-ps-mode-preview 4 t) t]
2509 ["Other..." (pr-ps-mode-preview nil t)
2510 :keys "\\[pr-ps-mode-preview]"])
2511 ("File"
2512 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview)
2513 :keys "\\[pr-ps-file-preview]"
2514 :help "Preview PostScript file"]
2515 "--"
2516 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
2517 :help "Select PostScript utility"]
2518 "--"
2519 ["1-up..." (pr-ps-file-up-preview 1 t t) pr-ps-utility-alist]
2520 ["2-up..." (pr-ps-file-up-preview 2 t t) pr-ps-utility-alist]
2521 ["4-up..." (pr-ps-file-up-preview 4 t t) pr-ps-utility-alist]
2522 ["Other..." (pr-ps-file-up-preview nil t t)
2523 :keys "\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist]
2524 "--"
2525 ["Landscape" pr-toggle-file-landscape
2526 :style toggle :selected pr-file-landscape
2527 :help "Toggle landscape for PostScript file"
2528 :active pr-ps-utility-alist]
2529 ["Duplex" pr-toggle-file-duplex
2530 :style toggle :selected pr-file-duplex
2531 :help "Toggle duplex for PostScript file"
2532 :active pr-ps-utility-alist]
2533 ["Tumble" pr-toggle-file-tumble
2534 :style toggle :selected pr-file-tumble
2535 :help "Toggle tumble for PostScript file"
2536 :active (and pr-file-duplex pr-ps-utility-alist)])
2537 ["Despool..." (call-interactively 'pr-despool-preview)
2538 :active pr-spool-p :keys "\\[pr-despool-preview]"
2539 :help "Despool PostScript buffer to printer or file (C-u)"])
2540 ("PostScript Print" :visible (pr-visible-p 'postscript)
2541 :help "Send PostScript to printer or file (C-u)"
2542 ("Directory"
2543 ["1-up" (pr-ps-directory-ps-print 1 nil nil t) t]
2544 ["2-up" (pr-ps-directory-ps-print 2 nil nil t) t]
2545 ["4-up" (pr-ps-directory-ps-print 4 nil nil t) t]
2546 ["Other..." (pr-ps-directory-ps-print nil nil nil t)
2547 :keys "\\[pr-ps-buffer-ps-print]"])
2548 ("Buffer"
2549 ["1-up" (pr-ps-buffer-ps-print 1 t) t]
2550 ["2-up" (pr-ps-buffer-ps-print 2 t) t]
2551 ["4-up" (pr-ps-buffer-ps-print 4 t) t]
2552 ["Other..." (pr-ps-buffer-ps-print nil t)
2553 :keys "\\[pr-ps-buffer-ps-print]"])
2554 ("Region" :active (ps-mark-active-p)
2555 ["1-up" (pr-ps-region-ps-print 1 t) t]
2556 ["2-up" (pr-ps-region-ps-print 2 t) t]
2557 ["4-up" (pr-ps-region-ps-print 4 t) t]
2558 ["Other..." (pr-ps-region-ps-print nil t)
2559 :keys "\\[pr-ps-region-ps-print]"])
2560 ("Mode" :active (pr-mode-alist-p)
2561 ["1-up" (pr-ps-mode-ps-print 1 t) t]
2562 ["2-up" (pr-ps-mode-ps-print 2 t) t]
2563 ["4-up" (pr-ps-mode-ps-print 4 t) t]
2564 ["Other..." (pr-ps-mode-ps-print nil t)
2565 :keys "\\[pr-ps-mode-ps-print]"])
2566 ("File"
2567 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print)
2568 :keys "\\[pr-ps-file-ps-print]"
2569 :help "Send PostScript file to printer"]
2570 "--"
2571 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
2572 :help "Select PostScript utility"]
2573 "--"
2574 ["1-up..." (pr-ps-file-up-ps-print 1 t t) pr-ps-utility-alist]
2575 ["2-up..." (pr-ps-file-up-ps-print 2 t t) pr-ps-utility-alist]
2576 ["4-up..." (pr-ps-file-up-ps-print 4 t t) pr-ps-utility-alist]
2577 ["Other..." (pr-ps-file-up-ps-print nil t t)
2578 :keys "\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist]
2579 "--"
2580 ["Landscape" pr-toggle-file-landscape
2581 :style toggle :selected pr-file-landscape
2582 :help "Toggle landscape for PostScript file"
2583 :active pr-ps-utility-alist]
2584 ["Duplex" pr-toggle-file-duplex
2585 :style toggle :selected pr-file-duplex
2586 :help "Toggle duplex for PostScript file"
2587 :active pr-ps-utility-alist]
2588 ["Tumble" pr-toggle-file-tumble
2589 :style toggle :selected pr-file-tumble
2590 :help "Toggle tumble for PostScript file"
2591 :active (and pr-file-duplex pr-ps-utility-alist)])
2592 ["Despool..." (call-interactively 'pr-despool-ps-print)
2593 :active pr-spool-p :keys "\\[pr-despool-ps-print]"
2594 :help "Despool PostScript buffer to printer or file (C-u)"])
2595 ["PostScript Printers" pr-update-menus
2596 :active pr-ps-printer-alist :included (pr-visible-p 'postscript)
2597 :help "Select PostScript printer"]
2598 "--"
2599 ("Printify" :visible (pr-visible-p 'text)
2600 :help "Replace non-printing chars with printable representations."
2601 ["Directory" pr-printify-directory t]
2602 ["Buffer" pr-printify-buffer t]
2603 ["Region" pr-printify-region (ps-mark-active-p)])
2604 ("Print" :visible (pr-visible-p 'text)
2605 :help "Send text to printer"
2606 ["Directory" pr-txt-directory t]
2607 ["Buffer" pr-txt-buffer t]
2608 ["Region" pr-txt-region (ps-mark-active-p)]
2609 ["Mode" pr-txt-mode (pr-mode-alist-p)])
2610 ["Text Printers" pr-update-menus
2611 :active pr-txt-printer-alist :included (pr-visible-p 'text)
2612 :help "Select text printer"]
2613 "--"
2614 ["Landscape" pr-toggle-landscape
2615 :style toggle :selected ps-landscape-mode
2616 :included (pr-visible-p 'postscript-options)]
2617 ["Print Header" pr-toggle-header
2618 :style toggle :selected ps-print-header
2619 :included (pr-visible-p 'postscript-options)]
2620 ["Print Header Frame" pr-toggle-header-frame
2621 :style toggle :selected ps-print-header-frame :active ps-print-header
2622 :included (pr-visible-p 'postscript-options)]
2623 ["Line Number" pr-toggle-line
2624 :style toggle :selected ps-line-number
2625 :included (pr-visible-p 'postscript-options)]
2626 ["Zebra Stripes" pr-toggle-zebra
2627 :style toggle :selected ps-zebra-stripes
2628 :included (pr-visible-p 'postscript-options)]
2629 ["Duplex" pr-toggle-duplex
2630 :style toggle :selected ps-spool-duplex
2631 :included (pr-visible-p 'postscript-options)]
2632 ["Tumble" pr-toggle-tumble
2633 :style toggle :selected ps-spool-tumble :active ps-spool-duplex
2634 :included (pr-visible-p 'postscript-options)]
2635 ["Upside-Down" pr-toggle-upside-down
2636 :style toggle :selected ps-print-upside-down
2637 :included (pr-visible-p 'postscript-options)]
2638 ("Print All Pages" :visible (pr-visible-p 'postscript-options)
2639 :help "Select odd/even pages/sheets to print"
2640 ["All Pages" (pr-even-or-odd-pages nil)
2641 :style radio :selected (eq ps-even-or-odd-pages nil)]
2642 ["Even Pages" (pr-even-or-odd-pages 'even-page)
2643 :style radio :selected (eq ps-even-or-odd-pages 'even-page)]
2644 ["Odd Pages" (pr-even-or-odd-pages 'odd-page)
2645 :style radio :selected (eq ps-even-or-odd-pages 'odd-page)]
2646 ["Even Sheets" (pr-even-or-odd-pages 'even-sheet)
2647 :style radio :selected (eq ps-even-or-odd-pages 'even-sheet)]
2648 ["Odd Sheets" (pr-even-or-odd-pages 'odd-sheet)
2649 :style radio :selected (eq ps-even-or-odd-pages 'odd-sheet)])
2650 "--"
2651 ["Spool Buffer" pr-toggle-spool
2652 :style toggle :selected pr-spool-p
2653 :included (pr-visible-p 'postscript-process)
2654 :help "Toggle PostScript spooling"]
2655 ["Print with faces" pr-toggle-faces
2656 :style toggle :selected pr-faces-p
2657 :included (pr-visible-p 'postscript-process)
2658 :help "Toggle PostScript printing with faces"]
2659 ["Print via Ghostscript" pr-toggle-ghostscript
2660 :style toggle :selected pr-print-using-ghostscript
2661 :included (pr-visible-p 'postscript-process)
2662 :help "Toggle PostScript generation using ghostscript"]
2663 "--"
2664 ["Auto Region" pr-toggle-region
2665 :style toggle :selected pr-auto-region
2666 :included (pr-visible-p 'printing)]
2667 ["Auto Mode" pr-toggle-mode
2668 :style toggle :selected pr-auto-mode
2669 :included (pr-visible-p 'printing)]
2670 ["Menu Lock" pr-toggle-lock
2671 :style toggle :selected pr-menu-lock
2672 :included (pr-visible-p 'printing)]
2673 "--"
2674 ("Customize" :visible (pr-visible-p 'help)
2675 ["printing" pr-customize t]
2676 ["ps-print" ps-print-customize t]
2677 ["lpr" lpr-customize t])
2678 ("Show Settings" :visible (pr-visible-p 'help)
2679 ["printing" pr-show-pr-setup t]
2680 ["ps-print" pr-show-ps-setup t]
2681 ["lpr" pr-show-lpr-setup t])
2682 ["Help" pr-help :active t :included (pr-visible-p 'help)]
2686 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
2687 ;; Menu mapping:
2688 ;; unfortunately XEmacs doesn't support :active or :visible
2689 ;; for submenus, only for items.
2690 ;; It uses :included instead of :active or :visible.
2691 ;; Also, XEmacs doesn't support :help tag.
2693 ["Printing Interface" pr-interface]
2694 "--"
2695 ("PostScript Preview" :included (pr-visible-p 'postscript)
2696 ("Directory" :included (not pr-spool-p)
2697 ["1-up" (pr-ps-directory-preview 1 nil nil t) t]
2698 ["2-up" (pr-ps-directory-preview 2 nil nil t) t]
2699 ["4-up" (pr-ps-directory-preview 4 nil nil t) t]
2700 ["Other..." (pr-ps-directory-preview nil nil nil t)
2701 :keys "\\[pr-ps-buffer-preview]"])
2702 ("Buffer" :included (not pr-spool-p)
2703 ["1-up" (pr-ps-buffer-preview 1 t) t]
2704 ["2-up" (pr-ps-buffer-preview 2 t) t]
2705 ["4-up" (pr-ps-buffer-preview 4 t) t]
2706 ["Other..." (pr-ps-buffer-preview nil t)
2707 :keys "\\[pr-ps-buffer-preview]"])
2708 ("Region" :included (and (not pr-spool-p) (ps-mark-active-p))
2709 ["1-up" (pr-ps-region-preview 1 t) t]
2710 ["2-up" (pr-ps-region-preview 2 t) t]
2711 ["4-up" (pr-ps-region-preview 4 t) t]
2712 ["Other..." (pr-ps-region-preview nil t)
2713 :keys "\\[pr-ps-region-preview]"])
2714 ("Mode" :included (and (not pr-spool-p) (pr-mode-alist-p))
2715 ["1-up" (pr-ps-mode-preview 1 t) t]
2716 ["2-up" (pr-ps-mode-preview 2 t) t]
2717 ["4-up" (pr-ps-mode-preview 4 t) t]
2718 ["Other..." (pr-ps-mode-preview nil t)
2719 :keys "\\[pr-ps-mode-preview]"])
2720 ("File"
2721 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview)
2722 :keys "\\[pr-ps-file-preview]"]
2723 "--"
2724 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist]
2725 "--"
2726 ["1-up..." (pr-ps-file-up-preview 1 t t) pr-ps-utility-alist]
2727 ["2-up..." (pr-ps-file-up-preview 2 t t) pr-ps-utility-alist]
2728 ["4-up..." (pr-ps-file-up-preview 4 t t) pr-ps-utility-alist]
2729 ["Other..." (pr-ps-file-up-preview nil t t)
2730 :keys "\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist]
2731 "--"
2732 ["Landscape" pr-toggle-file-landscape
2733 :style toggle :selected pr-file-landscape
2734 :active pr-ps-utility-alist]
2735 ["Duplex" pr-toggle-file-duplex
2736 :style toggle :selected pr-file-duplex
2737 :active pr-ps-utility-alist]
2738 ["Tumble" pr-toggle-file-tumble
2739 :style toggle :selected pr-file-tumble
2740 :active (and pr-file-duplex pr-ps-utility-alist)])
2741 ["Despool..." (call-interactively 'pr-despool-preview)
2742 :active pr-spool-p :keys "\\[pr-despool-preview]"])
2743 ("PostScript Print" :included (pr-visible-p 'postscript)
2744 ("Directory"
2745 ["1-up" (pr-ps-directory-ps-print 1 nil nil t) t]
2746 ["2-up" (pr-ps-directory-ps-print 2 nil nil t) t]
2747 ["4-up" (pr-ps-directory-ps-print 4 nil nil t) t]
2748 ["Other..." (pr-ps-directory-ps-print nil nil nil t)
2749 :keys "\\[pr-ps-buffer-ps-print]"])
2750 ("Buffer"
2751 ["1-up" (pr-ps-buffer-ps-print 1 t) t]
2752 ["2-up" (pr-ps-buffer-ps-print 2 t) t]
2753 ["4-up" (pr-ps-buffer-ps-print 4 t) t]
2754 ["Other..." (pr-ps-buffer-ps-print nil t)
2755 :keys "\\[pr-ps-buffer-ps-print]"])
2756 ("Region" :included (ps-mark-active-p)
2757 ["1-up" (pr-ps-region-ps-print 1 t) t]
2758 ["2-up" (pr-ps-region-ps-print 2 t) t]
2759 ["4-up" (pr-ps-region-ps-print 4 t) t]
2760 ["Other..." (pr-ps-region-ps-print nil t)
2761 :keys "\\[pr-ps-region-ps-print]"])
2762 ("Mode" :included (pr-mode-alist-p)
2763 ["1-up" (pr-ps-mode-ps-print 1 t) t]
2764 ["2-up" (pr-ps-mode-ps-print 2 t) t]
2765 ["4-up" (pr-ps-mode-ps-print 4 t) t]
2766 ["Other..." (pr-ps-mode-ps-print nil t)
2767 :keys "\\[pr-ps-mode-ps-print]"])
2768 ("File"
2769 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print)
2770 :keys "\\[pr-ps-file-ps-print]"]
2771 "--"
2772 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist]
2773 "--"
2774 ["1-up..." (pr-ps-file-up-ps-print 1 t t) pr-ps-utility-alist]
2775 ["2-up..." (pr-ps-file-up-ps-print 2 t t) pr-ps-utility-alist]
2776 ["4-up..." (pr-ps-file-up-ps-print 4 t t) pr-ps-utility-alist]
2777 ["Other..." (pr-ps-file-up-ps-print nil t t)
2778 :keys "\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist]
2779 "--"
2780 ["Landscape" pr-toggle-file-landscape
2781 :style toggle :selected pr-file-landscape
2782 :active pr-ps-utility-alist]
2783 ["Duplex" pr-toggle-file-duplex
2784 :style toggle :selected pr-file-duplex
2785 :active pr-ps-utility-alist]
2786 ["Tumble" pr-toggle-file-tumble
2787 :style toggle :selected pr-file-tumble
2788 :active (and pr-file-duplex pr-ps-utility-alist)])
2789 ["Despool..." (call-interactively 'pr-despool-ps-print)
2790 :active pr-spool-p :keys "\\[pr-despool-ps-print]"])
2791 ["PostScript Printers" pr-update-menus
2792 :active pr-ps-printer-alist :included (pr-visible-p 'postscript)]
2793 "--"
2794 ("Printify" :included (pr-visible-p 'text)
2795 ["Directory" pr-printify-directory t]
2796 ["Buffer" pr-printify-buffer t]
2797 ["Region" pr-printify-region (ps-mark-active-p)])
2798 ("Print" :included (pr-visible-p 'text)
2799 ["Directory" pr-txt-directory t]
2800 ["Buffer" pr-txt-buffer t]
2801 ["Region" pr-txt-region (ps-mark-active-p)]
2802 ["Mode" pr-txt-mode (pr-mode-alist-p)])
2803 ["Text Printers" pr-update-menus
2804 :active pr-txt-printer-alist :included (pr-visible-p 'text)]
2805 "--"
2806 ["Landscape" pr-toggle-landscape
2807 :style toggle :selected ps-landscape-mode
2808 :included (pr-visible-p 'postscript-options)]
2809 ["Print Header" pr-toggle-header
2810 :style toggle :selected ps-print-header
2811 :included (pr-visible-p 'postscript-options)]
2812 ["Print Header Frame" pr-toggle-header-frame
2813 :style toggle :selected ps-print-header-frame :active ps-print-header
2814 :included (pr-visible-p 'postscript-options)]
2815 ["Line Number" pr-toggle-line
2816 :style toggle :selected ps-line-number
2817 :included (pr-visible-p 'postscript-options)]
2818 ["Zebra Stripes" pr-toggle-zebra
2819 :style toggle :selected ps-zebra-stripes
2820 :included (pr-visible-p 'postscript-options)]
2821 ["Duplex" pr-toggle-duplex
2822 :style toggle :selected ps-spool-duplex
2823 :included (pr-visible-p 'postscript-options)]
2824 ["Tumble" pr-toggle-tumble
2825 :style toggle :selected ps-spool-tumble :active ps-spool-duplex
2826 :included (pr-visible-p 'postscript-options)]
2827 ["Upside-Down" pr-toggle-upside-down
2828 :style toggle :selected ps-print-upside-down
2829 :included (pr-visible-p 'postscript-options)]
2830 ("Print All Pages" :included (pr-visible-p 'postscript-options)
2831 ["All Pages" (pr-even-or-odd-pages nil)
2832 :style radio :selected (eq ps-even-or-odd-pages nil)]
2833 ["Even Pages" (pr-even-or-odd-pages 'even-page)
2834 :style radio :selected (eq ps-even-or-odd-pages 'even-page)]
2835 ["Odd Pages" (pr-even-or-odd-pages 'odd-page)
2836 :style radio :selected (eq ps-even-or-odd-pages 'odd-page)]
2837 ["Even Sheets" (pr-even-or-odd-pages 'even-sheet)
2838 :style radio :selected (eq ps-even-or-odd-pages 'even-sheet)]
2839 ["Odd Sheets" (pr-even-or-odd-pages 'odd-sheet)
2840 :style radio :selected (eq ps-even-or-odd-pages 'odd-sheet)])
2841 "--"
2842 ["Spool Buffer" pr-toggle-spool
2843 :style toggle :selected pr-spool-p
2844 :included (pr-visible-p 'postscript-process)]
2845 ["Print with faces" pr-toggle-faces
2846 :style toggle :selected pr-faces-p
2847 :included (pr-visible-p 'postscript-process)]
2848 ["Print via Ghostscript" pr-toggle-ghostscript
2849 :style toggle :selected pr-print-using-ghostscript
2850 :included (pr-visible-p 'postscript-process)]
2851 "--"
2852 ["Auto Region" pr-toggle-region
2853 :style toggle :selected pr-auto-region
2854 :included (pr-visible-p 'printing)]
2855 ["Auto Mode" pr-toggle-mode
2856 :style toggle :selected pr-auto-mode
2857 :included (pr-visible-p 'printing)]
2858 ["Menu Lock" pr-toggle-lock
2859 :style toggle :selected pr-menu-lock
2860 :included (pr-visible-p 'printing)]
2861 "--"
2862 ("Customize" :included (pr-visible-p 'help)
2863 ["printing" pr-customize t]
2864 ["ps-print" ps-print-customize t]
2865 ["lpr" lpr-customize t])
2866 ("Show Settings" :included (pr-visible-p 'help)
2867 ["printing" pr-show-pr-setup t]
2868 ["ps-print" pr-show-ps-setup t]
2869 ["lpr" pr-show-lpr-setup t])
2870 ["Help" pr-help :active t :included (pr-visible-p 'help)]
2875 (cond
2876 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
2877 ;; Menu binding
2878 (require 'easymenu)
2879 ;; Replace existing "print" item by "Printing" item.
2880 ;; If you're changing this file, you'll load it a second,
2881 ;; third... time, but "print" item exists only in the first load.
2882 (defvar pr-menu-print-item "print")
2883 (cond
2884 ;; Emacs 20
2885 ((string< emacs-version "21.")
2886 (easy-menu-change '("tools") "Printing" pr-menu-spec pr-menu-print-item)
2887 (when pr-menu-print-item
2888 (easy-menu-remove-item nil '("tools") pr-menu-print-item)
2889 (setq pr-menu-print-item nil
2890 pr-menu-bar (vector 'menu-bar 'tools
2891 (pr-get-symbol "Printing")))))
2892 ;; Emacs 21
2893 (pr-menu-print-item
2894 (easy-menu-change '("files") "Print" pr-menu-spec "print-buffer")
2895 (let ((items '("print-buffer" "print-region"
2896 "ps-print-buffer-faces" "ps-print-region-faces"
2897 "ps-print-buffer" "ps-print-region")))
2898 (while items
2899 (easy-menu-remove-item nil '("files") (car items))
2900 (setq items (cdr items)))
2901 (setq pr-menu-print-item nil
2902 pr-menu-bar (vector 'menu-bar 'files
2903 (pr-get-symbol "Print")))))
2905 (easy-menu-change '("files") "Print" pr-menu-spec)))
2907 ;; Key binding
2908 (global-set-key [print] 'pr-ps-fast-fire)
2909 (global-set-key [M-print] 'pr-ps-mode-using-ghostscript)
2910 (global-set-key [C-print] 'pr-txt-fast-fire))
2913 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
2914 ;; Menu binding
2915 (pr-xemacs-global-menubar
2916 (pr-x-add-submenu nil (cons "Printing" pr-menu-spec) "Apps"))
2918 ;; Key binding
2919 (global-set-key 'f22 'pr-ps-fast-fire)
2920 (global-set-key '(meta f22) 'pr-ps-mode-using-ghostscript)
2921 (global-set-key '(control f22) 'pr-txt-fast-fire))))
2924 ;;; You can also use something like:
2925 ;;;(global-set-key "\C-ci" 'pr-interface)
2926 ;;;(global-set-key "\C-cbp" 'pr-ps-buffer-print)
2927 ;;;(global-set-key "\C-cbx" 'pr-ps-buffer-preview)
2928 ;;;(global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
2929 ;;;(global-set-key "\C-crp" 'pr-ps-region-print)
2930 ;;;(global-set-key "\C-crx" 'pr-ps-region-preview)
2931 ;;;(global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
2934 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2935 ;; Help Message
2938 (defconst pr-help-message
2939 (concat "printing.el version " pr-version
2940 " ps-print.el version " ps-print-version
2941 "\n\n
2942 Menu Layout
2943 -----------
2945 The `printing' menu (Tools/Printing or File/Print) has the following layout:
2947 +-----------------------------+
2948 A 0 | Printing Interface |
2949 +-----------------------------+ +-A---------+ +-B------+
2950 I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
2951 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
2952 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
2953 +-----------------------------+ |Mode >|-- B |Other...|
2954 II 4 | Printify >|-----\\ |File >|--\\ +--------+
2955 5 | Print >|---\\ | |Despool... | |
2956 6 | Text Printer: name >|-\\ | | +-----------+ |
2957 +-----------------------------+ | | | +---------+ +------------+
2958 III 7 |[ ]Landscape | | | \\-|Directory| | No Prep... | Ia
2959 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
2960 9 |[ ]Print Header Frame | | | |Region | | name >|- C
2961 10 |[ ]Line Number | | | +---------+ +------------+
2962 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
2963 12 |[ ]Duplex | | \\---|Directory| | 2-up... |
2964 13 |[ ]Tumble | \\--\\ |Buffer | | 4-up... |
2965 14 |[ ]Upside-Down | | |Region | | Other... |
2966 15 | Print All Pages >|--\\ | |Mode | +------------+
2967 +-----------------------------+ | | +---------+ |[ ]Landscape| Id
2968 IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
2969 17 |[ ]Print with faces | | \\--|( )name A| |[ ]Tumble | If
2970 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
2971 +-----------------------------+ | |... |
2972 V 19 |[ ]Auto Region | | |(*)name |
2973 20 |[ ]Auto Mode | | |... |
2974 21 |[ ]Menu Lock | | +---------+ +--------------+
2975 +-----------------------------+ \\------------------|(*)All Pages |
2976 VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
2977 23 | Show Settings >|-------|printing| |( )Odd Pages |
2978 24 | Help | |ps-print| |( )Even Sheets|
2979 +-----------------------------+ |lpr | |( )Odd Sheets |
2980 +--------+ +--------------+
2982 See `pr-visible-entry-list' for hiding some parts of the menu.
2984 The menu has the following sections:
2986 A. Interface:
2988 0. You can use a buffer interface instead of menus. It looks like the
2989 customization buffer. Basically, it has the same options found in the
2990 menu and some extra options, all this on a buffer.
2992 I. PostScript printing:
2994 1. You can generate a PostScript file (if you type C-u before activating
2995 menu) or PostScript temporary file for a directory, a buffer, a region
2996 or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
2997 after file generation, ghostview is activated using the file generated
2998 as argument. This option is disabled if spooling is on (option 16).
2999 Also, if you already have a PostScript file you can preview it.
3000 Instead of previewing each buffer, region or major mode at once, you
3001 can save temporarily the PostScript code generated in a buffer and
3002 preview it later. The option `Despool...' despools the PostScript
3003 spooling buffer in a temporary file and uses ghostview to preview it.
3004 If you type C-u before choosing this option, the PostScript code
3005 generated is saved in a file instead of saving in a temporary file. To
3006 spool the PostScript code generated you need to turn on the option 16.
3007 The option `Despool...' is enabled if spooling is on (option 16).
3009 NOTE 1: It's possible to customize a major mode printing, just declare
3010 the customization in `pr-mode-alist' and invoke some of
3011 `*-mode*' commands or select Mode option in Printing menu. An
3012 example for major mode usage is when you're using gnus (or mh,
3013 or rmail, etc.) and you're in the *Summary* buffer, if you
3014 forget to switch to the *Article* buffer before printing,
3015 you'll get a nicely formatted list of article subjects shows
3016 up at the printer. With major mode printing you don't need to
3017 switch from gnus *Summary* buffer first.
3019 NOTE 2: There are the following options for PostScript file processing:
3020 Ia. Print the file *No Preprocessing*, that is, send it
3021 directly to PostScript printer.
3022 Ib. PostScript utility processing selection.
3023 See `pr-ps-utility-alist' and `pr-setting-database' for
3024 documentation.
3025 Ic. Do n-up processing before printing.
3026 Id. Toggle on/off landscape for PostScript file processing.
3027 Ie. Toggle on/off duplex for PostScript file processing.
3028 If. Toggle on/off tumble for PostScript file processing.
3030 NOTE 3: Don't forget to download and install the utilities declared on
3031 `pr-ps-utility-alist'.
3033 2. Operate the same way as option 1, but it sends directly the PostScript
3034 code (or put in a file, if you've typed C-u) or it uses ghostscript to
3035 print the PostScript file generated. It depends on option 18, if it's
3036 turned on, it uses ghostscript; otherwise, it sends directly to
3037 printer. If spooling is on (option 16), the PostScript code is saved
3038 temporarily in a buffer instead of printing it or saving it in a file.
3039 Also, if you already have a PostScript file you can print it.
3040 Instead of printing each buffer, region or major mode at once, you can
3041 save temporarily the PostScript code generated in a buffer and print it
3042 later. The option `Despool...' despools the PostScript spooling buffer
3043 directly on a printer. If you type C-u before choosing this option,
3044 the PostScript code generated is saved in a file instead of sending it to
3045 the printer. To spool the PostScript code generated you need to turn on
3046 option 16. This option is enabled if spooling is on (option 16).
3047 See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
3049 3. You can select a new PostScript printer to send PostScript code
3050 generated. For selection it's used all PostScript printers defined
3051 in `pr-ps-printer-alist' variable (see it for documentation).
3052 See also `pr-setting-database'.
3054 II. Text printing:
3056 4. If you have control characters (character code from \\000 to \\037) in a
3057 buffer and you want to print them in a text printer, select this
3058 option. All control characters in your buffer or region will be
3059 replaced by a printable representation. The printable representations
3060 use ^ (for ASCII control characters) or hex. The characters tab,
3061 linefeed, space, return and formfeed are not affected.
3062 You don't need to select this option if you use any option of section
3063 I, the PostScript engine treats control characters properly.
3065 5. If you want to print a directory, buffer, region or major mode in a
3066 text printer, select this option. See also the NOTE 1 on option 1.
3068 6. You can select a new text printer to send text generated. For
3069 selection it's used all text printers defined in `pr-txt-printer-alist'
3070 variable (see it for documentation).
3071 See also `pr-setting-database'.
3073 III. PostScript page toggle options:
3075 7. If you want a PostScript landscape printing, turn on this option.
3077 8. If you want to have a header in each page in your PostScript code,
3078 turn on this option.
3080 9. If you want to draw a gaudy frame around the header, turn on this
3081 option. This option is enabled if print header is on (option 8).
3083 10. If you want that the line number is printed in your PostScript code,
3084 turn on this option.
3086 11. If you want background zebra stripes in your PostScript code, turn on
3087 this option.
3089 12. If you want a duplex printing and your PostScript printer has this
3090 feature, turn on this option.
3092 13. If you turned on duplex printing, you can choose if you want to have a
3093 printing suitable for binding on the left or right (tumble off), or to
3094 have a printing suitable for binding at top or bottom (tumble on).
3095 This option is enabled if duplex is on (option 12).
3097 14. If you want a PostScript upside-down printing, turn on this option.
3099 15. With this option, you can choose if you want to print all pages, odd
3100 pages, even pages, odd sheets or even sheets.
3101 See also `ps-even-or-odd-pages'.
3103 IV. PostScript processing toggle options:
3105 16. If you want to spool the PostScript code generated, turn on this
3106 option. To spool the PostScript code generated use option 2. You can
3107 despool later by choosing option 1 or 2, sub-option `Despool...'.
3109 17. If you use colors in your buffers and want to see these colors on your
3110 PostScript code generated, turn on this option. If you have a
3111 black/white PostScript printer, these colors are displayed in gray
3112 scale by PostScript printer interpreter.
3114 18. If you don't have a PostScript printer to send PostScript files, turn
3115 on this option. When this option is on, the ghostscript is used to
3116 print PostScript files. In GNU or Unix system, if ghostscript is set
3117 as a PostScript filter, you don't need to turn on this option.
3119 V. Printing customization:
3121 19. If you want that region is automagically detected, turn on this
3122 option. Note that this will only work if you're using transient mark
3123 mode. When this option is on, the `*-buffer*' commands will behave
3124 like `*-region*' commands, that is, `*-buffer*' commands will print
3125 only the region marked instead of all buffer.
3127 20. Turn this option on if you want that when current major-mode is
3128 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
3129 behave like `*-mode*' commands.
3131 21. If you want that Printing menu stays open while you are setting
3132 toggle options, turn on this option. The variables
3133 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
3134 menu position, so don't forget to adjust these variables if menu
3135 position is not ok.
3137 VI. Customization:
3139 22. Besides all options in section III, IV and V, you can customize much
3140 more PostScript options in `ps-print' option. Or you can customize
3141 some `lpr' options for text printing. Or customize `printing'
3142 options.
3144 23. Show current settings for `printing', `ps-print' or `lpr'.
3146 24. Quick help for printing menu layout.
3148 "Printing help message.")
3151 (defconst pr-interface-help-message
3152 (concat "printing.el version " pr-version
3153 " ps-print.el version " ps-print-version
3154 "\n\n
3155 The printing interface buffer has the same functionality as the printing menu.
3156 The major difference is that the states (like sending PostScript generated to a
3157 file, n-up printing, etc.) are set and saved between priting buffer
3158 activation. Also, the landscape, duplex and tumble values are the same for
3159 PostScript file and directory/buffer/region/mode processing; using menu, there
3160 are different value sets for PostScript file and directory/buffer/region/mode
3161 processing.
3163 The printing interface buffer has the following sections:
3165 1. Print:
3167 Here you can choose to print/preview a buffer, a directory or a PostScript
3168 file:
3170 1a. Buffer:
3172 * Buffer List:
3173 Select a buffer from the current buffer list.
3175 * Region:
3176 If it's on, this means that the selected buffer has an active region,
3177 so you can turn on/off, as you wish.
3178 If it's off when a buffer is selected, this means that the selected
3179 buffer has no active region, so it'll not be possible to turn it on.
3180 If you want to process the region, let this option on.
3181 If you want to process the whole buffer, let this option off.
3183 * Mode:
3184 If it's on, this means that the selected buffer major mode is declared
3185 for major mode processing, so you can turn on/off, as you wish.
3186 If it's off when a buffer is selected, this means that the selected
3187 buffer major mode isn't declared for major mode processing, so it'll
3188 not be possible to turn it on.
3189 If you want the major mode processing, let this option on.
3190 If you don't want the major mode processing, let this option off.
3192 NOTE 1: It's possible to customize a major mode printing, just declare
3193 the customization in `pr-mode-alist' and invoke some of
3194 `*-mode*' commands or select Mode option in Printing menu. An
3195 example for major mode usage is when you're using gnus (or mh,
3196 or rmail, etc.) and you're in the *Summary* buffer, if you
3197 forget to switch to the *Article* buffer before printing,
3198 you'll get a nicely formatted list of article subjects shows
3199 up at the printer. With major mode printing you don't need to
3200 switch from gnus *Summary* buffer first.
3202 1b. Directory:
3204 * Directory:
3205 Specify a valid directory path.
3207 * File Regexp:
3208 Specify a file name regexp. All file names in the directory that
3209 match with regexp will be printed/previewed. An empty file name
3210 regexp means to print/preview all files in the directory.
3212 * List Directory Entry:
3213 If it's turned on, list directory entries besides file entries.
3215 1c. PostScript file:
3217 * PostScript File:
3218 Specify an existent PostScript file to print/preview.
3220 * PostScript Utility:
3221 Select a PostScript utility.
3222 See `pr-ps-utility-alist' and `pr-setting-database' for documentation.
3224 NOTE 2: Don't forget to download and install the utilities declared on
3225 `pr-ps-utility-alist'.
3227 * No Preprocessing:
3228 If it's turned on, don't use the PostScript utility to preprocess the
3229 PostScript file before printing/previewing.
3231 2. PostScript printer:
3233 * PostScript Printer:
3234 You can select a new PostScript printer to send PostScript code
3235 generated. For selection it's used all PostScript printers defined
3236 in `pr-ps-printer-alist' variable (see it for documentation).
3237 See also `pr-setting-database'.
3239 * Despool:
3240 If spooling is on, you can turn it on/off, as you wish.
3241 If spooling is off, it'll not be possible to turn it on.
3242 If it's turned on, specify to despools the PostScript spooling buffer in
3243 a temporary file or in the selected PostScript file when
3244 printing/previewing.
3246 * Preview:
3247 Preview the PostScript generated.
3249 * Print:
3250 Print the PostScript generated.
3252 * Quit:
3253 Quit from printing interface buffer.
3255 * Send to Printer/Temporary File:
3256 If it's turned on, the PostScript generated is sent directly to
3257 PostScript printer or, for previewing, to a temporary file.
3259 * Send to File:
3260 Specify a file name to send the PostScript generated.
3262 * N-Up:
3263 Specify n-up printing.
3265 3. Text printer:
3267 * Text Printer:
3268 Select a new text printer to send text generated. For selection it's used
3269 all text printers defined in `pr-txt-printer-alist' variable (see it for
3270 documentation). See also `pr-setting-database'.
3272 * Printify:
3273 If you have control characters (character code from \\000 to \\037) in a
3274 buffer and you want to print them in a text printer, select this
3275 option. All control characters in your buffer or region will be
3276 replaced by a printable representation. The printable representations
3277 use ^ (for ASCII control characters) or hex. The characters tab,
3278 linefeed, space, return and formfeed are not affected.
3279 You don't need to select this option if you use any option of section
3280 I, the PostScript engine treats control characters properly.
3282 * Print:
3283 To print a directory, buffer, region or major mode in a
3284 text printer, select this option. See also the NOTE 1 on section 1.
3286 * Quit:
3287 Quit from printing interface buffer.
3289 4. Settings:
3291 There are 3 setting columns:
3293 4a. First column (left column):
3295 * Landscape:
3296 PostScript landscape printing.
3298 * Print Header:
3299 To have a header in each page in your PostScript code.
3301 * Print Header Frame:
3302 To draw a gaudy frame around the header.
3304 * Line Number:
3305 The line number is printed in your PostScript code.
3307 * Zebra Stripes:
3308 Background zebra stripes in your PostScript code.
3310 * Duplex:
3311 Duplex printing (if your PostScript printer has this feature).
3313 * Tumble:
3314 If duplex printing is on, you can choose if you want to have a
3315 printing suitable for binding on the left or right (tumble off), or to
3316 have a printing suitable for binding at top or bottom (tumble on).
3318 * Upside-Down:
3319 PostScript upside-down printing.
3321 4b. Second column (middle column):
3323 * Auto Region:
3324 If you want that region is automagically detected, turn on this
3325 option. Note that this will only work if you're using transient mark
3326 mode. When this option is on, the `*-buffer*' commands will behave
3327 like `*-region*' commands, that is, `*-buffer*' commands will print
3328 only the region marked instead of all buffer.
3330 * Auto Mode:
3331 Turn this option on if you want that when current major-mode is
3332 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
3333 behave like `*-mode*' commands.
3335 * Menu Lock:
3336 If you want that Printing menu stays open while you are setting
3337 toggle options, turn on this option. The variables
3338 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
3339 menu position, so don't forget to adjust these variables if menu
3340 position is not ok.
3342 * Spool Buffer:
3343 To spool the PostScript code generated. You can despool later by
3344 setting Despool option on PostScript printer section.
3346 * Print with faces:
3347 If you use colors in your buffers and want to see these colors on your
3348 PostScript code generated, turn on this option. If you have a
3349 black/white PostScript printer, these colors are displayed in gray
3350 scale by PostScript printer interpreter.
3352 * Print via Ghostscript:
3353 If you don't have a PostScript printer to send PostScript files, turn
3354 on this option. When this option is on, the ghostscript is used to
3355 print PostScript files. In GNU or Unix system, if ghostscript is set
3356 as a PostScript filter, you don't need to turn on this option.
3358 * Parity Page Menu:
3359 To print all pages, odd pages, even pages, odd sheets or even sheets.
3360 See also `ps-even-or-odd-pages'.
3362 4c. Third column (right column):
3364 * Verbose:
3365 That is, to be verbose when editing a field in interface buffer.
3367 5. Customize:
3369 Besides all options in section 4, you can customize much more PostScript
3370 options in `ps-print' option. Or you can customize some `lpr' options for
3371 text printing. Or customize `printing' options.
3373 6. Show settings:
3375 Show current settings for `printing', `ps-print' or `lpr'.
3377 7. Help:
3379 Quick help for printing interface buffer and printing menu layout. You can
3380 also quit the printing interface buffer or kill all printing help buffer.
3382 "Printing buffer interface help message.")
3385 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3386 ;; Commands
3389 ;;;###autoload
3390 (defun pr-interface (&optional buffer)
3391 "Activate the printing interface buffer.
3393 If BUFFER is nil, the current buffer is used for printing.
3395 For more information, type \\[pr-interface-help]."
3396 (interactive)
3397 (save-excursion
3398 (set-buffer (or buffer (current-buffer)))
3399 (pr-create-interface)))
3402 ;;;###autoload
3403 (defun pr-ps-directory-preview (n-up dir file-regexp &optional filename)
3404 "Preview directory using ghostview.
3406 Interactively, the command prompts for N-UP printing number, a directory, a
3407 file name regexp for matching and, when you use a prefix argument (C-u), the
3408 command prompts the user for a file name, and saves the PostScript image in
3409 that file instead of saving it in a temporary file.
3411 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3412 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3413 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3414 save the image in a temporary file. If FILENAME is a string, save the
3415 PostScript image in a file with that name. If FILENAME is t, prompts for a
3416 file name.
3418 See also documentation for `pr-list-directory'."
3419 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS preview dir")))
3420 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3421 (pr-prompt "PS preview dir"))
3422 (setq filename (pr-ps-file filename))
3423 (pr-ps-file-list n-up dir file-regexp filename)
3424 (or pr-spool-p
3425 (pr-ps-file-preview filename)))
3428 ;;;###autoload
3429 (defun pr-ps-directory-using-ghostscript (n-up dir file-regexp &optional filename)
3430 "Print directory using PostScript through ghostscript.
3432 Interactively, the command prompts for N-UP printing number, a directory, a
3433 file name regexp for matching and, when you use a prefix argument (C-u), the
3434 command prompts the user for a file name, and saves the PostScript image in
3435 that file instead of saving it in a temporary file.
3437 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3438 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3439 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3440 save the image in a temporary file. If FILENAME is a string, save the
3441 PostScript image in a file with that name. If FILENAME is t, prompts for a
3442 file name.
3444 See also documentation for `pr-list-directory'."
3445 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir GS")))
3446 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3447 (pr-prompt "PS print dir GS"))
3448 (let ((file (pr-ps-file filename)))
3449 (pr-ps-file-list n-up dir file-regexp file)
3450 (pr-ps-file-using-ghostscript file)
3451 (or filename (pr-delete-file file))))
3454 ;;;###autoload
3455 (defun pr-ps-directory-print (n-up dir file-regexp &optional filename)
3456 "Print directory using PostScript printer.
3458 Interactively, the command prompts for N-UP printing number, a directory, a
3459 file name regexp for matching and, when you use a prefix argument (C-u), the
3460 command prompts the user for a file name, and saves the PostScript image in
3461 that file instead of saving it in a temporary file.
3463 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3464 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3465 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3466 save the image in a temporary file. If FILENAME is a string, save the
3467 PostScript image in a file with that name. If FILENAME is t, prompts for a
3468 file name.
3470 See also documentation for `pr-list-directory'."
3471 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir")))
3472 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3473 (pr-prompt "PS print dir"))
3474 (let ((file (pr-ps-file filename)))
3475 (pr-ps-file-list n-up dir file-regexp file)
3476 (pr-ps-file-print file)
3477 (or filename (pr-delete-file file))))
3480 ;;;###autoload
3481 (defun pr-ps-directory-ps-print (n-up dir file-regexp &optional filename)
3482 "Print directory using PostScript printer or through ghostscript.
3484 It depends on `pr-print-using-ghostscript'.
3486 Interactively, the command prompts for N-UP printing number, a directory, a
3487 file name regexp for matching and, when you use a prefix argument (C-u), the
3488 command prompts the user for a file name, and saves the PostScript image in
3489 that file instead of saving it in a temporary file.
3491 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3492 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3493 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3494 save the image in a temporary file. If FILENAME is a string, save the
3495 PostScript image in a file with that name. If FILENAME is t, prompts for a
3496 file name.
3498 See also documentation for `pr-list-directory'."
3499 (interactive (pr-interactive-ps-dir-args
3500 (pr-prompt (pr-prompt-gs "PS print dir"))))
3501 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
3502 (pr-prompt (pr-prompt-gs "PS print dir")))
3503 (if (pr-using-ghostscript-p)
3504 (pr-ps-directory-using-ghostscript n-up dir file-regexp filename)
3505 (pr-ps-directory-print n-up dir file-regexp filename)))
3508 ;;;###autoload
3509 (defun pr-ps-buffer-preview (n-up &optional filename)
3510 "Preview buffer using ghostview.
3512 Interactively, the command prompts for N-UP printing number and, when you use a
3513 prefix argument (C-u), the command prompts the user for a file name, and saves
3514 the PostScript image in that file instead of saving it in a temporary file.
3516 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3517 argument FILENAME is treated as follows: if it's nil, save the image in a
3518 temporary file. If FILENAME is a string, save the PostScript image in a file
3519 with that name. If FILENAME is t, prompts for a file name."
3520 (interactive (pr-interactive-n-up-file (pr-prompt "PS preview")))
3521 (if (pr-auto-mode-p)
3522 (pr-ps-mode-preview n-up filename)
3523 (pr-ps-preview (pr-region-active-symbol) n-up filename
3524 (pr-region-active-string "PS preview"))))
3527 ;;;###autoload
3528 (defun pr-ps-buffer-using-ghostscript (n-up &optional filename)
3529 "Print buffer using PostScript through ghostscript.
3531 Interactively, the command prompts for N-UP printing number and, when you use a
3532 prefix argument (C-u), the command prompts the user for a file name, and saves
3533 the PostScript image in that file instead of sending it to the printer.
3535 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3536 argument FILENAME is treated as follows: if it's nil, send the image to the
3537 printer. If FILENAME is a string, save the PostScript image in a file with
3538 that name. If FILENAME is t, prompts for a file name."
3539 (interactive (pr-interactive-n-up-file (pr-prompt "PS print GS")))
3540 (if (pr-auto-mode-p)
3541 (pr-ps-mode-using-ghostscript n-up filename)
3542 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
3543 (pr-region-active-string "PS print GS"))))
3546 ;;;###autoload
3547 (defun pr-ps-buffer-print (n-up &optional filename)
3548 "Print buffer using PostScript printer.
3550 Interactively, the command prompts for N-UP printing number and, when you use a
3551 prefix argument (C-u), the command prompts the user for a file name, and saves
3552 the PostScript image in that file instead of sending it to the printer.
3554 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3555 argument FILENAME is treated as follows: if it's nil, send the image to the
3556 printer. If FILENAME is a string, save the PostScript image in a file with
3557 that name. If FILENAME is t, prompts for a file name."
3558 (interactive (pr-interactive-n-up-file (pr-prompt "PS print")))
3559 (if (pr-auto-mode-p)
3560 (pr-ps-mode-print n-up filename)
3561 (pr-ps-print (pr-region-active-symbol) n-up filename
3562 (pr-region-active-string "PS print"))))
3565 ;;;###autoload
3566 (defun pr-ps-buffer-ps-print (n-up &optional filename)
3567 "Print buffer using PostScript printer or through ghostscript.
3569 It depends on `pr-print-using-ghostscript'.
3571 Interactively, the command prompts for N-UP printing number and, when you use a
3572 prefix argument (C-u), the command prompts the user for a file name, and saves
3573 the PostScript image in that file instead of sending it to the printer.
3575 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3576 argument FILENAME is treated as follows: if it's nil, send the image to the
3577 printer. If FILENAME is a string, save the PostScript image in a file with
3578 that name. If FILENAME is t, prompts for a file name."
3579 (interactive (pr-interactive-n-up-file
3580 (pr-prompt (pr-prompt-gs "PS print"))))
3581 (cond ((pr-auto-mode-p)
3582 (pr-ps-mode-ps-print n-up filename))
3583 ((pr-using-ghostscript-p)
3584 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
3585 (pr-region-active-string "PS print GS")))
3587 (pr-ps-print (pr-region-active-symbol) n-up filename
3588 (pr-region-active-string "PS print")))))
3591 ;;;###autoload
3592 (defun pr-ps-region-preview (n-up &optional filename)
3593 "Preview region using ghostview.
3595 See also `pr-ps-buffer-preview'."
3596 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS preview")))
3597 (if (pr-auto-mode-p)
3598 (let ((pr-auto-region t))
3599 (pr-ps-mode-preview n-up filename))
3600 (pr-ps-preview 'region n-up filename "PS preview region")))
3603 ;;;###autoload
3604 (defun pr-ps-region-using-ghostscript (n-up &optional filename)
3605 "Print region using PostScript through ghostscript.
3607 See also `pr-ps-buffer-using-ghostscript'."
3608 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print GS")))
3609 (if (pr-auto-mode-p)
3610 (let ((pr-auto-region t))
3611 (pr-ps-mode-using-ghostscript n-up filename))
3612 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region")))
3615 ;;;###autoload
3616 (defun pr-ps-region-print (n-up &optional filename)
3617 "Print region using PostScript printer.
3619 See also `pr-ps-buffer-print'."
3620 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print")))
3621 (if (pr-auto-mode-p)
3622 (let ((pr-auto-region t))
3623 (pr-ps-mode-print n-up filename))
3624 (pr-ps-print 'region n-up filename "PS print region")))
3627 ;;;###autoload
3628 (defun pr-ps-region-ps-print (n-up &optional filename)
3629 "Print region using PostScript printer or through ghostscript.
3631 See also `pr-ps-buffer-ps-print'."
3632 (interactive (pr-interactive-n-up-file
3633 (pr-prompt-region (pr-prompt-gs "PS print"))))
3634 (cond ((pr-auto-mode-p)
3635 (let ((pr-auto-region t))
3636 (pr-ps-mode-ps-print n-up filename)))
3637 ((pr-using-ghostscript-p)
3638 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region"))
3640 (pr-ps-print 'region n-up filename "PS print region"))))
3643 ;;;###autoload
3644 (defun pr-ps-mode-preview (n-up &optional filename)
3645 "Preview major mode using ghostview.
3647 See also `pr-ps-buffer-preview'."
3648 (interactive (pr-interactive-n-up-file "PS preview mode"))
3649 (pr-set-n-up-and-filename 'n-up 'filename "PS preview mode")
3650 (let ((file (pr-ps-file filename)))
3651 (and (pr-ps-mode n-up file)
3652 (not pr-spool-p)
3653 (pr-ps-file-preview file))))
3656 ;;;###autoload
3657 (defun pr-ps-mode-using-ghostscript (n-up &optional filename)
3658 "Print major mode using PostScript through ghostscript.
3660 See also `pr-ps-buffer-using-ghostscript'."
3661 (interactive (pr-interactive-n-up-file "PS print GS mode"))
3662 (pr-set-n-up-and-filename 'n-up 'filename "PS print GS mode")
3663 (let ((file (pr-ps-file filename)))
3664 (when (and (pr-ps-mode n-up file)
3665 (not pr-spool-p))
3666 (pr-ps-file-using-ghostscript file)
3667 (or filename (pr-delete-file file)))))
3670 ;;;###autoload
3671 (defun pr-ps-mode-print (n-up &optional filename)
3672 "Print major mode using PostScript printer.
3674 See also `pr-ps-buffer-print'."
3675 (interactive (pr-interactive-n-up-file "PS print mode"))
3676 (pr-set-n-up-and-filename 'n-up 'filename "PS print mode")
3677 (pr-ps-mode n-up filename))
3680 ;;;###autoload
3681 (defun pr-ps-mode-ps-print (n-up &optional filename)
3682 "Print major mode using PostScript or through ghostscript.
3684 See also `pr-ps-buffer-ps-print'."
3685 (interactive (pr-interactive-n-up-file (pr-prompt-gs "PS print mode")))
3686 (if (pr-using-ghostscript-p)
3687 (pr-ps-mode-using-ghostscript n-up filename)
3688 (pr-ps-mode-print n-up filename)))
3691 ;;;###autoload
3692 (defun pr-printify-directory (&optional dir file-regexp)
3693 "Replace nonprinting characters in directory with printable representations.
3694 The printable representations use ^ (for ASCII control characters) or hex.
3695 The characters tab, linefeed, space, return and formfeed are not affected.
3697 Interactively, the command prompts for a directory and a file name regexp for
3698 matching.
3700 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
3701 prompts for FILE(name)-REGEXP.
3703 See also documentation for `pr-list-directory'."
3704 (interactive (pr-interactive-dir-args "Printify dir"))
3705 (pr-set-dir-args 'dir 'file-regexp "Printify dir")
3706 (pr-file-list dir file-regexp 'pr-printify-buffer))
3709 ;;;###autoload
3710 (defun pr-printify-buffer ()
3711 "Replace nonprinting characters in buffer with printable representations.
3712 The printable representations use ^ (for ASCII control characters) or hex.
3713 The characters tab, linefeed, space, return and formfeed are not affected."
3714 (interactive "*")
3715 (if (pr-region-active-p)
3716 (pr-printify-region)
3717 (printify-region (point-min) (point-max))))
3720 ;;;###autoload
3721 (defun pr-printify-region ()
3722 "Replace nonprinting characters in region with printable representations.
3723 The printable representations use ^ (for ASCII control characters) or hex.
3724 The characters tab, linefeed, space, return and formfeed are not affected."
3725 (interactive "*")
3726 (printify-region (point) (mark)))
3729 ;;;###autoload
3730 (defun pr-txt-directory (&optional dir file-regexp)
3731 "Print directory using text printer.
3733 Interactively, the command prompts for a directory and a file name regexp for
3734 matching.
3736 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
3737 prompts for FILE(name)-REGEXP.
3739 See also documentation for `pr-list-directory'."
3740 (interactive (pr-interactive-dir-args "Print dir"))
3741 (pr-set-dir-args 'dir 'file-regexp "Print dir")
3742 (pr-file-list dir file-regexp 'pr-txt-buffer))
3745 ;;;###autoload
3746 (defun pr-txt-buffer ()
3747 "Print buffer using text printer."
3748 (interactive)
3749 (cond ((pr-auto-mode-p)
3750 (pr-txt-mode))
3751 ((pr-region-active-p)
3752 (pr-txt-region))
3754 (pr-txt-print (point-min) (point-max)))))
3757 ;;;###autoload
3758 (defun pr-txt-region ()
3759 "Print region using text printer."
3760 (interactive)
3761 (if (pr-auto-mode-p)
3762 (let ((pr-auto-region t))
3763 (pr-txt-mode))
3764 (pr-txt-print (point) (mark))))
3767 ;;;###autoload
3768 (defun pr-txt-mode ()
3769 "Print major mode using text printer."
3770 (interactive)
3771 (let ((args (pr-mode-alist-p)))
3772 (if args
3773 (funcall (car args) (nthcdr 2 args))
3774 (ding)
3775 (message "`%s' major mode not declared." major-mode))))
3778 ;;;###autoload
3779 (defun pr-despool-preview (&optional filename)
3780 "Preview spooled PostScript.
3782 Interactively, when you use a prefix argument (C-u), the command prompts the
3783 user for a file name, and saves the spooled PostScript image in that file
3784 instead of saving it in a temporary file.
3786 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3787 save the image in a temporary file. If FILENAME is a string, save the
3788 PostScript image in a file with that name."
3789 (interactive (list (ps-print-preprint current-prefix-arg)))
3790 (let ((file (pr-ps-file filename)))
3791 (when (stringp file)
3792 (pr-despool-print file)
3793 (pr-ps-file-preview file))))
3796 ;;;###autoload
3797 (defun pr-despool-using-ghostscript (&optional filename)
3798 "Print spooled PostScript using ghostscript.
3800 Interactively, when you use a prefix argument (C-u), the command prompts the
3801 user for a file name, and saves the spooled PostScript image in that file
3802 instead of sending it to the printer.
3804 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3805 send the image to the printer. If FILENAME is a string, save the PostScript
3806 image in a file with that name."
3807 (interactive (list (ps-print-preprint current-prefix-arg)))
3808 (let ((file (pr-ps-file filename)))
3809 (when (stringp file)
3810 (pr-despool-print file)
3811 (pr-ps-file-using-ghostscript file)
3812 (or filename (pr-delete-file file)))))
3815 ;;;###autoload
3816 (defun pr-despool-print (&optional filename)
3817 "Send the spooled PostScript to the printer.
3819 Interactively, when you use a prefix argument (C-u), the command prompts the
3820 user for a file name, and saves the spooled PostScript image in that file
3821 instead of sending it to the printer.
3823 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3824 send the image to the printer. If FILENAME is a string, save the PostScript
3825 image in a file with that name."
3826 (interactive (list (ps-print-preprint current-prefix-arg)))
3827 (let ((ps-lpr-command (pr-command pr-ps-command))
3828 (ps-lpr-switches pr-ps-switches)
3829 (ps-printer-name-option pr-ps-printer-switch)
3830 (ps-printer-name pr-ps-printer))
3831 (ps-despool filename)))
3834 ;;;###autoload
3835 (defun pr-despool-ps-print (&optional filename)
3836 "Send the spooled PostScript to the printer or use ghostscript to print it.
3838 Interactively, when you use a prefix argument (C-u), the command prompts the
3839 user for a file name, and saves the spooled PostScript image in that file
3840 instead of sending it to the printer.
3842 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
3843 send the image to the printer. If FILENAME is a string, save the PostScript
3844 image in a file with that name."
3845 (interactive (list (ps-print-preprint current-prefix-arg)))
3846 (if pr-print-using-ghostscript
3847 (pr-despool-using-ghostscript filename)
3848 (pr-despool-print filename)))
3851 ;;;###autoload
3852 (defun pr-ps-file-preview (filename)
3853 "Preview PostScript file FILENAME."
3854 (interactive (list (pr-ps-infile-preprint "Preview ")))
3855 (and (stringp filename) (file-exists-p filename)
3856 (pr-call-process pr-gv-command filename)))
3859 ;;;###autoload
3860 (defun pr-ps-file-up-preview (n-up ifilename &optional ofilename)
3861 "Preview PostScript file FILENAME."
3862 (interactive (pr-interactive-n-up-inout "PS preview"))
3863 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename
3864 "PS preview ")))
3865 (pr-ps-utility-process n-up ifilename outfile)
3866 (pr-ps-file-preview outfile)))
3869 ;;;###autoload
3870 (defun pr-ps-file-using-ghostscript (filename)
3871 "Print PostScript file FILENAME using ghostscript."
3872 (interactive (list (pr-ps-infile-preprint "Print preview ")))
3873 (and (stringp filename) (file-exists-p filename)
3874 (let* ((file (pr-expand-file-name filename))
3875 (tempfile (pr-dosify-file-name (make-temp-name file))))
3876 ;; gs use
3877 (pr-call-process pr-gs-command
3878 (format "-sDEVICE=%s" pr-gs-device)
3879 (format "-r%d" pr-gs-resolution)
3880 (pr-switches-string pr-gs-switches "pr-gs-switches")
3881 (format "-sOutputFile=\"%s\"" tempfile)
3882 file
3883 "-c quit")
3884 ;; printing
3885 (pr-ps-file-print tempfile)
3886 ;; deleting
3887 (pr-delete-file tempfile))))
3890 ;;;###autoload
3891 (defun pr-ps-file-print (filename)
3892 "Print PostScript file FILENAME."
3893 (interactive (list (pr-ps-infile-preprint "Print ")))
3894 (and (stringp filename) (file-exists-p filename)
3895 ;; printing
3896 (let ((file (pr-expand-file-name filename)))
3897 (if (string= pr-ps-command "")
3898 (let ((ps-spool-buffer (get-buffer-create ps-spool-buffer-name)))
3899 (save-excursion
3900 (set-buffer ps-spool-buffer)
3901 (erase-buffer)
3902 (insert-file-contents-literally file))
3903 (pr-despool-print))
3904 (apply 'pr-call-process
3905 pr-ps-command
3906 (pr-switches-string pr-ps-switches "pr-gs-switches")
3907 (if (string-match "cp" pr-ps-command)
3908 ;; for "cp" (cmd in out)
3909 (list file
3910 (concat pr-ps-printer-switch pr-ps-printer))
3911 ;; else, for others (cmd out in)
3912 (list (concat pr-ps-printer-switch pr-ps-printer)
3913 file)))))))
3916 ;;;###autoload
3917 (defun pr-ps-file-ps-print (filename)
3918 "Send PostScript file FILENAME to printer or use ghostscript to print it."
3919 (interactive (list (pr-ps-infile-preprint
3920 (if pr-print-using-ghostscript
3921 "Print preview "
3922 "Print "))))
3923 (if pr-print-using-ghostscript
3924 (pr-ps-file-using-ghostscript filename)
3925 (pr-ps-file-print filename)))
3928 ;;;###autoload
3929 (defun pr-ps-file-up-ps-print (n-up ifilename &optional ofilename)
3930 "Process a PostScript file IFILENAME and send it to printer.
3932 Interactively, the command prompts for N-UP printing number, for an input
3933 PostScript file IFILENAME and, when you use a prefix argument (C-u), the
3934 command prompts the user for an output PostScript file name OFILENAME, and
3935 saves the PostScript image in that file instead of sending it to the printer.
3937 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3938 argument IFILENAME is treated as follows: if it's t, prompts for an input
3939 PostScript file name; otherwise, it *must* be a string that it's an input
3940 PostScript file name. The argument OFILENAME is treated as follows: if it's
3941 nil, send the image to the printer. If OFILENAME is a string, save the
3942 PostScript image in a file with that name. If OFILENAME is t, prompts for a
3943 file name."
3944 (interactive (pr-interactive-n-up-inout
3945 (if pr-print-using-ghostscript
3946 "PS print GS"
3947 "PS print")))
3948 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename
3949 (if pr-print-using-ghostscript
3950 "PS print GS "
3951 "PS print "))))
3952 (pr-ps-utility-process n-up ifilename outfile)
3953 (unless ofilename
3954 (pr-ps-file-ps-print outfile)
3955 (pr-delete-file outfile))))
3958 ;;;###autoload
3959 (defun pr-toggle-file-duplex ()
3960 "Toggle duplex for PostScript file."
3961 (interactive)
3962 (pr-toggle 'pr-file-duplex "PS file duplex" nil 7 5 nil
3963 '("PostScript Print" "File")))
3966 ;;;###autoload
3967 (defun pr-toggle-file-tumble ()
3968 "Toggle tumble for PostScript file.
3970 If tumble is off, produces a printing suitable for binding on the left or
3971 right.
3972 If tumble is on, produces a printing suitable for binding at the top or
3973 bottom."
3974 (interactive)
3975 (pr-toggle 'pr-file-tumble "PS file tumble" nil 8 5 nil
3976 '("PostScript Print" "File")))
3979 ;;;###autoload
3980 (defun pr-toggle-file-landscape ()
3981 "Toggle landscape for PostScript file."
3982 (interactive)
3983 (pr-toggle 'pr-file-landscape "PS file landscape" nil 6 5 nil
3984 '("PostScript Print" "File")))
3987 ;;;###autoload
3988 (defun pr-toggle-ghostscript ()
3989 "Toggle printing using ghostscript."
3990 (interactive)
3991 (pr-toggle 'pr-print-using-ghostscript "Printing using ghostscript"
3992 'postscript-process 2 12 'toggle))
3995 ;;;###autoload
3996 (defun pr-toggle-faces ()
3997 "Toggle printing with faces."
3998 (interactive)
3999 (pr-toggle 'pr-faces-p "Printing with faces"
4000 'postscript-process 1 12 'toggle))
4003 ;;;###autoload
4004 (defun pr-toggle-spool ()
4005 "Toggle spooling."
4006 (interactive)
4007 (pr-toggle 'pr-spool-p "Spooling printing"
4008 'postscript-process 0 12 'toggle))
4011 ;;;###autoload
4012 (defun pr-toggle-duplex ()
4013 "Toggle duplex."
4014 (interactive)
4015 (pr-toggle 'ps-spool-duplex "Printing duplex"
4016 'postcsript-options 5 12 'toggle))
4019 ;;;###autoload
4020 (defun pr-toggle-tumble ()
4021 "Toggle tumble.
4023 If tumble is off, produces a printing suitable for binding on the left or
4024 right.
4025 If tumble is on, produces a printing suitable for binding at the top or
4026 bottom."
4027 (interactive)
4028 (pr-toggle 'ps-spool-tumble "Tumble"
4029 'postscript-options 6 12 'toggle))
4032 ;;;###autoload
4033 (defun pr-toggle-landscape ()
4034 "Toggle landscape."
4035 (interactive)
4036 (pr-toggle 'ps-landscape-mode "Landscape"
4037 'postscript-options 0 12 'toggle))
4040 ;;;###autoload
4041 (defun pr-toggle-upside-down ()
4042 "Toggle upside-down."
4043 (interactive)
4044 (pr-toggle 'ps-print-upside-down "Upside-Down"
4045 'postscript-options 7 12 'toggle))
4048 ;;;###autoload
4049 (defun pr-toggle-line ()
4050 "Toggle line number."
4051 (interactive)
4052 (pr-toggle 'ps-line-number "Line number"
4053 'postscript-options 3 12 'toggle))
4056 ;;;###autoload
4057 (defun pr-toggle-zebra ()
4058 "Toggle zebra stripes."
4059 (interactive)
4060 (pr-toggle 'ps-zebra-stripes "Zebra stripe"
4061 'postscript-options 4 12 'toggle))
4064 ;;;###autoload
4065 (defun pr-toggle-header ()
4066 "Toggle printing header."
4067 (interactive)
4068 (pr-toggle 'ps-print-header "Print header"
4069 'postscript-options 1 12 'toggle))
4072 ;;;###autoload
4073 (defun pr-toggle-header-frame ()
4074 "Toggle printing header frame."
4075 (interactive)
4076 (pr-toggle 'ps-print-header-frame "Print header frame"
4077 'postscript-options 2 12 'toggle))
4080 ;;;###autoload
4081 (defun pr-toggle-lock ()
4082 "Toggle menu lock."
4083 (interactive)
4084 (pr-toggle 'pr-menu-lock "Menu lock"
4085 'printing 2 12 'toggle))
4088 ;;;###autoload
4089 (defun pr-toggle-region ()
4090 "Toggle auto region."
4091 (interactive)
4092 (pr-toggle 'pr-auto-region "Auto region"
4093 'printing 0 12 'toggle))
4096 ;;;###autoload
4097 (defun pr-toggle-mode ()
4098 "Toggle auto mode."
4099 (interactive)
4100 (pr-toggle 'pr-auto-mode "Auto mode"
4101 'printing 1 12 'toggle))
4104 ;;;###autoload
4105 (defun pr-customize (&rest ignore)
4106 "Customization of the `printing' group."
4107 (interactive)
4108 (customize-group 'printing))
4111 ;;;###autoload
4112 (defun lpr-customize (&rest ignore)
4113 "Customization of the `lpr' group."
4114 (interactive)
4115 (customize-group 'lpr))
4118 ;;;###autoload
4119 (defun pr-help (&rest ignore)
4120 "Help for the printing package."
4121 (interactive)
4122 (pr-show-setup pr-help-message "*Printing Help*"))
4125 ;;;###autoload
4126 (defun pr-ps-name ()
4127 "Interactively select a PostScript printer."
4128 (interactive)
4129 (pr-menu-set-ps-title
4130 (pr-complete-alist "PostScript printer" pr-ps-printer-alist pr-ps-name)))
4133 ;;;###autoload
4134 (defun pr-txt-name ()
4135 "Interactively select a text printer."
4136 (interactive)
4137 (pr-menu-set-txt-title
4138 (pr-complete-alist "Text printer" pr-txt-printer-alist pr-txt-name)))
4141 ;;;###autoload
4142 (defun pr-ps-utility ()
4143 "Interactively select a PostScript utility."
4144 (interactive)
4145 (pr-menu-set-utility-title
4146 (pr-complete-alist "Postscript utility" pr-ps-utility-alist pr-ps-utility)))
4149 ;;;###autoload
4150 (defun pr-show-ps-setup (&rest ignore)
4151 "Show current ps-print settings."
4152 (interactive)
4153 (pr-show-setup (ps-setup) "*PS Setup*"))
4156 ;;;###autoload
4157 (defun pr-show-pr-setup (&rest ignore)
4158 "Show current printing settings."
4159 (interactive)
4160 (pr-show-setup (pr-setup) "*PR Setup*"))
4163 ;;;###autoload
4164 (defun pr-show-lpr-setup (&rest ignore)
4165 "Show current lpr settings."
4166 (interactive)
4167 (pr-show-setup (lpr-setup) "*LPR Setup*"))
4170 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4171 ;; Fast Commands
4174 ;;;###autoload
4175 (defun pr-ps-fast-fire (n-up &optional select)
4176 "Fast fire function for PostScript printing.
4178 If a region is active, the region will be printed instead of the whole buffer.
4179 Also if the current major-mode is defined in `pr-mode-alist', the settings in
4180 `pr-mode-alist' will be used, that is, the current buffer or region will be
4181 printed using `pr-ps-mode-ps-print'.
4184 Interactively, you have the following situations:
4186 M-x pr-ps-fast-fire RET
4187 The command prompts the user for a N-UP value and printing will
4188 immediatelly be done using the current active printer.
4190 C-u M-x pr-ps-fast-fire RET
4191 C-u 0 M-x pr-ps-fast-fire RET
4192 The command prompts the user for a N-UP value and also for a current
4193 PostScript printer, then printing will immediatelly be done using the new
4194 current active printer.
4196 C-u 1 M-x pr-ps-fast-fire RET
4197 The command prompts the user for a N-UP value and also for a file name,
4198 and saves the PostScript image in that file instead of sending it to the
4199 printer.
4201 C-u 2 M-x pr-ps-fast-fire RET
4202 The command prompts the user for a N-UP value, then for a current
4203 PostScript printer and, finally, for a file name. Then change the active
4204 printer to that choosen by user and saves the PostScript image in
4205 that file instead of sending it to the printer.
4208 Noninteractively, the argument N-UP should be a positive integer greater than
4209 zero and the argument SELECT is treated as follows:
4211 If it's nil, send the image to the printer.
4213 If it's a list or an integer lesser or equal to zero, the command prompts
4214 the user for a current PostScript printer, then printing will immediatelly
4215 be done using the new current active printer.
4217 If it's an integer equal to 1, the command prompts the user for a file name
4218 and saves the PostScript image in that file instead of sending it to the
4219 printer.
4221 If it's an integer greater or equal to 2, the command prompts the user for a
4222 current PostScript printer and for a file name. Then change the active
4223 printer to that choosen by user and saves the PostScript image in that file
4224 instead of sending it to the printer.
4226 If it's a symbol which it's defined in `pr-ps-printer-alist', it's the new
4227 active printer and printing will immediatelly be done using the new active
4228 printer.
4230 Otherwise, send the image to the printer.
4233 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
4234 are both set to t."
4235 (interactive (list (pr-interactive-n-up (pr-prompt-gs "PS print fast"))
4236 current-prefix-arg))
4237 (let ((pr-auto-region t)
4238 (pr-auto-mode t)
4239 filename)
4240 (cond ((null select))
4241 ((listp select)
4242 (pr-ps-name))
4243 ((and (symbolp select)
4244 (assq select pr-ps-printer-alist))
4245 (pr-menu-set-ps-title select))
4246 ((integerp select)
4247 (and (/= select 1)
4248 (pr-ps-name))
4249 (and (>= select 1) (not pr-spool-p)
4250 (setq filename (pr-ps-outfile-preprint
4251 (if pr-print-using-ghostscript
4252 "Fast GS "
4253 "Fast "))))))
4254 (pr-ps-buffer-ps-print
4255 (if (integerp n-up)
4256 (min (max n-up 1) 100)
4257 (error "n-up must be an integer greater than zero"))
4258 filename)))
4261 ;;;###autoload
4262 (defun pr-txt-fast-fire (&optional select-printer)
4263 "Fast fire function for text printing.
4265 If a region is active, the region will be printed instead of the whole buffer.
4266 Also if the current major-mode is defined in `pr-mode-alist', the settings in
4267 `pr-mode-alist' will be used, that is, the current buffer or region will be
4268 printed using `pr-txt-mode'.
4270 Interactively, when you use a prefix argument (C-u), the command prompts the
4271 user for a new active text printer.
4273 Noninteractively, the argument SELECT-PRINTER is treated as follows:
4275 If it's nil, the printing is sent to the current active text printer.
4277 If it's a symbol which it's defined in `pr-txt-printer-alist', it's the new
4278 active printer and printing will immediatelly be done using the new active
4279 printer.
4281 If it's non-nil, the command prompts the user for a new active text printer.
4283 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
4284 are both set to t."
4285 (interactive (list current-prefix-arg))
4286 (cond ((null select-printer))
4287 ((and (symbolp select-printer)
4288 (assq select-printer pr-txt-printer-alist))
4289 (pr-menu-set-txt-title select-printer))
4291 (pr-txt-name)))
4292 (let ((pr-auto-region t)
4293 (pr-auto-mode t))
4294 (pr-txt-buffer)))
4297 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4298 ;; Utilities
4301 (defun pr-setup ()
4302 "Return the current `printing' setup.
4304 This is *not* an interactive command.
4305 One way to see `printing' setup is to switch to a *Scratch* buffer and type:
4307 M-: (insert (pr-setup)) RET
4309 Or choose the menu option Printing/Show Settings/printing."
4310 (let (ps-prefix-quote)
4311 (mapconcat
4312 #'ps-print-quote
4313 (list
4314 (concat "\n;;; printing.el version " pr-version "\n")
4315 ";; internal vars"
4316 (ps-comment-string "pr-txt-command " pr-txt-command)
4317 (ps-comment-string "pr-txt-switches "
4318 (pr-switches-string pr-txt-switches "pr-txt-switches"))
4319 (ps-comment-string "pr-txt-printer " pr-txt-printer)
4320 (ps-comment-string "pr-ps-command " pr-ps-command)
4321 (ps-comment-string "pr-ps-switches "
4322 (pr-switches-string pr-ps-switches "pr-ps-switches"))
4323 (ps-comment-string "pr-ps-printer-switch" pr-ps-printer-switch)
4324 (ps-comment-string "pr-ps-printer " pr-ps-printer)
4325 (ps-comment-string "pr-cygwin-system " pr-cygwin-system)
4326 (ps-comment-string "ps-windows-system " ps-windows-system)
4327 (ps-comment-string "ps-lp-system " ps-lp-system)
4329 '(14 . pr-path-style)
4330 '(14 . pr-path-alist)
4332 '(21 . pr-txt-name)
4333 '(21 . pr-txt-printer-alist)
4335 '(20 . pr-ps-name)
4336 '(20 . pr-ps-printer-alist)
4338 '(20 . pr-temp-dir)
4339 '(20 . pr-ps-temp-file)
4340 '(20 . pr-delete-temp-file)
4341 '(20 . pr-list-directory)
4343 '(17 . pr-gv-command)
4344 '(17 . pr-gs-command)
4345 '(17 . pr-gs-switches)
4346 '(17 . pr-gs-device)
4347 '(17 . pr-gs-resolution)
4349 '(27 . pr-print-using-ghostscript)
4350 '(27 . pr-faces-p)
4351 '(27 . pr-spool-p)
4352 '(27 . pr-file-landscape)
4353 '(27 . pr-file-duplex)
4354 '(27 . pr-file-tumble)
4355 '(27 . pr-auto-region)
4356 '(27 . pr-auto-mode)
4358 '(20 . pr-ps-utility)
4359 '(20 . pr-ps-utility-alist)
4361 '(14 . pr-mode-alist)
4363 '(20 . pr-menu-lock)
4364 '(20 . pr-menu-char-height)
4365 '(20 . pr-menu-char-width)
4367 '(20 . pr-setting-database)
4369 '(22 . pr-visible-entry-list)
4371 '(22 . pr-buffer-verbose)
4372 '(22 . pr-buffer-name)
4373 '(22 . pr-buffer-name-ignore)
4374 ")\n\n;;; printing.el - end of settings\n")
4375 "\n")))
4378 (defun lpr-setup ()
4379 "Return the current `lpr' setup.
4381 This is *not* an interactive command.
4382 One way to see `lpr' setup is to switch to a *Scratch* buffer and type:
4384 M-: (insert (lpr-setup)) RET
4386 Or choose the menu option Printing/Show Settings/lpr."
4387 (let (ps-prefix-quote)
4388 (mapconcat
4389 #'ps-print-quote
4390 '("\n;;; lpr.el settings\n"
4391 (25 . printer-name)
4392 (25 . lpr-switches)
4393 (25 . lpr-add-switches)
4394 (25 . lpr-command)
4395 (25 . lpr-headers-switches)
4396 (25 . print-region-function)
4397 (25 . lpr-page-header-program)
4398 (25 . lpr-page-header-switches)
4399 ")\n\n;;; lpr.el - end of settings\n")
4400 "\n")))
4403 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4404 ;; mh-e (adapted from mh-e-init.el -- Tom Vogels <tov@ece.cmu.edu>)
4407 (defalias 'pr-mh-get-msg-num 'mh-get-msg-num)
4408 (defalias 'pr-mh-show 'mh-show)
4409 (defalias 'pr-mh-start-of-uncleaned-message 'mh-start-of-uncleaned-message)
4410 (defvar mh-show-buffer nil)
4413 (defun pr-article-date ()
4414 "Find the date of an article or mail message in current buffer.
4415 Return only the dayname, if present, weekday, month, and year."
4416 (save-excursion
4417 (goto-char (point-min))
4418 (if (re-search-forward
4419 "^Date:[ \t]+\\(\\([A-Za-z]+, \\)?[0-9]+ [A-Za-z]+ [0-9]+\\)" nil t)
4420 (buffer-substring (match-beginning 1) (match-end 1))
4421 (format-time-string "%Y/%m/%d"))))
4424 (defun pr-mh-current-message ()
4425 "Go to mh-inbox current message."
4426 (let ((msg (or (pr-mh-get-msg-num nil) 0)))
4427 (pr-mh-show)
4428 (set-buffer mh-show-buffer)
4429 (goto-char (point-min))
4430 (pr-mh-start-of-uncleaned-message)
4431 (message "Printing message %d" msg)))
4434 (defun pr-mh-print-1 (n-up filename header-list)
4435 "Print mh-inbox current message in PostScript."
4436 (save-excursion
4437 (save-window-excursion
4438 (pr-mh-current-message)
4439 (pr-mode-print n-up filename header-list (point)))))
4442 (defun pr-mh-lpr-1 (header-list)
4443 "Print mh-inbox current message in text printer."
4444 (save-excursion
4445 (save-window-excursion
4446 (pr-mh-current-message)
4447 (pr-mode-lpr header-list (point)))))
4450 (defalias 'pr-mh-print-2 'pr-mode-print)
4453 (defalias 'pr-mh-lpr-2 'pr-mode-lpr)
4456 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4457 ;; rmail (hacked from ps-print.el)
4460 (defun pr-rmail-lpr (header-list)
4461 "Print RMAIL current message in text printer."
4462 (pr-lpr-message-from-summary header-list
4463 'rmail-buffer 'rmail-summary-buffer))
4466 (defun pr-rmail-print (n-up filename header-list)
4467 "Print RMAIL current message in PostScript."
4468 (pr-ps-message-from-summary n-up filename header-list
4469 'rmail-buffer 'rmail-summary-buffer))
4472 (defun pr-ps-message-from-summary (n-up filename header-list
4473 summary-buffer summary-default)
4474 "Print current message in PostScript."
4475 (let ((buf (or (and (boundp summary-buffer)
4476 (symbol-value summary-buffer))
4477 (symbol-value summary-default))))
4478 (and (get-buffer buf)
4479 (save-excursion
4480 (set-buffer buf)
4481 (pr-mode-print n-up filename header-list)))))
4484 (defun pr-lpr-message-from-summary (header-list summary-buffer summary-default)
4485 "Print current message in text printer."
4486 (let ((buf (or (and (boundp summary-buffer)
4487 (symbol-value summary-buffer))
4488 (symbol-value summary-default))))
4489 (and (get-buffer buf)
4490 (save-excursion
4491 (set-buffer buf)
4492 (pr-mode-lpr header-list)))))
4495 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4496 ;; gnus (hacked from ps-print.el)
4499 (defvar pr-gnus-article "*Article*")
4502 (defun pr-gnus-print (n-up filename header-list)
4503 "Print *Article* current message in PostScript."
4504 (pr-ps-message-from-summary n-up filename header-list
4505 'gnus-article-buffer 'pr-gnus-article))
4508 (defun pr-gnus-lpr (header-list)
4509 "Print *Article* current message in text printer."
4510 (pr-lpr-message-from-summary header-list
4511 'gnus-article-buffer 'pr-gnus-article))
4514 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4515 ;; vm (hacked from ps-print.el)
4518 (defvar pr-vm-summary "")
4521 (defun pr-vm-print (n-up filename header-list)
4522 "Print current vm message in PostScript."
4523 (pr-ps-message-from-summary n-up filename header-list
4524 'vm-mail-buffer 'pr-vm-summary))
4527 (defun pr-vm-lpr (header-list)
4528 "Print current vm message in text printer."
4529 (pr-lpr-message-from-summary header-list
4530 'vm-mail-buffer 'pr-vm-summary))
4533 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4534 ;; Mode Functions
4537 (defun pr-ps-mode (n-up filename)
4538 "If current major mode is declared, print it in PostScript."
4539 (let ((args (pr-mode-alist-p)))
4540 (if args
4541 (let ((fun (cdr args)))
4542 (funcall (car fun) n-up filename (cdr fun))
4544 (ding)
4545 (message "`%s' major mode not declared." major-mode)
4546 nil)))
4549 (defmacro pr-local-variable (header-list &rest body)
4550 `(save-excursion
4551 (let ((ps-header-lines (or (nth 0 ,header-list) ps-header-lines))
4552 (ps-left-header (or (nth 1 ,header-list) ps-left-header))
4553 (ps-right-header (or (nth 2 ,header-list) ps-right-header))
4554 ps-razzle-dazzle)
4555 (let ((local-var-list (pr-eval-local-alist (nthcdr 4 ,header-list))))
4556 ,@body
4557 (and (nth 3 ,header-list)
4558 (pr-kill-local-variable local-var-list))))))
4561 (defun pr-mode-print (n-up filename header-list &optional from to)
4562 "Print current major mode in PostScript."
4563 (pr-local-variable
4564 header-list
4565 (let ((file (pr-ps-file filename))
4566 (start (cond (from)
4567 ((pr-region-active-p) (region-beginning))
4568 (t nil)
4570 (pr-text2ps (pr-region-active-symbol start) n-up file start
4571 (cond (to)
4572 ((pr-region-active-p) (region-end))
4573 (from (point-max))
4575 (unless (or pr-spool-p filename)
4576 (pr-ps-file-print file)
4577 (pr-delete-file file)))))
4580 (defun pr-mode-lpr (header-list &optional from to)
4581 "Print current major mode in text printer."
4582 (pr-local-variable
4583 header-list
4584 (pr-txt-print (cond (from)
4585 ((pr-region-active-p) (region-beginning))
4586 (t (point-min)))
4587 (cond (to)
4588 ((pr-region-active-p) (region-end))
4589 (t (point-max))))))
4592 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4593 ;; Menu Lock
4596 (defconst pr-menu-entry-alist
4597 '((postscript . 3)
4598 (text . 3)
4599 (postscript-options . 9)
4600 (postscript-process . 3)
4601 (printing . 3)
4602 (help . 3)
4604 "Alist that associates menu part with number of items per part.
4606 It's used by `pr-menu-index'.
4608 Each element has the form:
4610 (MENU-PART . NUMBER-OF-ITEMS)
4612 See `pr-visible-entry-alist'.")
4615 (defun pr-menu-index (entry index)
4616 (let ((base-list
4617 (cond ((eq entry 'text)
4618 '(postscript))
4619 ((eq entry 'postscript-options)
4620 '(postscript text))
4621 ((eq entry 'postscript-process)
4622 '(postscript text postscript-options))
4623 ((eq entry 'printing)
4624 '(postscript text postscript-options postscript-process))
4626 nil)
4628 key)
4629 (while base-list
4630 (setq key (car base-list)
4631 base-list (cdr base-list))
4632 (and (pr-visible-p key)
4633 (setq index (+ index
4634 (cdr (assq key pr-menu-entry-alist)))))))
4635 (+ index 2))
4638 (defvar pr-menu-position nil)
4639 (defvar pr-menu-state nil)
4642 (eval-and-compile
4643 (cond
4644 ((eq ps-print-emacs-type 'xemacs)
4645 ;; XEmacs
4646 (defvar current-mouse-event nil) ; to avoid compilation gripes
4647 (defun pr-menu-position (entry index horizontal)
4648 (pr-x-make-event
4649 'button-release
4650 (list 'button 1
4651 'x (- (pr-x-event-x-pixel current-mouse-event) ; X
4652 (* horizontal pr-menu-char-width))
4653 'y (- (pr-x-event-y-pixel current-mouse-event) ; Y
4654 (* (pr-menu-index entry index) pr-menu-char-height)))))
4656 (ps-windows-system
4657 ;; GNU Emacs for Windows 9x/NT
4658 (defun pr-menu-position (entry index horizontal)
4659 (let ((pos (cdr (pr-e-mouse-pixel-position))))
4660 (list
4661 (list (or (car pos) 0) ; X
4662 (- (or (cdr pos) 0) ; Y
4663 (* (pr-menu-index entry index) pr-menu-char-height)))
4664 (selected-frame)))) ; frame
4667 ;; GNU Emacs
4668 (defun pr-menu-position (entry index horizontal)
4669 (let ((pos (cdr (pr-e-mouse-pixel-position))))
4670 (list
4671 (list (- (or (car pos) 0) ; X
4672 (* horizontal pr-menu-char-width))
4673 (- (or (cdr pos) 0) ; Y
4674 (* (pr-menu-index entry index) pr-menu-char-height)))
4675 (selected-frame)))) ; frame
4678 (cond
4679 ((eq ps-print-emacs-type 'emacs)
4680 ;; GNU Emacs
4681 (defun pr-menu-lookup (path)
4682 (let ((ipath pr-menu-bar))
4683 (lookup-key global-map
4684 (if path
4685 (vconcat ipath
4686 (mapcar 'pr-get-symbol
4687 (if (listp path)
4688 path
4689 (list path))))
4690 ipath))))
4692 ;; GNU Emacs
4693 (defun pr-menu-lock (entry index horizontal state path)
4694 (when (and (not (interactive-p)) pr-menu-lock)
4695 (or (and pr-menu-position (eq state pr-menu-state))
4696 (setq pr-menu-position (pr-menu-position entry index horizontal)
4697 pr-menu-state state))
4698 (let* ((menu (pr-menu-lookup path))
4699 (result (x-popup-menu pr-menu-position menu)))
4700 (and result
4701 (let ((command (lookup-key menu (vconcat result))))
4702 (if (fboundp command)
4703 (funcall command)
4704 (eval command)))))
4705 (setq pr-menu-position nil))))
4708 ((eq ps-print-emacs-type 'xemacs)
4709 ;; XEmacs
4710 (defvar current-menubar nil) ; to avoid compilation gripes
4711 (defun pr-menu-lookup (path)
4712 (car (pr-x-find-menu-item current-menubar (cons "Printing" path))))
4714 ;; XEmacs
4715 (defun pr-menu-lock (entry index horizontal state path)
4716 (when (and (not (interactive-p)) pr-menu-lock)
4717 (or (and pr-menu-position (eq state pr-menu-state))
4718 (setq pr-menu-position (pr-menu-position entry index horizontal)
4719 pr-menu-state state))
4720 (let* ((menu (pr-menu-lookup path))
4721 (result (pr-x-get-popup-menu-response menu pr-menu-position)))
4722 (and (pr-x-misc-user-event-p result)
4723 (funcall (pr-x-event-function result)
4724 (pr-x-event-object result))))
4725 (setq pr-menu-position nil))))))
4728 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4729 ;; Printer & Utility Selection
4732 (defun pr-update-var (var-sym alist)
4733 (or (assq (symbol-value var-sym) alist)
4734 (set var-sym (car (car alist)))))
4737 (defun pr-update-menus (&optional force)
4738 "Update utility, PostScript and text printer menus.
4740 If FORCE is non-nil, update menus doesn't matter if `pr-ps-printer-alist',
4741 `pr-txt-printer-alist' or `pr-ps-utility-alist' were modified or not;
4742 otherwise, update PostScript printer menu iff `pr-ps-printer-menu-modified' is
4743 non-nil, update text printer menu iff `pr-txt-printer-menu-modified' is
4744 non-nil, and update PostScript File menus iff `pr-ps-utility-menu-modified' is
4745 non-nil."
4746 (interactive "P")
4747 (pr-update-var 'pr-ps-name pr-ps-printer-alist)
4748 (pr-update-var 'pr-txt-name pr-txt-printer-alist)
4749 (pr-update-var 'pr-ps-utility pr-ps-utility-alist)
4750 (pr-do-update-menus force))
4753 (defvar pr-ps-printer-menu-modified t
4754 "Non-nil means `pr-ps-printer-alist' was modified and we need to update menu.")
4755 (defvar pr-txt-printer-menu-modified t
4756 "Non-nil means `pr-txt-printer-alist' was modified and we need to update menu.")
4757 (defvar pr-ps-utility-menu-modified t
4758 "Non-nil means `pr-ps-utility-alist' was modified and we need to update menu.")
4761 (defconst pr-even-or-odd-alist
4762 '((nil . "Print All Pages")
4763 (even-page . "Print Even Pages")
4764 (odd-page . "Print Odd Pages")
4765 (even-sheet . "Print Even Sheets")
4766 (odd-sheet . "Print Odd Sheets")))
4769 (defun pr-menu-create (name alist var-sym fun entry index)
4770 (cons name
4771 (mapcar
4772 #'(lambda (elt)
4773 (let ((sym (car elt)))
4774 (vector
4775 (symbol-name sym)
4776 (list fun (list 'quote sym) nil (list 'quote entry) index)
4777 :style 'radio
4778 :selected (list 'eq var-sym (list 'quote sym)))))
4779 alist)))
4782 (eval-and-compile
4783 (cond
4784 ((eq ps-print-emacs-type 'emacs)
4785 ;; GNU Emacs
4786 (defalias 'pr-update-mode-line 'force-mode-line-update)
4788 ;; GNU Emacs
4789 (defun pr-do-update-menus (&optional force)
4790 (pr-menu-alist pr-ps-printer-alist
4791 'pr-ps-name
4792 'pr-menu-set-ps-title
4793 "PostScript Printers"
4794 'pr-ps-printer-menu-modified
4795 force
4796 "PostScript Printers"
4797 'postscript 2)
4798 (pr-menu-alist pr-txt-printer-alist
4799 'pr-txt-name
4800 'pr-menu-set-txt-title
4801 "Text Printers"
4802 'pr-txt-printer-menu-modified
4803 force
4804 "Text Printers"
4805 'text 2)
4806 (let ((save-var pr-ps-utility-menu-modified))
4807 (pr-menu-alist pr-ps-utility-alist
4808 'pr-ps-utility
4809 'pr-menu-set-utility-title
4810 '("PostScript Print" "File" "PostScript Utility")
4811 'save-var
4812 force
4813 "PostScript Utility"
4814 nil 1))
4815 (pr-menu-alist pr-ps-utility-alist
4816 'pr-ps-utility
4817 'pr-menu-set-utility-title
4818 '("PostScript Preview" "File" "PostScript Utility")
4819 'pr-ps-utility-menu-modified
4820 force
4821 "PostScript Utility"
4822 nil 1)
4823 (pr-even-or-odd-pages ps-even-or-odd-pages force))
4825 ;; GNU Emacs
4826 (defvar pr-temp-menu nil)
4828 ;; GNU Emacs
4829 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
4830 entry index)
4831 (when (and alist (or force (symbol-value modified-sym)))
4832 (easy-menu-define pr-temp-menu nil ""
4833 (pr-menu-create name alist var-sym fun entry index))
4834 (let ((item (pr-menu-get-item menu-path)))
4835 (and item
4836 (let* ((binding (nthcdr 3 item))
4837 (key-binding (cdr binding)))
4838 (setcar binding pr-temp-menu)
4839 (and key-binding (listp (car key-binding))
4840 (setcdr binding (cdr key-binding))) ; skip KEY-BINDING
4841 (funcall fun (symbol-value var-sym) item))))
4842 (set modified-sym nil)))
4844 ;; GNU Emacs
4845 (defun pr-menu-set-ps-title (value &optional item entry index)
4846 (pr-menu-set-item-name (or item
4847 (pr-menu-get-item "PostScript Printers"))
4848 (format "PostScript Printer: %s" value))
4849 (pr-ps-set-printer value)
4850 (and index
4851 (pr-menu-lock entry index 12 'toggle nil)))
4853 ;; GNU Emacs
4854 (defun pr-menu-set-txt-title (value &optional item entry index)
4855 (pr-menu-set-item-name (or item
4856 (pr-menu-get-item "Text Printers"))
4857 (format "Text Printer: %s" value))
4858 (pr-txt-set-printer value)
4859 (and index
4860 (pr-menu-lock entry index 12 'toggle nil)))
4862 ;; GNU Emacs
4863 (defun pr-menu-set-utility-title (value &optional item entry index)
4864 (let ((name (symbol-name value)))
4865 (if item
4866 (pr-menu-set-item-name item name)
4867 (pr-menu-set-item-name
4868 (pr-menu-get-item
4869 '("PostScript Print" "File" "PostScript Utility"))
4870 name)
4871 (pr-menu-set-item-name
4872 (pr-menu-get-item
4873 '("PostScript Preview" "File" "PostScript Utility"))
4874 name)))
4875 (pr-ps-set-utility value)
4876 (and index
4877 (pr-menu-lock entry index 5 nil '("PostScript Print" "File"))))
4879 ;; GNU Emacs
4880 (defun pr-even-or-odd-pages (value &optional no-lock)
4881 (pr-menu-set-item-name (pr-menu-get-item "Print All Pages")
4882 (cdr (assq value pr-even-or-odd-alist)))
4883 (setq ps-even-or-odd-pages value)
4884 (or no-lock
4885 (pr-menu-lock 'postscript-options 8 12 'toggle nil))))
4888 ((eq ps-print-emacs-type 'xemacs)
4889 ;; XEmacs
4890 (defalias 'pr-update-mode-line 'set-menubar-dirty-flag)
4892 ;; XEmacs
4893 (defvar pr-ps-name-old "PostScript Printers")
4894 (defvar pr-txt-name-old "Text Printers")
4895 (defvar pr-ps-utility-old "PostScript Utility")
4896 (defvar pr-even-or-odd-old "Print All Pages")
4898 ;; XEmacs
4899 (defun pr-do-update-menus (&optional force)
4900 (pr-menu-alist pr-ps-printer-alist
4901 'pr-ps-name
4902 'pr-menu-set-ps-title
4903 '("Printing")
4904 'pr-ps-printer-menu-modified
4905 force
4906 pr-ps-name-old
4907 'postscript 2)
4908 (pr-menu-alist pr-txt-printer-alist
4909 'pr-txt-name
4910 'pr-menu-set-txt-title
4911 '("Printing")
4912 'pr-txt-printer-menu-modified
4913 force
4914 pr-txt-name-old
4915 'text 2)
4916 (let ((save-var pr-ps-utility-menu-modified))
4917 (pr-menu-alist pr-ps-utility-alist
4918 'pr-ps-utility
4919 'pr-menu-set-utility-title
4920 '("Printing" "PostScript Print" "File")
4921 'save-var
4922 force
4923 pr-ps-utility-old
4924 nil 1))
4925 (pr-menu-alist pr-ps-utility-alist
4926 'pr-ps-utility
4927 'pr-menu-set-utility-title
4928 '("Printing" "PostScript Preview" "File")
4929 'pr-ps-utility-menu-modified
4930 force
4931 pr-ps-utility-old
4932 nil 1)
4933 (pr-even-or-odd-pages ps-even-or-odd-pages force))
4935 ;; XEmacs
4936 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
4937 entry index)
4938 (when (and alist (or force (symbol-value modified-sym)))
4939 (pr-xemacs-global-menubar
4940 (pr-x-add-submenu menu-path
4941 (pr-menu-create name alist var-sym
4942 fun entry index)))
4943 (funcall fun (symbol-value var-sym))
4944 (set modified-sym nil)))
4946 ;; XEmacs
4947 (defun pr-menu-set-ps-title (value &optional item entry index)
4948 (pr-relabel-menu-item (format "PostScript Printer: %s" value)
4949 'pr-ps-name-old)
4950 (pr-ps-set-printer value)
4951 (and index
4952 (pr-menu-lock entry index 12 'toggle nil)))
4954 ;; XEmacs
4955 (defun pr-menu-set-txt-title (value &optional item entry index)
4956 (pr-relabel-menu-item (format "Text Printer: %s" value)
4957 'pr-txt-name-old)
4958 (pr-txt-set-printer value)
4959 (and index
4960 (pr-menu-lock entry index 12 'toggle nil)))
4962 ;; XEmacs
4963 (defun pr-menu-set-utility-title (value &optional item entry index)
4964 (pr-xemacs-global-menubar
4965 (let ((newname (format "%s" value)))
4966 (pr-x-relabel-menu-item
4967 (list "Printing" "PostScript Print" "File" pr-ps-utility-old)
4968 newname)
4969 (pr-x-relabel-menu-item
4970 (list "Printing" "PostScript Preview" "File" pr-ps-utility-old)
4971 newname)
4972 (setq pr-ps-utility-old newname)))
4973 (pr-ps-set-utility value)
4974 (and index
4975 (pr-menu-lock entry index 5 nil '("PostScript Print" "File"))))
4977 ;; XEmacs
4978 (defun pr-even-or-odd-pages (value &optional no-lock)
4979 (pr-relabel-menu-item (cdr (assq value pr-even-or-odd-alist))
4980 'pr-even-or-odd-old)
4981 (setq ps-even-or-odd-pages value)
4982 (or no-lock
4983 (pr-menu-lock 'postscript-options 8 12 'toggle nil))))))
4985 ;; XEmacs
4986 (defun pr-relabel-menu-item (newname var-sym)
4987 (pr-xemacs-global-menubar
4988 (pr-x-relabel-menu-item
4989 (list "Printing" (symbol-value var-sym))
4990 newname)
4991 (set var-sym newname)))
4993 ;; GNU Emacs
4994 (defun pr-menu-set-item-name (item name)
4995 (and item
4996 (setcar (nthcdr 2 item) name))) ; ITEM-NAME
4998 ;; GNU Emacs
4999 (defun pr-menu-get-item (name-list)
5000 ;; NAME-LIST is a string or a list of strings.
5001 (let ((ipath pr-menu-bar)
5002 (len (and (listp name-list) (length name-list))))
5003 (and len (= len 1)
5004 (setq name-list (car name-list)))
5005 (cond
5006 ((null name-list)
5007 ;; nil
5008 nil)
5009 ((listp name-list)
5010 ;; list and (length list) > 1
5011 (let* ((copy (copy-sequence name-list))
5012 (name (pr-get-symbol (nth (1- len) copy)))
5013 (path (progn
5014 (setcdr (nthcdr (- len 2) copy) nil)
5015 copy))
5016 (menu (lookup-key
5017 global-map
5018 (if path
5019 (vconcat ipath
5020 (mapcar 'pr-get-symbol path))
5021 ipath))))
5022 (assq name (nthcdr 2 menu))))
5024 ;; string
5025 (let ((name (pr-get-symbol name-list))
5026 (menu (lookup-key global-map ipath)))
5027 (assq name (nthcdr 2 menu)))))))
5030 (defun pr-ps-set-utility (value)
5031 (let ((item (cdr (assq value pr-ps-utility-alist))))
5032 (or item
5033 (error
5034 "Invalid PostScript utility name `%s' for variable `pr-ps-utility'"
5035 value))
5036 (setq pr-ps-utility value)
5037 (pr-eval-alist (nthcdr 9 item)))
5038 (pr-update-mode-line))
5041 (defun pr-ps-set-printer (value)
5042 (let ((ps (cdr (assq value pr-ps-printer-alist))))
5043 (or ps
5044 (error
5045 "Invalid PostScript printer name `%s' for variable `pr-ps-name'"
5046 value))
5047 (setq pr-ps-name value
5048 pr-ps-command (pr-dosify-file-name (nth 0 ps))
5049 pr-ps-switches (nth 1 ps)
5050 pr-ps-printer-switch (nth 2 ps)
5051 pr-ps-printer (nth 3 ps))
5052 (or (stringp pr-ps-command)
5053 (setq pr-ps-command
5054 (cond (ps-windows-system "print")
5055 (ps-lp-system "lp")
5056 (t "lpr")
5058 (or (stringp pr-ps-printer-switch)
5059 (setq pr-ps-printer-switch
5060 (cond (ps-windows-system "/D:")
5061 (ps-lp-system "-d")
5062 (t "-P")
5064 (pr-eval-alist (nthcdr 4 ps)))
5065 (pr-update-mode-line))
5068 (defun pr-txt-set-printer (value)
5069 (let ((txt (cdr (assq value pr-txt-printer-alist))))
5070 (or txt
5071 (error "Invalid text printer name `%s' for variable `pr-txt-name'"
5072 value))
5073 (setq pr-txt-name value
5074 pr-txt-command (pr-dosify-file-name (nth 0 txt))
5075 pr-txt-switches (nth 1 txt)
5076 pr-txt-printer (nth 2 txt)))
5077 (or (stringp pr-txt-command)
5078 (setq pr-txt-command
5079 (cond (ps-windows-system "print")
5080 (ps-lp-system "lp")
5081 (t "lpr")
5083 (pr-update-mode-line))
5086 (defun pr-eval-alist (alist)
5087 (mapcar #'(lambda (option)
5088 (let ((var-sym (car option))
5089 (value (cdr option)))
5090 (if (eq var-sym 'inherits-from:)
5091 (pr-eval-setting-alist value 'global)
5092 (set var-sym (eval value)))))
5093 alist))
5096 (defun pr-eval-local-alist (alist)
5097 (let (local-list)
5098 (mapcar #'(lambda (option)
5099 (let ((var-sym (car option))
5100 (value (cdr option)))
5101 (setq local-list
5102 (if (eq var-sym 'inherits-from:)
5103 (nconc (pr-eval-setting-alist value) local-list)
5104 (set (make-local-variable var-sym) (eval value))
5105 (cons var-sym local-list)))))
5106 alist)
5107 local-list))
5110 (defun pr-eval-setting-alist (key &optional global old)
5111 (let ((setting (cdr (assq key pr-setting-database))))
5112 (and setting
5113 (let ((inherits (nth 0 setting))
5114 (local (nth 1 setting))
5115 (kill (nth 2 setting))
5116 local-list)
5117 (and local global
5118 (progn
5119 (ding)
5120 (message "There are local buffer settings for `%S'." key)
5121 (setq global nil)))
5122 (and inherits
5123 (if (memq inherits old)
5124 (error "Circular inheritance for `%S'" inherits)
5125 (setq local-list
5126 (pr-eval-setting-alist inherits global
5127 (cons inherits old)))))
5128 (mapcar
5129 (cond ((not local) ; global settings
5130 #'(lambda (option)
5131 (let ((var-sym (car option)))
5132 (or (eq var-sym 'inherits-from:)
5133 (set var-sym (eval (cdr option)))))))
5134 (kill ; local settings with killing
5135 #'(lambda (option)
5136 (let ((var-sym (car option)))
5137 (unless (eq var-sym 'inherits-from:)
5138 (setq local-list (cons var-sym local-list))
5139 (set (make-local-variable var-sym)
5140 (eval (cdr option)))))))
5141 (t ; local settings without killing
5142 #'(lambda (option)
5143 (let ((var-sym (car option)))
5144 (or (eq var-sym 'inherits-from:)
5145 (set (make-local-variable var-sym)
5146 (eval (cdr option))))))))
5147 (nthcdr 3 setting))
5148 local-list))))
5151 (defun pr-kill-local-variable (local-var-list)
5152 (mapcar 'kill-local-variable local-var-list))
5155 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5156 ;; Internal Functions (II)
5159 (defun pr-prompt (str)
5160 (if (pr-auto-mode-p)
5161 (concat str " mode")
5162 (pr-region-active-string str)))
5165 (defun pr-prompt-region (str)
5166 (concat str (if (pr-auto-mode-p)
5167 " mode"
5168 " region")))
5171 (defun pr-prompt-gs (str)
5172 (if (pr-using-ghostscript-p)
5173 (concat str " GS")
5174 str))
5177 (defun pr-region-active-symbol (&optional region-p)
5178 (if (or region-p (pr-region-active-p))
5179 'region
5180 'buffer))
5183 (defun pr-region-active-string (prefix)
5184 (concat prefix
5185 (if (pr-region-active-p)
5186 " region"
5187 " buffer")))
5190 (defun pr-show-setup (settings buffer-name)
5191 (with-output-to-temp-buffer buffer-name
5192 (princ settings)
5193 (print-help-return-message)))
5196 (defun pr-complete-alist (prompt alist default)
5197 (let ((collection (mapcar #'(lambda (elt)
5198 (setq elt (car elt))
5199 (cons (symbol-name elt) elt))
5200 alist)))
5201 (cdr (assoc (completing-read (concat prompt ": ")
5202 collection nil t
5203 (symbol-name default) nil
5204 (symbol-name default))
5205 collection))))
5208 (defun pr-delete-file (file)
5209 (and pr-delete-temp-file (delete-file file)))
5212 (defun pr-expand-file-name (filename)
5213 (pr-dosify-file-name (expand-file-name filename)))
5216 (defun pr-ps-outfile-preprint (&optional mess)
5217 (let* ((prompt (format "%soutput PostScript file name: " (or mess "")))
5218 (res (read-file-name prompt default-directory "" nil)))
5219 (while (cond ((not (file-writable-p res))
5220 (ding)
5221 (setq prompt "is unwritable"))
5222 ((file-directory-p res)
5223 (ding)
5224 (setq prompt "is a directory"))
5225 ((file-exists-p res)
5226 (ding)
5227 (setq prompt "exists")
5228 (not (y-or-n-p (format "File `%s' exists; overwrite? "
5229 res))))
5230 (t nil))
5231 (setq res (read-file-name
5232 (format "File %s; PostScript file: " prompt)
5233 (file-name-directory res) nil nil
5234 (file-name-nondirectory res))))
5235 (pr-expand-file-name res)))
5238 (defun pr-ps-infile-preprint (&optional mess)
5239 (let* ((prompt (format "%sinput PostScript file name: " (or mess "")))
5240 (res (read-file-name prompt default-directory "" nil)))
5241 (while (cond ((not (file-exists-p res))
5242 (ding)
5243 (setq prompt "doesn't exist"))
5244 ((not (file-readable-p res))
5245 (ding)
5246 (setq prompt "is unreadable"))
5247 ((file-directory-p res)
5248 (ding)
5249 (setq prompt "is a directory"))
5250 (t nil))
5251 (setq res (read-file-name
5252 (format "File %s; PostScript file: " prompt)
5253 (file-name-directory res) nil nil
5254 (file-name-nondirectory res))))
5255 (pr-expand-file-name res)))
5258 (defun pr-toggle (var-sym mess entry index horizontal state &optional path)
5259 (set var-sym (not (symbol-value var-sym)))
5260 (message "%s is %s" mess (if (symbol-value var-sym) "on" "off"))
5261 (pr-menu-lock entry index horizontal state path))
5264 (defun pr-ps-utility-args (n-up-sym infile-sym outfile-sym prompt)
5265 ;; n-up
5266 (or (symbol-value n-up-sym)
5267 (set n-up-sym (pr-interactive-n-up prompt)))
5268 (and (eq (symbol-value infile-sym) t)
5269 (set infile-sym (and (not (interactive-p))
5270 (pr-ps-infile-preprint prompt))))
5271 ;; input file
5272 (or (symbol-value infile-sym)
5273 (error "%s: input PostScript file name is missing" prompt))
5274 (set infile-sym (pr-dosify-file-name (symbol-value infile-sym)))
5275 ;; output file
5276 (and (eq (symbol-value outfile-sym) t)
5277 (set outfile-sym (and (not (interactive-p))
5278 current-prefix-arg
5279 (pr-ps-outfile-preprint prompt))))
5280 (and (symbol-value outfile-sym)
5281 (set outfile-sym (pr-dosify-file-name (symbol-value outfile-sym))))
5282 (pr-ps-file (symbol-value outfile-sym)))
5285 (defun pr-ps-utility-process (n-up infile outfile)
5286 (let (item)
5287 (and (stringp infile) (file-exists-p infile)
5288 (setq item (cdr (assq pr-ps-utility pr-ps-utility-alist)))
5289 (pr-call-process (nth 0 item)
5290 (pr-switches-string (nth 1 item)
5291 "pr-ps-utility-alist entry")
5292 (pr-switches-string (nth 8 item)
5293 "pr-ps-utility-alist entry")
5294 (and (nth 2 item)
5295 (format (nth 2 item) ps-paper-type))
5296 (format (nth 3 item) n-up)
5297 (and pr-file-landscape (nth 4 item))
5298 (and pr-file-duplex (nth 5 item))
5299 (and pr-file-tumble (nth 6 item))
5300 (pr-expand-file-name infile)
5301 (nth 7 item)
5302 (pr-expand-file-name outfile)))))
5305 (defun pr-remove-nil-from-list (lst)
5306 (while (and lst (null (car lst)))
5307 (setq lst (cdr lst)))
5308 (let ((b lst)
5309 (l (cdr lst)))
5310 (while l
5311 (if (car l)
5312 (setq b l
5313 l (cdr l))
5314 (setq l (cdr l))
5315 (setcdr b l))))
5316 lst)
5319 (defun pr-call-process (command &rest args)
5320 (let ((buffer (get-buffer-create "*Printing Command Output*"))
5321 (cmd (pr-command command))
5322 status)
5323 (setq args (pr-remove-nil-from-list args))
5324 (save-excursion
5325 (set-buffer buffer)
5326 (goto-char (point-max))
5327 (insert (format "%s %S\n" cmd args)))
5328 (setq status
5329 (condition-case data
5330 (apply 'call-process cmd nil buffer nil args)
5331 ((quit error)
5332 (error-message-string data))))
5333 (save-excursion
5334 (set-buffer buffer)
5335 (goto-char (point-max))
5336 (insert (format "Exit status: %s\n" status)))))
5339 (defun pr-txt-print (from to)
5340 (let ((lpr-command (pr-standard-file-name (pr-command pr-txt-command)))
5341 (lpr-switches (pr-switches pr-txt-switches "pr-txt-switches"))
5342 (printer-name pr-txt-printer))
5343 (lpr-region from to)))
5346 (defun pr-switches-string (switches mess)
5347 (mapconcat 'identity (pr-switches switches mess) " "))
5350 (defun pr-switches (switches mess)
5351 (or (listp switches)
5352 (error "%S should have a list of strings" mess))
5353 (ps-flatten-list ; dynamic evaluation
5354 (mapcar 'ps-eval-switch switches)))
5357 (defun pr-ps-preview (kind n-up filename mess)
5358 (pr-set-n-up-and-filename 'n-up 'filename mess)
5359 (let ((file (pr-ps-file filename)))
5360 (pr-text2ps kind n-up file)
5361 (or pr-spool-p (pr-ps-file-preview file))))
5364 (defun pr-ps-using-ghostscript (kind n-up filename mess)
5365 (pr-set-n-up-and-filename 'n-up 'filename mess)
5366 (let ((file (pr-ps-file filename)))
5367 (pr-text2ps kind n-up file)
5368 (unless (or pr-spool-p filename)
5369 (pr-ps-file-using-ghostscript file)
5370 (pr-delete-file file))))
5373 (defun pr-ps-print (kind n-up filename mess)
5374 (pr-set-n-up-and-filename 'n-up 'filename mess)
5375 (let ((file (pr-ps-file filename)))
5376 (pr-text2ps kind n-up file)
5377 (unless (or pr-spool-p filename)
5378 (pr-ps-file-print file)
5379 (pr-delete-file file))))
5382 (defun pr-ps-file (&optional filename)
5383 (pr-dosify-file-name (or filename
5384 (convert-standard-filename
5385 (expand-file-name pr-ps-temp-file pr-temp-dir)))))
5388 (defun pr-interactive-n-up (mess)
5389 (or (stringp mess) (setq mess "*"))
5390 (save-match-data
5391 (let* ((fmt-prompt "%s[%s] N-up printing: (default 1) ")
5392 (prompt "")
5393 (str (pr-f-read-string (format fmt-prompt prompt mess) "1" nil "1"))
5394 int)
5395 (while (if (string-match "^\\s *[0-9]+$" str)
5396 (setq int (string-to-int str)
5397 prompt (cond ((< int 1) "Integer below 1; ")
5398 ((> int 100) "Integer above 100; ")
5399 (t nil)))
5400 (setq prompt "Invalid integer syntax; "))
5401 (ding)
5402 (setq str
5403 (pr-f-read-string (format fmt-prompt prompt mess) str nil "1")))
5404 int)))
5407 (defun pr-interactive-dir (mess)
5408 (let* ((dir-name (file-name-directory (or (buffer-file-name)
5409 default-directory)))
5410 (fmt-prompt (concat "%s[" mess "] Directory to print: "))
5411 (dir (read-file-name (format fmt-prompt "")
5412 "" dir-name nil dir-name))
5413 prompt)
5414 (while (cond ((not (file-directory-p dir))
5415 (ding)
5416 (setq prompt "It's not a directory! "))
5417 ((not (file-readable-p dir))
5418 (ding)
5419 (setq prompt "Directory is unreadable! "))
5420 (t nil))
5421 (setq dir-name (file-name-directory dir)
5422 dir (read-file-name (format fmt-prompt prompt)
5423 "" dir-name nil dir-name)))
5424 (file-name-as-directory dir)))
5427 (defun pr-interactive-regexp (mess)
5428 (pr-f-read-string (format "[%s] File regexp to print: " mess) "" nil ""))
5431 (defun pr-interactive-dir-args (mess)
5432 (list
5433 ;; get directory argument
5434 (pr-interactive-dir mess)
5435 ;; get file name regexp
5436 (pr-interactive-regexp mess)))
5439 (defun pr-interactive-ps-dir-args (mess)
5440 (list
5441 ;; get n-up argument
5442 (pr-interactive-n-up mess)
5443 ;; get directory argument
5444 (pr-interactive-dir mess)
5445 ;; get file name regexp
5446 (pr-interactive-regexp mess)
5447 ;; get output file name
5448 (and (not pr-spool-p)
5449 (ps-print-preprint current-prefix-arg))))
5452 (defun pr-interactive-n-up-file (mess)
5453 (list
5454 ;; get n-up argument
5455 (pr-interactive-n-up mess)
5456 ;; get output file name
5457 (and (not pr-spool-p)
5458 (ps-print-preprint current-prefix-arg))))
5461 (defun pr-interactive-n-up-inout (mess)
5462 (list
5463 ;; get n-up argument
5464 (pr-interactive-n-up mess)
5465 ;; get input file name
5466 (pr-ps-infile-preprint (concat mess " "))
5467 ;; get output file name
5468 (ps-print-preprint current-prefix-arg)))
5471 (defun pr-set-outfilename (filename-sym)
5472 (and (not pr-spool-p)
5473 (eq (symbol-value filename-sym) t)
5474 (set filename-sym (and (not (interactive-p))
5475 current-prefix-arg
5476 (ps-print-preprint current-prefix-arg))))
5477 (and (symbol-value filename-sym)
5478 (set filename-sym (pr-dosify-file-name (symbol-value filename-sym)))))
5481 (defun pr-set-n-up-and-filename (n-up-sym filename-sym mess)
5482 ;; n-up
5483 (or (symbol-value n-up-sym)
5484 (set n-up-sym (pr-interactive-n-up mess)))
5485 ;; output file
5486 (pr-set-outfilename filename-sym))
5489 (defun pr-set-dir-args (dir-sym regexp-sym mess)
5490 ;; directory
5491 (or (symbol-value dir-sym)
5492 (set dir-sym (pr-interactive-dir mess)))
5493 ;; file name regexp
5494 (or (symbol-value regexp-sym)
5495 (set regexp-sym (pr-interactive-regexp mess))))
5498 (defun pr-set-ps-dir-args (n-up-sym dir-sym regexp-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 ;; directory & file name regexp
5503 (pr-set-dir-args dir-sym regexp-sym mess)
5504 ;; output file
5505 (pr-set-outfilename filename-sym))
5508 (defun pr-find-buffer-visiting (file)
5509 (if (not (file-directory-p file))
5510 (find-buffer-visiting (if ps-windows-system
5511 (downcase file)
5512 file))
5513 (let ((truename (file-truename file))
5514 (blist (buffer-list))
5515 found)
5516 (while (and (not found) blist)
5517 (save-excursion
5518 (set-buffer (car blist))
5519 (and (eq major-mode 'dired-mode)
5520 (save-excursion
5521 (goto-char (point-min))
5522 (string= (buffer-substring-no-properties
5523 (+ (point-min) 2)
5524 (progn
5525 (end-of-line)
5526 (1- (point))))
5527 truename))
5528 (setq found (car blist))))
5529 (setq blist (cdr blist)))
5530 found)))
5533 (defun pr-file-list (dir file-regexp fun)
5534 (mapcar #'(lambda (file)
5535 (and (or pr-list-directory
5536 (not (file-directory-p file)))
5537 (let ((buffer (pr-find-buffer-visiting file))
5538 pop-up-windows
5539 pop-up-frames)
5540 (and (or buffer
5541 (file-readable-p file))
5542 (save-excursion
5543 (set-buffer (or buffer
5544 (find-file-noselect file)))
5545 (funcall fun)
5546 (or buffer
5547 (kill-buffer (current-buffer))))))))
5548 (directory-files dir t file-regexp)))
5551 (defun pr-delete-file-if-exists (filename)
5552 (and (not pr-spool-p) (stringp filename) (file-exists-p filename)
5553 (delete-file filename)))
5556 (defun pr-ps-file-list (n-up dir file-regexp filename)
5557 (pr-delete-file-if-exists (setq filename (pr-expand-file-name filename)))
5558 (let ((pr-spool-p t))
5559 (pr-file-list dir file-regexp
5560 #'(lambda ()
5561 (if (pr-auto-mode-p)
5562 (pr-ps-mode n-up filename)
5563 (pr-text2ps 'buffer n-up filename)))))
5564 (or pr-spool-p
5565 (pr-despool-print filename)))
5568 (defun pr-text2ps (kind n-up filename &optional from to)
5569 (let ((ps-n-up-printing n-up)
5570 (ps-spool-config (and (eq ps-spool-config 'setpagedevice)
5571 'setpagedevice)))
5572 (pr-delete-file-if-exists filename)
5573 (cond (pr-faces-p
5574 (cond (pr-spool-p
5575 ;; pr-faces-p and pr-spool-p
5576 ;; here FILENAME arg is ignored
5577 (cond ((eq kind 'buffer)
5578 (ps-spool-buffer-with-faces))
5579 ((eq kind 'region)
5580 (ps-spool-region-with-faces (or from (point))
5581 (or to (mark))))
5583 ;; pr-faces-p and not pr-spool-p
5584 ((eq kind 'buffer)
5585 (ps-print-buffer-with-faces filename))
5586 ((eq kind 'region)
5587 (ps-print-region-with-faces (or from (point))
5588 (or to (mark)) filename))
5590 (pr-spool-p
5591 ;; not pr-faces-p and pr-spool-p
5592 ;; here FILENAME arg is ignored
5593 (cond ((eq kind 'buffer)
5594 (ps-spool-buffer))
5595 ((eq kind 'region)
5596 (ps-spool-region (or from (point)) (or to (mark))))
5598 ;; not pr-faces-p and not pr-spool-p
5599 ((eq kind 'buffer)
5600 (ps-print-buffer filename))
5601 ((eq kind 'region)
5602 (ps-print-region (or from (point)) (or to (mark)) filename))
5606 (defun pr-command (command)
5607 "Return absolute file name specification for COMMAND.
5609 If COMMAND is an empty string, return it.
5611 If COMMAND is already an absolute file name specification, return it.
5612 Else it uses `pr-path-alist' to find COMMAND, if find it then return it;
5613 otherwise, gives an error.
5615 When using `pr-path-alist' to find COMMAND, the entries `cygwin', `windows' and
5616 `unix' are used (see `pr-path-alist' for documentation).
5618 If Emacs is running on Windows 95/98/NT/2000, tries to find COMMAND,
5619 COMMAND.exe, COMMAND.bat and COMMAND.com in this order."
5620 (if (string= command "")
5621 command
5622 (pr-dosify-file-name
5623 (or (pr-find-command command)
5624 (pr-path-command (cond (pr-cygwin-system 'cygwin)
5625 (ps-windows-system 'windows)
5626 (t 'unix))
5627 (file-name-nondirectory command)
5628 nil)
5629 (error "Command not found: %s"
5630 (file-name-nondirectory command))))))
5633 (defun pr-path-command (symbol command sym-list)
5634 (let ((lpath (cdr (assq symbol pr-path-alist)))
5635 cmd)
5636 ;; PATH expansion
5637 (and (eq symbol 'PATH) (null lpath)
5638 (setq lpath (parse-colon-path (getenv "PATH"))))
5639 (while (and lpath
5640 (not
5641 (setq cmd
5642 (let ((path (car lpath)))
5643 (cond
5644 ;; symbol expansion
5645 ((symbolp path)
5646 (and (not (memq path sym-list))
5647 (pr-path-command path command
5648 (cons path sym-list))))
5649 ;; normal path
5650 ((stringp path)
5651 (pr-find-command
5652 (expand-file-name
5653 (substitute-in-file-name
5654 (concat (file-name-as-directory path)
5655 command)))))
5656 )))))
5657 (setq lpath (cdr lpath)))
5658 cmd))
5661 (defun pr-find-command (cmd)
5662 (if ps-windows-system
5663 ;; windows system
5664 (let ((ext (cons (file-name-extension cmd t)
5665 (list ".exe" ".bat" ".com")))
5666 found)
5667 (setq cmd (file-name-sans-extension cmd))
5668 (while (and ext
5669 (setq found (concat cmd (car ext)))
5670 (not (and (file-regular-p found)
5671 (file-executable-p found))))
5672 (setq ext (cdr ext)
5673 found nil))
5674 found)
5675 ;; non-windows systems
5676 (and (file-regular-p cmd)
5677 (file-executable-p cmd)
5678 cmd)))
5681 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5682 ;; Printing Interface (inspired on ps-print-interface.el)
5685 (require 'widget)
5686 (require 'wid-edit)
5687 (require 'cus-edit)
5690 (defvar pr-i-window-configuration nil)
5692 (defvar pr-i-buffer nil)
5693 (defvar pr-i-region nil)
5694 (defvar pr-i-mode nil)
5695 (defvar pr-i-despool nil)
5696 (defvar pr-i-ps-as-is t)
5697 (defvar pr-i-n-up 1)
5698 (defvar pr-i-directory "./")
5699 (defvar pr-i-regexp "")
5700 (defvar pr-i-ps-file "")
5701 (defvar pr-i-out-file "")
5702 (defvar pr-i-answer-yes nil)
5703 (defvar pr-i-process 'buffer)
5704 (defvar pr-i-ps-send 'printer)
5707 (defvar pr-interface-map nil
5708 "Keymap for pr-interface.")
5710 (if pr-interface-map
5712 (setq pr-interface-map (make-sparse-keymap))
5713 (cond ((eq ps-print-emacs-type 'xemacs) ; XEmacs
5714 (pr-f-set-keymap-parents pr-interface-map (list widget-keymap))
5715 (pr-f-set-keymap-name pr-interface-map 'pr-interface-map))
5716 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
5717 (pr-f-set-keymap-parents pr-interface-map widget-keymap)))
5718 (define-key pr-interface-map "q" 'pr-interface-quit)
5719 (define-key pr-interface-map "?" 'pr-interface-help))
5722 (defmacro pr-interface-save (&rest body)
5723 `(save-excursion
5724 (set-buffer pr-i-buffer)
5725 ,@body))
5728 (defun pr-create-interface ()
5729 "Create the front end for printing package."
5730 (setq pr-i-buffer (buffer-name (current-buffer))
5731 pr-i-region (ps-mark-active-p)
5732 pr-i-mode (pr-mode-alist-p)
5733 pr-i-window-configuration (current-window-configuration))
5735 (put 'pr-i-process 'pr-widget-list nil)
5736 (put 'pr-i-ps-send 'pr-widget-list nil)
5738 (delete-other-windows)
5739 (kill-buffer (get-buffer-create pr-buffer-name))
5740 (switch-to-buffer (get-buffer-create pr-buffer-name))
5742 ;; header
5743 (let ((versions (concat "printing v" pr-version
5744 " ps-print v" ps-print-version)))
5745 (widget-insert (make-string (- 79 (length versions)) ?\ ) versions))
5746 (pr-insert-italic "\nCurrent Directory : " 1)
5747 (pr-insert-italic default-directory)
5749 (pr-insert-section-1) ; 1. Print
5750 (pr-insert-section-2) ; 2. PostScript Printer
5751 (pr-insert-section-3) ; 3. Text Printer
5753 ;; separator
5754 (widget-insert "\n\n " (make-string 77 ?-))
5756 (pr-insert-section-4) ; 4. Settings
5757 (pr-insert-section-5) ; 5. Customize
5758 (pr-insert-section-6) ; 6. Show Settings
5759 (pr-insert-section-7) ; 7. Help
5761 (use-local-map pr-interface-map)
5762 (widget-setup)
5763 (goto-char (point-min))
5765 (and pr-i-region ; let region activated
5766 (pr-keep-region-active)))
5769 (defun pr-insert-section-1 ()
5770 ;; 1. Print:
5771 (pr-insert-italic "\nPrint :" 1)
5773 ;; 1a. Buffer:
5774 ;; 1a. Buffer: Buffer List
5775 (pr-insert-radio-button 'pr-i-process 'buffer)
5776 (pr-insert-menu "Buffer List" 'pr-i-buffer
5777 (let ((blist (buffer-list))
5778 case-fold-search choices)
5779 (while blist
5780 (let ((name (buffer-name (car blist)))
5781 (ignore pr-buffer-name-ignore)
5782 found)
5783 (setq blist (cdr blist))
5784 (while (and ignore (not found))
5785 (setq found (string-match (car ignore) name)
5786 ignore (cdr ignore)))
5787 (or found
5788 (setq choices
5789 (cons (list 'quote
5790 (list 'choice-item
5791 :format "%[%t%]"
5792 name))
5793 choices)))))
5794 (nreverse choices))
5795 " Buffer : " nil
5796 '(progn
5797 (pr-interface-save
5798 (setq pr-i-region (ps-mark-active-p)
5799 pr-i-mode (pr-mode-alist-p)))
5800 (pr-update-checkbox 'pr-i-region)
5801 (pr-update-checkbox 'pr-i-mode)))
5802 ;; 1a. Buffer: Region
5803 (put 'pr-i-region 'pr-widget
5804 (pr-insert-checkbox
5805 "\n "
5806 'pr-i-region
5807 #'(lambda (widget &rest ignore)
5808 (let ((region-p (pr-interface-save
5809 (ps-mark-active-p))))
5810 (cond ((null (widget-value widget)) ; widget is nil
5811 (setq pr-i-region nil))
5812 (region-p ; widget is true and there is a region
5813 (setq pr-i-region t)
5814 (widget-value-set widget t)
5815 (widget-setup)) ; MUST be called after widget-value-set
5816 (t ; widget is true and there is no region
5817 (ding)
5818 (message "There is no region active")
5819 (setq pr-i-region nil)
5820 (widget-value-set widget nil)
5821 (widget-setup))))) ; MUST be called after widget-value-set
5822 " Region"))
5823 ;; 1a. Buffer: Mode
5824 (put 'pr-i-mode 'pr-widget
5825 (pr-insert-checkbox
5827 'pr-i-mode
5828 #'(lambda (widget &rest ignore)
5829 (let ((mode-p (pr-interface-save
5830 (pr-mode-alist-p))))
5831 (cond
5832 ((null (widget-value widget)) ; widget is nil
5833 (setq pr-i-mode nil))
5834 (mode-p ; widget is true and there is a `mode'
5835 (setq pr-i-mode t)
5836 (widget-value-set widget t)
5837 (widget-setup)) ; MUST be called after widget-value-set
5838 (t ; widget is true and there is no `mode'
5839 (ding)
5840 (message
5841 "This buffer isn't in a mode that printing treats specially.")
5842 (setq pr-i-mode nil)
5843 (widget-value-set widget nil)
5844 (widget-setup))))) ; MUST be called after widget-value-set
5845 " Mode\n"))
5847 ;; 1b. Directory:
5848 (pr-insert-radio-button 'pr-i-process 'directory)
5849 (widget-create
5850 'directory
5851 :size 58
5852 :format " Directory : %v"
5853 :notify 'pr-interface-directory
5854 :action (lambda (widget &optional event)
5855 (if (pr-interface-directory widget)
5856 (pr-widget-field-action widget event)
5857 (ding)
5858 (message "Please specify a readable directory")))
5859 pr-i-directory)
5860 ;; 1b. Directory: File Regexp
5861 (widget-create 'regexp
5862 :size 58
5863 :format "\n File Regexp : %v\n"
5864 :notify (lambda (widget &rest ignore)
5865 (setq pr-i-regexp (widget-value widget)))
5866 pr-i-regexp)
5867 ;; 1b. Directory: List Directory Entry
5868 (widget-insert " ")
5869 (pr-insert-toggle 'pr-list-directory " List Directory Entry\n")
5871 ;; 1c. PostScript File:
5872 (pr-insert-radio-button 'pr-i-process 'file)
5873 (widget-create
5874 'file
5875 :size 51
5876 :format " PostScript File : %v"
5877 :notify 'pr-interface-infile
5878 :action (lambda (widget &rest event)
5879 (if (pr-interface-infile widget)
5880 (pr-widget-field-action widget event)
5881 (ding)
5882 (message "Please specify a readable PostScript file")))
5883 pr-i-ps-file)
5884 ;; 1c. PostScript File: PostScript Utility
5885 (pr-insert-menu "PostScript Utility" 'pr-ps-utility
5886 (pr-choice-alist pr-ps-utility-alist)
5887 "\n PostScript Utility : "
5888 " ")
5889 ;; 1c. PostScript File: No Preprocessing
5890 (pr-insert-toggle 'pr-i-ps-as-is " No Preprocessing"))
5893 (defun pr-insert-section-2 ()
5894 ;; 2. PostScript Printer:
5895 ;; 2. PostScript Printer: PostScript Printer List
5896 (pr-insert-italic "\n\nPostScript Printer : " 2 20)
5897 (pr-insert-menu "PostScript Printer" 'pr-ps-name
5898 (pr-choice-alist pr-ps-printer-alist))
5899 ;; 2. PostScript Printer: Despool
5900 (put 'pr-i-despool 'pr-widget
5901 (pr-insert-checkbox
5903 'pr-i-despool
5904 #'(lambda (widget &rest ignore)
5905 (if pr-spool-p
5906 (setq pr-i-despool (not pr-i-despool))
5907 (ding)
5908 (message "Can despool only when spooling is actually selected")
5909 (setq pr-i-despool nil))
5910 (widget-value-set widget pr-i-despool)
5911 (widget-setup)) ; MUST be called after widget-value-set
5912 " Despool "))
5913 ;; 2. PostScript Printer: Preview Print Quit
5914 (pr-insert-button 'pr-interface-preview "Preview" " ")
5915 (pr-insert-button 'pr-interface-ps-print "Print" " ")
5916 (pr-insert-button 'pr-interface-quit "Quit")
5917 ;; 2. PostScript Printer: Send to Printer/Temporary File
5918 (pr-insert-radio-button 'pr-i-ps-send 'printer)
5919 (widget-insert " Send to Printer/Temporary File")
5920 ;; 2. PostScript Printer: Send to File
5921 (pr-insert-radio-button 'pr-i-ps-send 'file)
5922 (widget-create
5923 'file
5924 :size 57
5925 :format " Send to File : %v"
5926 :notify 'pr-interface-outfile
5927 :action (lambda (widget &rest event)
5928 (if (and (pr-interface-outfile widget)
5929 (or (not (file-exists-p pr-i-out-file))
5930 (setq pr-i-answer-yes
5931 (y-or-n-p "File exists; overwrite? "))))
5932 (pr-widget-field-action widget event)
5933 (ding)
5934 (message "Please specify a writable PostScript file")))
5935 pr-i-out-file)
5936 ;; 2. PostScript Printer: N-Up
5937 (widget-create
5938 'integer
5939 :size 3
5940 :format "\n N-Up : %v"
5941 :notify (lambda (widget &rest ignore)
5942 (let ((value (if (string= (widget-apply widget :value-get) "")
5944 (widget-value widget))))
5945 (if (and (integerp value)
5946 (<= 1 value) (<= value 100))
5947 (progn
5948 (message " ")
5949 (setq pr-i-n-up value))
5950 (ding)
5951 (message "Please specify an integer between 1 and 100"))))
5952 pr-i-n-up))
5955 (defun pr-insert-section-3 ()
5956 ;; 3. Text Printer:
5957 (pr-insert-italic "\n\nText Printer : " 2 14)
5958 (pr-insert-menu "Text Printer" 'pr-txt-name
5959 (pr-choice-alist pr-txt-printer-alist)
5960 nil " ")
5961 (pr-insert-button 'pr-interface-printify "Printify" " ")
5962 (pr-insert-button 'pr-interface-txt-print "Print" " ")
5963 (pr-insert-button 'pr-interface-quit "Quit"))
5966 (defun pr-insert-section-4 ()
5967 ;; 4. Settings:
5968 ;; 4. Settings: Landscape Auto Region Verbose
5969 (pr-insert-checkbox "\n\n " 'ps-landscape-mode
5970 #'(lambda (&rest ignore)
5971 (setq ps-landscape-mode (not ps-landscape-mode)
5972 pr-file-landscape ps-landscape-mode))
5973 " Landscape ")
5974 (pr-insert-toggle 'pr-auto-region " Auto Region ")
5975 (pr-insert-toggle 'pr-buffer-verbose " Verbose\n ")
5977 ;; 4. Settings: Print Header Auto Mode
5978 (pr-insert-toggle 'ps-print-header " Print Header ")
5979 (pr-insert-toggle 'pr-auto-mode " Auto Mode\n ")
5981 ;; 4. Settings: Print Header Frame Menu Lock
5982 (pr-insert-toggle 'ps-print-header-frame " Print Header Frame ")
5983 (pr-insert-toggle 'pr-menu-lock " Menu Lock\n ")
5985 ;; 4. Settings: Line Number
5986 (pr-insert-toggle 'ps-line-number " Line Number\n ")
5988 ;; 4. Settings: Zebra Stripes Spool Buffer
5989 (pr-insert-toggle 'ps-zebra-stripes " Zebra Stripes")
5990 (pr-insert-checkbox " "
5991 'pr-spool-p
5992 #'(lambda (&rest ignore)
5993 (setq pr-spool-p (not pr-spool-p))
5994 (unless pr-spool-p
5995 (setq pr-i-despool nil)
5996 (pr-update-checkbox 'pr-i-despool)))
5997 " Spool Buffer")
5999 ;; 4. Settings: Duplex Print with faces
6000 (pr-insert-checkbox "\n "
6001 'ps-spool-duplex
6002 #'(lambda (&rest ignore)
6003 (setq ps-spool-duplex (not ps-spool-duplex)
6004 pr-file-duplex ps-spool-duplex))
6005 " Duplex ")
6006 (pr-insert-toggle 'pr-faces-p " Print with faces")
6008 ;; 4. Settings: Tumble Print via Ghostscript
6009 (pr-insert-checkbox "\n "
6010 'ps-spool-tumble
6011 #'(lambda (&rest ignore)
6012 (setq ps-spool-tumble (not ps-spool-tumble)
6013 pr-file-tumble ps-spool-tumble))
6014 " Tumble ")
6015 (pr-insert-toggle 'pr-print-using-ghostscript " Print via Ghostscript\n ")
6017 ;; 4. Settings: Upside-Down Page Parity
6018 (pr-insert-toggle 'ps-print-upside-down " Upside-Down")
6019 (pr-insert-italic "\n\nSelect Pages : " 2 14)
6020 (pr-insert-menu "Page Parity" 'ps-even-or-odd-pages
6021 (mapcar #'(lambda (alist)
6022 (list 'quote
6023 (list 'choice-item
6024 :format "%[%t%]"
6025 :tag (cdr alist)
6026 :value (car alist))))
6027 pr-even-or-odd-alist)))
6030 (defun pr-insert-section-5 ()
6031 ;; 5. Customize:
6032 (pr-insert-italic "\n\nCustomize : " 2 11)
6033 (pr-insert-button 'pr-customize "printing" " ")
6034 (pr-insert-button #'(lambda (&rest ignore) (ps-print-customize))
6035 "ps-print" " ")
6036 (pr-insert-button 'lpr-customize "lpr"))
6039 (defun pr-insert-section-6 ()
6040 ;; 6. Show Settings:
6041 (pr-insert-italic "\nShow Settings : " 1 14)
6042 (pr-insert-button 'pr-show-pr-setup "printing" " ")
6043 (pr-insert-button 'pr-show-ps-setup "ps-print" " ")
6044 (pr-insert-button 'pr-show-lpr-setup "lpr"))
6047 (defun pr-insert-section-7 ()
6048 ;; 7. Help:
6049 (pr-insert-italic "\nHelp : " 1 5)
6050 (pr-insert-button 'pr-interface-help "Interface Help" " ")
6051 (pr-insert-button 'pr-help "Menu Help" " ")
6052 (pr-insert-button 'pr-interface-quit "Quit" "\n ")
6053 (pr-insert-button 'pr-kill-help "Kill All Printing Help Buffer"))
6056 (defun pr-kill-help (&rest ignore)
6057 "Kill all printing help buffer."
6058 (interactive)
6059 (let ((help '("*Printing Interface Help*" "*Printing Help*"
6060 "*LPR Setup*" "*PR Setup*" "*PS Setup*")))
6061 (while help
6062 (let ((buffer (get-buffer (car help))))
6063 (setq help (cdr help))
6064 (when buffer
6065 (delete-windows-on buffer)
6066 (kill-buffer buffer)))))
6067 (recenter (- (window-height) 2)))
6070 (defun pr-interface-quit (&rest ignore)
6071 "Kill the printing buffer interface and quit."
6072 (interactive)
6073 (kill-buffer pr-buffer-name)
6074 (set-window-configuration pr-i-window-configuration))
6077 (defun pr-interface-help (&rest ignore)
6078 "printing buffer interface help."
6079 (interactive)
6080 (pr-show-setup pr-interface-help-message "*Printing Interface Help*"))
6083 (defun pr-interface-txt-print (&rest ignore)
6084 "Print using lpr package."
6085 (interactive)
6086 (condition-case data
6087 (cond
6088 ((eq pr-i-process 'directory)
6089 (pr-i-directory)
6090 (pr-interface-save
6091 (pr-txt-directory pr-i-directory pr-i-regexp)))
6092 ((eq pr-i-process 'buffer)
6093 (pr-interface-save
6094 (cond (pr-i-region
6095 (let ((pr-auto-mode pr-i-mode))
6096 (pr-txt-region)))
6097 (pr-i-mode
6098 (let (pr-auto-region)
6099 (pr-txt-mode)))
6101 (let (pr-auto-mode pr-auto-region)
6102 (pr-txt-buffer)))
6104 ((eq pr-i-process 'file)
6105 (error "Please specify a text file"))
6107 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6109 ;; handlers
6110 ((quit error)
6111 (ding)
6112 (message (error-message-string data)))))
6115 (defun pr-interface-printify (&rest ignore)
6116 "Printify a buffer."
6117 (interactive)
6118 (condition-case data
6119 (cond
6120 ((eq pr-i-process 'directory)
6121 (pr-i-directory)
6122 (pr-interface-save
6123 (pr-printify-directory pr-i-directory pr-i-regexp)))
6124 ((eq pr-i-process 'buffer)
6125 (pr-interface-save
6126 (if pr-i-region
6127 (pr-printify-region)
6128 (pr-printify-buffer))))
6129 ((eq pr-i-process 'file)
6130 (error "Cannot printify a PostScript file"))
6132 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6134 ;; handlers
6135 ((quit error)
6136 (ding)
6137 (message (error-message-string data)))))
6140 (defun pr-interface-ps-print (&rest ignore)
6141 "Print using ps-print package."
6142 (interactive)
6143 (pr-interface-ps 'pr-despool-ps-print 'pr-ps-directory-ps-print
6144 'pr-ps-file-ps-print 'pr-ps-file-up-ps-print
6145 'pr-ps-region-ps-print 'pr-ps-mode-ps-print
6146 'pr-ps-buffer-ps-print))
6149 (defun pr-interface-preview (&rest ignore)
6150 "Preview a PostScript file."
6151 (interactive)
6152 (pr-interface-ps 'pr-despool-preview 'pr-ps-directory-preview
6153 'pr-ps-file-preview 'pr-ps-file-up-preview
6154 'pr-ps-region-preview 'pr-ps-mode-preview
6155 'pr-ps-buffer-preview))
6158 (defun pr-interface-ps (ps-despool ps-directory ps-file ps-file-up ps-region
6159 ps-mode ps-buffer)
6160 (condition-case data
6161 (let ((outfile (or (and (eq pr-i-process 'file) pr-i-ps-as-is)
6162 (pr-i-ps-send))))
6163 (cond
6164 ((and pr-i-despool pr-spool-p)
6165 (pr-interface-save
6166 (funcall ps-despool outfile))
6167 (setq pr-i-despool nil)
6168 (pr-update-checkbox 'pr-i-despool))
6169 ((eq pr-i-process 'directory)
6170 (pr-i-directory)
6171 (pr-interface-save
6172 (funcall ps-directory
6173 pr-i-n-up pr-i-directory pr-i-regexp outfile)))
6174 ((eq pr-i-process 'file)
6175 (cond ((or (file-directory-p pr-i-ps-file)
6176 (not (file-readable-p pr-i-ps-file)))
6177 (error "Please specify a readable PostScript file"))
6178 (pr-i-ps-as-is
6179 (pr-interface-save
6180 (funcall ps-file pr-i-ps-file)))
6182 (pr-interface-save
6183 (funcall ps-file-up pr-i-n-up pr-i-ps-file outfile)))
6185 ((eq pr-i-process 'buffer)
6186 (pr-interface-save
6187 (cond (pr-i-region
6188 (let ((pr-auto-mode pr-i-mode))
6189 (funcall ps-region pr-i-n-up outfile)))
6190 (pr-i-mode
6191 (let (pr-auto-region)
6192 (funcall ps-mode pr-i-n-up outfile)))
6194 (let (pr-auto-mode pr-auto-region)
6195 (funcall ps-buffer pr-i-n-up outfile)))
6198 (error "Internal error: `pr-i-process' = %S" pr-i-process))
6200 ;; handlers
6201 ((quit error)
6202 (ding)
6203 (message (error-message-string data)))))
6206 (defun pr-i-ps-send ()
6207 (cond ((eq pr-i-ps-send 'printer)
6208 nil)
6209 ((not (eq pr-i-ps-send 'file))
6210 (error "Internal error: `pr-i-ps-send' = %S" pr-i-ps-send))
6211 ((or (file-directory-p pr-i-out-file)
6212 (not (file-writable-p pr-i-out-file)))
6213 (error "Please specify a writable PostScript file"))
6214 ((or (not (file-exists-p pr-i-out-file))
6215 pr-i-answer-yes
6216 (setq pr-i-answer-yes
6217 (y-or-n-p (format "File `%s' exists; overwrite? "
6218 pr-i-out-file))))
6219 pr-i-out-file)
6221 (error "File already exists"))))
6224 (defun pr-i-directory ()
6225 (or (and (file-directory-p pr-i-directory)
6226 (file-readable-p pr-i-directory))
6227 (error "Please specify be a readable directory")))
6230 (defun pr-interface-directory (widget &rest ignore)
6231 (and pr-buffer-verbose
6232 (message "You can use M-TAB or ESC TAB for file completion"))
6233 (let ((dir (widget-value widget)))
6234 (and (file-directory-p dir)
6235 (file-readable-p dir)
6236 (setq pr-i-directory dir))))
6239 (defun pr-interface-infile (widget &rest ignore)
6240 (and pr-buffer-verbose
6241 (message "You can use M-TAB or ESC TAB for file completion"))
6242 (let ((file (widget-value widget)))
6243 (and (not (file-directory-p file))
6244 (file-readable-p file)
6245 (setq pr-i-ps-file file))))
6248 (defun pr-interface-outfile (widget &rest ignore)
6249 (setq pr-i-answer-yes nil)
6250 (and pr-buffer-verbose
6251 (message "You can use M-TAB or ESC TAB for file completion"))
6252 (let ((file (widget-value widget)))
6253 (and (not (file-directory-p file))
6254 (file-writable-p file)
6255 (setq pr-i-out-file file))))
6258 (defun pr-widget-field-action (widget event)
6259 (and (get-buffer "*Completions*") ; clean frame window
6260 (delete-windows-on "*Completions*"))
6261 (message " ") ; clean echo area
6262 (widget-field-action widget event))
6265 (defun pr-insert-italic (str &optional from to)
6266 (let ((len (length str)))
6267 (put-text-property (if from (max from 0) 0)
6268 (if to (max to len) len)
6269 'face 'italic str)
6270 (widget-insert str)))
6273 (defun pr-insert-checkbox (before var-sym fun label)
6274 (widget-insert before)
6275 (prog1
6276 (widget-create 'checkbox
6277 :notify fun
6278 (symbol-value var-sym))
6279 (widget-insert label)))
6282 (defun pr-insert-toggle (var-sym label)
6283 (widget-create 'checkbox
6284 :notify `(lambda (&rest ignore)
6285 (setq ,var-sym (not ,var-sym)))
6286 (symbol-value var-sym))
6287 (widget-insert label))
6290 (defun pr-insert-button (fun label &optional separator)
6291 (widget-create 'push-button
6292 :notify fun
6293 label)
6294 (and separator
6295 (widget-insert separator)))
6298 (defun pr-insert-menu (tag var-sym choices &optional before after &rest body)
6299 (and before (widget-insert before))
6300 (eval `(widget-create 'menu-choice
6301 :tag ,tag
6302 :format "%v"
6303 :inline t
6304 :value ,var-sym
6305 :notify (lambda (widget &rest ignore)
6306 (setq ,var-sym (widget-value widget))
6307 ,@body)
6308 :void '(choice-item :format "%[%t%]"
6309 :tag "Can not display value!")
6310 ,@choices))
6311 (and after (widget-insert after)))
6314 (defun pr-insert-radio-button (var-sym sym)
6315 (widget-insert "\n")
6316 (let ((wid-list (get var-sym 'pr-widget-list))
6317 (wid (eval `(widget-create
6318 'radio-button
6319 :format " %[%v%]"
6320 :value (eq ,var-sym (quote ,sym))
6321 :notify (lambda (&rest ignore)
6322 (setq ,var-sym (quote ,sym))
6323 (pr-update-radio-button (quote ,var-sym)))))))
6324 (put var-sym 'pr-widget-list (cons (cons wid sym) wid-list))))
6327 (defun pr-update-radio-button (var-sym)
6328 (let ((wid-list (get var-sym 'pr-widget-list)))
6329 (while wid-list
6330 (let ((wid (car (car wid-list)))
6331 (value (cdr (car wid-list))))
6332 (setq wid-list (cdr wid-list))
6333 (widget-value-set wid (eq (symbol-value var-sym) value))))
6334 (widget-setup)))
6337 (defun pr-update-checkbox (var-sym)
6338 (let ((wid (get var-sym 'pr-widget)))
6339 (when wid
6340 (widget-value-set wid (symbol-value var-sym))
6341 (widget-setup))))
6344 (defun pr-choice-alist (alist)
6345 (let ((max (apply 'max (mapcar #'(lambda (alist)
6346 (length (symbol-name (car alist))))
6347 alist))))
6348 (mapcar #'(lambda (alist)
6349 (let* ((sym (car alist))
6350 (name (symbol-name sym)))
6351 (list
6352 'quote
6353 (list
6354 'choice-item
6355 :format "%[%t%]"
6356 :tag (concat name
6357 (make-string (- max (length name)) ?_))
6358 :value sym))))
6359 alist)))
6362 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6365 (pr-update-menus t)
6368 (provide 'printing)
6371 ;;; arch-tag: 9ce9ac3f-0f60-4370-900b-1943215d9d18
6372 ;;; printing.el ends here