1 ;;; printing.el --- printing utilities
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005
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: <2005/06/11 19:51:32 vinicius>
9 ;; Keywords: wp, print, PostScript
11 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
13 (defconst pr-version
"6.8.4"
14 "printing.el, v 6.8.4 <2005/06/11 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
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
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
38 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
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
49 ;; There are two user interfaces:
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
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:
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")
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
117 ;; /usr/X11R6/bin/gv ("/home/user/example/file.ps")
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*,
125 ;; Novices (First Users)
126 ;; ---------------------
128 ;; First of all, see printing documentation only to get an idea of what
129 ;; `printing' is capable.
131 ;; Then try to set the variables: `pr-ps-name', `pr-ps-printer-alist',
132 ;; `pr-txt-name', `pr-txt-printer-alist' and `pr-path-alist'. These variables
133 ;; are the main variables for printing processing.
135 ;; Now, please, see these variables documentation deeper. You can do this by
136 ;; typing C-h v pr-ps-name RET (for example) if you already loaded printing
137 ;; package, or by browsing printing.el source file.
139 ;; If the documentation isn't clear or if you find a way to improve the
140 ;; documentation, please, send an email to maintainer. All printing users
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
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")
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 "")
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 "" "")
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")
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")
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")
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).
212 ;; First line (on first page)
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.
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
256 ;; Where `CCC' is whatever is at the beginning of the text to be printed.
258 ;; Therefore, the printer `\\host\printer' is not a text printer, but a
259 ;; PostScript printer. So, please, don't include this printer in
260 ;; `pr-txt-printer-alist' (which see).
262 ;; 5. You can use gsprint instead of ghostscript to print monochrome PostScript
263 ;; files in Windows. The gsprint utility documentation says that it is more
264 ;; efficient than ghostscript to print monochrome PostScript.
266 ;; To print non-monochrome PostScript file, the efficiency of ghostscript
267 ;; is similar to gsprint.
269 ;; Also the gsprint utility comes together with gsview distribution.
271 ;; For more information about gsprint see
272 ;; `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'.
274 ;; As an example of gsprint declaration:
276 ;; (setq pr-ps-printer-alist
277 ;; '((A "gsprint" ("-all" "-twoup") "-printer " "my-b/w-printer-name")
278 ;; (B "gsprint" ("-all" "-twoup") nil "-printer my-b/w-printer-name")
279 ;; ;; some other printer declaration
282 ;; The example above declares that printer A prints all pages (-all) and two
283 ;; pages per sheet (-twoup). The printer B declaration does the same as the
284 ;; printer A declaration, the only difference is the printer name selection.
286 ;; There are other command line options like:
288 ;; -mono Render in monochrome as 1bit/pixel (only black and white).
289 ;; -grey Render in greyscale as 8bits/pixel.
290 ;; -color Render in color as 24bits/pixel.
292 ;; The default is `-mono'. So, printer A and B in the example above are
293 ;; using implicitly the `-mono' option. Note that in `-mono' no gray tone
294 ;; or color is printed, this includes the zebra stripes, that is, in `-mono'
295 ;; the zebra stripes are not printed.
297 ;; See also documentation for `pr-ps-printer-alist'.
303 ;; To use `printing' insert in your ~/.emacs file (or c:/_emacs, if you're
304 ;; using Windows 9x/NT or MS-DOS):
306 ;; (require 'printing)
307 ;; ;; ...some user settings...
308 ;; (pr-update-menus t)
310 ;; During `pr-update-menus' evaluation:
312 ;; it replaces the Tools/Print menu by Tools/Printing menu.
314 ;; it replaces the File/Print* menu entries by File/Print menu.
315 ;; Please, see section Menu Layout below for menu explanation.
317 ;; To use `printing' utilities you can use the Printing menu options, type M-x
318 ;; followed by one of the commands below, or type a key associated with the
319 ;; command you want (if there is a key binding).
321 ;; `printing' has the following commands:
324 ;; pr-ps-directory-preview
325 ;; pr-ps-directory-using-ghostscript
326 ;; pr-ps-directory-print
327 ;; pr-ps-directory-ps-print
328 ;; pr-ps-buffer-preview
329 ;; pr-ps-buffer-using-ghostscript
330 ;; pr-ps-buffer-print
331 ;; pr-ps-buffer-ps-print
332 ;; pr-ps-region-preview
333 ;; pr-ps-region-using-ghostscript
334 ;; pr-ps-region-print
335 ;; pr-ps-region-ps-print
336 ;; pr-ps-mode-preview
337 ;; pr-ps-mode-using-ghostscript
339 ;; pr-ps-mode-ps-print
340 ;; pr-ps-file-preview
341 ;; pr-ps-file-up-preview
342 ;; pr-ps-file-using-ghostscript
344 ;; pr-ps-file-ps-print
345 ;; pr-ps-file-up-ps-print
347 ;; pr-despool-preview
348 ;; pr-despool-using-ghostscript
350 ;; pr-despool-ps-print
351 ;; pr-printify-directory
352 ;; pr-printify-buffer
353 ;; pr-printify-region
359 ;; pr-toggle-file-duplex
360 ;; pr-toggle-file-tumble
361 ;; pr-toggle-file-landscape
362 ;; pr-toggle-ghostscript
367 ;; pr-toggle-landscape
368 ;; pr-toggle-upside-down
385 ;; The general meanings of above commands are:
388 ;; `pr-interface' buffer interface for printing package.
389 ;; `pr-help' help for printing package.
390 ;; `pr-ps-name' interactively select a PostScript printer.
391 ;; `pr-txt-name' interactively select a text printer.
392 ;; `pr-ps-utility' interactively select a PostScript utility.
393 ;; `pr-show-*-setup' show current settings.
394 ;; `pr-ps-*' deal with PostScript code generation.
395 ;; `pr-txt-*' deal with text generation.
396 ;; `pr-toggle-*' toggle on/off some boolean variable.
397 ;; `pr-despool-*' despool the PostScript spooling buffer.
398 ;; `pr-printify-*' replace nonprintable ASCII by printable ASCII
402 ;; `*-customize' customization.
403 ;; `*-preview' preview a PostScript file.
404 ;; `*-using-ghostscript' use ghostscript to print.
405 ;; `*-fast-fire' fast fire command (see it for documentation).
406 ;; `*-print' send PostScript directly to printer.
407 ;; `*-ps-print' send PostScript directly to printer or use
408 ;; ghostscript to print. It depends on
409 ;; `pr-print-using-ghostscript' option.
412 ;; `*-directory*' process a directory.
413 ;; `*-buffer*' process a buffer.
414 ;; `*-region*' process a region.
415 ;; `*-mode*' process a major mode (see explanation below).
416 ;; `*-file-*' process a PostScript file.
417 ;; `*-file-up-*' process a PostScript file using a filter utility.
419 ;; Here are some examples:
421 ;; `pr-ps-buffer-using-ghostscript'
422 ;; Use ghostscript to print a buffer.
424 ;; `pr-ps-file-print'
425 ;; Print a PostScript file.
428 ;; Toggle spooling buffer.
430 ;; So you can preview through ghostview, use ghostscript to print (if you don't
431 ;; have a PostScript printer) or send directly to printer a PostScript code
432 ;; generated by `ps-print' package.
434 ;; Besides operating one buffer or region each time, you also can postpone
435 ;; previewing or printing by saving the PostScript code generated in a
436 ;; temporary Emacs buffer. This way you can save banner pages between
437 ;; successive printing. You can toggle on/off spooling by invoking
438 ;; `pr-toggle-spool' interactively or through menu bar.
440 ;; If you type, for example:
442 ;; C-u M-x pr-ps-buffer-print RET
444 ;; The `pr-ps-buffer-print' command prompts you for a n-up printing number and
445 ;; a file name, and save the PostScript code generated to the file name instead
446 ;; of sending to printer.
448 ;; This behavior is similar with the commands that deal with PostScript code
449 ;; generation, that is, with `pr-ps-*' and `pr-despool-*' commands. If
450 ;; spooling is on, only `pr-despool-*' commands prompt for a file name and save
451 ;; the PostScript code spooled in this file.
453 ;; Besides the behavior described above, the `*-directory*' commands also
454 ;; prompt for a directory and a file name regexp. So, it's possible to process
455 ;; all or certain files on a directory at once (see also documentation for
456 ;; `pr-list-directory').
458 ;; `printing' has also a special way to handle some major mode through
459 ;; `*-mode*' commands. So it's possible to customize a major mode printing,
460 ;; it's only needed to declare the customization in `pr-mode-alist' (see
461 ;; section Options) and invoke some of `*-mode*' commands. An example for
462 ;; major mode usage is when you're using gnus (or mh, or rmail, etc.) and
463 ;; you're in the *Summary* buffer, if you forget to switch to the *Article*
464 ;; buffer before printing, you'll get a nicely formatted list of article
465 ;; subjects shows up at the printer. With major mode printing you don't need
466 ;; to switch from gnus *Summary* buffer first.
468 ;; Current global keyboard mapping for GNU Emacs is:
470 ;; (global-set-key [print] 'pr-ps-fast-fire)
471 ;; (global-set-key [M-print] 'pr-ps-mode-using-ghostscript)
472 ;; (global-set-key [S-print] 'pr-ps-mode-using-ghostscript)
473 ;; (global-set-key [C-print] 'pr-txt-fast-fire)
474 ;; (global-set-key [C-M-print] 'pr-txt-fast-fire)
476 ;; And for XEmacs is:
478 ;; (global-set-key 'f22 'pr-ps-fast-fire)
479 ;; (global-set-key '(meta f22) 'pr-ps-mode-using-ghostscript)
480 ;; (global-set-key '(shift f22) 'pr-ps-mode-using-ghostscript)
481 ;; (global-set-key '(control f22) 'pr-txt-fast-fire)
482 ;; (global-set-key '(control meta f22) 'pr-txt-fast-fire)
484 ;; As a suggestion of global keyboard mapping for some `printing' commands:
486 ;; (global-set-key "\C-ci" 'pr-interface)
487 ;; (global-set-key "\C-cbp" 'pr-ps-buffer-print)
488 ;; (global-set-key "\C-cbx" 'pr-ps-buffer-preview)
489 ;; (global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
490 ;; (global-set-key "\C-crp" 'pr-ps-region-print)
491 ;; (global-set-key "\C-crx" 'pr-ps-region-preview)
492 ;; (global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
498 ;; Below it's shown a brief description of `printing' options, please, see the
499 ;; options declaration in the code for a long documentation.
501 ;; `pr-path-style' Specify which path style to use for external
504 ;; `pr-path-alist' Specify an alist for command paths.
506 ;; `pr-txt-name' Specify a printer for printing a text file.
508 ;; `pr-txt-printer-alist' Specify an alist of all text printers.
510 ;; `pr-ps-name' Specify a printer for printing a PostScript
513 ;; `pr-ps-printer-alist' Specify an alist for all PostScript printers.
515 ;; `pr-temp-dir' Specify a directory for temporary files during
518 ;; `pr-ps-temp-file' Specify PostScript temporary file name prefix.
520 ;; `pr-file-modes' Specify the file permission bits for newly
523 ;; `pr-gv-command' Specify path and name of the gsview/gv
526 ;; `pr-gs-command' Specify path and name of the ghostscript
529 ;; `pr-gs-switches' Specify ghostscript switches.
531 ;; `pr-gs-device' Specify ghostscript device switch value.
533 ;; `pr-gs-resolution' Specify ghostscript resolution switch value.
535 ;; `pr-print-using-ghostscript' Non-nil means print using ghostscript.
537 ;; `pr-faces-p' Non-nil means print with face attributes.
539 ;; `pr-spool-p' Non-nil means spool printing in a buffer.
541 ;; `pr-file-landscape' Non-nil means print PostScript file in
542 ;; landscape orientation.
544 ;; `pr-file-duplex' Non-nil means print PostScript file in duplex
547 ;; `pr-file-tumble' Non-nil means print PostScript file in tumble
550 ;; `pr-auto-region' Non-nil means region is automagically detected.
552 ;; `pr-auto-mode' Non-nil means major-mode specific printing is
553 ;; prefered over normal printing.
555 ;; `pr-mode-alist' Specify an alist for a major-mode and printing
558 ;; `pr-ps-utility' Specify PostScript utility processing.
560 ;; `pr-ps-utility-alist' Specify an alist for PostScript utility
563 ;; `pr-menu-lock' Non-nil means menu is locked while selecting
566 ;; `pr-menu-char-height' Specify menu char height in pixels.
568 ;; `pr-menu-char-width' Specify menu char width in pixels.
570 ;; `pr-setting-database' Specify an alist for settings in general.
572 ;; `pr-visible-entry-list' Specify a list of Printing menu visible
575 ;; `pr-delete-temp-file' Non-nil means delete temporary files.
577 ;; `pr-list-directory' Non-nil means list directory when processing a
580 ;; `pr-buffer-name' Specify the name of the buffer interface for
583 ;; `pr-buffer-name-ignore' Specify a regexp list for buffer names to be
584 ;; ignored in interface buffer.
586 ;; `pr-buffer-verbose' Non-nil means to be verbose when editing a
587 ;; field in interface buffer.
589 ;; To set the above options you may:
591 ;; a) insert the code in your ~/.emacs, like:
593 ;; (setq pr-faces-p t)
595 ;; This way always keep your default settings when you enter a new Emacs
598 ;; b) or use `set-variable' in your Emacs session, like:
600 ;; M-x set-variable RET pr-faces-p RET t RET
602 ;; This way keep your settings only during the current Emacs session.
604 ;; c) or use customization, for example:
605 ;; click on menu-bar *Help* option,
606 ;; then click on *Customize*,
607 ;; then click on *Browse Customization Groups*,
608 ;; expand *PostScript* group,
609 ;; expand *Printing* group
610 ;; and then customize `printing' options.
611 ;; Through this way, you may choose if the settings are kept or not when
612 ;; you leave out the current Emacs session.
614 ;; d) or see the option value:
616 ;; C-h v pr-faces-p RET
618 ;; and click the *customize* hypertext button.
619 ;; Through this way, you may choose if the settings are kept or not when
620 ;; you leave out the current Emacs session.
624 ;; M-x pr-customize RET
626 ;; and then customize `printing' options.
627 ;; Through this way, you may choose if the settings are kept or not when
628 ;; you leave out the current Emacs session.
630 ;; f) or use menu bar, for example:
631 ;; click on menu-bar *File* option,
632 ;; then click on *Printing*,
633 ;; then click on *Customize*,
634 ;; then click on *printing*
635 ;; and then customize `printing' options.
636 ;; Through this way, you may choose if the settings are kept or not when
637 ;; you leave out the current Emacs session.
643 ;; The `printing' menu (Tools/Printing or File/Print) has the following layout:
645 ;; +-----------------------------+
646 ;; A 0 | Printing Interface |
647 ;; +-----------------------------+ +-A---------+ +-B------+
648 ;; I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
649 ;; 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
650 ;; 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
651 ;; +-----------------------------+ |Mode >|-- B |Other...|
652 ;; II 4 | Printify >|-----\ |File >|--\ +--------+
653 ;; 5 | Print >|---\ | |Despool... | |
654 ;; 6 | Text Printer: name >|-\ | | +-----------+ |
655 ;; +-----------------------------+ | | | +---------+ +------------+
656 ;; III 7 |[ ]Landscape | | | \-|Directory| | No Prep... | Ia
657 ;; 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
658 ;; 9 |[ ]Print Header Frame | | | |Region | | name >|- C
659 ;; 10 |[ ]Line Number | | | +---------+ +------------+
660 ;; 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
661 ;; 12 |[ ]Duplex | | \---|Directory| | 2-up... |
662 ;; 13 |[ ]Tumble | \--\ |Buffer | | 4-up... |
663 ;; 14 |[ ]Upside-Down | | |Region | | Other... |
664 ;; 15 | Print All Pages >|--\ | |Mode | +------------+
665 ;; +-----------------------------+ | | +---------+ |[ ]Landscape| Id
666 ;; IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
667 ;; 17 |[ ]Print with faces | | \--|( )name A| |[ ]Tumble | If
668 ;; 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
669 ;; +-----------------------------+ | |... |
670 ;; V 19 |[ ]Auto Region | | |(*)name |
671 ;; 20 |[ ]Auto Mode | | |... |
672 ;; 21 |[ ]Menu Lock | | +---------+ +--------------+
673 ;; +-----------------------------+ \------------------|(*)All Pages |
674 ;; VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
675 ;; 23 | Show Settings >|-------|printing| |( )Odd Pages |
676 ;; 24 | Help | |ps-print| |( )Even Sheets|
677 ;; +-----------------------------+ |lpr | |( )Odd Sheets |
678 ;; +--------+ +--------------+
680 ;; See `pr-visible-entry-list' for hiding some parts of the menu.
682 ;; The menu has the following sections:
686 ;; 0. You can use a buffer interface instead of menus. It looks like the
687 ;; customization buffer. Basically, it has the same options found in the
688 ;; menu and some extra options, all this on a buffer.
690 ;; I. PostScript printing:
692 ;; 1. You can generate a PostScript file (if you type C-u before activating
693 ;; menu) or PostScript temporary file for a directory, a buffer, a region
694 ;; or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
695 ;; after file generation, ghostview is activated using the file generated
696 ;; as argument. This option is disabled if spooling is on (option 16).
697 ;; Also, if you already have a PostScript file you can preview it.
698 ;; Instead of previewing each buffer, region or major mode at once, you
699 ;; can save temporarily the PostScript code generated in a buffer and
700 ;; preview it later. The option `Despool...' despools the PostScript
701 ;; spooling buffer in a temporary file and uses ghostview to preview it.
702 ;; If you type C-u before choosing this option, the PostScript code
703 ;; generated is saved in a file instead of saving in a temporary file.
704 ;; To spool the PostScript code generated you need to turn on the option
705 ;; 16. The option `Despool...' is enabled if spooling is on (option
708 ;; NOTE 1: It's possible to customize a major mode printing, just declare
709 ;; the customization in `pr-mode-alist' and invoke some of
710 ;; `*-mode*' commands or select Mode option in Printing menu. An
711 ;; example for major mode usage is when you're using gnus (or mh,
712 ;; or rmail, etc.) and you're in the *Summary* buffer, if you
713 ;; forget to switch to the *Article* buffer before printing,
714 ;; you'll get a nicely formatted list of article subjects shows
715 ;; up at the printer. With major mode printing you don't need to
716 ;; switch from gnus *Summary* buffer first.
718 ;; NOTE 2: There are the following options for PostScript file
720 ;; Ia. Print the file *No Preprocessing*, that is, send it
721 ;; directly to PostScript printer.
722 ;; Ib. PostScript utility processing selection.
723 ;; See `pr-ps-utility-alist' and `pr-setting-database' for
725 ;; Ic. Do n-up processing before printing.
726 ;; Id. Toggle on/off landscape for PostScript file processing.
727 ;; Ie. Toggle on/off duplex for PostScript file processing.
728 ;; If. Toggle on/off tumble for PostScript file processing.
730 ;; NOTE 3: Don't forget to download and install the utilities declared on
731 ;; `pr-ps-utility-alist'.
733 ;; 2. Operate the same way as option 1, but it sends directly the PostScript
734 ;; code (or put in a file, if you've typed C-u) or it uses ghostscript to
735 ;; print the PostScript file generated. It depends on option 18, if it's
736 ;; turned on, it uses ghostscript; otherwise, it sends directly to
737 ;; printer. If spooling is on (option 16), the PostScript code is saved
738 ;; temporarily in a buffer instead of printing it or saving it in a file.
739 ;; Also, if you already have a PostScript file you can print it. Instead
740 ;; of printing each buffer, region or major mode at once, you can save
741 ;; temporarily the PostScript code generated in a buffer and print it
742 ;; later. The option `Despool...' despools the PostScript spooling
743 ;; buffer directly on a printer. If you type C-u before choosing this
744 ;; option, the PostScript code generated is saved in a file instead of
745 ;; sending to printer. To spool the PostScript code generated you need
746 ;; to turn on the option 16. This option is enabled if spooling is on
747 ;; (option 16). See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
749 ;; 3. You can select a new PostScript printer to send PostScript code
750 ;; generated. For selection it's used all PostScript printers defined
751 ;; in `pr-ps-printer-alist' variable (see it for documentation).
752 ;; See also `pr-setting-database'.
754 ;; II. Text printing:
756 ;; 4. If you have control characters (character code from \000 to \037) in a
757 ;; buffer and you want to print them in a text printer, select this
758 ;; option. All control characters in your buffer or region will be
759 ;; replaced by a printable representation. The printable representations
760 ;; use ^ (for ASCII control characters) or hex. The characters tab,
761 ;; linefeed, space, return and formfeed are not affected. You don't need
762 ;; to select this option if you use any option of section I, the
763 ;; PostScript engine treats control characters properly.
765 ;; 5. If you want to print a directory, buffer, region or major mode in a
766 ;; text printer, select this option. See also the NOTE 1 on option 1.
768 ;; 6. You can select a new text printer to send text generated. For
769 ;; selection it's used all text printers defined in
770 ;; `pr-txt-printer-alist' variable (see it for documentation).
771 ;; See also `pr-setting-database'.
773 ;; III. PostScript page toggle options:
775 ;; 7. If you want a PostScript landscape printing, turn on this option.
777 ;; 8. If you want to have a header in each page in your PostScript code,
778 ;; turn on this option.
780 ;; 9. If you want to draw a gaudy frame around the header, turn on this
781 ;; option. This option is enabled if print header is on (option 8).
783 ;; 10. If you want that the line number is printed in your PostScript code,
784 ;; turn on this option.
786 ;; 11. If you want background zebra stripes in your PostScript code, turn on
789 ;; 12. If you want a duplex printing and your PostScript printer has this
790 ;; feature, turn on this option.
792 ;; 13. If you turned on duplex printing, you can choose if you want to have
793 ;; a printing suitable for binding on the left or right (tumble off), or
794 ;; to have a printing suitable for binding at top or bottom (tumble on).
795 ;; This option is enabled if duplex is on (option 12).
797 ;; 14. If you want a PostScript upside-down printing, turn on this option.
799 ;; 15. With this option, you can choose if you want to print all pages, odd
800 ;; pages, even pages, odd sheets or even sheets.
801 ;; See also `ps-even-or-odd-pages'.
803 ;; IV. PostScript processing toggle options:
805 ;; 16. If you want to spool the PostScript code generated, turn on this
806 ;; option. To spool the PostScript code generated use option 2. You
807 ;; can despool later by choosing option 1 or 2, sub-option `Despool...'.
809 ;; 17. If you use colors in your buffers and want to see these colors on
810 ;; your PostScript code generated, turn on this option. If you have a
811 ;; black/white PostScript printer, these colors are displayed in gray
812 ;; scale by PostScript printer interpreter.
814 ;; 18. If you don't have a PostScript printer to send PostScript files, turn
815 ;; on this option. When this option is on, the ghostscript is used to
816 ;; print PostScript files. In GNU or Unix system, if ghostscript is set
817 ;; as a PostScript filter, you don't need to turn on this option.
819 ;; V. Printing customization:
821 ;; 19. If you want that region is automagically detected, turn on this
822 ;; option. Note that this will only work if you're using transient mark
823 ;; mode. When this option is on, the `*-buffer*' commands will behave
824 ;; like `*-region*' commands, that is, `*-buffer*' commands will print
825 ;; only the region marked instead of all buffer.
827 ;; 20. Turn this option on if you want that when current major-mode is
828 ;; declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
829 ;; behave like `*-mode*' commands.
831 ;; 21. If you want that Printing menu stays open while you are setting
832 ;; toggle options, turn on this option. The variables
833 ;; `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
834 ;; menu position, so don't forget to adjust these variables if menu
835 ;; position is not ok.
837 ;; VI. Customization:
839 ;; 22. Besides all options in section III, IV and V, you can customize much
840 ;; more PostScript options in `ps-print' option. Or you can customize
841 ;; some `lpr' options for text printing. Or customize `printing'
844 ;; 23. Show current settings for `printing', `ps-print' or `lpr'.
846 ;; 24. Quick help for printing menu layout.
852 ;; Below it's shown only the main options that affect all `printing' package.
853 ;; Check all the settings below *BEFORE* running `printing' commands.
855 ;; * Example of setting for GNU or Unix system:
857 ;; (require 'printing)
858 ;; (setq pr-path-alist
859 ;; '((unix "." "~/bin" ghostview mpage PATH)
860 ;; (ghostview "$HOME/bin/gsview-dir")
861 ;; (mpage "$HOME/bin/mpage-dir")
863 ;; (setq pr-txt-name 'prt_06a)
864 ;; (setq pr-txt-printer-alist
865 ;; '((prt_06a "lpr" nil "prt_06a")
866 ;; (prt_07c nil nil "prt_07c")
868 ;; (setq pr-ps-name 'lps_06b)
869 ;; (setq pr-ps-printer-alist
870 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
871 ;; (lps_07c "lpr" nil nil "lps_07c")
872 ;; (lps_08c nil nil nil "lps_08c")
874 ;; (setq pr-temp-dir "/tmp/")
875 ;; (setq pr-gv-command "gv")
876 ;; (setq pr-gs-command "gs")
877 ;; (setq pr-gs-switches '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
878 ;; (setq pr-gs-device "uniprint")
879 ;; (setq pr-gs-resolution 300)
880 ;; (setq pr-ps-utility 'mpage)
881 ;; (setq pr-ps-utility-alist
882 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
883 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
884 ;; (inherits-from: . no-duplex))
886 ;; (setq pr-setting-database
889 ;; (pr-file-duplex . nil)
890 ;; (pr-file-tumble . nil))
892 ;; (pr-update-menus t) ; update now printer and utility menus
894 ;; * Example of setting for Windows system:
896 ;; (require 'printing)
897 ;; (setq pr-path-alist
898 ;; '((windows "c:/applications/executables" PATH ghostview mpage)
899 ;; (ghostview "c:/gs/gsview-dir")
900 ;; (mpage "c:/mpage-dir")
902 ;; (setq pr-txt-name 'prt_06a)
903 ;; (setq pr-txt-printer-alist
904 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
905 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
906 ;; (PRN "" nil "PRN")
907 ;; (standard "redpr.exe" nil "")
909 ;; (setq pr-ps-name 'lps_06b)
910 ;; (setq pr-ps-printer-alist
911 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
912 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
913 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
914 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
915 ;; (b/w "gsprint" ("-all" "-twoup") "-printer " "b/w-pr-name")
916 ;; (LPT1 "" nil "" "LPT1:")
917 ;; (PRN "" nil "" "PRN")
918 ;; (standard "redpr.exe" nil "" "")
920 ;; (setq pr-temp-dir "C:/WINDOWS/TEMP/")
921 ;; (setq pr-gv-command "c:/gs/gsview/gsview32.exe")
922 ;; (setq pr-gs-command "c:/gs/gswin32.exe")
923 ;; (setq pr-gs-switches '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts"))
924 ;; (setq pr-gs-device "mswinpr2")
925 ;; (setq pr-gs-resolution 300)
926 ;; (setq pr-ps-utility 'psnup)
927 ;; (setq pr-ps-utility-alist
928 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " "
929 ;; nil (inherits-from: . no-duplex))
931 ;; (setq pr-setting-database
934 ;; (pr-file-duplex . nil)
935 ;; (pr-file-tumble . nil))
937 ;; (pr-update-menus t) ; update now printer and utility menus
939 ;; NOTE: Don't forget to download and install the utilities declared on
940 ;; `pr-ps-utility-alist'.
946 ;; `printing' package has the following utilities:
948 ;; `pr-setup' Return the current `printing' setup.
950 ;; `lpr-setup' Return the current `lpr' setup.
952 ;; `pr-update-menus' Update utility, PostScript and text printer menus.
954 ;; `pr-menu-bind' Install `printing' menu in the menubar.
957 ;; Below are some URL where you can find good utilities.
959 ;; * For `printing' package:
961 ;; printing `http://www.cpqd.com.br/~vinicius/emacs/printing.el.gz'
962 ;; ps-print `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'
964 ;; * For GNU or Unix system:
966 ;; gs, gv `http://www.gnu.org/software/ghostscript/ghostscript.html'
967 ;; enscript `http://people.ssh.fi/mtr/genscript/'
968 ;; psnup `http://www.knackered.org/angus/psutils/'
969 ;; mpage `http://www.mesa.nl/pub/mpage/'
971 ;; * For Windows system:
974 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html'
975 ;; gsprint `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'.
976 ;; enscript `http://people.ssh.fi/mtr/genscript/'
977 ;; psnup `http://gnuwin32.sourceforge.net/packages/psutils.htm'
978 ;; redmon `http://www.cs.wisc.edu/~ghost/redmon/'
984 ;; Thanks to Stefan Monnier <monnier@iro.umontreal.ca> for GNU Emacs and XEmacs
985 ;; printing menu (in `pr-menu-spec') merging suggestion.
987 ;; Thanks to Lennart Borgman <lennart.borgman.073@student.lu.se> for gsprint
988 ;; suggestion (see tip 5 in section Tips).
990 ;; Thanks to Drew Adams <drew.adams@oracle.com> for suggestions:
991 ;; - directory processing.
992 ;; - `pr-path-alist' variable.
994 ;; - a lot of tests on Windows.
996 ;; Thanks to Fred Labrosse <f.labrosse@maths.bath.ac.uk> for XEmacs tests.
998 ;; Thanks to Klaus Berndl <klaus.berndl@sdm.de> for invaluable help/debugging
999 ;; and for suggestions:
1000 ;; - even/odd pages printing.
1001 ;; - ghostscript parameters for `pr-ps-printer-alist'.
1002 ;; - default printer name.
1003 ;; - completion functions.
1004 ;; - automagic region detection.
1005 ;; - menu entry hiding.
1006 ;; - fast fire PostScript printing command.
1007 ;; - `pr-path-style' variable.
1009 ;; Thanks to Kim F. Storm <storm@filanet.dk> for beta-test and for suggestions:
1010 ;; - PostScript Print and PostScript Print Preview merge.
1011 ;; - Tools/Printing menu.
1012 ;; - replace *-using-preview by *-using-ghostscript.
1013 ;; - printer selection.
1014 ;; - extra parameters for `pr-ps-printer-alist'.
1017 ;; Frederic Corne <frederic.corne@erli.fr> print-nt.el
1018 ;; Tom Vogels <tov@ece.cmu.edu> mh-e-init.el
1019 ;; Matthew O. Persico <mpersico@erols.com> win32-ps-print.el
1020 ;; Volker Franz <volker.franz@tuebingen.mpg.de> ps-print-interface.el
1021 ;; And to all people who contributed with them.
1024 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1033 (and (string< ps-print-version
"6.6.4")
1034 (error "`printing' requires `ps-print' package version 6.6.4 or later"))
1037 (defconst pr-cygwin-system
1038 (and ps-windows-system
(getenv "OSTYPE")
1039 (string-match "cygwin" (getenv "OSTYPE"))))
1042 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1043 ;; To avoid compilation gripes
1046 (or (fboundp 'easy-menu-intern
) ; hacked from easymenu.el
1047 (defsubst easy-menu-intern
(s)
1048 (if (stringp s
) (intern s
) s
)))
1052 (or (fboundp 'subst-char-in-string
) ; hacked from subr.el
1053 (defun subst-char-in-string (fromchar tochar string
&optional inplace
)
1054 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
1055 Unless optional argument INPLACE is non-nil, return a new string."
1056 (let ((i (length string
))
1057 (newstr (if inplace string
(copy-sequence string
))))
1058 (while (> (setq i
(1- i
)) 0)
1059 (if (eq (aref newstr i
) fromchar
)
1060 (aset newstr i tochar
)))
1064 (or (fboundp 'make-temp-file
) ; hacked from subr.el
1065 (defun make-temp-file (prefix &optional dir-flag suffix
)
1066 "Create a temporary file.
1067 The returned file name (created by appending some random characters at the end
1068 of PREFIX, and expanding against `temporary-file-directory' if necessary),
1069 is guaranteed to point to a newly created empty file.
1070 You can then use `write-region' to write new data into the file.
1072 If DIR-FLAG is non-nil, create a new empty directory instead of a file.
1074 If SUFFIX is non-nil, add that at the end of the file name."
1075 (let ((umask (default-file-modes))
1079 ;; Create temp files with strict access rights. It's easy to
1080 ;; loosen them later, whereas it's impossible to close the
1081 ;; time-window of loose permissions otherwise.
1082 (set-default-file-modes ?
\700)
1083 (while (condition-case ()
1087 (expand-file-name prefix temporary-file-directory
)))
1089 (setq file
(concat file suffix
)))
1091 (make-directory file
)
1092 (write-region "" nil file nil
'silent nil
'excl
))
1094 (file-already-exists t
))
1095 ;; the file was somehow created by someone else between
1096 ;; `make-temp-name' and `write-region', let's try again.
1100 (set-default-file-modes umask
)))))
1104 (defalias 'pr-e-frame-char-height
'frame-char-height
)
1105 (defalias 'pr-e-frame-char-width
'frame-char-width
)
1106 (defalias 'pr-e-mouse-pixel-position
'mouse-pixel-position
)
1108 (defalias 'pr-x-add-submenu
'add-submenu
)
1109 (defalias 'pr-x-event-function
'event-function
)
1110 (defalias 'pr-x-event-object
'event-object
)
1111 (defalias 'pr-x-find-menu-item
'find-menu-item
)
1112 (defalias 'pr-x-font-height
'font-height
)
1113 (defalias 'pr-x-font-width
'font-width
)
1114 (defalias 'pr-x-get-popup-menu-response
'get-popup-menu-response
)
1115 (defalias 'pr-x-make-event
'make-event
)
1116 (defalias 'pr-x-misc-user-event-p
'misc-user-event-p
)
1117 (defalias 'pr-x-relabel-menu-item
'relabel-menu-item
)
1118 (defalias 'pr-x-event-x-pixel
'event-x-pixel
)
1119 (defalias 'pr-x-event-y-pixel
'event-y-pixel
)
1122 ((featurep 'xemacs
) ; XEmacs
1123 (defvar current-menubar nil
)
1124 (defvar current-mouse-event nil
)
1125 (defvar zmacs-region-stays nil
)
1126 (defalias 'pr-f-set-keymap-parents
'set-keymap-parents
)
1127 (defalias 'pr-f-set-keymap-name
'set-keymap-name
)
1128 (defun pr-f-read-string (prompt initial history default
)
1129 (let ((str (read-string prompt initial
)))
1130 (if (and str
(not (string= str
"")))
1133 (defun pr-keep-region-active ()
1134 (setq zmacs-region-stays t
)))
1137 (defvar deactivate-mark nil
)
1138 (defalias 'pr-f-set-keymap-parents
'set-keymap-parent
)
1139 (defalias 'pr-f-set-keymap-name
'ignore
)
1140 (defalias 'pr-f-read-string
'read-string
)
1141 (defun pr-keep-region-active ()
1142 (setq deactivate-mark nil
))))
1145 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1146 ;; Customization Functions
1149 (defun pr-alist-custom-set (symbol value
)
1150 "Set the value of custom variables for printer & utility selection."
1152 (and (featurep 'printing
) ; update only after printing is loaded
1153 (pr-update-menus t
)))
1156 (defun pr-ps-utility-custom-set (symbol value
)
1157 "Update utility menu entry."
1159 (and (featurep 'printing
) ; update only after printing is loaded
1160 (pr-menu-set-utility-title value
)))
1163 (defun pr-ps-name-custom-set (symbol value
)
1164 "Update `PostScript Printer:' menu entry."
1166 (and (featurep 'printing
) ; update only after printing is loaded
1167 (pr-menu-set-ps-title value
)))
1170 (defun pr-txt-name-custom-set (symbol value
)
1171 "Update `Text Printer:' menu entry."
1173 (and (featurep 'printing
) ; update only after printing is loaded
1174 (pr-menu-set-txt-title value
)))
1177 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1178 ;; User Interface (I)
1181 (defgroup printing nil
1182 "Printing Utilities group."
1183 :tag
"Printing Utilities"
1184 :link
'(emacs-library-link :tag
"Source Lisp File" "printing.el")
1191 (defcustom pr-path-style
1192 (if (and (not pr-cygwin-system
)
1196 "*Specify which path style to use for external commands.
1200 windows Windows 9x/NT style (\\)
1202 unix Unix style (/)"
1203 :type
'(choice :tag
"Path style"
1204 (const :tag
"Windows 9x/NT Style (\\)" :value windows
)
1205 (const :tag
"Unix Style (/)" :value unix
))
1210 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1211 ;; Internal Functions (I)
1214 (defun pr-dosify-file-name (path)
1215 "Replace unix-style directory separator character with dos/windows one."
1216 (interactive "sPath: ")
1217 (if (eq pr-path-style
'windows
)
1218 (subst-char-in-string ?
/ ?
\\ path
)
1222 (defun pr-unixify-file-name (path)
1223 "Replace dos/windows-style directory separator character with unix one."
1224 (interactive "sPath: ")
1225 (if (eq pr-path-style
'windows
)
1226 (subst-char-in-string ?
\\ ?
/ path
)
1230 (defun pr-standard-file-name (path)
1231 "Ensure the proper directory separator depending on the OS.
1232 That is, if Emacs is running on DOS/Windows, ensure dos/windows-style directory
1233 separator; otherwise, ensure unix-style directory separator."
1234 (if (or pr-cygwin-system ps-windows-system
)
1235 (subst-char-in-string ?
/ ?
\\ path
)
1236 (subst-char-in-string ?
\\ ?
/ path
)))
1239 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1240 ;; User Interface (II)
1243 (defcustom pr-path-alist
1247 "*Specify an alist for command paths.
1249 It's used to find commands used for printing package, like gv, gs, gsview.exe,
1250 mpage, print.exe, etc. See also `pr-command' function.
1252 Each element has the form:
1254 (ENTRY DIRECTORY...)
1258 ENTRY It's a symbol, used to identify this entry.
1259 There must exist at least one of the following entries:
1261 unix this entry is used when Emacs is running on GNU or
1264 cygwin this entry is used when Emacs is running on Windows
1265 95/98/NT/2000 with Cygwin.
1267 windows this entry is used when Emacs is running on Windows
1270 DIRECTORY It should be a string or a symbol. If it's a symbol, it should
1271 exist an equal entry in `pr-path-alist'. If it's a string,
1272 it's considered a directory specification.
1274 The directory specification may contain:
1275 $var environment variable expansion
1277 ./ current directory
1278 ../ previous directory
1280 For example, let's say the home directory is /home/my and the
1281 current directory is /home/my/dir, so:
1283 THE ENTRY IS EXPANDED TO
1284 ~/entry /home/my/entry
1285 ./entry /home/my/dir/entry
1286 ../entry /home/my/entry
1287 $HOME/entry /home/my/entry
1288 $HOME/~/other/../my/entry /home/my/entry
1290 SPECIAL SYMBOL: If the symbol `PATH' is used in the directory
1291 list and there isn't a `PATH' entry in `pr-path-alist' or the
1292 `PATH' entry has a null directory list, the PATH environment
1297 * On GNU or Unix system:
1299 '((unix \".\" \"~/bin\" ghostview mpage PATH)
1300 (ghostview \"$HOME/bin/gsview-dir\")
1301 (mpage \"$HOME/bin/mpage-dir\")
1304 * On Windows system:
1306 '((windows \"c:/applications/executables\" PATH ghostview mpage)
1307 (ghostview \"c:/gs/gsview-dir\")
1308 (mpage \"c:/mpage-dir\")
1312 (symbol :tag
"Identifier ")
1313 (repeat :tag
"Directory List"
1314 (choice :menu-tag
"Directory"
1317 (symbol :value symbol
)))))
1322 (defcustom pr-txt-name
'default
1323 "*Specify a printer for printing a text file.
1325 The printer name symbol should be defined on `pr-txt-printer-alist' (see it for
1328 This variable should be modified by customization engine. If this variable is
1329 modified by other means (for example, a lisp function), use `pr-update-menus'
1330 function (see it for documentation) to update text printer menu."
1332 :set
'pr-txt-name-custom-set
1337 (defcustom pr-txt-printer-alist
1338 (list (list 'default lpr-command nil
1339 (cond ((boundp 'printer-name
) printer-name
)
1340 (ps-windows-system "PRN")
1344 ;; * On GNU or Unix system:
1345 ;; '((prt_06a "lpr" nil "prt_06a")
1346 ;; (prt_07c nil nil "prt_07c")
1348 ;; * On Windows system:
1349 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
1350 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
1351 ;; (PRN "" nil "PRN")
1352 ;; (standard "redpr.exe" nil "")
1354 "*Specify an alist of all text printers (text printer database).
1356 The alist element has the form:
1358 (SYMBOL COMMAND SWITCHES NAME)
1362 SYMBOL It's a symbol to identify a text printer. It's for
1363 `pr-txt-name' variable setting and for menu selection.
1368 COMMAND Name of the program for printing a text file. On MS-DOS and
1369 MS-Windows systems, if the value is an empty string, then Emacs
1370 will write directly to the printer port given by NAME (see text
1371 below), that is, the NAME should be something like \"PRN\" or
1373 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
1374 COMMAND shouldn't be an empty string.
1375 The programs `print' and `nprint' (the standard print programs
1376 on Windows NT and Novell Netware respectively) are handled
1377 specially, using NAME as the destination for output; any other
1378 program is treated like `lpr' except that an explicit filename
1379 is given as the last argument.
1380 If COMMAND is nil, it's used the default printing program:
1381 `print' for Windows system, `lp' for lp system and `lpr' for
1382 all other systems. See also `pr-path-alist'.
1388 SWITCHES List of sexp's to pass as extra options for text printer
1389 program. It is recommended to set NAME (see text below)
1390 instead of including an explicit switch on this list.
1396 NAME A string that specifies a text printer name.
1397 On Unix-like systems, a string value should be a name
1398 understood by lpr's -P option (or lp's -d option).
1399 On MS-DOS and MS-Windows systems, it is the name of a printer
1400 device or port. Typical non-default settings would be \"LPT1:\"
1401 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
1402 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
1403 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
1404 printer. You can also set it to a name of a file, in which
1405 case the output gets appended to that file. If you want to
1406 discard the printed output, set this to \"NUL\".
1409 \"/D:\\\\\\\\host\\\\share-name\"
1416 This variable should be modified by customization engine. If this variable is
1417 modified by other means (for example, a lisp function), use `pr-update-menus'
1418 function (see it for documentation) to update text printer menu.
1422 * On GNU or Unix system:
1424 '((prt_06a \"lpr\" nil \"prt_06a\")
1425 (prt_07c nil nil \"prt_07c\")
1428 * On Windows system:
1430 '((prt_06a \"print\" nil \"/D:\\\\\\\\printers\\\\prt_06a\")
1431 (prt_07c nil nil \"/D:\\\\\\\\printers\\\\prt_07c\")
1432 (PRN \"\" nil \"PRN\")
1433 (standard \"redpr.exe\" nil \"\")
1438 * Information about the print command (print.exe)
1439 `http://www.computerhope.com/printhlp.htm'
1441 * RedMon - Redirection Port Monitor (redpr.exe)
1442 `http://www.cs.wisc.edu/~ghost/redmon/index.htm'
1444 * Redirection Port Monitor (redpr.exe on-line help)
1445 `http://www.cs.wisc.edu/~ghost/redmon/en/redmon.htm'
1447 * UNIX man pages: lpr (or type `man lpr')
1448 `http://bama.ua.edu/cgi-bin/man-cgi?lpr'
1449 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lpr'
1451 * UNIX man pages: lp (or type `man lp')
1452 `http://bama.ua.edu/cgi-bin/man-cgi?lp'
1453 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lp'
1456 (list :tag
"Text Printer"
1457 (symbol :tag
"Printer Symbol Name")
1458 (string :tag
"Printer Command")
1459 (repeat :tag
"Printer Switches"
1460 (sexp :tag
"Switch" :value
""))
1461 (choice :menu-tag
"Printer Name"
1463 (const :tag
"None" nil
)
1465 :set
'pr-alist-custom-set
1470 (defcustom pr-ps-name
'default
1471 "*Specify a printer for printing a PostScript file.
1473 This printer name symbol should be defined on `pr-ps-printer-alist' (see it for
1476 This variable should be modified by customization engine. If this variable is
1477 modified by other means (for example, a lisp function), use `pr-update-menus'
1478 function (see it for documentation) to update PostScript printer menu."
1480 :set
'pr-ps-name-custom-set
1485 (defcustom pr-ps-printer-alist
1486 (list (list 'default lpr-command nil
1487 (cond (ps-windows-system nil
)
1490 (or (getenv "PRINTER") (getenv "LPDEST") ps-printer-name
)))
1492 ;; * On GNU or Unix system:
1493 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
1494 ;; (lps_07c "lpr" nil nil "lps_07c")
1495 ;; (lps_08c nil nil nil "lps_08c")
1497 ;; * On Windows system:
1498 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
1499 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
1500 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
1501 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
1502 ;; (b/w "gsprint" ("-all" "-twoup") "-printer " "b/w-pr-name")
1503 ;; (LPT1 "" nil "" "LPT1:")
1504 ;; (PRN "" nil "" "PRN")
1505 ;; (standard "redpr.exe" nil "" "")
1507 "*Specify an alist for all PostScript printers (PostScript printer database).
1509 The alist element has the form:
1511 (SYMBOL COMMAND SWITCHES PRINTER-SWITCH NAME DEFAULT...)
1515 SYMBOL It's a symbol to identify a PostScript printer. It's for
1516 `pr-ps-name' variable setting and for menu selection.
1521 COMMAND Name of the program for printing a PostScript file. On MS-DOS
1522 and MS-Windows systems, if the value is an empty string then
1523 Emacs will write directly to the printer port given by NAME
1524 (see text below), that is, the NAME should be something like
1525 \"PRN\" or \"LPT1:\".
1526 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
1527 COMMAND shouldn't be an empty string.
1528 The programs `print' and `nprint' (the standard print programs
1529 on Windows NT and Novell Netware respectively) are handled
1530 specially, using NAME as the destination for output; any other
1531 program is treated like `lpr' except that an explicit filename
1532 is given as the last argument.
1533 If COMMAND is nil, it's used the default printing program:
1534 `print' for Windows system, `lp' for lp system and `lpr' for
1535 all other systems. See also `pr-path-alist'.
1543 SWITCHES List of sexp's to pass as extra options for PostScript printer
1544 program. It is recommended to set NAME (see text below)
1545 instead of including an explicit switch on this list.
1552 '(\"-all\" \"-twoup\")
1554 PRINTER-SWITCH A string that specifies PostScript printer name switch. If
1555 it's necessary to have a space between PRINTER-SWITCH and NAME,
1556 it should be inserted at the end of PRINTER-SWITCH string.
1557 If PRINTER-SWITCH is nil, it's used the default printer name
1558 switch: `/D:' for Windows system, `-d' for lp system and `-P'
1559 for all other systems.
1573 NAME A string that specifies a PostScript printer name.
1574 On Unix-like systems, a string value should be a name
1575 understood by lpr's -P option (or lp's -d option).
1576 On MS-DOS and MS-Windows systems, it is the name of a printer
1577 device or port. Typical non-default settings would be \"LPT1:\"
1578 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
1579 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
1580 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
1581 printer. You can also set it to a name of a file, in which
1582 case the output gets appended to that file. If you want to
1583 discard the printed output, set this to \"NUL\".
1586 \"\\\\\\\\host\\\\share-name\"
1588 . for print.exe or gsprint.exe
1589 \"/D:\\\\\\\\host\\\\share-name\"
1590 \"\\\\\\\\host\\\\share-name\"
1597 DEFAULT It's a way to set default values when this entry is selected.
1602 That associates VARIABLE with VALUE. when this entry is
1603 selected, it's executed the following command:
1605 (set VARIABLE (eval VALUE))
1607 Note that VALUE can be any valid lisp expression. So, don't
1608 forget to quote symbols and constant lists.
1609 If VARIABLE is the special keyword `inherits-from:', VALUE must
1610 be a symbol name setting defined in `pr-setting-database' from
1611 which the current setting inherits the context. Take care with
1612 circular inheritance.
1614 '(ps-landscape-mode . nil)
1615 '(ps-spool-duplex . t)
1616 '(pr-gs-device . (my-gs-device t))
1618 This variable should be modified by customization engine. If this variable is
1619 modified by other means (for example, a lisp function), use `pr-update-menus'
1620 function (see it for documentation) to update PostScript printer menu.
1624 * On GNU or Unix system:
1626 '((lps_06b \"lpr\" nil \"-P\" \"lps_06b\")
1627 (lps_07c \"lpr\" nil nil \"lps_07c\")
1628 (lps_08c nil nil nil \"lps_08c\")
1631 * On Windows system:
1633 '((lps_06a \"print\" nil \"/D:\" \"\\\\\\\\printers\\\\lps_06a\")
1634 (lps_06b \"print\" nil nil \"\\\\\\\\printers\\\\lps_06b\")
1635 (lps_07c \"print\" nil \"\" \"/D:\\\\\\\\printers\\\\lps_07c\")
1636 (lps_08c nil nil nil \"\\\\\\\\printers\\\\lps_08c\")
1637 (b/w1 \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"b/w-pr-name\")
1638 (b/w2 \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer \\\\\\\\printers\\\\lps_06a\")
1639 (LPT1 \"\" nil \"\" \"LPT1:\")
1640 (PRN \"\" nil \"\" \"PRN\")
1641 (standard \"redpr.exe\" nil \"\" \"\")
1647 You can use gsprint instead of ghostscript to print monochrome PostScript files
1648 in Windows. The gsprint utility documentation says that it is more efficient
1649 than ghostscript to print monochrome PostScript.
1651 To print non-monochrome PostScript file, the efficiency of ghostscript is
1654 Also the gsprint utility comes together with gsview distribution.
1656 As an example of gsprint declaration:
1658 (setq pr-ps-printer-alist
1659 '((A \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"lps_015\")
1660 (B \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer lps_015\")
1661 ;; some other printer declaration
1664 The example above declares that printer A prints all pages (-all) and two pages
1665 per sheet (-twoup). The printer B declaration does the same as the printer A
1666 declaration, the only difference is the printer name selection.
1668 There are other command line options like:
1670 -mono Render in monochrome as 1bit/pixel (only black and white).
1671 -grey Render in greyscale as 8bits/pixel.
1672 -color Render in color as 24bits/pixel.
1674 The default is `-mono'. So, printer A and B in the example above are using
1675 implicitly the `-mono' option. Note that in `-mono' no gray tone or color is
1676 printed, this includes the zebra stripes, that is, in `-mono' the zebra stripes
1682 * GSPRINT - Ghostscript print to Windows printer
1683 `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'
1685 * Introduction to Ghostscript
1686 `http://www.cs.wisc.edu/~ghost/doc/intro.htm'
1688 * How to use Ghostscript
1689 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
1691 * Information about the print command (print.exe)
1692 `http://www.computerhope.com/printhlp.htm'
1694 * RedMon - Redirection Port Monitor (redpr.exe)
1695 `http://www.cs.wisc.edu/~ghost/redmon/index.htm'
1697 * Redirection Port Monitor (redpr.exe on-line help)
1698 `http://www.cs.wisc.edu/~ghost/redmon/en/redmon.htm'
1700 * UNIX man pages: lpr (or type `man lpr')
1701 `http://bama.ua.edu/cgi-bin/man-cgi?lpr'
1702 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lpr'
1704 * UNIX man pages: lp (or type `man lp')
1705 `http://bama.ua.edu/cgi-bin/man-cgi?lp'
1706 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lp'
1708 * GNU utilities for Win32 (cp.exe)
1709 `http://unxutils.sourceforge.net/'
1713 :tag
"PostScript Printer"
1714 (symbol :tag
"Printer Symbol Name")
1715 (string :tag
"Printer Command")
1716 (repeat :tag
"Printer Switches"
1717 (sexp :tag
"Switch" :value
""))
1718 (choice :menu-tag
"Printer Name Switch"
1719 :tag
"Printer Name Switch"
1720 (const :tag
"None" nil
)
1722 (choice :menu-tag
"Printer Name"
1724 (const :tag
"None" nil
)
1727 :tag
"Default Value List"
1732 :menu-tag
"Variable"
1734 (const :tag
"Landscape" ps-landscape-mode
)
1735 (const :tag
"Print Header" ps-print-header
)
1736 (const :tag
"Print Header Frame" ps-print-header-frame
)
1737 (const :tag
"Line Number" ps-line-number
)
1738 (const :tag
"Zebra Stripes" ps-zebra-stripes
)
1739 (const :tag
"Duplex" ps-spool-duplex
)
1740 (const :tag
"Tumble" ps-spool-tumble
)
1741 (const :tag
"Upside-Down" ps-print-upside-down
)
1742 (const :tag
"PS File Landscape" pr-file-landscape
)
1743 (const :tag
"PS File Duplex" pr-file-duplex
)
1744 (const :tag
"PS File Tumble" pr-file-tumble
)
1745 (const :tag
"Auto Region" pr-auto-region
)
1746 (const :tag
"Auto Mode" pr-auto-mode
)
1747 (const :tag
"Ghostscript Device" pr-gs-device
)
1748 (const :tag
"Ghostscript Resolution" pr-gs-resolution
)
1749 (const :tag
"inherits-from:" inherits-from
:)
1750 (variable :tag
"Other"))
1751 (sexp :tag
"Value")))
1753 :set
'pr-alist-custom-set
1758 (defcustom pr-temp-dir
1759 (pr-dosify-file-name
1760 (if (boundp 'temporary-file-directory
)
1761 (symbol-value 'temporary-file-directory
)
1762 ;; hacked from `temporary-file-directory' variable in files.el
1763 (file-name-as-directory
1764 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP")
1765 (cond (ps-windows-system "c:/temp")
1766 ((memq system-type
'(vax-vms axp-vms
)) "SYS$SCRATCH:")
1769 "*Specify a directory for temporary files during printing.
1771 See also `pr-ps-temp-file' and `pr-file-modes'."
1772 :type
'(directory :tag
"Temporary Directory")
1777 (defcustom pr-ps-temp-file
"prspool-"
1778 "*Specify PostScript temporary file name prefix.
1780 See also `pr-temp-dir' and `pr-file-modes'."
1781 :type
'(file :tag
"PostScript Temporary File Name")
1786 ;; It uses 0600 as default instead of (default-file-modes).
1787 ;; So, by default, only the session owner have permission to deal with files
1788 ;; generated by `printing'.
1789 (defcustom pr-file-modes ?
\600
1790 "*Specify the file permission bits for newly created files.
1792 It should be an integer; only the low 9 bits are used.
1794 See also `pr-temp-dir' and `pr-ps-temp-file'."
1795 :type
'(integer :tag
"File Permission Bits")
1800 (defcustom pr-gv-command
1801 (if ps-windows-system
1804 "*Specify path and name of the gsview/gv utility.
1806 See also `pr-path-alist'.
1811 `http://www.gnu.org/software/gv/manual/gv.html'
1814 `http://www.cs.wisc.edu/~ghost/gsview/gsviewen.htm'
1816 * GSview Help - Common Problems
1817 `http://www.cs.wisc.edu/~ghost/gsview/gsviewen.htm#Common_Problems'
1819 * GSview Readme (compilation & installation)
1820 `http://www.cs.wisc.edu/~ghost/gsview/Readme.htm'
1822 * GSview (main site)
1823 `http://www.cs.wisc.edu/~ghost/gsview/index.htm'
1825 * Ghostscript, Ghostview and GSview
1826 `http://www.cs.wisc.edu/~ghost/'
1829 `http://www.cs.wisc.edu/~ghost/gv/index.htm'
1832 `http://www.cs.wisc.edu/~ghost/gv/gv_doc/gv.html'
1835 `http://www.cs.wisc.edu/~ghost/macos/index.htm'
1837 :type
'(string :tag
"Ghostview Utility")
1842 (defcustom pr-gs-command
1843 (if ps-windows-system
1846 "*Specify path and name of the ghostscript utility.
1848 See also `pr-path-alist'.
1852 * Ghostscript, Ghostview and GSview
1853 `http://www.cs.wisc.edu/~ghost/'
1855 * Introduction to Ghostscript
1856 `http://www.cs.wisc.edu/~ghost/doc/intro.htm'
1858 * How to use Ghostscript
1859 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
1861 * Printer compatibility
1862 `http://www.cs.wisc.edu/~ghost/doc/printer.htm'
1864 :type
'(string :tag
"Ghostscript Utility")
1869 (defcustom pr-gs-switches
1870 (if ps-windows-system
1871 '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts")
1872 '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
1873 "*Specify ghostscript switches. See the documentation on GS for more info.
1875 It's a list of strings, where each string is one or more ghostscript switches.
1877 A note on the gs switches:
1880 -dNOPAUSE don't wait for user intervention
1881 -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts the directories needed for gs
1882 -c quit it's added at the end to terminate gs
1884 To see ghostscript documentation for more information:
1886 * On GNU or Unix system:
1887 - for full documentation, type: man gs
1888 - for brief documentation, type: gs -h
1890 * On Windows system:
1891 - for full documentation, see in a browser the file
1892 c:/gstools/gs5.50/index.html, that is, the file index.html which is
1893 located in the same directory as gswin32.exe.
1894 - for brief documentation, type: gswin32.exe -h
1898 * Introduction to Ghostscript
1899 `http://www.cs.wisc.edu/~ghost/doc/intro.htm'
1901 * How to use Ghostscript
1902 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm'
1904 * Printer compatibility
1905 `http://www.cs.wisc.edu/~ghost/doc/printer.htm'
1907 :type
'(repeat (string :tag
"Ghostscript Switch"))
1912 (defcustom pr-gs-device
1913 (if ps-windows-system
1916 "*Specify the ghostscript device switch value (-sDEVICE=).
1918 A note on the gs switches:
1920 -sDEVICE=djet500 the printer - works with HP DeskJet 540
1922 See `pr-gs-switches' for documentation.
1923 See also `pr-ps-printer-alist'."
1924 :type
'(string :tag
"Ghostscript Device")
1929 (defcustom pr-gs-resolution
300
1930 "*Specify ghostscript resolution switch value (-r).
1932 A note on the gs switches:
1934 -r300 resolution 300x300
1936 See `pr-gs-switches' for documentation.
1937 See also `pr-ps-printer-alist'."
1938 :type
'(integer :tag
"Ghostscript Resolution")
1943 (defcustom pr-print-using-ghostscript nil
1944 "*Non-nil means print using ghostscript.
1946 This is useful if you don't have a PostScript printer, so you could use the
1947 ghostscript to print a PostScript file.
1949 In GNU or Unix system, if ghostscript is set as a PostScript filter, this
1950 variable should be nil."
1956 (defcustom pr-faces-p nil
1957 "*Non-nil means print with face attributes."
1963 (defcustom pr-spool-p nil
1964 "*Non-nil means spool printing in a buffer."
1970 (defcustom pr-file-landscape nil
1971 "*Non-nil means print PostScript file in landscape orientation."
1977 (defcustom pr-file-duplex nil
1978 "*Non-nil means print PostScript file in duplex mode."
1984 (defcustom pr-file-tumble nil
1985 "*Non-nil means print PostScript file in tumble mode.
1987 If tumble is off, produces a printing suitable for binding on the left or
1989 If tumble is on, produces a printing suitable for binding at the top or
1996 (defcustom pr-auto-region t
1997 "*Non-nil means region is automagically detected.
1999 Note that this will only work if you're using transient mark mode.
2001 When this variable is non-nil, the `*-buffer*' commands will behave like
2002 `*-region*' commands, that is, `*-buffer*' commands will print only the region
2003 marked instead of all buffer."
2009 (defcustom pr-auto-mode t
2010 "*Non-nil means major-mode specific printing is prefered over normal printing.
2012 That is, if current major-mode is declared in `pr-mode-alist', the `*-buffer*'
2013 and `*-region*' commands will behave like `*-mode*' commands; otherwise,
2014 `*-buffer*' commands will print the current buffer and `*-region*' commands
2015 will print the current region."
2021 (defcustom pr-mode-alist
2022 '((mh-folder-mode ; mh summary buffer
2023 pr-mh-lpr-1 pr-mh-print-1
2025 (ps-article-author ps-article-subject
)
2026 ("/pagenumberstring load" pr-article-date
)
2029 (mh-letter-mode ; mh letter buffer
2030 pr-mh-lpr-2 pr-mh-print-2
2032 (ps-article-author ps-article-subject
)
2033 ("/pagenumberstring load" pr-article-date
)
2036 (rmail-summary-mode ; rmail summary buffer
2037 pr-rmail-lpr pr-rmail-print
2039 (ps-article-subject ps-article-author buffer-name
)
2043 (rmail-mode ; rmail buffer
2044 pr-rmail-lpr pr-rmail-print
2046 (ps-article-subject ps-article-author buffer-name
)
2050 (gnus-summary-mode ; gnus summary buffer
2051 pr-gnus-lpr pr-gnus-print
2053 (ps-article-subject ps-article-author gnus-newsgroup-name
)
2057 (gnus-article-mode ; gnus article buffer
2058 pr-gnus-lpr pr-gnus-print
2060 (ps-article-subject ps-article-author gnus-newsgroup-name
)
2064 (Info-mode ; Info buffer
2065 pr-mode-lpr pr-mode-print
2067 (ps-info-node ps-info-file
)
2072 pr-vm-lpr pr-vm-print
2074 (ps-article-subject ps-article-author buffer-name
)
2079 "*Specify an alist for a major-mode and printing functions.
2081 To customize a major mode printing, just declare the customization in
2082 `pr-mode-alist' and invoke some of `*-mode*' commands. An example for major
2083 mode usage is when you're using gnus (or mh, or rmail, etc.) and you're in the
2084 *Summary* buffer, if you forget to switch to the *Article* buffer before
2085 printing, you'll get a nicely formatted list of article subjects shows up at
2086 the printer. With major mode printing you don't need to switch from gnus
2087 *Summary* buffer first.
2089 The elements have the following form:
2101 MAJOR-MODE It's the major mode symbol.
2103 LPR-PRINT It's a symbol function for text printing. It's invoked with
2105 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
2107 Usually LPR-PRINT function prepares the environment or buffer
2108 and then call the function `pr-mode-lpr' which it's used to
2109 process the buffer and send it to text printer.
2111 The `pr-mode-lpr' definition is:
2113 (pr-mode-lpr HEADER-LIST &optional FROM TO)
2115 Where HEADER-LIST is like the argument passed to LPR-PRINT.
2116 FROM and TO are the beginning and end markers, respectively,
2117 for a region. If FROM is nil, it's used (point-min); if TO is
2118 nil, it's used (point-max).
2120 PS-PRINT It's a symbol function for PostScript printing. It's invoked
2121 with 3 arguments: n-up printing, file name and the list:
2122 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
2124 Usually PS-PRINT function prepares the environment or buffer
2125 and then call the function `pr-mode-print' which it's used to
2126 process the buffer and send it to PostScript printer.
2128 The `pr-mode-print' definition is:
2130 (pr-mode-print N-UP FILENAME HEADER-LIST &optional FROM TO)
2132 Where N-UP, FILENAME and HEADER-LIST are like the arguments
2133 passed to PS-PRINT. FROM and TO are the beginning and end
2134 markers, respectively, for a region. If TO is nil, it's used
2137 HEADER-LINES It's the number of header lines; if is nil, it uses
2138 `ps-header-lines' value.
2140 LEFT-HEADER It's the left header part, it's a list of string, variable
2141 symbol or function symbol (with no argument); if is nil, it
2142 uses `ps-left-header' value.
2144 RIGHT-HEADER It's the right header part, it's a list of string, variable
2145 symbol or function symbol (with no argument); if is nil, it
2146 uses `ps-right-header' value.
2149 Non-nil means to kill all buffer local variable declared in
2150 DEFAULT (see below).
2152 DEFAULT It's a way to set default values when this entry is selected.
2155 (VARIABLE-SYM . VALUE)
2157 That associates VARIABLE-SYM with VALUE. when this entry is
2158 selected, it's executed the following command:
2160 (set (make-local-variable VARIABLE-SYM) (eval VALUE))
2162 Note that VALUE can be any valid lisp expression. So, don't
2163 forget to quote symbols and constant lists.
2164 If VARIABLE is the special keyword `inherits-from:', VALUE must
2165 be a symbol name setting defined in `pr-setting-database' from
2166 which the current setting inherits the context. Take care with
2167 circular inheritance.
2169 '(ps-landscape-mode . nil)
2170 '(ps-spool-duplex . t)
2171 '(pr-gs-device . (my-gs-device t))"
2175 (symbol :tag
"Major Mode")
2176 (function :tag
"Text Printing Function")
2177 (function :tag
"PS Printing Function")
2178 (choice :menu-tag
"Number of Header Lines"
2179 :tag
"Number of Header Lines"
2180 (integer :tag
"Number")
2181 (const :tag
"Default Number" nil
))
2182 (repeat :tag
"Left Header List"
2183 (choice :menu-tag
"Left Header"
2186 (repeat :tag
"Right Header List"
2187 (choice :menu-tag
"Right Header"
2190 (boolean :tag
"Kill Local Variable At End")
2192 :tag
"Default Value List"
2197 :menu-tag
"Variable"
2199 (const :tag
"Landscape" ps-landscape-mode
)
2200 (const :tag
"Print Header" ps-print-header
)
2201 (const :tag
"Print Header Frame" ps-print-header-frame
)
2202 (const :tag
"Line Number" ps-line-number
)
2203 (const :tag
"Zebra Stripes" ps-zebra-stripes
)
2204 (const :tag
"Duplex" ps-spool-duplex
)
2205 (const :tag
"Tumble" ps-spool-tumble
)
2206 (const :tag
"Upside-Down" ps-print-upside-down
)
2207 (const :tag
"PS File Landscape" pr-file-landscape
)
2208 (const :tag
"PS File Duplex" pr-file-duplex
)
2209 (const :tag
"PS File Tumble" pr-file-tumble
)
2210 (const :tag
"Auto Region" pr-auto-region
)
2211 (const :tag
"Auto Mode" pr-auto-mode
)
2212 (const :tag
"Ghostscript Device" pr-gs-device
)
2213 (const :tag
"Ghostscript Resolution" pr-gs-resolution
)
2214 (const :tag
"inherits-from:" inherits-from
:)
2215 (variable :tag
"Other"))
2216 (sexp :tag
"Value")))
2222 (defcustom pr-ps-utility
'mpage
2223 "*Specify PostScript utility symbol.
2225 This utility symbol should be defined on `pr-ps-utility-alist' (see it for
2228 This variable should be modified by customization engine. If this variable is
2229 modified by other means (for example, a lisp function), use `pr-update-menus'
2230 function (see it for documentation) to update PostScript utility menu.
2232 NOTE: Don't forget to download and install the utilities declared on
2233 `pr-ps-utility-alist'."
2234 :type
'(symbol :tag
"PS File Utility")
2235 :set
'pr-ps-utility-custom-set
2240 (defcustom pr-ps-utility-alist
2241 '((mpage "mpage" nil
"-b%s" "-%d" "-l" "-t" "-T" ">" nil
)
2242 (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil
" " nil
2243 (inherits-from: . no-duplex
))
2246 ;; * On GNU or Unix system:
2247 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
2248 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
2249 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
2251 ;; * On Windows system:
2252 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
2253 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
2255 "*Specify an alist for PostScript utility processing (PS utility database).
2257 The alist element has the form:
2259 (SYMBOL UTILITY MUST-SWITCHES PAPERSIZE N-UP LANDSCAPE DUPLEX TUMBLE OUTPUT
2260 SWITCHES DEFAULT...)
2264 SYMBOL It's a symbol to identify a PostScript utility. It's for
2265 `pr-ps-utility' variable setting and for menu selection.
2270 UTILITY Name of utility for processing a PostScript file.
2271 See also `pr-path-alist'.
2273 . for GNU or Unix system:
2277 . for Windows system:
2278 \"c:/psutils/psnup -q\"
2280 MUST-SWITCHES List of sexp's to pass as options to the PostScript utility
2281 program. These options are necessary to process the utility
2282 program and must be placed before any other switches.
2287 PAPERSIZE It's a format string to specify paper size switch.
2292 N-UP It's a format string to specify n-up switch.
2297 LANDSCAPE It's a string to specify landscape switch. If the utility
2298 doesn't have landscape switch, set to nil.
2303 DUPLEX It's a string to specify duplex switch. If the utility doesn't
2304 have duplex switch, set to nil.
2309 TUMBLE It's a string to specify tumble switch. If the utility doesn't
2310 have tumble switch, set to nil.
2315 OUTPUT It's a string to specify how to generate an output file. Some
2316 utilities accept an output file option, but some others need
2317 output redirection or some other way to specify an output file.
2320 \" \" ; psnup ... input output
2323 \">\" ; mpage ... input > output
2325 SWITCHES List of sexp's to pass as extra options to the PostScript utility
2332 DEFAULT It's a way to set default values when this entry is selected.
2337 That associates VARIABLE with VALUE. when this entry is
2338 selected, it's executed the following command:
2340 (set VARIABLE (eval VALUE))
2342 Note that VALUE can be any valid lisp expression. So, don't
2343 forget to quote symbols and constant lists.
2344 If VARIABLE is the special keyword `inherits-from:', VALUE must
2345 be a symbol name setting defined in `pr-setting-database' from
2346 which the current setting inherits the context. Take care with
2347 circular inheritance.
2349 '(pr-file-landscape . nil)
2350 '(pr-file-duplex . t)
2351 '(pr-gs-device . (my-gs-device t))
2353 This variable should be modified by customization engine. If this variable is
2354 modified by other means (for example, a lisp function), use `pr-update-menus'
2355 function (see it for documentation) to update PostScript utility menu.
2357 NOTE: Don't forget to download and install the utilities declared on
2358 `pr-ps-utility-alist'.
2362 * On GNU or Unix system:
2364 '((mpage \"mpage\" nil \"-b%s\" \"-%d\" \"-l\" \"-t\" \"-T\" \">\" nil)
2365 (psnup \"psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" nil
2366 (pr-file-duplex . nil) (pr-file-tumble . nil))
2369 * On Windows system:
2371 '((psnup \"c:/psutils/psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \"
2372 nil (pr-file-duplex . nil) (pr-file-tumble . nil))
2377 * mpage download (GNU or Unix)
2378 `http://www.mesa.nl/pub/mpage/'
2380 * mpage documentation (GNU or Unix - or type `man mpage')
2381 `http://www.cs.umd.edu/faq/guides/manual_unix/node48.html'
2382 `http://www.rt.com/man/mpage.1.html'
2384 * psnup (Windows, GNU or Unix)
2385 `http://www.knackered.org/angus/psutils/'
2386 `http://gershwin.ens.fr/vdaniel/Doc-Locale/Outils-Gnu-Linux/PsUtils/'
2388 * psnup (PsUtils for Windows)
2389 `http://gnuwin32.sourceforge.net/packages/psutils.htm'
2391 * psnup documentation (GNU or Unix - or type `man psnup')
2392 `http://linux.about.com/library/cmd/blcmdl1_psnup.htm'
2393 `http://amath.colorado.edu/computing/software/man/psnup.html'
2395 * GNU Enscript (Windows, GNU or Unix)
2396 `http://people.ssh.com/mtr/genscript/'
2398 * GNU Enscript documentation (Windows, GNU or Unix)
2399 `http://people.ssh.com/mtr/genscript/enscript.man.html'
2400 (on GNU or Unix, type `man enscript')
2403 (list :tag
"PS File Utility"
2404 (symbol :tag
"Utility Symbol")
2405 (string :tag
"Utility Name")
2406 (repeat :tag
"Must Utility Switches"
2407 (sexp :tag
"Switch" :value
""))
2408 (choice :menu-tag
"Paper Size"
2410 (const :tag
"No Paper Size" nil
)
2411 (string :tag
"Paper Size Format"))
2412 (choice :menu-tag
"N-Up"
2414 (const :tag
"No N-Up" nil
)
2415 (string :tag
"N-Up Format"))
2416 (choice :menu-tag
"Landscape"
2418 (const :tag
"No Landscape" nil
)
2419 (string :tag
"Landscape Switch"))
2420 (choice :menu-tag
"Duplex"
2422 (const :tag
"No Duplex" nil
)
2423 (string :tag
"Duplex Switch"))
2424 (choice :menu-tag
"Tumble"
2426 (const :tag
"No Tumble" nil
)
2427 (string :tag
"Tumble Switch"))
2428 (string :tag
"Output Separator")
2429 (repeat :tag
"Utility Switches"
2430 (sexp :tag
"Switch" :value
""))
2432 :tag
"Default Value List"
2437 :menu-tag
"Variable"
2439 (const :tag
"PS File Landscape" pr-file-landscape
)
2440 (const :tag
"PS File Duplex" pr-file-duplex
)
2441 (const :tag
"PS File Tumble" pr-file-tumble
)
2442 (const :tag
"Ghostscript Device" pr-gs-device
)
2443 (const :tag
"Ghostscript Resolution" pr-gs-resolution
)
2444 (const :tag
"inherits-from:" inherits-from
:)
2445 (variable :tag
"Other"))
2446 (sexp :tag
"Value")))
2448 :set
'pr-alist-custom-set
2453 (defcustom pr-menu-lock t
2454 "*Non-nil means menu is locked while selecting toggle options.
2456 See also `pr-menu-char-height' and `pr-menu-char-width'."
2462 (defcustom pr-menu-char-height
2463 (cond ((featurep 'xemacs
) ; XEmacs
2464 (pr-x-font-height (face-font 'default
)))
2466 (pr-e-frame-char-height)))
2467 "*Specify menu char height in pixels.
2469 This variable is used to guess which vertical position should be locked the
2470 menu, so don't forget to adjust it if menu position is not ok.
2472 See also `pr-menu-lock' and `pr-menu-char-width'."
2478 (defcustom pr-menu-char-width
2479 (cond ((featurep 'xemacs
) ; XEmacs
2480 (pr-x-font-width (face-font 'default
)))
2482 (pr-e-frame-char-width)))
2483 "*Specify menu char width in pixels.
2485 This variable is used to guess which horizontal position should be locked the
2486 menu, so don't forget to adjust it if menu position is not ok.
2488 See also `pr-menu-lock' and `pr-menu-char-height'."
2494 (defcustom pr-setting-database
2495 '((no-duplex ; setting symbol name
2496 nil nil nil
; inherits local kill-local
2497 (pr-file-duplex . nil
) ; settings
2498 (pr-file-tumble . nil
))
2500 "*Specify an alist for settings in general.
2502 The elements have the following form:
2504 (SYMBOL INHERITS LOCAL KILL-LOCAL SETTING...)
2508 SYMBOL It's a symbol to identify the setting group.
2510 INHERITS Specify the inheritance for SYMBOL group. It's a symbol name
2511 setting from which the current setting inherits the context.
2512 If INHERITS is nil, means that there is no inheritance.
2513 This is a simple inheritance mechanism.
2515 Let's see an example to illustrate the inheritance mechanism:
2517 (setq pr-setting-database
2518 '((no-duplex ; setting symbol name
2520 nil nil ; local kill-local
2521 (pr-file-duplex . nil) ; settings
2522 (pr-file-tumble . nil)
2524 (no-duplex-and-landscape ; setting symbol name
2525 no-duplex ; inherits
2526 nil nil ; local kill-local
2527 (pr-file-landscape . nil) ; settings
2530 The example above has two setting groups: no-duplex and
2531 no-duplex-and-landscape. When setting no-duplex is activated
2532 through `inherits-from:' (see `pr-ps-utility', `pr-mode-alist'
2533 and `pr-ps-printer-alist'), the variables pr-file-duplex and
2534 pr-file-tumble are both set to nil.
2536 Now when setting no-duplex-and-landscape is activated through
2537 `inherits-from:', the variable pr-file-landscape is set to nil
2538 and also the settings for no-duplex are done, because
2539 no-duplex-and-landscape inherits settings from no-duplex.
2541 Take care with circular inheritance. It's an error if circular
2542 inheritance happens.
2544 LOCAL Non-nil means that all settings for SYMBOL group will be
2545 declared local buffer.
2547 KILL-LOCAL Non-nil means that all settings for SYMBOL group will be
2548 killed at end. It has effect only when LOCAL is non-nil.
2550 SETTING It's a cons like:
2554 That associates VARIABLE with VALUE. when this entry is
2555 selected, it's executed the following command:
2557 * If LOCAL is non-nil:
2558 (set (make-local-variable VARIABLE) (eval VALUE))
2561 (set VARIABLE (eval VALUE))
2563 Note that VALUE can be any valid lisp expression. So, don't
2564 forget to quote symbols and constant lists.
2565 This setting is ignored if VARIABLE is equal to keyword
2568 '(ps-landscape-mode . nil)
2569 '(ps-spool-duplex . t)
2570 '(pr-gs-device . (my-gs-device t))"
2574 (symbol :tag
"Setting Name")
2575 (choice :menu-tag
"Inheritance"
2577 (const :tag
"No Inheritance" nil
)
2578 (symbol :tag
"Inherits From"))
2579 (boolean :tag
"Local Buffer Setting")
2580 (boolean :tag
"Kill Local Variable At End")
2587 :menu-tag
"Variable"
2589 (const :tag
"Landscape" ps-landscape-mode
)
2590 (const :tag
"Print Header" ps-print-header
)
2591 (const :tag
"Print Header Frame" ps-print-header-frame
)
2592 (const :tag
"Line Number" ps-line-number
)
2593 (const :tag
"Zebra Stripes" ps-zebra-stripes
)
2594 (const :tag
"Duplex" ps-spool-duplex
)
2595 (const :tag
"Tumble" ps-spool-tumble
)
2596 (const :tag
"Upside-Down" ps-print-upside-down
)
2597 (const :tag
"PS File Landscape" pr-file-landscape
)
2598 (const :tag
"PS File Duplex" pr-file-duplex
)
2599 (const :tag
"PS File Tumble" pr-file-tumble
)
2600 (const :tag
"Auto Region" pr-auto-region
)
2601 (const :tag
"Auto Mode" pr-auto-mode
)
2602 (const :tag
"Ghostscript Device" pr-gs-device
)
2603 (const :tag
"Ghostscript Resolution" pr-gs-resolution
)
2604 (variable :tag
"Other"))
2605 (sexp :tag
"Value")))
2611 (defcustom pr-visible-entry-list
2612 '(postscript text postscript-options postscript-process printing help
)
2613 "*Specify a list of Printing menu visible entries.
2615 Valid values with the corresponding menu parts are:
2617 +------------------------------+
2618 | Printing Interface |
2619 +------------------------------+
2620 `postscript' | PostScript Preview >|
2621 | PostScript Print >|
2622 | PostScript Printer: name >|
2623 +------------------------------+
2624 `text' | Printify >|
2626 | Text Printer: name >|
2627 +------------------------------+
2628 `postscript-options' |[ ] Landscape |
2630 |[ ] Print Header Frame |
2632 |[ ] Zebra Stripes |
2636 | Print All Pages >|
2637 +------------------------------+
2638 `postscript-process' |[ ] Spool Buffer |
2639 |[ ] Print with faces |
2640 |[ ] Print via Ghostscript |
2641 +------------------------------+
2642 `printing' |[ ] Auto Region |
2645 +------------------------------+
2646 `help' | Customize >|
2649 +------------------------------+
2651 Any other value is ignored."
2652 :type
'(repeat :tag
"Menu Visible Part"
2653 (choice :menu-tag
"Menu Part"
2657 (const postscript-options
)
2658 (const postscript-process
)
2665 (defcustom pr-delete-temp-file t
2666 "*Non-nil means delete temporary files.
2668 Set `pr-delete-temp-file' to nil, if the following message (or a similar)
2669 happens when printing:
2671 Error: could not open \"c:\\temp\\prspool.ps\" for reading."
2677 (defcustom pr-list-directory nil
2678 "*Non-nil means list directory when processing a directory.
2680 That is, any subdirectories (and the superdirectory) of the directory (given as
2681 argument of functions below) are also printed (as dired-mode listings).
2683 It's used by `pr-ps-directory-preview', `pr-ps-directory-using-ghostscript',
2684 `pr-ps-directory-print', `pr-ps-directory-ps-print', `pr-printify-directory'
2685 and `pr-txt-directory'."
2691 (defcustom pr-buffer-name
"*Printing Interface*"
2692 "*Specify the name of the buffer interface for printing package.
2694 It's used by `pr-interface'."
2700 (defcustom pr-buffer-name-ignore
2701 (list (regexp-quote pr-buffer-name
) ; ignore printing interface buffer
2702 "^ .*$") ; ignore invisible buffers
2703 "*Specify a regexp list for buffer names to be ignored in interface buffer.
2705 NOTE: Case is important for matching, that is, `case-fold-search' is always
2708 It's used by `pr-interface'."
2709 :type
'(repeat (regexp :tag
"Buffer Name Regexp"))
2714 (defcustom pr-buffer-verbose t
2715 "*Non-nil means to be verbose when editing a field in interface buffer.
2717 It's used by `pr-interface'."
2723 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2724 ;; Internal Variables
2727 (defvar pr-txt-command nil
2728 "Name of program for printing a text file.
2729 See `pr-txt-printer-alist'.")
2732 (defvar pr-txt-switches nil
2733 "List of sexp's to pass as extra options to the text printer program.
2734 See `pr-txt-printer-alist'.")
2737 (defvar pr-txt-printer nil
2738 "Specify text printer name.
2739 See `pr-txt-printer-alist'.")
2742 (defvar pr-ps-command nil
2743 "Name of program for printing a PostScript file.
2744 See `pr-ps-printer-alist'.")
2747 (defvar pr-ps-switches nil
2748 "List of sexp's to pass as extra options to the PostScript printer program.
2749 See `pr-ps-printer-alist'.")
2752 (defvar pr-ps-printer-switch nil
2753 "Specify PostScript printer name switch.
2754 See `pr-ps-printer-alist'.")
2757 (defvar pr-ps-printer nil
2758 "Specify PostScript printer name.
2759 See `pr-ps-printer-alist'.")
2762 (defvar pr-menu-bar nil
2763 "Specify Printing menu-bar entry.")
2766 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2770 (defmacro pr-save-file-modes
(&rest body
)
2771 "Set temporally file modes to `pr-file-modes'."
2772 `(let ((pr--default-file-modes (default-file-modes))) ; save default
2773 (set-default-file-modes pr-file-modes
)
2775 (set-default-file-modes pr--default-file-modes
))) ; restore default
2778 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2782 (defmacro pr-xemacs-global-menubar
(&rest body
)
2784 (let ((temp (get-buffer-create (make-temp-name " *Temp"))))
2785 ;; be sure to access global menubar
2788 (kill-buffer temp
))))
2791 (defsubst pr-visible-p
(key)
2792 (memq key pr-visible-entry-list
))
2795 (defsubst pr-mode-alist-p
()
2796 (cdr (assq major-mode pr-mode-alist
)))
2799 (defsubst pr-auto-mode-p
()
2800 (and pr-auto-mode
(pr-mode-alist-p)))
2803 (defsubst pr-using-ghostscript-p
()
2804 (and pr-print-using-ghostscript
(not pr-spool-p
)))
2807 (defun pr-get-symbol (name)
2808 (easy-menu-intern name
))
2811 ((featurep 'xemacs
) ; XEmacs
2812 (defvar zmacs-region-stays nil
) ; to avoid compilation gripes
2813 (defun pr-region-active-p ()
2814 (and pr-auto-region
(not zmacs-region-stays
) (ps-mark-active-p))))
2817 (defun pr-region-active-p ()
2818 (and pr-auto-region transient-mark-mode mark-active
))))
2821 (defconst pr-menu-spec
2823 ;; unfortunately XEmacs doesn't support :active for submenus,
2825 ;; So, it uses :included instead of :active.
2826 ;; Also, XEmacs doesn't support :help tag.
2827 (let ((pr-:active
(if (featurep 'xemacs
)
2829 :active
)) ; GNU Emacs
2830 (pr-:help
(if (featurep 'xemacs
)
2832 #'(lambda (text) (list :help text
))))) ; GNU Emacs
2834 ["Printing Interface" pr-interface
2836 pr-
:help
"Use buffer interface instead of menu interface")]
2838 ("PostScript Preview" :included
(pr-visible-p 'postscript
)
2840 pr-
:help
"Preview PostScript instead of sending to printer")
2841 ("Directory" ,pr-
:active
(not pr-spool-p
)
2842 ["1-up" (pr-ps-directory-preview 1 nil nil t
) t
]
2843 ["2-up" (pr-ps-directory-preview 2 nil nil t
) t
]
2844 ["4-up" (pr-ps-directory-preview 4 nil nil t
) t
]
2845 ["Other..." (pr-ps-directory-preview nil nil nil t
)
2846 :keys
"\\[pr-ps-buffer-preview]"])
2847 ("Buffer" ,pr-
:active
(not pr-spool-p
)
2848 ["1-up" (pr-ps-buffer-preview 1 t
) t
]
2849 ["2-up" (pr-ps-buffer-preview 2 t
) t
]
2850 ["4-up" (pr-ps-buffer-preview 4 t
) t
]
2851 ["Other..." (pr-ps-buffer-preview nil t
)
2852 :keys
"\\[pr-ps-buffer-preview]"])
2853 ("Region" ,pr-
:active
(and (not pr-spool-p
) (ps-mark-active-p))
2854 ["1-up" (pr-ps-region-preview 1 t
) t
]
2855 ["2-up" (pr-ps-region-preview 2 t
) t
]
2856 ["4-up" (pr-ps-region-preview 4 t
) t
]
2857 ["Other..." (pr-ps-region-preview nil t
)
2858 :keys
"\\[pr-ps-region-preview]"])
2859 ("Mode" ,pr-
:active
(and (not pr-spool-p
) (pr-mode-alist-p))
2860 ["1-up" (pr-ps-mode-preview 1 t
) t
]
2861 ["2-up" (pr-ps-mode-preview 2 t
) t
]
2862 ["4-up" (pr-ps-mode-preview 4 t
) t
]
2863 ["Other..." (pr-ps-mode-preview nil t
)
2864 :keys
"\\[pr-ps-mode-preview]"])
2866 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview
)
2867 :keys
"\\[pr-ps-file-preview]"
2869 pr-
:help
"Preview PostScript file")]
2871 ["PostScript Utility" pr-update-menus
:active pr-ps-utility-alist
2873 pr-
:help
"Select PostScript utility")]
2875 ["1-up..." (pr-ps-file-up-preview 1 t t
) pr-ps-utility-alist
]
2876 ["2-up..." (pr-ps-file-up-preview 2 t t
) pr-ps-utility-alist
]
2877 ["4-up..." (pr-ps-file-up-preview 4 t t
) pr-ps-utility-alist
]
2878 ["Other..." (pr-ps-file-up-preview nil t t
)
2879 :keys
"\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist
]
2881 ["Landscape" pr-toggle-file-landscape-menu
2882 :style toggle
:selected pr-file-landscape
2884 pr-
:help
"Toggle landscape for PostScript file")
2885 :active pr-ps-utility-alist
]
2886 ["Duplex" pr-toggle-file-duplex-menu
2887 :style toggle
:selected pr-file-duplex
2889 pr-
:help
"Toggle duplex for PostScript file")
2890 :active pr-ps-utility-alist
]
2891 ["Tumble" pr-toggle-file-tumble-menu
2892 :style toggle
:selected pr-file-tumble
2894 pr-
:help
"Toggle tumble for PostScript file")
2895 :active
(and pr-file-duplex pr-ps-utility-alist
)])
2896 ["Despool..." (call-interactively 'pr-despool-preview
)
2897 :active pr-spool-p
:keys
"\\[pr-despool-preview]"
2899 pr-
:help
"Despool PostScript buffer to printer or file (C-u)")])
2900 ("PostScript Print" :included
(pr-visible-p 'postscript
)
2902 pr-
:help
"Send PostScript to printer or file (C-u)")
2904 ["1-up" (pr-ps-directory-ps-print 1 nil nil t
) t
]
2905 ["2-up" (pr-ps-directory-ps-print 2 nil nil t
) t
]
2906 ["4-up" (pr-ps-directory-ps-print 4 nil nil t
) t
]
2907 ["Other..." (pr-ps-directory-ps-print nil nil nil t
)
2908 :keys
"\\[pr-ps-buffer-ps-print]"])
2910 ["1-up" (pr-ps-buffer-ps-print 1 t
) t
]
2911 ["2-up" (pr-ps-buffer-ps-print 2 t
) t
]
2912 ["4-up" (pr-ps-buffer-ps-print 4 t
) t
]
2913 ["Other..." (pr-ps-buffer-ps-print nil t
)
2914 :keys
"\\[pr-ps-buffer-ps-print]"])
2915 ("Region" ,pr-
:active
(ps-mark-active-p)
2916 ["1-up" (pr-ps-region-ps-print 1 t
) t
]
2917 ["2-up" (pr-ps-region-ps-print 2 t
) t
]
2918 ["4-up" (pr-ps-region-ps-print 4 t
) t
]
2919 ["Other..." (pr-ps-region-ps-print nil t
)
2920 :keys
"\\[pr-ps-region-ps-print]"])
2921 ("Mode" ,pr-
:active
(pr-mode-alist-p)
2922 ["1-up" (pr-ps-mode-ps-print 1 t
) t
]
2923 ["2-up" (pr-ps-mode-ps-print 2 t
) t
]
2924 ["4-up" (pr-ps-mode-ps-print 4 t
) t
]
2925 ["Other..." (pr-ps-mode-ps-print nil t
)
2926 :keys
"\\[pr-ps-mode-ps-print]"])
2928 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print
)
2929 :keys
"\\[pr-ps-file-ps-print]"
2931 pr-
:help
"Send PostScript file to printer")]
2933 ["PostScript Utility" pr-update-menus
:active pr-ps-utility-alist
2935 pr-
:help
"Select PostScript utility")]
2937 ["1-up..." (pr-ps-file-up-ps-print 1 t t
) pr-ps-utility-alist
]
2938 ["2-up..." (pr-ps-file-up-ps-print 2 t t
) pr-ps-utility-alist
]
2939 ["4-up..." (pr-ps-file-up-ps-print 4 t t
) pr-ps-utility-alist
]
2940 ["Other..." (pr-ps-file-up-ps-print nil t t
)
2941 :keys
"\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist
]
2943 ["Landscape" pr-toggle-file-landscape-menu
2944 :style toggle
:selected pr-file-landscape
2946 pr-
:help
"Toggle landscape for PostScript file")
2947 :active pr-ps-utility-alist
]
2948 ["Duplex" pr-toggle-file-duplex-menu
2949 :style toggle
:selected pr-file-duplex
2951 pr-
:help
"Toggle duplex for PostScript file")
2952 :active pr-ps-utility-alist
]
2953 ["Tumble" pr-toggle-file-tumble-menu
2954 :style toggle
:selected pr-file-tumble
2956 pr-
:help
"Toggle tumble for PostScript file")
2957 :active
(and pr-file-duplex pr-ps-utility-alist
)])
2958 ["Despool..." (call-interactively 'pr-despool-ps-print
)
2959 :active pr-spool-p
:keys
"\\[pr-despool-ps-print]"
2961 pr-
:help
"Despool PostScript buffer to printer or file (C-u)")])
2962 ["PostScript Printers" pr-update-menus
2963 :active pr-ps-printer-alist
:included
(pr-visible-p 'postscript
)
2965 pr-
:help
"Select PostScript printer")]
2967 ("Printify" :included
(pr-visible-p 'text
)
2970 "Replace non-printing chars with printable representations.")
2971 ["Directory" pr-printify-directory t
]
2972 ["Buffer" pr-printify-buffer t
]
2973 ["Region" pr-printify-region
(ps-mark-active-p)])
2974 ("Print" :included
(pr-visible-p 'text
)
2976 pr-
:help
"Send text to printer")
2977 ["Directory" pr-txt-directory t
]
2978 ["Buffer" pr-txt-buffer t
]
2979 ["Region" pr-txt-region
(ps-mark-active-p)]
2980 ["Mode" pr-txt-mode
(pr-mode-alist-p)])
2981 ["Text Printers" pr-update-menus
2982 :active pr-txt-printer-alist
:included
(pr-visible-p 'text
)
2984 pr-
:help
"Select text printer")]
2986 ["Landscape" pr-toggle-landscape-menu
2987 :style toggle
:selected ps-landscape-mode
2988 :included
(pr-visible-p 'postscript-options
)]
2989 ["Print Header" pr-toggle-header-menu
2990 :style toggle
:selected ps-print-header
2991 :included
(pr-visible-p 'postscript-options
)]
2992 ["Print Header Frame" pr-toggle-header-frame-menu
2993 :style toggle
:selected ps-print-header-frame
:active ps-print-header
2994 :included
(pr-visible-p 'postscript-options
)]
2995 ["Line Number" pr-toggle-line-menu
2996 :style toggle
:selected ps-line-number
2997 :included
(pr-visible-p 'postscript-options
)]
2998 ["Zebra Stripes" pr-toggle-zebra-menu
2999 :style toggle
:selected ps-zebra-stripes
3000 :included
(pr-visible-p 'postscript-options
)]
3001 ["Duplex" pr-toggle-duplex-menu
3002 :style toggle
:selected ps-spool-duplex
3003 :included
(pr-visible-p 'postscript-options
)]
3004 ["Tumble" pr-toggle-tumble-menu
3005 :style toggle
:selected ps-spool-tumble
:active ps-spool-duplex
3006 :included
(pr-visible-p 'postscript-options
)]
3007 ["Upside-Down" pr-toggle-upside-down-menu
3008 :style toggle
:selected ps-print-upside-down
3009 :included
(pr-visible-p 'postscript-options
)]
3010 ("Print All Pages" :included
(pr-visible-p 'postscript-options
)
3012 pr-
:help
"Select odd/even pages/sheets to print")
3013 ["All Pages" (pr-even-or-odd-pages nil
)
3014 :style radio
:selected
(eq ps-even-or-odd-pages nil
)]
3015 ["Even Pages" (pr-even-or-odd-pages 'even-page
)
3016 :style radio
:selected
(eq ps-even-or-odd-pages
'even-page
)]
3017 ["Odd Pages" (pr-even-or-odd-pages 'odd-page
)
3018 :style radio
:selected
(eq ps-even-or-odd-pages
'odd-page
)]
3019 ["Even Sheets" (pr-even-or-odd-pages 'even-sheet
)
3020 :style radio
:selected
(eq ps-even-or-odd-pages
'even-sheet
)]
3021 ["Odd Sheets" (pr-even-or-odd-pages 'odd-sheet
)
3022 :style radio
:selected
(eq ps-even-or-odd-pages
'odd-sheet
)])
3024 ["Spool Buffer" pr-toggle-spool-menu
3025 :style toggle
:selected pr-spool-p
3026 :included
(pr-visible-p 'postscript-process
)
3028 pr-
:help
"Toggle PostScript spooling")]
3029 ["Print with faces" pr-toggle-faces-menu
3030 :style toggle
:selected pr-faces-p
3031 :included
(pr-visible-p 'postscript-process
)
3033 pr-
:help
"Toggle PostScript printing with faces")]
3034 ["Print via Ghostscript" pr-toggle-ghostscript-menu
3035 :style toggle
:selected pr-print-using-ghostscript
3036 :included
(pr-visible-p 'postscript-process
)
3038 pr-
:help
"Toggle PostScript generation using ghostscript")]
3040 ["Auto Region" pr-toggle-region-menu
3041 :style toggle
:selected pr-auto-region
3042 :included
(pr-visible-p 'printing
)]
3043 ["Auto Mode" pr-toggle-mode-menu
3044 :style toggle
:selected pr-auto-mode
3045 :included
(pr-visible-p 'printing
)]
3046 ["Menu Lock" pr-toggle-lock-menu
3047 :style toggle
:selected pr-menu-lock
3048 :included
(pr-visible-p 'printing
)]
3050 ("Customize" :included
(pr-visible-p 'help
)
3051 ["printing" pr-customize t
]
3052 ["ps-print" ps-print-customize t
]
3053 ["lpr" lpr-customize t
])
3054 ("Show Settings" :included
(pr-visible-p 'help
)
3055 ["printing" pr-show-pr-setup t
]
3056 ["ps-print" pr-show-ps-setup t
]
3057 ["lpr" pr-show-lpr-setup t
])
3058 ["Help" pr-help
:active t
:included
(pr-visible-p 'help
)]
3062 (defvar pr-menu-print-item
"print"
3063 "Non-nil means that menu binding was not done.
3065 Used by `pr-menu-bind' and `pr-update-menus'.")
3068 (defun pr-menu-bind ()
3069 "Install `printing' menu in the menubar.
3071 On Emacs 20, it replaces the Tools/Print menu by Tools/Printing menu.
3073 On Emacs 21 and 22, it replaces the File/Print* menu entries by File/Print
3076 Calls `pr-update-menus' to adjust menus."
3079 ((featurep 'xemacs
) ; XEmacs
3081 (pr-xemacs-global-menubar
3082 (pr-x-add-submenu nil
(cons "Printing" pr-menu-spec
) "Apps"))
3083 (setq pr-menu-print-item nil
))
3089 ;; Replace existing "print" item by "Printing" item.
3090 ;; If you're changing this file, you'll load it a second,
3091 ;; third... time, but "print" item exists only in the first load.
3094 ((string< emacs-version
"21.")
3095 (easy-menu-change '("tools") "Printing" pr-menu-spec pr-menu-print-item
)
3096 (when pr-menu-print-item
3097 (easy-menu-remove-item nil
'("tools") pr-menu-print-item
)
3098 (setq pr-menu-print-item nil
3099 pr-menu-bar
(vector 'menu-bar
'tools
3100 (pr-get-symbol "Printing")))))
3103 (let* ((has-file (lookup-key global-map
(vector 'menu-bar
'file
)))
3104 (item-file (if has-file
'("file") '("files"))))
3107 (easy-menu-change item-file
"Print" pr-menu-spec
"print-buffer")
3108 (let ((items '("print-buffer" "print-region"
3109 "ps-print-buffer-faces" "ps-print-region-faces"
3110 "ps-print-buffer" "ps-print-region")))
3112 (easy-menu-remove-item nil item-file
(car items
))
3113 (setq items
(cdr items
)))
3114 (setq pr-menu-print-item nil
3115 pr-menu-bar
(vector 'menu-bar
3116 (if has-file
'file
'files
)
3117 (pr-get-symbol "Print")))))
3119 (easy-menu-change item-file
"Print" pr-menu-spec
))))))))
3120 (pr-update-menus t
))
3124 (let ((pr-print-key (if (featurep 'xemacs
)
3126 'print
))) ; GNU Emacs
3127 (global-set-key `[,pr-print-key
] 'pr-ps-fast-fire
)
3128 ;; Well, M-print and S-print are used because in my keyboard S-print works
3129 ;; and M-print doesn't. But M-print can work in other keyboard.
3130 (global-set-key `[(meta ,pr-print-key
)] 'pr-ps-mode-using-ghostscript
)
3131 (global-set-key `[(shift ,pr-print-key
)] 'pr-ps-mode-using-ghostscript
)
3132 ;; Well, C-print and C-M-print are used because in my keyboard C-M-print works
3133 ;; and C-print doesn't. But C-print can work in other keyboard.
3134 (global-set-key `[(control ,pr-print-key
)] 'pr-txt-fast-fire
)
3135 (global-set-key `[(control meta
,pr-print-key
)] 'pr-txt-fast-fire
))
3138 ;;; You can also use something like:
3139 ;;;(global-set-key "\C-ci" 'pr-interface)
3140 ;;;(global-set-key "\C-cbp" 'pr-ps-buffer-print)
3141 ;;;(global-set-key "\C-cbx" 'pr-ps-buffer-preview)
3142 ;;;(global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
3143 ;;;(global-set-key "\C-crp" 'pr-ps-region-print)
3144 ;;;(global-set-key "\C-crx" 'pr-ps-region-preview)
3145 ;;;(global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
3148 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3152 (defconst pr-help-message
3153 (concat "printing.el version " pr-version
3154 " ps-print.el version " ps-print-version
3159 The `printing' menu (Tools/Printing or File/Print) has the following layout:
3161 +-----------------------------+
3162 A 0 | Printing Interface |
3163 +-----------------------------+ +-A---------+ +-B------+
3164 I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
3165 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
3166 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
3167 +-----------------------------+ |Mode >|-- B |Other...|
3168 II 4 | Printify >|-----\\ |File >|--\\ +--------+
3169 5 | Print >|---\\ | |Despool... | |
3170 6 | Text Printer: name >|-\\ | | +-----------+ |
3171 +-----------------------------+ | | | +---------+ +------------+
3172 III 7 |[ ]Landscape | | | \\-|Directory| | No Prep... | Ia
3173 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
3174 9 |[ ]Print Header Frame | | | |Region | | name >|- C
3175 10 |[ ]Line Number | | | +---------+ +------------+
3176 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
3177 12 |[ ]Duplex | | \\---|Directory| | 2-up... |
3178 13 |[ ]Tumble | \\--\\ |Buffer | | 4-up... |
3179 14 |[ ]Upside-Down | | |Region | | Other... |
3180 15 | Print All Pages >|--\\ | |Mode | +------------+
3181 +-----------------------------+ | | +---------+ |[ ]Landscape| Id
3182 IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
3183 17 |[ ]Print with faces | | \\--|( )name A| |[ ]Tumble | If
3184 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
3185 +-----------------------------+ | |... |
3186 V 19 |[ ]Auto Region | | |(*)name |
3187 20 |[ ]Auto Mode | | |... |
3188 21 |[ ]Menu Lock | | +---------+ +--------------+
3189 +-----------------------------+ \\------------------|(*)All Pages |
3190 VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
3191 23 | Show Settings >|-------|printing| |( )Odd Pages |
3192 24 | Help | |ps-print| |( )Even Sheets|
3193 +-----------------------------+ |lpr | |( )Odd Sheets |
3194 +--------+ +--------------+
3196 See `pr-visible-entry-list' for hiding some parts of the menu.
3198 The menu has the following sections:
3202 0. You can use a buffer interface instead of menus. It looks like the
3203 customization buffer. Basically, it has the same options found in the
3204 menu and some extra options, all this on a buffer.
3206 I. PostScript printing:
3208 1. You can generate a PostScript file (if you type C-u before activating
3209 menu) or PostScript temporary file for a directory, a buffer, a region
3210 or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
3211 after file generation, ghostview is activated using the file generated
3212 as argument. This option is disabled if spooling is on (option 16).
3213 Also, if you already have a PostScript file you can preview it.
3214 Instead of previewing each buffer, region or major mode at once, you
3215 can save temporarily the PostScript code generated in a buffer and
3216 preview it later. The option `Despool...' despools the PostScript
3217 spooling buffer in a temporary file and uses ghostview to preview it.
3218 If you type C-u before choosing this option, the PostScript code
3219 generated is saved in a file instead of saving in a temporary file. To
3220 spool the PostScript code generated you need to turn on the option 16.
3221 The option `Despool...' is enabled if spooling is on (option 16).
3223 NOTE 1: It's possible to customize a major mode printing, just declare
3224 the customization in `pr-mode-alist' and invoke some of
3225 `*-mode*' commands or select Mode option in Printing menu. An
3226 example for major mode usage is when you're using gnus (or mh,
3227 or rmail, etc.) and you're in the *Summary* buffer, if you
3228 forget to switch to the *Article* buffer before printing,
3229 you'll get a nicely formatted list of article subjects shows
3230 up at the printer. With major mode printing you don't need to
3231 switch from gnus *Summary* buffer first.
3233 NOTE 2: There are the following options for PostScript file processing:
3234 Ia. Print the file *No Preprocessing*, that is, send it
3235 directly to PostScript printer.
3236 Ib. PostScript utility processing selection.
3237 See `pr-ps-utility-alist' and `pr-setting-database' for
3239 Ic. Do n-up processing before printing.
3240 Id. Toggle on/off landscape for PostScript file processing.
3241 Ie. Toggle on/off duplex for PostScript file processing.
3242 If. Toggle on/off tumble for PostScript file processing.
3244 NOTE 3: Don't forget to download and install the utilities declared on
3245 `pr-ps-utility-alist'.
3247 2. Operate the same way as option 1, but it sends directly the PostScript
3248 code (or put in a file, if you've typed C-u) or it uses ghostscript to
3249 print the PostScript file generated. It depends on option 18, if it's
3250 turned on, it uses ghostscript; otherwise, it sends directly to
3251 printer. If spooling is on (option 16), the PostScript code is saved
3252 temporarily in a buffer instead of printing it or saving it in a file.
3253 Also, if you already have a PostScript file you can print it.
3254 Instead of printing each buffer, region or major mode at once, you can
3255 save temporarily the PostScript code generated in a buffer and print it
3256 later. The option `Despool...' despools the PostScript spooling buffer
3257 directly on a printer. If you type C-u before choosing this option,
3258 the PostScript code generated is saved in a file instead of sending it to
3259 the printer. To spool the PostScript code generated you need to turn on
3260 option 16. This option is enabled if spooling is on (option 16).
3261 See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
3263 3. You can select a new PostScript printer to send PostScript code
3264 generated. For selection it's used all PostScript printers defined
3265 in `pr-ps-printer-alist' variable (see it for documentation).
3266 See also `pr-setting-database'.
3270 4. If you have control characters (character code from \\000 to \\037) in a
3271 buffer and you want to print them in a text printer, select this
3272 option. All control characters in your buffer or region will be
3273 replaced by a printable representation. The printable representations
3274 use ^ (for ASCII control characters) or hex. The characters tab,
3275 linefeed, space, return and formfeed are not affected.
3276 You don't need to select this option if you use any option of section
3277 I, the PostScript engine treats control characters properly.
3279 5. If you want to print a directory, buffer, region or major mode in a
3280 text printer, select this option. See also the NOTE 1 on option 1.
3282 6. You can select a new text printer to send text generated. For
3283 selection it's used all text printers defined in `pr-txt-printer-alist'
3284 variable (see it for documentation).
3285 See also `pr-setting-database'.
3287 III. PostScript page toggle options:
3289 7. If you want a PostScript landscape printing, turn on this option.
3291 8. If you want to have a header in each page in your PostScript code,
3292 turn on this option.
3294 9. If you want to draw a gaudy frame around the header, turn on this
3295 option. This option is enabled if print header is on (option 8).
3297 10. If you want that the line number is printed in your PostScript code,
3298 turn on this option.
3300 11. If you want background zebra stripes in your PostScript code, turn on
3303 12. If you want a duplex printing and your PostScript printer has this
3304 feature, turn on this option.
3306 13. If you turned on duplex printing, you can choose if you want to have a
3307 printing suitable for binding on the left or right (tumble off), or to
3308 have a printing suitable for binding at top or bottom (tumble on).
3309 This option is enabled if duplex is on (option 12).
3311 14. If you want a PostScript upside-down printing, turn on this option.
3313 15. With this option, you can choose if you want to print all pages, odd
3314 pages, even pages, odd sheets or even sheets.
3315 See also `ps-even-or-odd-pages'.
3317 IV. PostScript processing toggle options:
3319 16. If you want to spool the PostScript code generated, turn on this
3320 option. To spool the PostScript code generated use option 2. You can
3321 despool later by choosing option 1 or 2, sub-option `Despool...'.
3323 17. If you use colors in your buffers and want to see these colors on your
3324 PostScript code generated, turn on this option. If you have a
3325 black/white PostScript printer, these colors are displayed in gray
3326 scale by PostScript printer interpreter.
3328 18. If you don't have a PostScript printer to send PostScript files, turn
3329 on this option. When this option is on, the ghostscript is used to
3330 print PostScript files. In GNU or Unix system, if ghostscript is set
3331 as a PostScript filter, you don't need to turn on this option.
3333 V. Printing customization:
3335 19. If you want that region is automagically detected, turn on this
3336 option. Note that this will only work if you're using transient mark
3337 mode. When this option is on, the `*-buffer*' commands will behave
3338 like `*-region*' commands, that is, `*-buffer*' commands will print
3339 only the region marked instead of all buffer.
3341 20. Turn this option on if you want that when current major-mode is
3342 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
3343 behave like `*-mode*' commands.
3345 21. If you want that Printing menu stays open while you are setting
3346 toggle options, turn on this option. The variables
3347 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
3348 menu position, so don't forget to adjust these variables if menu
3353 22. Besides all options in section III, IV and V, you can customize much
3354 more PostScript options in `ps-print' option. Or you can customize
3355 some `lpr' options for text printing. Or customize `printing'
3358 23. Show current settings for `printing', `ps-print' or `lpr'.
3360 24. Quick help for printing menu layout.
3362 "Printing help message.")
3365 (defconst pr-interface-help-message
3366 (concat "printing.el version " pr-version
3367 " ps-print.el version " ps-print-version
3369 The printing interface buffer has the same functionality as the printing menu.
3370 The major difference is that the states (like sending PostScript generated to a
3371 file, n-up printing, etc.) are set and saved between priting buffer
3372 activation. Also, the landscape, duplex and tumble values are the same for
3373 PostScript file and directory/buffer/region/mode processing; using menu, there
3374 are different value sets for PostScript file and directory/buffer/region/mode
3377 The printing interface buffer has the following sections:
3381 Here you can choose to print/preview a buffer, a directory or a PostScript
3387 Select a buffer from the current buffer list.
3390 If it's on, this means that the selected buffer has an active region,
3391 so you can turn on/off, as you wish.
3392 If it's off when a buffer is selected, this means that the selected
3393 buffer has no active region, so it'll not be possible to turn it on.
3394 If you want to process the region, let this option on.
3395 If you want to process the whole buffer, let this option off.
3398 If it's on, this means that the selected buffer major mode is declared
3399 for major mode processing, so you can turn on/off, as you wish.
3400 If it's off when a buffer is selected, this means that the selected
3401 buffer major mode isn't declared for major mode processing, so it'll
3402 not be possible to turn it on.
3403 If you want the major mode processing, let this option on.
3404 If you don't want the major mode processing, let this option off.
3406 NOTE 1: It's possible to customize a major mode printing, just declare
3407 the customization in `pr-mode-alist' and invoke some of
3408 `*-mode*' commands or select Mode option in Printing menu. An
3409 example for major mode usage is when you're using gnus (or mh,
3410 or rmail, etc.) and you're in the *Summary* buffer, if you
3411 forget to switch to the *Article* buffer before printing,
3412 you'll get a nicely formatted list of article subjects shows
3413 up at the printer. With major mode printing you don't need to
3414 switch from gnus *Summary* buffer first.
3419 Specify a valid directory path.
3422 Specify a file name regexp. All file names in the directory that
3423 match with regexp will be printed/previewed. An empty file name
3424 regexp means to print/preview all files in the directory.
3426 * List Directory Entry:
3427 If it's turned on, list directory entries besides file entries.
3429 1c. PostScript file:
3432 Specify an existent PostScript file to print/preview.
3434 * PostScript Utility:
3435 Select a PostScript utility.
3436 See `pr-ps-utility-alist' and `pr-setting-database' for documentation.
3438 NOTE 2: Don't forget to download and install the utilities declared on
3439 `pr-ps-utility-alist'.
3442 If it's turned on, don't use the PostScript utility to preprocess the
3443 PostScript file before printing/previewing.
3445 2. PostScript printer:
3447 * PostScript Printer:
3448 You can select a new PostScript printer to send PostScript code
3449 generated. For selection it's used all PostScript printers defined
3450 in `pr-ps-printer-alist' variable (see it for documentation).
3451 See also `pr-setting-database'.
3454 If spooling is on, you can turn it on/off, as you wish.
3455 If spooling is off, it'll not be possible to turn it on.
3456 If it's turned on, specify to despools the PostScript spooling buffer in
3457 a temporary file or in the selected PostScript file when
3458 printing/previewing.
3461 Preview the PostScript generated.
3464 Print the PostScript generated.
3467 Quit from printing interface buffer.
3469 * Send to Printer/Temporary File:
3470 If it's turned on, the PostScript generated is sent directly to
3471 PostScript printer or, for previewing, to a temporary file.
3474 Specify a file name to send the PostScript generated.
3477 Specify n-up printing.
3482 Select a new text printer to send text generated. For selection it's used
3483 all text printers defined in `pr-txt-printer-alist' variable (see it for
3484 documentation). See also `pr-setting-database'.
3487 If you have control characters (character code from \\000 to \\037) in a
3488 buffer and you want to print them in a text printer, select this
3489 option. All control characters in your buffer or region will be
3490 replaced by a printable representation. The printable representations
3491 use ^ (for ASCII control characters) or hex. The characters tab,
3492 linefeed, space, return and formfeed are not affected.
3493 You don't need to select this option if you use any option of section
3494 I, the PostScript engine treats control characters properly.
3497 To print a directory, buffer, region or major mode in a
3498 text printer, select this option. See also the NOTE 1 on section 1.
3501 Quit from printing interface buffer.
3505 There are 3 setting columns:
3507 4a. First column (left column):
3510 PostScript landscape printing.
3513 To have a header in each page in your PostScript code.
3515 * Print Header Frame:
3516 To draw a gaudy frame around the header.
3519 The line number is printed in your PostScript code.
3522 Background zebra stripes in your PostScript code.
3525 Duplex printing (if your PostScript printer has this feature).
3528 If duplex printing is on, you can choose if you want to have a
3529 printing suitable for binding on the left or right (tumble off), or to
3530 have a printing suitable for binding at top or bottom (tumble on).
3533 PostScript upside-down printing.
3535 4b. Second column (middle column):
3538 If you want that region is automagically detected, turn on this
3539 option. Note that this will only work if you're using transient mark
3540 mode. When this option is on, the `*-buffer*' commands will behave
3541 like `*-region*' commands, that is, `*-buffer*' commands will print
3542 only the region marked instead of all buffer.
3545 Turn this option on if you want that when current major-mode is
3546 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
3547 behave like `*-mode*' commands.
3550 If you want that Printing menu stays open while you are setting
3551 toggle options, turn on this option. The variables
3552 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
3553 menu position, so don't forget to adjust these variables if menu
3557 To spool the PostScript code generated. You can despool later by
3558 setting Despool option on PostScript printer section.
3561 If you use colors in your buffers and want to see these colors on your
3562 PostScript code generated, turn on this option. If you have a
3563 black/white PostScript printer, these colors are displayed in gray
3564 scale by PostScript printer interpreter.
3566 * Print via Ghostscript:
3567 If you don't have a PostScript printer to send PostScript files, turn
3568 on this option. When this option is on, the ghostscript is used to
3569 print PostScript files. In GNU or Unix system, if ghostscript is set
3570 as a PostScript filter, you don't need to turn on this option.
3573 To print all pages, odd pages, even pages, odd sheets or even sheets.
3574 See also `ps-even-or-odd-pages'.
3576 4c. Third column (right column):
3579 That is, to be verbose when editing a field in interface buffer.
3583 Besides all options in section 4, you can customize much more PostScript
3584 options in `ps-print' option. Or you can customize some `lpr' options for
3585 text printing. Or customize `printing' options.
3589 Show current settings for `printing', `ps-print' or `lpr'.
3593 Quick help for printing interface buffer and printing menu layout. You can
3594 also quit the printing interface buffer or kill all printing help buffer.
3596 "Printing buffer interface help message.")
3599 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3604 (defun pr-interface (&optional buffer
)
3605 "Activate the printing interface buffer.
3607 If BUFFER is nil, the current buffer is used for printing.
3609 For more information, type \\[pr-interface-help]."
3612 (set-buffer (or buffer
(current-buffer)))
3613 (pr-create-interface)))
3617 (defun pr-ps-directory-preview (n-up dir file-regexp
&optional filename
)
3618 "Preview directory using ghostview.
3620 Interactively, the command prompts for N-UP printing number, a directory, a
3621 file name regexp for matching and, when you use a prefix argument (C-u), the
3622 command prompts the user for a file name, and saves the PostScript image in
3623 that file instead of saving it in a temporary file.
3625 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3626 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3627 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3628 save the image in a temporary file. If FILENAME is a string, save the
3629 PostScript image in a file with that name. If FILENAME is t, prompts for a
3632 See also documentation for `pr-list-directory'."
3633 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS preview dir")))
3634 (pr-set-ps-dir-args 'n-up
'dir
'file-regexp
'filename
3635 (pr-prompt "PS preview dir"))
3636 (setq filename
(pr-ps-file filename
))
3637 (pr-ps-file-list n-up dir file-regexp filename
)
3639 (pr-ps-file-preview filename
)))
3643 (defun pr-ps-directory-using-ghostscript (n-up dir file-regexp
&optional filename
)
3644 "Print directory using PostScript through ghostscript.
3646 Interactively, the command prompts for N-UP printing number, a directory, a
3647 file name regexp for matching and, when you use a prefix argument (C-u), the
3648 command prompts the user for a file name, and saves the PostScript image in
3649 that file instead of saving it in a temporary file.
3651 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3652 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3653 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3654 save the image in a temporary file. If FILENAME is a string, save the
3655 PostScript image in a file with that name. If FILENAME is t, prompts for a
3658 See also documentation for `pr-list-directory'."
3659 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir GS")))
3660 (pr-set-ps-dir-args 'n-up
'dir
'file-regexp
'filename
3661 (pr-prompt "PS print dir GS"))
3662 (let ((file (pr-ps-file filename
)))
3663 (pr-ps-file-list n-up dir file-regexp file
)
3664 (pr-ps-file-using-ghostscript file
)
3665 (or filename
(pr-delete-file file
))))
3669 (defun pr-ps-directory-print (n-up dir file-regexp
&optional filename
)
3670 "Print directory using PostScript printer.
3672 Interactively, the command prompts for N-UP printing number, a directory, a
3673 file name regexp for matching and, when you use a prefix argument (C-u), the
3674 command prompts the user for a file name, and saves the PostScript image in
3675 that file instead of saving it in a temporary file.
3677 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3678 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3679 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3680 save the image in a temporary file. If FILENAME is a string, save the
3681 PostScript image in a file with that name. If FILENAME is t, prompts for a
3684 See also documentation for `pr-list-directory'."
3685 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir")))
3686 (pr-set-ps-dir-args 'n-up
'dir
'file-regexp
'filename
3687 (pr-prompt "PS print dir"))
3688 (let ((file (pr-ps-file filename
)))
3689 (pr-ps-file-list n-up dir file-regexp file
)
3690 (pr-ps-file-print file
)
3691 (or filename
(pr-delete-file file
))))
3695 (defun pr-ps-directory-ps-print (n-up dir file-regexp
&optional filename
)
3696 "Print directory using PostScript printer or through ghostscript.
3698 It depends on `pr-print-using-ghostscript'.
3700 Interactively, the command prompts for N-UP printing number, a directory, a
3701 file name regexp for matching and, when you use a prefix argument (C-u), the
3702 command prompts the user for a file name, and saves the PostScript image in
3703 that file instead of saving it in a temporary file.
3705 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
3706 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
3707 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
3708 save the image in a temporary file. If FILENAME is a string, save the
3709 PostScript image in a file with that name. If FILENAME is t, prompts for a
3712 See also documentation for `pr-list-directory'."
3713 (interactive (pr-interactive-ps-dir-args
3714 (pr-prompt (pr-prompt-gs "PS print dir"))))
3715 (pr-set-ps-dir-args 'n-up
'dir
'file-regexp
'filename
3716 (pr-prompt (pr-prompt-gs "PS print dir")))
3717 (if (pr-using-ghostscript-p)
3718 (pr-ps-directory-using-ghostscript n-up dir file-regexp filename
)
3719 (pr-ps-directory-print n-up dir file-regexp filename
)))
3723 (defun pr-ps-buffer-preview (n-up &optional filename
)
3724 "Preview buffer using ghostview.
3726 Interactively, the command prompts for N-UP printing number and, when you use a
3727 prefix argument (C-u), the command prompts the user for a file name, and saves
3728 the PostScript image in that file instead of saving it in a temporary file.
3730 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3731 argument FILENAME is treated as follows: if it's nil, save the image in a
3732 temporary file. If FILENAME is a string, save the PostScript image in a file
3733 with that name. If FILENAME is t, prompts for a file name."
3734 (interactive (pr-interactive-n-up-file (pr-prompt "PS preview")))
3735 (if (pr-auto-mode-p)
3736 (pr-ps-mode-preview n-up filename
)
3737 (pr-ps-preview (pr-region-active-symbol) n-up filename
3738 (pr-region-active-string "PS preview"))))
3742 (defun pr-ps-buffer-using-ghostscript (n-up &optional filename
)
3743 "Print buffer using PostScript through ghostscript.
3745 Interactively, the command prompts for N-UP printing number and, when you use a
3746 prefix argument (C-u), the command prompts the user for a file name, and saves
3747 the PostScript image in that file instead of sending it to the printer.
3749 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3750 argument FILENAME is treated as follows: if it's nil, send the image to the
3751 printer. If FILENAME is a string, save the PostScript image in a file with
3752 that name. If FILENAME is t, prompts for a file name."
3753 (interactive (pr-interactive-n-up-file (pr-prompt "PS print GS")))
3754 (if (pr-auto-mode-p)
3755 (pr-ps-mode-using-ghostscript n-up filename
)
3756 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
3757 (pr-region-active-string "PS print GS"))))
3761 (defun pr-ps-buffer-print (n-up &optional filename
)
3762 "Print buffer using PostScript printer.
3764 Interactively, the command prompts for N-UP printing number and, when you use a
3765 prefix argument (C-u), the command prompts the user for a file name, and saves
3766 the PostScript image in that file instead of sending it to the printer.
3768 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3769 argument FILENAME is treated as follows: if it's nil, send the image to the
3770 printer. If FILENAME is a string, save the PostScript image in a file with
3771 that name. If FILENAME is t, prompts for a file name."
3772 (interactive (pr-interactive-n-up-file (pr-prompt "PS print")))
3773 (if (pr-auto-mode-p)
3774 (pr-ps-mode-print n-up filename
)
3775 (pr-ps-print (pr-region-active-symbol) n-up filename
3776 (pr-region-active-string "PS print"))))
3780 (defun pr-ps-buffer-ps-print (n-up &optional filename
)
3781 "Print buffer using PostScript printer or through ghostscript.
3783 It depends on `pr-print-using-ghostscript'.
3785 Interactively, the command prompts for N-UP printing number and, when you use a
3786 prefix argument (C-u), the command prompts the user for a file name, and saves
3787 the PostScript image in that file instead of sending it to the printer.
3789 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
3790 argument FILENAME is treated as follows: if it's nil, send the image to the
3791 printer. If FILENAME is a string, save the PostScript image in a file with
3792 that name. If FILENAME is t, prompts for a file name."
3793 (interactive (pr-interactive-n-up-file
3794 (pr-prompt (pr-prompt-gs "PS print"))))
3795 (cond ((pr-auto-mode-p)
3796 (pr-ps-mode-ps-print n-up filename
))
3797 ((pr-using-ghostscript-p)
3798 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
3799 (pr-region-active-string "PS print GS")))
3801 (pr-ps-print (pr-region-active-symbol) n-up filename
3802 (pr-region-active-string "PS print")))))
3806 (defun pr-ps-region-preview (n-up &optional filename
)
3807 "Preview region using ghostview.
3809 See also `pr-ps-buffer-preview'."
3810 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS preview")))
3811 (if (pr-auto-mode-p)
3812 (let ((pr-auto-region t
))
3813 (pr-ps-mode-preview n-up filename
))
3814 (pr-ps-preview 'region n-up filename
"PS preview region")))
3818 (defun pr-ps-region-using-ghostscript (n-up &optional filename
)
3819 "Print region using PostScript through ghostscript.
3821 See also `pr-ps-buffer-using-ghostscript'."
3822 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print GS")))
3823 (if (pr-auto-mode-p)
3824 (let ((pr-auto-region t
))
3825 (pr-ps-mode-using-ghostscript n-up filename
))
3826 (pr-ps-using-ghostscript 'region n-up filename
"PS print GS region")))
3830 (defun pr-ps-region-print (n-up &optional filename
)
3831 "Print region using PostScript printer.
3833 See also `pr-ps-buffer-print'."
3834 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print")))
3835 (if (pr-auto-mode-p)
3836 (let ((pr-auto-region t
))
3837 (pr-ps-mode-print n-up filename
))
3838 (pr-ps-print 'region n-up filename
"PS print region")))
3842 (defun pr-ps-region-ps-print (n-up &optional filename
)
3843 "Print region using PostScript printer or through ghostscript.
3845 See also `pr-ps-buffer-ps-print'."
3846 (interactive (pr-interactive-n-up-file
3847 (pr-prompt-region (pr-prompt-gs "PS print"))))
3848 (cond ((pr-auto-mode-p)
3849 (let ((pr-auto-region t
))
3850 (pr-ps-mode-ps-print n-up filename
)))
3851 ((pr-using-ghostscript-p)
3852 (pr-ps-using-ghostscript 'region n-up filename
"PS print GS region"))
3854 (pr-ps-print 'region n-up filename
"PS print region"))))
3858 (defun pr-ps-mode-preview (n-up &optional filename
)
3859 "Preview major mode using ghostview.
3861 See also `pr-ps-buffer-preview'."
3862 (interactive (pr-interactive-n-up-file "PS preview mode"))
3863 (pr-set-n-up-and-filename 'n-up
'filename
"PS preview mode")
3864 (let ((file (pr-ps-file filename
)))
3865 (and (pr-ps-mode n-up file
)
3867 (pr-ps-file-preview file
))))
3871 (defun pr-ps-mode-using-ghostscript (n-up &optional filename
)
3872 "Print major mode using PostScript through ghostscript.
3874 See also `pr-ps-buffer-using-ghostscript'."
3875 (interactive (pr-interactive-n-up-file "PS print GS mode"))
3876 (pr-set-n-up-and-filename 'n-up
'filename
"PS print GS mode")
3877 (let ((file (pr-ps-file filename
)))
3878 (when (and (pr-ps-mode n-up file
)
3880 (pr-ps-file-using-ghostscript file
)
3881 (or filename
(pr-delete-file file
)))))
3885 (defun pr-ps-mode-print (n-up &optional filename
)
3886 "Print major mode using PostScript printer.
3888 See also `pr-ps-buffer-print'."
3889 (interactive (pr-interactive-n-up-file "PS print mode"))
3890 (pr-set-n-up-and-filename 'n-up
'filename
"PS print mode")
3891 (pr-ps-mode n-up filename
))
3895 (defun pr-ps-mode-ps-print (n-up &optional filename
)
3896 "Print major mode using PostScript or through ghostscript.
3898 See also `pr-ps-buffer-ps-print'."
3899 (interactive (pr-interactive-n-up-file (pr-prompt-gs "PS print mode")))
3900 (if (pr-using-ghostscript-p)
3901 (pr-ps-mode-using-ghostscript n-up filename
)
3902 (pr-ps-mode-print n-up filename
)))
3906 (defun pr-printify-directory (&optional dir file-regexp
)
3907 "Replace nonprinting characters in directory with printable representations.
3908 The printable representations use ^ (for ASCII control characters) or hex.
3909 The characters tab, linefeed, space, return and formfeed are not affected.
3911 Interactively, the command prompts for a directory and a file name regexp for
3914 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
3915 prompts for FILE(name)-REGEXP.
3917 See also documentation for `pr-list-directory'."
3918 (interactive (pr-interactive-dir-args "Printify dir"))
3919 (pr-set-dir-args 'dir
'file-regexp
"Printify dir")
3920 (pr-file-list dir file-regexp
'pr-printify-buffer
))
3924 (defun pr-printify-buffer ()
3925 "Replace nonprinting characters in buffer with printable representations.
3926 The printable representations use ^ (for ASCII control characters) or hex.
3927 The characters tab, linefeed, space, return and formfeed are not affected."
3929 (if (pr-region-active-p)
3930 (pr-printify-region)
3931 (printify-region (point-min) (point-max))))
3935 (defun pr-printify-region ()
3936 "Replace nonprinting characters in region with printable representations.
3937 The printable representations use ^ (for ASCII control characters) or hex.
3938 The characters tab, linefeed, space, return and formfeed are not affected."
3940 (printify-region (point) (mark)))
3944 (defun pr-txt-directory (&optional dir file-regexp
)
3945 "Print directory using text printer.
3947 Interactively, the command prompts for a directory and a file name regexp for
3950 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
3951 prompts for FILE(name)-REGEXP.
3953 See also documentation for `pr-list-directory'."
3954 (interactive (pr-interactive-dir-args "Print dir"))
3955 (pr-set-dir-args 'dir
'file-regexp
"Print dir")
3956 (pr-file-list dir file-regexp
'pr-txt-buffer
))
3960 (defun pr-txt-buffer ()
3961 "Print buffer using text printer."
3963 (cond ((pr-auto-mode-p)
3965 ((pr-region-active-p)
3968 (pr-txt-print (point-min) (point-max)))))
3972 (defun pr-txt-region ()
3973 "Print region using text printer."
3975 (if (pr-auto-mode-p)
3976 (let ((pr-auto-region t
))
3978 (pr-txt-print (point) (mark))))
3982 (defun pr-txt-mode ()
3983 "Print major mode using text printer."
3985 (let ((args (pr-mode-alist-p)))
3987 (funcall (car args
) (nthcdr 2 args
))
3989 (message "`%s' major mode not declared." major-mode
))))
3993 (defun pr-despool-preview (&optional filename
)
3994 "Preview spooled PostScript.
3996 Interactively, when you use a prefix argument (C-u), the command prompts the
3997 user for a file name, and saves the spooled PostScript image in that file
3998 instead of saving it in a temporary file.
4000 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4001 save the image in a temporary file. If FILENAME is a string, save the
4002 PostScript image in a file with that name."
4003 (interactive (list (ps-print-preprint current-prefix-arg
)))
4004 (let ((file (pr-ps-file filename
)))
4005 (when (stringp file
)
4006 (pr-despool-print file
)
4007 (pr-ps-file-preview file
))))
4011 (defun pr-despool-using-ghostscript (&optional filename
)
4012 "Print spooled PostScript using ghostscript.
4014 Interactively, when you use a prefix argument (C-u), the command prompts the
4015 user for a file name, and saves the spooled PostScript image in that file
4016 instead of sending it to the printer.
4018 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4019 send the image to the printer. If FILENAME is a string, save the PostScript
4020 image in a file with that name."
4021 (interactive (list (ps-print-preprint current-prefix-arg
)))
4022 (let ((file (pr-ps-file filename
)))
4023 (when (stringp file
)
4024 (pr-despool-print file
)
4025 (pr-ps-file-using-ghostscript file
)
4026 (or filename
(pr-delete-file file
)))))
4030 (defun pr-despool-print (&optional filename
)
4031 "Send the spooled PostScript to the printer.
4033 Interactively, when you use a prefix argument (C-u), the command prompts the
4034 user for a file name, and saves the spooled PostScript image in that file
4035 instead of sending it to the printer.
4037 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4038 send the image to the printer. If FILENAME is a string, save the PostScript
4039 image in a file with that name."
4040 (interactive (list (ps-print-preprint current-prefix-arg
)))
4042 (let ((ps-lpr-command (pr-command pr-ps-command
))
4043 (ps-lpr-switches pr-ps-switches
)
4044 (ps-printer-name-option pr-ps-printer-switch
)
4045 (ps-printer-name pr-ps-printer
))
4046 (ps-despool filename
))))
4050 (defun pr-despool-ps-print (&optional filename
)
4051 "Send the spooled PostScript to the printer or use ghostscript to print it.
4053 Interactively, when you use a prefix argument (C-u), the command prompts the
4054 user for a file name, and saves the spooled PostScript image in that file
4055 instead of sending it to the printer.
4057 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
4058 send the image to the printer. If FILENAME is a string, save the PostScript
4059 image in a file with that name."
4060 (interactive (list (ps-print-preprint current-prefix-arg
)))
4061 (if pr-print-using-ghostscript
4062 (pr-despool-using-ghostscript filename
)
4063 (pr-despool-print filename
)))
4067 (defun pr-ps-file-preview (filename)
4068 "Preview PostScript file FILENAME."
4069 (interactive (list (pr-ps-infile-preprint "Preview ")))
4070 (and (stringp filename
) (file-exists-p filename
)
4071 (pr-call-process pr-gv-command filename
)))
4075 (defun pr-ps-file-up-preview (n-up ifilename
&optional ofilename
)
4076 "Preview PostScript file FILENAME."
4077 (interactive (pr-interactive-n-up-inout "PS preview"))
4078 (let ((outfile (pr-ps-utility-args 'n-up
'ifilename
'ofilename
4080 (pr-ps-utility-process n-up ifilename outfile
)
4081 (pr-ps-file-preview outfile
)))
4085 (defun pr-ps-file-using-ghostscript (filename)
4086 "Print PostScript file FILENAME using ghostscript."
4087 (interactive (list (pr-ps-infile-preprint "Print preview ")))
4088 (and (stringp filename
) (file-exists-p filename
)
4089 (let* ((file (pr-expand-file-name filename
))
4090 (tempfile (pr-dosify-file-name (make-temp-file file
))))
4092 (pr-call-process pr-gs-command
4093 (format "-sDEVICE=%s" pr-gs-device
)
4094 (format "-r%d" pr-gs-resolution
)
4095 (pr-switches-string pr-gs-switches
"pr-gs-switches")
4096 (format "-sOutputFile=\"%s\"" tempfile
)
4100 (pr-ps-file-print tempfile
)
4102 (pr-delete-file tempfile
))))
4106 (defun pr-ps-file-print (filename)
4107 "Print PostScript file FILENAME."
4108 (interactive (list (pr-ps-infile-preprint "Print ")))
4109 (and (stringp filename
) (file-exists-p filename
)
4111 (let ((file (pr-expand-file-name filename
)))
4112 (if (string= pr-ps-command
"")
4114 (let ((ps-spool-buffer (get-buffer-create ps-spool-buffer-name
)))
4116 (set-buffer ps-spool-buffer
)
4118 (insert-file-contents-literally file
))
4120 ;; use `pr-ps-command' to print
4121 (apply 'pr-call-process
4123 (pr-switches-string pr-ps-switches
"pr-ps-switches")
4124 (if (string-match "cp" pr-ps-command
)
4125 ;; for "cp" (cmd in out)
4127 (concat pr-ps-printer-switch pr-ps-printer
))
4128 ;; else, for others (cmd out in)
4129 (list (concat pr-ps-printer-switch pr-ps-printer
)
4134 (defun pr-ps-file-ps-print (filename)
4135 "Send PostScript file FILENAME to printer or use ghostscript to print it."
4136 (interactive (list (pr-ps-infile-preprint
4137 (if pr-print-using-ghostscript
4140 (if pr-print-using-ghostscript
4141 (pr-ps-file-using-ghostscript filename
)
4142 (pr-ps-file-print filename
)))
4146 (defun pr-ps-file-up-ps-print (n-up ifilename
&optional ofilename
)
4147 "Process a PostScript file IFILENAME and send it to printer.
4149 Interactively, the command prompts for N-UP printing number, for an input
4150 PostScript file IFILENAME and, when you use a prefix argument (C-u), the
4151 command prompts the user for an output PostScript file name OFILENAME, and
4152 saves the PostScript image in that file instead of sending it to the printer.
4154 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
4155 argument IFILENAME is treated as follows: if it's t, prompts for an input
4156 PostScript file name; otherwise, it *must* be a string that it's an input
4157 PostScript file name. The argument OFILENAME is treated as follows: if it's
4158 nil, send the image to the printer. If OFILENAME is a string, save the
4159 PostScript image in a file with that name. If OFILENAME is t, prompts for a
4161 (interactive (pr-interactive-n-up-inout
4162 (if pr-print-using-ghostscript
4165 (let ((outfile (pr-ps-utility-args 'n-up
'ifilename
'ofilename
4166 (if pr-print-using-ghostscript
4169 (pr-ps-utility-process n-up ifilename outfile
)
4171 (pr-ps-file-ps-print outfile
)
4172 (pr-delete-file outfile
))))
4176 (defun pr-toggle-file-duplex ()
4177 "Toggle duplex for PostScript file."
4179 (pr-toggle-file-duplex-menu t
))
4183 (defun pr-toggle-file-tumble ()
4184 "Toggle tumble for PostScript file.
4186 If tumble is off, produces a printing suitable for binding on the left or
4188 If tumble is on, produces a printing suitable for binding at the top or
4191 (pr-toggle-file-tumble-menu t
))
4195 (defun pr-toggle-file-landscape ()
4196 "Toggle landscape for PostScript file."
4198 (pr-toggle-file-landscape-menu t
))
4202 (defun pr-toggle-ghostscript ()
4203 "Toggle printing using ghostscript."
4205 (pr-toggle-ghostscript-menu t
))
4209 (defun pr-toggle-faces ()
4210 "Toggle printing with faces."
4212 (pr-toggle-faces-menu t
))
4216 (defun pr-toggle-spool ()
4219 (pr-toggle-spool-menu t
))
4223 (defun pr-toggle-duplex ()
4226 (pr-toggle-duplex-menu t
))
4230 (defun pr-toggle-tumble ()
4233 If tumble is off, produces a printing suitable for binding on the left or
4235 If tumble is on, produces a printing suitable for binding at the top or
4238 (pr-toggle-tumble-menu t
))
4242 (defun pr-toggle-landscape ()
4245 (pr-toggle-landscape-menu t
))
4249 (defun pr-toggle-upside-down ()
4250 "Toggle upside-down."
4252 (pr-toggle-upside-down-menu t
))
4256 (defun pr-toggle-line ()
4257 "Toggle line number."
4259 (pr-toggle-line-menu t
))
4263 (defun pr-toggle-zebra ()
4264 "Toggle zebra stripes."
4266 (pr-toggle-zebra-menu t
))
4270 (defun pr-toggle-header ()
4271 "Toggle printing header."
4273 (pr-toggle-header-menu t
))
4277 (defun pr-toggle-header-frame ()
4278 "Toggle printing header frame."
4280 (pr-toggle-header-frame-menu t
))
4284 (defun pr-toggle-lock ()
4287 (pr-toggle-lock-menu t
))
4291 (defun pr-toggle-region ()
4292 "Toggle auto region."
4294 (pr-toggle-region-menu t
))
4298 (defun pr-toggle-mode ()
4301 (pr-toggle-mode-menu t
))
4305 (defun pr-customize (&rest ignore
)
4306 "Customization of the `printing' group."
4308 (customize-group 'printing
))
4312 (defun lpr-customize (&rest ignore
)
4313 "Customization of the `lpr' group."
4315 (customize-group 'lpr
))
4319 (defun pr-help (&rest ignore
)
4320 "Help for the printing package."
4322 (pr-show-setup pr-help-message
"*Printing Help*"))
4326 (defun pr-ps-name ()
4327 "Interactively select a PostScript printer."
4329 (pr-menu-set-ps-title
4330 (pr-complete-alist "PostScript printer"
4331 pr-ps-printer-alist pr-ps-name
)))
4335 (defun pr-txt-name ()
4336 "Interactively select a text printer."
4338 (pr-menu-set-txt-title
4339 (pr-complete-alist "Text printer"
4340 pr-txt-printer-alist pr-txt-name
)))
4344 (defun pr-ps-utility ()
4345 "Interactively select a PostScript utility."
4347 (pr-menu-set-utility-title
4348 (pr-complete-alist "Postscript utility"
4349 pr-ps-utility-alist pr-ps-utility
)))
4353 (defun pr-show-ps-setup (&rest ignore
)
4354 "Show current ps-print settings."
4356 (pr-show-setup (ps-setup) "*PS Setup*"))
4360 (defun pr-show-pr-setup (&rest ignore
)
4361 "Show current printing settings."
4363 (pr-show-setup (pr-setup) "*PR Setup*"))
4367 (defun pr-show-lpr-setup (&rest ignore
)
4368 "Show current lpr settings."
4370 (pr-show-setup (lpr-setup) "*LPR Setup*"))
4373 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4378 (defun pr-ps-fast-fire (n-up &optional select
)
4379 "Fast fire function for PostScript printing.
4381 If a region is active, the region will be printed instead of the whole buffer.
4382 Also if the current major-mode is defined in `pr-mode-alist', the settings in
4383 `pr-mode-alist' will be used, that is, the current buffer or region will be
4384 printed using `pr-ps-mode-ps-print'.
4387 Interactively, you have the following situations:
4389 M-x pr-ps-fast-fire RET
4390 The command prompts the user for a N-UP value and printing will
4391 immediatelly be done using the current active printer.
4393 C-u M-x pr-ps-fast-fire RET
4394 C-u 0 M-x pr-ps-fast-fire RET
4395 The command prompts the user for a N-UP value and also for a current
4396 PostScript printer, then printing will immediatelly be done using the new
4397 current active printer.
4399 C-u 1 M-x pr-ps-fast-fire RET
4400 The command prompts the user for a N-UP value and also for a file name,
4401 and saves the PostScript image in that file instead of sending it to the
4404 C-u 2 M-x pr-ps-fast-fire RET
4405 The command prompts the user for a N-UP value, then for a current
4406 PostScript printer and, finally, for a file name. Then change the active
4407 printer to that choosen by user and saves the PostScript image in
4408 that file instead of sending it to the printer.
4411 Noninteractively, the argument N-UP should be a positive integer greater than
4412 zero and the argument SELECT is treated as follows:
4414 If it's nil, send the image to the printer.
4416 If it's a list or an integer lesser or equal to zero, the command prompts
4417 the user for a current PostScript printer, then printing will immediatelly
4418 be done using the new current active printer.
4420 If it's an integer equal to 1, the command prompts the user for a file name
4421 and saves the PostScript image in that file instead of sending it to the
4424 If it's an integer greater or equal to 2, the command prompts the user for a
4425 current PostScript printer and for a file name. Then change the active
4426 printer to that choosen by user and saves the PostScript image in that file
4427 instead of sending it to the printer.
4429 If it's a symbol which it's defined in `pr-ps-printer-alist', it's the new
4430 active printer and printing will immediatelly be done using the new active
4433 Otherwise, send the image to the printer.
4436 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
4438 (interactive (list (pr-interactive-n-up (pr-prompt-gs "PS print fast"))
4439 current-prefix-arg
))
4440 (let ((pr-auto-region t
)
4443 (cond ((null select
))
4446 ((and (symbolp select
)
4447 (assq select pr-ps-printer-alist
))
4448 (pr-menu-set-ps-title select
))
4452 (and (>= select
1) (not pr-spool-p
)
4453 (setq filename
(pr-ps-outfile-preprint
4454 (if pr-print-using-ghostscript
4457 (pr-ps-buffer-ps-print
4459 (min (max n-up
1) 100)
4460 (error "n-up must be an integer greater than zero"))
4465 (defun pr-txt-fast-fire (&optional select-printer
)
4466 "Fast fire function for text printing.
4468 If a region is active, the region will be printed instead of the whole buffer.
4469 Also if the current major-mode is defined in `pr-mode-alist', the settings in
4470 `pr-mode-alist' will be used, that is, the current buffer or region will be
4471 printed using `pr-txt-mode'.
4473 Interactively, when you use a prefix argument (C-u), the command prompts the
4474 user for a new active text printer.
4476 Noninteractively, the argument SELECT-PRINTER is treated as follows:
4478 If it's nil, the printing is sent to the current active text printer.
4480 If it's a symbol which it's defined in `pr-txt-printer-alist', it's the new
4481 active printer and printing will immediatelly be done using the new active
4484 If it's non-nil, the command prompts the user for a new active text printer.
4486 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
4488 (interactive (list current-prefix-arg
))
4489 (cond ((null select-printer
))
4490 ((and (symbolp select-printer
)
4491 (assq select-printer pr-txt-printer-alist
))
4492 (pr-menu-set-txt-title select-printer
))
4495 (let ((pr-auto-region t
)
4500 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4505 "Return the current `printing' setup.
4507 This is *not* an interactive command.
4508 One way to see `printing' setup is to switch to a *Scratch* buffer and type:
4510 M-: (insert (pr-setup)) RET
4512 Or choose the menu option Printing/Show Settings/printing."
4513 (let (ps-prefix-quote)
4517 (concat "\n;;; printing.el version " pr-version
"\n")
4519 (ps-comment-string "emacs-version " emacs-version
)
4520 (ps-comment-string "pr-txt-command " pr-txt-command
)
4521 (ps-comment-string "pr-txt-switches "
4522 (pr-switches-string pr-txt-switches
"pr-txt-switches"))
4523 (ps-comment-string "pr-txt-printer " pr-txt-printer
)
4524 (ps-comment-string "pr-ps-command " pr-ps-command
)
4525 (ps-comment-string "pr-ps-switches "
4526 (pr-switches-string pr-ps-switches
"pr-ps-switches"))
4527 (ps-comment-string "pr-ps-printer-switch" pr-ps-printer-switch
)
4528 (ps-comment-string "pr-ps-printer " pr-ps-printer
)
4529 (ps-comment-string "pr-cygwin-system " pr-cygwin-system
)
4530 (ps-comment-string "ps-windows-system " ps-windows-system
)
4531 (ps-comment-string "ps-lp-system " ps-lp-system
)
4533 '(14 . pr-path-style
)
4534 '(14 . pr-path-alist
)
4537 '(21 . pr-txt-printer-alist
)
4540 '(20 . pr-ps-printer-alist
)
4543 '(20 . pr-ps-temp-file
)
4544 '(20 . pr-file-modes
)
4545 '(20 . pr-delete-temp-file
)
4546 '(20 . pr-list-directory
)
4548 '(17 . pr-gv-command
)
4549 '(17 . pr-gs-command
)
4550 '(17 . pr-gs-switches
)
4551 '(17 . pr-gs-device
)
4552 '(17 . pr-gs-resolution
)
4554 '(27 . pr-print-using-ghostscript
)
4557 '(27 . pr-file-landscape
)
4558 '(27 . pr-file-duplex
)
4559 '(27 . pr-file-tumble
)
4560 '(27 . pr-auto-region
)
4561 '(27 . pr-auto-mode
)
4563 '(20 . pr-ps-utility
)
4564 '(20 . pr-ps-utility-alist
)
4566 '(14 . pr-mode-alist
)
4568 '(20 . pr-menu-lock
)
4569 '(20 . pr-menu-char-height
)
4570 '(20 . pr-menu-char-width
)
4572 '(20 . pr-setting-database
)
4574 '(22 . pr-visible-entry-list
)
4576 '(22 . pr-buffer-verbose
)
4577 '(22 . pr-buffer-name
)
4578 '(22 . pr-buffer-name-ignore
)
4579 ")\n\n;;; printing.el - end of settings\n")
4584 "Return the current `lpr' setup.
4586 This is *not* an interactive command.
4587 One way to see `lpr' setup is to switch to a *Scratch* buffer and type:
4589 M-: (insert (lpr-setup)) RET
4591 Or choose the menu option Printing/Show Settings/lpr."
4592 (let (ps-prefix-quote)
4596 "\n;;; lpr.el settings\n"
4597 (ps-comment-string "emacs-version" emacs-version
)
4599 '(25 . printer-name
)
4600 '(25 . lpr-switches
)
4601 '(25 . lpr-add-switches
)
4603 '(25 . lpr-headers-switches
)
4604 '(25 . print-region-function
)
4605 '(25 . lpr-page-header-program
)
4606 '(25 . lpr-page-header-switches
)
4607 ")\n\n;;; lpr.el - end of settings\n")
4611 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4612 ;; mh-e (adapted from mh-e-init.el -- Tom Vogels <tov@ece.cmu.edu>)
4615 (defalias 'pr-mh-get-msg-num
'mh-get-msg-num
)
4616 (defalias 'pr-mh-show
'mh-show
)
4617 (defalias 'pr-mh-start-of-uncleaned-message
'mh-start-of-uncleaned-message
)
4618 (defvar mh-show-buffer nil
)
4621 (defun pr-article-date ()
4622 "Find the date of an article or mail message in current buffer.
4623 Return only the dayname, if present, weekday, month, and year."
4625 (goto-char (point-min))
4626 (if (re-search-forward
4627 "^Date:[ \t]+\\(\\([A-Za-z]+, \\)?[0-9]+ [A-Za-z]+ [0-9]+\\)" nil t
)
4628 (buffer-substring (match-beginning 1) (match-end 1))
4629 (format-time-string "%Y/%m/%d"))))
4632 (defun pr-mh-current-message ()
4633 "Go to mh-inbox current message."
4634 (let ((msg (or (pr-mh-get-msg-num nil
) 0)))
4636 (set-buffer mh-show-buffer
)
4637 (goto-char (point-min))
4638 (pr-mh-start-of-uncleaned-message)
4639 (message "Printing message %d" msg
)))
4642 (defun pr-mh-print-1 (n-up filename header-list
)
4643 "Print mh-inbox current message in PostScript."
4645 (save-window-excursion
4646 (pr-mh-current-message)
4647 (pr-mode-print n-up filename header-list
(point)))))
4650 (defun pr-mh-lpr-1 (header-list)
4651 "Print mh-inbox current message in text printer."
4653 (save-window-excursion
4654 (pr-mh-current-message)
4655 (pr-mode-lpr header-list
(point)))))
4658 (defalias 'pr-mh-print-2
'pr-mode-print
)
4661 (defalias 'pr-mh-lpr-2
'pr-mode-lpr
)
4664 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4665 ;; rmail (hacked from ps-print.el)
4668 (defun pr-rmail-lpr (header-list)
4669 "Print RMAIL current message in text printer."
4670 (pr-lpr-message-from-summary header-list
4671 'rmail-buffer
'rmail-summary-buffer
))
4674 (defun pr-rmail-print (n-up filename header-list
)
4675 "Print RMAIL current message in PostScript."
4676 (pr-ps-message-from-summary n-up filename header-list
4677 'rmail-buffer
'rmail-summary-buffer
))
4680 (defun pr-ps-message-from-summary (n-up filename header-list
4681 summary-buffer summary-default
)
4682 "Print current message in PostScript."
4683 (let ((buf (or (and (boundp summary-buffer
)
4684 (symbol-value summary-buffer
))
4685 (symbol-value summary-default
))))
4686 (and (get-buffer buf
)
4689 (pr-mode-print n-up filename header-list
)))))
4692 (defun pr-lpr-message-from-summary (header-list summary-buffer summary-default
)
4693 "Print current message in text printer."
4694 (let ((buf (or (and (boundp summary-buffer
)
4695 (symbol-value summary-buffer
))
4696 (symbol-value summary-default
))))
4697 (and (get-buffer buf
)
4700 (pr-mode-lpr header-list
)))))
4703 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4704 ;; gnus (hacked from ps-print.el)
4707 (defvar pr-gnus-article
"*Article*")
4710 (defun pr-gnus-print (n-up filename header-list
)
4711 "Print *Article* current message in PostScript."
4712 (pr-ps-message-from-summary n-up filename header-list
4713 'gnus-article-buffer
'pr-gnus-article
))
4716 (defun pr-gnus-lpr (header-list)
4717 "Print *Article* current message in text printer."
4718 (pr-lpr-message-from-summary header-list
4719 'gnus-article-buffer
'pr-gnus-article
))
4722 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4723 ;; vm (hacked from ps-print.el)
4726 (defvar pr-vm-summary
"")
4729 (defun pr-vm-print (n-up filename header-list
)
4730 "Print current vm message in PostScript."
4731 (pr-ps-message-from-summary n-up filename header-list
4732 'vm-mail-buffer
'pr-vm-summary
))
4735 (defun pr-vm-lpr (header-list)
4736 "Print current vm message in text printer."
4737 (pr-lpr-message-from-summary header-list
4738 'vm-mail-buffer
'pr-vm-summary
))
4741 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4745 (defun pr-ps-mode (n-up filename
)
4746 "If current major mode is declared, print it in PostScript."
4747 (let ((args (pr-mode-alist-p)))
4749 (let ((fun (cdr args
)))
4750 (funcall (car fun
) n-up filename
(cdr fun
))
4753 (message "`%s' major mode not declared." major-mode
)
4757 (defmacro pr-local-variable
(header-list &rest body
)
4759 (let ((ps-header-lines (or (nth 0 ,header-list
) ps-header-lines
))
4760 (ps-left-header (or (nth 1 ,header-list
) ps-left-header
))
4761 (ps-right-header (or (nth 2 ,header-list
) ps-right-header
))
4763 (let ((local-var-list (pr-eval-local-alist (nthcdr 4 ,header-list
))))
4765 (and (nth 3 ,header-list
)
4766 (pr-kill-local-variable local-var-list
))))))
4769 (defun pr-mode-print (n-up filename header-list
&optional from to
)
4770 "Print current major mode in PostScript."
4773 (let ((file (pr-ps-file filename
))
4775 ((pr-region-active-p) (region-beginning))
4778 (pr-text2ps (pr-region-active-symbol start
) n-up file start
4780 ((pr-region-active-p) (region-end))
4783 (unless (or pr-spool-p filename
)
4784 (pr-ps-file-print file
)
4785 (pr-delete-file file
)))))
4788 (defun pr-mode-lpr (header-list &optional from to
)
4789 "Print current major mode in text printer."
4792 (pr-txt-print (cond (from)
4793 ((pr-region-active-p) (region-beginning))
4796 ((pr-region-active-p) (region-end))
4800 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4804 (defconst pr-menu-entry-alist
4807 (postscript-options .
9)
4808 (postscript-process .
3)
4812 "Alist that associates menu part with number of items per part.
4814 It's used by `pr-menu-index'.
4816 Each element has the form:
4818 (MENU-PART . NUMBER-OF-ITEMS)
4820 See `pr-visible-entry-alist'.")
4823 (defun pr-menu-index (entry index
)
4825 (cond ((eq entry
'text
)
4827 ((eq entry
'postscript-options
)
4829 ((eq entry
'postscript-process
)
4830 '(postscript text postscript-options
))
4831 ((eq entry
'printing
)
4832 '(postscript text postscript-options postscript-process
))
4838 (setq key
(car base-list
)
4839 base-list
(cdr base-list
))
4840 (and (pr-visible-p key
)
4841 (setq index
(+ index
4842 (cdr (assq key pr-menu-entry-alist
)))))))
4846 (defvar pr-menu-position nil
)
4847 (defvar pr-menu-state nil
)
4853 (defvar current-mouse-event nil
) ; to avoid compilation gripes
4854 (defun pr-menu-position (entry index horizontal
)
4858 'x
(- (pr-x-event-x-pixel current-mouse-event
) ; X
4859 (* horizontal pr-menu-char-width
))
4860 'y
(- (pr-x-event-y-pixel current-mouse-event
) ; Y
4861 (* (pr-menu-index entry index
) pr-menu-char-height
)))))
4864 ;; GNU Emacs for Windows 9x/NT
4865 (defun pr-menu-position (entry index horizontal
)
4866 (let ((pos (cdr (pr-e-mouse-pixel-position))))
4868 (list (or (car pos
) 0) ; X
4869 (- (or (cdr pos
) 0) ; Y
4870 (* (pr-menu-index entry index
) pr-menu-char-height
)))
4871 (selected-frame)))) ; frame
4875 (defun pr-menu-position (entry index horizontal
)
4876 (let ((pos (cdr (pr-e-mouse-pixel-position))))
4878 (list (- (or (car pos
) 0) ; X
4879 (* horizontal pr-menu-char-width
))
4880 (- (or (cdr pos
) 0) ; Y
4881 (* (pr-menu-index entry index
) pr-menu-char-height
)))
4882 (selected-frame)))) ; frame
4888 (defvar current-menubar nil
) ; to avoid compilation gripes
4889 (defun pr-menu-lookup (path)
4890 (car (pr-x-find-menu-item current-menubar
(cons "Printing" path
))))
4893 (defun pr-menu-lock (entry index horizontal state path
)
4895 (or (and pr-menu-position
(eq state pr-menu-state
))
4896 (setq pr-menu-position
(pr-menu-position entry index horizontal
)
4897 pr-menu-state state
))
4898 (let* ((menu (pr-menu-lookup path
))
4899 (result (pr-x-get-popup-menu-response menu pr-menu-position
)))
4900 (and (pr-x-misc-user-event-p result
)
4901 (funcall (pr-x-event-function result
)
4902 (pr-x-event-object result
))))
4903 (setq pr-menu-position nil
))))
4908 (defun pr-menu-lookup (path)
4909 (lookup-key global-map
4911 (vconcat pr-menu-bar
4912 (mapcar 'pr-get-symbol
4919 (defun pr-menu-lock (entry index horizontal state path
)
4921 (or (and pr-menu-position
(eq state pr-menu-state
))
4922 (setq pr-menu-position
(pr-menu-position entry index horizontal
)
4923 pr-menu-state state
))
4924 (let* ((menu (pr-menu-lookup path
))
4925 (result (x-popup-menu pr-menu-position menu
)))
4927 (let ((command (lookup-key menu
(vconcat result
))))
4928 (if (fboundp command
)
4931 (setq pr-menu-position nil
)))))
4934 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4935 ;; Printer & Utility Selection
4938 (defun pr-update-var (var-sym alist
)
4939 (or (assq (symbol-value var-sym
) alist
)
4940 (set var-sym
(car (car alist
)))))
4943 (defun pr-update-menus (&optional force
)
4944 "Update utility, PostScript and text printer menus.
4946 If FORCE is non-nil, update menus doesn't matter if `pr-ps-printer-alist',
4947 `pr-txt-printer-alist' or `pr-ps-utility-alist' were modified or not;
4948 otherwise, update PostScript printer menu iff `pr-ps-printer-menu-modified' is
4949 non-nil, update text printer menu iff `pr-txt-printer-menu-modified' is
4950 non-nil, and update PostScript File menus iff `pr-ps-utility-menu-modified' is
4953 If menu binding was not done, calls `pr-menu-bind'."
4955 (if pr-menu-print-item
; since v6.8.4
4956 ;; There was no menu binding yet, so do it now!
4957 ;; This is a hack to be compatible with old versions of printing.
4958 ;; So, user does not need to change printing calling in init files.
4960 ;; Here menu binding is ok.
4961 (pr-update-var 'pr-ps-name pr-ps-printer-alist
)
4962 (pr-update-var 'pr-txt-name pr-txt-printer-alist
)
4963 (pr-update-var 'pr-ps-utility pr-ps-utility-alist
)
4964 (pr-do-update-menus force
)))
4967 (defvar pr-ps-printer-menu-modified t
4968 "Non-nil means `pr-ps-printer-alist' was modified and we need to update menu.")
4969 (defvar pr-txt-printer-menu-modified t
4970 "Non-nil means `pr-txt-printer-alist' was modified and we need to update menu.")
4971 (defvar pr-ps-utility-menu-modified t
4972 "Non-nil means `pr-ps-utility-alist' was modified and we need to update menu.")
4975 (defconst pr-even-or-odd-alist
4976 '((nil .
"Print All Pages")
4977 (even-page .
"Print Even Pages")
4978 (odd-page .
"Print Odd Pages")
4979 (even-sheet .
"Print Even Sheets")
4980 (odd-sheet .
"Print Odd Sheets")))
4983 (defun pr-menu-create (name alist var-sym fun entry index
)
4987 (let ((sym (car elt
)))
4990 (list fun
(list 'quote sym
) nil
(list 'quote entry
) index
)
4992 :selected
(list 'eq var-sym
(list 'quote sym
)))))
4999 (defalias 'pr-update-mode-line
'set-menubar-dirty-flag
)
5002 (defvar pr-ps-name-old
"PostScript Printers")
5003 (defvar pr-txt-name-old
"Text Printers")
5004 (defvar pr-ps-utility-old
"PostScript Utility")
5005 (defvar pr-even-or-odd-old
"Print All Pages")
5008 (defun pr-do-update-menus (&optional force
)
5009 (pr-menu-alist pr-ps-printer-alist
5011 'pr-menu-set-ps-title
5013 'pr-ps-printer-menu-modified
5017 (pr-menu-alist pr-txt-printer-alist
5019 'pr-menu-set-txt-title
5021 'pr-txt-printer-menu-modified
5025 (let ((save-var pr-ps-utility-menu-modified
))
5026 (pr-menu-alist pr-ps-utility-alist
5028 'pr-menu-set-utility-title
5029 '("Printing" "PostScript Print" "File")
5034 (pr-menu-alist pr-ps-utility-alist
5036 'pr-menu-set-utility-title
5037 '("Printing" "PostScript Preview" "File")
5038 'pr-ps-utility-menu-modified
5042 (pr-even-or-odd-pages ps-even-or-odd-pages force
))
5045 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
5047 (when (and alist
(or force
(symbol-value modified-sym
)))
5048 (pr-xemacs-global-menubar
5049 (pr-x-add-submenu menu-path
5050 (pr-menu-create name alist var-sym
5052 (funcall fun
(symbol-value var-sym
))
5053 (set modified-sym nil
)))
5056 (defun pr-relabel-menu-item (newname var-sym
)
5057 (pr-xemacs-global-menubar
5058 (pr-x-relabel-menu-item
5059 (list "Printing" (symbol-value var-sym
))
5061 (set var-sym newname
)))
5064 (defun pr-menu-set-ps-title (value &optional item entry index
)
5065 (pr-relabel-menu-item (format "PostScript Printer: %s" value
)
5067 (pr-ps-set-printer value
)
5069 (pr-menu-lock entry index
12 'toggle nil
)))
5072 (defun pr-menu-set-txt-title (value &optional item entry index
)
5073 (pr-relabel-menu-item (format "Text Printer: %s" value
)
5075 (pr-txt-set-printer value
)
5077 (pr-menu-lock entry index
12 'toggle nil
)))
5080 (defun pr-menu-set-utility-title (value &optional item entry index
)
5081 (pr-xemacs-global-menubar
5082 (let ((newname (format "%s" value
)))
5083 (pr-x-relabel-menu-item
5084 (list "Printing" "PostScript Print" "File" pr-ps-utility-old
)
5086 (pr-x-relabel-menu-item
5087 (list "Printing" "PostScript Preview" "File" pr-ps-utility-old
)
5089 (setq pr-ps-utility-old newname
)))
5090 (pr-ps-set-utility value
)
5092 (pr-menu-lock entry index
5 nil
'("PostScript Print" "File"))))
5095 (defun pr-even-or-odd-pages (value &optional no-lock
)
5096 (pr-relabel-menu-item (cdr (assq value pr-even-or-odd-alist
))
5097 'pr-even-or-odd-old
)
5098 (setq ps-even-or-odd-pages value
)
5100 (pr-menu-lock 'postscript-options
8 12 'toggle nil
))))
5105 (defalias 'pr-update-mode-line
'force-mode-line-update
)
5108 (defun pr-do-update-menus (&optional force
)
5109 (pr-menu-alist pr-ps-printer-alist
5111 'pr-menu-set-ps-title
5112 "PostScript Printers"
5113 'pr-ps-printer-menu-modified
5115 "PostScript Printers"
5117 (pr-menu-alist pr-txt-printer-alist
5119 'pr-menu-set-txt-title
5121 'pr-txt-printer-menu-modified
5125 (let ((save-var pr-ps-utility-menu-modified
))
5126 (pr-menu-alist pr-ps-utility-alist
5128 'pr-menu-set-utility-title
5129 '("PostScript Print" "File" "PostScript Utility")
5132 "PostScript Utility"
5134 (pr-menu-alist pr-ps-utility-alist
5136 'pr-menu-set-utility-title
5137 '("PostScript Preview" "File" "PostScript Utility")
5138 'pr-ps-utility-menu-modified
5140 "PostScript Utility"
5142 (pr-even-or-odd-pages ps-even-or-odd-pages force
))
5145 (defun pr-menu-get-item (name-list)
5146 ;; NAME-LIST is a string or a list of strings.
5147 (or (listp name-list
)
5148 (setq name-list
(list name-list
)))
5150 (let* ((reversed (reverse name-list
))
5151 (name (pr-get-symbol (car reversed
)))
5152 (path (nreverse (cdr reversed
)))
5155 (vconcat pr-menu-bar
5156 (mapcar 'pr-get-symbol path
)))))
5157 (assq name
(nthcdr 2 menu
)))))
5160 (defvar pr-temp-menu nil
)
5163 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
5165 (when (and alist
(or force
(symbol-value modified-sym
)))
5166 (easy-menu-define pr-temp-menu nil
""
5167 (pr-menu-create name alist var-sym fun entry index
))
5168 (let ((item (pr-menu-get-item menu-path
)))
5170 (let* ((binding (nthcdr 3 item
))
5171 (key-binding (cdr binding
)))
5172 (setcar binding pr-temp-menu
)
5173 (and key-binding
(listp (car key-binding
))
5174 (setcdr binding
(cdr key-binding
))) ; skip KEY-BINDING
5175 (funcall fun
(symbol-value var-sym
) item
))))
5176 (set modified-sym nil
)))
5179 (defun pr-menu-set-item-name (item name
)
5181 (setcar (nthcdr 2 item
) name
))) ; ITEM-NAME
5184 (defun pr-menu-set-ps-title (value &optional item entry index
)
5185 (pr-menu-set-item-name (or item
5186 (pr-menu-get-item "PostScript Printers"))
5187 (format "PostScript Printer: %s" value
))
5188 (pr-ps-set-printer value
)
5190 (pr-menu-lock entry index
12 'toggle nil
)))
5193 (defun pr-menu-set-txt-title (value &optional item entry index
)
5194 (pr-menu-set-item-name (or item
5195 (pr-menu-get-item "Text Printers"))
5196 (format "Text Printer: %s" value
))
5197 (pr-txt-set-printer value
)
5199 (pr-menu-lock entry index
12 'toggle nil
)))
5202 (defun pr-menu-set-utility-title (value &optional item entry index
)
5203 (let ((name (symbol-name value
)))
5205 (pr-menu-set-item-name item name
)
5206 (pr-menu-set-item-name
5208 '("PostScript Print" "File" "PostScript Utility"))
5210 (pr-menu-set-item-name
5212 '("PostScript Preview" "File" "PostScript Utility"))
5214 (pr-ps-set-utility value
)
5216 (pr-menu-lock entry index
5 nil
'("PostScript Print" "File"))))
5219 (defun pr-even-or-odd-pages (value &optional no-lock
)
5220 (pr-menu-set-item-name (pr-menu-get-item "Print All Pages")
5221 (cdr (assq value pr-even-or-odd-alist
)))
5222 (setq ps-even-or-odd-pages value
)
5224 (pr-menu-lock 'postscript-options
8 12 'toggle nil
)))))
5227 (defun pr-ps-set-utility (value)
5228 (let ((item (cdr (assq value pr-ps-utility-alist
))))
5231 "Invalid PostScript utility name `%s' for variable `pr-ps-utility'"
5233 (setq pr-ps-utility value
)
5234 (pr-eval-alist (nthcdr 9 item
)))
5235 (pr-update-mode-line))
5238 (defun pr-ps-set-printer (value)
5239 (let ((ps (cdr (assq value pr-ps-printer-alist
))))
5242 "Invalid PostScript printer name `%s' for variable `pr-ps-name'"
5244 (setq pr-ps-name value
5245 pr-ps-command
(pr-dosify-file-name (nth 0 ps
))
5246 pr-ps-switches
(nth 1 ps
)
5247 pr-ps-printer-switch
(nth 2 ps
)
5248 pr-ps-printer
(nth 3 ps
))
5249 (or (stringp pr-ps-command
)
5251 (cond (ps-windows-system "print")
5255 (or (stringp pr-ps-printer-switch
)
5256 (setq pr-ps-printer-switch
5257 (cond (ps-windows-system "/D:")
5261 (pr-eval-alist (nthcdr 4 ps
)))
5262 (pr-update-mode-line))
5265 (defun pr-txt-set-printer (value)
5266 (let ((txt (cdr (assq value pr-txt-printer-alist
))))
5268 (error "Invalid text printer name `%s' for variable `pr-txt-name'"
5270 (setq pr-txt-name value
5271 pr-txt-command
(pr-dosify-file-name (nth 0 txt
))
5272 pr-txt-switches
(nth 1 txt
)
5273 pr-txt-printer
(nth 2 txt
)))
5274 (or (stringp pr-txt-command
)
5275 (setq pr-txt-command
5276 (cond (ps-windows-system "print")
5280 (pr-update-mode-line))
5283 (defun pr-eval-alist (alist)
5284 (mapcar #'(lambda (option)
5285 (let ((var-sym (car option
))
5286 (value (cdr option
)))
5287 (if (eq var-sym
'inherits-from
:)
5288 (pr-eval-setting-alist value
'global
)
5289 (set var-sym
(eval value
)))))
5293 (defun pr-eval-local-alist (alist)
5295 (mapcar #'(lambda (option)
5296 (let ((var-sym (car option
))
5297 (value (cdr option
)))
5299 (if (eq var-sym
'inherits-from
:)
5300 (nconc (pr-eval-setting-alist value
) local-list
)
5301 (set (make-local-variable var-sym
) (eval value
))
5302 (cons var-sym local-list
)))))
5307 (defun pr-eval-setting-alist (key &optional global old
)
5308 (let ((setting (cdr (assq key pr-setting-database
))))
5310 (let ((inherits (nth 0 setting
))
5311 (local (nth 1 setting
))
5312 (kill (nth 2 setting
))
5317 (message "There are local buffer settings for `%S'." key
)
5320 (if (memq inherits old
)
5321 (error "Circular inheritance for `%S'" inherits
)
5323 (pr-eval-setting-alist inherits global
5324 (cons inherits old
)))))
5326 (cond ((not local
) ; global settings
5328 (let ((var-sym (car option
)))
5329 (or (eq var-sym
'inherits-from
:)
5330 (set var-sym
(eval (cdr option
)))))))
5331 (kill ; local settings with killing
5333 (let ((var-sym (car option
)))
5334 (unless (eq var-sym
'inherits-from
:)
5335 (setq local-list
(cons var-sym local-list
))
5336 (set (make-local-variable var-sym
)
5337 (eval (cdr option
)))))))
5338 (t ; local settings without killing
5340 (let ((var-sym (car option
)))
5341 (or (eq var-sym
'inherits-from
:)
5342 (set (make-local-variable var-sym
)
5343 (eval (cdr option
))))))))
5348 (defun pr-kill-local-variable (local-var-list)
5349 (mapcar 'kill-local-variable local-var-list
))
5352 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5353 ;; Internal Functions (II)
5356 (defun pr-toggle (var-sym mess entry index horizontal state
5357 &optional path no-menu
)
5358 (set var-sym
(not (symbol-value var-sym
)))
5359 (message "%s is %s" mess
(if (symbol-value var-sym
) "on" "off"))
5361 (pr-menu-lock entry index horizontal state path
)))
5364 (defun pr-toggle-file-duplex-menu (&optional no-menu
)
5366 (pr-toggle 'pr-file-duplex
"PS file duplex" nil
7 5 nil
5367 '("PostScript Print" "File") no-menu
))
5370 (defun pr-toggle-file-tumble-menu (&optional no-menu
)
5372 (pr-toggle 'pr-file-tumble
"PS file tumble" nil
8 5 nil
5373 '("PostScript Print" "File") no-menu
))
5376 (defun pr-toggle-file-landscape-menu (&optional no-menu
)
5378 (pr-toggle 'pr-file-landscape
"PS file landscape" nil
6 5 nil
5379 '("PostScript Print" "File") no-menu
))
5382 (defun pr-toggle-ghostscript-menu (&optional no-menu
)
5384 (pr-toggle 'pr-print-using-ghostscript
"Printing using ghostscript"
5385 'postscript-process
2 12 'toggle nil no-menu
))
5388 (defun pr-toggle-faces-menu (&optional no-menu
)
5390 (pr-toggle 'pr-faces-p
"Printing with faces"
5391 'postscript-process
1 12 'toggle nil no-menu
))
5394 (defun pr-toggle-spool-menu (&optional no-menu
)
5396 (pr-toggle 'pr-spool-p
"Spooling printing"
5397 'postscript-process
0 12 'toggle nil no-menu
))
5400 (defun pr-toggle-duplex-menu (&optional no-menu
)
5402 (pr-toggle 'ps-spool-duplex
"Printing duplex"
5403 'postscript-options
5 12 'toggle nil no-menu
))
5406 (defun pr-toggle-tumble-menu (&optional no-menu
)
5408 (pr-toggle 'ps-spool-tumble
"Tumble"
5409 'postscript-options
6 12 'toggle nil no-menu
))
5412 (defun pr-toggle-landscape-menu (&optional no-menu
)
5414 (pr-toggle 'ps-landscape-mode
"Landscape"
5415 'postscript-options
0 12 'toggle nil no-menu
))
5418 (defun pr-toggle-upside-down-menu (&optional no-menu
)
5420 (pr-toggle 'ps-print-upside-down
"Upside-Down"
5421 'postscript-options
7 12 'toggle nil no-menu
))
5424 (defun pr-toggle-line-menu (&optional no-menu
)
5426 (pr-toggle 'ps-line-number
"Line number"
5427 'postscript-options
3 12 'toggle nil no-menu
))
5430 (defun pr-toggle-zebra-menu (&optional no-menu
)
5432 (pr-toggle 'ps-zebra-stripes
"Zebra stripe"
5433 'postscript-options
4 12 'toggle nil no-menu
))
5436 (defun pr-toggle-header-menu (&optional no-menu
)
5438 (pr-toggle 'ps-print-header
"Print header"
5439 'postscript-options
1 12 'toggle nil no-menu
))
5442 (defun pr-toggle-header-frame-menu (&optional no-menu
)
5444 (pr-toggle 'ps-print-header-frame
"Print header frame"
5445 'postscript-options
2 12 'toggle nil no-menu
))
5448 (defun pr-toggle-lock-menu (&optional no-menu
)
5450 (pr-toggle 'pr-menu-lock
"Menu lock"
5451 'printing
2 12 'toggle nil no-menu
))
5454 (defun pr-toggle-region-menu (&optional no-menu
)
5456 (pr-toggle 'pr-auto-region
"Auto region"
5457 'printing
0 12 'toggle nil no-menu
))
5460 (defun pr-toggle-mode-menu (&optional no-menu
)
5462 (pr-toggle 'pr-auto-mode
"Auto mode"
5463 'printing
1 12 'toggle nil no-menu
))
5466 (defun pr-prompt (str)
5467 (if (pr-auto-mode-p)
5468 (concat str
" mode")
5469 (pr-region-active-string str
)))
5472 (defun pr-prompt-region (str)
5473 (concat str
(if (pr-auto-mode-p)
5478 (defun pr-prompt-gs (str)
5479 (if (pr-using-ghostscript-p)
5484 (defun pr-region-active-symbol (&optional region-p
)
5485 (if (or region-p
(pr-region-active-p))
5490 (defun pr-region-active-string (prefix)
5492 (if (pr-region-active-p)
5497 (defun pr-show-setup (settings buffer-name
)
5498 (with-output-to-temp-buffer buffer-name
5500 (print-help-return-message)))
5503 (defun pr-complete-alist (prompt alist default
)
5504 (let ((collection (mapcar #'(lambda (elt)
5505 (setq elt
(car elt
))
5506 (cons (symbol-name elt
) elt
))
5508 (cdr (assoc (completing-read (concat prompt
": ")
5510 (symbol-name default
) nil
5511 (symbol-name default
))
5515 (defun pr-delete-file (file)
5516 (and pr-delete-temp-file
(file-exists-p file
)
5517 (delete-file file
)))
5520 (defun pr-expand-file-name (filename)
5521 (pr-dosify-file-name (expand-file-name filename
)))
5524 (defun pr-ps-outfile-preprint (&optional mess
)
5525 (let* ((prompt (format "%soutput PostScript file name: " (or mess
"")))
5526 (res (read-file-name prompt default-directory
"" nil
)))
5527 (while (cond ((not (file-writable-p res
))
5529 (setq prompt
"is unwritable"))
5530 ((file-directory-p res
)
5532 (setq prompt
"is a directory"))
5533 ((file-exists-p res
)
5535 (setq prompt
"exists")
5536 (not (y-or-n-p (format "File `%s' exists; overwrite? "
5539 (setq res
(read-file-name
5540 (format "File %s; PostScript file: " prompt
)
5541 (file-name-directory res
) nil nil
5542 (file-name-nondirectory res
))))
5543 (pr-expand-file-name res
)))
5546 (defun pr-ps-infile-preprint (&optional mess
)
5547 (let* ((prompt (format "%sinput PostScript file name: " (or mess
"")))
5548 (res (read-file-name prompt default-directory
"" nil
)))
5549 (while (cond ((not (file-exists-p res
))
5551 (setq prompt
"doesn't exist"))
5552 ((not (file-readable-p res
))
5554 (setq prompt
"is unreadable"))
5555 ((file-directory-p res
)
5557 (setq prompt
"is a directory"))
5559 (setq res
(read-file-name
5560 (format "File %s; PostScript file: " prompt
)
5561 (file-name-directory res
) nil nil
5562 (file-name-nondirectory res
))))
5563 (pr-expand-file-name res
)))
5566 (defun pr-ps-utility-args (n-up-sym infile-sym outfile-sym prompt
)
5567 ;; check arguments for PostScript file processing.
5569 (or (symbol-value n-up-sym
)
5570 (set n-up-sym
(pr-interactive-n-up prompt
)))
5572 (and (eq (symbol-value infile-sym
) t
)
5573 (set infile-sym
(pr-ps-infile-preprint prompt
)))
5574 (or (symbol-value infile-sym
)
5575 (error "%s: input PostScript file name is missing" prompt
))
5576 (set infile-sym
(pr-dosify-file-name (symbol-value infile-sym
)))
5578 (and (eq (symbol-value outfile-sym
) t
)
5579 (set outfile-sym
(and current-prefix-arg
5580 (pr-ps-outfile-preprint prompt
))))
5581 (and (symbol-value outfile-sym
)
5582 (set outfile-sym
(pr-dosify-file-name (symbol-value outfile-sym
))))
5583 (pr-ps-file (symbol-value outfile-sym
)))
5586 (defun pr-ps-utility-process (n-up infile outfile
)
5587 ;; activate utility to process a PostScript file.
5589 (and (stringp infile
) (file-exists-p infile
)
5590 (setq item
(cdr (assq pr-ps-utility pr-ps-utility-alist
)))
5591 (pr-call-process (nth 0 item
)
5592 (pr-switches-string (nth 1 item
)
5593 "pr-ps-utility-alist entry")
5594 (pr-switches-string (nth 8 item
)
5595 "pr-ps-utility-alist entry")
5597 (format (nth 2 item
) ps-paper-type
))
5598 (format (nth 3 item
) n-up
)
5599 (and pr-file-landscape
(nth 4 item
))
5600 (and pr-file-duplex
(nth 5 item
))
5601 (and pr-file-tumble
(nth 6 item
))
5602 (pr-expand-file-name infile
)
5604 (pr-expand-file-name outfile
)))))
5607 (defun pr-remove-nil-from-list (lst)
5608 (while (and lst
(null (car lst
)))
5609 (setq lst
(cdr lst
)))
5621 (defun pr-call-process (command &rest args
)
5622 (let ((buffer (get-buffer-create "*Printing Command Output*"))
5623 (cmd (pr-command command
))
5625 (setq args
(pr-remove-nil-from-list args
))
5626 ;; *Printing Command Output* == show command & args
5629 (goto-char (point-max))
5630 (insert (format "%s %S\n" cmd args
)))
5631 ;; *Printing Command Output* == show any return message from command
5634 (condition-case data
5635 (apply 'call-process cmd nil buffer nil args
)
5637 (error-message-string data
)))))
5638 ;; *Printing Command Output* == show exit status
5641 (goto-char (point-max))
5642 (insert (format "Exit status: %s\n\n" status
)))
5643 ;; message if error status
5644 (if (or (stringp status
)
5645 (and (integerp status
) (/= status
0)))
5647 "Printing error status: %s (see *Printing Command Output* buffer)"
5651 (defun pr-txt-print (from to
)
5652 (let ((lpr-command (pr-standard-file-name (pr-command pr-txt-command
)))
5653 (lpr-switches (pr-switches pr-txt-switches
"pr-txt-switches"))
5654 (printer-name pr-txt-printer
))
5655 (lpr-region from to
)))
5658 (defun pr-switches-string (switches mess
)
5659 ;; If SWITCHES is nil, return nil.
5660 ;; Otherwise, return the list of string in a string.
5662 (mapconcat 'identity
(pr-switches switches mess
) " ")))
5665 (defun pr-switches (switches mess
)
5666 (or (listp switches
)
5667 (error "%S should have a list of strings" mess
))
5668 (ps-flatten-list ; dynamic evaluation
5669 (mapcar 'ps-eval-switch switches
)))
5672 (defun pr-ps-preview (kind n-up filename mess
)
5673 (pr-set-n-up-and-filename 'n-up
'filename mess
)
5674 (let ((file (pr-ps-file filename
)))
5675 (pr-text2ps kind n-up file
)
5676 (or pr-spool-p
(pr-ps-file-preview file
))))
5679 (defun pr-ps-using-ghostscript (kind n-up filename mess
)
5680 (pr-set-n-up-and-filename 'n-up
'filename mess
)
5681 (let ((file (pr-ps-file filename
)))
5682 (pr-text2ps kind n-up file
)
5683 (unless (or pr-spool-p filename
)
5684 (pr-ps-file-using-ghostscript file
)
5685 (pr-delete-file file
))))
5688 (defun pr-ps-print (kind n-up filename mess
)
5689 (pr-set-n-up-and-filename 'n-up
'filename mess
)
5690 (let ((file (pr-ps-file filename
)))
5691 (pr-text2ps kind n-up file
)
5692 (unless (or pr-spool-p filename
)
5693 (pr-ps-file-print file
)
5694 (pr-delete-file file
))))
5697 (defun pr-ps-file (&optional filename
)
5698 (pr-dosify-file-name (or filename
5700 (convert-standard-filename
5701 (expand-file-name pr-ps-temp-file pr-temp-dir
))
5705 (defun pr-interactive-n-up (mess)
5706 (or (stringp mess
) (setq mess
"*"))
5708 (let* ((fmt-prompt "%s[%s] N-up printing: (default 1) ")
5710 (str (pr-f-read-string (format fmt-prompt prompt mess
) "1" nil
"1"))
5712 (while (if (string-match "^\\s *[0-9]+$" str
)
5713 (setq int
(string-to-number str
)
5714 prompt
(cond ((< int
1) "Integer below 1; ")
5715 ((> int
100) "Integer above 100; ")
5717 (setq prompt
"Invalid integer syntax; "))
5720 (pr-f-read-string (format fmt-prompt prompt mess
) str nil
"1")))
5724 (defun pr-interactive-dir (mess)
5725 (let* ((dir-name (file-name-directory (or (buffer-file-name)
5726 default-directory
)))
5727 (fmt-prompt (concat "%s[" mess
"] Directory to print: "))
5728 (dir (read-file-name (format fmt-prompt
"")
5729 "" dir-name nil dir-name
))
5731 (while (cond ((not (file-directory-p dir
))
5733 (setq prompt
"It's not a directory! "))
5734 ((not (file-readable-p dir
))
5736 (setq prompt
"Directory is unreadable! "))
5738 (setq dir-name
(file-name-directory dir
)
5739 dir
(read-file-name (format fmt-prompt prompt
)
5740 "" dir-name nil dir-name
)))
5741 (file-name-as-directory dir
)))
5744 (defun pr-interactive-regexp (mess)
5745 (pr-f-read-string (format "[%s] File regexp to print: " mess
) "" nil
""))
5748 (defun pr-interactive-dir-args (mess)
5750 ;; get directory argument
5751 (pr-interactive-dir mess
)
5752 ;; get file name regexp
5753 (pr-interactive-regexp mess
)))
5756 (defun pr-interactive-ps-dir-args (mess)
5758 ;; get n-up argument
5759 (pr-interactive-n-up mess
)
5760 ;; get directory argument
5761 (pr-interactive-dir mess
)
5762 ;; get file name regexp
5763 (pr-interactive-regexp mess
)
5764 ;; get output file name
5765 (and (not pr-spool-p
)
5766 (ps-print-preprint current-prefix-arg
))))
5769 (defun pr-interactive-n-up-file (mess)
5771 ;; get n-up argument
5772 (pr-interactive-n-up mess
)
5773 ;; get output file name
5774 (and (not pr-spool-p
)
5775 (ps-print-preprint current-prefix-arg
))))
5778 (defun pr-interactive-n-up-inout (mess)
5780 ;; get n-up argument
5781 (pr-interactive-n-up mess
)
5782 ;; get input file name
5783 (pr-ps-infile-preprint (concat mess
" "))
5784 ;; get output file name
5785 (ps-print-preprint current-prefix-arg
)))
5788 (defun pr-set-outfilename (filename-sym)
5789 (and (not pr-spool-p
)
5790 (eq (symbol-value filename-sym
) t
)
5791 (set filename-sym
(and current-prefix-arg
5792 (ps-print-preprint current-prefix-arg
))))
5793 (and (symbol-value filename-sym
)
5794 (set filename-sym
(pr-dosify-file-name (symbol-value filename-sym
)))))
5797 (defun pr-set-n-up-and-filename (n-up-sym filename-sym mess
)
5799 (or (symbol-value n-up-sym
)
5800 (set n-up-sym
(pr-interactive-n-up mess
)))
5802 (pr-set-outfilename filename-sym
))
5805 (defun pr-set-dir-args (dir-sym regexp-sym mess
)
5807 (or (symbol-value dir-sym
)
5808 (set dir-sym
(pr-interactive-dir mess
)))
5810 (or (symbol-value regexp-sym
)
5811 (set regexp-sym
(pr-interactive-regexp mess
))))
5814 (defun pr-set-ps-dir-args (n-up-sym dir-sym regexp-sym filename-sym mess
)
5816 (or (symbol-value n-up-sym
)
5817 (set n-up-sym
(pr-interactive-n-up mess
)))
5818 ;; directory & file name regexp
5819 (pr-set-dir-args dir-sym regexp-sym mess
)
5821 (pr-set-outfilename filename-sym
))
5824 (defun pr-find-buffer-visiting (file)
5825 (if (not (file-directory-p file
))
5826 (find-buffer-visiting (if ps-windows-system
5829 (let ((truename (file-truename file
))
5830 (blist (buffer-list))
5832 (while (and (not found
) blist
)
5834 (set-buffer (car blist
))
5835 (and (eq major-mode
'dired-mode
)
5837 (goto-char (point-min))
5838 (string= (buffer-substring-no-properties
5844 (setq found
(car blist
))))
5845 (setq blist
(cdr blist
)))
5849 (defun pr-file-list (dir file-regexp fun
)
5850 (mapcar #'(lambda (file)
5851 (and (or pr-list-directory
5852 (not (file-directory-p file
)))
5853 (let ((buffer (pr-find-buffer-visiting file
))
5857 (file-readable-p file
))
5859 (set-buffer (or buffer
5860 (find-file-noselect file
)))
5863 (kill-buffer (current-buffer))))))))
5864 (directory-files dir t file-regexp
)))
5867 (defun pr-delete-file-if-exists (filename)
5868 (and (not pr-spool-p
) (stringp filename
) (file-exists-p filename
)
5869 (delete-file filename
)))
5872 (defun pr-ps-file-list (n-up dir file-regexp filename
)
5873 (pr-delete-file-if-exists (setq filename
(pr-expand-file-name filename
)))
5874 (let ((pr-spool-p t
))
5875 (pr-file-list dir file-regexp
5877 (if (pr-auto-mode-p)
5878 (pr-ps-mode n-up filename
)
5879 (pr-text2ps 'buffer n-up filename
)))))
5881 (pr-despool-print filename
)))
5884 (defun pr-text2ps (kind n-up filename
&optional from to
)
5886 (let ((ps-n-up-printing n-up
)
5887 (ps-spool-config (and (eq ps-spool-config
'setpagedevice
)
5889 (pr-delete-file-if-exists filename
)
5892 ;; pr-faces-p and pr-spool-p
5893 ;; here FILENAME arg is ignored
5894 (cond ((eq kind
'buffer
)
5895 (ps-spool-buffer-with-faces))
5897 (ps-spool-region-with-faces (or from
(point))
5900 ;; pr-faces-p and not pr-spool-p
5902 (ps-print-buffer-with-faces filename
))
5904 (ps-print-region-with-faces (or from
(point))
5905 (or to
(mark)) filename
))
5908 ;; not pr-faces-p and pr-spool-p
5909 ;; here FILENAME arg is ignored
5910 (cond ((eq kind
'buffer
)
5913 (ps-spool-region (or from
(point)) (or to
(mark))))
5915 ;; not pr-faces-p and not pr-spool-p
5917 (ps-print-buffer filename
))
5919 (ps-print-region (or from
(point)) (or to
(mark)) filename
))
5923 (defun pr-command (command)
5924 "Return absolute file name specification for COMMAND.
5926 If COMMAND is an empty string, return it.
5928 If COMMAND is already an absolute file name specification, return it.
5929 Else it uses `pr-path-alist' to find COMMAND, if find it then return it;
5930 otherwise, gives an error.
5932 When using `pr-path-alist' to find COMMAND, the entries `cygwin', `windows' and
5933 `unix' are used (see `pr-path-alist' for documentation).
5935 If Emacs is running on Windows 95/98/NT/2000, tries to find COMMAND,
5936 COMMAND.exe, COMMAND.bat and COMMAND.com in this order."
5937 (if (string= command
"")
5939 (pr-dosify-file-name
5940 (or (pr-find-command command
)
5941 (pr-path-command (cond (pr-cygwin-system 'cygwin
)
5942 (ps-windows-system 'windows
)
5944 (file-name-nondirectory command
)
5946 (error "Command not found: %s"
5947 (file-name-nondirectory command
))))))
5950 (defun pr-path-command (symbol command sym-list
)
5951 (let ((lpath (cdr (assq symbol pr-path-alist
)))
5954 (and (eq symbol
'PATH
) (null lpath
)
5955 (setq lpath
(parse-colon-path (getenv "PATH"))))
5959 (let ((path (car lpath
)))
5963 (and (not (memq path sym-list
))
5964 (pr-path-command path command
5965 (cons path sym-list
))))
5970 (substitute-in-file-name
5971 (concat (file-name-as-directory path
)
5974 (setq lpath
(cdr lpath
)))
5978 (defun pr-find-command (cmd)
5979 (if ps-windows-system
5981 (let ((ext (cons (file-name-extension cmd t
)
5982 (list ".exe" ".bat" ".com")))
5984 (setq cmd
(file-name-sans-extension cmd
))
5986 (setq found
(concat cmd
(car ext
)))
5987 (not (and (file-regular-p found
)
5988 (file-executable-p found
))))
5992 ;; non-windows systems
5993 (and (file-regular-p cmd
)
5994 (file-executable-p cmd
)
5998 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5999 ;; Printing Interface (inspired on ps-print-interface.el)
6007 (defvar pr-i-window-configuration nil
)
6009 (defvar pr-i-buffer nil
)
6010 (defvar pr-i-region nil
)
6011 (defvar pr-i-mode nil
)
6012 (defvar pr-i-despool nil
)
6013 (defvar pr-i-ps-as-is t
)
6014 (defvar pr-i-n-up
1)
6015 (defvar pr-i-directory
"./")
6016 (defvar pr-i-regexp
"")
6017 (defvar pr-i-ps-file
"")
6018 (defvar pr-i-out-file
"")
6019 (defvar pr-i-answer-yes nil
)
6020 (defvar pr-i-process
'buffer
)
6021 (defvar pr-i-ps-send
'printer
)
6024 (defvar pr-interface-map nil
6025 "Keymap for pr-interface.")
6027 (unless pr-interface-map
6028 (setq pr-interface-map
(make-sparse-keymap))
6029 (cond ((featurep 'xemacs
) ; XEmacs
6030 (pr-f-set-keymap-parents pr-interface-map
(list widget-keymap
))
6031 (pr-f-set-keymap-name pr-interface-map
'pr-interface-map
))
6033 (pr-f-set-keymap-parents pr-interface-map widget-keymap
)))
6034 (define-key pr-interface-map
"q" 'pr-interface-quit
)
6035 (define-key pr-interface-map
"?" 'pr-interface-help
))
6038 (defmacro pr-interface-save
(&rest body
)
6040 (set-buffer pr-i-buffer
)
6044 (defun pr-create-interface ()
6045 "Create the front end for printing package."
6046 (setq pr-i-buffer
(buffer-name (current-buffer))
6047 pr-i-region
(ps-mark-active-p)
6048 pr-i-mode
(pr-mode-alist-p)
6049 pr-i-window-configuration
(current-window-configuration))
6051 (put 'pr-i-process
'pr-widget-list nil
)
6052 (put 'pr-i-ps-send
'pr-widget-list nil
)
6054 (delete-other-windows)
6055 (kill-buffer (get-buffer-create pr-buffer-name
))
6056 (switch-to-buffer (get-buffer-create pr-buffer-name
))
6059 (let ((versions (concat "printing v" pr-version
6060 " ps-print v" ps-print-version
)))
6061 (widget-insert (make-string (- 79 (length versions
)) ?\s
) versions
))
6062 (pr-insert-italic "\nCurrent Directory : " 1)
6063 (pr-insert-italic default-directory
)
6065 (pr-insert-section-1) ; 1. Print
6066 (pr-insert-section-2) ; 2. PostScript Printer
6067 (pr-insert-section-3) ; 3. Text Printer
6070 (widget-insert "\n\n " (make-string 77 ?-
))
6072 (pr-insert-section-4) ; 4. Settings
6073 (pr-insert-section-5) ; 5. Customize
6074 (pr-insert-section-6) ; 6. Show Settings
6075 (pr-insert-section-7) ; 7. Help
6077 (use-local-map pr-interface-map
)
6079 (goto-char (point-min))
6081 (and pr-i-region
; let region activated
6082 (pr-keep-region-active)))
6085 (defun pr-insert-section-1 ()
6087 (pr-insert-italic "\nPrint :" 1)
6090 ;; 1a. Buffer: Buffer List
6091 (pr-insert-radio-button 'pr-i-process
'buffer
)
6092 (pr-insert-menu "Buffer List" 'pr-i-buffer
6093 (let ((blist (buffer-list))
6094 case-fold-search choices
)
6096 (let ((name (buffer-name (car blist
)))
6097 (ignore pr-buffer-name-ignore
)
6099 (setq blist
(cdr blist
))
6100 (while (and ignore
(not found
))
6101 (setq found
(string-match (car ignore
) name
)
6102 ignore
(cdr ignore
)))
6114 (setq pr-i-region
(ps-mark-active-p)
6115 pr-i-mode
(pr-mode-alist-p)))
6116 (pr-update-checkbox 'pr-i-region
)
6117 (pr-update-checkbox 'pr-i-mode
)))
6118 ;; 1a. Buffer: Region
6119 (put 'pr-i-region
'pr-widget
6123 #'(lambda (widget &rest ignore
)
6124 (let ((region-p (pr-interface-save
6125 (ps-mark-active-p))))
6126 (cond ((null (widget-value widget
)) ; widget is nil
6127 (setq pr-i-region nil
))
6128 (region-p ; widget is true and there is a region
6129 (setq pr-i-region t
)
6130 (widget-value-set widget t
)
6131 (widget-setup)) ; MUST be called after widget-value-set
6132 (t ; widget is true and there is no region
6134 (message "There is no region active")
6135 (setq pr-i-region nil
)
6136 (widget-value-set widget nil
)
6137 (widget-setup))))) ; MUST be called after widget-value-set
6140 (put 'pr-i-mode
'pr-widget
6144 #'(lambda (widget &rest ignore
)
6145 (let ((mode-p (pr-interface-save
6146 (pr-mode-alist-p))))
6148 ((null (widget-value widget
)) ; widget is nil
6149 (setq pr-i-mode nil
))
6150 (mode-p ; widget is true and there is a `mode'
6152 (widget-value-set widget t
)
6153 (widget-setup)) ; MUST be called after widget-value-set
6154 (t ; widget is true and there is no `mode'
6157 "This buffer isn't in a mode that printing treats specially.")
6158 (setq pr-i-mode nil
)
6159 (widget-value-set widget nil
)
6160 (widget-setup))))) ; MUST be called after widget-value-set
6164 (pr-insert-radio-button 'pr-i-process
'directory
)
6168 :format
" Directory : %v"
6169 :notify
'pr-interface-directory
6170 :action
(lambda (widget &optional event
)
6171 (if (pr-interface-directory widget
)
6172 (pr-widget-field-action widget event
)
6174 (message "Please specify a readable directory")))
6176 ;; 1b. Directory: File Regexp
6177 (widget-create 'regexp
6179 :format
"\n File Regexp : %v\n"
6180 :notify
(lambda (widget &rest ignore
)
6181 (setq pr-i-regexp
(widget-value widget
)))
6183 ;; 1b. Directory: List Directory Entry
6185 (pr-insert-toggle 'pr-list-directory
" List Directory Entry\n")
6187 ;; 1c. PostScript File:
6188 (pr-insert-radio-button 'pr-i-process
'file
)
6192 :format
" PostScript File : %v"
6193 :notify
'pr-interface-infile
6194 :action
(lambda (widget &rest event
)
6195 (if (pr-interface-infile widget
)
6196 (pr-widget-field-action widget event
)
6198 (message "Please specify a readable PostScript file")))
6200 ;; 1c. PostScript File: PostScript Utility
6201 (pr-insert-menu "PostScript Utility" 'pr-ps-utility
6202 (pr-choice-alist pr-ps-utility-alist
)
6203 "\n PostScript Utility : "
6205 ;; 1c. PostScript File: No Preprocessing
6206 (pr-insert-toggle 'pr-i-ps-as-is
" No Preprocessing"))
6209 (defun pr-insert-section-2 ()
6210 ;; 2. PostScript Printer:
6211 ;; 2. PostScript Printer: PostScript Printer List
6212 (pr-insert-italic "\n\nPostScript Printer : " 2 20)
6213 (pr-insert-menu "PostScript Printer" 'pr-ps-name
6214 (pr-choice-alist pr-ps-printer-alist
))
6215 ;; 2. PostScript Printer: Despool
6216 (put 'pr-i-despool
'pr-widget
6220 #'(lambda (widget &rest ignore
)
6222 (setq pr-i-despool
(not pr-i-despool
))
6224 (message "Can despool only when spooling is actually selected")
6225 (setq pr-i-despool nil
))
6226 (widget-value-set widget pr-i-despool
)
6227 (widget-setup)) ; MUST be called after widget-value-set
6229 ;; 2. PostScript Printer: Preview Print Quit
6230 (pr-insert-button 'pr-interface-preview
"Preview" " ")
6231 (pr-insert-button 'pr-interface-ps-print
"Print" " ")
6232 (pr-insert-button 'pr-interface-quit
"Quit")
6233 ;; 2. PostScript Printer: Send to Printer/Temporary File
6234 (pr-insert-radio-button 'pr-i-ps-send
'printer
)
6235 (widget-insert " Send to Printer/Temporary File")
6236 ;; 2. PostScript Printer: Send to File
6237 (pr-insert-radio-button 'pr-i-ps-send
'file
)
6241 :format
" Send to File : %v"
6242 :notify
'pr-interface-outfile
6243 :action
(lambda (widget &rest event
)
6244 (if (and (pr-interface-outfile widget
)
6245 (or (not (file-exists-p pr-i-out-file
))
6246 (setq pr-i-answer-yes
6247 (y-or-n-p "File exists; overwrite? "))))
6248 (pr-widget-field-action widget event
)
6250 (message "Please specify a writable PostScript file")))
6252 ;; 2. PostScript Printer: N-Up
6256 :format
"\n N-Up : %v"
6257 :notify
(lambda (widget &rest ignore
)
6258 (let ((value (if (string= (widget-apply widget
:value-get
) "")
6260 (widget-value widget
))))
6261 (if (and (integerp value
)
6262 (<= 1 value
) (<= value
100))
6265 (setq pr-i-n-up value
))
6267 (message "Please specify an integer between 1 and 100"))))
6271 (defun pr-insert-section-3 ()
6273 (pr-insert-italic "\n\nText Printer : " 2 14)
6274 (pr-insert-menu "Text Printer" 'pr-txt-name
6275 (pr-choice-alist pr-txt-printer-alist
)
6277 (pr-insert-button 'pr-interface-printify
"Printify" " ")
6278 (pr-insert-button 'pr-interface-txt-print
"Print" " ")
6279 (pr-insert-button 'pr-interface-quit
"Quit"))
6282 (defun pr-insert-section-4 ()
6284 ;; 4. Settings: Landscape Auto Region Verbose
6285 (pr-insert-checkbox "\n\n " 'ps-landscape-mode
6286 #'(lambda (&rest ignore
)
6287 (setq ps-landscape-mode
(not ps-landscape-mode
)
6288 pr-file-landscape ps-landscape-mode
))
6290 (pr-insert-toggle 'pr-auto-region
" Auto Region ")
6291 (pr-insert-toggle 'pr-buffer-verbose
" Verbose\n ")
6293 ;; 4. Settings: Print Header Auto Mode
6294 (pr-insert-toggle 'ps-print-header
" Print Header ")
6295 (pr-insert-toggle 'pr-auto-mode
" Auto Mode\n ")
6297 ;; 4. Settings: Print Header Frame Menu Lock
6298 (pr-insert-toggle 'ps-print-header-frame
" Print Header Frame ")
6299 (pr-insert-toggle 'pr-menu-lock
" Menu Lock\n ")
6301 ;; 4. Settings: Line Number
6302 (pr-insert-toggle 'ps-line-number
" Line Number\n ")
6304 ;; 4. Settings: Zebra Stripes Spool Buffer
6305 (pr-insert-toggle 'ps-zebra-stripes
" Zebra Stripes")
6306 (pr-insert-checkbox " "
6308 #'(lambda (&rest ignore
)
6309 (setq pr-spool-p
(not pr-spool-p
))
6311 (setq pr-i-despool nil
)
6312 (pr-update-checkbox 'pr-i-despool
)))
6315 ;; 4. Settings: Duplex Print with faces
6316 (pr-insert-checkbox "\n "
6318 #'(lambda (&rest ignore
)
6319 (setq ps-spool-duplex
(not ps-spool-duplex
)
6320 pr-file-duplex ps-spool-duplex
))
6322 (pr-insert-toggle 'pr-faces-p
" Print with faces")
6324 ;; 4. Settings: Tumble Print via Ghostscript
6325 (pr-insert-checkbox "\n "
6327 #'(lambda (&rest ignore
)
6328 (setq ps-spool-tumble
(not ps-spool-tumble
)
6329 pr-file-tumble ps-spool-tumble
))
6331 (pr-insert-toggle 'pr-print-using-ghostscript
" Print via Ghostscript\n ")
6333 ;; 4. Settings: Upside-Down Page Parity
6334 (pr-insert-toggle 'ps-print-upside-down
" Upside-Down")
6335 (pr-insert-italic "\n\nSelect Pages : " 2 14)
6336 (pr-insert-menu "Page Parity" 'ps-even-or-odd-pages
6337 (mapcar #'(lambda (alist)
6342 :value
(car alist
))))
6343 pr-even-or-odd-alist
)))
6346 (defun pr-insert-section-5 ()
6348 (pr-insert-italic "\n\nCustomize : " 2 11)
6349 (pr-insert-button 'pr-customize
"printing" " ")
6350 (pr-insert-button #'(lambda (&rest ignore
) (ps-print-customize))
6352 (pr-insert-button 'lpr-customize
"lpr"))
6355 (defun pr-insert-section-6 ()
6356 ;; 6. Show Settings:
6357 (pr-insert-italic "\nShow Settings : " 1 14)
6358 (pr-insert-button 'pr-show-pr-setup
"printing" " ")
6359 (pr-insert-button 'pr-show-ps-setup
"ps-print" " ")
6360 (pr-insert-button 'pr-show-lpr-setup
"lpr"))
6363 (defun pr-insert-section-7 ()
6365 (pr-insert-italic "\nHelp : " 1 5)
6366 (pr-insert-button 'pr-interface-help
"Interface Help" " ")
6367 (pr-insert-button 'pr-help
"Menu Help" " ")
6368 (pr-insert-button 'pr-interface-quit
"Quit" "\n ")
6369 (pr-insert-button 'pr-kill-help
"Kill All Printing Help Buffer"))
6372 (defun pr-kill-help (&rest ignore
)
6373 "Kill all printing help buffer."
6375 (let ((help '("*Printing Interface Help*" "*Printing Help*"
6376 "*LPR Setup*" "*PR Setup*" "*PS Setup*")))
6378 (let ((buffer (get-buffer (car help
))))
6379 (setq help
(cdr help
))
6381 (delete-windows-on buffer
)
6382 (kill-buffer buffer
)))))
6383 (recenter (- (window-height) 2)))
6386 (defun pr-interface-quit (&rest ignore
)
6387 "Kill the printing buffer interface and quit."
6389 (kill-buffer pr-buffer-name
)
6390 (set-window-configuration pr-i-window-configuration
))
6393 (defun pr-interface-help (&rest ignore
)
6394 "printing buffer interface help."
6396 (pr-show-setup pr-interface-help-message
"*Printing Interface Help*"))
6399 (defun pr-interface-txt-print (&rest ignore
)
6400 "Print using lpr package."
6402 (condition-case data
6404 ((eq pr-i-process
'directory
)
6407 (pr-txt-directory pr-i-directory pr-i-regexp
)))
6408 ((eq pr-i-process
'buffer
)
6411 (let ((pr-auto-mode pr-i-mode
))
6414 (let (pr-auto-region)
6417 (let (pr-auto-mode pr-auto-region
)
6420 ((eq pr-i-process
'file
)
6421 (error "Please specify a text file"))
6423 (error "Internal error: `pr-i-process' = %S" pr-i-process
))
6428 (message (error-message-string data
)))))
6431 (defun pr-interface-printify (&rest ignore
)
6432 "Printify a buffer."
6434 (condition-case data
6436 ((eq pr-i-process
'directory
)
6439 (pr-printify-directory pr-i-directory pr-i-regexp
)))
6440 ((eq pr-i-process
'buffer
)
6443 (pr-printify-region)
6444 (pr-printify-buffer))))
6445 ((eq pr-i-process
'file
)
6446 (error "Cannot printify a PostScript file"))
6448 (error "Internal error: `pr-i-process' = %S" pr-i-process
))
6453 (message (error-message-string data
)))))
6456 (defun pr-interface-ps-print (&rest ignore
)
6457 "Print using ps-print package."
6459 (pr-interface-ps 'pr-despool-ps-print
'pr-ps-directory-ps-print
6460 'pr-ps-file-ps-print
'pr-ps-file-up-ps-print
6461 'pr-ps-region-ps-print
'pr-ps-mode-ps-print
6462 'pr-ps-buffer-ps-print
))
6465 (defun pr-interface-preview (&rest ignore
)
6466 "Preview a PostScript file."
6468 (pr-interface-ps 'pr-despool-preview
'pr-ps-directory-preview
6469 'pr-ps-file-preview
'pr-ps-file-up-preview
6470 'pr-ps-region-preview
'pr-ps-mode-preview
6471 'pr-ps-buffer-preview
))
6474 (defun pr-interface-ps (ps-despool ps-directory ps-file ps-file-up ps-region
6476 (condition-case data
6477 (let ((outfile (or (and (eq pr-i-process
'file
) pr-i-ps-as-is
)
6480 ((and pr-i-despool pr-spool-p
)
6482 (funcall ps-despool outfile
))
6483 (setq pr-i-despool nil
)
6484 (pr-update-checkbox 'pr-i-despool
))
6485 ((eq pr-i-process
'directory
)
6488 (funcall ps-directory
6489 pr-i-n-up pr-i-directory pr-i-regexp outfile
)))
6490 ((eq pr-i-process
'file
)
6491 (cond ((or (file-directory-p pr-i-ps-file
)
6492 (not (file-readable-p pr-i-ps-file
)))
6493 (error "Please specify a readable PostScript file"))
6496 (funcall ps-file pr-i-ps-file
)))
6499 (funcall ps-file-up pr-i-n-up pr-i-ps-file outfile
)))
6501 ((eq pr-i-process
'buffer
)
6504 (let ((pr-auto-mode pr-i-mode
))
6505 (funcall ps-region pr-i-n-up outfile
)))
6507 (let (pr-auto-region)
6508 (funcall ps-mode pr-i-n-up outfile
)))
6510 (let (pr-auto-mode pr-auto-region
)
6511 (funcall ps-buffer pr-i-n-up outfile
)))
6514 (error "Internal error: `pr-i-process' = %S" pr-i-process
))
6519 (message (error-message-string data
)))))
6522 (defun pr-i-ps-send ()
6523 (cond ((eq pr-i-ps-send
'printer
)
6525 ((not (eq pr-i-ps-send
'file
))
6526 (error "Internal error: `pr-i-ps-send' = %S" pr-i-ps-send
))
6527 ((or (file-directory-p pr-i-out-file
)
6528 (not (file-writable-p pr-i-out-file
)))
6529 (error "Please specify a writable PostScript file"))
6530 ((or (not (file-exists-p pr-i-out-file
))
6532 (setq pr-i-answer-yes
6533 (y-or-n-p (format "File `%s' exists; overwrite? "
6537 (error "File already exists"))))
6540 (defun pr-i-directory ()
6541 (or (and (file-directory-p pr-i-directory
)
6542 (file-readable-p pr-i-directory
))
6543 (error "Please specify be a readable directory")))
6546 (defun pr-interface-directory (widget &rest ignore
)
6547 (and pr-buffer-verbose
6548 (message "You can use M-TAB or ESC TAB for file completion"))
6549 (let ((dir (widget-value widget
)))
6550 (and (file-directory-p dir
)
6551 (file-readable-p dir
)
6552 (setq pr-i-directory dir
))))
6555 (defun pr-interface-infile (widget &rest ignore
)
6556 (and pr-buffer-verbose
6557 (message "You can use M-TAB or ESC TAB for file completion"))
6558 (let ((file (widget-value widget
)))
6559 (and (not (file-directory-p file
))
6560 (file-readable-p file
)
6561 (setq pr-i-ps-file file
))))
6564 (defun pr-interface-outfile (widget &rest ignore
)
6565 (setq pr-i-answer-yes nil
)
6566 (and pr-buffer-verbose
6567 (message "You can use M-TAB or ESC TAB for file completion"))
6568 (let ((file (widget-value widget
)))
6569 (and (not (file-directory-p file
))
6570 (file-writable-p file
)
6571 (setq pr-i-out-file file
))))
6574 (defun pr-widget-field-action (widget event
)
6575 (and (get-buffer "*Completions*") ; clean frame window
6576 (delete-windows-on "*Completions*"))
6577 (message " ") ; clean echo area
6578 (widget-field-action widget event
))
6581 (defun pr-insert-italic (str &optional from to
)
6582 (let ((len (length str
)))
6583 (put-text-property (if from
(max from
0) 0)
6584 (if to
(max to len
) len
)
6586 (widget-insert str
)))
6589 (defun pr-insert-checkbox (before var-sym fun label
)
6590 (widget-insert before
)
6592 (widget-create 'checkbox
6594 (symbol-value var-sym
))
6595 (widget-insert label
)))
6598 (defun pr-insert-toggle (var-sym label
)
6599 (widget-create 'checkbox
6600 :notify
`(lambda (&rest ignore
)
6601 (setq ,var-sym
(not ,var-sym
)))
6602 (symbol-value var-sym
))
6603 (widget-insert label
))
6606 (defun pr-insert-button (fun label
&optional separator
)
6607 (widget-create 'push-button
6611 (widget-insert separator
)))
6614 (defun pr-insert-menu (tag var-sym choices
&optional before after
&rest body
)
6615 (and before
(widget-insert before
))
6616 (eval `(widget-create 'menu-choice
6621 :notify
(lambda (widget &rest ignore
)
6622 (setq ,var-sym
(widget-value widget
))
6624 :void
'(choice-item :format
"%[%t%]"
6625 :tag
"Can not display value!")
6627 (and after
(widget-insert after
)))
6630 (defun pr-insert-radio-button (var-sym sym
)
6631 (widget-insert "\n")
6632 (let ((wid-list (get var-sym
'pr-widget-list
))
6633 (wid (eval `(widget-create
6636 :value
(eq ,var-sym
(quote ,sym
))
6637 :notify
(lambda (&rest ignore
)
6638 (setq ,var-sym
(quote ,sym
))
6639 (pr-update-radio-button (quote ,var-sym
)))))))
6640 (put var-sym
'pr-widget-list
(cons (cons wid sym
) wid-list
))))
6643 (defun pr-update-radio-button (var-sym)
6644 (let ((wid-list (get var-sym
'pr-widget-list
)))
6646 (let ((wid (car (car wid-list
)))
6647 (value (cdr (car wid-list
))))
6648 (setq wid-list
(cdr wid-list
))
6649 (widget-value-set wid
(eq (symbol-value var-sym
) value
))))
6653 (defun pr-update-checkbox (var-sym)
6654 (let ((wid (get var-sym
'pr-widget
)))
6656 (widget-value-set wid
(symbol-value var-sym
))
6660 (defun pr-choice-alist (alist)
6661 (let ((max (apply 'max
(mapcar #'(lambda (alist)
6662 (length (symbol-name (car alist
))))
6664 (mapcar #'(lambda (alist)
6665 (let* ((sym (car alist
))
6666 (name (symbol-name sym
)))
6673 (make-string (- max
(length name
)) ?_
))
6678 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6684 ;; arch-tag: 9ce9ac3f-0f60-4370-900b-1943215d9d18
6685 ;;; printing.el ends here