annotate lisp/printing.el @ 54738:1c61b23bf7f9

printing doc fix.
author Vinicius Jose Latorre <viniciusjl@ig.com.br>
date Tue, 06 Apr 2004 02:58:04 +0000
parents 32aae36e32af
children e97dd6ea9f71
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1 ;;; printing.el --- printing utilities
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4 ;; Free Software Foundation, Inc.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6 ;; Author: Vinicius Jose Latorre <vinicius@cpqd.com.br>
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
7 ;; Maintainer: Vinicius Jose Latorre <vinicius@cpqd.com.br>
54738
1c61b23bf7f9 printing doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54675
diff changeset
8 ;; Time-stamp: <2004/04/05 23:41:49 vinicius>
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
9 ;; Keywords: wp, print, PostScript
54675
32aae36e32af Var initialization fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54636
diff changeset
10 ;; Version: 6.7.4
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
11 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
12
54675
32aae36e32af Var initialization fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54636
diff changeset
13 (defconst pr-version "6.7.4"
32aae36e32af Var initialization fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54636
diff changeset
14 "printing.el, v 6.7.4 <2004/03/31 vinicius>
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
15
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
16 Please send all bug fixes and enhancements to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
18 ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
19
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
20 ;; This file is part of GNU Emacs.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
21
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
22 ;; GNU Emacs is free software; you can redistribute it and/or modify it under
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
23 ;; the terms of the GNU General Public License as published by the Free
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
24 ;; Software Foundation; either version 2, or (at your option) any later
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
25 ;; version.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
26
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
27 ;; GNU Emacs is distributed in the hope that it will be useful, but WITHOUT ANY
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
28 ;; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
29 ;; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
30 ;; details.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
31
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
32 ;; You should have received a copy of the GNU General Public License along with
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
33 ;; GNU Emacs; see the file COPYING. If not, write to the Free Software
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
34 ;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
35
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
36 ;;; Commentary:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
37
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
38 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
39 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
40 ;; Introduction
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
41 ;; ------------
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
42 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
43 ;; This package provides some printing utilities that includes
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
44 ;; previewing/printing a PostScript file, printing a text file and
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
45 ;; previewing/printing some major modes (like mh-folder-mode,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
46 ;; rmail-summary-mode, gnus-summary-mode, etc).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
47 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
48 ;; `printing' was inspired on:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
49 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
50 ;; print-nt.el Frederic Corne <frederic.corne@erli.fr>
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
51 ;; Special printing functions for Windows NT
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
52 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
53 ;; mh-e-init.el Tom Vogels <tov@ece.cmu.edu>
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
54 ;; PS-print for mail messages
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
55 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
56 ;; win32-ps-print.el Matthew O. Persico <mpersico@erols.com>
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
57 ;; PostScript printing with ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
58 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
59 ;; ps-print-interface.el Volker Franz <volker.franz@tuebingen.mpg.de>
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
60 ;; Graphical front end for ps-print and previewing
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
61 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
62 ;; `printing' is prepared to run on GNU, Unix and NT systems.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
63 ;; On GNU or Unix system, `printing' depends on gs and gv utilities.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
64 ;; On NT system, `printing' depends on gstools (gswin32.exe and gsview32.exe).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
65 ;; To obtain ghostscript, ghostview and GSview see the URL
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
66 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
67 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
68 ;; `printing' also depends on ps-print and lpr GNU Emacs packages.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
69 ;; To download the latest ps-print package see
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
70 ;; `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
71 ;; Please, see README file for ps-print installation instructions.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
72 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
73 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
74 ;; Novices (First Users)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
75 ;; ---------------------
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
76 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
77 ;; First of all, take a glance of printing documentation only to have an idea
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
78 ;; of what `printing' is capable.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
79 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
80 ;; Then try to set the variables: `pr-ps-name', `pr-ps-printer-alist',
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
81 ;; `pr-txt-name', `pr-txt-printer-alist' and `pr-path-alist'. These variables
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
82 ;; are the main variables for printing processing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
83 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
84 ;; Now, please, see these variables documentation more in deep. You can do
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
85 ;; this by typing C-h v pr-ps-name RET (for example) if you already loaded
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
86 ;; printing package, or by browsing printing.el source file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
87 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
88 ;; If the documentation isn't clear or if you find a way to improve the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
89 ;; documentation, please, send an email to maintainer. All printing users
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
90 ;; will thank you.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
91 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
92 ;; One way to set variables is by calling `pr-customize', customize all
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
93 ;; variables and save the customization by future sessions (see Options
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
94 ;; section). Other way is by coding your settings on Emacs init file (that is,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
95 ;; .emacs file), see below for a first setting template that it should be
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
96 ;; inserted on your ~/.emacs file (or c:/_emacs, if you're using Windows 9x/NT
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
97 ;; or MS-DOS):
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
98 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
99 ;; * Example of setting for Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
100 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
101 ;; (require 'printing) ; load printing package
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
102 ;; (setq pr-path-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
103 ;; '((windows "c:/applications/executables" PATH ghostview mpage)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
104 ;; (ghostview "c:/gs/gsview-dir")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
105 ;; (mpage "c:/mpage-dir")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
106 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
107 ;; (setq pr-txt-name 'prt_06a)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
108 ;; (setq pr-txt-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
109 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
110 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
111 ;; (PRN "" nil "PRN")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
112 ;; (standard "redpr.exe" nil "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
113 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
114 ;; (setq pr-ps-name 'lps_06b)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
115 ;; (setq pr-ps-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
116 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
117 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
118 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
119 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
120 ;; (LPT1 "" nil "" "LPT1:")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
121 ;; (PRN "" nil "" "PRN")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
122 ;; (standard "redpr.exe" nil "" "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
123 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
124 ;; (pr-update-menus t) ; update now printer and utility menus
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
125 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
126 ;; * Example of setting for GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
127 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
128 ;; (require 'printing) ; load printing package
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
129 ;; (setq pr-path-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
130 ;; '((unix "." "~/bin" ghostview mpage PATH)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
131 ;; (ghostview "$HOME/bin/gsview-dir")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
132 ;; (mpage "$HOME/bin/mpage-dir")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
133 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
134 ;; (setq pr-txt-name 'prt_06a)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
135 ;; (setq pr-txt-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
136 ;; '((prt_06a "lpr" nil "prt_06a")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
137 ;; (prt_07c nil nil "prt_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
138 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
139 ;; (setq pr-ps-name 'lps_06b)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
140 ;; (setq pr-ps-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
141 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
142 ;; (lps_07c "lpr" nil nil "lps_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
143 ;; (lps_08c nil nil nil "lps_08c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
144 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
145 ;; (pr-update-menus t) ; update now printer and utility menus
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
146 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
147 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
148 ;; NOTE 1: Don't forget to download and install ghostscript utilities (see
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
149 ;; Utilities section).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
150 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
151 ;; NOTE 2: The `printer-name' and `ps-printer-name' variables don't need to be
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
152 ;; set, as they are implicit set by `pr-ps-printer-alist' and
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
153 ;; `pr-txt-printer-alist'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
154 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
155 ;; NOTE 3: The duplex feature will only work on PostScript printers that
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
156 ;; support this feature.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
157 ;; You can check if your PostScript printer supports duplex feature
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
158 ;; by checking the printer manual. Or you can try these steps:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
159 ;; 1. Open a buffer (or use the *scratch* buffer).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
160 ;; 2. Type:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
161 ;; First line (on first page)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
162 ;; ^L
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
163 ;; Second line (on second page)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
164 ;; 3. Print this buffer with duplex turned on.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
165 ;; If it's printed 2 (two) sheets of paper, then your PostScript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
166 ;; printer doesn't have duplex feature; otherwise, it's ok, your
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
167 ;; printer does have duplex feature.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
168 ;;
54326
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
169 ;; NOTE 4: See Tips section.
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
170 ;;
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
171 ;;
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
172 ;; Tips
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
173 ;; ----
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
174 ;;
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
175 ;; 1. If your have a local printer, that is, a printer which is connected
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
176 ;; directly to your computer, don't forget to connect the printer to your
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
177 ;; computer before printing.
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
178 ;;
54333
085835de6939 New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54326
diff changeset
179 ;; 2. If you try to print a file and it seems that the file was printed, but
085835de6939 New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54326
diff changeset
180 ;; there is no paper in the printer, then try to set `pr-delete-temp-file'
085835de6939 New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54326
diff changeset
181 ;; to nil. Probably `printing' is deleting the temporary file before your
085835de6939 New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54326
diff changeset
182 ;; local system can get it to send to the printer.
085835de6939 New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54326
diff changeset
183 ;;
085835de6939 New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54326
diff changeset
184 ;; 3. Don't try to print a dynamic buffer, that is, a buffer which is
085835de6939 New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54326
diff changeset
185 ;; modifying while `printing' tries to print. Eventually you got an error
085835de6939 New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54326
diff changeset
186 ;; message. Instead, save the dynamic buffer to a file or copy it in
085835de6939 New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54326
diff changeset
187 ;; another buffer and, then, print the file or the new static buffer.
085835de6939 New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54326
diff changeset
188 ;; An example of dynamic buffer is the *Messages* buffer.
085835de6939 New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54326
diff changeset
189 ;;
54675
32aae36e32af Var initialization fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54636
diff changeset
190 ;; 4. When running Emacs on Windows with cygwin, check if the
32aae36e32af Var initialization fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54636
diff changeset
191 ;; `pr-shell-file-name' variable is set to the proper shell. This shell
32aae36e32af Var initialization fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54636
diff changeset
192 ;; will execute the commands to preview/print the buffer, file or directory.
54738
1c61b23bf7f9 printing doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54675
diff changeset
193 ;; Also check the setting of `pr-path-style' variable.
1c61b23bf7f9 printing doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54675
diff changeset
194 ;; Probably, you should use:
1c61b23bf7f9 printing doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54675
diff changeset
195 ;;
1c61b23bf7f9 printing doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54675
diff changeset
196 ;; (setq pr-shell-file-name "bash")
1c61b23bf7f9 printing doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54675
diff changeset
197 ;; (setq pr-path-style 'unix)
1c61b23bf7f9 printing doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54675
diff changeset
198 ;;
1c61b23bf7f9 printing doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54675
diff changeset
199 ;; And use / instead of \ when specifying a directory.
54675
32aae36e32af Var initialization fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54636
diff changeset
200 ;;
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
201 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
202 ;; Using `printing'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
203 ;; ----------------
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
204 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
205 ;; To use `printing' insert in your ~/.emacs file (or c:/_emacs, if you're
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
206 ;; using Windows 9x/NT or MS-DOS):
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
207 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
208 ;; (require 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
209 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
210 ;; When `printing' is loaded:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
211 ;; * On Emacs 20:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
212 ;; it replaces the Tools/Print menu by Tools/Printing menu.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
213 ;; * On Emacs 21:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
214 ;; it replaces the File/Print* menu entries by File/Print menu.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
215 ;; Please, see section Menu Layout below for menu explanation.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
216 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
217 ;; To use `printing' utilities you can use the Printing menu options, type M-x
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
218 ;; followed by one of the commands below, or type a key associated with the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
219 ;; command you want (if there is a key binding).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
220 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
221 ;; `printing' has the following commands:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
222 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
223 ;; pr-interface
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
224 ;; pr-ps-directory-preview
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
225 ;; pr-ps-directory-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
226 ;; pr-ps-directory-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
227 ;; pr-ps-directory-ps-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
228 ;; pr-ps-buffer-preview
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
229 ;; pr-ps-buffer-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
230 ;; pr-ps-buffer-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
231 ;; pr-ps-buffer-ps-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
232 ;; pr-ps-region-preview
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
233 ;; pr-ps-region-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
234 ;; pr-ps-region-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
235 ;; pr-ps-region-ps-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
236 ;; pr-ps-mode-preview
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
237 ;; pr-ps-mode-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
238 ;; pr-ps-mode-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
239 ;; pr-ps-mode-ps-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
240 ;; pr-ps-file-preview
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
241 ;; pr-ps-file-up-preview
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
242 ;; pr-ps-file-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
243 ;; pr-ps-file-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
244 ;; pr-ps-file-ps-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
245 ;; pr-ps-file-up-ps-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
246 ;; pr-ps-fast-fire
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
247 ;; pr-despool-preview
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
248 ;; pr-despool-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
249 ;; pr-despool-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
250 ;; pr-despool-ps-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
251 ;; pr-printify-directory
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
252 ;; pr-printify-buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
253 ;; pr-printify-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
254 ;; pr-txt-directory
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
255 ;; pr-txt-buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
256 ;; pr-txt-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
257 ;; pr-txt-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
258 ;; pr-txt-fast-fire
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
259 ;; pr-toggle-file-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
260 ;; pr-toggle-file-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
261 ;; pr-toggle-file-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
262 ;; pr-toggle-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
263 ;; pr-toggle-faces
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
264 ;; pr-toggle-spool
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
265 ;; pr-toggle-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
266 ;; pr-toggle-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
267 ;; pr-toggle-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
268 ;; pr-toggle-upside-down
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
269 ;; pr-toggle-line
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
270 ;; pr-toggle-zebra
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
271 ;; pr-toggle-header
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
272 ;; pr-toggle-lock
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
273 ;; pr-toggle-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
274 ;; pr-toggle-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
275 ;; pr-customize
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
276 ;; lpr-customize
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
277 ;; pr-help
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
278 ;; pr-ps-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
279 ;; pr-txt-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
280 ;; pr-ps-utility
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
281 ;; pr-show-ps-setup
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
282 ;; pr-show-pr-setup
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
283 ;; pr-show-lpr-setup
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
284 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
285 ;; The general meanings of above commands are:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
286 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
287 ;; PREFIX:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
288 ;; `pr-interface' buffer interface for printing package.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
289 ;; `pr-help' help for printing package.
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
290 ;; `pr-ps-name' interactively select a PostScript printer.
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
291 ;; `pr-txt-name' interactively select a text printer.
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
292 ;; `pr-ps-utility' interactively select a PostScript utility.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
293 ;; `pr-show-*-setup' show current settings.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
294 ;; `pr-ps-*' deal with PostScript code generation.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
295 ;; `pr-txt-*' deal with text generation.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
296 ;; `pr-toggle-*' toggle on/off some boolean variable.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
297 ;; `pr-despool-*' despool the PostScript spooling buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
298 ;; `pr-printify-*' replace nonprintable ASCII by printable ASCII
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
299 ;; representation.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
300 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
301 ;; SUFFIX:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
302 ;; `*-customize' customization.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
303 ;; `*-preview' preview a PostScript file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
304 ;; `*-using-ghostscript' use ghostscript to print.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
305 ;; `*-fast-fire' fast fire command (see it for documentation).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
306 ;; `*-print' send PostScript directly to printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
307 ;; `*-ps-print' send PostScript directly to printer or use
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
308 ;; ghostscript to print. It depends on
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
309 ;; `pr-print-using-ghostscript' option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
310 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
311 ;; INFIX/SUFFIX:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
312 ;; `*-directory*' process a directory.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
313 ;; `*-buffer*' process a buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
314 ;; `*-region*' process a region.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
315 ;; `*-mode*' process a major mode (see explanation below).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
316 ;; `*-file-*' process a PostScript file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
317 ;; `*-file-up-*' process a PostScript file using a filter utility.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
318 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
319 ;; Here are some examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
320 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
321 ;; `pr-ps-buffer-using-ghostscript'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
322 ;; Use ghostscript to print a buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
323 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
324 ;; `pr-ps-file-print'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
325 ;; Print a PostScript file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
326 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
327 ;; `pr-toggle-spool'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
328 ;; Toggle spooling buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
329 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
330 ;; So you can preview through ghostview, use ghostscript to print (if you don't
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
331 ;; have a PostScript printer) or send directly to printer a PostScript code
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
332 ;; generated by `ps-print' package.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
333 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
334 ;; Besides operating one buffer or region each time, you also can postpone
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
335 ;; previewing or printing by saving the PostScript code generated in a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
336 ;; temporary Emacs buffer. This way you can save banner pages between
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
337 ;; successive printing. You can toggle on/off spooling by invoking
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
338 ;; `pr-toggle-spool' interactively or through menu bar.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
339 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
340 ;; If you type, for example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
341 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
342 ;; C-u M-x pr-ps-buffer-print RET
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
343 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
344 ;; The `pr-ps-buffer-print' command prompts you for a n-up printing number and
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
345 ;; a file name, and save the PostScript code generated to the file name instead
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
346 ;; of sending to printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
347 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
348 ;; This behavior is similar with the commands that deal with PostScript code
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
349 ;; generation, that is, with `pr-ps-*' and `pr-despool-*' commands. If
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
350 ;; spooling is on, only `pr-despool-*' commands prompt for a file name and save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
351 ;; the PostScript code spooled in this file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
352 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
353 ;; Besides the behavior described above, the `*-directory*' commands also
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
354 ;; prompt for a directory and a file name regexp. So, it's possible to process
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
355 ;; all or certain files on a directory at once (see also documentation for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
356 ;; `pr-list-directory').
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
357 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
358 ;; `printing' has also a special way to handle some major mode through
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
359 ;; `*-mode*' commands. So it's possible to customize a major mode printing,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
360 ;; it's only needed to declare the customization in `pr-mode-alist' (see
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
361 ;; section Options) and invoke some of `*-mode*' commands. An example for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
362 ;; major mode usage is when you're using gnus (or mh, or rmail, etc.) and
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
363 ;; you're in the *Summary* buffer, if you forget to switch to the *Article*
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
364 ;; buffer before printing, you'll get a nicely formatted list of article
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
365 ;; subjects shows up at the printer. With major mode printing you don't need
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
366 ;; to switch from gnus *Summary* buffer first.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
367 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
368 ;; Current global keyboard mapping for GNU Emacs is:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
369 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
370 ;; (global-set-key [print] 'pr-ps-fast-fire)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
371 ;; (global-set-key [M-print] 'pr-ps-mode-using-ghostscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
372 ;; (global-set-key [C-print] 'pr-txt-fast-fire)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
373 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
374 ;; And for XEmacs is:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
375 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
376 ;; (global-set-key 'f22 'pr-ps-fast-fire)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
377 ;; (global-set-key '(meta f22) 'pr-ps-mode-using-ghostscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
378 ;; (global-set-key '(control f22) 'pr-txt-fast-fire)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
379 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
380 ;; As a suggestion of global keyboard mapping for some `printing' commands:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
381 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
382 ;; (global-set-key "\C-ci" 'pr-interface)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
383 ;; (global-set-key "\C-cbp" 'pr-ps-buffer-print)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
384 ;; (global-set-key "\C-cbx" 'pr-ps-buffer-preview)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
385 ;; (global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
386 ;; (global-set-key "\C-crp" 'pr-ps-region-print)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
387 ;; (global-set-key "\C-crx" 'pr-ps-region-preview)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
388 ;; (global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
389 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
390 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
391 ;; Options
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
392 ;; -------
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
393 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
394 ;; Below it's shown a brief description of `printing' options, please, see the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
395 ;; options declaration in the code for a long documentation.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
396 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
397 ;; `pr-path-style' Specify which path style to use for external
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
398 ;; commands.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
399 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
400 ;; `pr-path-alist' Specify an alist for command paths.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
401 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
402 ;; `pr-txt-name' Specify a printer for printing a text file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
403 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
404 ;; `pr-txt-printer-alist' Specify an alist of all text printers.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
405 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
406 ;; `pr-ps-name' Specify a printer for printing a PostScript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
407 ;; file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
408 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
409 ;; `pr-ps-printer-alist' Specify an alist for all PostScript printers.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
410 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
411 ;; `pr-temp-dir' Specify a directory for temporary files during
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
412 ;; printing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
413 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
414 ;; `pr-ps-temp-file' Specify PostScript temporary file name.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
415 ;;
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
416 ;; `pr-gv-command' Specify path and name of the gsview/gv
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
417 ;; utility.
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
418 ;;
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
419 ;; `pr-gs-command' Specify path and name of the ghostscript
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
420 ;; utility.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
421 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
422 ;; `pr-gs-switches' Specify ghostscript switches.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
423 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
424 ;; `pr-gs-device' Specify ghostscript device switch value.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
425 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
426 ;; `pr-gs-resolution' Specify ghostscript resolution switch value.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
427 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
428 ;; `pr-print-using-ghostscript' Non-nil means print using ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
429 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
430 ;; `pr-faces-p' Non-nil means print with face attributes.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
431 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
432 ;; `pr-spool-p' Non-nil means spool printing in a buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
433 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
434 ;; `pr-file-landscape' Non-nil means print PostScript file in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
435 ;; landscape orientation.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
436 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
437 ;; `pr-file-duplex' Non-nil means print PostScript file in duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
438 ;; mode.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
439 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
440 ;; `pr-file-tumble' Non-nil means print PostScript file in tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
441 ;; mode.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
442 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
443 ;; `pr-auto-region' Non-nil means region is automagically detected.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
444 ;;
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
445 ;; `pr-auto-mode' Non-nil means major-mode specific printing is
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
446 ;; prefered over normal printing.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
447 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
448 ;; `pr-mode-alist' Specify an alist for a major-mode and printing
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
449 ;; function.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
450 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
451 ;; `pr-ps-utility' Specify PostScript utility processing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
452 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
453 ;; `pr-ps-utility-alist' Specify an alist for PostScript utility
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
454 ;; processing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
455 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
456 ;; `pr-menu-lock' Non-nil means menu is locked while selecting
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
457 ;; toggle options.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
458 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
459 ;; `pr-menu-char-height' Specify menu char height in pixels.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
460 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
461 ;; `pr-menu-char-width' Specify menu char width in pixels.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
462 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
463 ;; `pr-setting-database' Specify an alist for settings in general.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
464 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
465 ;; `pr-visible-entry-list' Specify a list of Printing menu visible
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
466 ;; entries.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
467 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
468 ;; `pr-delete-temp-file' Non-nil means delete temporary files.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
469 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
470 ;; `pr-list-directory' Non-nil means list directory when processing a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
471 ;; directory.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
472 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
473 ;; `pr-buffer-name' Specify the name of the buffer interface for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
474 ;; printing package.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
475 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
476 ;; `pr-buffer-name-ignore' Specify a regexp list for buffer names to be
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
477 ;; ignored in interface buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
478 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
479 ;; `pr-buffer-verbose' Non-nil means to be verbose when editing a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
480 ;; field in interface buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
481 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
482 ;; `pr-shell-file-name' Specify file name to load inferior shells
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
483 ;; from.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
484 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
485 ;; To set the above options you may:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
486 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
487 ;; a) insert the code in your ~/.emacs, like:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
488 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
489 ;; (setq pr-faces-p t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
490 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
491 ;; This way always keep your default settings when you enter a new Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
492 ;; session.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
493 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
494 ;; b) or use `set-variable' in your Emacs session, like:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
495 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
496 ;; M-x set-variable RET pr-faces-p RET t RET
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
497 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
498 ;; This way keep your settings only during the current Emacs session.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
499 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
500 ;; c) or use customization, for example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
501 ;; click on menu-bar *Help* option,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
502 ;; then click on *Customize*,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
503 ;; then click on *Browse Customization Groups*,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
504 ;; expand *PostScript* group,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
505 ;; expand *Printing* group
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
506 ;; and then customize `printing' options.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
507 ;; Through this way, you may choose if the settings are kept or not when
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
508 ;; you leave out the current Emacs session.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
509 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
510 ;; d) or see the option value:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
511 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
512 ;; C-h v pr-faces-p RET
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
513 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
514 ;; and click the *customize* hypertext button.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
515 ;; Through this way, you may choose if the settings are kept or not when
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
516 ;; you leave out the current Emacs session.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
517 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
518 ;; e) or invoke:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
519 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
520 ;; M-x pr-customize RET
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
521 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
522 ;; and then customize `printing' options.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
523 ;; Through this way, you may choose if the settings are kept or not when
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
524 ;; you leave out the current Emacs session.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
525 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
526 ;; f) or use menu bar, for example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
527 ;; click on menu-bar *File* option,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
528 ;; then click on *Printing*,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
529 ;; then click on *Customize*,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
530 ;; then click on *printing*
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
531 ;; and then customize `printing' options.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
532 ;; Through this way, you may choose if the settings are kept or not when
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
533 ;; you leave out the current Emacs session.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
534 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
535 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
536 ;; Menu Layout
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
537 ;; -----------
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
538 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
539 ;; The `printing' menu (Tools/Printing or File/Print) has the following layout:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
540 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
541 ;; +-----------------------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
542 ;; A 0 | Printing Interface |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
543 ;; +-----------------------------+ +-A---------+ +-B------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
544 ;; I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
545 ;; 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
546 ;; 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
547 ;; +-----------------------------+ |Mode >|-- B |Other...|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
548 ;; II 4 | Printify >|-----\ |File >|--\ +--------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
549 ;; 5 | Print >|---\ | |Despool... | |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
550 ;; 6 | Text Printer: name >|-\ | | +-----------+ |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
551 ;; +-----------------------------+ | | | +---------+ +------------+
54210
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
552 ;; III 7 |[ ]Landscape | | | \-|Directory| | No Prep... | Ia
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
553 ;; 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
554 ;; 9 |[ ]Print Header Frame | | | |Region | | name >|- C
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
555 ;; 10 |[ ]Line Number | | | +---------+ +------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
556 ;; 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
557 ;; 12 |[ ]Duplex | | \---|Directory| | 2-up... |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
558 ;; 13 |[ ]Tumble | \--\ |Buffer | | 4-up... |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
559 ;; 14 |[ ]Upside-Down | | |Region | | Other... |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
560 ;; 15 | Print All Pages >|--\ | |Mode | +------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
561 ;; +-----------------------------+ | | +---------+ |[ ]Landscape| Id
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
562 ;; IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
563 ;; 17 |[ ]Print with faces | | \--|( )name A| |[ ]Tumble | If
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
564 ;; 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
565 ;; +-----------------------------+ | |... |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
566 ;; V 19 |[ ]Auto Region | | |(*)name |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
567 ;; 20 |[ ]Auto Mode | | |... |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
568 ;; 21 |[ ]Menu Lock | | +---------+ +--------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
569 ;; +-----------------------------+ \------------------|(*)All Pages |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
570 ;; VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
571 ;; 23 | Show Settings >|-------|printing| |( )Odd Pages |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
572 ;; 24 | Help | |ps-print| |( )Even Sheets|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
573 ;; +-----------------------------+ |lpr | |( )Odd Sheets |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
574 ;; +--------+ +--------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
575 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
576 ;; See `pr-visible-entry-list' for hiding some parts of the menu.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
577 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
578 ;; The menu has the following sections:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
579 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
580 ;; A. Interface:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
581 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
582 ;; 0. You can use a buffer interface instead of menus. It looks like the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
583 ;; customization buffer. Basically, it has the same options found in the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
584 ;; menu and some extra options, all this on a buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
585 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
586 ;; I. PostScript printing:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
587 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
588 ;; 1. You can generate a PostScript file (if you type C-u before activating
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
589 ;; menu) or PostScript temporary file for a directory, a buffer, a region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
590 ;; or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
591 ;; after file generation, ghostview is activated using the file generated
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
592 ;; as argument. This option is disabled if spooling is on (option 16).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
593 ;; Also, if you already have a PostScript file you can preview it.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
594 ;; Instead of previewing each buffer, region or major mode at once, you
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
595 ;; can save temporarily the PostScript code generated in a buffer and
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
596 ;; preview it later. The option `Despool...' despools the PostScript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
597 ;; spooling buffer in a temporary file and uses ghostview to preview it.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
598 ;; If you type C-u before choosing this option, the PostScript code
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
599 ;; generated is saved in a file instead of saving in a temporary file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
600 ;; To spool the PostScript code generated you need to turn on the option
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
601 ;; 16. The option `Despool...' is enabled if spooling is on (option
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
602 ;; 16).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
603 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
604 ;; NOTE 1: It's possible to customize a major mode printing, just declare
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
605 ;; the customization in `pr-mode-alist' and invoke some of
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
606 ;; `*-mode*' commands or select Mode option in Printing menu. An
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
607 ;; example for major mode usage is when you're using gnus (or mh,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
608 ;; or rmail, etc.) and you're in the *Summary* buffer, if you
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
609 ;; forget to switch to the *Article* buffer before printing,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
610 ;; you'll get a nicely formatted list of article subjects shows
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
611 ;; up at the printer. With major mode printing you don't need to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
612 ;; switch from gnus *Summary* buffer first.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
613 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
614 ;; NOTE 2: There are the following options for PostScript file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
615 ;; processing:
54210
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
616 ;; Ia. Print the file *No Preprocessing*, that is, send it
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
617 ;; directly to PostScript printer.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
618 ;; Ib. PostScript utility processing selection.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
619 ;; See `pr-ps-utility-alist' and `pr-setting-database' for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
620 ;; documentation.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
621 ;; Ic. Do n-up processing before printing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
622 ;; Id. Toggle on/off landscape for PostScript file processing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
623 ;; Ie. Toggle on/off duplex for PostScript file processing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
624 ;; If. Toggle on/off tumble for PostScript file processing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
625 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
626 ;; NOTE 3: Don't forget to download and install the utilities declared on
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
627 ;; `pr-ps-utility-alist'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
628 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
629 ;; 2. Operate the same way as option 1, but it sends directly the PostScript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
630 ;; code (or put in a file, if you've typed C-u) or it uses ghostscript to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
631 ;; print the PostScript file generated. It depends on option 18, if it's
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
632 ;; turned on, it uses ghostscript; otherwise, it sends directly to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
633 ;; printer. If spooling is on (option 16), the PostScript code is saved
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
634 ;; temporarily in a buffer instead of printing it or saving it in a file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
635 ;; Also, if you already have a PostScript file you can print it. Instead
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
636 ;; of printing each buffer, region or major mode at once, you can save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
637 ;; temporarily the PostScript code generated in a buffer and print it
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
638 ;; later. The option `Despool...' despools the PostScript spooling
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
639 ;; buffer directly on a printer. If you type C-u before choosing this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
640 ;; option, the PostScript code generated is saved in a file instead of
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
641 ;; sending to printer. To spool the PostScript code generated you need
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
642 ;; to turn on the option 16. This option is enabled if spooling is on
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
643 ;; (option 16). See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
644 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
645 ;; 3. You can select a new PostScript printer to send PostScript code
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
646 ;; generated. For selection it's used all PostScript printers defined
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
647 ;; in `pr-ps-printer-alist' variable (see it for documentation).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
648 ;; See also `pr-setting-database'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
649 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
650 ;; II. Text printing:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
651 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
652 ;; 4. If you have control characters (character code from \000 to \037) in a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
653 ;; buffer and you want to print them in a text printer, select this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
654 ;; option. All control characters in your buffer or region will be
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
655 ;; replaced by a printable representation. The printable representations
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
656 ;; use ^ (for ASCII control characters) or hex. The characters tab,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
657 ;; linefeed, space, return and formfeed are not affected. You don't need
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
658 ;; to select this option if you use any option of section I, the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
659 ;; PostScript engine treats control characters properly.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
660 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
661 ;; 5. If you want to print a directory, buffer, region or major mode in a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
662 ;; text printer, select this option. See also the NOTE 1 on option 1.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
663 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
664 ;; 6. You can select a new text printer to send text generated. For
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
665 ;; selection it's used all text printers defined in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
666 ;; `pr-txt-printer-alist' variable (see it for documentation).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
667 ;; See also `pr-setting-database'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
668 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
669 ;; III. PostScript page toggle options:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
670 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
671 ;; 7. If you want a PostScript landscape printing, turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
672 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
673 ;; 8. If you want to have a header in each page in your PostScript code,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
674 ;; turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
675 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
676 ;; 9. If you want to draw a gaudy frame around the header, turn on this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
677 ;; option. This option is enabled if print header is on (option 8).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
678 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
679 ;; 10. If you want that the line number is printed in your PostScript code,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
680 ;; turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
681 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
682 ;; 11. If you want background zebra stripes in your PostScript code, turn on
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
683 ;; this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
684 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
685 ;; 12. If you want a duplex printing and your PostScript printer has this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
686 ;; feature, turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
687 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
688 ;; 13. If you turned on duplex printing, you can choose if you want to have
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
689 ;; a printing suitable for binding on the left or right (tumble off), or
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
690 ;; to have a printing suitable for binding at top or bottom (tumble on).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
691 ;; This option is enabled if duplex is on (option 12).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
692 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
693 ;; 14. If you want a PostScript upside-down printing, turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
694 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
695 ;; 15. With this option, you can choose if you want to print all pages, odd
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
696 ;; pages, even pages, odd sheets or even sheets.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
697 ;; See also `ps-even-or-odd-pages'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
698 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
699 ;; IV. PostScript processing toggle options:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
700 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
701 ;; 16. If you want to spool the PostScript code generated, turn on this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
702 ;; option. To spool the PostScript code generated use option 2. You
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
703 ;; can despool later by choosing option 1 or 2, sub-option `Despool...'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
704 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
705 ;; 17. If you use colors in your buffers and want to see these colors on
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
706 ;; your PostScript code generated, turn on this option. If you have a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
707 ;; black/white PostScript printer, these colors are displayed in gray
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
708 ;; scale by PostScript printer interpreter.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
709 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
710 ;; 18. If you don't have a PostScript printer to send PostScript files, turn
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
711 ;; on this option. When this option is on, the ghostscript is used to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
712 ;; print PostScript files. In GNU or Unix system, if ghostscript is set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
713 ;; as a PostScript filter, you don't need to turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
714 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
715 ;; V. Printing customization:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
716 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
717 ;; 19. If you want that region is automagically detected, turn on this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
718 ;; option. Note that this will only work if you're using transient mark
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
719 ;; mode. When this option is on, the `*-buffer*' commands will behave
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
720 ;; like `*-region*' commands, that is, `*-buffer*' commands will print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
721 ;; only the region marked instead of all buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
722 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
723 ;; 20. Turn this option on if you want that when current major-mode is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
724 ;; declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
725 ;; behave like `*-mode*' commands.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
726 ;;
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
727 ;; 21. If you want that Printing menu stays open while you are setting
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
728 ;; toggle options, turn on this option. The variables
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
729 ;; `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
730 ;; menu position, so don't forget to adjust these variables if menu
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
731 ;; position is not ok.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
732 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
733 ;; VI. Customization:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
734 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
735 ;; 22. Besides all options in section III, IV and V, you can customize much
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
736 ;; more PostScript options in `ps-print' option. Or you can customize
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
737 ;; some `lpr' options for text printing. Or customize `printing'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
738 ;; options.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
739 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
740 ;; 23. Show current settings for `printing', `ps-print' or `lpr'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
741 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
742 ;; 24. Quick help for printing menu layout.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
743 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
744 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
745 ;; Option Settings
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
746 ;; ---------------
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
747 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
748 ;; Below it's shown only the main options that affect all `printing' package.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
749 ;; Check all the settings below *BEFORE* running `printing' commands.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
750 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
751 ;; * Example of setting for GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
752 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
753 ;; (require 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
754 ;; (setq pr-path-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
755 ;; '((unix "." "~/bin" ghostview mpage PATH)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
756 ;; (ghostview "$HOME/bin/gsview-dir")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
757 ;; (mpage "$HOME/bin/mpage-dir")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
758 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
759 ;; (setq pr-txt-name 'prt_06a)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
760 ;; (setq pr-txt-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
761 ;; '((prt_06a "lpr" nil "prt_06a")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
762 ;; (prt_07c nil nil "prt_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
763 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
764 ;; (setq pr-ps-name 'lps_06b)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
765 ;; (setq pr-ps-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
766 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
767 ;; (lps_07c "lpr" nil nil "lps_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
768 ;; (lps_08c nil nil nil "lps_08c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
769 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
770 ;; (setq pr-temp-dir "/tmp/")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
771 ;; (setq pr-gv-command "gv")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
772 ;; (setq pr-gs-command "gs")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
773 ;; (setq pr-gs-switches '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
774 ;; (setq pr-gs-device "uniprint")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
775 ;; (setq pr-gs-resolution 300)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
776 ;; (setq pr-ps-utility 'mpage)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
777 ;; (setq pr-ps-utility-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
778 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
779 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
780 ;; (inherits-from: . no-duplex))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
781 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
782 ;; (setq pr-setting-database
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
783 ;; '((no-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
784 ;; nil nil nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
785 ;; (pr-file-duplex . nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
786 ;; (pr-file-tumble . nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
787 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
788 ;; (pr-update-menus t) ; update now printer and utility menus
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
789 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
790 ;; * Example of setting for Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
791 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
792 ;; (require 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
793 ;; (setq pr-path-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
794 ;; '((windows "c:/applications/executables" PATH ghostview mpage)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
795 ;; (ghostview "c:/gs/gsview-dir")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
796 ;; (mpage "c:/mpage-dir")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
797 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
798 ;; (setq pr-txt-name 'prt_06a)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
799 ;; (setq pr-txt-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
800 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
801 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
802 ;; (PRN "" nil "PRN")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
803 ;; (standard "redpr.exe" nil "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
804 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
805 ;; (setq pr-ps-name 'lps_06b)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
806 ;; (setq pr-ps-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
807 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
808 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
809 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
810 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
811 ;; (LPT1 "" nil "" "LPT1:")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
812 ;; (PRN "" nil "" "PRN")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
813 ;; (standard "redpr.exe" nil "" "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
814 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
815 ;; (setq pr-temp-dir "C:/WINDOWS/TEMP/")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
816 ;; (setq pr-gv-command "c:/gs/gsview/gsview32.exe")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
817 ;; (setq pr-gs-command "c:/gs/gswin32.exe")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
818 ;; (setq pr-gs-switches '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
819 ;; (setq pr-gs-device "mswinpr2")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
820 ;; (setq pr-gs-resolution 300)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
821 ;; (setq pr-ps-utility 'psnup)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
822 ;; (setq pr-ps-utility-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
823 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
824 ;; nil (inherits-from: . no-duplex))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
825 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
826 ;; (setq pr-setting-database
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
827 ;; '((no-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
828 ;; nil nil nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
829 ;; (pr-file-duplex . nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
830 ;; (pr-file-tumble . nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
831 ;; ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
832 ;; (pr-update-menus t) ; update now printer and utility menus
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
833 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
834 ;; NOTE: Don't forget to download and install the utilities declared on
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
835 ;; `pr-ps-utility-alist'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
836 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
837 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
838 ;; Utilities
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
839 ;; ---------
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
840 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
841 ;; `printing' package has the following utilities:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
842 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
843 ;; `pr-setup' Return the current `printing' setup.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
844 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
845 ;; `lpr-setup' Return the current `lpr' setup.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
846 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
847 ;; `pr-update-menus' Update utility, PostScript and text printer menus.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
848 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
849 ;; Below are some URL where you can find good utilities.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
850 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
851 ;; * For `printing' package:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
852 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
853 ;; printing `http://www.cpqd.com.br/~vinicius/emacs/printing.el.gz'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
854 ;; ps-print `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
855 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
856 ;; * For GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
857 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
858 ;; gs, gv `http://www.gnu.org/software/ghostscript/ghostscript.html'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
859 ;; enscript `http://people.ssh.fi/mtr/genscript/'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
860 ;; psnup `http://www.dcs.ed.ac.uk/home/ajcd/psutils/index.html'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
861 ;; mpage `http://www.mesa.nl/pub/mpage/'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
862 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
863 ;; * For Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
864 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
865 ;; gswin32, gsview32
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
866 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
867 ;; enscript `http://people.ssh.fi/mtr/genscript/'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
868 ;; psnup `http://www.dcs.ed.ac.uk/home/ajcd/psutils/index.html'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
869 ;; redmon `http://www.cs.wisc.edu/~ghost/redmon/'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
870 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
871 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
872 ;; Acknowledgments
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
873 ;; ---------------
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
874 ;;
54326
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
875 ;; Thanks to Drew Adams <drew.adams@oracle.com> for directory processing and
814ffa309985 Doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54210
diff changeset
876 ;; `pr-path-alist' suggestions.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
877 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
878 ;; Thanks to Fred Labrosse <f.labrosse@maths.bath.ac.uk> for XEmacs tests.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
879 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
880 ;; Thanks to Klaus Berndl <klaus.berndl@sdm.de> for invaluable help/debugging
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
881 ;; and for suggestions:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
882 ;; - even/odd pages printing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
883 ;; - ghostscript parameters for `pr-ps-printer-alist'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
884 ;; - default printer name.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
885 ;; - completion functions.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
886 ;; - automagic region detection.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
887 ;; - menu entry hiding.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
888 ;; - fast fire PostScript printing command.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
889 ;; - `pr-path-style' variable.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
890 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
891 ;; Thanks to Kim F. Storm <storm@filanet.dk> for beta-test and for suggestions:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
892 ;; - PostScript Print and PostScript Print Preview merge.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
893 ;; - Tools/Printing menu.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
894 ;; - replace *-using-preview by *-using-ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
895 ;; - printer selection.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
896 ;; - extra parameters for `pr-ps-printer-alist'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
897 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
898 ;; Thanks to:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
899 ;; Frederic Corne <frederic.corne@erli.fr> print-nt.el
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
900 ;; Tom Vogels <tov@ece.cmu.edu> mh-e-init.el
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
901 ;; Matthew O. Persico <mpersico@erols.com> win32-ps-print.el
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
902 ;; Volker Franz <volker.franz@tuebingen.mpg.de> ps-print-interface.el
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
903 ;; And to all people who contributed with them.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
904 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
905 ;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
906 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
907
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
908 ;;; Code:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
909
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
910
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
911 (require 'lpr)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
912 (require 'ps-print)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
913
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
914
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
915 (and (string< ps-print-version "6.5.7")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
916 (error "`printing' requires `ps-print' package version 6.5.7 or later."))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
917
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
918
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
919 (eval-and-compile
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
920 (defconst pr-cygwin-system
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
921 (and ps-windows-system (getenv "OSTYPE")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
922 (string-match "cygwin" (getenv "OSTYPE")))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
923
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
924
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
925 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
926 ;; To avoid compilation gripes
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
927
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
928
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
929 (eval-and-compile
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
930
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
931 (or (fboundp 'subst-char-in-string)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
932 (defun subst-char-in-string (fromchar tochar string &optional inplace)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
933 "Replace FROMCHAR with TOCHAR in STRING each time it occurs.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
934 Unless optional argument INPLACE is non-nil, return a new string."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
935 (let ((i (length string))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
936 (newstr (if inplace string (copy-sequence string))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
937 (while (> (setq i (1- i)) 0)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
938 (if (eq (aref newstr i) fromchar)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
939 (aset newstr i tochar)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
940 newstr)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
941
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
942 ;; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
943 (defalias 'pr-e-frame-char-height 'frame-char-height)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
944 (defalias 'pr-e-frame-char-width 'frame-char-width)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
945 (defalias 'pr-e-mouse-pixel-position 'mouse-pixel-position)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
946 ;; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
947 (defalias 'pr-x-add-submenu 'add-submenu)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
948 (defalias 'pr-x-event-function 'event-function)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
949 (defalias 'pr-x-event-object 'event-object)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
950 (defalias 'pr-x-find-menu-item 'find-menu-item)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
951 (defalias 'pr-x-font-height 'font-height)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
952 (defalias 'pr-x-font-width 'font-width)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
953 (defalias 'pr-x-get-popup-menu-response 'get-popup-menu-response)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
954 (defalias 'pr-x-make-event 'make-event)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
955 (defalias 'pr-x-misc-user-event-p 'misc-user-event-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
956 (defalias 'pr-x-relabel-menu-item 'relabel-menu-item)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
957 (defalias 'pr-x-event-x-pixel 'event-x-pixel)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
958 (defalias 'pr-x-event-y-pixel 'event-y-pixel)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
959
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
960 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
961 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
962 (defvar deactivate-mark nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
963 (defalias 'pr-f-set-keymap-parents 'set-keymap-parent)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
964 (defalias 'pr-f-set-keymap-name 'ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
965 (defalias 'pr-f-read-string 'read-string)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
966 (defun pr-keep-region-active ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
967 (setq deactivate-mark nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
968
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
969 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
970 (defvar current-menubar nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
971 (defvar current-mouse-event nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
972 (defvar zmacs-region-stays nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
973 (defalias 'pr-f-set-keymap-parents 'set-keymap-parents)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
974 (defalias 'pr-f-set-keymap-name 'set-keymap-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
975 (defun pr-f-read-string (prompt initial history default)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
976 (let ((str (read-string prompt initial)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
977 (if (and str (not (string= str "")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
978 str
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
979 default)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
980 (defun pr-keep-region-active ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
981 (setq zmacs-region-stays t)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
982
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
983
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
984 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
985 ;; Customization Functions
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
986
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
987
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
988 (defun pr-alist-custom-set (symbol value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
989 "Set the value of custom variables for printer & utility selection."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
990 (set symbol value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
991 (and (featurep 'printing) ; update only after printing is loaded
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
992 (pr-update-menus t)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
993
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
994
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
995 (defun pr-ps-utility-custom-set (symbol value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
996 "Update utility menu entry."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
997 (set symbol value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
998 (and (featurep 'printing) ; update only after printing is loaded
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
999 (pr-menu-set-utility-title value)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1000
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1001
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1002 (defun pr-ps-name-custom-set (symbol value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1003 "Update `PostScript Printer:' menu entry."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1004 (set symbol value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1005 (and (featurep 'printing) ; update only after printing is loaded
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1006 (pr-menu-set-ps-title value)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1007
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1008
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1009 (defun pr-txt-name-custom-set (symbol value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1010 "Update `Text Printer:' menu entry."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1011 (set symbol value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1012 (and (featurep 'printing) ; update only after printing is loaded
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1013 (pr-menu-set-txt-title value)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1014
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1015
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1016 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1017 ;; User Interface (I)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1018
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1019
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1020 (defgroup printing nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1021 "Printing Utilities group"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1022 :tag "Printing Utilities"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1023 :link '(emacs-library-link :tag "Source Lisp File" "printing.el")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1024 :prefix "pr-"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1025 :group 'wp
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1026 :group 'postscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1027
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1028
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1029 (defcustom pr-path-style
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1030 (if (and (not pr-cygwin-system)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1031 ps-windows-system)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1032 'windows
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1033 'unix)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1034 "*Specify which path style to use for external commands.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1035
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1036 Valid values are:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1037
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1038 windows Windows 9x/NT style (\\)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1039
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1040 unix Unix style (/)"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1041 :type '(choice :tag "Path style"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1042 (const :tag "Windows 9x/NT Style (\\)" :value windows)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1043 (const :tag "Unix Style (/)" :value unix))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1044 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1045
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1046
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1047 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1048 ;; Internal Functions (I)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1049
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1050
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1051 (defun pr-dosify-path (path)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1052 "Replace unix-style directory separator character with dos/windows one."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1053 (interactive "sPath: ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1054 (if (eq pr-path-style 'windows)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1055 (subst-char-in-string ?/ ?\\ path)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1056 path))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1057
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1058
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1059 (defun pr-unixify-path (path)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1060 "Replace dos/windows-style directory separator character with unix one."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1061 (interactive "sPath: ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1062 (if (eq pr-path-style 'windows)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1063 (subst-char-in-string ?\\ ?/ path)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1064 path))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1065
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1066
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1067 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1068 ;; User Interface (II)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1069
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1070
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1071 (defcustom pr-path-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1072 '((unix PATH)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1073 (cygwin PATH)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1074 (windows PATH))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1075 "*Specify an alist for command paths.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1076
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1077 It's used to find commands used for printing package, like gv, gs, gsview.exe,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1078 mpage, print.exe, etc. See also `pr-command' function.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1079
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1080 Each element has the form:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1081
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1082 (ENTRY DIRECTORY...)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1083
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1084 Where:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1085
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1086 ENTRY It's a symbol, used to identify this entry.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1087 There must exist at least one of the following entries:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1088
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1089 unix this entry is used when Emacs is running on GNU or
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1090 Unix system.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1091
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1092 cygwin this entry is used when Emacs is running on Windows
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1093 95/98/NT/2000 with Cygwin.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1094
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1095 windows this entry is used when Emacs is running on Windows
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1096 95/98/NT/2000.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1097
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1098 DIRECTORY It should be a string or a symbol. If it's a symbol, it should
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1099 exist an equal entry in `pr-path-alist'. If it's a string,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1100 it's considered a directory specification.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1101
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1102 The directory specification may contain:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1103 $var environment variable expansion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1104 ~/ tilde expansion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1105 ./ current directory
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1106 ../ previous directory
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1107
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1108 For example, let's say the home directory is /home/my and the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1109 current directory is /home/my/dir, so:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1110
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1111 THE ENTRY IS EXPANDED TO
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1112 ~/entry /home/my/entry
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1113 ./entry /home/my/dir/entry
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1114 ../entry /home/my/entry
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1115 $HOME/entry /home/my/entry
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1116 $HOME/~/other/../my/entry /home/my/entry
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1117
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1118 SPECIAL SYMBOL: If the symbol `PATH' is used in the directory
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1119 list and there isn't a `PATH' entry in `pr-path-alist' or the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1120 `PATH' entry has a null directory list, the PATH environment
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1121 variable is used.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1122
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1123 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1124
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1125 * On GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1126
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1127 '((unix \".\" \"~/bin\" ghostview mpage PATH)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1128 (ghostview \"$HOME/bin/gsview-dir\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1129 (mpage \"$HOME/bin/mpage-dir\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1130 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1131
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1132 * On Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1133
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1134 '((windows \"c:/applications/executables\" PATH ghostview mpage)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1135 (ghostview \"c:/gs/gsview-dir\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1136 (mpage \"c:/mpage-dir\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1137 )"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1138 :type '(repeat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1139 (cons :tag ""
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1140 (symbol :tag "Identifier ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1141 (repeat :tag "Directory List"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1142 (choice :menu-tag "Directory"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1143 :tag "Directory"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1144 (string :value "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1145 (symbol :value symbol)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1146 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1147
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1148
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1149 (defcustom pr-txt-name 'default
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1150 "*Specify a printer for printing a text file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1151
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1152 The printer name symbol should be defined on `pr-txt-printer-alist' (see it for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1153 documentation).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1154
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1155 This variable should be modified by customization engine. If this variable is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1156 modified by other means (for example, a lisp function), use `pr-update-menus'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1157 function (see it for documentation) to update text printer menu."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1158 :type 'symbol
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1159 :set 'pr-txt-name-custom-set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1160 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1161
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1162
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1163 (defcustom pr-txt-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1164 (list (list 'default lpr-command nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1165 (cond ((boundp 'printer-name) printer-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1166 (ps-windows-system "PRN")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1167 (t nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1168 )))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1169 ;; Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1170 ;; * On GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1171 ;; '((prt_06a "lpr" nil "prt_06a")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1172 ;; (prt_07c nil nil "prt_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1173 ;; )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1174 ;; * On Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1175 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1176 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1177 ;; (PRN "" nil "PRN")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1178 ;; (standard "redpr.exe" nil "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1179 ;; )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1180 "*Specify an alist of all text printers (text printer database).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1181
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1182 The alist element has the form:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1183
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1184 (SYMBOL COMMAND SWITCHES NAME)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1185
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1186 Where:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1187
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1188 SYMBOL It's a symbol to identify a text printer. It's for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1189 `pr-txt-name' variable setting and for menu selection.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1190 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1191 'prt_06a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1192 'my_printer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1193
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1194 COMMAND Name of the program for printing a text file. On MS-DOS and
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1195 MS-Windows systems, if the value is an empty string, then Emacs
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1196 will write directly to the printer port given by NAME (see text
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1197 below), that is, the NAME should be something like \"PRN\" or
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1198 \"LPT1:\".
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1199 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1200 COMMAND shouldn't be an empty string.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1201 The programs `print' and `nprint' (the standard print programs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1202 on Windows NT and Novell Netware respectively) are handled
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1203 specially, using NAME as the destination for output; any other
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1204 program is treated like `lpr' except that an explicit filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1205 is given as the last argument.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1206 If COMMAND is nil, it's used the default printing program:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1207 `print' for Windows system, `lp' for lp system and `lpr' for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1208 all other systems. See also `pr-path-alist'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1209 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1210 \"print\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1211 \"lpr\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1212 \"lp\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1213
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1214 SWITCHES List of sexp's to pass as extra options for text printer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1215 program. It is recommended to set NAME (see text below)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1216 instead of including an explicit switch on this list.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1217 Example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1218 . for lpr
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1219 '(\"-#3\" \"-l\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1220 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1221
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1222 NAME A string that specifies a text printer name.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1223 On Unix-like systems, a string value should be a name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1224 understood by lpr's -P option (or lp's -d option).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1225 On MS-DOS and MS-Windows systems, it is the name of a printer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1226 device or port. Typical non-default settings would be \"LPT1:\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1227 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1228 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1229 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1230 printer. You can also set it to a name of a file, in which
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1231 case the output gets appended to that file. If you want to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1232 discard the printed output, set this to \"NUL\".
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1233 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1234 . for print.exe
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1235 \"/D:\\\\\\\\host\\\\share-name\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1236 \"LPT1:\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1237 \"PRN\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1238
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1239 . for lpr or lp
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1240 \"share-name\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1241
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1242 This variable should be modified by customization engine. If this variable is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1243 modified by other means (for example, a lisp function), use `pr-update-menus'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1244 function (see it for documentation) to update text printer menu.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1245
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1246 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1247
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1248 * On GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1249
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1250 '((prt_06a \"lpr\" nil \"prt_06a\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1251 (prt_07c nil nil \"prt_07c\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1252 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1253
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1254 * On Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1255
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1256 '((prt_06a \"print\" nil \"/D:\\\\\\\\printers\\\\prt_06a\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1257 (prt_07c nil nil \"/D:\\\\\\\\printers\\\\prt_07c\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1258 (PRN \"\" nil \"PRN\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1259 (standard \"redpr.exe\" nil \"\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1260 )"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1261 :type '(repeat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1262 (list :tag "Text Printer"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1263 (symbol :tag "Printer Symbol Name")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1264 (string :tag "Printer Command")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1265 (repeat :tag "Printer Switches"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1266 (sexp :tag "Switch" :value ""))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1267 (choice :menu-tag "Printer Name"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1268 :tag "Printer Name"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1269 (const :tag "None" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1270 string)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1271 :set 'pr-alist-custom-set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1272 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1273
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1274
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1275 (defcustom pr-ps-name 'default
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1276 "*Specify a printer for printing a PostScript file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1277
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1278 This printer name symbol should be defined on `pr-ps-printer-alist' (see it for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1279 documentation).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1280
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1281 This variable should be modified by customization engine. If this variable is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1282 modified by other means (for example, a lisp function), use `pr-update-menus'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1283 function (see it for documentation) to update PostScript printer menu."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1284 :type 'symbol
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1285 :set 'pr-ps-name-custom-set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1286 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1287
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1288
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1289 (defcustom pr-ps-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1290 (list (list 'default lpr-command nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1291 (cond (ps-windows-system nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1292 (ps-lp-system "-d")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1293 (t "-P"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1294 (or (getenv "PRINTER") (getenv "LPDEST") ps-printer-name)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1295 ;; Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1296 ;; * On GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1297 ;; '((lps_06b "lpr" nil "-P" "lps_06b")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1298 ;; (lps_07c "lpr" nil nil "lps_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1299 ;; (lps_08c nil nil nil "lps_08c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1300 ;; )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1301 ;; * On Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1302 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1303 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1304 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1305 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1306 ;; (LPT1 "" nil "" "LPT1:")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1307 ;; (PRN "" nil "" "PRN")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1308 ;; (standard "redpr.exe" nil "" "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1309 ;; )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1310 "*Specify an alist for all PostScript printers (PostScript printer database).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1311
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1312 The alist element has the form:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1313
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1314 (SYMBOL COMMAND SWITCHES PRINTER-SWITCH NAME DEFAULT...)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1315
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1316 Where:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1317
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1318 SYMBOL It's a symbol to identify a PostScript printer. It's for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1319 `pr-ps-name' variable setting and for menu selection.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1320 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1321 'prt_06a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1322 'my_printer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1323
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1324 COMMAND Name of the program for printing a PostScript file. On MS-DOS
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1325 and MS-Windows systems, if the value is an empty string then
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1326 Emacs will write directly to the printer port given by NAME
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1327 (see text below), that is, the NAME should be something like
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1328 \"PRN\" or \"LPT1:\".
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1329 If NAME is something like \"\\\\\\\\host\\\\share-name\" then
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1330 COMMAND shouldn't be an empty string.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1331 The programs `print' and `nprint' (the standard print programs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1332 on Windows NT and Novell Netware respectively) are handled
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1333 specially, using NAME as the destination for output; any other
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1334 program is treated like `lpr' except that an explicit filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1335 is given as the last argument.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1336 If COMMAND is nil, it's used the default printing program:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1337 `print' for Windows system, `lp' for lp system and `lpr' for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1338 all other systems. See also `pr-path-alist'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1339 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1340 \"print\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1341 \"lpr\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1342 \"lp\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1343 \"cp\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1344
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1345 SWITCHES List of sexp's to pass as extra options for PostScript printer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1346 program. It is recommended to set NAME (see text below)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1347 instead of including an explicit switch on this list.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1348 Example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1349 . for lpr
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1350 '(\"-#3\" \"-l\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1351 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1352
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1353 PRINTER-SWITCH A string that specifies PostScript printer name switch. If
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1354 it's necessary to have a space between PRINTER-SWITCH and NAME,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1355 it should be inserted at the end of PRINTER-SWITCH string.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1356 If PRINTER-SWITCH is nil, it's used the default printer name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1357 switch: `/D:' for Windows system, `-d' for lp system and `-P'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1358 for all other systems.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1359 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1360 . for lpr
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1361 \"-P \"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1362
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1363 . for lp
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1364 \"-d \"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1365
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1366 . for print.exe
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1367 \"/D:\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1368
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1369 NAME A string that specifies a PostScript printer name.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1370 On Unix-like systems, a string value should be a name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1371 understood by lpr's -P option (or lp's -d option).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1372 On MS-DOS and MS-Windows systems, it is the name of a printer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1373 device or port. Typical non-default settings would be \"LPT1:\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1374 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1375 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1376 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1377 printer. You can also set it to a name of a file, in which
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1378 case the output gets appended to that file. If you want to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1379 discard the printed output, set this to \"NUL\".
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1380 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1381 . for cp.exe
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1382 \"\\\\\\\\host\\\\share-name\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1383
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1384 . for print.exe
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1385 \"/D:\\\\\\\\host\\\\share-name\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1386 \"\\\\\\\\host\\\\share-name\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1387 \"LPT1:\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1388 \"PRN\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1389
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1390 . for lpr or lp
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1391 \"share-name\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1392
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1393 DEFAULT It's a way to set default values when this entry is selected.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1394 It's a cons like:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1395
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1396 (VARIABLE . VALUE)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1397
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1398 That associates VARIABLE with VALUE. when this entry is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1399 selected, it's executed the following command:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1400
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1401 (set VARIABLE (eval VALUE))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1402
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1403 Note that VALUE can be any valid lisp expression. So, don't
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1404 forget to quote symbols and constant lists.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1405 If VARIABLE is the special keyword `inherits-from:', VALUE must
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1406 be a symbol name setting defined in `pr-setting-database' from
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1407 which the current setting inherits the context. Take care with
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1408 circular inheritance.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1409 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1410 '(ps-landscape-mode . nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1411 '(ps-spool-duplex . t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1412 '(pr-gs-device . (my-gs-device t))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1413
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1414 This variable should be modified by customization engine. If this variable is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1415 modified by other means (for example, a lisp function), use `pr-update-menus'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1416 function (see it for documentation) to update PostScript printer menu.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1417
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1418 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1419
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1420 * On GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1421
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1422 '((lps_06b \"lpr\" nil \"-P\" \"lps_06b\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1423 (lps_07c \"lpr\" nil nil \"lps_07c\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1424 (lps_08c nil nil nil \"lps_08c\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1425 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1426
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1427 * On Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1428
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1429 '((lps_06a \"print\" nil \"/D:\" \"\\\\\\\\printers\\\\lps_06a\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1430 (lps_06b \"print\" nil nil \"\\\\\\\\printers\\\\lps_06b\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1431 (lps_07c \"print\" nil \"\" \"/D:\\\\\\\\printers\\\\lps_07c\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1432 (lps_08c nil nil nil \"\\\\\\\\printers\\\\lps_08c\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1433 (LPT1 \"\" nil \"\" \"LPT1:\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1434 (PRN \"\" nil \"\" \"PRN\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1435 (standard \"redpr.exe\" nil \"\" \"\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1436 )"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1437 :type '(repeat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1438 (list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1439 :tag "PostScript Printer"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1440 (symbol :tag "Printer Symbol Name")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1441 (string :tag "Printer Command")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1442 (repeat :tag "Printer Switches"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1443 (sexp :tag "Switch" :value ""))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1444 (choice :menu-tag "Printer Name Switch"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1445 :tag "Printer Name Switch"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1446 (const :tag "None" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1447 string)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1448 (choice :menu-tag "Printer Name"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1449 :tag "Printer Name"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1450 (const :tag "None" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1451 string)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1452 (repeat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1453 :tag "Default Value List"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1454 :inline t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1455 (cons
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1456 :tag ""
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1457 (choice
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1458 :menu-tag "Variable"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1459 :tag "Variable"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1460 (const :tag "Landscape" ps-landscape-mode)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1461 (const :tag "Print Header" ps-print-header)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1462 (const :tag "Print Header Frame" ps-print-header-frame)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1463 (const :tag "Line Number" ps-line-number)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1464 (const :tag "Zebra Stripes" ps-zebra-stripes)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1465 (const :tag "Duplex" ps-spool-duplex)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1466 (const :tag "Tumble" ps-spool-tumble)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1467 (const :tag "Upside-Down" ps-print-upside-down)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1468 (const :tag "PS File Landscape" pr-file-landscape)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1469 (const :tag "PS File Duplex" pr-file-duplex)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1470 (const :tag "PS File Tumble" pr-file-tumble)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1471 (const :tag "Auto Region" pr-auto-region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1472 (const :tag "Auto Mode" pr-auto-mode)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1473 (const :tag "Ghostscript Device" pr-gs-device)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1474 (const :tag "Ghostscript Resolution" pr-gs-resolution)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1475 (const :tag "inherits-from:" inherits-from:)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1476 (variable :tag "Other"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1477 (sexp :tag "Value")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1478 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1479 :set 'pr-alist-custom-set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1480 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1481
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1482
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1483 (defcustom pr-temp-dir
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1484 (pr-dosify-path
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1485 (if (boundp 'temporary-file-directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1486 (symbol-value 'temporary-file-directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1487 ;; hacked from `temporary-file-directory' variable in files.el
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1488 (file-name-as-directory
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1489 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1490 (cond (ps-windows-system "c:/temp")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1491 ((memq system-type '(vax-vms axp-vms)) "SYS$SCRATCH:")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1492 (t "/tmp")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1493 )))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1494 "*Specify a directory for temporary files during printing."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1495 :type '(directory :tag "Temporary Directory")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1496 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1497
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1498
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1499 (defcustom pr-ps-temp-file "prspool.ps"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1500 "*Specify PostScript temporary file name."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1501 :type '(file :tag "PostScript Temporary File Name")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1502 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1503
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1504
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1505 (defcustom pr-gv-command
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1506 (if ps-windows-system
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1507 "gsview32.exe"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1508 "gv")
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1509 "*Specify path and name of the gsview/gv utility.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1510
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1511 See also `pr-path-alist'."
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1512 :type '(string :tag "Ghostview Utility")
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1513 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1514
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1515
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1516 (defcustom pr-gs-command
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1517 (if ps-windows-system
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1518 "gswin32.exe"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1519 "gs")
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1520 "*Specify path and name of the ghostscript utility.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1521
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1522 See also `pr-path-alist'."
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1523 :type '(string :tag "Ghostscript Utility")
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1524 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1525
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1526
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1527 (defcustom pr-gs-switches
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1528 (if ps-windows-system
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1529 '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1530 '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1531 "*Specify ghostscript switches. See the documentation on GS for more info.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1532
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1533 It's a list of strings, where each string is one or more ghostscript switches.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1534
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1535 A note on the gs switches:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1536
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1537 -q quiet
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1538 -dNOPAUSE don't wait for user intervention
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1539 -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts the directories needed for gs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1540 -c quit it's added at the end to terminate gs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1541
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1542 To see ghostscript documentation for more information:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1543
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1544 * On GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1545 - for full documentation, type: man gs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1546 - for brief documentation, type: gs -h
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1547
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1548 * On Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1549 - for full documentation, see in a browser the file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1550 c:/gstools/gs5.50/index.html, that is, the file index.html which is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1551 located in the same directory as gswin32.exe.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1552 - for brief documentation, type: gswin32.exe -h"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1553 :type '(repeat (string :tag "Ghostscript Switch"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1554 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1555
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1556
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1557 (defcustom pr-gs-device
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1558 (if ps-windows-system
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1559 "mswinpr2"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1560 "uniprint")
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1561 "*Specify the ghostscript device switch value (-sDEVICE=).
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1562
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1563 A note on the gs switches:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1564
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1565 -sDEVICE=djet500 the printer - works with HP DeskJet 540
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1566
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1567 See `pr-gs-switches' for documentation.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1568 See also `pr-ps-printer-alist'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1569 :type '(string :tag "Ghostscript Device")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1570 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1571
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1572
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1573 (defcustom pr-gs-resolution 300
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1574 "*Specify ghostscript resolution switch value (-r).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1575
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1576 A note on the gs switches:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1577
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1578 -r300 resolution 300x300
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1579
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1580 See `pr-gs-switches' for documentation.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1581 See also `pr-ps-printer-alist'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1582 :type '(integer :tag "Ghostscript Resolution")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1583 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1584
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1585
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1586 (defcustom pr-print-using-ghostscript nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1587 "*Non-nil means print using ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1588
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1589 This is useful if you don't have a PostScript printer, so you could use the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1590 ghostscript to print a PostScript file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1591
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1592 In GNU or Unix system, if ghostscript is set as a PostScript filter, this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1593 variable should be nil."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1594 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1595 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1596
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1597
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1598 (defcustom pr-faces-p nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1599 "*Non-nil means print with face attributes."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1600 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1601 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1602
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1603
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1604 (defcustom pr-spool-p nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1605 "*Non-nil means spool printing in a buffer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1606 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1607 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1608
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1609
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1610 (defcustom pr-file-landscape nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1611 "*Non-nil means print PostScript file in landscape orientation."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1612 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1613 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1614
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1615
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1616 (defcustom pr-file-duplex nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1617 "*Non-nil means print PostScript file in duplex mode."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1618 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1619 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1620
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1621
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1622 (defcustom pr-file-tumble nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1623 "*Non-nil means print PostScript file in tumble mode.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1624
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1625 If tumble is off, produces a printing suitable for binding on the left or
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1626 right.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1627 If tumble is on, produces a printing suitable for binding at the top or
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1628 bottom."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1629 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1630 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1631
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1632
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1633 (defcustom pr-auto-region t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1634 "*Non-nil means region is automagically detected.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1635
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1636 Note that this will only work if you're using transient mark mode.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1637
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1638 When this variable is non-nil, the `*-buffer*' commands will behave like
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1639 `*-region*' commands, that is, `*-buffer*' commands will print only the region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1640 marked instead of all buffer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1641 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1642 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1643
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1644
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1645 (defcustom pr-auto-mode t
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1646 "*Non-nil means major-mode specific printing is prefered over normal printing.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1647
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1648 That is, if current major-mode is declared in `pr-mode-alist', the `*-buffer*'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1649 and `*-region*' commands will behave like `*-mode*' commands; otherwise,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1650 `*-buffer*' commands will print the current buffer and `*-region*' commands
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1651 will print the current region."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1652 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1653 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1654
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1655
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1656 (defcustom pr-mode-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1657 '((mh-folder-mode ; mh summary buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1658 pr-mh-lpr-1 pr-mh-print-1
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1659 2
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1660 (ps-article-author ps-article-subject)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1661 ("/pagenumberstring load" pr-article-date)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1662 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1663 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1664 (mh-letter-mode ; mh letter buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1665 pr-mh-lpr-2 pr-mh-print-2
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1666 2
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1667 (ps-article-author ps-article-subject)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1668 ("/pagenumberstring load" pr-article-date)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1669 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1670 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1671 (rmail-summary-mode ; rmail summary buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1672 pr-rmail-lpr pr-rmail-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1673 3
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1674 (ps-article-subject ps-article-author buffer-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1675 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1676 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1677 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1678 (rmail-mode ; rmail buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1679 pr-rmail-lpr pr-rmail-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1680 3
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1681 (ps-article-subject ps-article-author buffer-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1682 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1683 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1684 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1685 (gnus-summary-mode ; gnus summary buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1686 pr-gnus-lpr pr-gnus-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1687 3
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1688 (ps-article-subject ps-article-author gnus-newsgroup-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1689 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1690 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1691 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1692 (gnus-article-mode ; gnus article buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1693 pr-gnus-lpr pr-gnus-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1694 3
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1695 (ps-article-subject ps-article-author gnus-newsgroup-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1696 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1697 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1698 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1699 (Info-mode ; Info buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1700 pr-mode-lpr pr-mode-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1701 2
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1702 (ps-info-node ps-info-file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1703 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1704 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1705 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1706 (vm-mode ; vm mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1707 pr-vm-lpr pr-vm-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1708 3
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1709 (ps-article-subject ps-article-author buffer-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1710 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1711 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1712 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1713 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1714 "*Specify an alist for a major-mode and printing functions.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1715
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1716 To customize a major mode printing, just declare the customization in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1717 `pr-mode-alist' and invoke some of `*-mode*' commands. An example for major
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1718 mode usage is when you're using gnus (or mh, or rmail, etc.) and you're in the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1719 *Summary* buffer, if you forget to switch to the *Article* buffer before
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1720 printing, you'll get a nicely formatted list of article subjects shows up at
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1721 the printer. With major mode printing you don't need to switch from gnus
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1722 *Summary* buffer first.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1723
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1724 The elements have the following form:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1725
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1726 (MAJOR-MODE
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1727 LPR-PRINT PS-PRINT
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1728 HEADER-LINES
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1729 LEFT-HEADER
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1730 RIGHT-HEADER
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1731 KILL-LOCAL-VARIABLE
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1732 DEFAULT...)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1733
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1734 Where:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1735
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1736 MAJOR-MODE It's the major mode symbol.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1737
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1738 LPR-PRINT It's a symbol function for text printing. It's invoked with
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1739 one argument:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1740 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1741
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1742 Usually LPR-PRINT function prepares the environment or buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1743 and then call the function `pr-mode-lpr' which it's used to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1744 process the buffer and send it to text printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1745
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1746 The `pr-mode-lpr' definition is:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1747
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1748 (pr-mode-lpr HEADER-LIST &optional FROM TO)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1749
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1750 Where HEADER-LIST is like the argument passed to LPR-PRINT.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1751 FROM and TO are the beginning and end markers, respectively,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1752 for a region. If FROM is nil, it's used (point-min); if TO is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1753 nil, it's used (point-max).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1754
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1755 PS-PRINT It's a symbol function for PostScript printing. It's invoked
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1756 with 3 arguments: n-up printing, file name and the list:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1757 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1758
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1759 Usually PS-PRINT function prepares the environment or buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1760 and then call the function `pr-mode-print' which it's used to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1761 process the buffer and send it to PostScript printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1762
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1763 The `pr-mode-print' definition is:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1764
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1765 (pr-mode-print N-UP FILENAME HEADER-LIST &optional FROM TO)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1766
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1767 Where N-UP, FILENAME and HEADER-LIST are like the arguments
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1768 passed to PS-PRINT. FROM and TO are the beginning and end
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1769 markers, respectively, for a region. If TO is nil, it's used
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1770 (point-max).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1771
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1772 HEADER-LINES It's the number of header lines; if is nil, it uses
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1773 `ps-header-lines' value.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1774
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1775 LEFT-HEADER It's the left header part, it's a list of string, variable
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1776 symbol or function symbol (with no argument); if is nil, it
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1777 uses `ps-left-header' value.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1778
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1779 RIGHT-HEADER It's the right header part, it's a list of string, variable
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1780 symbol or function symbol (with no argument); if is nil, it
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1781 uses `ps-right-header' value.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1782
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1783 KILL-LOCAL-VARIABLE
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1784 Non-nil means to kill all buffer local variable declared in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1785 DEFAULT (see below).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1786
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1787 DEFAULT It's a way to set default values when this entry is selected.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1788 It's a cons like:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1789
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1790 (VARIABLE-SYM . VALUE)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1791
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1792 That associates VARIABLE-SYM with VALUE. when this entry is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1793 selected, it's executed the following command:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1794
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1795 (set (make-local-variable VARIABLE-SYM) (eval VALUE))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1796
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1797 Note that VALUE can be any valid lisp expression. So, don't
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1798 forget to quote symbols and constant lists.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1799 If VARIABLE is the special keyword `inherits-from:', VALUE must
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1800 be a symbol name setting defined in `pr-setting-database' from
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1801 which the current setting inherits the context. Take care with
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1802 circular inheritance.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1803 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1804 '(ps-landscape-mode . nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1805 '(ps-spool-duplex . t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1806 '(pr-gs-device . (my-gs-device t))"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1807 :type '(repeat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1808 (list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1809 :tag ""
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1810 (symbol :tag "Major Mode")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1811 (function :tag "Text Printing Function")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1812 (function :tag "PS Printing Function")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1813 (choice :menu-tag "Number of Header Lines"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1814 :tag "Number of Header Lines"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1815 (integer :tag "Number")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1816 (const :tag "Default Number" nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1817 (repeat :tag "Left Header List"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1818 (choice :menu-tag "Left Header"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1819 :tag "Left Header"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1820 string symbol))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1821 (repeat :tag "Right Header List"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1822 (choice :menu-tag "Right Header"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1823 :tag "Right Header"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1824 string symbol))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1825 (boolean :tag "Kill Local Variable At End")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1826 (repeat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1827 :tag "Default Value List"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1828 :inline t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1829 (cons
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1830 :tag ""
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1831 (choice
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1832 :menu-tag "Variable"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1833 :tag "Variable"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1834 (const :tag "Landscape" ps-landscape-mode)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1835 (const :tag "Print Header" ps-print-header)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1836 (const :tag "Print Header Frame" ps-print-header-frame)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1837 (const :tag "Line Number" ps-line-number)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1838 (const :tag "Zebra Stripes" ps-zebra-stripes)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1839 (const :tag "Duplex" ps-spool-duplex)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1840 (const :tag "Tumble" ps-spool-tumble)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1841 (const :tag "Upside-Down" ps-print-upside-down)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1842 (const :tag "PS File Landscape" pr-file-landscape)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1843 (const :tag "PS File Duplex" pr-file-duplex)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1844 (const :tag "PS File Tumble" pr-file-tumble)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1845 (const :tag "Auto Region" pr-auto-region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1846 (const :tag "Auto Mode" pr-auto-mode)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1847 (const :tag "Ghostscript Device" pr-gs-device)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1848 (const :tag "Ghostscript Resolution" pr-gs-resolution)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1849 (const :tag "inherits-from:" inherits-from:)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1850 (variable :tag "Other"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1851 (sexp :tag "Value")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1852 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1853 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1854
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1855
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1856 (defcustom pr-ps-utility 'mpage
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1857 "*Specify PostScript utility symbol.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1858
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1859 This utility symbol should be defined on `pr-ps-utility-alist' (see it for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1860 documentation).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1861
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1862 This variable should be modified by customization engine. If this variable is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1863 modified by other means (for example, a lisp function), use `pr-update-menus'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1864 function (see it for documentation) to update PostScript utility menu.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1865
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1866 NOTE: Don't forget to download and install the utilities declared on
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1867 `pr-ps-utility-alist'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1868 :type '(symbol :tag "PS File Utility")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1869 :set 'pr-ps-utility-custom-set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1870 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1871
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1872
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1873 (defcustom pr-ps-utility-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1874 '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1875 (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1876 (inherits-from: . no-duplex))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1877 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1878 ;; Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1879 ;; * On GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1880 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1881 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1882 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1883 ;; )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1884 ;; * On Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1885 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1886 ;; (pr-file-duplex . nil) (pr-file-tumble . nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1887 ;; )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1888 "*Specify an alist for PostScript utility processing (PS utility database).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1889
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1890 The alist element has the form:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1891
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1892 (SYMBOL UTILITY MUST-SWITCHES PAPERSIZE N-UP LANDSCAPE DUPLEX TUMBLE OUTPUT
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1893 SWITCHES DEFAULT...)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1894
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1895 Where:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1896
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1897 SYMBOL It's a symbol to identify a PostScript utility. It's for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1898 `pr-ps-utility' variable setting and for menu selection.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1899 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1900 'mpage
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1901 'psnup
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1902
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1903 UTILITY Name of utility for processing a PostScript file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1904 See also `pr-path-alist'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1905 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1906 . for GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1907 \"mpage\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1908 \"psnup -q\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1909
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1910 . for Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1911 \"c:/psutils/psnup -q\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1912
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1913 MUST-SWITCHES List of sexp's to pass as options to the PostScript utility
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1914 program. These options are necessary to process the utility
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1915 program and must be placed before any other switches.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1916 Example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1917 . for psnup:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1918 '(\"-q\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1919
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1920 PAPERSIZE It's a format string to specify paper size switch.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1921 Example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1922 . for mpage
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1923 \"-b%s\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1924
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1925 N-UP It's a format string to specify n-up switch.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1926 Example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1927 . for psnup
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1928 \"-%d\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1929
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1930 LANDSCAPE It's a string to specify landscape switch. If the utility
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1931 doesn't have landscape switch, set to nil.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1932 Example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1933 . for psnup
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1934 \"-l\"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1935
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1936 DUPLEX It's a string to specify duplex switch. If the utility doesn't
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1937 have duplex switch, set to nil.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1938 Example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1939 . for psnup
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1940 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1941
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1942 TUMBLE It's a string to specify tumble switch. If the utility doesn't
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1943 have tumble switch, set to nil.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1944 Example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1945 . for psnup
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1946 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1947
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1948 OUTPUT It's a string to specify how to generate an output file. Some
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1949 utilities accept an output file option, but some others need
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1950 output redirection or some other way to specify an output file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1951 Example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1952 . for psnup
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1953 \" \" ; psnup ... input output
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1954
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1955 . for mpage
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1956 \">\" ; mpage ... input > output
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1957
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
1958 SWITCHES List of sexp's to pass as extra options to the PostScript utility
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1959 program.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1960 Example:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1961 . for psnup
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1962 '(\"-q\")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1963 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1964
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1965 DEFAULT It's a way to set default values when this entry is selected.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1966 It's a cons like:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1967
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1968 (VARIABLE . VALUE)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1969
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1970 That associates VARIABLE with VALUE. when this entry is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1971 selected, it's executed the following command:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1972
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1973 (set VARIABLE (eval VALUE))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1974
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1975 Note that VALUE can be any valid lisp expression. So, don't
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1976 forget to quote symbols and constant lists.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1977 If VARIABLE is the special keyword `inherits-from:', VALUE must
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1978 be a symbol name setting defined in `pr-setting-database' from
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1979 which the current setting inherits the context. Take care with
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1980 circular inheritance.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1981 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1982 '(pr-file-landscape . nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1983 '(pr-file-duplex . t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1984 '(pr-gs-device . (my-gs-device t))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1985
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1986 This variable should be modified by customization engine. If this variable is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1987 modified by other means (for example, a lisp function), use `pr-update-menus'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1988 function (see it for documentation) to update PostScript utility menu.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1989
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1990 NOTE: Don't forget to download and install the utilities declared on
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1991 `pr-ps-utility-alist'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1992
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1993 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1994
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1995 * On GNU or Unix system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1996
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1997 '((mpage \"mpage\" nil \"-b%s\" \"-%d\" \"-l\" \"-t\" \"-T\" \">\" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1998 (psnup \"psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
1999 (pr-file-duplex . nil) (pr-file-tumble . nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2000 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2001
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2002 * On Windows system:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2003
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2004 '((psnup \"c:/psutils/psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2005 nil (pr-file-duplex . nil) (pr-file-tumble . nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2006 )"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2007 :type '(repeat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2008 (list :tag "PS File Utility"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2009 (symbol :tag "Utility Symbol")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2010 (string :tag "Utility Name")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2011 (repeat :tag "Must Utility Switches"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2012 (sexp :tag "Switch" :value ""))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2013 (choice :menu-tag "Paper Size"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2014 :tag "Paper Size"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2015 (const :tag "No Paper Size" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2016 (string :tag "Paper Size Format"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2017 (choice :menu-tag "N-Up"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2018 :tag "N-Up"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2019 (const :tag "No N-Up" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2020 (string :tag "N-Up Format"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2021 (choice :menu-tag "Landscape"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2022 :tag "Landscape"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2023 (const :tag "No Landscape" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2024 (string :tag "Landscape Switch"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2025 (choice :menu-tag "Duplex"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2026 :tag "Duplex"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2027 (const :tag "No Duplex" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2028 (string :tag "Duplex Switch"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2029 (choice :menu-tag "Tumble"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2030 :tag "Tumble"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2031 (const :tag "No Tumble" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2032 (string :tag "Tumble Switch"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2033 (string :tag "Output Separator")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2034 (repeat :tag "Utility Switches"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2035 (sexp :tag "Switch" :value ""))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2036 (repeat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2037 :tag "Default Value List"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2038 :inline t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2039 (cons
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2040 :tag ""
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2041 (choice
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2042 :menu-tag "Variable"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2043 :tag "Variable"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2044 (const :tag "PS File Landscape" pr-file-landscape)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2045 (const :tag "PS File Duplex" pr-file-duplex)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2046 (const :tag "PS File Tumble" pr-file-tumble)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2047 (const :tag "Ghostscript Device" pr-gs-device)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2048 (const :tag "Ghostscript Resolution" pr-gs-resolution)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2049 (const :tag "inherits-from:" inherits-from:)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2050 (variable :tag "Other"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2051 (sexp :tag "Value")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2052 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2053 :set 'pr-alist-custom-set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2054 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2055
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2056
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2057 (defcustom pr-menu-lock t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2058 "*Non-nil means menu is locked while selecting toggle options.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2059
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2060 See also `pr-menu-char-height' and `pr-menu-char-width'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2061 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2062 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2063
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2064
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2065 (defcustom pr-menu-char-height
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2066 (cond ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2067 (pr-e-frame-char-height))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2068 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2069 (pr-x-font-height (face-font 'default))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2070 "*Specify menu char height in pixels.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2071
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2072 This variable is used to guess which vertical position should be locked the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2073 menu, so don't forget to adjust it if menu position is not ok.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2074
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2075 See also `pr-menu-lock' and `pr-menu-char-width'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2076 :type 'integer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2077 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2078
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2079
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2080 (defcustom pr-menu-char-width
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2081 (cond ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2082 (pr-e-frame-char-width))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2083 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2084 (pr-x-font-width (face-font 'default))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2085 "*Specify menu char width in pixels.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2086
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2087 This variable is used to guess which horizontal position should be locked the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2088 menu, so don't forget to adjust it if menu position is not ok.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2089
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2090 See also `pr-menu-lock' and `pr-menu-char-height'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2091 :type 'integer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2092 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2093
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2094
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2095 (defcustom pr-setting-database
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2096 '((no-duplex ; setting symbol name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2097 nil nil nil ; inherits local kill-local
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2098 (pr-file-duplex . nil) ; settings
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2099 (pr-file-tumble . nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2100 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2101 "*Specify an alist for settings in general.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2102
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2103 The elements have the following form:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2104
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2105 (SYMBOL INHERITS LOCAL KILL-LOCAL SETTING...)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2106
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2107 Where:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2108
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2109 SYMBOL It's a symbol to identify the setting group.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2110
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2111 INHERITS Specify the inheritance for SYMBOL group. It's a symbol name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2112 setting from which the current setting inherits the context.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2113 If INHERITS is nil, means that there is no inheritance.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2114 This is a simple inheritance mechanism.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2115
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2116 Let's see an example to illustrate the inheritance mechanism:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2117
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2118 (setq pr-setting-database
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2119 '((no-duplex ; setting symbol name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2120 nil ; inherits
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2121 nil nil ; local kill-local
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2122 (pr-file-duplex . nil) ; settings
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2123 (pr-file-tumble . nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2124 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2125 (no-duplex-and-landscape ; setting symbol name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2126 no-duplex ; inherits
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2127 nil nil ; local kill-local
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2128 (pr-file-landscape . nil) ; settings
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2129 )))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2130
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2131 The example above has two setting groups: no-duplex and
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2132 no-duplex-and-landscape. When setting no-duplex is activated
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2133 through `inherits-from:' (see `pr-ps-utility', `pr-mode-alist'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2134 and `pr-ps-printer-alist'), the variables pr-file-duplex and
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2135 pr-file-tumble are both set to nil.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2136
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2137 Now when setting no-duplex-and-landscape is activated through
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2138 `inherits-from:', the variable pr-file-landscape is set to nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2139 and also the settings for no-duplex are done, because
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2140 no-duplex-and-landscape inherits settings from no-duplex.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2141
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2142 Take care with circular inheritance. It's an error if circular
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2143 inheritance happens.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2144
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2145 LOCAL Non-nil means that all settings for SYMBOL group will be
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2146 declared local buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2147
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2148 KILL-LOCAL Non-nil means that all settings for SYMBOL group will be
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2149 killed at end. It has effect only when LOCAL is non-nil.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2150
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2151 SETTING It's a cons like:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2152
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2153 (VARIABLE . VALUE)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2154
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2155 That associates VARIABLE with VALUE. when this entry is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2156 selected, it's executed the following command:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2157
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2158 * If LOCAL is non-nil:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2159 (set (make-local-variable VARIABLE) (eval VALUE))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2160
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2161 * If LOCAL is nil:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2162 (set VARIABLE (eval VALUE))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2163
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2164 Note that VALUE can be any valid lisp expression. So, don't
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2165 forget to quote symbols and constant lists.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2166 This setting is ignored if VARIABLE is equal to keyword
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2167 `inherits-from:'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2168 Examples:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2169 '(ps-landscape-mode . nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2170 '(ps-spool-duplex . t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2171 '(pr-gs-device . (my-gs-device t))"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2172 :type '(repeat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2173 (list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2174 :tag ""
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2175 (symbol :tag "Setting Name")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2176 (choice :menu-tag "Inheritance"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2177 :tag "Inheritance"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2178 (const :tag "No Inheritance" nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2179 (symbol :tag "Inherits From"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2180 (boolean :tag "Local Buffer Setting")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2181 (boolean :tag "Kill Local Variable At End")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2182 (repeat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2183 :tag "Setting List"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2184 :inline t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2185 (cons
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2186 :tag ""
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2187 (choice
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2188 :menu-tag "Variable"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2189 :tag "Variable"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2190 (const :tag "Landscape" ps-landscape-mode)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2191 (const :tag "Print Header" ps-print-header)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2192 (const :tag "Print Header Frame" ps-print-header-frame)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2193 (const :tag "Line Number" ps-line-number)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2194 (const :tag "Zebra Stripes" ps-zebra-stripes)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2195 (const :tag "Duplex" ps-spool-duplex)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2196 (const :tag "Tumble" ps-spool-tumble)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2197 (const :tag "Upside-Down" ps-print-upside-down)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2198 (const :tag "PS File Landscape" pr-file-landscape)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2199 (const :tag "PS File Duplex" pr-file-duplex)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2200 (const :tag "PS File Tumble" pr-file-tumble)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2201 (const :tag "Auto Region" pr-auto-region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2202 (const :tag "Auto Mode" pr-auto-mode)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2203 (const :tag "Ghostscript Device" pr-gs-device)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2204 (const :tag "Ghostscript Resolution" pr-gs-resolution)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2205 (variable :tag "Other"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2206 (sexp :tag "Value")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2207 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2208 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2209
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2210
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2211 (defcustom pr-visible-entry-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2212 '(postscript text postscript-options postscript-process printing help)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2213 "*Specify a list of Printing menu visible entries.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2214
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2215 Valid values with the corresponding menu parts are:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2216
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2217 +------------------------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2218 | Printing Interface |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2219 +------------------------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2220 `postscript' | PostScript Preview >|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2221 | PostScript Print >|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2222 | PostScript Printer: name >|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2223 +------------------------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2224 `text' | Printify >|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2225 | Print >|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2226 | Text Printer: name >|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2227 +------------------------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2228 `postscript-options' |[ ] Landscape |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2229 |[ ] Print Header |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2230 |[ ] Print Header Frame |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2231 |[ ] Line Number |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2232 |[ ] Zebra Stripes |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2233 |[ ] Duplex |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2234 |[ ] Tumble |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2235 |[ ] Upside-Down |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2236 | Print All Pages >|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2237 +------------------------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2238 `postscript-process' |[ ] Spool Buffer |
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2239 |[ ] Print with faces |
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2240 |[ ] Print via Ghostscript |
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2241 +------------------------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2242 `printing' |[ ] Auto Region |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2243 |[ ] Auto Mode |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2244 |[ ] Menu Lock |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2245 +------------------------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2246 `help' | Customize >|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2247 | Show Settings >|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2248 | Help |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2249 +------------------------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2250
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2251 Any other value is ignored."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2252 :type '(repeat :tag "Menu Visible Part"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2253 (choice :menu-tag "Menu Part"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2254 :tag "Menu Part"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2255 (const postscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2256 (const text)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2257 (const postscript-options)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2258 (const postscript-process)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2259 (const printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2260 (const help)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2261 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2262
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2263
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2264 (defcustom pr-delete-temp-file t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2265 "*Non-nil means delete temporary files.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2266
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2267 Set `pr-delete-temp-file' to nil, if the following message (or a similar)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2268 happens when printing:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2269
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2270 Error: could not open \"c:\\temp\\prspool.ps\" for reading."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2271 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2272 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2273
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2274
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2275 (defcustom pr-list-directory nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2276 "*Non-nil means list directory when processing a directory.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2277
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2278 That is, any subdirectories (and the superdirectory) of the directory (given as
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2279 argument of functions below) are also printed (as dired-mode listings).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2280
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2281 It's used by `pr-ps-directory-preview', `pr-ps-directory-using-ghostscript',
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2282 `pr-ps-directory-print', `pr-ps-directory-ps-print', `pr-printify-directory'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2283 and `pr-txt-directory'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2284 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2285 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2286
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2287
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2288 (defcustom pr-buffer-name "*Printing Interface*"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2289 "*Specify the name of the buffer interface for printing package.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2290
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2291 It's used by `pr-interface'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2292 :type 'string
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2293 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2294
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2295
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2296 (defcustom pr-buffer-name-ignore
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2297 (list (regexp-quote pr-buffer-name) ; ignore printing interface buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2298 "^ .*$") ; ignore invisible buffers
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2299 "*Specify a regexp list for buffer names to be ignored in interface buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2300
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2301 NOTE: Case is important for matching, that is, `case-fold-search' is always
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2302 nil.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2303
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2304 It's used by `pr-interface'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2305 :type '(repeat (regexp :tag "Buffer Name Regexp"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2306 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2307
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2308
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2309 (defcustom pr-buffer-verbose t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2310 "*Non-nil means to be verbose when editing a field in interface buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2311
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2312 It's used by `pr-interface'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2313 :type 'boolean
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2314 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2315
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2316
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2317 (defcustom pr-shell-file-name
54675
32aae36e32af Var initialization fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54636
diff changeset
2318 (if (and (not pr-cygwin-system)
32aae36e32af Var initialization fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54636
diff changeset
2319 ps-windows-system)
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2320 "cmdproxy.exe"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2321 shell-file-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2322 "*Specify file name to load inferior shells from."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2323 :type 'string
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2324 :group 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2325
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2326
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2327 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2328 ;; Internal Variables
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2329
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2330
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2331 (defvar pr-txt-command nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2332 "Name of program for printing a text file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2333 See `pr-txt-printer-alist'.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2334
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2335
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2336 (defvar pr-txt-switches nil
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2337 "List of sexp's to pass as extra options to the text printer program.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2338 See `pr-txt-printer-alist'.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2339
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2340
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2341 (defvar pr-txt-printer nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2342 "Specify text printer name.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2343 See `pr-txt-printer-alist'.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2344
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2345
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2346 (defvar pr-ps-command nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2347 "Name of program for printing a PostScript file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2348 See `pr-ps-printer-alist'.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2349
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2350
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2351 (defvar pr-ps-switches nil
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2352 "List of sexp's to pass as extra options to the PostScript printer program.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2353 See `pr-ps-printer-alist'.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2354
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2355
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2356 (defvar pr-ps-printer-switch nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2357 "Specify PostScript printer name switch.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2358 See `pr-ps-printer-alist'.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2359
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2360
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2361 (defvar pr-ps-printer nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2362 "Specify PostScript printer name.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2363 See `pr-ps-printer-alist'.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2364
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2365
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2366 (defvar pr-menu-bar nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2367 "Specify Printing menu-bar entry.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2368
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2369
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2370 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2371 ;; Keys & Menus
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2372
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2373
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2374 (defmacro pr-xemacs-global-menubar (&rest body)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2375 `(save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2376 (let ((temp (get-buffer-create (make-temp-name " *Temp"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2377 ;; be sure to access global menubar
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2378 (set-buffer temp)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2379 ,@body
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2380 (kill-buffer temp))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2381
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2382
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2383 (defsubst pr-visible-p (key)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2384 (memq key pr-visible-entry-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2385
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2386
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2387 (defsubst pr-mode-alist-p ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2388 (cdr (assq major-mode pr-mode-alist)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2389
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2390
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2391 (defsubst pr-auto-mode-p ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2392 (and pr-auto-mode (pr-mode-alist-p)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2393
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2394
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2395 (defsubst pr-using-ghostscript-p ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2396 (and pr-print-using-ghostscript (not pr-spool-p)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2397
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2398
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2399 (eval-and-compile
50017
0ee18dc00572 vinicius: copyright date fix. Move pr-get-symbol into eval-and-compile.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 49649
diff changeset
2400 (defun pr-get-symbol (name)
0ee18dc00572 vinicius: copyright date fix. Move pr-get-symbol into eval-and-compile.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 49649
diff changeset
2401 ;; Recent versions of easy-menu downcase names before interning them.
0ee18dc00572 vinicius: copyright date fix. Move pr-get-symbol into eval-and-compile.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 49649
diff changeset
2402 (and (fboundp 'easy-menu-name-match)
0ee18dc00572 vinicius: copyright date fix. Move pr-get-symbol into eval-and-compile.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 49649
diff changeset
2403 (setq name (downcase name)))
0ee18dc00572 vinicius: copyright date fix. Move pr-get-symbol into eval-and-compile.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 49649
diff changeset
2404 (or (intern-soft name)
0ee18dc00572 vinicius: copyright date fix. Move pr-get-symbol into eval-and-compile.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 49649
diff changeset
2405 (make-symbol name)))
0ee18dc00572 vinicius: copyright date fix. Move pr-get-symbol into eval-and-compile.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 49649
diff changeset
2406
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2407 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2408 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2409 (defsubst pr-region-active-p ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2410 (and pr-auto-region transient-mark-mode mark-active)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2411
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2412 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2413 (defsubst pr-region-active-p ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2414 (and pr-auto-region (not zmacs-region-stays) (ps-mark-active-p)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2415
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2416
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2417 (defconst pr-menu-spec
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2418 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2419 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2420 '(
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2421 ["Printing Interface" pr-interface
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2422 :help "Use buffer interface instead of menu interface"]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2423 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2424 ("PostScript Preview" :visible (pr-visible-p 'postscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2425 :help "Preview PostScript instead of sending to printer"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2426 ("Directory" :active (not pr-spool-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2427 ["1-up" (pr-ps-directory-preview 1 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2428 ["2-up" (pr-ps-directory-preview 2 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2429 ["4-up" (pr-ps-directory-preview 4 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2430 ["Other..." (pr-ps-directory-preview nil nil nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2431 :keys "\\[pr-ps-buffer-preview]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2432 ("Buffer" :active (not pr-spool-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2433 ["1-up" (pr-ps-buffer-preview 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2434 ["2-up" (pr-ps-buffer-preview 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2435 ["4-up" (pr-ps-buffer-preview 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2436 ["Other..." (pr-ps-buffer-preview nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2437 :keys "\\[pr-ps-buffer-preview]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2438 ("Region" :active (and (not pr-spool-p) (ps-mark-active-p))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2439 ["1-up" (pr-ps-region-preview 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2440 ["2-up" (pr-ps-region-preview 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2441 ["4-up" (pr-ps-region-preview 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2442 ["Other..." (pr-ps-region-preview nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2443 :keys "\\[pr-ps-region-preview]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2444 ("Mode" :active (and (not pr-spool-p) (pr-mode-alist-p))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2445 ["1-up" (pr-ps-mode-preview 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2446 ["2-up" (pr-ps-mode-preview 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2447 ["4-up" (pr-ps-mode-preview 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2448 ["Other..." (pr-ps-mode-preview nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2449 :keys "\\[pr-ps-mode-preview]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2450 ("File"
54210
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
2451 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview)
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2452 :keys "\\[pr-ps-file-preview]"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2453 :help "Preview PostScript file"]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2454 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2455 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2456 :help "Select PostScript utility"]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2457 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2458 ["1-up..." (pr-ps-file-up-preview 1 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2459 ["2-up..." (pr-ps-file-up-preview 2 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2460 ["4-up..." (pr-ps-file-up-preview 4 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2461 ["Other..." (pr-ps-file-up-preview nil t t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2462 :keys "\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2463 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2464 ["Landscape" pr-toggle-file-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2465 :style toggle :selected pr-file-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2466 :help "Toggle landscape for PostScript file"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2467 :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2468 ["Duplex" pr-toggle-file-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2469 :style toggle :selected pr-file-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2470 :help "Toggle duplex for PostScript file"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2471 :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2472 ["Tumble" pr-toggle-file-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2473 :style toggle :selected pr-file-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2474 :help "Toggle tumble for PostScript file"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2475 :active (and pr-file-duplex pr-ps-utility-alist)])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2476 ["Despool..." (call-interactively 'pr-despool-preview)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2477 :active pr-spool-p :keys "\\[pr-despool-preview]"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2478 :help "Despool PostScript buffer to printer or file (C-u)"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2479 ("PostScript Print" :visible (pr-visible-p 'postscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2480 :help "Send PostScript to printer or file (C-u)"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2481 ("Directory"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2482 ["1-up" (pr-ps-directory-ps-print 1 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2483 ["2-up" (pr-ps-directory-ps-print 2 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2484 ["4-up" (pr-ps-directory-ps-print 4 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2485 ["Other..." (pr-ps-directory-ps-print nil nil nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2486 :keys "\\[pr-ps-buffer-ps-print]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2487 ("Buffer"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2488 ["1-up" (pr-ps-buffer-ps-print 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2489 ["2-up" (pr-ps-buffer-ps-print 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2490 ["4-up" (pr-ps-buffer-ps-print 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2491 ["Other..." (pr-ps-buffer-ps-print nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2492 :keys "\\[pr-ps-buffer-ps-print]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2493 ("Region" :active (ps-mark-active-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2494 ["1-up" (pr-ps-region-ps-print 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2495 ["2-up" (pr-ps-region-ps-print 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2496 ["4-up" (pr-ps-region-ps-print 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2497 ["Other..." (pr-ps-region-ps-print nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2498 :keys "\\[pr-ps-region-ps-print]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2499 ("Mode" :active (pr-mode-alist-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2500 ["1-up" (pr-ps-mode-ps-print 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2501 ["2-up" (pr-ps-mode-ps-print 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2502 ["4-up" (pr-ps-mode-ps-print 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2503 ["Other..." (pr-ps-mode-ps-print nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2504 :keys "\\[pr-ps-mode-ps-print]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2505 ("File"
54210
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
2506 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print)
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2507 :keys "\\[pr-ps-file-ps-print]"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2508 :help "Send PostScript file to printer"]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2509 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2510 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2511 :help "Select PostScript utility"]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2512 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2513 ["1-up..." (pr-ps-file-up-ps-print 1 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2514 ["2-up..." (pr-ps-file-up-ps-print 2 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2515 ["4-up..." (pr-ps-file-up-ps-print 4 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2516 ["Other..." (pr-ps-file-up-ps-print nil t t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2517 :keys "\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2518 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2519 ["Landscape" pr-toggle-file-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2520 :style toggle :selected pr-file-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2521 :help "Toggle landscape for PostScript file"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2522 :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2523 ["Duplex" pr-toggle-file-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2524 :style toggle :selected pr-file-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2525 :help "Toggle duplex for PostScript file"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2526 :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2527 ["Tumble" pr-toggle-file-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2528 :style toggle :selected pr-file-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2529 :help "Toggle tumble for PostScript file"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2530 :active (and pr-file-duplex pr-ps-utility-alist)])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2531 ["Despool..." (call-interactively 'pr-despool-ps-print)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2532 :active pr-spool-p :keys "\\[pr-despool-ps-print]"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2533 :help "Despool PostScript buffer to printer or file (C-u)"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2534 ["PostScript Printers" pr-update-menus
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2535 :active pr-ps-printer-alist :included (pr-visible-p 'postscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2536 :help "Select PostScript printer"]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2537 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2538 ("Printify" :visible (pr-visible-p 'text)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2539 :help "Replace non-printing chars with printable representations."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2540 ["Directory" pr-printify-directory t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2541 ["Buffer" pr-printify-buffer t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2542 ["Region" pr-printify-region (ps-mark-active-p)])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2543 ("Print" :visible (pr-visible-p 'text)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2544 :help "Send text to printer"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2545 ["Directory" pr-txt-directory t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2546 ["Buffer" pr-txt-buffer t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2547 ["Region" pr-txt-region (ps-mark-active-p)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2548 ["Mode" pr-txt-mode (pr-mode-alist-p)])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2549 ["Text Printers" pr-update-menus
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2550 :active pr-txt-printer-alist :included (pr-visible-p 'text)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2551 :help "Select text printer"]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2552 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2553 ["Landscape" pr-toggle-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2554 :style toggle :selected ps-landscape-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2555 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2556 ["Print Header" pr-toggle-header
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2557 :style toggle :selected ps-print-header
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2558 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2559 ["Print Header Frame" pr-toggle-header-frame
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2560 :style toggle :selected ps-print-header-frame :active ps-print-header
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2561 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2562 ["Line Number" pr-toggle-line
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2563 :style toggle :selected ps-line-number
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2564 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2565 ["Zebra Stripes" pr-toggle-zebra
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2566 :style toggle :selected ps-zebra-stripes
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2567 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2568 ["Duplex" pr-toggle-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2569 :style toggle :selected ps-spool-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2570 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2571 ["Tumble" pr-toggle-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2572 :style toggle :selected ps-spool-tumble :active ps-spool-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2573 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2574 ["Upside-Down" pr-toggle-upside-down
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2575 :style toggle :selected ps-print-upside-down
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2576 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2577 ("Print All Pages" :visible (pr-visible-p 'postscript-options)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2578 :help "Select odd/even pages/sheets to print"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2579 ["All Pages" (pr-even-or-odd-pages nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2580 :style radio :selected (eq ps-even-or-odd-pages nil)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2581 ["Even Pages" (pr-even-or-odd-pages 'even-page)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2582 :style radio :selected (eq ps-even-or-odd-pages 'even-page)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2583 ["Odd Pages" (pr-even-or-odd-pages 'odd-page)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2584 :style radio :selected (eq ps-even-or-odd-pages 'odd-page)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2585 ["Even Sheets" (pr-even-or-odd-pages 'even-sheet)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2586 :style radio :selected (eq ps-even-or-odd-pages 'even-sheet)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2587 ["Odd Sheets" (pr-even-or-odd-pages 'odd-sheet)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2588 :style radio :selected (eq ps-even-or-odd-pages 'odd-sheet)])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2589 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2590 ["Spool Buffer" pr-toggle-spool
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2591 :style toggle :selected pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2592 :included (pr-visible-p 'postscript-process)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2593 :help "Toggle PostScript spooling"]
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2594 ["Print with faces" pr-toggle-faces
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2595 :style toggle :selected pr-faces-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2596 :included (pr-visible-p 'postscript-process)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2597 :help "Toggle PostScript printing with faces"]
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2598 ["Print via Ghostscript" pr-toggle-ghostscript
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2599 :style toggle :selected pr-print-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2600 :included (pr-visible-p 'postscript-process)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2601 :help "Toggle PostScript generation using ghostscript"]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2602 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2603 ["Auto Region" pr-toggle-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2604 :style toggle :selected pr-auto-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2605 :included (pr-visible-p 'printing)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2606 ["Auto Mode" pr-toggle-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2607 :style toggle :selected pr-auto-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2608 :included (pr-visible-p 'printing)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2609 ["Menu Lock" pr-toggle-lock
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2610 :style toggle :selected pr-menu-lock
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2611 :included (pr-visible-p 'printing)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2612 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2613 ("Customize" :visible (pr-visible-p 'help)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2614 ["printing" pr-customize t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2615 ["ps-print" ps-print-customize t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2616 ["lpr" lpr-customize t])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2617 ("Show Settings" :visible (pr-visible-p 'help)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2618 ["printing" pr-show-pr-setup t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2619 ["ps-print" pr-show-ps-setup t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2620 ["lpr" pr-show-lpr-setup t])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2621 ["Help" pr-help :active t :included (pr-visible-p 'help)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2622 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2623
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2624
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2625 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2626 ;; Menu mapping:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2627 ;; unfortunately XEmacs doesn't support :active or :visible
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2628 ;; for submenus, only for items.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2629 ;; It uses :included instead of :active or :visible.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2630 ;; Also, XEmacs doesn't support :help tag.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2631 '(
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2632 ["Printing Interface" pr-interface]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2633 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2634 ("PostScript Preview" :included (pr-visible-p 'postscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2635 ("Directory" :included (not pr-spool-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2636 ["1-up" (pr-ps-directory-preview 1 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2637 ["2-up" (pr-ps-directory-preview 2 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2638 ["4-up" (pr-ps-directory-preview 4 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2639 ["Other..." (pr-ps-directory-preview nil nil nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2640 :keys "\\[pr-ps-buffer-preview]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2641 ("Buffer" :included (not pr-spool-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2642 ["1-up" (pr-ps-buffer-preview 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2643 ["2-up" (pr-ps-buffer-preview 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2644 ["4-up" (pr-ps-buffer-preview 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2645 ["Other..." (pr-ps-buffer-preview nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2646 :keys "\\[pr-ps-buffer-preview]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2647 ("Region" :included (and (not pr-spool-p) (ps-mark-active-p))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2648 ["1-up" (pr-ps-region-preview 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2649 ["2-up" (pr-ps-region-preview 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2650 ["4-up" (pr-ps-region-preview 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2651 ["Other..." (pr-ps-region-preview nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2652 :keys "\\[pr-ps-region-preview]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2653 ("Mode" :included (and (not pr-spool-p) (pr-mode-alist-p))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2654 ["1-up" (pr-ps-mode-preview 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2655 ["2-up" (pr-ps-mode-preview 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2656 ["4-up" (pr-ps-mode-preview 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2657 ["Other..." (pr-ps-mode-preview nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2658 :keys "\\[pr-ps-mode-preview]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2659 ("File"
54210
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
2660 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview)
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2661 :keys "\\[pr-ps-file-preview]"]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2662 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2663 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2664 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2665 ["1-up..." (pr-ps-file-up-preview 1 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2666 ["2-up..." (pr-ps-file-up-preview 2 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2667 ["4-up..." (pr-ps-file-up-preview 4 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2668 ["Other..." (pr-ps-file-up-preview nil t t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2669 :keys "\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2670 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2671 ["Landscape" pr-toggle-file-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2672 :style toggle :selected pr-file-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2673 :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2674 ["Duplex" pr-toggle-file-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2675 :style toggle :selected pr-file-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2676 :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2677 ["Tumble" pr-toggle-file-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2678 :style toggle :selected pr-file-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2679 :active (and pr-file-duplex pr-ps-utility-alist)])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2680 ["Despool..." (call-interactively 'pr-despool-preview)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2681 :active pr-spool-p :keys "\\[pr-despool-preview]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2682 ("PostScript Print" :included (pr-visible-p 'postscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2683 ("Directory"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2684 ["1-up" (pr-ps-directory-ps-print 1 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2685 ["2-up" (pr-ps-directory-ps-print 2 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2686 ["4-up" (pr-ps-directory-ps-print 4 nil nil t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2687 ["Other..." (pr-ps-directory-ps-print nil nil nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2688 :keys "\\[pr-ps-buffer-ps-print]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2689 ("Buffer"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2690 ["1-up" (pr-ps-buffer-ps-print 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2691 ["2-up" (pr-ps-buffer-ps-print 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2692 ["4-up" (pr-ps-buffer-ps-print 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2693 ["Other..." (pr-ps-buffer-ps-print nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2694 :keys "\\[pr-ps-buffer-ps-print]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2695 ("Region" :included (ps-mark-active-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2696 ["1-up" (pr-ps-region-ps-print 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2697 ["2-up" (pr-ps-region-ps-print 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2698 ["4-up" (pr-ps-region-ps-print 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2699 ["Other..." (pr-ps-region-ps-print nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2700 :keys "\\[pr-ps-region-ps-print]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2701 ("Mode" :included (pr-mode-alist-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2702 ["1-up" (pr-ps-mode-ps-print 1 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2703 ["2-up" (pr-ps-mode-ps-print 2 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2704 ["4-up" (pr-ps-mode-ps-print 4 t) t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2705 ["Other..." (pr-ps-mode-ps-print nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2706 :keys "\\[pr-ps-mode-ps-print]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2707 ("File"
54210
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
2708 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print)
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2709 :keys "\\[pr-ps-file-ps-print]"]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2710 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2711 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2712 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2713 ["1-up..." (pr-ps-file-up-ps-print 1 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2714 ["2-up..." (pr-ps-file-up-ps-print 2 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2715 ["4-up..." (pr-ps-file-up-ps-print 4 t t) pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2716 ["Other..." (pr-ps-file-up-ps-print nil t t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2717 :keys "\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2718 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2719 ["Landscape" pr-toggle-file-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2720 :style toggle :selected pr-file-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2721 :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2722 ["Duplex" pr-toggle-file-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2723 :style toggle :selected pr-file-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2724 :active pr-ps-utility-alist]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2725 ["Tumble" pr-toggle-file-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2726 :style toggle :selected pr-file-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2727 :active (and pr-file-duplex pr-ps-utility-alist)])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2728 ["Despool..." (call-interactively 'pr-despool-ps-print)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2729 :active pr-spool-p :keys "\\[pr-despool-ps-print]"])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2730 ["PostScript Printers" pr-update-menus
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2731 :active pr-ps-printer-alist :included (pr-visible-p 'postscript)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2732 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2733 ("Printify" :included (pr-visible-p 'text)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2734 ["Directory" pr-printify-directory t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2735 ["Buffer" pr-printify-buffer t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2736 ["Region" pr-printify-region (ps-mark-active-p)])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2737 ("Print" :included (pr-visible-p 'text)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2738 ["Directory" pr-txt-directory t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2739 ["Buffer" pr-txt-buffer t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2740 ["Region" pr-txt-region (ps-mark-active-p)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2741 ["Mode" pr-txt-mode (pr-mode-alist-p)])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2742 ["Text Printers" pr-update-menus
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2743 :active pr-txt-printer-alist :included (pr-visible-p 'text)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2744 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2745 ["Landscape" pr-toggle-landscape
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2746 :style toggle :selected ps-landscape-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2747 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2748 ["Print Header" pr-toggle-header
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2749 :style toggle :selected ps-print-header
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2750 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2751 ["Print Header Frame" pr-toggle-header-frame
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2752 :style toggle :selected ps-print-header-frame :active ps-print-header
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2753 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2754 ["Line Number" pr-toggle-line
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2755 :style toggle :selected ps-line-number
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2756 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2757 ["Zebra Stripes" pr-toggle-zebra
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2758 :style toggle :selected ps-zebra-stripes
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2759 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2760 ["Duplex" pr-toggle-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2761 :style toggle :selected ps-spool-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2762 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2763 ["Tumble" pr-toggle-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2764 :style toggle :selected ps-spool-tumble :active ps-spool-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2765 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2766 ["Upside-Down" pr-toggle-upside-down
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2767 :style toggle :selected ps-print-upside-down
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2768 :included (pr-visible-p 'postscript-options)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2769 ("Print All Pages" :included (pr-visible-p 'postscript-options)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2770 ["All Pages" (pr-even-or-odd-pages nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2771 :style radio :selected (eq ps-even-or-odd-pages nil)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2772 ["Even Pages" (pr-even-or-odd-pages 'even-page)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2773 :style radio :selected (eq ps-even-or-odd-pages 'even-page)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2774 ["Odd Pages" (pr-even-or-odd-pages 'odd-page)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2775 :style radio :selected (eq ps-even-or-odd-pages 'odd-page)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2776 ["Even Sheets" (pr-even-or-odd-pages 'even-sheet)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2777 :style radio :selected (eq ps-even-or-odd-pages 'even-sheet)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2778 ["Odd Sheets" (pr-even-or-odd-pages 'odd-sheet)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2779 :style radio :selected (eq ps-even-or-odd-pages 'odd-sheet)])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2780 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2781 ["Spool Buffer" pr-toggle-spool
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2782 :style toggle :selected pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2783 :included (pr-visible-p 'postscript-process)]
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2784 ["Print with faces" pr-toggle-faces
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2785 :style toggle :selected pr-faces-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2786 :included (pr-visible-p 'postscript-process)]
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2787 ["Print via Ghostscript" pr-toggle-ghostscript
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2788 :style toggle :selected pr-print-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2789 :included (pr-visible-p 'postscript-process)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2790 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2791 ["Auto Region" pr-toggle-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2792 :style toggle :selected pr-auto-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2793 :included (pr-visible-p 'printing)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2794 ["Auto Mode" pr-toggle-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2795 :style toggle :selected pr-auto-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2796 :included (pr-visible-p 'printing)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2797 ["Menu Lock" pr-toggle-lock
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2798 :style toggle :selected pr-menu-lock
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2799 :included (pr-visible-p 'printing)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2800 "--"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2801 ("Customize" :included (pr-visible-p 'help)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2802 ["printing" pr-customize t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2803 ["ps-print" ps-print-customize t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2804 ["lpr" lpr-customize t])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2805 ("Show Settings" :included (pr-visible-p 'help)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2806 ["printing" pr-show-pr-setup t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2807 ["ps-print" pr-show-ps-setup t]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2808 ["lpr" pr-show-lpr-setup t])
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2809 ["Help" pr-help :active t :included (pr-visible-p 'help)]
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2810 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2811 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2812
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2813
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2814 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2815 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2816 ;; Menu binding
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2817 (require 'easymenu)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2818 ;; Replace existing "print" item by "Printing" item.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2819 ;; If you're changing this file, you'll load it a second,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2820 ;; third... time, but "print" item exists only in the first load.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2821 (defvar pr-menu-print-item "print")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2822 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2823 ;; Emacs 20
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2824 ((string< emacs-version "21.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2825 (easy-menu-change '("tools") "Printing" pr-menu-spec pr-menu-print-item)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2826 (when pr-menu-print-item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2827 (easy-menu-remove-item nil '("tools") pr-menu-print-item)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2828 (setq pr-menu-print-item nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2829 pr-menu-bar (vector 'menu-bar 'tools
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2830 (pr-get-symbol "Printing")))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2831 ;; Emacs 21
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2832 (pr-menu-print-item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2833 (easy-menu-change '("files") "Print" pr-menu-spec "print-buffer")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2834 (let ((items '("print-buffer" "print-region"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2835 "ps-print-buffer-faces" "ps-print-region-faces"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2836 "ps-print-buffer" "ps-print-region")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2837 (while items
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2838 (easy-menu-remove-item nil '("files") (car items))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2839 (setq items (cdr items)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2840 (setq pr-menu-print-item nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2841 pr-menu-bar (vector 'menu-bar 'files
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2842 (pr-get-symbol "Print")))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2843 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2844 (easy-menu-change '("files") "Print" pr-menu-spec)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2845
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2846 ;; Key binding
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2847 (global-set-key [print] 'pr-ps-fast-fire)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2848 (global-set-key [M-print] 'pr-ps-mode-using-ghostscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2849 (global-set-key [C-print] 'pr-txt-fast-fire))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2850
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2851
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2852 ((eq ps-print-emacs-type 'xemacs) ; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2853 ;; Menu binding
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2854 (pr-xemacs-global-menubar
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2855 (pr-x-add-submenu nil (cons "Printing" pr-menu-spec) "Apps"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2856
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2857 ;; Key binding
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2858 (global-set-key 'f22 'pr-ps-fast-fire)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2859 (global-set-key '(meta f22) 'pr-ps-mode-using-ghostscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2860 (global-set-key '(control f22) 'pr-txt-fast-fire))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2861
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2862
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2863 ;;; You can also use something like:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2864 ;;;(global-set-key "\C-ci" 'pr-interface)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2865 ;;;(global-set-key "\C-cbp" 'pr-ps-buffer-print)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2866 ;;;(global-set-key "\C-cbx" 'pr-ps-buffer-preview)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2867 ;;;(global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2868 ;;;(global-set-key "\C-crp" 'pr-ps-region-print)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2869 ;;;(global-set-key "\C-crx" 'pr-ps-region-preview)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2870 ;;;(global-set-key "\C-crr" 'pr-ps-region-using-ghostscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2871
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2872
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2873 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2874 ;; Help Message
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2875
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2876
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2877 (defconst pr-help-message
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2878 (concat "printing.el version " pr-version
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2879 " ps-print.el version " ps-print-version
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2880 "\n\n
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2881 Menu Layout
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2882 -----------
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2883
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2884 The `printing' menu (Tools/Printing or File/Print) has the following layout:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2885
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2886 +-----------------------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2887 A 0 | Printing Interface |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2888 +-----------------------------+ +-A---------+ +-B------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2889 I 1 | PostScript Preview >|-------|Directory >|-----|1-up |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2890 2 | PostScript Print >|---- A |Buffer >|-- B |2-up |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2891 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2892 +-----------------------------+ |Mode >|-- B |Other...|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2893 II 4 | Printify >|-----\\ |File >|--\\ +--------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2894 5 | Print >|---\\ | |Despool... | |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2895 6 | Text Printer: name >|-\\ | | +-----------+ |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2896 +-----------------------------+ | | | +---------+ +------------+
54210
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
2897 III 7 |[ ]Landscape | | | \\-|Directory| | No Prep... | Ia
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2898 8 |[ ]Print Header | | | |Buffer | +------------+ Ib
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2899 9 |[ ]Print Header Frame | | | |Region | | name >|- C
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2900 10 |[ ]Line Number | | | +---------+ +------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2901 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2902 12 |[ ]Duplex | | \\---|Directory| | 2-up... |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2903 13 |[ ]Tumble | \\--\\ |Buffer | | 4-up... |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2904 14 |[ ]Upside-Down | | |Region | | Other... |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2905 15 | Print All Pages >|--\\ | |Mode | +------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2906 +-----------------------------+ | | +---------+ |[ ]Landscape| Id
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2907 IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2908 17 |[ ]Print with faces | | \\--|( )name A| |[ ]Tumble | If
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2909 18 |[ ]Print via Ghostscript | | |( )name B| +------------+
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2910 +-----------------------------+ | |... |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2911 V 19 |[ ]Auto Region | | |(*)name |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2912 20 |[ ]Auto Mode | | |... |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2913 21 |[ ]Menu Lock | | +---------+ +--------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2914 +-----------------------------+ \\------------------|(*)All Pages |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2915 VI 22 | Customize >|--- D +-D------+ |( )Even Pages |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2916 23 | Show Settings >|-------|printing| |( )Odd Pages |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2917 24 | Help | |ps-print| |( )Even Sheets|
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2918 +-----------------------------+ |lpr | |( )Odd Sheets |
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2919 +--------+ +--------------+
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2920
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2921 See `pr-visible-entry-list' for hiding some parts of the menu.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2922
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2923 The menu has the following sections:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2924
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2925 A. Interface:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2926
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2927 0. You can use a buffer interface instead of menus. It looks like the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2928 customization buffer. Basically, it has the same options found in the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2929 menu and some extra options, all this on a buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2930
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2931 I. PostScript printing:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2932
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2933 1. You can generate a PostScript file (if you type C-u before activating
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2934 menu) or PostScript temporary file for a directory, a buffer, a region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2935 or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2936 after file generation, ghostview is activated using the file generated
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2937 as argument. This option is disabled if spooling is on (option 16).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2938 Also, if you already have a PostScript file you can preview it.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2939 Instead of previewing each buffer, region or major mode at once, you
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2940 can save temporarily the PostScript code generated in a buffer and
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2941 preview it later. The option `Despool...' despools the PostScript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2942 spooling buffer in a temporary file and uses ghostview to preview it.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2943 If you type C-u before choosing this option, the PostScript code
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2944 generated is saved in a file instead of saving in a temporary file. To
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2945 spool the PostScript code generated you need to turn on the option 16.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2946 The option `Despool...' is enabled if spooling is on (option 16).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2947
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2948 NOTE 1: It's possible to customize a major mode printing, just declare
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2949 the customization in `pr-mode-alist' and invoke some of
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2950 `*-mode*' commands or select Mode option in Printing menu. An
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2951 example for major mode usage is when you're using gnus (or mh,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2952 or rmail, etc.) and you're in the *Summary* buffer, if you
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2953 forget to switch to the *Article* buffer before printing,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2954 you'll get a nicely formatted list of article subjects shows
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2955 up at the printer. With major mode printing you don't need to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2956 switch from gnus *Summary* buffer first.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2957
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2958 NOTE 2: There are the following options for PostScript file processing:
54210
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
2959 Ia. Print the file *No Preprocessing*, that is, send it
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
2960 directly to PostScript printer.
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2961 Ib. PostScript utility processing selection.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2962 See `pr-ps-utility-alist' and `pr-setting-database' for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2963 documentation.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2964 Ic. Do n-up processing before printing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2965 Id. Toggle on/off landscape for PostScript file processing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2966 Ie. Toggle on/off duplex for PostScript file processing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2967 If. Toggle on/off tumble for PostScript file processing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2968
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2969 NOTE 3: Don't forget to download and install the utilities declared on
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2970 `pr-ps-utility-alist'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2971
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2972 2. Operate the same way as option 1, but it sends directly the PostScript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2973 code (or put in a file, if you've typed C-u) or it uses ghostscript to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2974 print the PostScript file generated. It depends on option 18, if it's
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2975 turned on, it uses ghostscript; otherwise, it sends directly to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2976 printer. If spooling is on (option 16), the PostScript code is saved
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2977 temporarily in a buffer instead of printing it or saving it in a file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2978 Also, if you already have a PostScript file you can print it.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2979 Instead of printing each buffer, region or major mode at once, you can
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2980 save temporarily the PostScript code generated in a buffer and print it
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2981 later. The option `Despool...' despools the PostScript spooling buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2982 directly on a printer. If you type C-u before choosing this option,
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2983 the PostScript code generated is saved in a file instead of sending it to
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2984 the printer. To spool the PostScript code generated you need to turn on
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
2985 option 16. This option is enabled if spooling is on (option 16).
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2986 See also the NOTE 1, NOTE 2 and NOTE 3 on option 1.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2987
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2988 3. You can select a new PostScript printer to send PostScript code
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2989 generated. For selection it's used all PostScript printers defined
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2990 in `pr-ps-printer-alist' variable (see it for documentation).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2991 See also `pr-setting-database'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2992
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2993 II. Text printing:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2994
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2995 4. If you have control characters (character code from \\000 to \\037) in a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2996 buffer and you want to print them in a text printer, select this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2997 option. All control characters in your buffer or region will be
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2998 replaced by a printable representation. The printable representations
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
2999 use ^ (for ASCII control characters) or hex. The characters tab,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3000 linefeed, space, return and formfeed are not affected.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3001 You don't need to select this option if you use any option of section
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3002 I, the PostScript engine treats control characters properly.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3003
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3004 5. If you want to print a directory, buffer, region or major mode in a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3005 text printer, select this option. See also the NOTE 1 on option 1.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3006
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3007 6. You can select a new text printer to send text generated. For
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3008 selection it's used all text printers defined in `pr-txt-printer-alist'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3009 variable (see it for documentation).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3010 See also `pr-setting-database'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3011
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3012 III. PostScript page toggle options:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3013
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3014 7. If you want a PostScript landscape printing, turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3015
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3016 8. If you want to have a header in each page in your PostScript code,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3017 turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3018
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3019 9. If you want to draw a gaudy frame around the header, turn on this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3020 option. This option is enabled if print header is on (option 8).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3021
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3022 10. If you want that the line number is printed in your PostScript code,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3023 turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3024
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3025 11. If you want background zebra stripes in your PostScript code, turn on
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3026 this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3027
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3028 12. If you want a duplex printing and your PostScript printer has this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3029 feature, turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3030
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3031 13. If you turned on duplex printing, you can choose if you want to have a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3032 printing suitable for binding on the left or right (tumble off), or to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3033 have a printing suitable for binding at top or bottom (tumble on).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3034 This option is enabled if duplex is on (option 12).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3035
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3036 14. If you want a PostScript upside-down printing, turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3037
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3038 15. With this option, you can choose if you want to print all pages, odd
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3039 pages, even pages, odd sheets or even sheets.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3040 See also `ps-even-or-odd-pages'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3041
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3042 IV. PostScript processing toggle options:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3043
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3044 16. If you want to spool the PostScript code generated, turn on this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3045 option. To spool the PostScript code generated use option 2. You can
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3046 despool later by choosing option 1 or 2, sub-option `Despool...'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3047
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3048 17. If you use colors in your buffers and want to see these colors on your
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3049 PostScript code generated, turn on this option. If you have a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3050 black/white PostScript printer, these colors are displayed in gray
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3051 scale by PostScript printer interpreter.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3052
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3053 18. If you don't have a PostScript printer to send PostScript files, turn
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3054 on this option. When this option is on, the ghostscript is used to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3055 print PostScript files. In GNU or Unix system, if ghostscript is set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3056 as a PostScript filter, you don't need to turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3057
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3058 V. Printing customization:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3059
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3060 19. If you want that region is automagically detected, turn on this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3061 option. Note that this will only work if you're using transient mark
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3062 mode. When this option is on, the `*-buffer*' commands will behave
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3063 like `*-region*' commands, that is, `*-buffer*' commands will print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3064 only the region marked instead of all buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3065
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3066 20. Turn this option on if you want that when current major-mode is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3067 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3068 behave like `*-mode*' commands.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3069
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
3070 21. If you want that Printing menu stays open while you are setting
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3071 toggle options, turn on this option. The variables
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3072 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3073 menu position, so don't forget to adjust these variables if menu
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3074 position is not ok.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3075
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3076 VI. Customization:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3077
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3078 22. Besides all options in section III, IV and V, you can customize much
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3079 more PostScript options in `ps-print' option. Or you can customize
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3080 some `lpr' options for text printing. Or customize `printing'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3081 options.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3082
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3083 23. Show current settings for `printing', `ps-print' or `lpr'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3084
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3085 24. Quick help for printing menu layout.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3086 ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3087 "Printing help message.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3088
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3089
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3090 (defconst pr-interface-help-message
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3091 (concat "printing.el version " pr-version
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3092 " ps-print.el version " ps-print-version
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3093 "\n\n
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3094 The printing interface buffer has the same functionality as the printing menu.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3095 The major difference is that the states (like sending PostScript generated to a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3096 file, n-up printing, etc.) are set and saved between priting buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3097 activation. Also, the landscape, duplex and tumble values are the same for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3098 PostScript file and directory/buffer/region/mode processing; using menu, there
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3099 are different value sets for PostScript file and directory/buffer/region/mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3100 processing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3101
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3102 The printing interface buffer has the following sections:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3103
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3104 1. Print:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3105
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3106 Here you can choose to print/preview a buffer, a directory or a PostScript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3107 file:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3108
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3109 1a. Buffer:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3110
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3111 * Buffer List:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3112 Select a buffer from the current buffer list.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3113
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3114 * Region:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3115 If it's on, this means that the selected buffer has an active region,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3116 so you can turn on/off, as you wish.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3117 If it's off when a buffer is selected, this means that the selected
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3118 buffer has no active region, so it'll not be possible to turn it on.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3119 If you want to process the region, let this option on.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3120 If you want to process the whole buffer, let this option off.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3121
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3122 * Mode:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3123 If it's on, this means that the selected buffer major mode is declared
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3124 for major mode processing, so you can turn on/off, as you wish.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3125 If it's off when a buffer is selected, this means that the selected
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3126 buffer major mode isn't declared for major mode processing, so it'll
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3127 not be possible to turn it on.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3128 If you want the major mode processing, let this option on.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3129 If you don't want the major mode processing, let this option off.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3130
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3131 NOTE 1: It's possible to customize a major mode printing, just declare
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3132 the customization in `pr-mode-alist' and invoke some of
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3133 `*-mode*' commands or select Mode option in Printing menu. An
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3134 example for major mode usage is when you're using gnus (or mh,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3135 or rmail, etc.) and you're in the *Summary* buffer, if you
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3136 forget to switch to the *Article* buffer before printing,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3137 you'll get a nicely formatted list of article subjects shows
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3138 up at the printer. With major mode printing you don't need to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3139 switch from gnus *Summary* buffer first.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3140
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3141 1b. Directory:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3142
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3143 * Directory:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3144 Specify a valid directory path.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3145
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3146 * File Regexp:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3147 Specify a file name regexp. All file names in the directory that
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3148 match with regexp will be printed/previewed. An empty file name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3149 regexp means to print/preview all files in the directory.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3150
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3151 * List Directory Entry:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3152 If it's turned on, list directory entries besides file entries.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3153
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3154 1c. PostScript file:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3155
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3156 * PostScript File:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3157 Specify an existent PostScript file to print/preview.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3158
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3159 * PostScript Utility:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3160 Select a PostScript utility.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3161 See `pr-ps-utility-alist' and `pr-setting-database' for documentation.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3162
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3163 NOTE 2: Don't forget to download and install the utilities declared on
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3164 `pr-ps-utility-alist'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3165
54210
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
3166 * No Preprocessing:
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3167 If it's turned on, don't use the PostScript utility to preprocess the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3168 PostScript file before printing/previewing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3169
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3170 2. PostScript printer:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3171
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3172 * PostScript Printer:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3173 You can select a new PostScript printer to send PostScript code
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3174 generated. For selection it's used all PostScript printers defined
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3175 in `pr-ps-printer-alist' variable (see it for documentation).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3176 See also `pr-setting-database'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3177
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3178 * Despool:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3179 If spooling is on, you can turn it on/off, as you wish.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3180 If spooling is off, it'll not be possible to turn it on.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3181 If it's turned on, specify to despools the PostScript spooling buffer in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3182 a temporary file or in the selected PostScript file when
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3183 printing/previewing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3184
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3185 * Preview:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3186 Preview the PostScript generated.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3187
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3188 * Print:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3189 Print the PostScript generated.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3190
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3191 * Quit:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3192 Quit from printing interface buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3193
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3194 * Send to Printer/Temporary File:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3195 If it's turned on, the PostScript generated is sent directly to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3196 PostScript printer or, for previewing, to a temporary file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3197
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3198 * Send to File:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3199 Specify a file name to send the PostScript generated.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3200
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3201 * N-Up:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3202 Specify n-up printing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3203
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3204 3. Text printer:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3205
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3206 * Text Printer:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3207 Select a new text printer to send text generated. For selection it's used
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3208 all text printers defined in `pr-txt-printer-alist' variable (see it for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3209 documentation). See also `pr-setting-database'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3210
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3211 * Printify:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3212 If you have control characters (character code from \\000 to \\037) in a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3213 buffer and you want to print them in a text printer, select this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3214 option. All control characters in your buffer or region will be
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3215 replaced by a printable representation. The printable representations
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3216 use ^ (for ASCII control characters) or hex. The characters tab,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3217 linefeed, space, return and formfeed are not affected.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3218 You don't need to select this option if you use any option of section
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3219 I, the PostScript engine treats control characters properly.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3220
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3221 * Print:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3222 To print a directory, buffer, region or major mode in a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3223 text printer, select this option. See also the NOTE 1 on section 1.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3224
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3225 * Quit:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3226 Quit from printing interface buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3227
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3228 4. Settings:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3229
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3230 There are 3 setting columns:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3231
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3232 4a. First column (left column):
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3233
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3234 * Landscape:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3235 PostScript landscape printing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3236
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3237 * Print Header:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3238 To have a header in each page in your PostScript code.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3239
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3240 * Print Header Frame:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3241 To draw a gaudy frame around the header.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3242
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3243 * Line Number:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3244 The line number is printed in your PostScript code.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3245
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3246 * Zebra Stripes:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3247 Background zebra stripes in your PostScript code.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3248
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3249 * Duplex:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3250 Duplex printing (if your PostScript printer has this feature).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3251
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3252 * Tumble:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3253 If duplex printing is on, you can choose if you want to have a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3254 printing suitable for binding on the left or right (tumble off), or to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3255 have a printing suitable for binding at top or bottom (tumble on).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3256
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3257 * Upside-Down:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3258 PostScript upside-down printing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3259
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3260 4b. Second column (middle column):
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3261
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3262 * Auto Region:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3263 If you want that region is automagically detected, turn on this
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3264 option. Note that this will only work if you're using transient mark
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3265 mode. When this option is on, the `*-buffer*' commands will behave
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3266 like `*-region*' commands, that is, `*-buffer*' commands will print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3267 only the region marked instead of all buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3268
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3269 * Auto Mode:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3270 Turn this option on if you want that when current major-mode is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3271 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3272 behave like `*-mode*' commands.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3273
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3274 * Menu Lock:
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
3275 If you want that Printing menu stays open while you are setting
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3276 toggle options, turn on this option. The variables
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3277 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3278 menu position, so don't forget to adjust these variables if menu
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3279 position is not ok.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3280
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3281 * Spool Buffer:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3282 To spool the PostScript code generated. You can despool later by
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3283 setting Despool option on PostScript printer section.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3284
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
3285 * Print with faces:
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3286 If you use colors in your buffers and want to see these colors on your
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3287 PostScript code generated, turn on this option. If you have a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3288 black/white PostScript printer, these colors are displayed in gray
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3289 scale by PostScript printer interpreter.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3290
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
3291 * Print via Ghostscript:
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3292 If you don't have a PostScript printer to send PostScript files, turn
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3293 on this option. When this option is on, the ghostscript is used to
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3294 print PostScript files. In GNU or Unix system, if ghostscript is set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3295 as a PostScript filter, you don't need to turn on this option.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3296
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3297 * Parity Page Menu:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3298 To print all pages, odd pages, even pages, odd sheets or even sheets.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3299 See also `ps-even-or-odd-pages'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3300
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3301 4c. Third column (right column):
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3302
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3303 * Verbose:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3304 That is, to be verbose when editing a field in interface buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3305
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3306 5. Customize:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3307
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3308 Besides all options in section 4, you can customize much more PostScript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3309 options in `ps-print' option. Or you can customize some `lpr' options for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3310 text printing. Or customize `printing' options.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3311
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3312 6. Show settings:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3313
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3314 Show current settings for `printing', `ps-print' or `lpr'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3315
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3316 7. Help:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3317
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3318 Quick help for printing interface buffer and printing menu layout. You can
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3319 also quit the printing interface buffer or kill all printing help buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3320 ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3321 "Printing buffer interface help message.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3322
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3323
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3324 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3325 ;; Commands
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3326
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3327
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3328 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3329 (defun pr-interface (&optional buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3330 "Activate the printing interface buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3331
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
3332 If BUFFER is nil, the current buffer is used for printing.
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
3333
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
3334 For more information, type \\[pr-interface-help]."
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3335 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3336 (save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3337 (set-buffer (or buffer (current-buffer)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3338 (pr-create-interface)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3339
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3340
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3341 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3342 (defun pr-ps-directory-preview (n-up dir file-regexp &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3343 "Preview directory using ghostview.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3344
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3345 Interactively, the command prompts for N-UP printing number, a directory, a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3346 file name regexp for matching and, when you use a prefix argument (C-u), the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3347 command prompts the user for a file name, and saves the PostScript image in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3348 that file instead of saving it in a temporary file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3349
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3350 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3351 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3352 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3353 save the image in a temporary file. If FILENAME is a string, save the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3354 PostScript image in a file with that name. If FILENAME is t, prompts for a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3355 file name.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3356
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3357 See also documentation for `pr-list-directory'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3358 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS preview dir")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3359 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3360 (pr-prompt "PS preview dir"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3361 (setq filename (pr-ps-file filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3362 (pr-ps-file-list n-up dir file-regexp filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3363 (or pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3364 (pr-ps-file-preview filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3365
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3366
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3367 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3368 (defun pr-ps-directory-using-ghostscript (n-up dir file-regexp &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3369 "Print directory using PostScript through ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3370
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3371 Interactively, the command prompts for N-UP printing number, a directory, a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3372 file name regexp for matching and, when you use a prefix argument (C-u), the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3373 command prompts the user for a file name, and saves the PostScript image in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3374 that file instead of saving it in a temporary file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3375
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3376 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3377 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3378 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3379 save the image in a temporary file. If FILENAME is a string, save the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3380 PostScript image in a file with that name. If FILENAME is t, prompts for a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3381 file name.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3382
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3383 See also documentation for `pr-list-directory'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3384 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir GS")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3385 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3386 (pr-prompt "PS print dir GS"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3387 (let ((file (pr-ps-file filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3388 (pr-ps-file-list n-up dir file-regexp file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3389 (pr-ps-file-using-ghostscript file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3390 (or filename (pr-delete-file file))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3391
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3392
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3393 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3394 (defun pr-ps-directory-print (n-up dir file-regexp &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3395 "Print directory using PostScript printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3396
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3397 Interactively, the command prompts for N-UP printing number, a directory, a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3398 file name regexp for matching and, when you use a prefix argument (C-u), the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3399 command prompts the user for a file name, and saves the PostScript image in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3400 that file instead of saving it in a temporary file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3401
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3402 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3403 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3404 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3405 save the image in a temporary file. If FILENAME is a string, save the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3406 PostScript image in a file with that name. If FILENAME is t, prompts for a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3407 file name.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3408
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3409 See also documentation for `pr-list-directory'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3410 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3411 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3412 (pr-prompt "PS print dir"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3413 (let ((file (pr-ps-file filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3414 (pr-ps-file-list n-up dir file-regexp file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3415 (pr-ps-file-print file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3416 (or filename (pr-delete-file file))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3417
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3418
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3419 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3420 (defun pr-ps-directory-ps-print (n-up dir file-regexp &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3421 "Print directory using PostScript printer or through ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3422
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3423 It depends on `pr-print-using-ghostscript'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3424
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3425 Interactively, the command prompts for N-UP printing number, a directory, a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3426 file name regexp for matching and, when you use a prefix argument (C-u), the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3427 command prompts the user for a file name, and saves the PostScript image in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3428 that file instead of saving it in a temporary file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3429
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3430 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3431 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3432 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3433 save the image in a temporary file. If FILENAME is a string, save the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3434 PostScript image in a file with that name. If FILENAME is t, prompts for a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3435 file name.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3436
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3437 See also documentation for `pr-list-directory'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3438 (interactive (pr-interactive-ps-dir-args
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3439 (pr-prompt (pr-prompt-gs "PS print dir"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3440 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3441 (pr-prompt (pr-prompt-gs "PS print dir")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3442 (if (pr-using-ghostscript-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3443 (pr-ps-directory-using-ghostscript n-up dir file-regexp filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3444 (pr-ps-directory-print n-up dir file-regexp filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3445
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3446
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3447 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3448 (defun pr-ps-buffer-preview (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3449 "Preview buffer using ghostview.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3450
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3451 Interactively, the command prompts for N-UP printing number and, when you use a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3452 prefix argument (C-u), the command prompts the user for a file name, and saves
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3453 the PostScript image in that file instead of saving it in a temporary file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3454
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3455 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3456 argument FILENAME is treated as follows: if it's nil, save the image in a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3457 temporary file. If FILENAME is a string, save the PostScript image in a file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3458 with that name. If FILENAME is t, prompts for a file name."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3459 (interactive (pr-interactive-n-up-file (pr-prompt "PS preview")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3460 (if (pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3461 (pr-ps-mode-preview n-up filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3462 (pr-ps-preview (pr-region-active-symbol) n-up filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3463 (pr-region-active-string "PS preview"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3464
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3465
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3466 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3467 (defun pr-ps-buffer-using-ghostscript (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3468 "Print buffer using PostScript through ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3469
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3470 Interactively, the command prompts for N-UP printing number and, when you use a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3471 prefix argument (C-u), the command prompts the user for a file name, and saves
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3472 the PostScript image in that file instead of sending it to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3473
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3474 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3475 argument FILENAME is treated as follows: if it's nil, send the image to the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3476 printer. If FILENAME is a string, save the PostScript image in a file with
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3477 that name. If FILENAME is t, prompts for a file name."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3478 (interactive (pr-interactive-n-up-file (pr-prompt "PS print GS")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3479 (if (pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3480 (pr-ps-mode-using-ghostscript n-up filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3481 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3482 (pr-region-active-string "PS print GS"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3483
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3484
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3485 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3486 (defun pr-ps-buffer-print (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3487 "Print buffer using PostScript printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3488
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3489 Interactively, the command prompts for N-UP printing number and, when you use a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3490 prefix argument (C-u), the command prompts the user for a file name, and saves
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3491 the PostScript image in that file instead of sending it to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3492
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3493 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3494 argument FILENAME is treated as follows: if it's nil, send the image to the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3495 printer. If FILENAME is a string, save the PostScript image in a file with
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3496 that name. If FILENAME is t, prompts for a file name."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3497 (interactive (pr-interactive-n-up-file (pr-prompt "PS print")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3498 (if (pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3499 (pr-ps-mode-print n-up filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3500 (pr-ps-print (pr-region-active-symbol) n-up filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3501 (pr-region-active-string "PS print"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3502
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3503
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3504 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3505 (defun pr-ps-buffer-ps-print (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3506 "Print buffer using PostScript printer or through ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3507
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3508 It depends on `pr-print-using-ghostscript'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3509
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3510 Interactively, the command prompts for N-UP printing number and, when you use a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3511 prefix argument (C-u), the command prompts the user for a file name, and saves
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3512 the PostScript image in that file instead of sending it to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3513
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3514 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3515 argument FILENAME is treated as follows: if it's nil, send the image to the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3516 printer. If FILENAME is a string, save the PostScript image in a file with
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3517 that name. If FILENAME is t, prompts for a file name."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3518 (interactive (pr-interactive-n-up-file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3519 (pr-prompt (pr-prompt-gs "PS print"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3520 (cond ((pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3521 (pr-ps-mode-ps-print n-up filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3522 ((pr-using-ghostscript-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3523 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3524 (pr-region-active-string "PS print GS")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3525 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3526 (pr-ps-print (pr-region-active-symbol) n-up filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3527 (pr-region-active-string "PS print")))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3528
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3529
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3530 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3531 (defun pr-ps-region-preview (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3532 "Preview region using ghostview.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3533
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3534 See also `pr-ps-buffer-preview'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3535 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS preview")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3536 (if (pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3537 (let ((pr-auto-region t))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3538 (pr-ps-mode-preview n-up filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3539 (pr-ps-preview 'region n-up filename "PS preview region")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3540
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3541
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3542 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3543 (defun pr-ps-region-using-ghostscript (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3544 "Print region using PostScript through ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3545
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3546 See also `pr-ps-buffer-using-ghostscript'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3547 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print GS")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3548 (if (pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3549 (let ((pr-auto-region t))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3550 (pr-ps-mode-using-ghostscript n-up filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3551 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3552
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3553
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3554 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3555 (defun pr-ps-region-print (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3556 "Print region using PostScript printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3557
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3558 See also `pr-ps-buffer-print'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3559 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3560 (if (pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3561 (let ((pr-auto-region t))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3562 (pr-ps-mode-print n-up filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3563 (pr-ps-print 'region n-up filename "PS print region")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3564
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3565
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3566 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3567 (defun pr-ps-region-ps-print (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3568 "Print region using PostScript printer or through ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3569
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3570 See also `pr-ps-buffer-ps-print'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3571 (interactive (pr-interactive-n-up-file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3572 (pr-prompt-region (pr-prompt-gs "PS print"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3573 (cond ((pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3574 (let ((pr-auto-region t))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3575 (pr-ps-mode-ps-print n-up filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3576 ((pr-using-ghostscript-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3577 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3578 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3579 (pr-ps-print 'region n-up filename "PS print region"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3580
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3581
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3582 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3583 (defun pr-ps-mode-preview (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3584 "Preview major mode using ghostview.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3585
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3586 See also `pr-ps-buffer-preview'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3587 (interactive (pr-interactive-n-up-file "PS preview mode"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3588 (pr-set-n-up-and-filename 'n-up 'filename "PS preview mode")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3589 (let ((file (pr-ps-file filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3590 (and (pr-ps-mode n-up file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3591 (not pr-spool-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3592 (pr-ps-file-preview file))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3593
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3594
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3595 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3596 (defun pr-ps-mode-using-ghostscript (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3597 "Print major mode using PostScript through ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3598
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3599 See also `pr-ps-buffer-using-ghostscript'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3600 (interactive (pr-interactive-n-up-file "PS print GS mode"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3601 (pr-set-n-up-and-filename 'n-up 'filename "PS print GS mode")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3602 (let ((file (pr-ps-file filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3603 (when (and (pr-ps-mode n-up file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3604 (not pr-spool-p))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3605 (pr-ps-file-using-ghostscript file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3606 (or filename (pr-delete-file file)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3607
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3608
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3609 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3610 (defun pr-ps-mode-print (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3611 "Print major mode using PostScript printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3612
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3613 See also `pr-ps-buffer-print'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3614 (interactive (pr-interactive-n-up-file "PS print mode"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3615 (pr-set-n-up-and-filename 'n-up 'filename "PS print mode")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3616 (pr-ps-mode n-up filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3617
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3618
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3619 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3620 (defun pr-ps-mode-ps-print (n-up &optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3621 "Print major mode using PostScript or through ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3622
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3623 See also `pr-ps-buffer-ps-print'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3624 (interactive (pr-interactive-n-up-file (pr-prompt-gs "PS print mode")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3625 (if (pr-using-ghostscript-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3626 (pr-ps-mode-using-ghostscript n-up filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3627 (pr-ps-mode-print n-up filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3628
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3629
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3630 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3631 (defun pr-printify-directory (&optional dir file-regexp)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3632 "Replace nonprinting characters in directory with printable representations.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3633 The printable representations use ^ (for ASCII control characters) or hex.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3634 The characters tab, linefeed, space, return and formfeed are not affected.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3635
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3636 Interactively, the command prompts for a directory and a file name regexp for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3637 matching.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3638
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3639 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3640 prompts for FILE(name)-REGEXP.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3641
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3642 See also documentation for `pr-list-directory'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3643 (interactive (pr-interactive-dir-args "Printify dir"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3644 (pr-set-dir-args 'dir 'file-regexp "Printify dir")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3645 (pr-file-list dir file-regexp 'pr-printify-buffer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3647
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3648 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3649 (defun pr-printify-buffer ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3650 "Replace nonprinting characters in buffer with printable representations.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3651 The printable representations use ^ (for ASCII control characters) or hex.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3652 The characters tab, linefeed, space, return and formfeed are not affected."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3653 (interactive "*")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3654 (if (pr-region-active-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3655 (pr-printify-region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3656 (printify-region (point-min) (point-max))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3657
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3658
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3659 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3660 (defun pr-printify-region ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3661 "Replace nonprinting characters in region with printable representations.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3662 The printable representations use ^ (for ASCII control characters) or hex.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3663 The characters tab, linefeed, space, return and formfeed are not affected."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3664 (interactive "*")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3665 (printify-region (point) (mark)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3666
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3667
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3668 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3669 (defun pr-txt-directory (&optional dir file-regexp)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3670 "Print directory using text printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3671
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3672 Interactively, the command prompts for a directory and a file name regexp for
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3673 matching.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3674
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3675 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3676 prompts for FILE(name)-REGEXP.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3677
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3678 See also documentation for `pr-list-directory'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3679 (interactive (pr-interactive-dir-args "Print dir"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3680 (pr-set-dir-args 'dir 'file-regexp "Print dir")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3681 (pr-file-list dir file-regexp 'pr-txt-buffer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3682
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3683
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3684 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3685 (defun pr-txt-buffer ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3686 "Print buffer using text printer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3687 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3688 (cond ((pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3689 (pr-txt-mode))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3690 ((pr-region-active-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3691 (pr-txt-region))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3692 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3693 (pr-txt-print (point-min) (point-max)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3694
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3695
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3696 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3697 (defun pr-txt-region ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3698 "Print region using text printer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3699 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3700 (if (pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3701 (let ((pr-auto-region t))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3702 (pr-txt-mode))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3703 (pr-txt-print (point) (mark))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3704
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3705
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3706 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3707 (defun pr-txt-mode ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3708 "Print major mode using text printer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3709 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3710 (let ((args (pr-mode-alist-p)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3711 (if args
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3712 (funcall (car args) (nthcdr 2 args))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3713 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3714 (message "`%s' major mode not declared." major-mode))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3715
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3716
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3717 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3718 (defun pr-despool-preview (&optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3719 "Preview spooled PostScript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3720
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3721 Interactively, when you use a prefix argument (C-u), the command prompts the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3722 user for a file name, and saves the spooled PostScript image in that file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3723 instead of saving it in a temporary file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3724
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3725 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3726 save the image in a temporary file. If FILENAME is a string, save the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3727 PostScript image in a file with that name."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3728 (interactive (list (ps-print-preprint current-prefix-arg)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3729 (let ((file (pr-ps-file filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3730 (when (stringp file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3731 (pr-despool-print file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3732 (pr-ps-file-preview file))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3733
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3734
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3735 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3736 (defun pr-despool-using-ghostscript (&optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3737 "Print spooled PostScript using ghostscript.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3738
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3739 Interactively, when you use a prefix argument (C-u), the command prompts the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3740 user for a file name, and saves the spooled PostScript image in that file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3741 instead of sending it to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3742
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3743 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3744 send the image to the printer. If FILENAME is a string, save the PostScript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3745 image in a file with that name."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3746 (interactive (list (ps-print-preprint current-prefix-arg)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3747 (let ((file (pr-ps-file filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3748 (when (stringp file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3749 (pr-despool-print file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3750 (pr-ps-file-using-ghostscript file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3751 (or filename (pr-delete-file file)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3752
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3753
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3754 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3755 (defun pr-despool-print (&optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3756 "Send the spooled PostScript to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3757
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3758 Interactively, when you use a prefix argument (C-u), the command prompts the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3759 user for a file name, and saves the spooled PostScript image in that file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3760 instead of sending it to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3761
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3762 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3763 send the image to the printer. If FILENAME is a string, save the PostScript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3764 image in a file with that name."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3765 (interactive (list (ps-print-preprint current-prefix-arg)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3766 (let ((ps-lpr-command (pr-command pr-ps-command))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3767 (ps-lpr-switches pr-ps-switches)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3768 (ps-printer-name-option pr-ps-printer-switch)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3769 (ps-printer-name pr-ps-printer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3770 (ps-despool filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3771
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3772
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3773 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3774 (defun pr-despool-ps-print (&optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3775 "Send the spooled PostScript to the printer or use ghostscript to print it.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3776
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3777 Interactively, when you use a prefix argument (C-u), the command prompts the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3778 user for a file name, and saves the spooled PostScript image in that file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3779 instead of sending it to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3780
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3781 Noninteractively, the argument FILENAME is treated as follows: if it is nil,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3782 send the image to the printer. If FILENAME is a string, save the PostScript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3783 image in a file with that name."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3784 (interactive (list (ps-print-preprint current-prefix-arg)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3785 (if pr-print-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3786 (pr-despool-using-ghostscript filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3787 (pr-despool-print filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3788
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3789
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3790 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3791 (defun pr-ps-file-preview (filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3792 "Preview PostScript file FILENAME."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3793 (interactive (list (pr-ps-infile-preprint "Preview ")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3794 (and (stringp filename) (file-exists-p filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3795 (let ((shell-file-name pr-shell-file-name))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3796 (start-process-shell-command "PREVIEW" "*Messages*"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3797 (pr-command pr-gv-command) filename))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3798
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3799
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3800 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3801 (defun pr-ps-file-up-preview (n-up ifilename &optional ofilename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3802 "Preview PostScript file FILENAME."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3803 (interactive (pr-interactive-n-up-inout "PS preview"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3804 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3805 "PS preview ")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3806 (pr-ps-utility-process n-up ifilename outfile)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3807 (pr-ps-file-preview outfile)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3808
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3809
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3810 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3811 (defun pr-ps-file-using-ghostscript (filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3812 "Print PostScript file FILENAME using ghostscript."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3813 (interactive (list (pr-ps-infile-preprint "Print preview ")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3814 (and (stringp filename) (file-exists-p filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3815 (let* ((file (pr-expand-file-name filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3816 (tempfile (pr-dosify-path (make-temp-name file))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3817 ;; gs use
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3818 (pr-shell-command
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3819 (concat (pr-command pr-gs-command)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3820 " -sDEVICE=" pr-gs-device
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3821 " -r" (int-to-string pr-gs-resolution)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3822 " " (pr-switches-string pr-gs-switches "pr-gs-switches")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3823 " -sOutputFile=" tempfile " " file " -c quit"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3824 ;; printing
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3825 (pr-ps-file-print tempfile)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3826 ;; deleting
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3827 (pr-delete-file tempfile))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3828
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3829
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3830 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3831 (defun pr-ps-file-print (filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3832 "Print PostScript file FILENAME."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3833 (interactive (list (pr-ps-infile-preprint "Print ")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3834 (and (stringp filename) (file-exists-p filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3835 ;; printing
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3836 (let ((file (pr-expand-file-name filename)))
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
3837 (if (string= pr-ps-command "")
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3838 (let ((ps-spool-buffer (get-buffer-create ps-spool-buffer-name)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3839 (save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3840 (set-buffer ps-spool-buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3841 (erase-buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3842 (insert-file-contents-literally file))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3843 (pr-despool-print))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3844 (pr-shell-command
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3845 (concat (pr-command pr-ps-command) " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3846 (pr-switches-string pr-ps-switches "pr-gs-switches") " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3847 (if (string-match "cp" pr-ps-command)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3848 ;; for "cp" (cmd in out)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3849 (concat "\"" file "\" "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3850 pr-ps-printer-switch pr-ps-printer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3851 ;; else, for others (cmd out in)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3852 (concat pr-ps-printer-switch pr-ps-printer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3853 " \"" file "\""))))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3854
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3855
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3856 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3857 (defun pr-ps-file-ps-print (filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3858 "Send PostScript file FILENAME to printer or use ghostscript to print it."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3859 (interactive (list (pr-ps-infile-preprint
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3860 (if pr-print-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3861 "Print preview "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3862 "Print "))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3863 (if pr-print-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3864 (pr-ps-file-using-ghostscript filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3865 (pr-ps-file-print filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3866
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3867
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3868 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3869 (defun pr-ps-file-up-ps-print (n-up ifilename &optional ofilename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3870 "Process a PostScript file IFILENAME and send it to printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3871
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3872 Interactively, the command prompts for N-UP printing number, for an input
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3873 PostScript file IFILENAME and, when you use a prefix argument (C-u), the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3874 command prompts the user for an output PostScript file name OFILENAME, and
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3875 saves the PostScript image in that file instead of sending it to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3876
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3877 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3878 argument IFILENAME is treated as follows: if it's t, prompts for an input
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3879 PostScript file name; otherwise, it *must* be a string that it's an input
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3880 PostScript file name. The argument OFILENAME is treated as follows: if it's
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3881 nil, send the image to the printer. If OFILENAME is a string, save the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3882 PostScript image in a file with that name. If OFILENAME is t, prompts for a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3883 file name."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3884 (interactive (pr-interactive-n-up-inout
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3885 (if pr-print-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3886 "PS print GS"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3887 "PS print")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3888 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3889 (if pr-print-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3890 "PS print GS "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3891 "PS print "))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3892 (pr-ps-utility-process n-up ifilename outfile)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3893 (unless ofilename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3894 (pr-ps-file-ps-print outfile)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3895 (pr-delete-file outfile))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3896
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3897
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3898 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3899 (defun pr-toggle-file-duplex ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3900 "Toggle duplex for PostScript file."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3901 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3902 (pr-toggle 'pr-file-duplex "PS file duplex" nil 7 5 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3903 '("PostScript Print" "File")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3904
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3905
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3906 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3907 (defun pr-toggle-file-tumble ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3908 "Toggle tumble for PostScript file.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3909
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3910 If tumble is off, produces a printing suitable for binding on the left or
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3911 right.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3912 If tumble is on, produces a printing suitable for binding at the top or
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3913 bottom."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3914 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3915 (pr-toggle 'pr-file-tumble "PS file tumble" nil 8 5 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3916 '("PostScript Print" "File")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3917
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3918
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3919 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3920 (defun pr-toggle-file-landscape ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3921 "Toggle landscape for PostScript file."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3922 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3923 (pr-toggle 'pr-file-landscape "PS file landscape" nil 6 5 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3924 '("PostScript Print" "File")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3925
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3926
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3927 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3928 (defun pr-toggle-ghostscript ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3929 "Toggle printing using ghostscript."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3930 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3931 (pr-toggle 'pr-print-using-ghostscript "Printing using ghostscript"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3932 'postscript-process 2 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3933
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3934
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3935 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3936 (defun pr-toggle-faces ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3937 "Toggle printing with faces."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3938 (interactive)
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
3939 (pr-toggle 'pr-faces-p "Printing with faces"
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3940 'postscript-process 1 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3941
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3942
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3943 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3944 (defun pr-toggle-spool ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3945 "Toggle spooling."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3946 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3947 (pr-toggle 'pr-spool-p "Spooling printing"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3948 'postscript-process 0 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3949
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3950
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3951 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3952 (defun pr-toggle-duplex ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3953 "Toggle duplex."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3954 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3955 (pr-toggle 'ps-spool-duplex "Printing duplex"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3956 'postcsript-options 5 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3957
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3958
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3959 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3960 (defun pr-toggle-tumble ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3961 "Toggle tumble.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3962
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3963 If tumble is off, produces a printing suitable for binding on the left or
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3964 right.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3965 If tumble is on, produces a printing suitable for binding at the top or
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3966 bottom."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3967 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3968 (pr-toggle 'ps-spool-tumble "Tumble"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3969 'postscript-options 6 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3970
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3971
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3972 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3973 (defun pr-toggle-landscape ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3974 "Toggle landscape."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3975 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3976 (pr-toggle 'ps-landscape-mode "Landscape"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3977 'postscript-options 0 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3978
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3979
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3980 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3981 (defun pr-toggle-upside-down ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3982 "Toggle upside-down."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3983 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3984 (pr-toggle 'ps-print-upside-down "Upside-Down"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3985 'postscript-options 7 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3986
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3987
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3988 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3989 (defun pr-toggle-line ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3990 "Toggle line number."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3991 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3992 (pr-toggle 'ps-line-number "Line number"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3993 'postscript-options 3 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3994
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3995
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3996 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3997 (defun pr-toggle-zebra ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3998 "Toggle zebra stripes."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
3999 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4000 (pr-toggle 'ps-zebra-stripes "Zebra stripe"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4001 'postscript-options 4 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4002
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4003
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4004 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4005 (defun pr-toggle-header ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4006 "Toggle printing header."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4007 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4008 (pr-toggle 'ps-print-header "Print header"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4009 'postscript-options 1 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4010
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4011
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4012 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4013 (defun pr-toggle-header-frame ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4014 "Toggle printing header frame."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4015 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4016 (pr-toggle 'ps-print-header-frame "Print header frame"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4017 'postscript-options 2 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4018
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4019
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4020 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4021 (defun pr-toggle-lock ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4022 "Toggle menu lock."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4023 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4024 (pr-toggle 'pr-menu-lock "Menu lock"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4025 'printing 2 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4026
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4027
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4028 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4029 (defun pr-toggle-region ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4030 "Toggle auto region."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4031 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4032 (pr-toggle 'pr-auto-region "Auto region"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4033 'printing 0 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4034
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4035
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4036 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4037 (defun pr-toggle-mode ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4038 "Toggle auto mode."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4039 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4040 (pr-toggle 'pr-auto-mode "Auto mode"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4041 'printing 1 12 'toggle))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4042
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4043
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4044 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4045 (defun pr-customize (&rest ignore)
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4046 "Customization of the `printing' group."
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4047 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4048 (customize-group 'printing))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4049
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4050
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4051 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4052 (defun lpr-customize (&rest ignore)
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4053 "Customization of the `lpr' group."
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4054 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4055 (customize-group 'lpr))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4056
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4057
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4058 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4059 (defun pr-help (&rest ignore)
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4060 "Help for the printing package."
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4061 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4062 (pr-show-setup pr-help-message "*Printing Help*"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4063
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4064
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4065 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4066 (defun pr-ps-name ()
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4067 "Interactively select a PostScript printer."
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4068 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4069 (pr-menu-set-ps-title
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4070 (pr-complete-alist "PostScript printer" pr-ps-printer-alist pr-ps-name)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4071
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4072
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4073 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4074 (defun pr-txt-name ()
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4075 "Interactively select a text printer."
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4076 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4077 (pr-menu-set-txt-title
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4078 (pr-complete-alist "Text printer" pr-txt-printer-alist pr-txt-name)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4079
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4080
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4081 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4082 (defun pr-ps-utility ()
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4083 "Interactively select a PostScript utility."
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4084 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4085 (pr-menu-set-utility-title
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4086 (pr-complete-alist "Postscript utility" pr-ps-utility-alist pr-ps-utility)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4087
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4088
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4089 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4090 (defun pr-show-ps-setup (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4091 "Show current ps-print settings."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4092 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4093 (pr-show-setup (ps-setup) "*PS Setup*"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4094
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4095
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4096 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4097 (defun pr-show-pr-setup (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4098 "Show current printing settings."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4099 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4100 (pr-show-setup (pr-setup) "*PR Setup*"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4101
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4102
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4103 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4104 (defun pr-show-lpr-setup (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4105 "Show current lpr settings."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4106 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4107 (pr-show-setup (lpr-setup) "*LPR Setup*"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4108
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4109
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4110 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4111 ;; Fast Commands
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4112
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4113
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4114 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4115 (defun pr-ps-fast-fire (n-up &optional select)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4116 "Fast fire function for PostScript printing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4117
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4118 If a region is active, the region will be printed instead of the whole buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4119 Also if the current major-mode is defined in `pr-mode-alist', the settings in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4120 `pr-mode-alist' will be used, that is, the current buffer or region will be
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4121 printed using `pr-ps-mode-ps-print'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4122
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4123
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4124 Interactively, you have the following situations:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4125
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4126 M-x pr-ps-fast-fire RET
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4127 The command prompts the user for a N-UP value and printing will
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4128 immediatelly be done using the current active printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4129
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4130 C-u M-x pr-ps-fast-fire RET
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4131 C-u 0 M-x pr-ps-fast-fire RET
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4132 The command prompts the user for a N-UP value and also for a current
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4133 PostScript printer, then printing will immediatelly be done using the new
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4134 current active printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4135
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4136 C-u 1 M-x pr-ps-fast-fire RET
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4137 The command prompts the user for a N-UP value and also for a file name,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4138 and saves the PostScript image in that file instead of sending it to the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4139 printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4140
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4141 C-u 2 M-x pr-ps-fast-fire RET
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4142 The command prompts the user for a N-UP value, then for a current
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4143 PostScript printer and, finally, for a file name. Then change the active
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4144 printer to that choosen by user and saves the PostScript image in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4145 that file instead of sending it to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4146
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4147
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4148 Noninteractively, the argument N-UP should be a positive integer greater than
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4149 zero and the argument SELECT is treated as follows:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4150
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4151 If it's nil, send the image to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4152
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4153 If it's a list or an integer lesser or equal to zero, the command prompts
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4154 the user for a current PostScript printer, then printing will immediatelly
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4155 be done using the new current active printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4156
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4157 If it's an integer equal to 1, the command prompts the user for a file name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4158 and saves the PostScript image in that file instead of sending it to the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4159 printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4160
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4161 If it's an integer greater or equal to 2, the command prompts the user for a
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4162 current PostScript printer and for a file name. Then change the active
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4163 printer to that choosen by user and saves the PostScript image in that file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4164 instead of sending it to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4165
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4166 If it's a symbol which it's defined in `pr-ps-printer-alist', it's the new
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4167 active printer and printing will immediatelly be done using the new active
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4168 printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4169
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4170 Otherwise, send the image to the printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4171
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4172
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4173 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4174 are both set to t."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4175 (interactive (list (pr-interactive-n-up (pr-prompt-gs "PS print fast"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4176 current-prefix-arg))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4177 (let ((pr-auto-region t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4178 (pr-auto-mode t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4179 filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4180 (cond ((null select))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4181 ((listp select)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4182 (pr-ps-name))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4183 ((and (symbolp select)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4184 (assq select pr-ps-printer-alist))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4185 (pr-menu-set-ps-title select))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4186 ((integerp select)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4187 (and (/= select 1)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4188 (pr-ps-name))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4189 (and (>= select 1) (not pr-spool-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4190 (setq filename (pr-ps-outfile-preprint
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4191 (if pr-print-using-ghostscript
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4192 "Fast GS "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4193 "Fast "))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4194 (pr-ps-buffer-ps-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4195 (if (integerp n-up)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4196 (min (max n-up 1) 100)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4197 (error "n-up must be an integer greater than zero."))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4198 filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4199
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4200
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4201 ;;;###autoload
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4202 (defun pr-txt-fast-fire (&optional select-printer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4203 "Fast fire function for text printing.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4204
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4205 If a region is active, the region will be printed instead of the whole buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4206 Also if the current major-mode is defined in `pr-mode-alist', the settings in
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4207 `pr-mode-alist' will be used, that is, the current buffer or region will be
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4208 printed using `pr-txt-mode'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4209
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4210 Interactively, when you use a prefix argument (C-u), the command prompts the
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4211 user for a new active text printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4212
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4213 Noninteractively, the argument SELECT-PRINTER is treated as follows:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4214
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4215 If it's nil, the printing is sent to the current active text printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4216
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4217 If it's a symbol which it's defined in `pr-txt-printer-alist', it's the new
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4218 active printer and printing will immediatelly be done using the new active
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4219 printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4220
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4221 If it's non-nil, the command prompts the user for a new active text printer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4222
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4223 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4224 are both set to t."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4225 (interactive (list current-prefix-arg))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4226 (cond ((null select-printer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4227 ((and (symbolp select-printer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4228 (assq select-printer pr-txt-printer-alist))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4229 (pr-menu-set-txt-title select-printer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4230 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4231 (pr-txt-name)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4232 (let ((pr-auto-region t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4233 (pr-auto-mode t))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4234 (pr-txt-buffer)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4235
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4236
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4237 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4238 ;; Utilities
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4239
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4240
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4241 (defun pr-setup ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4242 "Return the current `printing' setup.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4243
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4244 This is *not* an interactive command.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4245 One way to see `printing' setup is to switch to a *Scratch* buffer and type:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4246
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4247 M-: (insert (pr-setup)) RET
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4248
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4249 Or choose the menu option Printing/Show Settings/printing."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4250 (let (ps-prefix-quote)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4251 (mapconcat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4252 #'ps-print-quote
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4253 (list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4254 (concat "\n;;; printing.el version " pr-version "\n")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4255 '(19 . pr-shell-file-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4256 '(19 . pr-path-style)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4257 '(19 . pr-path-alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4258 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4259 '(21 . pr-txt-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4260 '(21 . pr-txt-printer-alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4261 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4262 '(20 . pr-ps-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4263 '(20 . pr-ps-printer-alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4264 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4265 '(20 . pr-temp-dir)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4266 '(20 . pr-ps-temp-file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4267 '(20 . pr-delete-temp-file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4268 '(20 . pr-list-directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4269 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4270 '(17 . pr-gv-command)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4271 '(17 . pr-gs-command)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4272 '(17 . pr-gs-switches)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4273 '(17 . pr-gs-device)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4274 '(17 . pr-gs-resolution)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4275 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4276 '(27 . pr-print-using-ghostscript)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4277 '(27 . pr-faces-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4278 '(27 . pr-spool-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4279 '(27 . pr-file-landscape)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4280 '(27 . pr-file-duplex)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4281 '(27 . pr-file-tumble)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4282 '(27 . pr-auto-region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4283 '(27 . pr-auto-mode)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4284 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4285 '(20 . pr-ps-utility)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4286 '(20 . pr-ps-utility-alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4287 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4288 '(14 . pr-mode-alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4289 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4290 '(20 . pr-menu-lock)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4291 '(20 . pr-menu-char-height)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4292 '(20 . pr-menu-char-width)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4293 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4294 '(20 . pr-setting-database)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4295 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4296 '(22 . pr-visible-entry-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4297 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4298 '(22 . pr-buffer-verbose)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4299 '(22 . pr-buffer-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4300 '(22 . pr-buffer-name-ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4301 ")\n\n;;; printing.el - end of settings\n")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4302 "\n")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4303
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4304
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4305 (defun lpr-setup ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4306 "Return the current `lpr' setup.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4307
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4308 This is *not* an interactive command.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4309 One way to see `lpr' setup is to switch to a *Scratch* buffer and type:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4310
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4311 M-: (insert (lpr-setup)) RET
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4312
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4313 Or choose the menu option Printing/Show Settings/lpr."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4314 (let (ps-prefix-quote)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4315 (mapconcat
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4316 #'ps-print-quote
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4317 '("\n;;; lpr.el settings\n"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4318 (25 . printer-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4319 (25 . lpr-switches)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4320 (25 . lpr-add-switches)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4321 (25 . lpr-command)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4322 (25 . lpr-headers-switches)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4323 (25 . print-region-function)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4324 (25 . lpr-page-header-program)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4325 (25 . lpr-page-header-switches)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4326 ")\n\n;;; lpr.el - end of settings\n")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4327 "\n")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4328
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4329
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4330 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4331 ;; mh-e (adapted from mh-e-init.el -- Tom Vogels <tov@ece.cmu.edu>)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4332
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4333
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4334 (defalias 'pr-mh-get-msg-num 'mh-get-msg-num)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4335 (defalias 'pr-mh-show 'mh-show)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4336 (defalias 'pr-mh-start-of-uncleaned-message 'mh-start-of-uncleaned-message)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4337 (defvar mh-show-buffer nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4338
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4339
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4340 (defun pr-article-date ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4341 "Find the date of an article or mail message in current buffer.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4342 Return only the dayname, if present, weekday, month, and year."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4343 (save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4344 (goto-char (point-min))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4345 (if (re-search-forward
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4346 "^Date:[ \t]+\\(\\([A-Za-z]+, \\)?[0-9]+ [A-Za-z]+ [0-9]+\\)" nil t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4347 (buffer-substring (match-beginning 1) (match-end 1))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4348 (format-time-string "%Y/%m/%d"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4349
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4350
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4351 (defun pr-mh-current-message ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4352 "Go to mh-inbox current message."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4353 (let ((msg (or (pr-mh-get-msg-num nil) 0)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4354 (pr-mh-show)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4355 (set-buffer mh-show-buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4356 (goto-char (point-min))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4357 (pr-mh-start-of-uncleaned-message)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4358 (message "Printing message %d" msg)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4359
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4360
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4361 (defun pr-mh-print-1 (n-up filename header-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4362 "Print mh-inbox current message in PostScript."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4363 (save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4364 (save-window-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4365 (pr-mh-current-message)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4366 (pr-mode-print n-up filename header-list (point)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4367
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4368
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4369 (defun pr-mh-lpr-1 (header-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4370 "Print mh-inbox current message in text printer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4371 (save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4372 (save-window-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4373 (pr-mh-current-message)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4374 (pr-mode-lpr header-list (point)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4375
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4376
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4377 (defalias 'pr-mh-print-2 'pr-mode-print)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4378
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4379
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4380 (defalias 'pr-mh-lpr-2 'pr-mode-lpr)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4381
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4382
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4383 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4384 ;; rmail (hacked from ps-print.el)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4385
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4386
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4387 (defun pr-rmail-lpr (header-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4388 "Print RMAIL current message in text printer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4389 (pr-lpr-message-from-summary header-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4390 'rmail-buffer 'rmail-summary-buffer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4391
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4392
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4393 (defun pr-rmail-print (n-up filename header-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4394 "Print RMAIL current message in PostScript."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4395 (pr-ps-message-from-summary n-up filename header-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4396 'rmail-buffer 'rmail-summary-buffer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4397
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4398
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4399 (defun pr-ps-message-from-summary (n-up filename header-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4400 summary-buffer summary-default)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4401 "Print current message in PostScript."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4402 (let ((buf (or (and (boundp summary-buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4403 (symbol-value summary-buffer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4404 (symbol-value summary-default))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4405 (and (get-buffer buf)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4406 (save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4407 (set-buffer buf)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4408 (pr-mode-print n-up filename header-list)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4409
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4410
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4411 (defun pr-lpr-message-from-summary (header-list summary-buffer summary-default)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4412 "Print current message in text printer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4413 (let ((buf (or (and (boundp summary-buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4414 (symbol-value summary-buffer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4415 (symbol-value summary-default))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4416 (and (get-buffer buf)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4417 (save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4418 (set-buffer buf)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4419 (pr-mode-lpr header-list)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4420
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4421
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4422 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4423 ;; gnus (hacked from ps-print.el)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4424
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4425
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4426 (defvar pr-gnus-article "*Article*")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4427
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4428
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4429 (defun pr-gnus-print (n-up filename header-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4430 "Print *Article* current message in PostScript."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4431 (pr-ps-message-from-summary n-up filename header-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4432 'gnus-article-buffer 'pr-gnus-article))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4433
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4434
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4435 (defun pr-gnus-lpr (header-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4436 "Print *Article* current message in text printer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4437 (pr-lpr-message-from-summary header-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4438 'gnus-article-buffer 'pr-gnus-article))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4439
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4440
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4441 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4442 ;; vm (hacked from ps-print.el)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4443
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4444
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4445 (defvar pr-vm-summary "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4446
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4447
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4448 (defun pr-vm-print (n-up filename header-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4449 "Print current vm message in PostScript."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4450 (pr-ps-message-from-summary n-up filename header-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4451 'vm-mail-buffer 'pr-vm-summary))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4452
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4453
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4454 (defun pr-vm-lpr (header-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4455 "Print current vm message in text printer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4456 (pr-lpr-message-from-summary header-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4457 'vm-mail-buffer 'pr-vm-summary))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4458
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4459
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4460 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4461 ;; Mode Functions
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4462
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4463
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4464 (defun pr-ps-mode (n-up filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4465 "If current major mode is declared, print it in PostScript."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4466 (let ((args (pr-mode-alist-p)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4467 (if args
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4468 (let ((fun (cdr args)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4469 (funcall (car fun) n-up filename (cdr fun))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4470 t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4471 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4472 (message "`%s' major mode not declared." major-mode)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4473 nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4474
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4475
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4476 (defmacro pr-local-variable (header-list &rest body)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4477 `(save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4478 (let ((ps-header-lines (or (nth 0 ,header-list) ps-header-lines))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4479 (ps-left-header (or (nth 1 ,header-list) ps-left-header))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4480 (ps-right-header (or (nth 2 ,header-list) ps-right-header))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4481 ps-razzle-dazzle)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4482 (let ((local-var-list (pr-eval-local-alist (nthcdr 4 ,header-list))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4483 ,@body
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4484 (and (nth 3 ,header-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4485 (pr-kill-local-variable local-var-list))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4486
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4487
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4488 (defun pr-mode-print (n-up filename header-list &optional from to)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4489 "Print current major mode in PostScript."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4490 (pr-local-variable
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4491 header-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4492 (let ((file (pr-ps-file filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4493 (start (cond (from)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4494 ((pr-region-active-p) (region-beginning))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4495 (t nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4496 )))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4497 (pr-text2ps (pr-region-active-symbol start) n-up file start
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4498 (cond (to)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4499 ((pr-region-active-p) (region-end))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4500 (from (point-max))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4501 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4502 (unless (or pr-spool-p filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4503 (pr-ps-file-print file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4504 (pr-delete-file file)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4505
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4506
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4507 (defun pr-mode-lpr (header-list &optional from to)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4508 "Print current major mode in text printer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4509 (pr-local-variable
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4510 header-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4511 (pr-txt-print (cond (from)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4512 ((pr-region-active-p) (region-beginning))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4513 (t (point-min)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4514 (cond (to)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4515 ((pr-region-active-p) (region-end))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4516 (t (point-max))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4517
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4518
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4519 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4520 ;; Menu Lock
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4521
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4522
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4523 (defconst pr-menu-entry-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4524 '((postscript . 3)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4525 (text . 3)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4526 (postscript-options . 9)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4527 (postscript-process . 3)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4528 (printing . 3)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4529 (help . 3)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4530 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4531 "Alist that associates menu part with number of items per part.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4532
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4533 It's used by `pr-menu-index'.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4534
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4535 Each element has the form:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4536
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4537 (MENU-PART . NUMBER-OF-ITEMS)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4538
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4539 See `pr-visible-entry-alist'.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4540
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4541
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4542 (defun pr-menu-index (entry index)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4543 (let ((base-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4544 (cond ((eq entry 'text)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4545 '(postscript))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4546 ((eq entry 'postscript-options)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4547 '(postscript text))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4548 ((eq entry 'postscript-process)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4549 '(postscript text postscript-options))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4550 ((eq entry 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4551 '(postscript text postscript-options postscript-process))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4552 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4553 nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4554 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4555 key)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4556 (while base-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4557 (setq key (car base-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4558 base-list (cdr base-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4559 (and (pr-visible-p key)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4560 (setq index (+ index
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4561 (cdr (assq key pr-menu-entry-alist)))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4562 (+ index 2))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4563
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4564
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4565 (defvar pr-menu-position nil)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4566 (defvar pr-menu-state nil)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4567
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4568
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4569 (eval-and-compile
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4570 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4571 ((eq ps-print-emacs-type 'xemacs)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4572 ;; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4573 (defun pr-menu-position (entry index horizontal)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4574 (pr-x-make-event
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4575 'button-release
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4576 (list 'button 1
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4577 'x (- (pr-x-event-x-pixel current-mouse-event) ; X
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4578 (* horizontal pr-menu-char-width))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4579 'y (- (pr-x-event-y-pixel current-mouse-event) ; Y
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4580 (* (pr-menu-index entry index) pr-menu-char-height)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4581 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4582 (ps-windows-system
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4583 ;; GNU Emacs for Windows 9x/NT
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4584 (defun pr-menu-position (entry index horizontal)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4585 (let ((pos (cdr (pr-e-mouse-pixel-position))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4586 (list
54636
be1994e2a5ce New version 6.7.3.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54621
diff changeset
4587 (list (or (car pos) 0) ; X
be1994e2a5ce New version 6.7.3.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54621
diff changeset
4588 (- (or (cdr pos) 0) ; Y
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4589 (* (pr-menu-index entry index) pr-menu-char-height)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4590 (selected-frame)))) ; frame
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4591 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4592 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4593 ;; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4594 (defun pr-menu-position (entry index horizontal)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4595 (let ((pos (cdr (pr-e-mouse-pixel-position))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4596 (list
54636
be1994e2a5ce New version 6.7.3.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54621
diff changeset
4597 (list (- (or (car pos) 0) ; X
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4598 (* horizontal pr-menu-char-width))
54636
be1994e2a5ce New version 6.7.3.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54621
diff changeset
4599 (- (or (cdr pos) 0) ; Y
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4600 (* (pr-menu-index entry index) pr-menu-char-height)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4601 (selected-frame)))) ; frame
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4602 ))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4603
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4604 (cond
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4605 ((eq ps-print-emacs-type 'emacs)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4606 ;; GNU Emacs
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4607 (defun pr-menu-lookup (path)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4608 (let ((ipath pr-menu-bar))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4609 (lookup-key global-map
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4610 (if path
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4611 (vconcat ipath
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4612 (mapcar 'pr-get-symbol
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4613 (if (listp path)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4614 path
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4615 (list path))))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4616 ipath))))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4617
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4618 ;; GNU Emacs
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4619 (defun pr-menu-lock (entry index horizontal state path)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4620 (when (and (not (interactive-p)) pr-menu-lock)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4621 (or (and pr-menu-position (eq state pr-menu-state))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4622 (setq pr-menu-position (pr-menu-position entry index horizontal)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4623 pr-menu-state state))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4624 (let* ((menu (pr-menu-lookup path))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4625 (result (x-popup-menu pr-menu-position menu)))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4626 (and result
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4627 (let ((command (lookup-key menu (vconcat result))))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4628 (if (fboundp command)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4629 (funcall command)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4630 (eval command)))))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4631 (setq pr-menu-position nil))))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4632
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4633
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4634 ((eq ps-print-emacs-type 'xemacs)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4635 ;; XEmacs
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4636 (defun pr-menu-lookup (path)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4637 (car (pr-x-find-menu-item current-menubar (cons "Printing" path))))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4638
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4639 ;; XEmacs
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4640 (defun pr-menu-lock (entry index horizontal state path)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4641 (when (and (not (interactive-p)) pr-menu-lock)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4642 (or (and pr-menu-position (eq state pr-menu-state))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4643 (setq pr-menu-position (pr-menu-position entry index horizontal)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4644 pr-menu-state state))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4645 (let* ((menu (pr-menu-lookup path))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4646 (result (pr-x-get-popup-menu-response menu pr-menu-position)))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4647 (and (pr-x-misc-user-event-p result)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4648 (funcall (pr-x-event-function result)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4649 (pr-x-event-object result))))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4650 (setq pr-menu-position nil))))))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4651
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4652
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4653 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4654 ;; Printer & Utility Selection
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4655
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4656
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4657 (defun pr-update-var (var-sym alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4658 (or (assq (symbol-value var-sym) alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4659 (set var-sym (car (car alist)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4660
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4661
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4662 (defun pr-update-menus (&optional force)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4663 "Update utility, PostScript and text printer menus.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4664
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4665 If FORCE is non-nil, update menus doesn't matter if `pr-ps-printer-alist',
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4666 `pr-txt-printer-alist' or `pr-ps-utility-alist' were modified or not;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4667 otherwise, update PostScript printer menu iff `pr-ps-printer-menu-modified' is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4668 non-nil, update text printer menu iff `pr-txt-printer-menu-modified' is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4669 non-nil, and update PostScript File menus iff `pr-ps-utility-menu-modified' is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4670 non-nil."
54621
14d929e67a70 Modify interactive declaration.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54333
diff changeset
4671 (interactive "P")
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4672 (pr-update-var 'pr-ps-name pr-ps-printer-alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4673 (pr-update-var 'pr-txt-name pr-txt-printer-alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4674 (pr-update-var 'pr-ps-utility pr-ps-utility-alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4675 (pr-do-update-menus force))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4676
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4677
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4678 (defvar pr-ps-printer-menu-modified t
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4679 "Non-nil means `pr-ps-printer-alist' was modified and we need to update menu.")
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4680 (defvar pr-txt-printer-menu-modified t
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4681 "Non-nil means `pr-txt-printer-alist' was modified and we need to update menu.")
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4682 (defvar pr-ps-utility-menu-modified t
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4683 "Non-nil means `pr-ps-utility-alist' was modified and we need to update menu.")
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4684
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4685
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4686 (defconst pr-even-or-odd-alist
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4687 '((nil . "Print All Pages")
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4688 (even-page . "Print Even Pages")
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4689 (odd-page . "Print Odd Pages")
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4690 (even-sheet . "Print Even Sheets")
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4691 (odd-sheet . "Print Odd Sheets")))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4692
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4693
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4694 (defun pr-menu-create (name alist var-sym fun entry index)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4695 (cons name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4696 (mapcar
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4697 #'(lambda (elt)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4698 (let ((sym (car elt)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4699 (vector
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4700 (symbol-name sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4701 (list fun (list 'quote sym) nil (list 'quote entry) index)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4702 :style 'radio
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4703 :selected (list 'eq var-sym (list 'quote sym)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4704 alist)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4705
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4706
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4707 (eval-and-compile
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4708 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4709 ((eq ps-print-emacs-type 'emacs)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4710 ;; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4711 (defalias 'pr-update-mode-line 'force-mode-line-update)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4712
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4713 ;; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4714 (defun pr-do-update-menus (&optional force)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4715 (pr-menu-alist pr-ps-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4716 'pr-ps-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4717 'pr-menu-set-ps-title
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4718 "PostScript Printers"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4719 'pr-ps-printer-menu-modified
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4720 force
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4721 "PostScript Printers"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4722 'postscript 2)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4723 (pr-menu-alist pr-txt-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4724 'pr-txt-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4725 'pr-menu-set-txt-title
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4726 "Text Printers"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4727 'pr-txt-printer-menu-modified
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4728 force
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4729 "Text Printers"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4730 'text 2)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4731 (let ((save-var pr-ps-utility-menu-modified))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4732 (pr-menu-alist pr-ps-utility-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4733 'pr-ps-utility
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4734 'pr-menu-set-utility-title
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4735 '("PostScript Print" "File" "PostScript Utility")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4736 'save-var
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4737 force
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4738 "PostScript Utility"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4739 nil 1))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4740 (pr-menu-alist pr-ps-utility-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4741 'pr-ps-utility
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4742 'pr-menu-set-utility-title
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4743 '("PostScript Preview" "File" "PostScript Utility")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4744 'pr-ps-utility-menu-modified
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4745 force
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4746 "PostScript Utility"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4747 nil 1)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4748 (pr-even-or-odd-pages ps-even-or-odd-pages force))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4749
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4750 ;; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4751 (defvar pr-temp-menu nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4752
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4753 ;; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4754 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4755 entry index)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4756 (when (and alist (or force (symbol-value modified-sym)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4757 (easy-menu-define pr-temp-menu nil ""
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4758 (pr-menu-create name alist var-sym fun entry index))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4759 (let ((item (pr-menu-get-item menu-path)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4760 (and item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4761 (let* ((binding (nthcdr 3 item))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4762 (key-binding (cdr binding)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4763 (setcar binding pr-temp-menu)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4764 (and key-binding (listp (car key-binding))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4765 (setcdr binding (cdr key-binding))) ; skip KEY-BINDING
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4766 (funcall fun (symbol-value var-sym) item))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4767 (set modified-sym nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4768
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4769 ;; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4770 (defun pr-menu-set-ps-title (value &optional item entry index)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4771 (pr-menu-set-item-name (or item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4772 (pr-menu-get-item "PostScript Printers"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4773 (format "PostScript Printer: %s" value))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4774 (pr-ps-set-printer value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4775 (and index
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4776 (pr-menu-lock entry index 12 'toggle nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4777
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4778 ;; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4779 (defun pr-menu-set-txt-title (value &optional item entry index)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4780 (pr-menu-set-item-name (or item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4781 (pr-menu-get-item "Text Printers"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4782 (format "Text Printer: %s" value))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4783 (pr-txt-set-printer value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4784 (and index
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4785 (pr-menu-lock entry index 12 'toggle nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4786
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4787 ;; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4788 (defun pr-menu-set-utility-title (value &optional item entry index)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4789 (let ((name (symbol-name value)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4790 (if item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4791 (pr-menu-set-item-name item name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4792 (pr-menu-set-item-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4793 (pr-menu-get-item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4794 '("PostScript Print" "File" "PostScript Utility"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4795 name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4796 (pr-menu-set-item-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4797 (pr-menu-get-item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4798 '("PostScript Preview" "File" "PostScript Utility"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4799 name)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4800 (pr-ps-set-utility value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4801 (and index
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4802 (pr-menu-lock entry index 5 nil '("PostScript Print" "File"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4803
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4804 ;; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4805 (defun pr-even-or-odd-pages (value &optional no-lock)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4806 (pr-menu-set-item-name (pr-menu-get-item "Print All Pages")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4807 (cdr (assq value pr-even-or-odd-alist)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4808 (setq ps-even-or-odd-pages value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4809 (or no-lock
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4810 (pr-menu-lock 'postscript-options 8 12 'toggle nil))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4811
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4812
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4813 ((eq ps-print-emacs-type 'xemacs)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4814 ;; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4815 (defalias 'pr-update-mode-line 'set-menubar-dirty-flag)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4816
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4817 ;; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4818 (defvar pr-ps-name-old "PostScript Printers")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4819 (defvar pr-txt-name-old "Text Printers")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4820 (defvar pr-ps-utility-old "PostScript Utility")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4821 (defvar pr-even-or-odd-old "Print All Pages")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4822
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4823 ;; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4824 (defun pr-do-update-menus (&optional force)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4825 (pr-menu-alist pr-ps-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4826 'pr-ps-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4827 'pr-menu-set-ps-title
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4828 '("Printing")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4829 'pr-ps-printer-menu-modified
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4830 force
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4831 pr-ps-name-old
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4832 'postscript 2)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4833 (pr-menu-alist pr-txt-printer-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4834 'pr-txt-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4835 'pr-menu-set-txt-title
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4836 '("Printing")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4837 'pr-txt-printer-menu-modified
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4838 force
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4839 pr-txt-name-old
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4840 'text 2)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4841 (let ((save-var pr-ps-utility-menu-modified))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4842 (pr-menu-alist pr-ps-utility-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4843 'pr-ps-utility
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4844 'pr-menu-set-utility-title
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4845 '("Printing" "PostScript Print" "File")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4846 'save-var
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4847 force
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4848 pr-ps-utility-old
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4849 nil 1))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4850 (pr-menu-alist pr-ps-utility-alist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4851 'pr-ps-utility
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4852 'pr-menu-set-utility-title
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4853 '("Printing" "PostScript Preview" "File")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4854 'pr-ps-utility-menu-modified
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4855 force
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4856 pr-ps-utility-old
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4857 nil 1)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4858 (pr-even-or-odd-pages ps-even-or-odd-pages force))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4859
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4860 ;; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4861 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4862 entry index)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4863 (when (and alist (or force (symbol-value modified-sym)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4864 (pr-xemacs-global-menubar
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4865 (pr-x-add-submenu menu-path
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4866 (pr-menu-create name alist var-sym
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4867 fun entry index)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4868 (funcall fun (symbol-value var-sym))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4869 (set modified-sym nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4870
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4871 ;; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4872 (defun pr-menu-set-ps-title (value &optional item entry index)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4873 (pr-relabel-menu-item (format "PostScript Printer: %s" value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4874 'pr-ps-name-old)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4875 (pr-ps-set-printer value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4876 (and index
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4877 (pr-menu-lock entry index 12 'toggle nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4878
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4879 ;; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4880 (defun pr-menu-set-txt-title (value &optional item entry index)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4881 (pr-relabel-menu-item (format "Text Printer: %s" value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4882 'pr-txt-name-old)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4883 (pr-txt-set-printer value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4884 (and index
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4885 (pr-menu-lock entry index 12 'toggle nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4886
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4887 ;; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4888 (defun pr-menu-set-utility-title (value &optional item entry index)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4889 (pr-xemacs-global-menubar
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4890 (let ((newname (format "%s" value)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4891 (pr-x-relabel-menu-item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4892 (list "Printing" "PostScript Print" "File" pr-ps-utility-old)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4893 newname)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4894 (pr-x-relabel-menu-item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4895 (list "Printing" "PostScript Preview" "File" pr-ps-utility-old)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4896 newname)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4897 (setq pr-ps-utility-old newname)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4898 (pr-ps-set-utility value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4899 (and index
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4900 (pr-menu-lock entry index 5 nil '("PostScript Print" "File"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4901
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4902 ;; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4903 (defun pr-even-or-odd-pages (value &optional no-lock)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4904 (pr-relabel-menu-item (cdr (assq value pr-even-or-odd-alist))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4905 'pr-even-or-odd-old)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4906 (setq ps-even-or-odd-pages value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4907 (or no-lock
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4908 (pr-menu-lock 'postscript-options 8 12 'toggle nil))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4909
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4910 ;; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4911 (defun pr-relabel-menu-item (newname var-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4912 (pr-xemacs-global-menubar
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4913 (pr-x-relabel-menu-item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4914 (list "Printing" (symbol-value var-sym))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4915 newname)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4916 (set var-sym newname)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4917
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4918 ;; GNU Emacs
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4919 (defun pr-menu-set-item-name (item name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4920 (and item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4921 (setcar (nthcdr 2 item) name))) ; ITEM-NAME
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4922
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
4923 ;; GNU Emacs
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4924 (defun pr-menu-get-item (name-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4925 ;; NAME-LIST is a string or a list of strings.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4926 (let ((ipath pr-menu-bar)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4927 (len (and (listp name-list) (length name-list))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4928 (and len (= len 1)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4929 (setq name-list (car name-list)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4930 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4931 ((null name-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4932 ;; nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4933 nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4934 ((listp name-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4935 ;; list and (length list) > 1
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4936 (let* ((copy (copy-sequence name-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4937 (name (pr-get-symbol (nth (1- len) copy)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4938 (path (progn
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4939 (setcdr (nthcdr (- len 2) copy) nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4940 copy))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4941 (menu (lookup-key
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4942 global-map
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4943 (if path
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4944 (vconcat ipath
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4945 (mapcar 'pr-get-symbol path))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4946 ipath))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4947 (assq name (nthcdr 2 menu))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4948 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4949 ;; string
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4950 (let ((name (pr-get-symbol name-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4951 (menu (lookup-key global-map ipath)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4952 (assq name (nthcdr 2 menu)))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4953
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4954
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4955 (defun pr-ps-set-utility (value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4956 (let ((item (cdr (assq value pr-ps-utility-alist))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4957 (or item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4958 (error
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4959 "Invalid PostScript utility name `%s' for variable `pr-ps-utility'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4960 value))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4961 (setq pr-ps-utility value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4962 (pr-eval-alist (nthcdr 9 item)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4963 (pr-update-mode-line))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4964
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4965
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4966 (defun pr-ps-set-printer (value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4967 (let ((ps (cdr (assq value pr-ps-printer-alist))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4968 (or ps
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4969 (error
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4970 "Invalid PostScript printer name `%s' for variable `pr-ps-name'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4971 value))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4972 (setq pr-ps-name value
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4973 pr-ps-command (pr-dosify-path (nth 0 ps))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4974 pr-ps-switches (nth 1 ps)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4975 pr-ps-printer-switch (nth 2 ps)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4976 pr-ps-printer (pr-dosify-path (nth 3 ps)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4977 (or (stringp pr-ps-command)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4978 (setq pr-ps-command
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4979 (cond (ps-windows-system "print")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4980 (ps-lp-system "lp")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4981 (t "lpr")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4982 )))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4983 (or (stringp pr-ps-printer-switch)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4984 (setq pr-ps-printer-switch
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4985 (cond (ps-windows-system "/D:")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4986 (ps-lp-system "-d")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4987 (t "-P")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4988 )))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4989 (pr-eval-alist (nthcdr 4 ps)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4990 (pr-update-mode-line))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4991
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4992
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4993 (defun pr-txt-set-printer (value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4994 (let ((txt (cdr (assq value pr-txt-printer-alist))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4995 (or txt
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4996 (error "Invalid text printer name `%s' for variable `pr-txt-name'."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4997 value))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4998 (setq pr-txt-name value
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
4999 pr-txt-command (pr-dosify-path (nth 0 txt))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5000 pr-txt-switches (nth 1 txt)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5001 pr-txt-printer (pr-dosify-path (nth 2 txt))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5002 (or (stringp pr-txt-command)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5003 (setq pr-txt-command
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5004 (cond (ps-windows-system "print")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5005 (ps-lp-system "lp")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5006 (t "lpr")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5007 )))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5008 (pr-update-mode-line))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5009
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5010
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5011 (defun pr-eval-alist (alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5012 (mapcar #'(lambda (option)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5013 (let ((var-sym (car option))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5014 (value (cdr option)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5015 (if (eq var-sym 'inherits-from:)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5016 (pr-eval-setting-alist value 'global)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5017 (set var-sym (eval value)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5018 alist))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5019
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5020
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5021 (defun pr-eval-local-alist (alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5022 (let (local-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5023 (mapcar #'(lambda (option)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5024 (let ((var-sym (car option))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5025 (value (cdr option)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5026 (setq local-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5027 (if (eq var-sym 'inherits-from:)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5028 (nconc (pr-eval-setting-alist value) local-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5029 (set (make-local-variable var-sym) (eval value))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5030 (cons var-sym local-list)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5031 alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5032 local-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5033
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5034
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5035 (defun pr-eval-setting-alist (key &optional global old)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5036 (let ((setting (cdr (assq key pr-setting-database))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5037 (and setting
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5038 (let ((inherits (nth 0 setting))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5039 (local (nth 1 setting))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5040 (kill (nth 2 setting))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5041 local-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5042 (and local global
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5043 (progn
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5044 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5045 (message "There are local buffer settings for `%S'." key)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5046 (setq global nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5047 (and inherits
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5048 (if (memq inherits old)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5049 (error "Circular inheritance for `%S'." inherits)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5050 (setq local-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5051 (pr-eval-setting-alist inherits global
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5052 (cons inherits old)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5053 (mapcar
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5054 (cond ((not local) ; global settings
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5055 #'(lambda (option)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5056 (let ((var-sym (car option)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5057 (or (eq var-sym 'inherits-from:)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5058 (set var-sym (eval (cdr option)))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5059 (kill ; local settings with killing
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5060 #'(lambda (option)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5061 (let ((var-sym (car option)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5062 (unless (eq var-sym 'inherits-from:)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5063 (setq local-list (cons var-sym local-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5064 (set (make-local-variable var-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5065 (eval (cdr option)))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5066 (t ; local settings without killing
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5067 #'(lambda (option)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5068 (let ((var-sym (car option)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5069 (or (eq var-sym 'inherits-from:)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5070 (set (make-local-variable var-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5071 (eval (cdr option))))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5072 (nthcdr 3 setting))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5073 local-list))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5074
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5075
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5076 (defun pr-kill-local-variable (local-var-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5077 (mapcar 'kill-local-variable local-var-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5078
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5079
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5080 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5081 ;; Internal Functions (II)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5082
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5083
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5084 (defun pr-prompt (str)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5085 (if (pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5086 (concat str " mode")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5087 (pr-region-active-string str)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5088
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5089
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5090 (defun pr-prompt-region (str)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5091 (concat str (if (pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5092 " mode"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5093 " region")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5094
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5095
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5096 (defun pr-prompt-gs (str)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5097 (if (pr-using-ghostscript-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5098 (concat str " GS")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5099 str))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5100
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5101
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5102 (defun pr-region-active-symbol (&optional region-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5103 (if (or region-p (pr-region-active-p))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5104 'region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5105 'buffer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5106
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5107
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5108 (defun pr-region-active-string (prefix)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5109 (concat prefix
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5110 (if (pr-region-active-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5111 " region"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5112 " buffer")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5113
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5114
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5115 (defun pr-show-setup (settings buffer-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5116 (with-output-to-temp-buffer buffer-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5117 (princ settings)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5118 (print-help-return-message)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5119
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5120
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5121 (defun pr-complete-alist (prompt alist default)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5122 (let ((collection (mapcar #'(lambda (elt)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5123 (setq elt (car elt))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5124 (cons (symbol-name elt) elt))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5125 alist)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5126 (cdr (assoc (completing-read (concat prompt ": ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5127 collection nil t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5128 (symbol-name default) nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5129 (symbol-name default))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5130 collection))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5131
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5132
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5133 (defun pr-delete-file (file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5134 (and pr-delete-temp-file (delete-file file)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5135
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5136
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5137 (defun pr-expand-file-name (filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5138 (pr-dosify-path (expand-file-name filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5139
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5140
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5141 (defun pr-ps-outfile-preprint (&optional mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5142 (let* ((prompt (format "%soutput PostScript file name: " (or mess "")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5143 (res (read-file-name prompt default-directory "" nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5144 (while (cond ((not (file-writable-p res))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5145 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5146 (setq prompt "is unwritable"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5147 ((file-directory-p res)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5148 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5149 (setq prompt "is a directory"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5150 ((file-exists-p res)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5151 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5152 (setq prompt "exists")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5153 (not (y-or-n-p (format "File `%s' exists; overwrite? "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5154 res))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5155 (t nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5156 (setq res (read-file-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5157 (format "File %s; PostScript file: " prompt)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5158 (file-name-directory res) nil nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5159 (file-name-nondirectory res))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5160 (pr-expand-file-name res)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5161
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5162
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5163 (defun pr-ps-infile-preprint (&optional mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5164 (let* ((prompt (format "%sinput PostScript file name: " (or mess "")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5165 (res (read-file-name prompt default-directory "" nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5166 (while (cond ((not (file-exists-p res))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5167 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5168 (setq prompt "doesn't exist"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5169 ((not (file-readable-p res))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5170 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5171 (setq prompt "is unreadable"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5172 ((file-directory-p res)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5173 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5174 (setq prompt "is a directory"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5175 (t nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5176 (setq res (read-file-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5177 (format "File %s; PostScript file: " prompt)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5178 (file-name-directory res) nil nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5179 (file-name-nondirectory res))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5180 (pr-expand-file-name res)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5181
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5182
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5183 (defun pr-toggle (var-sym mess entry index horizontal state &optional path)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5184 (set var-sym (not (symbol-value var-sym)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5185 (message "%s is %s" mess (if (symbol-value var-sym) "on" "off"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5186 (pr-menu-lock entry index horizontal state path))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5187
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5188
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5189 (defun pr-ps-utility-args (n-up-sym infile-sym outfile-sym prompt)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5190 ;; n-up
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5191 (or (symbol-value n-up-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5192 (set n-up-sym (pr-interactive-n-up prompt)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5193 (and (eq (symbol-value infile-sym) t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5194 (set infile-sym (and (not (interactive-p))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5195 (pr-ps-infile-preprint prompt))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5196 ;; input file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5197 (or (symbol-value infile-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5198 (error "%s: input PostScript file name is missing" prompt))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5199 (set infile-sym (pr-dosify-path (symbol-value infile-sym)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5200 ;; output file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5201 (and (eq (symbol-value outfile-sym) t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5202 (set outfile-sym (and (not (interactive-p))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5203 current-prefix-arg
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5204 (pr-ps-outfile-preprint prompt))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5205 (and (symbol-value outfile-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5206 (set outfile-sym (pr-dosify-path (symbol-value outfile-sym))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5207 (pr-ps-file (symbol-value outfile-sym)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5208
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5209
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5210 (defun pr-ps-utility-process (n-up infile outfile)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5211 (let (item)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5212 (and (stringp infile) (file-exists-p infile)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5213 (setq item (cdr (assq pr-ps-utility pr-ps-utility-alist)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5214 (pr-shell-command
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5215 (concat (pr-command (nth 0 item)) " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5216 (pr-switches-string (nth 1 item)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5217 "pr-ps-utility-alist entry")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5218 " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5219 (pr-switches-string (nth 8 item)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5220 "pr-ps-utility-alist entry")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5221 " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5222 (and (nth 2 item)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5223 (format (nth 2 item) ps-paper-type))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5224 " " (format (nth 3 item) n-up) " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5225 (and pr-file-landscape (nth 4 item)) " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5226 (and pr-file-duplex (nth 5 item)) " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5227 (and pr-file-tumble (nth 6 item))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5228 " \"" (pr-expand-file-name infile) "\" "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5229 (nth 7 item)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5230 " \"" (pr-expand-file-name outfile) "\"")))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5231
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5232
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5233 (defun pr-shell-command (command)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5234 (let ((shell-file-name pr-shell-file-name))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5235 (shell-command command)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5236
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5237
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5238 (defun pr-txt-print (from to)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5239 (let ((lpr-command (pr-command pr-txt-command))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5240 (lpr-switches (pr-switches pr-txt-switches "pr-txt-switches"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5241 (printer-name pr-txt-printer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5242 (lpr-region from to)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5243
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5244
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5245 (defun pr-switches-string (switches mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5246 (mapconcat 'identity (pr-switches switches mess) " "))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5247
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5248
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5249 (defun pr-switches (switches mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5250 (or (listp switches)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5251 (error "%S should have a list of strings." mess))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5252 (ps-flatten-list ; dynamic evaluation
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5253 (mapcar 'ps-eval-switch switches)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5254
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5255
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5256 (defun pr-ps-preview (kind n-up filename mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5257 (pr-set-n-up-and-filename 'n-up 'filename mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5258 (let ((file (pr-ps-file filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5259 (pr-text2ps kind n-up file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5260 (or pr-spool-p (pr-ps-file-preview file))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5261
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5262
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5263 (defun pr-ps-using-ghostscript (kind n-up filename mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5264 (pr-set-n-up-and-filename 'n-up 'filename mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5265 (let ((file (pr-ps-file filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5266 (pr-text2ps kind n-up file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5267 (unless (or pr-spool-p filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5268 (pr-ps-file-using-ghostscript file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5269 (pr-delete-file file))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5270
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5271
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5272 (defun pr-ps-print (kind n-up filename mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5273 (pr-set-n-up-and-filename 'n-up 'filename mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5274 (let ((file (pr-ps-file filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5275 (pr-text2ps kind n-up file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5276 (unless (or pr-spool-p filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5277 (pr-ps-file-print file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5278 (pr-delete-file file))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5279
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5280
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5281 (defun pr-ps-file (&optional filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5282 (pr-dosify-path (or filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5283 (convert-standard-filename
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5284 (expand-file-name pr-ps-temp-file pr-temp-dir)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5285
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5286
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5287 (defun pr-interactive-n-up (mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5288 (or (stringp mess) (setq mess "*"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5289 (save-match-data
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5290 (let* ((fmt-prompt "%s[%s] N-up printing: (default 1) ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5291 (prompt "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5292 (str (pr-f-read-string (format fmt-prompt prompt mess) "1" nil "1"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5293 int)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5294 (while (if (string-match "^\\s *[0-9]+$" str)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5295 (setq int (string-to-int str)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5296 prompt (cond ((< int 1) "Integer below 1; ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5297 ((> int 100) "Integer above 100; ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5298 (t nil)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5299 (setq prompt "Invalid integer syntax; "))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5300 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5301 (setq str
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5302 (pr-f-read-string (format fmt-prompt prompt mess) str nil "1")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5303 int)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5304
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5305
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5306 (defun pr-interactive-dir (mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5307 (let* ((dir-name (file-name-directory (or (buffer-file-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5308 default-directory)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5309 (fmt-prompt (concat "%s[" mess "] Directory to print: "))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5310 (dir (read-file-name (format fmt-prompt "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5311 "" dir-name nil dir-name))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5312 prompt)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5313 (while (cond ((not (file-directory-p dir))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5314 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5315 (setq prompt "It's not a directory! "))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5316 ((not (file-readable-p dir))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5317 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5318 (setq prompt "Directory is unreadable! "))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5319 (t nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5320 (setq dir-name (file-name-directory dir)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5321 dir (read-file-name (format fmt-prompt prompt)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5322 "" dir-name nil dir-name)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5323 (file-name-as-directory dir)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5324
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5325
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5326 (defun pr-interactive-regexp (mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5327 (pr-f-read-string (format "[%s] File regexp to print: " mess) "" nil ""))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5328
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5329
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5330 (defun pr-interactive-dir-args (mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5331 (list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5332 ;; get directory argument
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5333 (pr-interactive-dir mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5334 ;; get file name regexp
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5335 (pr-interactive-regexp mess)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5336
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5337
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5338 (defun pr-interactive-ps-dir-args (mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5339 (list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5340 ;; get n-up argument
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5341 (pr-interactive-n-up mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5342 ;; get directory argument
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5343 (pr-interactive-dir mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5344 ;; get file name regexp
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5345 (pr-interactive-regexp mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5346 ;; get output file name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5347 (and (not pr-spool-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5348 (ps-print-preprint current-prefix-arg))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5349
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5350
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5351 (defun pr-interactive-n-up-file (mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5352 (list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5353 ;; get n-up argument
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5354 (pr-interactive-n-up mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5355 ;; get output file name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5356 (and (not pr-spool-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5357 (ps-print-preprint current-prefix-arg))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5358
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5359
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5360 (defun pr-interactive-n-up-inout (mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5361 (list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5362 ;; get n-up argument
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5363 (pr-interactive-n-up mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5364 ;; get input file name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5365 (pr-ps-infile-preprint (concat mess " "))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5366 ;; get output file name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5367 (ps-print-preprint current-prefix-arg)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5368
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5369
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5370 (defun pr-set-outfilename (filename-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5371 (and (not pr-spool-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5372 (eq (symbol-value filename-sym) t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5373 (set filename-sym (and (not (interactive-p))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5374 current-prefix-arg
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5375 (ps-print-preprint current-prefix-arg))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5376 (and (symbol-value filename-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5377 (set filename-sym (pr-dosify-path (symbol-value filename-sym)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5378
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5379
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5380 (defun pr-set-n-up-and-filename (n-up-sym filename-sym mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5381 ;; n-up
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5382 (or (symbol-value n-up-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5383 (set n-up-sym (pr-interactive-n-up mess)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5384 ;; output file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5385 (pr-set-outfilename filename-sym))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5386
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5387
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5388 (defun pr-set-dir-args (dir-sym regexp-sym mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5389 ;; directory
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5390 (or (symbol-value dir-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5391 (set dir-sym (pr-interactive-dir mess)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5392 ;; file name regexp
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5393 (or (symbol-value regexp-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5394 (set regexp-sym (pr-interactive-regexp mess))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5395
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5396
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5397 (defun pr-set-ps-dir-args (n-up-sym dir-sym regexp-sym filename-sym mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5398 ;; n-up
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5399 (or (symbol-value n-up-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5400 (set n-up-sym (pr-interactive-n-up mess)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5401 ;; directory & file name regexp
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5402 (pr-set-dir-args dir-sym regexp-sym mess)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5403 ;; output file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5404 (pr-set-outfilename filename-sym))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5405
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5406
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5407 (defun pr-find-buffer-visiting (file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5408 (if (not (file-directory-p file))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5409 (find-buffer-visiting (if ps-windows-system
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5410 (downcase file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5411 file))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5412 (let ((truename (file-truename file))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5413 (blist (buffer-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5414 found)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5415 (while (and (not found) blist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5416 (save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5417 (set-buffer (car blist))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5418 (and (eq major-mode 'dired-mode)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5419 (save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5420 (goto-char (point-min))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5421 (string= (buffer-substring-no-properties
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5422 (+ (point-min) 2)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5423 (progn
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5424 (end-of-line)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5425 (1- (point))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5426 truename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5427 (setq found (car blist))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5428 (setq blist (cdr blist)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5429 found)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5430
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5431
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5432 (defun pr-file-list (dir file-regexp fun)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5433 (mapcar #'(lambda (file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5434 (and (or pr-list-directory
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5435 (not (file-directory-p file)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5436 (let ((buffer (pr-find-buffer-visiting file))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5437 pop-up-windows
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5438 pop-up-frames)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5439 (and (or buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5440 (file-readable-p file))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5441 (save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5442 (set-buffer (or buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5443 (find-file-noselect file)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5444 (funcall fun)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5445 (or buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5446 (kill-buffer (current-buffer))))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5447 (directory-files dir t file-regexp)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5448
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5449
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5450 (defun pr-delete-file-if-exists (filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5451 (and (not pr-spool-p) (stringp filename) (file-exists-p filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5452 (delete-file filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5453
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5454
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5455 (defun pr-ps-file-list (n-up dir file-regexp filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5456 (pr-delete-file-if-exists (setq filename (pr-expand-file-name filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5457 (let ((pr-spool-p t))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5458 (pr-file-list dir file-regexp
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5459 #'(lambda ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5460 (if (pr-auto-mode-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5461 (pr-ps-mode n-up filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5462 (pr-text2ps 'buffer n-up filename)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5463 (or pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5464 (pr-despool-print filename)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5465
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5466
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5467 (defun pr-text2ps (kind n-up filename &optional from to)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5468 (let ((ps-n-up-printing n-up)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5469 (ps-spool-config (and (eq ps-spool-config 'setpagedevice)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5470 'setpagedevice)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5471 (pr-delete-file-if-exists filename)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5472 (cond (pr-faces-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5473 (cond (pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5474 ;; pr-faces-p and pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5475 ;; here FILENAME arg is ignored
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5476 (cond ((eq kind 'buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5477 (ps-spool-buffer-with-faces))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5478 ((eq kind 'region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5479 (ps-spool-region-with-faces (or from (point))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5480 (or to (mark))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5481 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5482 ;; pr-faces-p and not pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5483 ((eq kind 'buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5484 (ps-print-buffer-with-faces filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5485 ((eq kind 'region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5486 (ps-print-region-with-faces (or from (point))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5487 (or to (mark)) filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5488 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5489 (pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5490 ;; not pr-faces-p and pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5491 ;; here FILENAME arg is ignored
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5492 (cond ((eq kind 'buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5493 (ps-spool-buffer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5494 ((eq kind 'region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5495 (ps-spool-region (or from (point)) (or to (mark))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5496 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5497 ;; not pr-faces-p and not pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5498 ((eq kind 'buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5499 (ps-print-buffer filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5500 ((eq kind 'region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5501 (ps-print-region (or from (point)) (or to (mark)) filename))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5502 )))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5503
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5504
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5505 (defun pr-command (command)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5506 "Return absolute file name specification for COMMAND.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5507
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5508 If COMMAND is an empty string, return it.
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5509
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5510 If COMMAND is already an absolute file name specification, return it.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5511 Else it uses `pr-path-alist' to find COMMAND, if find it then return it;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5512 otherwise, gives an error.
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5513
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5514 When using `pr-path-alist' to find COMMAND, the entries `cygwin', `windows' and
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5515 `unix' are used (see `pr-path-alist' for documentation).
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5516
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5517 If Emacs is running on Windows 95/98/NT/2000, tries to find COMMAND,
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5518 COMMAND.exe, COMMAND.bat and COMMAND.com in this order."
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5519 (if (string= command "")
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5520 command
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5521 (pr-dosify-path
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5522 (or (pr-find-command command)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5523 (pr-path-command (cond (pr-cygwin-system 'cygwin)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5524 (ps-windows-system 'windows)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5525 (t 'unix))
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5526 (file-name-nondirectory command)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5527 nil)
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5528 (error "Command not found: %s"
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5529 (file-name-nondirectory command))))))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5530
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5531
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5532 (defun pr-path-command (symbol command sym-list)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5533 (let ((lpath (cdr (assq symbol pr-path-alist)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5534 cmd)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5535 ;; PATH expansion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5536 (and (eq symbol 'PATH) (null lpath)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5537 (setq lpath (parse-colon-path (getenv "PATH"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5538 (while (and lpath
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5539 (not
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5540 (setq cmd
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5541 (let ((path (car lpath)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5542 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5543 ;; symbol expansion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5544 ((symbolp path)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5545 (and (not (memq path sym-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5546 (pr-path-command path command
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5547 (cons path sym-list))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5548 ;; normal path
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5549 ((stringp path)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5550 (pr-find-command
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5551 (expand-file-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5552 (substitute-in-file-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5553 (concat (file-name-as-directory path)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5554 command)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5555 )))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5556 (setq lpath (cdr lpath)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5557 cmd))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5558
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5559
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5560 (defun pr-find-command (cmd)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5561 (if ps-windows-system
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5562 ;; windows system
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5563 (let ((ext (cons (file-name-extension cmd t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5564 (list ".exe" ".bat" ".com")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5565 found)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5566 (setq cmd (file-name-sans-extension cmd))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5567 (while (and ext
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5568 (setq found (concat cmd (car ext)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5569 (not (and (file-regular-p found)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5570 (file-executable-p found))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5571 (setq ext (cdr ext)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5572 found nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5573 found)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5574 ;; non-windows systems
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5575 (and (file-regular-p cmd)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5576 (file-executable-p cmd)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5577 cmd)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5578
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5579
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5580 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5581 ;; Printing Interface (inspired on ps-print-interface.el)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5582
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5583
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5584 (require 'widget)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5585 (require 'wid-edit)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5586 (require 'cus-edit)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5587
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5588
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5589 (defvar pr-i-window-configuration nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5590
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5591 (defvar pr-i-buffer nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5592 (defvar pr-i-region nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5593 (defvar pr-i-mode nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5594 (defvar pr-i-despool nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5595 (defvar pr-i-ps-as-is t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5596 (defvar pr-i-n-up 1)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5597 (defvar pr-i-directory "./")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5598 (defvar pr-i-regexp "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5599 (defvar pr-i-ps-file "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5600 (defvar pr-i-out-file "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5601 (defvar pr-i-answer-yes nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5602 (defvar pr-i-process 'buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5603 (defvar pr-i-ps-send 'printer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5604
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5605
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5606 (defvar pr-interface-map nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5607 "Keymap for pr-interface.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5608
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5609 (if pr-interface-map
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5610 nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5611 (setq pr-interface-map (make-sparse-keymap))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5612 (cond ((eq ps-print-emacs-type 'xemacs) ; XEmacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5613 (pr-f-set-keymap-parents pr-interface-map (list widget-keymap))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5614 (pr-f-set-keymap-name pr-interface-map 'pr-interface-map))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5615 ((eq ps-print-emacs-type 'emacs) ; GNU Emacs
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5616 (pr-f-set-keymap-parents pr-interface-map widget-keymap)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5617 (define-key pr-interface-map "q" 'pr-interface-quit)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5618 (define-key pr-interface-map "?" 'pr-interface-help))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5619
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5620
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5621 (defmacro pr-interface-save (&rest body)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5622 `(save-excursion
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5623 (set-buffer pr-i-buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5624 ,@body))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5625
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5626
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5627 (defun pr-create-interface ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5628 "Create the front end for printing package."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5629 (setq pr-i-buffer (buffer-name (current-buffer))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5630 pr-i-region (ps-mark-active-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5631 pr-i-mode (pr-mode-alist-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5632 pr-i-window-configuration (current-window-configuration))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5633
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5634 (put 'pr-i-process 'pr-widget-list nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5635 (put 'pr-i-ps-send 'pr-widget-list nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5636
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5637 (delete-other-windows)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5638 (kill-buffer (get-buffer-create pr-buffer-name))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5639 (switch-to-buffer (get-buffer-create pr-buffer-name))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5640
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5641 ;; header
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5642 (let ((versions (concat "printing v" pr-version
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5643 " ps-print v" ps-print-version)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5644 (widget-insert (make-string (- 79 (length versions)) ?\ ) versions))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5645 (pr-insert-italic "\nCurrent Directory : " 1)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5646 (pr-insert-italic default-directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5647
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5648 (pr-insert-section-1) ; 1. Print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5649 (pr-insert-section-2) ; 2. PostScript Printer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5650 (pr-insert-section-3) ; 3. Text Printer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5651
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5652 ;; separator
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5653 (widget-insert "\n\n " (make-string 77 ?-))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5654
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5655 (pr-insert-section-4) ; 4. Settings
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5656 (pr-insert-section-5) ; 5. Customize
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5657 (pr-insert-section-6) ; 6. Show Settings
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5658 (pr-insert-section-7) ; 7. Help
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5659
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5660 (use-local-map pr-interface-map)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5661 (widget-setup)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5662 (goto-char (point-min))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5663
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5664 (and pr-i-region ; let region activated
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5665 (pr-keep-region-active)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5666
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5667
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5668 (defun pr-insert-section-1 ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5669 ;; 1. Print:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5670 (pr-insert-italic "\nPrint :" 1)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5671
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5672 ;; 1a. Buffer:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5673 ;; 1a. Buffer: Buffer List
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5674 (pr-insert-radio-button 'pr-i-process 'buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5675 (pr-insert-menu "Buffer List" 'pr-i-buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5676 (let ((blist (buffer-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5677 case-fold-search choices)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5678 (while blist
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5679 (let ((name (buffer-name (car blist)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5680 (ignore pr-buffer-name-ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5681 found)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5682 (setq blist (cdr blist))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5683 (while (and ignore (not found))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5684 (setq found (string-match (car ignore) name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5685 ignore (cdr ignore)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5686 (or found
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5687 (setq choices
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5688 (cons (list 'quote
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5689 (list 'choice-item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5690 :format "%[%t%]"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5691 name))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5692 choices)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5693 (nreverse choices))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5694 " Buffer : " nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5695 '(progn
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5696 (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5697 (setq pr-i-region (ps-mark-active-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5698 pr-i-mode (pr-mode-alist-p)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5699 (pr-update-checkbox 'pr-i-region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5700 (pr-update-checkbox 'pr-i-mode)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5701 ;; 1a. Buffer: Region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5702 (put 'pr-i-region 'pr-widget
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5703 (pr-insert-checkbox
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5704 "\n "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5705 'pr-i-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5706 #'(lambda (widget &rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5707 (let ((region-p (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5708 (ps-mark-active-p))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5709 (cond ((null (widget-value widget)) ; widget is nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5710 (setq pr-i-region nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5711 (region-p ; widget is true and there is a region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5712 (setq pr-i-region t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5713 (widget-value-set widget t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5714 (widget-setup)) ; MUST be called after widget-value-set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5715 (t ; widget is true and there is no region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5716 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5717 (message "There is no region active")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5718 (setq pr-i-region nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5719 (widget-value-set widget nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5720 (widget-setup))))) ; MUST be called after widget-value-set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5721 " Region"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5722 ;; 1a. Buffer: Mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5723 (put 'pr-i-mode 'pr-widget
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5724 (pr-insert-checkbox
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5725 " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5726 'pr-i-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5727 #'(lambda (widget &rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5728 (let ((mode-p (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5729 (pr-mode-alist-p))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5730 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5731 ((null (widget-value widget)) ; widget is nil
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5732 (setq pr-i-mode nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5733 (mode-p ; widget is true and there is a `mode'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5734 (setq pr-i-mode t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5735 (widget-value-set widget t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5736 (widget-setup)) ; MUST be called after widget-value-set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5737 (t ; widget is true and there is no `mode'
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5738 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5739 (message
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5740 "This buffer isn't in a mode that printing treats specially.")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5741 (setq pr-i-mode nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5742 (widget-value-set widget nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5743 (widget-setup))))) ; MUST be called after widget-value-set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5744 " Mode\n"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5745
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5746 ;; 1b. Directory:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5747 (pr-insert-radio-button 'pr-i-process 'directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5748 (widget-create
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5749 'directory
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5750 :size 58
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5751 :format " Directory : %v"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5752 :notify 'pr-interface-directory
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5753 :action (lambda (widget &optional event)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5754 (if (pr-interface-directory widget)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5755 (pr-widget-field-action widget event)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5756 (ding)
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5757 (message "Please specify a readable directory")))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5758 pr-i-directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5759 ;; 1b. Directory: File Regexp
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5760 (widget-create 'regexp
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5761 :size 58
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5762 :format "\n File Regexp : %v\n"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5763 :notify (lambda (widget &rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5764 (setq pr-i-regexp (widget-value widget)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5765 pr-i-regexp)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5766 ;; 1b. Directory: List Directory Entry
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5767 (widget-insert " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5768 (pr-insert-toggle 'pr-list-directory " List Directory Entry\n")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5769
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5770 ;; 1c. PostScript File:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5771 (pr-insert-radio-button 'pr-i-process 'file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5772 (widget-create
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5773 'file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5774 :size 51
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5775 :format " PostScript File : %v"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5776 :notify 'pr-interface-infile
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5777 :action (lambda (widget &rest event)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5778 (if (pr-interface-infile widget)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5779 (pr-widget-field-action widget event)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5780 (ding)
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5781 (message "Please specify a readable PostScript file")))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5782 pr-i-ps-file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5783 ;; 1c. PostScript File: PostScript Utility
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5784 (pr-insert-menu "PostScript Utility" 'pr-ps-utility
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5785 (pr-choice-alist pr-ps-utility-alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5786 "\n PostScript Utility : "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5787 " ")
54210
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
5788 ;; 1c. PostScript File: No Preprocessing
602769168263 Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54209
diff changeset
5789 (pr-insert-toggle 'pr-i-ps-as-is " No Preprocessing"))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5790
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5791
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5792 (defun pr-insert-section-2 ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5793 ;; 2. PostScript Printer:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5794 ;; 2. PostScript Printer: PostScript Printer List
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5795 (pr-insert-italic "\n\nPostScript Printer : " 2 20)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5796 (pr-insert-menu "PostScript Printer" 'pr-ps-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5797 (pr-choice-alist pr-ps-printer-alist))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5798 ;; 2. PostScript Printer: Despool
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5799 (put 'pr-i-despool 'pr-widget
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5800 (pr-insert-checkbox
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5801 " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5802 'pr-i-despool
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5803 #'(lambda (widget &rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5804 (if pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5805 (setq pr-i-despool (not pr-i-despool))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5806 (ding)
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5807 (message "Can despool only when spooling is actually selected")
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5808 (setq pr-i-despool nil))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5809 (widget-value-set widget pr-i-despool)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5810 (widget-setup)) ; MUST be called after widget-value-set
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5811 " Despool "))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5812 ;; 2. PostScript Printer: Preview Print Quit
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5813 (pr-insert-button 'pr-interface-preview "Preview" " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5814 (pr-insert-button 'pr-interface-ps-print "Print" " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5815 (pr-insert-button 'pr-interface-quit "Quit")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5816 ;; 2. PostScript Printer: Send to Printer/Temporary File
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5817 (pr-insert-radio-button 'pr-i-ps-send 'printer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5818 (widget-insert " Send to Printer/Temporary File")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5819 ;; 2. PostScript Printer: Send to File
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5820 (pr-insert-radio-button 'pr-i-ps-send 'file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5821 (widget-create
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5822 'file
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5823 :size 57
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5824 :format " Send to File : %v"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5825 :notify 'pr-interface-outfile
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5826 :action (lambda (widget &rest event)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5827 (if (and (pr-interface-outfile widget)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5828 (or (not (file-exists-p pr-i-out-file))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5829 (setq pr-i-answer-yes
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5830 (y-or-n-p "File exists; overwrite? "))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5831 (pr-widget-field-action widget event)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5832 (ding)
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5833 (message "Please specify a writable PostScript file")))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5834 pr-i-out-file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5835 ;; 2. PostScript Printer: N-Up
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5836 (widget-create
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5837 'integer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5838 :size 3
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5839 :format "\n N-Up : %v"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5840 :notify (lambda (widget &rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5841 (let ((value (if (string= (widget-apply widget :value-get) "")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5842 0
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5843 (widget-value widget))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5844 (if (and (integerp value)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5845 (<= 1 value) (<= value 100))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5846 (progn
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5847 (message " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5848 (setq pr-i-n-up value))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5849 (ding)
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5850 (message "Please specify an integer between 1 and 100"))))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5851 pr-i-n-up))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5852
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5853
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5854 (defun pr-insert-section-3 ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5855 ;; 3. Text Printer:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5856 (pr-insert-italic "\n\nText Printer : " 2 14)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5857 (pr-insert-menu "Text Printer" 'pr-txt-name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5858 (pr-choice-alist pr-txt-printer-alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5859 nil " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5860 (pr-insert-button 'pr-interface-printify "Printify" " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5861 (pr-insert-button 'pr-interface-txt-print "Print" " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5862 (pr-insert-button 'pr-interface-quit "Quit"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5863
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5864
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5865 (defun pr-insert-section-4 ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5866 ;; 4. Settings:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5867 ;; 4. Settings: Landscape Auto Region Verbose
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5868 (pr-insert-checkbox "\n\n " 'ps-landscape-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5869 #'(lambda (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5870 (setq ps-landscape-mode (not ps-landscape-mode)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5871 pr-file-landscape ps-landscape-mode))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5872 " Landscape ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5873 (pr-insert-toggle 'pr-auto-region " Auto Region ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5874 (pr-insert-toggle 'pr-buffer-verbose " Verbose\n ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5875
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5876 ;; 4. Settings: Print Header Auto Mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5877 (pr-insert-toggle 'ps-print-header " Print Header ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5878 (pr-insert-toggle 'pr-auto-mode " Auto Mode\n ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5879
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5880 ;; 4. Settings: Print Header Frame Menu Lock
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5881 (pr-insert-toggle 'ps-print-header-frame " Print Header Frame ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5882 (pr-insert-toggle 'pr-menu-lock " Menu Lock\n ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5883
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5884 ;; 4. Settings: Line Number
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5885 (pr-insert-toggle 'ps-line-number " Line Number\n ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5886
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5887 ;; 4. Settings: Zebra Stripes Spool Buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5888 (pr-insert-toggle 'ps-zebra-stripes " Zebra Stripes")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5889 (pr-insert-checkbox " "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5890 'pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5891 #'(lambda (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5892 (setq pr-spool-p (not pr-spool-p))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5893 (unless pr-spool-p
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5894 (setq pr-i-despool nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5895 (pr-update-checkbox 'pr-i-despool)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5896 " Spool Buffer")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5897
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5898 ;; 4. Settings: Duplex Print with faces
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5899 (pr-insert-checkbox "\n "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5900 'ps-spool-duplex
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5901 #'(lambda (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5902 (setq ps-spool-duplex (not ps-spool-duplex)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5903 pr-file-duplex ps-spool-duplex))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5904 " Duplex ")
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5905 (pr-insert-toggle 'pr-faces-p " Print with faces")
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5906
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5907 ;; 4. Settings: Tumble Print via Ghostscript
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5908 (pr-insert-checkbox "\n "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5909 'ps-spool-tumble
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5910 #'(lambda (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5911 (setq ps-spool-tumble (not ps-spool-tumble)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5912 pr-file-tumble ps-spool-tumble))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5913 " Tumble ")
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
5914 (pr-insert-toggle 'pr-print-using-ghostscript " Print via Ghostscript\n ")
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5915
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5916 ;; 4. Settings: Upside-Down Page Parity
54209
c312c950b64d Adjust buffer interface.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54146
diff changeset
5917 (pr-insert-toggle 'ps-print-upside-down " Upside-Down")
c312c950b64d Adjust buffer interface.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 54146
diff changeset
5918 (pr-insert-italic "\n\nSelect Pages : " 2 14)
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5919 (pr-insert-menu "Page Parity" 'ps-even-or-odd-pages
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5920 (mapcar #'(lambda (alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5921 (list 'quote
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5922 (list 'choice-item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5923 :format "%[%t%]"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5924 :tag (cdr alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5925 :value (car alist))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5926 pr-even-or-odd-alist)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5927
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5928
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5929 (defun pr-insert-section-5 ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5930 ;; 5. Customize:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5931 (pr-insert-italic "\n\nCustomize : " 2 11)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5932 (pr-insert-button 'pr-customize "printing" " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5933 (pr-insert-button #'(lambda (&rest ignore) (ps-print-customize))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5934 "ps-print" " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5935 (pr-insert-button 'lpr-customize "lpr"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5936
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5937
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5938 (defun pr-insert-section-6 ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5939 ;; 6. Show Settings:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5940 (pr-insert-italic "\nShow Settings : " 1 14)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5941 (pr-insert-button 'pr-show-pr-setup "printing" " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5942 (pr-insert-button 'pr-show-ps-setup "ps-print" " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5943 (pr-insert-button 'pr-show-lpr-setup "lpr"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5944
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5945
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5946 (defun pr-insert-section-7 ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5947 ;; 7. Help:
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5948 (pr-insert-italic "\nHelp : " 1 5)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5949 (pr-insert-button 'pr-interface-help "Interface Help" " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5950 (pr-insert-button 'pr-help "Menu Help" " ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5951 (pr-insert-button 'pr-interface-quit "Quit" "\n ")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5952 (pr-insert-button 'pr-kill-help "Kill All Printing Help Buffer"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5953
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5954
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5955 (defun pr-kill-help (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5956 "Kill all printing help buffer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5957 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5958 (let ((help '("*Printing Interface Help*" "*Printing Help*"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5959 "*LPR Setup*" "*PR Setup*" "*PS Setup*")))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5960 (while help
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5961 (let ((buffer (get-buffer (car help))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5962 (setq help (cdr help))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5963 (when buffer
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5964 (delete-windows-on buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5965 (kill-buffer buffer)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5966 (recenter (- (window-height) 2)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5967
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5968
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5969 (defun pr-interface-quit (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5970 "Kill the printing buffer interface and quit."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5971 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5972 (kill-buffer pr-buffer-name)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5973 (set-window-configuration pr-i-window-configuration))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5974
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5975
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5976 (defun pr-interface-help (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5977 "printing buffer interface help."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5978 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5979 (pr-show-setup pr-interface-help-message "*Printing Interface Help*"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5980
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5981
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5982 (defun pr-interface-txt-print (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5983 "Print using lpr package."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5984 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5985 (condition-case data
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5986 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5987 ((eq pr-i-process 'directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5988 (pr-i-directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5989 (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5990 (pr-txt-directory pr-i-directory pr-i-regexp)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5991 ((eq pr-i-process 'buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5992 (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5993 (cond (pr-i-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5994 (let ((pr-auto-mode pr-i-mode))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5995 (pr-txt-region)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5996 (pr-i-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5997 (let (pr-auto-region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5998 (pr-txt-mode)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
5999 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6000 (let (pr-auto-mode pr-auto-region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6001 (pr-txt-buffer)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6002 )))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6003 ((eq pr-i-process 'file)
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
6004 (error "Please specify a text file"))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6005 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6006 (error "Internal error: `pr-i-process' = %S" pr-i-process))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6007 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6008 ;; handlers
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6009 ((quit error)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6010 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6011 (message (error-message-string data)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6012
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6013
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6014 (defun pr-interface-printify (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6015 "Printify a buffer."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6016 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6017 (condition-case data
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6018 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6019 ((eq pr-i-process 'directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6020 (pr-i-directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6021 (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6022 (pr-printify-directory pr-i-directory pr-i-regexp)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6023 ((eq pr-i-process 'buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6024 (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6025 (if pr-i-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6026 (pr-printify-region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6027 (pr-printify-buffer))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6028 ((eq pr-i-process 'file)
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
6029 (error "Cannot printify a PostScript file"))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6030 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6031 (error "Internal error: `pr-i-process' = %S" pr-i-process))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6032 )
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6033 ;; handlers
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6034 ((quit error)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6035 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6036 (message (error-message-string data)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6037
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6038
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6039 (defun pr-interface-ps-print (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6040 "Print using ps-print package."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6041 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6042 (pr-interface-ps 'pr-despool-ps-print 'pr-ps-directory-ps-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6043 'pr-ps-file-ps-print 'pr-ps-file-up-ps-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6044 'pr-ps-region-ps-print 'pr-ps-mode-ps-print
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6045 'pr-ps-buffer-ps-print))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6046
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6047
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6048 (defun pr-interface-preview (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6049 "Preview a PostScript file."
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6050 (interactive)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6051 (pr-interface-ps 'pr-despool-preview 'pr-ps-directory-preview
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6052 'pr-ps-file-preview 'pr-ps-file-up-preview
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6053 'pr-ps-region-preview 'pr-ps-mode-preview
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6054 'pr-ps-buffer-preview))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6055
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6056
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6057 (defun pr-interface-ps (ps-despool ps-directory ps-file ps-file-up ps-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6058 ps-mode ps-buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6059 (condition-case data
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6060 (let ((outfile (or (and (eq pr-i-process 'file) pr-i-ps-as-is)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6061 (pr-i-ps-send))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6062 (cond
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6063 ((and pr-i-despool pr-spool-p)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6064 (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6065 (funcall ps-despool outfile))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6066 (setq pr-i-despool nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6067 (pr-update-checkbox 'pr-i-despool))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6068 ((eq pr-i-process 'directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6069 (pr-i-directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6070 (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6071 (funcall ps-directory
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6072 pr-i-n-up pr-i-directory pr-i-regexp outfile)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6073 ((eq pr-i-process 'file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6074 (cond ((or (file-directory-p pr-i-ps-file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6075 (not (file-readable-p pr-i-ps-file)))
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
6076 (error "Please specify a readable PostScript file"))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6077 (pr-i-ps-as-is
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6078 (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6079 (funcall ps-file pr-i-ps-file)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6080 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6081 (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6082 (funcall ps-file-up pr-i-n-up pr-i-ps-file outfile)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6083 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6084 ((eq pr-i-process 'buffer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6085 (pr-interface-save
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6086 (cond (pr-i-region
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6087 (let ((pr-auto-mode pr-i-mode))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6088 (funcall ps-region pr-i-n-up outfile)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6089 (pr-i-mode
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6090 (let (pr-auto-region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6091 (funcall ps-mode pr-i-n-up outfile)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6092 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6093 (let (pr-auto-mode pr-auto-region)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6094 (funcall ps-buffer pr-i-n-up outfile)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6095 )))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6096 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6097 (error "Internal error: `pr-i-process' = %S" pr-i-process))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6098 ))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6099 ;; handlers
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6100 ((quit error)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6101 (ding)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6102 (message (error-message-string data)))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6103
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6104
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6105 (defun pr-i-ps-send ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6106 (cond ((eq pr-i-ps-send 'printer)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6107 nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6108 ((not (eq pr-i-ps-send 'file))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6109 (error "Internal error: `pr-i-ps-send' = %S" pr-i-ps-send))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6110 ((or (file-directory-p pr-i-out-file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6111 (not (file-writable-p pr-i-out-file)))
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
6112 (error "Please specify a writable PostScript file"))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6113 ((or (not (file-exists-p pr-i-out-file))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6114 pr-i-answer-yes
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6115 (setq pr-i-answer-yes
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6116 (y-or-n-p (format "File `%s' exists; overwrite? "
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6117 pr-i-out-file))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6118 pr-i-out-file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6119 (t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6120 (error "File already exists"))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6121
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6122
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6123 (defun pr-i-directory ()
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6124 (or (and (file-directory-p pr-i-directory)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6125 (file-readable-p pr-i-directory))
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
6126 (error "Please specify be a readable directory")))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6127
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6128
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6129 (defun pr-interface-directory (widget &rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6130 (and pr-buffer-verbose
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
6131 (message "You can use M-TAB or ESC TAB for file completion"))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6132 (let ((dir (widget-value widget)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6133 (and (file-directory-p dir)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6134 (file-readable-p dir)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6135 (setq pr-i-directory dir))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6136
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6137
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6138 (defun pr-interface-infile (widget &rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6139 (and pr-buffer-verbose
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
6140 (message "You can use M-TAB or ESC TAB for file completion"))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6141 (let ((file (widget-value widget)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6142 (and (not (file-directory-p file))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6143 (file-readable-p file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6144 (setq pr-i-ps-file file))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6145
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6146
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6147 (defun pr-interface-outfile (widget &rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6148 (setq pr-i-answer-yes nil)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6149 (and pr-buffer-verbose
54146
2a5eca2838d1 A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents: 52401
diff changeset
6150 (message "You can use M-TAB or ESC TAB for file completion"))
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6151 (let ((file (widget-value widget)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6152 (and (not (file-directory-p file))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6153 (file-writable-p file)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6154 (setq pr-i-out-file file))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6155
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6156
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6157 (defun pr-widget-field-action (widget event)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6158 (and (get-buffer "*Completions*") ; clean frame window
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6159 (delete-windows-on "*Completions*"))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6160 (message " ") ; clean echo area
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6161 (widget-field-action widget event))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6162
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6163
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6164 (defun pr-insert-italic (str &optional from to)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6165 (let ((len (length str)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6166 (put-text-property (if from (max from 0) 0)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6167 (if to (max to len) len)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6168 'face 'italic str)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6169 (widget-insert str)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6170
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6171
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6172 (defun pr-insert-checkbox (before var-sym fun label)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6173 (widget-insert before)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6174 (prog1
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6175 (widget-create 'checkbox
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6176 :notify fun
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6177 (symbol-value var-sym))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6178 (widget-insert label)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6179
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6180
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6181 (defun pr-insert-toggle (var-sym label)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6182 (widget-create 'checkbox
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6183 :notify `(lambda (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6184 (setq ,var-sym (not ,var-sym)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6185 (symbol-value var-sym))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6186 (widget-insert label))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6187
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6188
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6189 (defun pr-insert-button (fun label &optional separator)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6190 (widget-create 'push-button
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6191 :notify fun
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6192 label)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6193 (and separator
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6194 (widget-insert separator)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6195
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6196
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6197 (defun pr-insert-menu (tag var-sym choices &optional before after &rest body)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6198 (and before (widget-insert before))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6199 (eval `(widget-create 'menu-choice
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6200 :tag ,tag
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6201 :format "%v"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6202 :inline t
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6203 :value ,var-sym
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6204 :notify (lambda (widget &rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6205 (setq ,var-sym (widget-value widget))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6206 ,@body)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6207 :void '(choice-item :format "%[%t%]"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6208 :tag "Can not display value!")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6209 ,@choices))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6210 (and after (widget-insert after)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6211
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6212
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6213 (defun pr-insert-radio-button (var-sym sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6214 (widget-insert "\n")
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6215 (let ((wid-list (get var-sym 'pr-widget-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6216 (wid (eval `(widget-create
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6217 'radio-button
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6218 :format " %[%v%]"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6219 :value (eq ,var-sym (quote ,sym))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6220 :notify (lambda (&rest ignore)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6221 (setq ,var-sym (quote ,sym))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6222 (pr-update-radio-button (quote ,var-sym)))))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6223 (put var-sym 'pr-widget-list (cons (cons wid sym) wid-list))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6224
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6225
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6226 (defun pr-update-radio-button (var-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6227 (let ((wid-list (get var-sym 'pr-widget-list)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6228 (while wid-list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6229 (let ((wid (car (car wid-list)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6230 (value (cdr (car wid-list))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6231 (setq wid-list (cdr wid-list))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6232 (widget-value-set wid (eq (symbol-value var-sym) value))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6233 (widget-setup)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6234
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6235
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6236 (defun pr-update-checkbox (var-sym)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6237 (let ((wid (get var-sym 'pr-widget)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6238 (when wid
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6239 (widget-value-set wid (symbol-value var-sym))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6240 (widget-setup))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6241
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6242
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6243 (defun pr-choice-alist (alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6244 (let ((max (apply 'max (mapcar #'(lambda (alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6245 (length (symbol-name (car alist))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6246 alist))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6247 (mapcar #'(lambda (alist)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6248 (let* ((sym (car alist))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6249 (name (symbol-name sym)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6250 (list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6251 'quote
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6252 (list
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6253 'choice-item
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6254 :format "%[%t%]"
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6255 :tag (concat name
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6256 (make-string (- max (length name)) ?_))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6257 :value sym))))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6258 alist)))
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6259
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6260
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6261 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6262
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6263
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6264 (pr-update-menus t)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6265
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6266
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6267 (provide 'printing)
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6268
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6269
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 50017
diff changeset
6270 ;;; arch-tag: 9ce9ac3f-0f60-4370-900b-1943215d9d18
49646
c3d410212c79 New file.
Kim F. Storm <storm@cua.dk>
parents:
diff changeset
6271 ;;; printing.el ends here