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