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