Mercurial > emacs
annotate lisp/printing.el @ 68140:4baa8cfc2485
(init-file-user): defcustom -> defvar.
author | Luc Teirlinck <teirllm@auburn.edu> |
---|---|
date | Thu, 12 Jan 2006 02:27:00 +0000 |
parents | e21a70dc8958 |
children | 3bd95f4f2941 7beb78bc1f8e |
rev | line source |
---|---|
49646 | 1 ;;; printing.el --- printing utilities |
2 | |
64762
41bb365f41c4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64091
diff
changeset
|
3 ;; Copyright (C) 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc. |
49646 | 4 |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5 ;; Author: Vinicius Jose Latorre <viniciusjl@ig.com.br> |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
6 ;; Maintainer: Vinicius Jose Latorre <viniciusjl@ig.com.br> |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64762
diff
changeset
|
7 ;; Time-stamp: <2005-09-18 05:57:14 deego> |
49646 | 8 ;; Keywords: wp, print, PostScript |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
9 ;; Version: 6.8.4 |
49646 | 10 ;; X-URL: http://www.cpqd.com.br/~vinicius/emacs/ |
11 | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
12 (defconst pr-version "6.8.4" |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
13 "printing.el, v 6.8.4 <2005/06/11 vinicius> |
49646 | 14 |
15 Please send all bug fixes and enhancements to | |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
16 Vinicius Jose Latorre <viniciusjl@ig.com.br> |
49646 | 17 ") |
18 | |
19 ;; This file is part of GNU Emacs. | |
20 | |
21 ;; GNU Emacs is free software; you can redistribute it and/or modify it under | |
22 ;; the terms of the GNU General Public License as published by the Free | |
23 ;; Software Foundation; either version 2, or (at your option) any later | |
24 ;; version. | |
25 | |
26 ;; GNU Emacs is distributed in the hope that it will be useful, but WITHOUT ANY | |
27 ;; WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS | |
28 ;; FOR A PARTICULAR PURPOSE. See the GNU General Public License for more | |
29 ;; details. | |
30 | |
31 ;; You should have received a copy of the GNU General Public License along with | |
32 ;; GNU Emacs; see the file COPYING. If not, write to the Free Software | |
64091 | 33 ;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
49646 | 34 |
35 ;;; Commentary: | |
36 | |
37 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
38 ;; | |
39 ;; Introduction | |
40 ;; ------------ | |
41 ;; | |
56493 | 42 ;; With `printing' you can preview or print a PostScript file. You can also |
43 ;; print a text file using PostScript, and preview or print buffers that use | |
44 ;; certain special modes like mh-folder-mode, rmail-summary-mode, | |
45 ;; gnus-summary-mode, etc. This package also includes a PostScript/text | |
46 ;; printer database. | |
47 ;; | |
48 ;; There are two user interfaces: | |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
49 ;; |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
50 ;; * Menu interface: |
56493 | 51 ;; The `printing' menu replaces the usual print options in the menu bar. |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
52 ;; This is the default user interface. |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
53 ;; |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
54 ;; * Buffer interface: |
56493 | 55 ;; You can use a buffer interface instead of menus. It looks like a |
56 ;; customization buffer. Basically, it has the same options found in the | |
57 ;; menu and some extra options, all this on a buffer. | |
58 ;; | |
59 ;; `printing' is prepared to run on GNU, Unix and NT systems. | |
60 ;; On GNU or Unix system, `printing' depends on gs and gv utilities. | |
61 ;; On NT system, `printing' depends on gstools (gswin32.exe and gsview32.exe). | |
62 ;; To obtain ghostscript, ghostview and GSview see the URL | |
63 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html'. | |
64 ;; | |
65 ;; `printing' depends on ps-print package to generate PostScript files, to | |
66 ;; spool and to despool PostScript buffer. So, `printing' provides an | |
67 ;; interface to ps-print package and it also provides some extra stuff. | |
68 ;; | |
69 ;; To download the latest ps-print package see | |
70 ;; `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz'. | |
71 ;; Please, see README file for ps-print installation instructions. | |
49646 | 72 ;; |
73 ;; `printing' was inspired on: | |
74 ;; | |
75 ;; print-nt.el Frederic Corne <frederic.corne@erli.fr> | |
76 ;; Special printing functions for Windows NT | |
77 ;; | |
78 ;; mh-e-init.el Tom Vogels <tov@ece.cmu.edu> | |
79 ;; PS-print for mail messages | |
80 ;; | |
81 ;; win32-ps-print.el Matthew O. Persico <mpersico@erols.com> | |
82 ;; PostScript printing with ghostscript | |
83 ;; | |
84 ;; ps-print-interface.el Volker Franz <volker.franz@tuebingen.mpg.de> | |
85 ;; Graphical front end for ps-print and previewing | |
86 ;; | |
87 ;; | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
88 ;; Log Messages |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
89 ;; ------------ |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
90 ;; |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
91 ;; The buffer *Printing Command Output* is where the `printing' log messages |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
92 ;; are inserted. All program called by `printing' has a log entry in the |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
93 ;; buffer *Printing Command Output*. A log entry has the following form: |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
94 ;; |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
95 ;; PROGRAM (ARG...) |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
96 ;; MESSAGE |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
97 ;; Exit status: CODE |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
98 ;; |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
99 ;; Where |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
100 ;; PROGRAM is the program activated by `printing', |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
101 ;; ARG is an argument passed to PROGRAM (it can have more than one argument), |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
102 ;; MESSAGE is an error message returned by PROGRAM (it can have no message, if |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
103 ;; PROGRAM is successful), |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
104 ;; and CODE is a numeric exit status or a signal description string. |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
105 ;; |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
106 ;; For example, after previewing a PostScript file, *Printing Command Output* |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
107 ;; will have the following entry: |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
108 ;; |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
109 ;; /usr/X11R6/bin/gv ("/home/user/example/file.ps") |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
110 ;; Exit status: 0 |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
111 ;; |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
112 ;; In the example above, the previewing was successful. If during previewing, |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
113 ;; you quit gv execution (by typing C-g during Emacs session), the log entry |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
114 ;; would be: |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
115 ;; |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
116 ;; /usr/X11R6/bin/gv ("/home/user/example/file.ps") |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
117 ;; Exit status: Quit |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
118 ;; |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
119 ;; So, if something goes wrong, a good place to take a look is the buffer |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
120 ;; *Printing Command Output*. Don't forget to see also the buffer *Messages*, |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
121 ;; it can help. |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
122 ;; |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
123 ;; |
49646 | 124 ;; Novices (First Users) |
125 ;; --------------------- | |
126 ;; | |
57241
e53d659f0afd
Check if file exists before deleting it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
57187
diff
changeset
|
127 ;; First of all, see printing documentation only to get an idea of what |
e53d659f0afd
Check if file exists before deleting it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
57187
diff
changeset
|
128 ;; `printing' is capable. |
49646 | 129 ;; |
130 ;; Then try to set the variables: `pr-ps-name', `pr-ps-printer-alist', | |
131 ;; `pr-txt-name', `pr-txt-printer-alist' and `pr-path-alist'. These variables | |
132 ;; are the main variables for printing processing. | |
133 ;; | |
57241
e53d659f0afd
Check if file exists before deleting it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
57187
diff
changeset
|
134 ;; Now, please, see these variables documentation deeper. You can do this by |
e53d659f0afd
Check if file exists before deleting it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
57187
diff
changeset
|
135 ;; typing C-h v pr-ps-name RET (for example) if you already loaded printing |
e53d659f0afd
Check if file exists before deleting it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
57187
diff
changeset
|
136 ;; package, or by browsing printing.el source file. |
49646 | 137 ;; |
138 ;; If the documentation isn't clear or if you find a way to improve the | |
139 ;; documentation, please, send an email to maintainer. All printing users | |
140 ;; will thank you. | |
141 ;; | |
142 ;; One way to set variables is by calling `pr-customize', customize all | |
143 ;; variables and save the customization by future sessions (see Options | |
144 ;; section). Other way is by coding your settings on Emacs init file (that is, | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
145 ;; ~/.emacs file), see below for a first setting template that it should be |
49646 | 146 ;; inserted on your ~/.emacs file (or c:/_emacs, if you're using Windows 9x/NT |
147 ;; or MS-DOS): | |
148 ;; | |
149 ;; * Example of setting for Windows system: | |
150 ;; | |
151 ;; (require 'printing) ; load printing package | |
152 ;; (setq pr-path-alist | |
153 ;; '((windows "c:/applications/executables" PATH ghostview mpage) | |
154 ;; (ghostview "c:/gs/gsview-dir") | |
155 ;; (mpage "c:/mpage-dir") | |
156 ;; )) | |
157 ;; (setq pr-txt-name 'prt_06a) | |
158 ;; (setq pr-txt-printer-alist | |
159 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a") | |
160 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c") | |
161 ;; (PRN "" nil "PRN") | |
162 ;; (standard "redpr.exe" nil "") | |
163 ;; )) | |
164 ;; (setq pr-ps-name 'lps_06b) | |
165 ;; (setq pr-ps-printer-alist | |
166 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a") | |
167 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b") | |
168 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c") | |
169 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c") | |
170 ;; (LPT1 "" nil "" "LPT1:") | |
171 ;; (PRN "" nil "" "PRN") | |
172 ;; (standard "redpr.exe" nil "" "") | |
173 ;; )) | |
174 ;; (pr-update-menus t) ; update now printer and utility menus | |
175 ;; | |
176 ;; * Example of setting for GNU or Unix system: | |
177 ;; | |
178 ;; (require 'printing) ; load printing package | |
179 ;; (setq pr-path-alist | |
180 ;; '((unix "." "~/bin" ghostview mpage PATH) | |
181 ;; (ghostview "$HOME/bin/gsview-dir") | |
182 ;; (mpage "$HOME/bin/mpage-dir") | |
183 ;; )) | |
184 ;; (setq pr-txt-name 'prt_06a) | |
185 ;; (setq pr-txt-printer-alist | |
186 ;; '((prt_06a "lpr" nil "prt_06a") | |
187 ;; (prt_07c nil nil "prt_07c") | |
188 ;; )) | |
189 ;; (setq pr-ps-name 'lps_06b) | |
190 ;; (setq pr-ps-printer-alist | |
191 ;; '((lps_06b "lpr" nil "-P" "lps_06b") | |
192 ;; (lps_07c "lpr" nil nil "lps_07c") | |
193 ;; (lps_08c nil nil nil "lps_08c") | |
194 ;; )) | |
195 ;; (pr-update-menus t) ; update now printer and utility menus | |
196 ;; | |
197 ;; | |
198 ;; NOTE 1: Don't forget to download and install ghostscript utilities (see | |
199 ;; Utilities section). | |
200 ;; | |
201 ;; NOTE 2: The `printer-name' and `ps-printer-name' variables don't need to be | |
202 ;; set, as they are implicit set by `pr-ps-printer-alist' and | |
203 ;; `pr-txt-printer-alist'. | |
204 ;; | |
205 ;; NOTE 3: The duplex feature will only work on PostScript printers that | |
206 ;; support this feature. | |
207 ;; You can check if your PostScript printer supports duplex feature | |
208 ;; by checking the printer manual. Or you can try these steps: | |
209 ;; 1. Open a buffer (or use the *scratch* buffer). | |
210 ;; 2. Type: | |
211 ;; First line (on first page) | |
212 ;; ^L | |
213 ;; Second line (on second page) | |
214 ;; 3. Print this buffer with duplex turned on. | |
215 ;; If it's printed 2 (two) sheets of paper, then your PostScript | |
216 ;; printer doesn't have duplex feature; otherwise, it's ok, your | |
217 ;; printer does have duplex feature. | |
218 ;; | |
54326 | 219 ;; NOTE 4: See Tips section. |
220 ;; | |
221 ;; | |
222 ;; Tips | |
223 ;; ---- | |
224 ;; | |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
225 ;; 1. If you have a local printer, that is, a printer which is connected |
54326 | 226 ;; directly to your computer, don't forget to connect the printer to your |
227 ;; computer before printing. | |
228 ;; | |
54333
085835de6939
New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54326
diff
changeset
|
229 ;; 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
|
230 ;; 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
|
231 ;; 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
|
232 ;; 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
|
233 ;; |
085835de6939
New tips in Tips section.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54326
diff
changeset
|
234 ;; 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
|
235 ;; 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
|
236 ;; 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
|
237 ;; 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
|
238 ;; 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
|
239 ;; |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
240 ;; 4. When running Emacs on Windows (with or without cygwin), check if your |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
241 ;; printer is a text printer or not by typing in a DOS window: |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
242 ;; |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
243 ;; print /D:\\host\printer somefile.txt |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
244 ;; |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
245 ;; Where, `host' is the machine where the printer is directly connected, |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
246 ;; `printer' is the printer name and `somefile.txt' is a text file. |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
247 ;; |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
248 ;; If the printer `\\host\printer' doesn't print the content of |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
249 ;; `somefile.txt' or, instead, it returns the following message: |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
250 ;; |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
251 ;; PostScript Error Handler |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
252 ;; Offending Command = CCC |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
253 ;; Stack = |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
254 ;; |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
255 ;; Where `CCC' is whatever is at the beginning of the text to be printed. |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
256 ;; |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
257 ;; Therefore, the printer `\\host\printer' is not a text printer, but a |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
258 ;; PostScript printer. So, please, don't include this printer in |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
259 ;; `pr-txt-printer-alist' (which see). |
54675
32aae36e32af
Var initialization fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54636
diff
changeset
|
260 ;; |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
261 ;; 5. You can use gsprint instead of ghostscript to print monochrome PostScript |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
262 ;; files in Windows. The gsprint utility documentation says that it is more |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
263 ;; efficient than ghostscript to print monochrome PostScript. |
57187
c9052d462541
Doc fix (gsprint).
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56578
diff
changeset
|
264 ;; |
57241
e53d659f0afd
Check if file exists before deleting it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
57187
diff
changeset
|
265 ;; To print non-monochrome PostScript file, the efficiency of ghostscript |
e53d659f0afd
Check if file exists before deleting it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
57187
diff
changeset
|
266 ;; is similar to gsprint. |
57187
c9052d462541
Doc fix (gsprint).
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56578
diff
changeset
|
267 ;; |
c9052d462541
Doc fix (gsprint).
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56578
diff
changeset
|
268 ;; Also the gsprint utility comes together with gsview distribution. |
c9052d462541
Doc fix (gsprint).
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56578
diff
changeset
|
269 ;; |
c9052d462541
Doc fix (gsprint).
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56578
diff
changeset
|
270 ;; For more information about gsprint see |
c9052d462541
Doc fix (gsprint).
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56578
diff
changeset
|
271 ;; `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'. |
c9052d462541
Doc fix (gsprint).
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56578
diff
changeset
|
272 ;; |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
273 ;; As an example of gsprint declaration: |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
274 ;; |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
275 ;; (setq pr-ps-printer-alist |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
276 ;; '((A "gsprint" ("-all" "-twoup") "-printer " "my-b/w-printer-name") |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
277 ;; (B "gsprint" ("-all" "-twoup") nil "-printer my-b/w-printer-name") |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
278 ;; ;; some other printer declaration |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
279 ;; )) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
280 ;; |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
281 ;; The example above declares that printer A prints all pages (-all) and two |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
282 ;; pages per sheet (-twoup). The printer B declaration does the same as the |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
283 ;; printer A declaration, the only difference is the printer name selection. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
284 ;; |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
285 ;; There are other command line options like: |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
286 ;; |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
287 ;; -mono Render in monochrome as 1bit/pixel (only black and white). |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
288 ;; -grey Render in greyscale as 8bits/pixel. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
289 ;; -color Render in color as 24bits/pixel. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
290 ;; |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
291 ;; The default is `-mono'. So, printer A and B in the example above are |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
292 ;; using implicitly the `-mono' option. Note that in `-mono' no gray tone |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
293 ;; or color is printed, this includes the zebra stripes, that is, in `-mono' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
294 ;; the zebra stripes are not printed. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
295 ;; |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
296 ;; See also documentation for `pr-ps-printer-alist'. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
297 ;; |
49646 | 298 ;; |
299 ;; Using `printing' | |
300 ;; ---------------- | |
301 ;; | |
302 ;; To use `printing' insert in your ~/.emacs file (or c:/_emacs, if you're | |
303 ;; using Windows 9x/NT or MS-DOS): | |
304 ;; | |
305 ;; (require 'printing) | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
306 ;; ;; ...some user settings... |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
307 ;; (pr-update-menus t) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
308 ;; |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
309 ;; During `pr-update-menus' evaluation: |
49646 | 310 ;; * On Emacs 20: |
311 ;; it replaces the Tools/Print menu by Tools/Printing menu. | |
312 ;; * On Emacs 21: | |
313 ;; it replaces the File/Print* menu entries by File/Print menu. | |
314 ;; Please, see section Menu Layout below for menu explanation. | |
315 ;; | |
316 ;; To use `printing' utilities you can use the Printing menu options, type M-x | |
317 ;; followed by one of the commands below, or type a key associated with the | |
318 ;; command you want (if there is a key binding). | |
319 ;; | |
320 ;; `printing' has the following commands: | |
321 ;; | |
322 ;; pr-interface | |
323 ;; pr-ps-directory-preview | |
324 ;; pr-ps-directory-using-ghostscript | |
325 ;; pr-ps-directory-print | |
326 ;; pr-ps-directory-ps-print | |
327 ;; pr-ps-buffer-preview | |
328 ;; pr-ps-buffer-using-ghostscript | |
329 ;; pr-ps-buffer-print | |
330 ;; pr-ps-buffer-ps-print | |
331 ;; pr-ps-region-preview | |
332 ;; pr-ps-region-using-ghostscript | |
333 ;; pr-ps-region-print | |
334 ;; pr-ps-region-ps-print | |
335 ;; pr-ps-mode-preview | |
336 ;; pr-ps-mode-using-ghostscript | |
337 ;; pr-ps-mode-print | |
338 ;; pr-ps-mode-ps-print | |
339 ;; pr-ps-file-preview | |
340 ;; pr-ps-file-up-preview | |
341 ;; pr-ps-file-using-ghostscript | |
342 ;; pr-ps-file-print | |
343 ;; pr-ps-file-ps-print | |
344 ;; pr-ps-file-up-ps-print | |
345 ;; pr-ps-fast-fire | |
346 ;; pr-despool-preview | |
347 ;; pr-despool-using-ghostscript | |
348 ;; pr-despool-print | |
349 ;; pr-despool-ps-print | |
350 ;; pr-printify-directory | |
351 ;; pr-printify-buffer | |
352 ;; pr-printify-region | |
353 ;; pr-txt-directory | |
354 ;; pr-txt-buffer | |
355 ;; pr-txt-region | |
356 ;; pr-txt-mode | |
357 ;; pr-txt-fast-fire | |
358 ;; pr-toggle-file-duplex | |
359 ;; pr-toggle-file-tumble | |
360 ;; pr-toggle-file-landscape | |
361 ;; pr-toggle-ghostscript | |
362 ;; pr-toggle-faces | |
363 ;; pr-toggle-spool | |
364 ;; pr-toggle-duplex | |
365 ;; pr-toggle-tumble | |
366 ;; pr-toggle-landscape | |
367 ;; pr-toggle-upside-down | |
368 ;; pr-toggle-line | |
369 ;; pr-toggle-zebra | |
370 ;; pr-toggle-header | |
371 ;; pr-toggle-lock | |
372 ;; pr-toggle-region | |
373 ;; pr-toggle-mode | |
374 ;; pr-customize | |
375 ;; lpr-customize | |
376 ;; pr-help | |
377 ;; pr-ps-name | |
378 ;; pr-txt-name | |
379 ;; pr-ps-utility | |
380 ;; pr-show-ps-setup | |
381 ;; pr-show-pr-setup | |
382 ;; pr-show-lpr-setup | |
383 ;; | |
384 ;; The general meanings of above commands are: | |
385 ;; | |
386 ;; PREFIX: | |
387 ;; `pr-interface' buffer interface for printing package. | |
388 ;; `pr-help' help for printing package. | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
389 ;; `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
|
390 ;; `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
|
391 ;; `pr-ps-utility' interactively select a PostScript utility. |
49646 | 392 ;; `pr-show-*-setup' show current settings. |
393 ;; `pr-ps-*' deal with PostScript code generation. | |
394 ;; `pr-txt-*' deal with text generation. | |
395 ;; `pr-toggle-*' toggle on/off some boolean variable. | |
396 ;; `pr-despool-*' despool the PostScript spooling buffer. | |
397 ;; `pr-printify-*' replace nonprintable ASCII by printable ASCII | |
398 ;; representation. | |
399 ;; | |
400 ;; SUFFIX: | |
401 ;; `*-customize' customization. | |
402 ;; `*-preview' preview a PostScript file. | |
403 ;; `*-using-ghostscript' use ghostscript to print. | |
404 ;; `*-fast-fire' fast fire command (see it for documentation). | |
405 ;; `*-print' send PostScript directly to printer. | |
406 ;; `*-ps-print' send PostScript directly to printer or use | |
407 ;; ghostscript to print. It depends on | |
408 ;; `pr-print-using-ghostscript' option. | |
409 ;; | |
410 ;; INFIX/SUFFIX: | |
411 ;; `*-directory*' process a directory. | |
412 ;; `*-buffer*' process a buffer. | |
413 ;; `*-region*' process a region. | |
414 ;; `*-mode*' process a major mode (see explanation below). | |
415 ;; `*-file-*' process a PostScript file. | |
416 ;; `*-file-up-*' process a PostScript file using a filter utility. | |
417 ;; | |
418 ;; Here are some examples: | |
419 ;; | |
420 ;; `pr-ps-buffer-using-ghostscript' | |
421 ;; Use ghostscript to print a buffer. | |
422 ;; | |
423 ;; `pr-ps-file-print' | |
424 ;; Print a PostScript file. | |
425 ;; | |
426 ;; `pr-toggle-spool' | |
427 ;; Toggle spooling buffer. | |
428 ;; | |
429 ;; So you can preview through ghostview, use ghostscript to print (if you don't | |
430 ;; have a PostScript printer) or send directly to printer a PostScript code | |
431 ;; generated by `ps-print' package. | |
432 ;; | |
433 ;; Besides operating one buffer or region each time, you also can postpone | |
434 ;; previewing or printing by saving the PostScript code generated in a | |
435 ;; temporary Emacs buffer. This way you can save banner pages between | |
436 ;; successive printing. You can toggle on/off spooling by invoking | |
437 ;; `pr-toggle-spool' interactively or through menu bar. | |
438 ;; | |
439 ;; If you type, for example: | |
440 ;; | |
441 ;; C-u M-x pr-ps-buffer-print RET | |
442 ;; | |
443 ;; The `pr-ps-buffer-print' command prompts you for a n-up printing number and | |
444 ;; a file name, and save the PostScript code generated to the file name instead | |
445 ;; of sending to printer. | |
446 ;; | |
447 ;; This behavior is similar with the commands that deal with PostScript code | |
448 ;; generation, that is, with `pr-ps-*' and `pr-despool-*' commands. If | |
449 ;; spooling is on, only `pr-despool-*' commands prompt for a file name and save | |
450 ;; the PostScript code spooled in this file. | |
451 ;; | |
452 ;; Besides the behavior described above, the `*-directory*' commands also | |
453 ;; prompt for a directory and a file name regexp. So, it's possible to process | |
454 ;; all or certain files on a directory at once (see also documentation for | |
455 ;; `pr-list-directory'). | |
456 ;; | |
457 ;; `printing' has also a special way to handle some major mode through | |
458 ;; `*-mode*' commands. So it's possible to customize a major mode printing, | |
459 ;; it's only needed to declare the customization in `pr-mode-alist' (see | |
460 ;; section Options) and invoke some of `*-mode*' commands. An example for | |
461 ;; major mode usage is when you're using gnus (or mh, or rmail, etc.) and | |
462 ;; you're in the *Summary* buffer, if you forget to switch to the *Article* | |
463 ;; buffer before printing, you'll get a nicely formatted list of article | |
464 ;; subjects shows up at the printer. With major mode printing you don't need | |
465 ;; to switch from gnus *Summary* buffer first. | |
466 ;; | |
467 ;; Current global keyboard mapping for GNU Emacs is: | |
468 ;; | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
469 ;; (global-set-key [print] 'pr-ps-fast-fire) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
470 ;; (global-set-key [M-print] 'pr-ps-mode-using-ghostscript) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
471 ;; (global-set-key [S-print] 'pr-ps-mode-using-ghostscript) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
472 ;; (global-set-key [C-print] 'pr-txt-fast-fire) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
473 ;; (global-set-key [C-M-print] 'pr-txt-fast-fire) |
49646 | 474 ;; |
475 ;; And for XEmacs is: | |
476 ;; | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
477 ;; (global-set-key 'f22 'pr-ps-fast-fire) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
478 ;; (global-set-key '(meta f22) 'pr-ps-mode-using-ghostscript) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
479 ;; (global-set-key '(shift f22) 'pr-ps-mode-using-ghostscript) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
480 ;; (global-set-key '(control f22) 'pr-txt-fast-fire) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
481 ;; (global-set-key '(control meta f22) 'pr-txt-fast-fire) |
49646 | 482 ;; |
483 ;; As a suggestion of global keyboard mapping for some `printing' commands: | |
484 ;; | |
485 ;; (global-set-key "\C-ci" 'pr-interface) | |
486 ;; (global-set-key "\C-cbp" 'pr-ps-buffer-print) | |
487 ;; (global-set-key "\C-cbx" 'pr-ps-buffer-preview) | |
488 ;; (global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript) | |
489 ;; (global-set-key "\C-crp" 'pr-ps-region-print) | |
490 ;; (global-set-key "\C-crx" 'pr-ps-region-preview) | |
491 ;; (global-set-key "\C-crr" 'pr-ps-region-using-ghostscript) | |
492 ;; | |
493 ;; | |
494 ;; Options | |
495 ;; ------- | |
496 ;; | |
497 ;; Below it's shown a brief description of `printing' options, please, see the | |
498 ;; options declaration in the code for a long documentation. | |
499 ;; | |
500 ;; `pr-path-style' Specify which path style to use for external | |
501 ;; commands. | |
502 ;; | |
503 ;; `pr-path-alist' Specify an alist for command paths. | |
504 ;; | |
505 ;; `pr-txt-name' Specify a printer for printing a text file. | |
506 ;; | |
507 ;; `pr-txt-printer-alist' Specify an alist of all text printers. | |
508 ;; | |
509 ;; `pr-ps-name' Specify a printer for printing a PostScript | |
510 ;; file. | |
511 ;; | |
512 ;; `pr-ps-printer-alist' Specify an alist for all PostScript printers. | |
513 ;; | |
514 ;; `pr-temp-dir' Specify a directory for temporary files during | |
515 ;; printing. | |
516 ;; | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
517 ;; `pr-ps-temp-file' Specify PostScript temporary file name prefix. |
49646 | 518 ;; |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
519 ;; `pr-file-modes' Specify the file permission bits for newly |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
520 ;; created files. |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
521 ;; |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
522 ;; `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
|
523 ;; utility. |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
524 ;; |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
525 ;; `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
|
526 ;; utility. |
49646 | 527 ;; |
528 ;; `pr-gs-switches' Specify ghostscript switches. | |
529 ;; | |
530 ;; `pr-gs-device' Specify ghostscript device switch value. | |
531 ;; | |
532 ;; `pr-gs-resolution' Specify ghostscript resolution switch value. | |
533 ;; | |
534 ;; `pr-print-using-ghostscript' Non-nil means print using ghostscript. | |
535 ;; | |
536 ;; `pr-faces-p' Non-nil means print with face attributes. | |
537 ;; | |
538 ;; `pr-spool-p' Non-nil means spool printing in a buffer. | |
539 ;; | |
540 ;; `pr-file-landscape' Non-nil means print PostScript file in | |
541 ;; landscape orientation. | |
542 ;; | |
543 ;; `pr-file-duplex' Non-nil means print PostScript file in duplex | |
544 ;; mode. | |
545 ;; | |
546 ;; `pr-file-tumble' Non-nil means print PostScript file in tumble | |
547 ;; mode. | |
548 ;; | |
549 ;; `pr-auto-region' Non-nil means region is automagically detected. | |
550 ;; | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
551 ;; `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
|
552 ;; prefered over normal printing. |
49646 | 553 ;; |
554 ;; `pr-mode-alist' Specify an alist for a major-mode and printing | |
555 ;; function. | |
556 ;; | |
557 ;; `pr-ps-utility' Specify PostScript utility processing. | |
558 ;; | |
559 ;; `pr-ps-utility-alist' Specify an alist for PostScript utility | |
560 ;; processing. | |
561 ;; | |
562 ;; `pr-menu-lock' Non-nil means menu is locked while selecting | |
563 ;; toggle options. | |
564 ;; | |
565 ;; `pr-menu-char-height' Specify menu char height in pixels. | |
566 ;; | |
567 ;; `pr-menu-char-width' Specify menu char width in pixels. | |
568 ;; | |
569 ;; `pr-setting-database' Specify an alist for settings in general. | |
570 ;; | |
571 ;; `pr-visible-entry-list' Specify a list of Printing menu visible | |
572 ;; entries. | |
573 ;; | |
574 ;; `pr-delete-temp-file' Non-nil means delete temporary files. | |
575 ;; | |
576 ;; `pr-list-directory' Non-nil means list directory when processing a | |
577 ;; directory. | |
578 ;; | |
579 ;; `pr-buffer-name' Specify the name of the buffer interface for | |
580 ;; printing package. | |
581 ;; | |
582 ;; `pr-buffer-name-ignore' Specify a regexp list for buffer names to be | |
583 ;; ignored in interface buffer. | |
584 ;; | |
585 ;; `pr-buffer-verbose' Non-nil means to be verbose when editing a | |
586 ;; field in interface buffer. | |
587 ;; | |
588 ;; To set the above options you may: | |
589 ;; | |
590 ;; a) insert the code in your ~/.emacs, like: | |
591 ;; | |
592 ;; (setq pr-faces-p t) | |
593 ;; | |
594 ;; This way always keep your default settings when you enter a new Emacs | |
595 ;; session. | |
596 ;; | |
597 ;; b) or use `set-variable' in your Emacs session, like: | |
598 ;; | |
599 ;; M-x set-variable RET pr-faces-p RET t RET | |
600 ;; | |
601 ;; This way keep your settings only during the current Emacs session. | |
602 ;; | |
603 ;; c) or use customization, for example: | |
604 ;; click on menu-bar *Help* option, | |
605 ;; then click on *Customize*, | |
606 ;; then click on *Browse Customization Groups*, | |
607 ;; expand *PostScript* group, | |
608 ;; expand *Printing* group | |
609 ;; and then customize `printing' options. | |
610 ;; Through this way, you may choose if the settings are kept or not when | |
611 ;; you leave out the current Emacs session. | |
612 ;; | |
613 ;; d) or see the option value: | |
614 ;; | |
615 ;; C-h v pr-faces-p RET | |
616 ;; | |
617 ;; and click the *customize* hypertext button. | |
618 ;; Through this way, you may choose if the settings are kept or not when | |
619 ;; you leave out the current Emacs session. | |
620 ;; | |
621 ;; e) or invoke: | |
622 ;; | |
623 ;; M-x pr-customize RET | |
624 ;; | |
625 ;; and then customize `printing' options. | |
626 ;; Through this way, you may choose if the settings are kept or not when | |
627 ;; you leave out the current Emacs session. | |
628 ;; | |
629 ;; f) or use menu bar, for example: | |
630 ;; click on menu-bar *File* option, | |
631 ;; then click on *Printing*, | |
632 ;; then click on *Customize*, | |
633 ;; then click on *printing* | |
634 ;; and then customize `printing' options. | |
635 ;; Through this way, you may choose if the settings are kept or not when | |
636 ;; you leave out the current Emacs session. | |
637 ;; | |
638 ;; | |
639 ;; Menu Layout | |
640 ;; ----------- | |
641 ;; | |
642 ;; The `printing' menu (Tools/Printing or File/Print) has the following layout: | |
643 ;; | |
644 ;; +-----------------------------+ | |
645 ;; A 0 | Printing Interface | | |
646 ;; +-----------------------------+ +-A---------+ +-B------+ | |
647 ;; I 1 | PostScript Preview >|-------|Directory >|-----|1-up | | |
648 ;; 2 | PostScript Print >|---- A |Buffer >|-- B |2-up | | |
649 ;; 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up | | |
650 ;; +-----------------------------+ |Mode >|-- B |Other...| | |
651 ;; II 4 | Printify >|-----\ |File >|--\ +--------+ | |
652 ;; 5 | Print >|---\ | |Despool... | | | |
653 ;; 6 | Text Printer: name >|-\ | | +-----------+ | | |
654 ;; +-----------------------------+ | | | +---------+ +------------+ | |
54210
602769168263
Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54209
diff
changeset
|
655 ;; III 7 |[ ]Landscape | | | \-|Directory| | No Prep... | Ia |
49646 | 656 ;; 8 |[ ]Print Header | | | |Buffer | +------------+ Ib |
657 ;; 9 |[ ]Print Header Frame | | | |Region | | name >|- C | |
658 ;; 10 |[ ]Line Number | | | +---------+ +------------+ | |
659 ;; 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic | |
660 ;; 12 |[ ]Duplex | | \---|Directory| | 2-up... | | |
661 ;; 13 |[ ]Tumble | \--\ |Buffer | | 4-up... | | |
662 ;; 14 |[ ]Upside-Down | | |Region | | Other... | | |
663 ;; 15 | Print All Pages >|--\ | |Mode | +------------+ | |
664 ;; +-----------------------------+ | | +---------+ |[ ]Landscape| Id | |
665 ;; IV 16 |[ ]Spool Buffer | | | +-C-------+ |[ ]Duplex | Ie | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
666 ;; 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
|
667 ;; 18 |[ ]Print via Ghostscript | | |( )name B| +------------+ |
49646 | 668 ;; +-----------------------------+ | |... | |
669 ;; V 19 |[ ]Auto Region | | |(*)name | | |
670 ;; 20 |[ ]Auto Mode | | |... | | |
671 ;; 21 |[ ]Menu Lock | | +---------+ +--------------+ | |
672 ;; +-----------------------------+ \------------------|(*)All Pages | | |
673 ;; VI 22 | Customize >|--- D +-D------+ |( )Even Pages | | |
674 ;; 23 | Show Settings >|-------|printing| |( )Odd Pages | | |
675 ;; 24 | Help | |ps-print| |( )Even Sheets| | |
676 ;; +-----------------------------+ |lpr | |( )Odd Sheets | | |
677 ;; +--------+ +--------------+ | |
678 ;; | |
679 ;; See `pr-visible-entry-list' for hiding some parts of the menu. | |
680 ;; | |
681 ;; The menu has the following sections: | |
682 ;; | |
683 ;; A. Interface: | |
684 ;; | |
685 ;; 0. You can use a buffer interface instead of menus. It looks like the | |
686 ;; customization buffer. Basically, it has the same options found in the | |
687 ;; menu and some extra options, all this on a buffer. | |
688 ;; | |
689 ;; I. PostScript printing: | |
690 ;; | |
691 ;; 1. You can generate a PostScript file (if you type C-u before activating | |
692 ;; menu) or PostScript temporary file for a directory, a buffer, a region | |
693 ;; or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing; | |
694 ;; after file generation, ghostview is activated using the file generated | |
695 ;; as argument. This option is disabled if spooling is on (option 16). | |
696 ;; Also, if you already have a PostScript file you can preview it. | |
697 ;; Instead of previewing each buffer, region or major mode at once, you | |
698 ;; can save temporarily the PostScript code generated in a buffer and | |
699 ;; preview it later. The option `Despool...' despools the PostScript | |
700 ;; spooling buffer in a temporary file and uses ghostview to preview it. | |
701 ;; If you type C-u before choosing this option, the PostScript code | |
702 ;; generated is saved in a file instead of saving in a temporary file. | |
703 ;; To spool the PostScript code generated you need to turn on the option | |
704 ;; 16. The option `Despool...' is enabled if spooling is on (option | |
705 ;; 16). | |
706 ;; | |
707 ;; NOTE 1: It's possible to customize a major mode printing, just declare | |
708 ;; the customization in `pr-mode-alist' and invoke some of | |
709 ;; `*-mode*' commands or select Mode option in Printing menu. An | |
710 ;; example for major mode usage is when you're using gnus (or mh, | |
711 ;; or rmail, etc.) and you're in the *Summary* buffer, if you | |
712 ;; forget to switch to the *Article* buffer before printing, | |
713 ;; you'll get a nicely formatted list of article subjects shows | |
714 ;; up at the printer. With major mode printing you don't need to | |
715 ;; switch from gnus *Summary* buffer first. | |
716 ;; | |
717 ;; NOTE 2: There are the following options for PostScript file | |
718 ;; 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
|
719 ;; 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
|
720 ;; directly to PostScript printer. |
49646 | 721 ;; Ib. PostScript utility processing selection. |
722 ;; See `pr-ps-utility-alist' and `pr-setting-database' for | |
723 ;; documentation. | |
724 ;; Ic. Do n-up processing before printing. | |
725 ;; Id. Toggle on/off landscape for PostScript file processing. | |
726 ;; Ie. Toggle on/off duplex for PostScript file processing. | |
727 ;; If. Toggle on/off tumble for PostScript file processing. | |
728 ;; | |
729 ;; NOTE 3: Don't forget to download and install the utilities declared on | |
730 ;; `pr-ps-utility-alist'. | |
731 ;; | |
732 ;; 2. Operate the same way as option 1, but it sends directly the PostScript | |
733 ;; code (or put in a file, if you've typed C-u) or it uses ghostscript to | |
734 ;; print the PostScript file generated. It depends on option 18, if it's | |
735 ;; turned on, it uses ghostscript; otherwise, it sends directly to | |
736 ;; printer. If spooling is on (option 16), the PostScript code is saved | |
737 ;; temporarily in a buffer instead of printing it or saving it in a file. | |
738 ;; Also, if you already have a PostScript file you can print it. Instead | |
739 ;; of printing each buffer, region or major mode at once, you can save | |
740 ;; temporarily the PostScript code generated in a buffer and print it | |
741 ;; later. The option `Despool...' despools the PostScript spooling | |
742 ;; buffer directly on a printer. If you type C-u before choosing this | |
743 ;; option, the PostScript code generated is saved in a file instead of | |
744 ;; sending to printer. To spool the PostScript code generated you need | |
745 ;; to turn on the option 16. This option is enabled if spooling is on | |
746 ;; (option 16). See also the NOTE 1, NOTE 2 and NOTE 3 on option 1. | |
747 ;; | |
748 ;; 3. You can select a new PostScript printer to send PostScript code | |
749 ;; generated. For selection it's used all PostScript printers defined | |
750 ;; in `pr-ps-printer-alist' variable (see it for documentation). | |
751 ;; See also `pr-setting-database'. | |
752 ;; | |
753 ;; II. Text printing: | |
754 ;; | |
755 ;; 4. If you have control characters (character code from \000 to \037) in a | |
756 ;; buffer and you want to print them in a text printer, select this | |
757 ;; option. All control characters in your buffer or region will be | |
758 ;; replaced by a printable representation. The printable representations | |
759 ;; use ^ (for ASCII control characters) or hex. The characters tab, | |
760 ;; linefeed, space, return and formfeed are not affected. You don't need | |
761 ;; to select this option if you use any option of section I, the | |
762 ;; PostScript engine treats control characters properly. | |
763 ;; | |
764 ;; 5. If you want to print a directory, buffer, region or major mode in a | |
765 ;; text printer, select this option. See also the NOTE 1 on option 1. | |
766 ;; | |
767 ;; 6. You can select a new text printer to send text generated. For | |
768 ;; selection it's used all text printers defined in | |
769 ;; `pr-txt-printer-alist' variable (see it for documentation). | |
770 ;; See also `pr-setting-database'. | |
771 ;; | |
772 ;; III. PostScript page toggle options: | |
773 ;; | |
774 ;; 7. If you want a PostScript landscape printing, turn on this option. | |
775 ;; | |
776 ;; 8. If you want to have a header in each page in your PostScript code, | |
777 ;; turn on this option. | |
778 ;; | |
779 ;; 9. If you want to draw a gaudy frame around the header, turn on this | |
780 ;; option. This option is enabled if print header is on (option 8). | |
781 ;; | |
782 ;; 10. If you want that the line number is printed in your PostScript code, | |
783 ;; turn on this option. | |
784 ;; | |
785 ;; 11. If you want background zebra stripes in your PostScript code, turn on | |
786 ;; this option. | |
787 ;; | |
788 ;; 12. If you want a duplex printing and your PostScript printer has this | |
789 ;; feature, turn on this option. | |
790 ;; | |
791 ;; 13. If you turned on duplex printing, you can choose if you want to have | |
792 ;; a printing suitable for binding on the left or right (tumble off), or | |
793 ;; to have a printing suitable for binding at top or bottom (tumble on). | |
794 ;; This option is enabled if duplex is on (option 12). | |
795 ;; | |
796 ;; 14. If you want a PostScript upside-down printing, turn on this option. | |
797 ;; | |
798 ;; 15. With this option, you can choose if you want to print all pages, odd | |
799 ;; pages, even pages, odd sheets or even sheets. | |
800 ;; See also `ps-even-or-odd-pages'. | |
801 ;; | |
802 ;; IV. PostScript processing toggle options: | |
803 ;; | |
804 ;; 16. If you want to spool the PostScript code generated, turn on this | |
805 ;; option. To spool the PostScript code generated use option 2. You | |
806 ;; can despool later by choosing option 1 or 2, sub-option `Despool...'. | |
807 ;; | |
808 ;; 17. If you use colors in your buffers and want to see these colors on | |
809 ;; your PostScript code generated, turn on this option. If you have a | |
810 ;; black/white PostScript printer, these colors are displayed in gray | |
811 ;; scale by PostScript printer interpreter. | |
812 ;; | |
813 ;; 18. If you don't have a PostScript printer to send PostScript files, turn | |
814 ;; on this option. When this option is on, the ghostscript is used to | |
815 ;; print PostScript files. In GNU or Unix system, if ghostscript is set | |
816 ;; as a PostScript filter, you don't need to turn on this option. | |
817 ;; | |
818 ;; V. Printing customization: | |
819 ;; | |
820 ;; 19. If you want that region is automagically detected, turn on this | |
821 ;; option. Note that this will only work if you're using transient mark | |
822 ;; mode. When this option is on, the `*-buffer*' commands will behave | |
823 ;; like `*-region*' commands, that is, `*-buffer*' commands will print | |
824 ;; only the region marked instead of all buffer. | |
825 ;; | |
826 ;; 20. Turn this option on if you want that when current major-mode is | |
827 ;; declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands | |
828 ;; behave like `*-mode*' commands. | |
829 ;; | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
830 ;; 21. If you want that Printing menu stays open while you are setting |
49646 | 831 ;; toggle options, turn on this option. The variables |
832 ;; `pr-menu-char-height' and `pr-menu-char-width' are used to guess the | |
833 ;; menu position, so don't forget to adjust these variables if menu | |
834 ;; position is not ok. | |
835 ;; | |
836 ;; VI. Customization: | |
837 ;; | |
838 ;; 22. Besides all options in section III, IV and V, you can customize much | |
839 ;; more PostScript options in `ps-print' option. Or you can customize | |
840 ;; some `lpr' options for text printing. Or customize `printing' | |
841 ;; options. | |
842 ;; | |
843 ;; 23. Show current settings for `printing', `ps-print' or `lpr'. | |
844 ;; | |
845 ;; 24. Quick help for printing menu layout. | |
846 ;; | |
847 ;; | |
848 ;; Option Settings | |
849 ;; --------------- | |
850 ;; | |
851 ;; Below it's shown only the main options that affect all `printing' package. | |
852 ;; Check all the settings below *BEFORE* running `printing' commands. | |
853 ;; | |
854 ;; * Example of setting for GNU or Unix system: | |
855 ;; | |
856 ;; (require 'printing) | |
857 ;; (setq pr-path-alist | |
858 ;; '((unix "." "~/bin" ghostview mpage PATH) | |
859 ;; (ghostview "$HOME/bin/gsview-dir") | |
860 ;; (mpage "$HOME/bin/mpage-dir") | |
861 ;; )) | |
862 ;; (setq pr-txt-name 'prt_06a) | |
863 ;; (setq pr-txt-printer-alist | |
864 ;; '((prt_06a "lpr" nil "prt_06a") | |
865 ;; (prt_07c nil nil "prt_07c") | |
866 ;; )) | |
867 ;; (setq pr-ps-name 'lps_06b) | |
868 ;; (setq pr-ps-printer-alist | |
869 ;; '((lps_06b "lpr" nil "-P" "lps_06b") | |
870 ;; (lps_07c "lpr" nil nil "lps_07c") | |
871 ;; (lps_08c nil nil nil "lps_08c") | |
872 ;; )) | |
873 ;; (setq pr-temp-dir "/tmp/") | |
874 ;; (setq pr-gv-command "gv") | |
875 ;; (setq pr-gs-command "gs") | |
876 ;; (setq pr-gs-switches '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10")) | |
877 ;; (setq pr-gs-device "uniprint") | |
878 ;; (setq pr-gs-resolution 300) | |
879 ;; (setq pr-ps-utility 'mpage) | |
880 ;; (setq pr-ps-utility-alist | |
881 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil) | |
882 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil | |
883 ;; (inherits-from: . no-duplex)) | |
884 ;; )) | |
885 ;; (setq pr-setting-database | |
886 ;; '((no-duplex | |
887 ;; nil nil nil | |
888 ;; (pr-file-duplex . nil) | |
889 ;; (pr-file-tumble . nil)) | |
890 ;; )) | |
891 ;; (pr-update-menus t) ; update now printer and utility menus | |
892 ;; | |
893 ;; * Example of setting for Windows system: | |
894 ;; | |
895 ;; (require 'printing) | |
896 ;; (setq pr-path-alist | |
897 ;; '((windows "c:/applications/executables" PATH ghostview mpage) | |
898 ;; (ghostview "c:/gs/gsview-dir") | |
899 ;; (mpage "c:/mpage-dir") | |
900 ;; )) | |
901 ;; (setq pr-txt-name 'prt_06a) | |
902 ;; (setq pr-txt-printer-alist | |
903 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a") | |
904 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c") | |
905 ;; (PRN "" nil "PRN") | |
906 ;; (standard "redpr.exe" nil "") | |
907 ;; )) | |
908 ;; (setq pr-ps-name 'lps_06b) | |
909 ;; (setq pr-ps-printer-alist | |
910 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a") | |
911 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b") | |
912 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c") | |
913 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c") | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
914 ;; (b/w "gsprint" ("-all" "-twoup") "-printer " "b/w-pr-name") |
49646 | 915 ;; (LPT1 "" nil "" "LPT1:") |
916 ;; (PRN "" nil "" "PRN") | |
917 ;; (standard "redpr.exe" nil "" "") | |
918 ;; )) | |
919 ;; (setq pr-temp-dir "C:/WINDOWS/TEMP/") | |
920 ;; (setq pr-gv-command "c:/gs/gsview/gsview32.exe") | |
921 ;; (setq pr-gs-command "c:/gs/gswin32.exe") | |
922 ;; (setq pr-gs-switches '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts")) | |
923 ;; (setq pr-gs-device "mswinpr2") | |
924 ;; (setq pr-gs-resolution 300) | |
925 ;; (setq pr-ps-utility 'psnup) | |
926 ;; (setq pr-ps-utility-alist | |
927 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " | |
928 ;; nil (inherits-from: . no-duplex)) | |
929 ;; )) | |
930 ;; (setq pr-setting-database | |
931 ;; '((no-duplex | |
932 ;; nil nil nil | |
933 ;; (pr-file-duplex . nil) | |
934 ;; (pr-file-tumble . nil)) | |
935 ;; )) | |
936 ;; (pr-update-menus t) ; update now printer and utility menus | |
937 ;; | |
938 ;; NOTE: Don't forget to download and install the utilities declared on | |
939 ;; `pr-ps-utility-alist'. | |
940 ;; | |
941 ;; | |
942 ;; Utilities | |
943 ;; --------- | |
944 ;; | |
945 ;; `printing' package has the following utilities: | |
946 ;; | |
947 ;; `pr-setup' Return the current `printing' setup. | |
948 ;; | |
949 ;; `lpr-setup' Return the current `lpr' setup. | |
950 ;; | |
951 ;; `pr-update-menus' Update utility, PostScript and text printer menus. | |
952 ;; | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
953 ;; `pr-menu-bind' Install `printing' menu in the menubar. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
954 ;; |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
955 ;; |
49646 | 956 ;; Below are some URL where you can find good utilities. |
957 ;; | |
958 ;; * For `printing' package: | |
959 ;; | |
960 ;; printing `http://www.cpqd.com.br/~vinicius/emacs/printing.el.gz' | |
961 ;; ps-print `http://www.cpqd.com.br/~vinicius/emacs/ps-print.tar.gz' | |
962 ;; | |
963 ;; * For GNU or Unix system: | |
964 ;; | |
965 ;; gs, gv `http://www.gnu.org/software/ghostscript/ghostscript.html' | |
966 ;; enscript `http://people.ssh.fi/mtr/genscript/' | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
967 ;; psnup `http://www.knackered.org/angus/psutils/' |
49646 | 968 ;; mpage `http://www.mesa.nl/pub/mpage/' |
969 ;; | |
970 ;; * For Windows system: | |
971 ;; | |
972 ;; gswin32, gsview32 | |
973 ;; `http://www.gnu.org/software/ghostscript/ghostscript.html' | |
57187
c9052d462541
Doc fix (gsprint).
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56578
diff
changeset
|
974 ;; gsprint `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm'. |
49646 | 975 ;; enscript `http://people.ssh.fi/mtr/genscript/' |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
976 ;; psnup `http://gnuwin32.sourceforge.net/packages/psutils.htm' |
49646 | 977 ;; redmon `http://www.cs.wisc.edu/~ghost/redmon/' |
978 ;; | |
979 ;; | |
980 ;; Acknowledgments | |
981 ;; --------------- | |
982 ;; | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
983 ;; Thanks to Stefan Monnier <monnier@iro.umontreal.ca> for GNU Emacs and XEmacs |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
984 ;; printing menu (in `pr-menu-spec') merging suggestion. |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
985 ;; |
57187
c9052d462541
Doc fix (gsprint).
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56578
diff
changeset
|
986 ;; Thanks to Lennart Borgman <lennart.borgman.073@student.lu.se> for gsprint |
c9052d462541
Doc fix (gsprint).
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56578
diff
changeset
|
987 ;; suggestion (see tip 5 in section Tips). |
c9052d462541
Doc fix (gsprint).
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56578
diff
changeset
|
988 ;; |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
989 ;; Thanks to Drew Adams <drew.adams@oracle.com> for suggestions: |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
990 ;; - directory processing. |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
991 ;; - `pr-path-alist' variable. |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
992 ;; - doc fix. |
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
993 ;; - a lot of tests on Windows. |
49646 | 994 ;; |
995 ;; Thanks to Fred Labrosse <f.labrosse@maths.bath.ac.uk> for XEmacs tests. | |
996 ;; | |
997 ;; Thanks to Klaus Berndl <klaus.berndl@sdm.de> for invaluable help/debugging | |
998 ;; and for suggestions: | |
999 ;; - even/odd pages printing. | |
1000 ;; - ghostscript parameters for `pr-ps-printer-alist'. | |
1001 ;; - default printer name. | |
1002 ;; - completion functions. | |
1003 ;; - automagic region detection. | |
1004 ;; - menu entry hiding. | |
1005 ;; - fast fire PostScript printing command. | |
1006 ;; - `pr-path-style' variable. | |
1007 ;; | |
1008 ;; Thanks to Kim F. Storm <storm@filanet.dk> for beta-test and for suggestions: | |
1009 ;; - PostScript Print and PostScript Print Preview merge. | |
1010 ;; - Tools/Printing menu. | |
1011 ;; - replace *-using-preview by *-using-ghostscript. | |
1012 ;; - printer selection. | |
1013 ;; - extra parameters for `pr-ps-printer-alist'. | |
1014 ;; | |
1015 ;; Thanks to: | |
1016 ;; Frederic Corne <frederic.corne@erli.fr> print-nt.el | |
1017 ;; Tom Vogels <tov@ece.cmu.edu> mh-e-init.el | |
1018 ;; Matthew O. Persico <mpersico@erols.com> win32-ps-print.el | |
1019 ;; Volker Franz <volker.franz@tuebingen.mpg.de> ps-print-interface.el | |
1020 ;; And to all people who contributed with them. | |
1021 ;; | |
1022 ;; | |
1023 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
1024 | |
1025 ;;; Code: | |
1026 | |
1027 | |
1028 (require 'lpr) | |
1029 (require 'ps-print) | |
1030 | |
1031 | |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
1032 (and (string< ps-print-version "6.6.4") |
56578
a36e2d80b510
(toplevel, pr-ps-fast-fire, pr-ps-set-utility)
John Paul Wallington <jpw@pobox.com>
parents:
56493
diff
changeset
|
1033 (error "`printing' requires `ps-print' package version 6.6.4 or later")) |
49646 | 1034 |
1035 | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1036 (defconst pr-cygwin-system |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1037 (and ps-windows-system (getenv "OSTYPE") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1038 (string-match "cygwin" (getenv "OSTYPE")))) |
49646 | 1039 |
1040 | |
1041 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
1042 ;; To avoid compilation gripes | |
1043 | |
1044 | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1045 (or (fboundp 'subst-char-in-string) ; hacked from subr.el |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1046 (defun subst-char-in-string (fromchar tochar string &optional inplace) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1047 "Replace FROMCHAR with TOCHAR in STRING each time it occurs. |
49646 | 1048 Unless optional argument INPLACE is non-nil, return a new string." |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1049 (let ((i (length string)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1050 (newstr (if inplace string (copy-sequence string)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1051 (while (> (setq i (1- i)) 0) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1052 (if (eq (aref newstr i) fromchar) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1053 (aset newstr i tochar))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1054 newstr))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1055 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1056 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1057 (or (fboundp 'make-temp-file) ; hacked from subr.el |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1058 (defun make-temp-file (prefix &optional dir-flag suffix) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1059 "Create a temporary file. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1060 The returned file name (created by appending some random characters at the end |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1061 of PREFIX, and expanding against `temporary-file-directory' if necessary), |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1062 is guaranteed to point to a newly created empty file. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1063 You can then use `write-region' to write new data into the file. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1064 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1065 If DIR-FLAG is non-nil, create a new empty directory instead of a file. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1066 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1067 If SUFFIX is non-nil, add that at the end of the file name." |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1068 (let ((umask (default-file-modes)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1069 file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1070 (unwind-protect |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1071 (progn |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1072 ;; Create temp files with strict access rights. It's easy to |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1073 ;; loosen them later, whereas it's impossible to close the |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1074 ;; time-window of loose permissions otherwise. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1075 (set-default-file-modes ?\700) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1076 (while (condition-case () |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1077 (progn |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1078 (setq file |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1079 (make-temp-name |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1080 (expand-file-name prefix temporary-file-directory))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1081 (if suffix |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1082 (setq file (concat file suffix))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1083 (if dir-flag |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1084 (make-directory file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1085 (write-region "" nil file nil 'silent nil 'excl)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1086 nil) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1087 (file-already-exists t)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1088 ;; the file was somehow created by someone else between |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1089 ;; `make-temp-name' and `write-region', let's try again. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1090 nil) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1091 file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1092 ;; Reset the umask. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1093 (set-default-file-modes umask))))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1094 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1095 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1096 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1097 (defalias 'pr-e-frame-char-height 'frame-char-height) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1098 (defalias 'pr-e-frame-char-width 'frame-char-width) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1099 (defalias 'pr-e-mouse-pixel-position 'mouse-pixel-position) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1100 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1101 (defalias 'pr-x-add-submenu 'add-submenu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1102 (defalias 'pr-x-event-function 'event-function) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1103 (defalias 'pr-x-event-object 'event-object) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1104 (defalias 'pr-x-find-menu-item 'find-menu-item) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1105 (defalias 'pr-x-font-height 'font-height) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1106 (defalias 'pr-x-font-width 'font-width) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1107 (defalias 'pr-x-get-popup-menu-response 'get-popup-menu-response) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1108 (defalias 'pr-x-make-event 'make-event) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1109 (defalias 'pr-x-misc-user-event-p 'misc-user-event-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1110 (defalias 'pr-x-relabel-menu-item 'relabel-menu-item) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1111 (defalias 'pr-x-event-x-pixel 'event-x-pixel) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1112 (defalias 'pr-x-event-y-pixel 'event-y-pixel) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1113 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1114 (cond |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1115 ((featurep 'xemacs) ; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1116 (defvar current-menubar nil) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1117 (defvar current-mouse-event nil) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1118 (defvar zmacs-region-stays nil) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1119 (defalias 'pr-f-set-keymap-parents 'set-keymap-parents) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1120 (defalias 'pr-f-set-keymap-name 'set-keymap-name) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1121 (defun pr-f-read-string (prompt initial history default) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1122 (let ((str (read-string prompt initial))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1123 (if (and str (not (string= str ""))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1124 str |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1125 default))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1126 (defun pr-keep-region-active () |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1127 (setq zmacs-region-stays t))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1128 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1129 (t ; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1130 (defvar deactivate-mark nil) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1131 (defalias 'pr-f-set-keymap-parents 'set-keymap-parent) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1132 (defalias 'pr-f-set-keymap-name 'ignore) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1133 (defalias 'pr-f-read-string 'read-string) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1134 (defun pr-keep-region-active () |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1135 (setq deactivate-mark nil)))) |
49646 | 1136 |
1137 | |
1138 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
1139 ;; Customization Functions | |
1140 | |
1141 | |
1142 (defun pr-alist-custom-set (symbol value) | |
1143 "Set the value of custom variables for printer & utility selection." | |
1144 (set symbol value) | |
1145 (and (featurep 'printing) ; update only after printing is loaded | |
1146 (pr-update-menus t))) | |
1147 | |
1148 | |
1149 (defun pr-ps-utility-custom-set (symbol value) | |
1150 "Update utility menu entry." | |
1151 (set symbol value) | |
1152 (and (featurep 'printing) ; update only after printing is loaded | |
1153 (pr-menu-set-utility-title value))) | |
1154 | |
1155 | |
1156 (defun pr-ps-name-custom-set (symbol value) | |
1157 "Update `PostScript Printer:' menu entry." | |
1158 (set symbol value) | |
1159 (and (featurep 'printing) ; update only after printing is loaded | |
1160 (pr-menu-set-ps-title value))) | |
1161 | |
1162 | |
1163 (defun pr-txt-name-custom-set (symbol value) | |
1164 "Update `Text Printer:' menu entry." | |
1165 (set symbol value) | |
1166 (and (featurep 'printing) ; update only after printing is loaded | |
1167 (pr-menu-set-txt-title value))) | |
1168 | |
1169 | |
1170 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
1171 ;; User Interface (I) | |
1172 | |
1173 | |
1174 (defgroup printing nil | |
64018
2d2ec1140b68
(printing): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63328
diff
changeset
|
1175 "Printing Utilities group." |
49646 | 1176 :tag "Printing Utilities" |
1177 :link '(emacs-library-link :tag "Source Lisp File" "printing.el") | |
1178 :prefix "pr-" | |
58164
4db6f3a44cd6
fix to use new easymenu
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58138
diff
changeset
|
1179 :version "20" |
49646 | 1180 :group 'wp |
1181 :group 'postscript) | |
1182 | |
1183 | |
1184 (defcustom pr-path-style | |
1185 (if (and (not pr-cygwin-system) | |
1186 ps-windows-system) | |
1187 'windows | |
1188 'unix) | |
1189 "*Specify which path style to use for external commands. | |
1190 | |
1191 Valid values are: | |
1192 | |
1193 windows Windows 9x/NT style (\\) | |
1194 | |
1195 unix Unix style (/)" | |
1196 :type '(choice :tag "Path style" | |
1197 (const :tag "Windows 9x/NT Style (\\)" :value windows) | |
1198 (const :tag "Unix Style (/)" :value unix)) | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1199 :version "20" |
49646 | 1200 :group 'printing) |
1201 | |
1202 | |
1203 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
1204 ;; Internal Functions (I) | |
1205 | |
1206 | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
1207 (defun pr-dosify-file-name (path) |
49646 | 1208 "Replace unix-style directory separator character with dos/windows one." |
1209 (interactive "sPath: ") | |
1210 (if (eq pr-path-style 'windows) | |
1211 (subst-char-in-string ?/ ?\\ path) | |
1212 path)) | |
1213 | |
1214 | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
1215 (defun pr-unixify-file-name (path) |
49646 | 1216 "Replace dos/windows-style directory separator character with unix one." |
1217 (interactive "sPath: ") | |
1218 (if (eq pr-path-style 'windows) | |
1219 (subst-char-in-string ?\\ ?/ path) | |
1220 path)) | |
1221 | |
1222 | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
1223 (defun pr-standard-file-name (path) |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
1224 "Ensure the proper directory separator depending on the OS. |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
1225 That is, if Emacs is running on DOS/Windows, ensure dos/windows-style directory |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
1226 separator; otherwise, ensure unix-style directory separator." |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
1227 (if (or pr-cygwin-system ps-windows-system) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
1228 (subst-char-in-string ?/ ?\\ path) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
1229 (subst-char-in-string ?\\ ?/ path))) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
1230 |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
1231 |
49646 | 1232 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
1233 ;; User Interface (II) | |
1234 | |
1235 | |
1236 (defcustom pr-path-alist | |
1237 '((unix PATH) | |
1238 (cygwin PATH) | |
1239 (windows PATH)) | |
1240 "*Specify an alist for command paths. | |
1241 | |
1242 It's used to find commands used for printing package, like gv, gs, gsview.exe, | |
1243 mpage, print.exe, etc. See also `pr-command' function. | |
1244 | |
1245 Each element has the form: | |
1246 | |
1247 (ENTRY DIRECTORY...) | |
1248 | |
1249 Where: | |
1250 | |
1251 ENTRY It's a symbol, used to identify this entry. | |
1252 There must exist at least one of the following entries: | |
1253 | |
1254 unix this entry is used when Emacs is running on GNU or | |
1255 Unix system. | |
1256 | |
1257 cygwin this entry is used when Emacs is running on Windows | |
1258 95/98/NT/2000 with Cygwin. | |
1259 | |
1260 windows this entry is used when Emacs is running on Windows | |
1261 95/98/NT/2000. | |
1262 | |
1263 DIRECTORY It should be a string or a symbol. If it's a symbol, it should | |
1264 exist an equal entry in `pr-path-alist'. If it's a string, | |
1265 it's considered a directory specification. | |
1266 | |
1267 The directory specification may contain: | |
1268 $var environment variable expansion | |
1269 ~/ tilde expansion | |
1270 ./ current directory | |
1271 ../ previous directory | |
1272 | |
1273 For example, let's say the home directory is /home/my and the | |
1274 current directory is /home/my/dir, so: | |
1275 | |
1276 THE ENTRY IS EXPANDED TO | |
1277 ~/entry /home/my/entry | |
1278 ./entry /home/my/dir/entry | |
1279 ../entry /home/my/entry | |
1280 $HOME/entry /home/my/entry | |
1281 $HOME/~/other/../my/entry /home/my/entry | |
1282 | |
1283 SPECIAL SYMBOL: If the symbol `PATH' is used in the directory | |
1284 list and there isn't a `PATH' entry in `pr-path-alist' or the | |
1285 `PATH' entry has a null directory list, the PATH environment | |
1286 variable is used. | |
1287 | |
1288 Examples: | |
1289 | |
1290 * On GNU or Unix system: | |
1291 | |
1292 '((unix \".\" \"~/bin\" ghostview mpage PATH) | |
1293 (ghostview \"$HOME/bin/gsview-dir\") | |
1294 (mpage \"$HOME/bin/mpage-dir\") | |
1295 ) | |
1296 | |
1297 * On Windows system: | |
1298 | |
1299 '((windows \"c:/applications/executables\" PATH ghostview mpage) | |
1300 (ghostview \"c:/gs/gsview-dir\") | |
1301 (mpage \"c:/mpage-dir\") | |
1302 )" | |
1303 :type '(repeat | |
1304 (cons :tag "" | |
1305 (symbol :tag "Identifier ") | |
1306 (repeat :tag "Directory List" | |
1307 (choice :menu-tag "Directory" | |
1308 :tag "Directory" | |
1309 (string :value "") | |
1310 (symbol :value symbol))))) | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1311 :version "20" |
49646 | 1312 :group 'printing) |
1313 | |
1314 | |
1315 (defcustom pr-txt-name 'default | |
1316 "*Specify a printer for printing a text file. | |
1317 | |
1318 The printer name symbol should be defined on `pr-txt-printer-alist' (see it for | |
1319 documentation). | |
1320 | |
1321 This variable should be modified by customization engine. If this variable is | |
1322 modified by other means (for example, a lisp function), use `pr-update-menus' | |
1323 function (see it for documentation) to update text printer menu." | |
1324 :type 'symbol | |
1325 :set 'pr-txt-name-custom-set | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1326 :version "20" |
49646 | 1327 :group 'printing) |
1328 | |
1329 | |
1330 (defcustom pr-txt-printer-alist | |
1331 (list (list 'default lpr-command nil | |
1332 (cond ((boundp 'printer-name) printer-name) | |
1333 (ps-windows-system "PRN") | |
1334 (t nil) | |
1335 ))) | |
1336 ;; Examples: | |
1337 ;; * On GNU or Unix system: | |
1338 ;; '((prt_06a "lpr" nil "prt_06a") | |
1339 ;; (prt_07c nil nil "prt_07c") | |
1340 ;; ) | |
1341 ;; * On Windows system: | |
1342 ;; '((prt_06a "print" nil "/D:\\\\printers\\prt_06a") | |
1343 ;; (prt_07c nil nil "/D:\\\\printers\\prt_07c") | |
1344 ;; (PRN "" nil "PRN") | |
1345 ;; (standard "redpr.exe" nil "") | |
1346 ;; ) | |
1347 "*Specify an alist of all text printers (text printer database). | |
1348 | |
1349 The alist element has the form: | |
1350 | |
1351 (SYMBOL COMMAND SWITCHES NAME) | |
1352 | |
1353 Where: | |
1354 | |
1355 SYMBOL It's a symbol to identify a text printer. It's for | |
1356 `pr-txt-name' variable setting and for menu selection. | |
1357 Examples: | |
1358 'prt_06a | |
1359 'my_printer | |
1360 | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1361 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
|
1362 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
|
1363 will write directly to the printer port given by NAME (see text |
49646 | 1364 below), that is, the NAME should be something like \"PRN\" or |
1365 \"LPT1:\". | |
1366 If NAME is something like \"\\\\\\\\host\\\\share-name\" then | |
1367 COMMAND shouldn't be an empty string. | |
1368 The programs `print' and `nprint' (the standard print programs | |
1369 on Windows NT and Novell Netware respectively) are handled | |
1370 specially, using NAME as the destination for output; any other | |
1371 program is treated like `lpr' except that an explicit filename | |
1372 is given as the last argument. | |
1373 If COMMAND is nil, it's used the default printing program: | |
1374 `print' for Windows system, `lp' for lp system and `lpr' for | |
1375 all other systems. See also `pr-path-alist'. | |
1376 Examples: | |
1377 \"print\" | |
1378 \"lpr\" | |
1379 \"lp\" | |
1380 | |
1381 SWITCHES List of sexp's to pass as extra options for text printer | |
1382 program. It is recommended to set NAME (see text below) | |
1383 instead of including an explicit switch on this list. | |
1384 Example: | |
1385 . for lpr | |
1386 '(\"-#3\" \"-l\") | |
1387 nil | |
1388 | |
1389 NAME A string that specifies a text printer name. | |
1390 On Unix-like systems, a string value should be a name | |
1391 understood by lpr's -P option (or lp's -d option). | |
1392 On MS-DOS and MS-Windows systems, it is the name of a printer | |
1393 device or port. Typical non-default settings would be \"LPT1:\" | |
1394 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or | |
1395 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\" | |
1396 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network | |
1397 printer. You can also set it to a name of a file, in which | |
1398 case the output gets appended to that file. If you want to | |
1399 discard the printed output, set this to \"NUL\". | |
1400 Examples: | |
1401 . for print.exe | |
1402 \"/D:\\\\\\\\host\\\\share-name\" | |
1403 \"LPT1:\" | |
1404 \"PRN\" | |
1405 | |
1406 . for lpr or lp | |
1407 \"share-name\" | |
1408 | |
1409 This variable should be modified by customization engine. If this variable is | |
1410 modified by other means (for example, a lisp function), use `pr-update-menus' | |
1411 function (see it for documentation) to update text printer menu. | |
1412 | |
1413 Examples: | |
1414 | |
1415 * On GNU or Unix system: | |
1416 | |
1417 '((prt_06a \"lpr\" nil \"prt_06a\") | |
1418 (prt_07c nil nil \"prt_07c\") | |
1419 ) | |
1420 | |
1421 * On Windows system: | |
1422 | |
1423 '((prt_06a \"print\" nil \"/D:\\\\\\\\printers\\\\prt_06a\") | |
1424 (prt_07c nil nil \"/D:\\\\\\\\printers\\\\prt_07c\") | |
1425 (PRN \"\" nil \"PRN\") | |
1426 (standard \"redpr.exe\" nil \"\") | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1427 ) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1428 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1429 Useful links: |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1430 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1431 * Information about the print command (print.exe) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1432 `http://www.computerhope.com/printhlp.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1433 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1434 * RedMon - Redirection Port Monitor (redpr.exe) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1435 `http://www.cs.wisc.edu/~ghost/redmon/index.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1436 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1437 * Redirection Port Monitor (redpr.exe on-line help) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1438 `http://www.cs.wisc.edu/~ghost/redmon/en/redmon.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1439 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1440 * UNIX man pages: lpr (or type `man lpr') |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1441 `http://bama.ua.edu/cgi-bin/man-cgi?lpr' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1442 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lpr' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1443 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1444 * UNIX man pages: lp (or type `man lp') |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1445 `http://bama.ua.edu/cgi-bin/man-cgi?lp' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1446 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lp' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1447 " |
49646 | 1448 :type '(repeat |
1449 (list :tag "Text Printer" | |
1450 (symbol :tag "Printer Symbol Name") | |
1451 (string :tag "Printer Command") | |
1452 (repeat :tag "Printer Switches" | |
1453 (sexp :tag "Switch" :value "")) | |
1454 (choice :menu-tag "Printer Name" | |
1455 :tag "Printer Name" | |
1456 (const :tag "None" nil) | |
1457 string))) | |
1458 :set 'pr-alist-custom-set | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1459 :version "20" |
49646 | 1460 :group 'printing) |
1461 | |
1462 | |
1463 (defcustom pr-ps-name 'default | |
1464 "*Specify a printer for printing a PostScript file. | |
1465 | |
1466 This printer name symbol should be defined on `pr-ps-printer-alist' (see it for | |
1467 documentation). | |
1468 | |
1469 This variable should be modified by customization engine. If this variable is | |
1470 modified by other means (for example, a lisp function), use `pr-update-menus' | |
1471 function (see it for documentation) to update PostScript printer menu." | |
1472 :type 'symbol | |
1473 :set 'pr-ps-name-custom-set | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1474 :version "20" |
49646 | 1475 :group 'printing) |
1476 | |
1477 | |
1478 (defcustom pr-ps-printer-alist | |
1479 (list (list 'default lpr-command nil | |
1480 (cond (ps-windows-system nil) | |
1481 (ps-lp-system "-d") | |
1482 (t "-P")) | |
1483 (or (getenv "PRINTER") (getenv "LPDEST") ps-printer-name))) | |
1484 ;; Examples: | |
1485 ;; * On GNU or Unix system: | |
1486 ;; '((lps_06b "lpr" nil "-P" "lps_06b") | |
1487 ;; (lps_07c "lpr" nil nil "lps_07c") | |
1488 ;; (lps_08c nil nil nil "lps_08c") | |
1489 ;; ) | |
1490 ;; * On Windows system: | |
1491 ;; '((lps_06a "print" nil "/D:" "\\\\printers\\lps_06a") | |
1492 ;; (lps_06b "print" nil nil "\\\\printers\\lps_06b") | |
1493 ;; (lps_07c "print" nil "" "/D:\\\\printers\\lps_07c") | |
1494 ;; (lps_08c nil nil nil "\\\\printers\\lps_08c") | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1495 ;; (b/w "gsprint" ("-all" "-twoup") "-printer " "b/w-pr-name") |
49646 | 1496 ;; (LPT1 "" nil "" "LPT1:") |
1497 ;; (PRN "" nil "" "PRN") | |
1498 ;; (standard "redpr.exe" nil "" "") | |
1499 ;; ) | |
1500 "*Specify an alist for all PostScript printers (PostScript printer database). | |
1501 | |
1502 The alist element has the form: | |
1503 | |
1504 (SYMBOL COMMAND SWITCHES PRINTER-SWITCH NAME DEFAULT...) | |
1505 | |
1506 Where: | |
1507 | |
1508 SYMBOL It's a symbol to identify a PostScript printer. It's for | |
1509 `pr-ps-name' variable setting and for menu selection. | |
1510 Examples: | |
1511 'prt_06a | |
1512 'my_printer | |
1513 | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1514 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
|
1515 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
|
1516 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
|
1517 (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
|
1518 \"PRN\" or \"LPT1:\". |
49646 | 1519 If NAME is something like \"\\\\\\\\host\\\\share-name\" then |
1520 COMMAND shouldn't be an empty string. | |
1521 The programs `print' and `nprint' (the standard print programs | |
1522 on Windows NT and Novell Netware respectively) are handled | |
1523 specially, using NAME as the destination for output; any other | |
1524 program is treated like `lpr' except that an explicit filename | |
1525 is given as the last argument. | |
1526 If COMMAND is nil, it's used the default printing program: | |
1527 `print' for Windows system, `lp' for lp system and `lpr' for | |
1528 all other systems. See also `pr-path-alist'. | |
1529 Examples: | |
1530 \"print\" | |
1531 \"lpr\" | |
1532 \"lp\" | |
1533 \"cp\" | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1534 \"gsprint\" |
49646 | 1535 |
1536 SWITCHES List of sexp's to pass as extra options for PostScript printer | |
1537 program. It is recommended to set NAME (see text below) | |
1538 instead of including an explicit switch on this list. | |
1539 Example: | |
1540 . for lpr | |
1541 '(\"-#3\" \"-l\") | |
1542 nil | |
1543 | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1544 . for gsprint.exe |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1545 '(\"-all\" \"-twoup\") |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1546 |
49646 | 1547 PRINTER-SWITCH A string that specifies PostScript printer name switch. If |
1548 it's necessary to have a space between PRINTER-SWITCH and NAME, | |
1549 it should be inserted at the end of PRINTER-SWITCH string. | |
1550 If PRINTER-SWITCH is nil, it's used the default printer name | |
1551 switch: `/D:' for Windows system, `-d' for lp system and `-P' | |
1552 for all other systems. | |
1553 Examples: | |
1554 . for lpr | |
1555 \"-P \" | |
1556 | |
1557 . for lp | |
1558 \"-d \" | |
1559 | |
1560 . for print.exe | |
1561 \"/D:\" | |
1562 | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1563 . for gsprint.exe |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1564 \"-printer \" |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1565 |
49646 | 1566 NAME A string that specifies a PostScript printer name. |
1567 On Unix-like systems, a string value should be a name | |
1568 understood by lpr's -P option (or lp's -d option). | |
1569 On MS-DOS and MS-Windows systems, it is the name of a printer | |
1570 device or port. Typical non-default settings would be \"LPT1:\" | |
1571 to \"LPT3:\" for parallel printers, or \"COM1\" to \"COM4\" or | |
1572 \"AUX\" for serial printers, or \"\\\\\\\\hostname\\\\printer\" | |
1573 (or \"/D:\\\\\\\\hostname\\\\printer\") for a shared network | |
1574 printer. You can also set it to a name of a file, in which | |
1575 case the output gets appended to that file. If you want to | |
1576 discard the printed output, set this to \"NUL\". | |
1577 Examples: | |
1578 . for cp.exe | |
1579 \"\\\\\\\\host\\\\share-name\" | |
1580 | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1581 . for print.exe or gsprint.exe |
49646 | 1582 \"/D:\\\\\\\\host\\\\share-name\" |
1583 \"\\\\\\\\host\\\\share-name\" | |
1584 \"LPT1:\" | |
1585 \"PRN\" | |
1586 | |
1587 . for lpr or lp | |
1588 \"share-name\" | |
1589 | |
1590 DEFAULT It's a way to set default values when this entry is selected. | |
1591 It's a cons like: | |
1592 | |
1593 (VARIABLE . VALUE) | |
1594 | |
1595 That associates VARIABLE with VALUE. when this entry is | |
1596 selected, it's executed the following command: | |
1597 | |
1598 (set VARIABLE (eval VALUE)) | |
1599 | |
1600 Note that VALUE can be any valid lisp expression. So, don't | |
1601 forget to quote symbols and constant lists. | |
1602 If VARIABLE is the special keyword `inherits-from:', VALUE must | |
1603 be a symbol name setting defined in `pr-setting-database' from | |
1604 which the current setting inherits the context. Take care with | |
1605 circular inheritance. | |
1606 Examples: | |
1607 '(ps-landscape-mode . nil) | |
1608 '(ps-spool-duplex . t) | |
1609 '(pr-gs-device . (my-gs-device t)) | |
1610 | |
1611 This variable should be modified by customization engine. If this variable is | |
1612 modified by other means (for example, a lisp function), use `pr-update-menus' | |
1613 function (see it for documentation) to update PostScript printer menu. | |
1614 | |
1615 Examples: | |
1616 | |
1617 * On GNU or Unix system: | |
1618 | |
1619 '((lps_06b \"lpr\" nil \"-P\" \"lps_06b\") | |
1620 (lps_07c \"lpr\" nil nil \"lps_07c\") | |
1621 (lps_08c nil nil nil \"lps_08c\") | |
1622 ) | |
1623 | |
1624 * On Windows system: | |
1625 | |
1626 '((lps_06a \"print\" nil \"/D:\" \"\\\\\\\\printers\\\\lps_06a\") | |
1627 (lps_06b \"print\" nil nil \"\\\\\\\\printers\\\\lps_06b\") | |
1628 (lps_07c \"print\" nil \"\" \"/D:\\\\\\\\printers\\\\lps_07c\") | |
1629 (lps_08c nil nil nil \"\\\\\\\\printers\\\\lps_08c\") | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1630 (b/w1 \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"b/w-pr-name\") |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1631 (b/w2 \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer \\\\\\\\printers\\\\lps_06a\") |
49646 | 1632 (LPT1 \"\" nil \"\" \"LPT1:\") |
1633 (PRN \"\" nil \"\" \"PRN\") | |
1634 (standard \"redpr.exe\" nil \"\" \"\") | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1635 ) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1636 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1637 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1638 gsprint: |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1639 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1640 You can use gsprint instead of ghostscript to print monochrome PostScript files |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1641 in Windows. The gsprint utility documentation says that it is more efficient |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1642 than ghostscript to print monochrome PostScript. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1643 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1644 To print non-monochrome PostScript file, the efficiency of ghostscript is |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1645 similar to gsprint. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1646 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1647 Also the gsprint utility comes together with gsview distribution. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1648 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1649 As an example of gsprint declaration: |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1650 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1651 (setq pr-ps-printer-alist |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1652 '((A \"gsprint\" (\"-all\" \"-twoup\") \"-printer \" \"lps_015\") |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1653 (B \"gsprint\" (\"-all\" \"-twoup\") nil \"-printer lps_015\") |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1654 ;; some other printer declaration |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1655 )) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1656 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1657 The example above declares that printer A prints all pages (-all) and two pages |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1658 per sheet (-twoup). The printer B declaration does the same as the printer A |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1659 declaration, the only difference is the printer name selection. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1660 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1661 There are other command line options like: |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1662 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1663 -mono Render in monochrome as 1bit/pixel (only black and white). |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1664 -grey Render in greyscale as 8bits/pixel. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1665 -color Render in color as 24bits/pixel. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1666 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1667 The default is `-mono'. So, printer A and B in the example above are using |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1668 implicitly the `-mono' option. Note that in `-mono' no gray tone or color is |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1669 printed, this includes the zebra stripes, that is, in `-mono' the zebra stripes |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1670 are not printed. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1671 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1672 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1673 Useful links: |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1674 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1675 * GSPRINT - Ghostscript print to Windows printer |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1676 `http://www.cs.wisc.edu/~ghost/gsview/gsprint.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1677 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1678 * Introduction to Ghostscript |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1679 `http://www.cs.wisc.edu/~ghost/doc/intro.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1680 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1681 * How to use Ghostscript |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1682 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1683 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1684 * Information about the print command (print.exe) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1685 `http://www.computerhope.com/printhlp.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1686 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1687 * RedMon - Redirection Port Monitor (redpr.exe) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1688 `http://www.cs.wisc.edu/~ghost/redmon/index.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1689 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1690 * Redirection Port Monitor (redpr.exe on-line help) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1691 `http://www.cs.wisc.edu/~ghost/redmon/en/redmon.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1692 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1693 * UNIX man pages: lpr (or type `man lpr') |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1694 `http://bama.ua.edu/cgi-bin/man-cgi?lpr' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1695 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lpr' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1696 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1697 * UNIX man pages: lp (or type `man lp') |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1698 `http://bama.ua.edu/cgi-bin/man-cgi?lp' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1699 `http://www.mediacollege.com/cgi-bin/man/page.cgi?section=all&topic=lp' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1700 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1701 * GNU utilities for Win32 (cp.exe) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1702 `http://unxutils.sourceforge.net/' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1703 " |
49646 | 1704 :type '(repeat |
1705 (list | |
1706 :tag "PostScript Printer" | |
1707 (symbol :tag "Printer Symbol Name") | |
1708 (string :tag "Printer Command") | |
1709 (repeat :tag "Printer Switches" | |
1710 (sexp :tag "Switch" :value "")) | |
1711 (choice :menu-tag "Printer Name Switch" | |
1712 :tag "Printer Name Switch" | |
1713 (const :tag "None" nil) | |
1714 string) | |
1715 (choice :menu-tag "Printer Name" | |
1716 :tag "Printer Name" | |
1717 (const :tag "None" nil) | |
1718 string) | |
1719 (repeat | |
1720 :tag "Default Value List" | |
1721 :inline t | |
1722 (cons | |
1723 :tag "" | |
1724 (choice | |
1725 :menu-tag "Variable" | |
1726 :tag "Variable" | |
1727 (const :tag "Landscape" ps-landscape-mode) | |
1728 (const :tag "Print Header" ps-print-header) | |
1729 (const :tag "Print Header Frame" ps-print-header-frame) | |
1730 (const :tag "Line Number" ps-line-number) | |
1731 (const :tag "Zebra Stripes" ps-zebra-stripes) | |
1732 (const :tag "Duplex" ps-spool-duplex) | |
1733 (const :tag "Tumble" ps-spool-tumble) | |
1734 (const :tag "Upside-Down" ps-print-upside-down) | |
1735 (const :tag "PS File Landscape" pr-file-landscape) | |
1736 (const :tag "PS File Duplex" pr-file-duplex) | |
1737 (const :tag "PS File Tumble" pr-file-tumble) | |
1738 (const :tag "Auto Region" pr-auto-region) | |
1739 (const :tag "Auto Mode" pr-auto-mode) | |
1740 (const :tag "Ghostscript Device" pr-gs-device) | |
1741 (const :tag "Ghostscript Resolution" pr-gs-resolution) | |
1742 (const :tag "inherits-from:" inherits-from:) | |
1743 (variable :tag "Other")) | |
1744 (sexp :tag "Value"))) | |
1745 )) | |
1746 :set 'pr-alist-custom-set | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1747 :version "20" |
49646 | 1748 :group 'printing) |
1749 | |
1750 | |
1751 (defcustom pr-temp-dir | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
1752 (pr-dosify-file-name |
49646 | 1753 (if (boundp 'temporary-file-directory) |
1754 (symbol-value 'temporary-file-directory) | |
1755 ;; hacked from `temporary-file-directory' variable in files.el | |
1756 (file-name-as-directory | |
1757 (or (getenv "TMPDIR") (getenv "TMP") (getenv "TEMP") | |
1758 (cond (ps-windows-system "c:/temp") | |
1759 ((memq system-type '(vax-vms axp-vms)) "SYS$SCRATCH:") | |
1760 (t "/tmp") | |
1761 ))))) | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1762 "*Specify a directory for temporary files during printing. |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1763 |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1764 See also `pr-ps-temp-file' and `pr-file-modes'." |
49646 | 1765 :type '(directory :tag "Temporary Directory") |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1766 :version "20" |
49646 | 1767 :group 'printing) |
1768 | |
1769 | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1770 (defcustom pr-ps-temp-file "prspool-" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1771 "*Specify PostScript temporary file name prefix. |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1772 |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1773 See also `pr-temp-dir' and `pr-file-modes'." |
49646 | 1774 :type '(file :tag "PostScript Temporary File Name") |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
1775 :version "21" |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1776 :group 'printing) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1777 |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1778 |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1779 ;; It uses 0600 as default instead of (default-file-modes). |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1780 ;; So, by default, only the session owner have permission to deal with files |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1781 ;; generated by `printing'. |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1782 (defcustom pr-file-modes ?\600 |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1783 "*Specify the file permission bits for newly created files. |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1784 |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1785 It should be an integer; only the low 9 bits are used. |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1786 |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1787 See also `pr-temp-dir' and `pr-ps-temp-file'." |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1788 :type '(integer :tag "File Permission Bits") |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1789 :version "21.3" |
49646 | 1790 :group 'printing) |
1791 | |
1792 | |
1793 (defcustom pr-gv-command | |
1794 (if ps-windows-system | |
1795 "gsview32.exe" | |
1796 "gv") | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1797 "*Specify path and name of the gsview/gv utility. |
49646 | 1798 |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1799 See also `pr-path-alist'. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1800 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1801 Useful links: |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1802 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1803 * GNU gv manual |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1804 `http://www.gnu.org/software/gv/manual/gv.html' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1805 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1806 * GSview Help |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1807 `http://www.cs.wisc.edu/~ghost/gsview/gsviewen.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1808 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1809 * GSview Help - Common Problems |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1810 `http://www.cs.wisc.edu/~ghost/gsview/gsviewen.htm#Common_Problems' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1811 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1812 * GSview Readme (compilation & installation) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1813 `http://www.cs.wisc.edu/~ghost/gsview/Readme.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1814 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1815 * GSview (main site) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1816 `http://www.cs.wisc.edu/~ghost/gsview/index.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1817 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1818 * Ghostscript, Ghostview and GSview |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1819 `http://www.cs.wisc.edu/~ghost/' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1820 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1821 * Ghostview |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1822 `http://www.cs.wisc.edu/~ghost/gv/index.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1823 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1824 * gv 3.5, June 1997 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1825 `http://www.cs.wisc.edu/~ghost/gv/gv_doc/gv.html' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1826 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1827 * MacGSView (MacOS) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1828 `http://www.cs.wisc.edu/~ghost/macos/index.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1829 " |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1830 :type '(string :tag "Ghostview Utility") |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1831 :version "20" |
49646 | 1832 :group 'printing) |
1833 | |
1834 | |
1835 (defcustom pr-gs-command | |
1836 (if ps-windows-system | |
1837 "gswin32.exe" | |
1838 "gs") | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1839 "*Specify path and name of the ghostscript utility. |
49646 | 1840 |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1841 See also `pr-path-alist'. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1842 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1843 Useful links: |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1844 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1845 * Ghostscript, Ghostview and GSview |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1846 `http://www.cs.wisc.edu/~ghost/' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1847 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1848 * Introduction to Ghostscript |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1849 `http://www.cs.wisc.edu/~ghost/doc/intro.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1850 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1851 * How to use Ghostscript |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1852 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1853 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1854 * Printer compatibility |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1855 `http://www.cs.wisc.edu/~ghost/doc/printer.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1856 " |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1857 :type '(string :tag "Ghostscript Utility") |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1858 :version "20" |
49646 | 1859 :group 'printing) |
1860 | |
1861 | |
1862 (defcustom pr-gs-switches | |
1863 (if ps-windows-system | |
1864 '("-q -dNOPAUSE -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts") | |
1865 '("-q -dNOPAUSE -I/usr/share/ghostscript/5.10")) | |
1866 "*Specify ghostscript switches. See the documentation on GS for more info. | |
1867 | |
1868 It's a list of strings, where each string is one or more ghostscript switches. | |
1869 | |
1870 A note on the gs switches: | |
1871 | |
1872 -q quiet | |
1873 -dNOPAUSE don't wait for user intervention | |
1874 -Ic:/gs/gs5.50;c:/gs/gs5.50/fonts the directories needed for gs | |
1875 -c quit it's added at the end to terminate gs | |
1876 | |
1877 To see ghostscript documentation for more information: | |
1878 | |
1879 * On GNU or Unix system: | |
1880 - for full documentation, type: man gs | |
1881 - for brief documentation, type: gs -h | |
1882 | |
1883 * On Windows system: | |
1884 - for full documentation, see in a browser the file | |
1885 c:/gstools/gs5.50/index.html, that is, the file index.html which is | |
1886 located in the same directory as gswin32.exe. | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1887 - for brief documentation, type: gswin32.exe -h |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1888 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1889 Useful links: |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1890 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1891 * Introduction to Ghostscript |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1892 `http://www.cs.wisc.edu/~ghost/doc/intro.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1893 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1894 * How to use Ghostscript |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1895 `http://www.cs.wisc.edu/~ghost/doc/cvs/Use.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1896 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1897 * Printer compatibility |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1898 `http://www.cs.wisc.edu/~ghost/doc/printer.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
1899 " |
49646 | 1900 :type '(repeat (string :tag "Ghostscript Switch")) |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1901 :version "20" |
49646 | 1902 :group 'printing) |
1903 | |
1904 | |
1905 (defcustom pr-gs-device | |
1906 (if ps-windows-system | |
1907 "mswinpr2" | |
1908 "uniprint") | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
1909 "*Specify the ghostscript device switch value (-sDEVICE=). |
49646 | 1910 |
1911 A note on the gs switches: | |
1912 | |
1913 -sDEVICE=djet500 the printer - works with HP DeskJet 540 | |
1914 | |
1915 See `pr-gs-switches' for documentation. | |
1916 See also `pr-ps-printer-alist'." | |
1917 :type '(string :tag "Ghostscript Device") | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1918 :version "20" |
49646 | 1919 :group 'printing) |
1920 | |
1921 | |
1922 (defcustom pr-gs-resolution 300 | |
1923 "*Specify ghostscript resolution switch value (-r). | |
1924 | |
1925 A note on the gs switches: | |
1926 | |
1927 -r300 resolution 300x300 | |
1928 | |
1929 See `pr-gs-switches' for documentation. | |
1930 See also `pr-ps-printer-alist'." | |
1931 :type '(integer :tag "Ghostscript Resolution") | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1932 :version "20" |
49646 | 1933 :group 'printing) |
1934 | |
1935 | |
1936 (defcustom pr-print-using-ghostscript nil | |
1937 "*Non-nil means print using ghostscript. | |
1938 | |
1939 This is useful if you don't have a PostScript printer, so you could use the | |
1940 ghostscript to print a PostScript file. | |
1941 | |
1942 In GNU or Unix system, if ghostscript is set as a PostScript filter, this | |
1943 variable should be nil." | |
1944 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1945 :version "20" |
49646 | 1946 :group 'printing) |
1947 | |
1948 | |
1949 (defcustom pr-faces-p nil | |
1950 "*Non-nil means print with face attributes." | |
1951 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1952 :version "20" |
49646 | 1953 :group 'printing) |
1954 | |
1955 | |
1956 (defcustom pr-spool-p nil | |
1957 "*Non-nil means spool printing in a buffer." | |
1958 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1959 :version "20" |
49646 | 1960 :group 'printing) |
1961 | |
1962 | |
1963 (defcustom pr-file-landscape nil | |
1964 "*Non-nil means print PostScript file in landscape orientation." | |
1965 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1966 :version "20" |
49646 | 1967 :group 'printing) |
1968 | |
1969 | |
1970 (defcustom pr-file-duplex nil | |
1971 "*Non-nil means print PostScript file in duplex mode." | |
1972 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1973 :version "20" |
49646 | 1974 :group 'printing) |
1975 | |
1976 | |
1977 (defcustom pr-file-tumble nil | |
1978 "*Non-nil means print PostScript file in tumble mode. | |
1979 | |
1980 If tumble is off, produces a printing suitable for binding on the left or | |
1981 right. | |
1982 If tumble is on, produces a printing suitable for binding at the top or | |
1983 bottom." | |
1984 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1985 :version "20" |
49646 | 1986 :group 'printing) |
1987 | |
1988 | |
1989 (defcustom pr-auto-region t | |
1990 "*Non-nil means region is automagically detected. | |
1991 | |
1992 Note that this will only work if you're using transient mark mode. | |
1993 | |
1994 When this variable is non-nil, the `*-buffer*' commands will behave like | |
1995 `*-region*' commands, that is, `*-buffer*' commands will print only the region | |
1996 marked instead of all buffer." | |
1997 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
1998 :version "20" |
49646 | 1999 :group 'printing) |
2000 | |
2001 | |
2002 (defcustom pr-auto-mode t | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2003 "*Non-nil means major-mode specific printing is prefered over normal printing. |
49646 | 2004 |
2005 That is, if current major-mode is declared in `pr-mode-alist', the `*-buffer*' | |
2006 and `*-region*' commands will behave like `*-mode*' commands; otherwise, | |
2007 `*-buffer*' commands will print the current buffer and `*-region*' commands | |
2008 will print the current region." | |
2009 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2010 :version "20" |
49646 | 2011 :group 'printing) |
2012 | |
2013 | |
2014 (defcustom pr-mode-alist | |
2015 '((mh-folder-mode ; mh summary buffer | |
2016 pr-mh-lpr-1 pr-mh-print-1 | |
2017 2 | |
2018 (ps-article-author ps-article-subject) | |
2019 ("/pagenumberstring load" pr-article-date) | |
2020 nil | |
2021 ) | |
2022 (mh-letter-mode ; mh letter buffer | |
2023 pr-mh-lpr-2 pr-mh-print-2 | |
2024 2 | |
2025 (ps-article-author ps-article-subject) | |
2026 ("/pagenumberstring load" pr-article-date) | |
2027 nil | |
2028 ) | |
2029 (rmail-summary-mode ; rmail summary buffer | |
2030 pr-rmail-lpr pr-rmail-print | |
2031 3 | |
2032 (ps-article-subject ps-article-author buffer-name) | |
2033 nil | |
2034 nil | |
2035 ) | |
2036 (rmail-mode ; rmail buffer | |
2037 pr-rmail-lpr pr-rmail-print | |
2038 3 | |
2039 (ps-article-subject ps-article-author buffer-name) | |
2040 nil | |
2041 nil | |
2042 ) | |
2043 (gnus-summary-mode ; gnus summary buffer | |
2044 pr-gnus-lpr pr-gnus-print | |
2045 3 | |
2046 (ps-article-subject ps-article-author gnus-newsgroup-name) | |
2047 nil | |
2048 nil | |
2049 ) | |
2050 (gnus-article-mode ; gnus article buffer | |
2051 pr-gnus-lpr pr-gnus-print | |
2052 3 | |
2053 (ps-article-subject ps-article-author gnus-newsgroup-name) | |
2054 nil | |
2055 nil | |
2056 ) | |
2057 (Info-mode ; Info buffer | |
2058 pr-mode-lpr pr-mode-print | |
2059 2 | |
2060 (ps-info-node ps-info-file) | |
2061 nil | |
2062 nil | |
2063 ) | |
2064 (vm-mode ; vm mode | |
2065 pr-vm-lpr pr-vm-print | |
2066 3 | |
2067 (ps-article-subject ps-article-author buffer-name) | |
2068 nil | |
2069 nil | |
2070 ) | |
2071 ) | |
2072 "*Specify an alist for a major-mode and printing functions. | |
2073 | |
2074 To customize a major mode printing, just declare the customization in | |
2075 `pr-mode-alist' and invoke some of `*-mode*' commands. An example for major | |
2076 mode usage is when you're using gnus (or mh, or rmail, etc.) and you're in the | |
2077 *Summary* buffer, if you forget to switch to the *Article* buffer before | |
2078 printing, you'll get a nicely formatted list of article subjects shows up at | |
2079 the printer. With major mode printing you don't need to switch from gnus | |
2080 *Summary* buffer first. | |
2081 | |
2082 The elements have the following form: | |
2083 | |
2084 (MAJOR-MODE | |
2085 LPR-PRINT PS-PRINT | |
2086 HEADER-LINES | |
2087 LEFT-HEADER | |
2088 RIGHT-HEADER | |
2089 KILL-LOCAL-VARIABLE | |
2090 DEFAULT...) | |
2091 | |
2092 Where: | |
2093 | |
2094 MAJOR-MODE It's the major mode symbol. | |
2095 | |
2096 LPR-PRINT It's a symbol function for text printing. It's invoked with | |
2097 one argument: | |
2098 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...). | |
2099 | |
2100 Usually LPR-PRINT function prepares the environment or buffer | |
2101 and then call the function `pr-mode-lpr' which it's used to | |
2102 process the buffer and send it to text printer. | |
2103 | |
2104 The `pr-mode-lpr' definition is: | |
2105 | |
2106 (pr-mode-lpr HEADER-LIST &optional FROM TO) | |
2107 | |
2108 Where HEADER-LIST is like the argument passed to LPR-PRINT. | |
2109 FROM and TO are the beginning and end markers, respectively, | |
2110 for a region. If FROM is nil, it's used (point-min); if TO is | |
2111 nil, it's used (point-max). | |
2112 | |
2113 PS-PRINT It's a symbol function for PostScript printing. It's invoked | |
2114 with 3 arguments: n-up printing, file name and the list: | |
2115 (HEADER-LINES LEFT-HEADER RIGHT-HEADER DEFAULT...). | |
2116 | |
2117 Usually PS-PRINT function prepares the environment or buffer | |
2118 and then call the function `pr-mode-print' which it's used to | |
2119 process the buffer and send it to PostScript printer. | |
2120 | |
2121 The `pr-mode-print' definition is: | |
2122 | |
2123 (pr-mode-print N-UP FILENAME HEADER-LIST &optional FROM TO) | |
2124 | |
2125 Where N-UP, FILENAME and HEADER-LIST are like the arguments | |
2126 passed to PS-PRINT. FROM and TO are the beginning and end | |
2127 markers, respectively, for a region. If TO is nil, it's used | |
2128 (point-max). | |
2129 | |
2130 HEADER-LINES It's the number of header lines; if is nil, it uses | |
2131 `ps-header-lines' value. | |
2132 | |
2133 LEFT-HEADER It's the left header part, it's a list of string, variable | |
2134 symbol or function symbol (with no argument); if is nil, it | |
2135 uses `ps-left-header' value. | |
2136 | |
2137 RIGHT-HEADER It's the right header part, it's a list of string, variable | |
2138 symbol or function symbol (with no argument); if is nil, it | |
2139 uses `ps-right-header' value. | |
2140 | |
2141 KILL-LOCAL-VARIABLE | |
2142 Non-nil means to kill all buffer local variable declared in | |
2143 DEFAULT (see below). | |
2144 | |
2145 DEFAULT It's a way to set default values when this entry is selected. | |
2146 It's a cons like: | |
2147 | |
2148 (VARIABLE-SYM . VALUE) | |
2149 | |
2150 That associates VARIABLE-SYM with VALUE. when this entry is | |
2151 selected, it's executed the following command: | |
2152 | |
2153 (set (make-local-variable VARIABLE-SYM) (eval VALUE)) | |
2154 | |
2155 Note that VALUE can be any valid lisp expression. So, don't | |
2156 forget to quote symbols and constant lists. | |
2157 If VARIABLE is the special keyword `inherits-from:', VALUE must | |
2158 be a symbol name setting defined in `pr-setting-database' from | |
2159 which the current setting inherits the context. Take care with | |
2160 circular inheritance. | |
2161 Examples: | |
2162 '(ps-landscape-mode . nil) | |
2163 '(ps-spool-duplex . t) | |
2164 '(pr-gs-device . (my-gs-device t))" | |
2165 :type '(repeat | |
2166 (list | |
2167 :tag "" | |
2168 (symbol :tag "Major Mode") | |
2169 (function :tag "Text Printing Function") | |
2170 (function :tag "PS Printing Function") | |
2171 (choice :menu-tag "Number of Header Lines" | |
2172 :tag "Number of Header Lines" | |
2173 (integer :tag "Number") | |
2174 (const :tag "Default Number" nil)) | |
2175 (repeat :tag "Left Header List" | |
2176 (choice :menu-tag "Left Header" | |
2177 :tag "Left Header" | |
2178 string symbol)) | |
2179 (repeat :tag "Right Header List" | |
2180 (choice :menu-tag "Right Header" | |
2181 :tag "Right Header" | |
2182 string symbol)) | |
2183 (boolean :tag "Kill Local Variable At End") | |
2184 (repeat | |
2185 :tag "Default Value List" | |
2186 :inline t | |
2187 (cons | |
2188 :tag "" | |
2189 (choice | |
2190 :menu-tag "Variable" | |
2191 :tag "Variable" | |
2192 (const :tag "Landscape" ps-landscape-mode) | |
2193 (const :tag "Print Header" ps-print-header) | |
2194 (const :tag "Print Header Frame" ps-print-header-frame) | |
2195 (const :tag "Line Number" ps-line-number) | |
2196 (const :tag "Zebra Stripes" ps-zebra-stripes) | |
2197 (const :tag "Duplex" ps-spool-duplex) | |
2198 (const :tag "Tumble" ps-spool-tumble) | |
2199 (const :tag "Upside-Down" ps-print-upside-down) | |
2200 (const :tag "PS File Landscape" pr-file-landscape) | |
2201 (const :tag "PS File Duplex" pr-file-duplex) | |
2202 (const :tag "PS File Tumble" pr-file-tumble) | |
2203 (const :tag "Auto Region" pr-auto-region) | |
2204 (const :tag "Auto Mode" pr-auto-mode) | |
2205 (const :tag "Ghostscript Device" pr-gs-device) | |
2206 (const :tag "Ghostscript Resolution" pr-gs-resolution) | |
2207 (const :tag "inherits-from:" inherits-from:) | |
2208 (variable :tag "Other")) | |
2209 (sexp :tag "Value"))) | |
2210 )) | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2211 :version "20" |
49646 | 2212 :group 'printing) |
2213 | |
2214 | |
2215 (defcustom pr-ps-utility 'mpage | |
2216 "*Specify PostScript utility symbol. | |
2217 | |
2218 This utility symbol should be defined on `pr-ps-utility-alist' (see it for | |
2219 documentation). | |
2220 | |
2221 This variable should be modified by customization engine. If this variable is | |
2222 modified by other means (for example, a lisp function), use `pr-update-menus' | |
2223 function (see it for documentation) to update PostScript utility menu. | |
2224 | |
2225 NOTE: Don't forget to download and install the utilities declared on | |
2226 `pr-ps-utility-alist'." | |
2227 :type '(symbol :tag "PS File Utility") | |
2228 :set 'pr-ps-utility-custom-set | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2229 :version "20" |
49646 | 2230 :group 'printing) |
2231 | |
2232 | |
2233 (defcustom pr-ps-utility-alist | |
2234 '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil) | |
2235 (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil | |
2236 (inherits-from: . no-duplex)) | |
2237 ) | |
2238 ;; Examples: | |
2239 ;; * On GNU or Unix system: | |
2240 ;; '((mpage "mpage" nil "-b%s" "-%d" "-l" "-t" "-T" ">" nil) | |
2241 ;; (psnup "psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil | |
2242 ;; (pr-file-duplex . nil) (pr-file-tumble . nil)) | |
2243 ;; ) | |
2244 ;; * On Windows system: | |
2245 ;; '((psnup "c:/psutils/psnup" ("-q") "-P%s" "-%d" "-l" nil nil " " nil | |
2246 ;; (pr-file-duplex . nil) (pr-file-tumble . nil)) | |
2247 ;; ) | |
2248 "*Specify an alist for PostScript utility processing (PS utility database). | |
2249 | |
2250 The alist element has the form: | |
2251 | |
2252 (SYMBOL UTILITY MUST-SWITCHES PAPERSIZE N-UP LANDSCAPE DUPLEX TUMBLE OUTPUT | |
2253 SWITCHES DEFAULT...) | |
2254 | |
2255 Where: | |
2256 | |
2257 SYMBOL It's a symbol to identify a PostScript utility. It's for | |
2258 `pr-ps-utility' variable setting and for menu selection. | |
2259 Examples: | |
2260 'mpage | |
2261 'psnup | |
2262 | |
2263 UTILITY Name of utility for processing a PostScript file. | |
2264 See also `pr-path-alist'. | |
2265 Examples: | |
2266 . for GNU or Unix system: | |
2267 \"mpage\" | |
2268 \"psnup -q\" | |
2269 | |
2270 . for Windows system: | |
2271 \"c:/psutils/psnup -q\" | |
2272 | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2273 MUST-SWITCHES List of sexp's to pass as options to the PostScript utility |
49646 | 2274 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
|
2275 program and must be placed before any other switches. |
49646 | 2276 Example: |
2277 . for psnup: | |
2278 '(\"-q\") | |
2279 | |
2280 PAPERSIZE It's a format string to specify paper size switch. | |
2281 Example: | |
2282 . for mpage | |
2283 \"-b%s\" | |
2284 | |
2285 N-UP It's a format string to specify n-up switch. | |
2286 Example: | |
2287 . for psnup | |
2288 \"-%d\" | |
2289 | |
2290 LANDSCAPE It's a string to specify landscape switch. If the utility | |
2291 doesn't have landscape switch, set to nil. | |
2292 Example: | |
2293 . for psnup | |
2294 \"-l\" | |
2295 | |
2296 DUPLEX It's a string to specify duplex switch. If the utility doesn't | |
2297 have duplex switch, set to nil. | |
2298 Example: | |
2299 . for psnup | |
2300 nil | |
2301 | |
2302 TUMBLE It's a string to specify tumble switch. If the utility doesn't | |
2303 have tumble switch, set to nil. | |
2304 Example: | |
2305 . for psnup | |
2306 nil | |
2307 | |
2308 OUTPUT It's a string to specify how to generate an output file. Some | |
2309 utilities accept an output file option, but some others need | |
2310 output redirection or some other way to specify an output file. | |
2311 Example: | |
2312 . for psnup | |
2313 \" \" ; psnup ... input output | |
2314 | |
2315 . for mpage | |
2316 \">\" ; mpage ... input > output | |
2317 | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2318 SWITCHES List of sexp's to pass as extra options to the PostScript utility |
49646 | 2319 program. |
2320 Example: | |
2321 . for psnup | |
2322 '(\"-q\") | |
2323 nil | |
2324 | |
2325 DEFAULT It's a way to set default values when this entry is selected. | |
2326 It's a cons like: | |
2327 | |
2328 (VARIABLE . VALUE) | |
2329 | |
2330 That associates VARIABLE with VALUE. when this entry is | |
2331 selected, it's executed the following command: | |
2332 | |
2333 (set VARIABLE (eval VALUE)) | |
2334 | |
2335 Note that VALUE can be any valid lisp expression. So, don't | |
2336 forget to quote symbols and constant lists. | |
2337 If VARIABLE is the special keyword `inherits-from:', VALUE must | |
2338 be a symbol name setting defined in `pr-setting-database' from | |
2339 which the current setting inherits the context. Take care with | |
2340 circular inheritance. | |
2341 Examples: | |
2342 '(pr-file-landscape . nil) | |
2343 '(pr-file-duplex . t) | |
2344 '(pr-gs-device . (my-gs-device t)) | |
2345 | |
2346 This variable should be modified by customization engine. If this variable is | |
2347 modified by other means (for example, a lisp function), use `pr-update-menus' | |
2348 function (see it for documentation) to update PostScript utility menu. | |
2349 | |
2350 NOTE: Don't forget to download and install the utilities declared on | |
2351 `pr-ps-utility-alist'. | |
2352 | |
2353 Examples: | |
2354 | |
2355 * On GNU or Unix system: | |
2356 | |
2357 '((mpage \"mpage\" nil \"-b%s\" \"-%d\" \"-l\" \"-t\" \"-T\" \">\" nil) | |
2358 (psnup \"psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" nil | |
2359 (pr-file-duplex . nil) (pr-file-tumble . nil)) | |
2360 ) | |
2361 | |
2362 * On Windows system: | |
2363 | |
2364 '((psnup \"c:/psutils/psnup\" (\"-q\") \"-P%s\" \"-%d\" \"-l\" nil nil \" \" | |
2365 nil (pr-file-duplex . nil) (pr-file-tumble . nil)) | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2366 ) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2367 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2368 Useful links: |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2369 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2370 * mpage download (GNU or Unix) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2371 `http://www.mesa.nl/pub/mpage/' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2372 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2373 * mpage documentation (GNU or Unix - or type `man mpage') |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2374 `http://www.cs.umd.edu/faq/guides/manual_unix/node48.html' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2375 `http://www.rt.com/man/mpage.1.html' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2376 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2377 * psnup (Windows, GNU or Unix) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2378 `http://www.knackered.org/angus/psutils/' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2379 `http://gershwin.ens.fr/vdaniel/Doc-Locale/Outils-Gnu-Linux/PsUtils/' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2380 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2381 * psnup (PsUtils for Windows) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2382 `http://gnuwin32.sourceforge.net/packages/psutils.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2383 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2384 * psnup documentation (GNU or Unix - or type `man psnup') |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2385 `http://linux.about.com/library/cmd/blcmdl1_psnup.htm' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2386 `http://amath.colorado.edu/computing/software/man/psnup.html' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2387 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2388 * GNU Enscript (Windows, GNU or Unix) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2389 `http://people.ssh.com/mtr/genscript/' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2390 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2391 * GNU Enscript documentation (Windows, GNU or Unix) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2392 `http://people.ssh.com/mtr/genscript/enscript.man.html' |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2393 (on GNU or Unix, type `man enscript') |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
2394 " |
49646 | 2395 :type '(repeat |
2396 (list :tag "PS File Utility" | |
2397 (symbol :tag "Utility Symbol") | |
2398 (string :tag "Utility Name") | |
2399 (repeat :tag "Must Utility Switches" | |
2400 (sexp :tag "Switch" :value "")) | |
2401 (choice :menu-tag "Paper Size" | |
2402 :tag "Paper Size" | |
2403 (const :tag "No Paper Size" nil) | |
2404 (string :tag "Paper Size Format")) | |
2405 (choice :menu-tag "N-Up" | |
2406 :tag "N-Up" | |
2407 (const :tag "No N-Up" nil) | |
2408 (string :tag "N-Up Format")) | |
2409 (choice :menu-tag "Landscape" | |
2410 :tag "Landscape" | |
2411 (const :tag "No Landscape" nil) | |
2412 (string :tag "Landscape Switch")) | |
2413 (choice :menu-tag "Duplex" | |
2414 :tag "Duplex" | |
2415 (const :tag "No Duplex" nil) | |
2416 (string :tag "Duplex Switch")) | |
2417 (choice :menu-tag "Tumble" | |
2418 :tag "Tumble" | |
2419 (const :tag "No Tumble" nil) | |
2420 (string :tag "Tumble Switch")) | |
2421 (string :tag "Output Separator") | |
2422 (repeat :tag "Utility Switches" | |
2423 (sexp :tag "Switch" :value "")) | |
2424 (repeat | |
2425 :tag "Default Value List" | |
2426 :inline t | |
2427 (cons | |
2428 :tag "" | |
2429 (choice | |
2430 :menu-tag "Variable" | |
2431 :tag "Variable" | |
2432 (const :tag "PS File Landscape" pr-file-landscape) | |
2433 (const :tag "PS File Duplex" pr-file-duplex) | |
2434 (const :tag "PS File Tumble" pr-file-tumble) | |
2435 (const :tag "Ghostscript Device" pr-gs-device) | |
2436 (const :tag "Ghostscript Resolution" pr-gs-resolution) | |
2437 (const :tag "inherits-from:" inherits-from:) | |
2438 (variable :tag "Other")) | |
2439 (sexp :tag "Value"))) | |
2440 )) | |
2441 :set 'pr-alist-custom-set | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2442 :version "20" |
49646 | 2443 :group 'printing) |
2444 | |
2445 | |
2446 (defcustom pr-menu-lock t | |
2447 "*Non-nil means menu is locked while selecting toggle options. | |
2448 | |
2449 See also `pr-menu-char-height' and `pr-menu-char-width'." | |
2450 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2451 :version "20" |
49646 | 2452 :group 'printing) |
2453 | |
2454 | |
2455 (defcustom pr-menu-char-height | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2456 (cond ((featurep 'xemacs) ; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2457 (pr-x-font-height (face-font 'default))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2458 (t ; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2459 (pr-e-frame-char-height))) |
49646 | 2460 "*Specify menu char height in pixels. |
2461 | |
2462 This variable is used to guess which vertical position should be locked the | |
2463 menu, so don't forget to adjust it if menu position is not ok. | |
2464 | |
2465 See also `pr-menu-lock' and `pr-menu-char-width'." | |
2466 :type 'integer | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2467 :version "20" |
49646 | 2468 :group 'printing) |
2469 | |
2470 | |
2471 (defcustom pr-menu-char-width | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2472 (cond ((featurep 'xemacs) ; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2473 (pr-x-font-width (face-font 'default))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2474 (t ; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2475 (pr-e-frame-char-width))) |
49646 | 2476 "*Specify menu char width in pixels. |
2477 | |
2478 This variable is used to guess which horizontal position should be locked the | |
2479 menu, so don't forget to adjust it if menu position is not ok. | |
2480 | |
2481 See also `pr-menu-lock' and `pr-menu-char-height'." | |
2482 :type 'integer | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2483 :version "20" |
49646 | 2484 :group 'printing) |
2485 | |
2486 | |
2487 (defcustom pr-setting-database | |
2488 '((no-duplex ; setting symbol name | |
2489 nil nil nil ; inherits local kill-local | |
2490 (pr-file-duplex . nil) ; settings | |
2491 (pr-file-tumble . nil)) | |
2492 ) | |
2493 "*Specify an alist for settings in general. | |
2494 | |
2495 The elements have the following form: | |
2496 | |
2497 (SYMBOL INHERITS LOCAL KILL-LOCAL SETTING...) | |
2498 | |
2499 Where: | |
2500 | |
2501 SYMBOL It's a symbol to identify the setting group. | |
2502 | |
2503 INHERITS Specify the inheritance for SYMBOL group. It's a symbol name | |
2504 setting from which the current setting inherits the context. | |
2505 If INHERITS is nil, means that there is no inheritance. | |
2506 This is a simple inheritance mechanism. | |
2507 | |
2508 Let's see an example to illustrate the inheritance mechanism: | |
2509 | |
2510 (setq pr-setting-database | |
2511 '((no-duplex ; setting symbol name | |
2512 nil ; inherits | |
2513 nil nil ; local kill-local | |
2514 (pr-file-duplex . nil) ; settings | |
2515 (pr-file-tumble . nil) | |
2516 ) | |
2517 (no-duplex-and-landscape ; setting symbol name | |
2518 no-duplex ; inherits | |
2519 nil nil ; local kill-local | |
2520 (pr-file-landscape . nil) ; settings | |
2521 ))) | |
2522 | |
2523 The example above has two setting groups: no-duplex and | |
2524 no-duplex-and-landscape. When setting no-duplex is activated | |
2525 through `inherits-from:' (see `pr-ps-utility', `pr-mode-alist' | |
2526 and `pr-ps-printer-alist'), the variables pr-file-duplex and | |
2527 pr-file-tumble are both set to nil. | |
2528 | |
2529 Now when setting no-duplex-and-landscape is activated through | |
2530 `inherits-from:', the variable pr-file-landscape is set to nil | |
2531 and also the settings for no-duplex are done, because | |
2532 no-duplex-and-landscape inherits settings from no-duplex. | |
2533 | |
2534 Take care with circular inheritance. It's an error if circular | |
2535 inheritance happens. | |
2536 | |
2537 LOCAL Non-nil means that all settings for SYMBOL group will be | |
2538 declared local buffer. | |
2539 | |
2540 KILL-LOCAL Non-nil means that all settings for SYMBOL group will be | |
2541 killed at end. It has effect only when LOCAL is non-nil. | |
2542 | |
2543 SETTING It's a cons like: | |
2544 | |
2545 (VARIABLE . VALUE) | |
2546 | |
2547 That associates VARIABLE with VALUE. when this entry is | |
2548 selected, it's executed the following command: | |
2549 | |
2550 * If LOCAL is non-nil: | |
2551 (set (make-local-variable VARIABLE) (eval VALUE)) | |
2552 | |
2553 * If LOCAL is nil: | |
2554 (set VARIABLE (eval VALUE)) | |
2555 | |
2556 Note that VALUE can be any valid lisp expression. So, don't | |
2557 forget to quote symbols and constant lists. | |
2558 This setting is ignored if VARIABLE is equal to keyword | |
2559 `inherits-from:'. | |
2560 Examples: | |
2561 '(ps-landscape-mode . nil) | |
2562 '(ps-spool-duplex . t) | |
2563 '(pr-gs-device . (my-gs-device t))" | |
2564 :type '(repeat | |
2565 (list | |
2566 :tag "" | |
2567 (symbol :tag "Setting Name") | |
2568 (choice :menu-tag "Inheritance" | |
2569 :tag "Inheritance" | |
2570 (const :tag "No Inheritance" nil) | |
2571 (symbol :tag "Inherits From")) | |
2572 (boolean :tag "Local Buffer Setting") | |
2573 (boolean :tag "Kill Local Variable At End") | |
2574 (repeat | |
2575 :tag "Setting List" | |
2576 :inline t | |
2577 (cons | |
2578 :tag "" | |
2579 (choice | |
2580 :menu-tag "Variable" | |
2581 :tag "Variable" | |
2582 (const :tag "Landscape" ps-landscape-mode) | |
2583 (const :tag "Print Header" ps-print-header) | |
2584 (const :tag "Print Header Frame" ps-print-header-frame) | |
2585 (const :tag "Line Number" ps-line-number) | |
2586 (const :tag "Zebra Stripes" ps-zebra-stripes) | |
2587 (const :tag "Duplex" ps-spool-duplex) | |
2588 (const :tag "Tumble" ps-spool-tumble) | |
2589 (const :tag "Upside-Down" ps-print-upside-down) | |
2590 (const :tag "PS File Landscape" pr-file-landscape) | |
2591 (const :tag "PS File Duplex" pr-file-duplex) | |
2592 (const :tag "PS File Tumble" pr-file-tumble) | |
2593 (const :tag "Auto Region" pr-auto-region) | |
2594 (const :tag "Auto Mode" pr-auto-mode) | |
2595 (const :tag "Ghostscript Device" pr-gs-device) | |
2596 (const :tag "Ghostscript Resolution" pr-gs-resolution) | |
2597 (variable :tag "Other")) | |
2598 (sexp :tag "Value"))) | |
2599 )) | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2600 :version "20" |
49646 | 2601 :group 'printing) |
2602 | |
2603 | |
2604 (defcustom pr-visible-entry-list | |
2605 '(postscript text postscript-options postscript-process printing help) | |
2606 "*Specify a list of Printing menu visible entries. | |
2607 | |
2608 Valid values with the corresponding menu parts are: | |
2609 | |
2610 +------------------------------+ | |
2611 | Printing Interface | | |
2612 +------------------------------+ | |
2613 `postscript' | PostScript Preview >| | |
2614 | PostScript Print >| | |
2615 | PostScript Printer: name >| | |
2616 +------------------------------+ | |
2617 `text' | Printify >| | |
2618 | Print >| | |
2619 | Text Printer: name >| | |
2620 +------------------------------+ | |
2621 `postscript-options' |[ ] Landscape | | |
2622 |[ ] Print Header | | |
2623 |[ ] Print Header Frame | | |
2624 |[ ] Line Number | | |
2625 |[ ] Zebra Stripes | | |
2626 |[ ] Duplex | | |
2627 |[ ] Tumble | | |
2628 |[ ] Upside-Down | | |
2629 | Print All Pages >| | |
2630 +------------------------------+ | |
2631 `postscript-process' |[ ] Spool Buffer | | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2632 |[ ] Print with faces | |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2633 |[ ] Print via Ghostscript | |
49646 | 2634 +------------------------------+ |
2635 `printing' |[ ] Auto Region | | |
2636 |[ ] Auto Mode | | |
2637 |[ ] Menu Lock | | |
2638 +------------------------------+ | |
2639 `help' | Customize >| | |
2640 | Show Settings >| | |
2641 | Help | | |
2642 +------------------------------+ | |
2643 | |
2644 Any other value is ignored." | |
2645 :type '(repeat :tag "Menu Visible Part" | |
2646 (choice :menu-tag "Menu Part" | |
2647 :tag "Menu Part" | |
2648 (const postscript) | |
2649 (const text) | |
2650 (const postscript-options) | |
2651 (const postscript-process) | |
2652 (const printing) | |
2653 (const help))) | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2654 :version "20" |
49646 | 2655 :group 'printing) |
2656 | |
2657 | |
2658 (defcustom pr-delete-temp-file t | |
2659 "*Non-nil means delete temporary files. | |
2660 | |
2661 Set `pr-delete-temp-file' to nil, if the following message (or a similar) | |
2662 happens when printing: | |
2663 | |
2664 Error: could not open \"c:\\temp\\prspool.ps\" for reading." | |
2665 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2666 :version "20" |
49646 | 2667 :group 'printing) |
2668 | |
2669 | |
2670 (defcustom pr-list-directory nil | |
2671 "*Non-nil means list directory when processing a directory. | |
2672 | |
2673 That is, any subdirectories (and the superdirectory) of the directory (given as | |
2674 argument of functions below) are also printed (as dired-mode listings). | |
2675 | |
2676 It's used by `pr-ps-directory-preview', `pr-ps-directory-using-ghostscript', | |
2677 `pr-ps-directory-print', `pr-ps-directory-ps-print', `pr-printify-directory' | |
2678 and `pr-txt-directory'." | |
2679 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2680 :version "20" |
49646 | 2681 :group 'printing) |
2682 | |
2683 | |
2684 (defcustom pr-buffer-name "*Printing Interface*" | |
2685 "*Specify the name of the buffer interface for printing package. | |
2686 | |
2687 It's used by `pr-interface'." | |
2688 :type 'string | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2689 :version "20" |
49646 | 2690 :group 'printing) |
2691 | |
2692 | |
2693 (defcustom pr-buffer-name-ignore | |
2694 (list (regexp-quote pr-buffer-name) ; ignore printing interface buffer | |
2695 "^ .*$") ; ignore invisible buffers | |
2696 "*Specify a regexp list for buffer names to be ignored in interface buffer. | |
2697 | |
2698 NOTE: Case is important for matching, that is, `case-fold-search' is always | |
2699 nil. | |
2700 | |
2701 It's used by `pr-interface'." | |
2702 :type '(repeat (regexp :tag "Buffer Name Regexp")) | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2703 :version "20" |
49646 | 2704 :group 'printing) |
2705 | |
2706 | |
2707 (defcustom pr-buffer-verbose t | |
2708 "*Non-nil means to be verbose when editing a field in interface buffer. | |
2709 | |
2710 It's used by `pr-interface'." | |
2711 :type 'boolean | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2712 :version "20" |
49646 | 2713 :group 'printing) |
2714 | |
2715 | |
2716 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
2717 ;; Internal Variables | |
2718 | |
2719 | |
2720 (defvar pr-txt-command nil | |
2721 "Name of program for printing a text file. | |
2722 See `pr-txt-printer-alist'.") | |
2723 | |
2724 | |
2725 (defvar pr-txt-switches nil | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2726 "List of sexp's to pass as extra options to the text printer program. |
49646 | 2727 See `pr-txt-printer-alist'.") |
2728 | |
2729 | |
2730 (defvar pr-txt-printer nil | |
2731 "Specify text printer name. | |
2732 See `pr-txt-printer-alist'.") | |
2733 | |
2734 | |
2735 (defvar pr-ps-command nil | |
2736 "Name of program for printing a PostScript file. | |
2737 See `pr-ps-printer-alist'.") | |
2738 | |
2739 | |
2740 (defvar pr-ps-switches nil | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
2741 "List of sexp's to pass as extra options to the PostScript printer program. |
49646 | 2742 See `pr-ps-printer-alist'.") |
2743 | |
2744 | |
2745 (defvar pr-ps-printer-switch nil | |
2746 "Specify PostScript printer name switch. | |
2747 See `pr-ps-printer-alist'.") | |
2748 | |
2749 | |
2750 (defvar pr-ps-printer nil | |
2751 "Specify PostScript printer name. | |
2752 See `pr-ps-printer-alist'.") | |
2753 | |
2754 | |
2755 (defvar pr-menu-bar nil | |
2756 "Specify Printing menu-bar entry.") | |
2757 | |
2758 | |
2759 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2760 ;; Macros |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2761 |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2762 |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2763 (defmacro pr-save-file-modes (&rest body) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2764 "Set temporally file modes to `pr-file-modes'." |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2765 `(let ((pr--default-file-modes (default-file-modes))) ; save default |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2766 (set-default-file-modes pr-file-modes) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2767 ,@body |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2768 (set-default-file-modes pr--default-file-modes))) ; restore default |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2769 |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2770 |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
2771 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
49646 | 2772 ;; Keys & Menus |
2773 | |
2774 | |
2775 (defmacro pr-xemacs-global-menubar (&rest body) | |
2776 `(save-excursion | |
2777 (let ((temp (get-buffer-create (make-temp-name " *Temp")))) | |
2778 ;; be sure to access global menubar | |
2779 (set-buffer temp) | |
2780 ,@body | |
2781 (kill-buffer temp)))) | |
2782 | |
2783 | |
2784 (defsubst pr-visible-p (key) | |
2785 (memq key pr-visible-entry-list)) | |
2786 | |
2787 | |
2788 (defsubst pr-mode-alist-p () | |
2789 (cdr (assq major-mode pr-mode-alist))) | |
2790 | |
2791 | |
2792 (defsubst pr-auto-mode-p () | |
2793 (and pr-auto-mode (pr-mode-alist-p))) | |
2794 | |
2795 | |
2796 (defsubst pr-using-ghostscript-p () | |
2797 (and pr-print-using-ghostscript (not pr-spool-p))) | |
2798 | |
2799 | |
66951
e21a70dc8958
(easy-menu-intern): Don't define.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65680
diff
changeset
|
2800 (defalias 'pr-get-symbol |
e21a70dc8958
(easy-menu-intern): Don't define.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65680
diff
changeset
|
2801 (if (fboundp 'easy-menu-intern) |
e21a70dc8958
(easy-menu-intern): Don't define.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65680
diff
changeset
|
2802 'easy-menu-intern |
e21a70dc8958
(easy-menu-intern): Don't define.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65680
diff
changeset
|
2803 (lambda (s) (if (stringp s) (intern s) s)))) |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2804 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2805 (cond |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2806 ((featurep 'xemacs) ; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2807 (defvar zmacs-region-stays nil) ; to avoid compilation gripes |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2808 (defun pr-region-active-p () |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2809 (and pr-auto-region (not zmacs-region-stays) (ps-mark-active-p)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2810 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2811 (t ; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2812 (defun pr-region-active-p () |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2813 (and pr-auto-region transient-mark-mode mark-active)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2814 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2815 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2816 (defconst pr-menu-spec |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2817 ;; Menu mapping: |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2818 ;; unfortunately XEmacs doesn't support :active for submenus, |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2819 ;; only for items. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2820 ;; So, it uses :included instead of :active. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2821 ;; Also, XEmacs doesn't support :help tag. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2822 (let ((pr-:active (if (featurep 'xemacs) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2823 :included ; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2824 :active)) ; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2825 (pr-:help (if (featurep 'xemacs) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2826 'ignore ; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2827 #'(lambda (text) (list :help text))))) ; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2828 `( |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2829 ["Printing Interface" pr-interface |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2830 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2831 pr-:help "Use buffer interface instead of menu interface")] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2832 "--" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2833 ("PostScript Preview" :included (pr-visible-p 'postscript) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2834 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2835 pr-:help "Preview PostScript instead of sending to printer") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2836 ("Directory" ,pr-:active (not pr-spool-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2837 ["1-up" (pr-ps-directory-preview 1 nil nil t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2838 ["2-up" (pr-ps-directory-preview 2 nil nil t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2839 ["4-up" (pr-ps-directory-preview 4 nil nil t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2840 ["Other..." (pr-ps-directory-preview nil nil nil t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2841 :keys "\\[pr-ps-buffer-preview]"]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2842 ("Buffer" ,pr-:active (not pr-spool-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2843 ["1-up" (pr-ps-buffer-preview 1 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2844 ["2-up" (pr-ps-buffer-preview 2 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2845 ["4-up" (pr-ps-buffer-preview 4 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2846 ["Other..." (pr-ps-buffer-preview nil t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2847 :keys "\\[pr-ps-buffer-preview]"]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2848 ("Region" ,pr-:active (and (not pr-spool-p) (ps-mark-active-p)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2849 ["1-up" (pr-ps-region-preview 1 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2850 ["2-up" (pr-ps-region-preview 2 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2851 ["4-up" (pr-ps-region-preview 4 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2852 ["Other..." (pr-ps-region-preview nil t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2853 :keys "\\[pr-ps-region-preview]"]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2854 ("Mode" ,pr-:active (and (not pr-spool-p) (pr-mode-alist-p)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2855 ["1-up" (pr-ps-mode-preview 1 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2856 ["2-up" (pr-ps-mode-preview 2 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2857 ["4-up" (pr-ps-mode-preview 4 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2858 ["Other..." (pr-ps-mode-preview nil t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2859 :keys "\\[pr-ps-mode-preview]"]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2860 ("File" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2861 ["No Preprocessing..." (call-interactively 'pr-ps-file-preview) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2862 :keys "\\[pr-ps-file-preview]" |
58218
63c796a99b3e
adjust pr-menu-spec
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58204
diff
changeset
|
2863 ,@(funcall |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2864 pr-:help "Preview PostScript file")] |
49646 | 2865 "--" |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2866 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist |
58218
63c796a99b3e
adjust pr-menu-spec
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58204
diff
changeset
|
2867 ,@(funcall |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2868 pr-:help "Select PostScript utility")] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2869 "--" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2870 ["1-up..." (pr-ps-file-up-preview 1 t t) pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2871 ["2-up..." (pr-ps-file-up-preview 2 t t) pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2872 ["4-up..." (pr-ps-file-up-preview 4 t t) pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2873 ["Other..." (pr-ps-file-up-preview nil t t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2874 :keys "\\[pr-ps-file-up-preview]" :active pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2875 "--" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2876 ["Landscape" pr-toggle-file-landscape-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2877 :style toggle :selected pr-file-landscape |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2878 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2879 pr-:help "Toggle landscape for PostScript file") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2880 :active pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2881 ["Duplex" pr-toggle-file-duplex-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2882 :style toggle :selected pr-file-duplex |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2883 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2884 pr-:help "Toggle duplex for PostScript file") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2885 :active pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2886 ["Tumble" pr-toggle-file-tumble-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2887 :style toggle :selected pr-file-tumble |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2888 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2889 pr-:help "Toggle tumble for PostScript file") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2890 :active (and pr-file-duplex pr-ps-utility-alist)]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2891 ["Despool..." (call-interactively 'pr-despool-preview) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2892 :active pr-spool-p :keys "\\[pr-despool-preview]" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2893 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2894 pr-:help "Despool PostScript buffer to printer or file (C-u)")]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2895 ("PostScript Print" :included (pr-visible-p 'postscript) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2896 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2897 pr-:help "Send PostScript to printer or file (C-u)") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2898 ("Directory" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2899 ["1-up" (pr-ps-directory-ps-print 1 nil nil t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2900 ["2-up" (pr-ps-directory-ps-print 2 nil nil t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2901 ["4-up" (pr-ps-directory-ps-print 4 nil nil t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2902 ["Other..." (pr-ps-directory-ps-print nil nil nil t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2903 :keys "\\[pr-ps-buffer-ps-print]"]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2904 ("Buffer" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2905 ["1-up" (pr-ps-buffer-ps-print 1 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2906 ["2-up" (pr-ps-buffer-ps-print 2 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2907 ["4-up" (pr-ps-buffer-ps-print 4 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2908 ["Other..." (pr-ps-buffer-ps-print nil t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2909 :keys "\\[pr-ps-buffer-ps-print]"]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2910 ("Region" ,pr-:active (ps-mark-active-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2911 ["1-up" (pr-ps-region-ps-print 1 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2912 ["2-up" (pr-ps-region-ps-print 2 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2913 ["4-up" (pr-ps-region-ps-print 4 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2914 ["Other..." (pr-ps-region-ps-print nil t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2915 :keys "\\[pr-ps-region-ps-print]"]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2916 ("Mode" ,pr-:active (pr-mode-alist-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2917 ["1-up" (pr-ps-mode-ps-print 1 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2918 ["2-up" (pr-ps-mode-ps-print 2 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2919 ["4-up" (pr-ps-mode-ps-print 4 t) t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2920 ["Other..." (pr-ps-mode-ps-print nil t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2921 :keys "\\[pr-ps-mode-ps-print]"]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2922 ("File" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2923 ["No Preprocessing..." (call-interactively 'pr-ps-file-ps-print) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2924 :keys "\\[pr-ps-file-ps-print]" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2925 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2926 pr-:help "Send PostScript file to printer")] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2927 "--" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2928 ["PostScript Utility" pr-update-menus :active pr-ps-utility-alist |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2929 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2930 pr-:help "Select PostScript utility")] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2931 "--" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2932 ["1-up..." (pr-ps-file-up-ps-print 1 t t) pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2933 ["2-up..." (pr-ps-file-up-ps-print 2 t t) pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2934 ["4-up..." (pr-ps-file-up-ps-print 4 t t) pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2935 ["Other..." (pr-ps-file-up-ps-print nil t t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2936 :keys "\\[pr-ps-file-up-ps-print]" :active pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2937 "--" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2938 ["Landscape" pr-toggle-file-landscape-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2939 :style toggle :selected pr-file-landscape |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2940 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2941 pr-:help "Toggle landscape for PostScript file") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2942 :active pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2943 ["Duplex" pr-toggle-file-duplex-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2944 :style toggle :selected pr-file-duplex |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2945 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2946 pr-:help "Toggle duplex for PostScript file") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2947 :active pr-ps-utility-alist] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2948 ["Tumble" pr-toggle-file-tumble-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2949 :style toggle :selected pr-file-tumble |
58218
63c796a99b3e
adjust pr-menu-spec
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58204
diff
changeset
|
2950 ,@(funcall |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2951 pr-:help "Toggle tumble for PostScript file") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2952 :active (and pr-file-duplex pr-ps-utility-alist)]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2953 ["Despool..." (call-interactively 'pr-despool-ps-print) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2954 :active pr-spool-p :keys "\\[pr-despool-ps-print]" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2955 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2956 pr-:help "Despool PostScript buffer to printer or file (C-u)")]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2957 ["PostScript Printers" pr-update-menus |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2958 :active pr-ps-printer-alist :included (pr-visible-p 'postscript) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2959 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2960 pr-:help "Select PostScript printer")] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2961 "--" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2962 ("Printify" :included (pr-visible-p 'text) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2963 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2964 pr-:help |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2965 "Replace non-printing chars with printable representations.") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2966 ["Directory" pr-printify-directory t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2967 ["Buffer" pr-printify-buffer t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2968 ["Region" pr-printify-region (ps-mark-active-p)]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2969 ("Print" :included (pr-visible-p 'text) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2970 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2971 pr-:help "Send text to printer") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2972 ["Directory" pr-txt-directory t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2973 ["Buffer" pr-txt-buffer t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2974 ["Region" pr-txt-region (ps-mark-active-p)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2975 ["Mode" pr-txt-mode (pr-mode-alist-p)]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2976 ["Text Printers" pr-update-menus |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2977 :active pr-txt-printer-alist :included (pr-visible-p 'text) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2978 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2979 pr-:help "Select text printer")] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2980 "--" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2981 ["Landscape" pr-toggle-landscape-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2982 :style toggle :selected ps-landscape-mode |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2983 :included (pr-visible-p 'postscript-options)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2984 ["Print Header" pr-toggle-header-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2985 :style toggle :selected ps-print-header |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2986 :included (pr-visible-p 'postscript-options)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2987 ["Print Header Frame" pr-toggle-header-frame-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2988 :style toggle :selected ps-print-header-frame :active ps-print-header |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2989 :included (pr-visible-p 'postscript-options)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2990 ["Line Number" pr-toggle-line-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2991 :style toggle :selected ps-line-number |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2992 :included (pr-visible-p 'postscript-options)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2993 ["Zebra Stripes" pr-toggle-zebra-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2994 :style toggle :selected ps-zebra-stripes |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2995 :included (pr-visible-p 'postscript-options)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2996 ["Duplex" pr-toggle-duplex-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2997 :style toggle :selected ps-spool-duplex |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2998 :included (pr-visible-p 'postscript-options)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
2999 ["Tumble" pr-toggle-tumble-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3000 :style toggle :selected ps-spool-tumble :active ps-spool-duplex |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3001 :included (pr-visible-p 'postscript-options)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3002 ["Upside-Down" pr-toggle-upside-down-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3003 :style toggle :selected ps-print-upside-down |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3004 :included (pr-visible-p 'postscript-options)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3005 ("Print All Pages" :included (pr-visible-p 'postscript-options) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3006 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3007 pr-:help "Select odd/even pages/sheets to print") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3008 ["All Pages" (pr-even-or-odd-pages nil) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3009 :style radio :selected (eq ps-even-or-odd-pages nil)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3010 ["Even Pages" (pr-even-or-odd-pages 'even-page) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3011 :style radio :selected (eq ps-even-or-odd-pages 'even-page)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3012 ["Odd Pages" (pr-even-or-odd-pages 'odd-page) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3013 :style radio :selected (eq ps-even-or-odd-pages 'odd-page)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3014 ["Even Sheets" (pr-even-or-odd-pages 'even-sheet) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3015 :style radio :selected (eq ps-even-or-odd-pages 'even-sheet)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3016 ["Odd Sheets" (pr-even-or-odd-pages 'odd-sheet) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3017 :style radio :selected (eq ps-even-or-odd-pages 'odd-sheet)]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3018 "--" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3019 ["Spool Buffer" pr-toggle-spool-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3020 :style toggle :selected pr-spool-p |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3021 :included (pr-visible-p 'postscript-process) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3022 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3023 pr-:help "Toggle PostScript spooling")] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3024 ["Print with faces" pr-toggle-faces-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3025 :style toggle :selected pr-faces-p |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3026 :included (pr-visible-p 'postscript-process) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3027 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3028 pr-:help "Toggle PostScript printing with faces")] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3029 ["Print via Ghostscript" pr-toggle-ghostscript-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3030 :style toggle :selected pr-print-using-ghostscript |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3031 :included (pr-visible-p 'postscript-process) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3032 ,@(funcall |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3033 pr-:help "Toggle PostScript generation using ghostscript")] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3034 "--" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3035 ["Auto Region" pr-toggle-region-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3036 :style toggle :selected pr-auto-region |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3037 :included (pr-visible-p 'printing)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3038 ["Auto Mode" pr-toggle-mode-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3039 :style toggle :selected pr-auto-mode |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3040 :included (pr-visible-p 'printing)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3041 ["Menu Lock" pr-toggle-lock-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3042 :style toggle :selected pr-menu-lock |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3043 :included (pr-visible-p 'printing)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3044 "--" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3045 ("Customize" :included (pr-visible-p 'help) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3046 ["printing" pr-customize t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3047 ["ps-print" ps-print-customize t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3048 ["lpr" lpr-customize t]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3049 ("Show Settings" :included (pr-visible-p 'help) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3050 ["printing" pr-show-pr-setup t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3051 ["ps-print" pr-show-ps-setup t] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3052 ["lpr" pr-show-lpr-setup t]) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3053 ["Help" pr-help :active t :included (pr-visible-p 'help)] |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3054 ))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3055 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3056 |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3057 (defvar pr-menu-print-item "print" |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3058 "Non-nil means that menu binding was not done. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3059 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3060 Used by `pr-menu-bind' and `pr-update-menus'.") |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3061 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3062 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3063 (defun pr-menu-bind () |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3064 "Install `printing' menu in the menubar. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3065 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3066 On Emacs 20, it replaces the Tools/Print menu by Tools/Printing menu. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3067 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3068 On Emacs 21 and 22, it replaces the File/Print* menu entries by File/Print |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3069 menu. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3070 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3071 Calls `pr-update-menus' to adjust menus." |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3072 (interactive) |
49646 | 3073 (cond |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3074 ((featurep 'xemacs) ; XEmacs |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3075 ;; Menu binding |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3076 (pr-xemacs-global-menubar |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3077 (pr-x-add-submenu nil (cons "Printing" pr-menu-spec) "Apps")) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3078 (setq pr-menu-print-item nil)) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3079 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3080 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3081 (t ; GNU Emacs |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3082 ;; Menu binding |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3083 (require 'easymenu) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3084 ;; Replace existing "print" item by "Printing" item. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3085 ;; If you're changing this file, you'll load it a second, |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3086 ;; third... time, but "print" item exists only in the first load. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3087 (cond |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3088 ;; Emacs 20 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3089 ((string< emacs-version "21.") |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3090 (easy-menu-change '("tools") "Printing" pr-menu-spec pr-menu-print-item) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3091 (when pr-menu-print-item |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3092 (easy-menu-remove-item nil '("tools") pr-menu-print-item) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3093 (setq pr-menu-print-item nil |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3094 pr-menu-bar (vector 'menu-bar 'tools |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3095 (pr-get-symbol "Printing"))))) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3096 ;; Emacs 21 & 22 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3097 (t |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3098 (let* ((has-file (lookup-key global-map (vector 'menu-bar 'file))) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3099 (item-file (if has-file '("file") '("files")))) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3100 (cond |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3101 (pr-menu-print-item |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3102 (easy-menu-change item-file "Print" pr-menu-spec "print-buffer") |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3103 (let ((items '("print-buffer" "print-region" |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3104 "ps-print-buffer-faces" "ps-print-region-faces" |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3105 "ps-print-buffer" "ps-print-region"))) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3106 (while items |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3107 (easy-menu-remove-item nil item-file (car items)) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3108 (setq items (cdr items))) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3109 (setq pr-menu-print-item nil |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3110 pr-menu-bar (vector 'menu-bar |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3111 (if has-file 'file 'files) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3112 (pr-get-symbol "Print"))))) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3113 (t |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3114 (easy-menu-change item-file "Print" pr-menu-spec)))))))) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
3115 (pr-update-menus t)) |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3116 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3117 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3118 ;; Key binding |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3119 (let ((pr-print-key (if (featurep 'xemacs) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3120 'f22 ; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3121 'print))) ; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3122 (global-set-key `[,pr-print-key] 'pr-ps-fast-fire) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3123 ;; Well, M-print and S-print are used because in my keyboard S-print works |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3124 ;; and M-print doesn't. But M-print can work in other keyboard. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3125 (global-set-key `[(meta ,pr-print-key)] 'pr-ps-mode-using-ghostscript) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3126 (global-set-key `[(shift ,pr-print-key)] 'pr-ps-mode-using-ghostscript) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3127 ;; Well, C-print and C-M-print are used because in my keyboard C-M-print works |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3128 ;; and C-print doesn't. But C-print can work in other keyboard. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3129 (global-set-key `[(control ,pr-print-key)] 'pr-txt-fast-fire) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3130 (global-set-key `[(control meta ,pr-print-key)] 'pr-txt-fast-fire)) |
49646 | 3131 |
3132 | |
3133 ;;; You can also use something like: | |
3134 ;;;(global-set-key "\C-ci" 'pr-interface) | |
3135 ;;;(global-set-key "\C-cbp" 'pr-ps-buffer-print) | |
3136 ;;;(global-set-key "\C-cbx" 'pr-ps-buffer-preview) | |
3137 ;;;(global-set-key "\C-cbb" 'pr-ps-buffer-using-ghostscript) | |
3138 ;;;(global-set-key "\C-crp" 'pr-ps-region-print) | |
3139 ;;;(global-set-key "\C-crx" 'pr-ps-region-preview) | |
3140 ;;;(global-set-key "\C-crr" 'pr-ps-region-using-ghostscript) | |
3141 | |
3142 | |
3143 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
3144 ;; Help Message | |
3145 | |
3146 | |
3147 (defconst pr-help-message | |
3148 (concat "printing.el version " pr-version | |
3149 " ps-print.el version " ps-print-version | |
3150 "\n\n | |
3151 Menu Layout | |
3152 ----------- | |
3153 | |
3154 The `printing' menu (Tools/Printing or File/Print) has the following layout: | |
3155 | |
3156 +-----------------------------+ | |
3157 A 0 | Printing Interface | | |
3158 +-----------------------------+ +-A---------+ +-B------+ | |
3159 I 1 | PostScript Preview >|-------|Directory >|-----|1-up | | |
3160 2 | PostScript Print >|---- A |Buffer >|-- B |2-up | | |
3161 3 | PostScript Printer: name >|---- C |Region >|-- B |4-up | | |
3162 +-----------------------------+ |Mode >|-- B |Other...| | |
3163 II 4 | Printify >|-----\\ |File >|--\\ +--------+ | |
3164 5 | Print >|---\\ | |Despool... | | | |
3165 6 | Text Printer: name >|-\\ | | +-----------+ | | |
3166 +-----------------------------+ | | | +---------+ +------------+ | |
54210
602769168263
Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54209
diff
changeset
|
3167 III 7 |[ ]Landscape | | | \\-|Directory| | No Prep... | Ia |
49646 | 3168 8 |[ ]Print Header | | | |Buffer | +------------+ Ib |
3169 9 |[ ]Print Header Frame | | | |Region | | name >|- C | |
3170 10 |[ ]Line Number | | | +---------+ +------------+ | |
3171 11 |[ ]Zebra Stripes | | | +---------+ | 1-up... | Ic | |
3172 12 |[ ]Duplex | | \\---|Directory| | 2-up... | | |
3173 13 |[ ]Tumble | \\--\\ |Buffer | | 4-up... | | |
3174 14 |[ ]Upside-Down | | |Region | | Other... | | |
3175 15 | Print All Pages >|--\\ | |Mode | +------------+ | |
3176 +-----------------------------+ | | +---------+ |[ ]Landscape| Id | |
3177 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
|
3178 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
|
3179 18 |[ ]Print via Ghostscript | | |( )name B| +------------+ |
49646 | 3180 +-----------------------------+ | |... | |
3181 V 19 |[ ]Auto Region | | |(*)name | | |
3182 20 |[ ]Auto Mode | | |... | | |
3183 21 |[ ]Menu Lock | | +---------+ +--------------+ | |
3184 +-----------------------------+ \\------------------|(*)All Pages | | |
3185 VI 22 | Customize >|--- D +-D------+ |( )Even Pages | | |
3186 23 | Show Settings >|-------|printing| |( )Odd Pages | | |
3187 24 | Help | |ps-print| |( )Even Sheets| | |
3188 +-----------------------------+ |lpr | |( )Odd Sheets | | |
3189 +--------+ +--------------+ | |
3190 | |
3191 See `pr-visible-entry-list' for hiding some parts of the menu. | |
3192 | |
3193 The menu has the following sections: | |
3194 | |
3195 A. Interface: | |
3196 | |
3197 0. You can use a buffer interface instead of menus. It looks like the | |
3198 customization buffer. Basically, it has the same options found in the | |
3199 menu and some extra options, all this on a buffer. | |
3200 | |
3201 I. PostScript printing: | |
3202 | |
3203 1. You can generate a PostScript file (if you type C-u before activating | |
3204 menu) or PostScript temporary file for a directory, a buffer, a region | |
3205 or a major mode, choosing 1-up, 2-up, 4-up or any other n-up printing; | |
3206 after file generation, ghostview is activated using the file generated | |
3207 as argument. This option is disabled if spooling is on (option 16). | |
3208 Also, if you already have a PostScript file you can preview it. | |
3209 Instead of previewing each buffer, region or major mode at once, you | |
3210 can save temporarily the PostScript code generated in a buffer and | |
3211 preview it later. The option `Despool...' despools the PostScript | |
3212 spooling buffer in a temporary file and uses ghostview to preview it. | |
3213 If you type C-u before choosing this option, the PostScript code | |
3214 generated is saved in a file instead of saving in a temporary file. To | |
3215 spool the PostScript code generated you need to turn on the option 16. | |
3216 The option `Despool...' is enabled if spooling is on (option 16). | |
3217 | |
3218 NOTE 1: It's possible to customize a major mode printing, just declare | |
3219 the customization in `pr-mode-alist' and invoke some of | |
3220 `*-mode*' commands or select Mode option in Printing menu. An | |
3221 example for major mode usage is when you're using gnus (or mh, | |
3222 or rmail, etc.) and you're in the *Summary* buffer, if you | |
3223 forget to switch to the *Article* buffer before printing, | |
3224 you'll get a nicely formatted list of article subjects shows | |
3225 up at the printer. With major mode printing you don't need to | |
3226 switch from gnus *Summary* buffer first. | |
3227 | |
3228 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
|
3229 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
|
3230 directly to PostScript printer. |
49646 | 3231 Ib. PostScript utility processing selection. |
3232 See `pr-ps-utility-alist' and `pr-setting-database' for | |
3233 documentation. | |
3234 Ic. Do n-up processing before printing. | |
3235 Id. Toggle on/off landscape for PostScript file processing. | |
3236 Ie. Toggle on/off duplex for PostScript file processing. | |
3237 If. Toggle on/off tumble for PostScript file processing. | |
3238 | |
3239 NOTE 3: Don't forget to download and install the utilities declared on | |
3240 `pr-ps-utility-alist'. | |
3241 | |
3242 2. Operate the same way as option 1, but it sends directly the PostScript | |
3243 code (or put in a file, if you've typed C-u) or it uses ghostscript to | |
3244 print the PostScript file generated. It depends on option 18, if it's | |
3245 turned on, it uses ghostscript; otherwise, it sends directly to | |
3246 printer. If spooling is on (option 16), the PostScript code is saved | |
3247 temporarily in a buffer instead of printing it or saving it in a file. | |
3248 Also, if you already have a PostScript file you can print it. | |
3249 Instead of printing each buffer, region or major mode at once, you can | |
3250 save temporarily the PostScript code generated in a buffer and print it | |
3251 later. The option `Despool...' despools the PostScript spooling buffer | |
3252 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
|
3253 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
|
3254 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
|
3255 option 16. This option is enabled if spooling is on (option 16). |
49646 | 3256 See also the NOTE 1, NOTE 2 and NOTE 3 on option 1. |
3257 | |
3258 3. You can select a new PostScript printer to send PostScript code | |
3259 generated. For selection it's used all PostScript printers defined | |
3260 in `pr-ps-printer-alist' variable (see it for documentation). | |
3261 See also `pr-setting-database'. | |
3262 | |
3263 II. Text printing: | |
3264 | |
3265 4. If you have control characters (character code from \\000 to \\037) in a | |
3266 buffer and you want to print them in a text printer, select this | |
3267 option. All control characters in your buffer or region will be | |
3268 replaced by a printable representation. The printable representations | |
3269 use ^ (for ASCII control characters) or hex. The characters tab, | |
3270 linefeed, space, return and formfeed are not affected. | |
3271 You don't need to select this option if you use any option of section | |
3272 I, the PostScript engine treats control characters properly. | |
3273 | |
3274 5. If you want to print a directory, buffer, region or major mode in a | |
3275 text printer, select this option. See also the NOTE 1 on option 1. | |
3276 | |
3277 6. You can select a new text printer to send text generated. For | |
3278 selection it's used all text printers defined in `pr-txt-printer-alist' | |
3279 variable (see it for documentation). | |
3280 See also `pr-setting-database'. | |
3281 | |
3282 III. PostScript page toggle options: | |
3283 | |
3284 7. If you want a PostScript landscape printing, turn on this option. | |
3285 | |
3286 8. If you want to have a header in each page in your PostScript code, | |
3287 turn on this option. | |
3288 | |
3289 9. If you want to draw a gaudy frame around the header, turn on this | |
3290 option. This option is enabled if print header is on (option 8). | |
3291 | |
3292 10. If you want that the line number is printed in your PostScript code, | |
3293 turn on this option. | |
3294 | |
3295 11. If you want background zebra stripes in your PostScript code, turn on | |
3296 this option. | |
3297 | |
3298 12. If you want a duplex printing and your PostScript printer has this | |
3299 feature, turn on this option. | |
3300 | |
3301 13. If you turned on duplex printing, you can choose if you want to have a | |
3302 printing suitable for binding on the left or right (tumble off), or to | |
3303 have a printing suitable for binding at top or bottom (tumble on). | |
3304 This option is enabled if duplex is on (option 12). | |
3305 | |
3306 14. If you want a PostScript upside-down printing, turn on this option. | |
3307 | |
3308 15. With this option, you can choose if you want to print all pages, odd | |
3309 pages, even pages, odd sheets or even sheets. | |
3310 See also `ps-even-or-odd-pages'. | |
3311 | |
3312 IV. PostScript processing toggle options: | |
3313 | |
3314 16. If you want to spool the PostScript code generated, turn on this | |
3315 option. To spool the PostScript code generated use option 2. You can | |
3316 despool later by choosing option 1 or 2, sub-option `Despool...'. | |
3317 | |
3318 17. If you use colors in your buffers and want to see these colors on your | |
3319 PostScript code generated, turn on this option. If you have a | |
3320 black/white PostScript printer, these colors are displayed in gray | |
3321 scale by PostScript printer interpreter. | |
3322 | |
3323 18. If you don't have a PostScript printer to send PostScript files, turn | |
3324 on this option. When this option is on, the ghostscript is used to | |
3325 print PostScript files. In GNU or Unix system, if ghostscript is set | |
3326 as a PostScript filter, you don't need to turn on this option. | |
3327 | |
3328 V. Printing customization: | |
3329 | |
3330 19. If you want that region is automagically detected, turn on this | |
3331 option. Note that this will only work if you're using transient mark | |
3332 mode. When this option is on, the `*-buffer*' commands will behave | |
3333 like `*-region*' commands, that is, `*-buffer*' commands will print | |
3334 only the region marked instead of all buffer. | |
3335 | |
3336 20. Turn this option on if you want that when current major-mode is | |
3337 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands | |
3338 behave like `*-mode*' commands. | |
3339 | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3340 21. If you want that Printing menu stays open while you are setting |
49646 | 3341 toggle options, turn on this option. The variables |
3342 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the | |
3343 menu position, so don't forget to adjust these variables if menu | |
3344 position is not ok. | |
3345 | |
3346 VI. Customization: | |
3347 | |
3348 22. Besides all options in section III, IV and V, you can customize much | |
3349 more PostScript options in `ps-print' option. Or you can customize | |
3350 some `lpr' options for text printing. Or customize `printing' | |
3351 options. | |
3352 | |
3353 23. Show current settings for `printing', `ps-print' or `lpr'. | |
3354 | |
3355 24. Quick help for printing menu layout. | |
3356 ") | |
3357 "Printing help message.") | |
3358 | |
3359 | |
3360 (defconst pr-interface-help-message | |
3361 (concat "printing.el version " pr-version | |
3362 " ps-print.el version " ps-print-version | |
3363 "\n\n | |
3364 The printing interface buffer has the same functionality as the printing menu. | |
3365 The major difference is that the states (like sending PostScript generated to a | |
3366 file, n-up printing, etc.) are set and saved between priting buffer | |
3367 activation. Also, the landscape, duplex and tumble values are the same for | |
3368 PostScript file and directory/buffer/region/mode processing; using menu, there | |
3369 are different value sets for PostScript file and directory/buffer/region/mode | |
3370 processing. | |
3371 | |
3372 The printing interface buffer has the following sections: | |
3373 | |
3374 1. Print: | |
3375 | |
3376 Here you can choose to print/preview a buffer, a directory or a PostScript | |
3377 file: | |
3378 | |
3379 1a. Buffer: | |
3380 | |
3381 * Buffer List: | |
3382 Select a buffer from the current buffer list. | |
3383 | |
3384 * Region: | |
3385 If it's on, this means that the selected buffer has an active region, | |
3386 so you can turn on/off, as you wish. | |
3387 If it's off when a buffer is selected, this means that the selected | |
3388 buffer has no active region, so it'll not be possible to turn it on. | |
3389 If you want to process the region, let this option on. | |
3390 If you want to process the whole buffer, let this option off. | |
3391 | |
3392 * Mode: | |
3393 If it's on, this means that the selected buffer major mode is declared | |
3394 for major mode processing, so you can turn on/off, as you wish. | |
3395 If it's off when a buffer is selected, this means that the selected | |
3396 buffer major mode isn't declared for major mode processing, so it'll | |
3397 not be possible to turn it on. | |
3398 If you want the major mode processing, let this option on. | |
3399 If you don't want the major mode processing, let this option off. | |
3400 | |
3401 NOTE 1: It's possible to customize a major mode printing, just declare | |
3402 the customization in `pr-mode-alist' and invoke some of | |
3403 `*-mode*' commands or select Mode option in Printing menu. An | |
3404 example for major mode usage is when you're using gnus (or mh, | |
3405 or rmail, etc.) and you're in the *Summary* buffer, if you | |
3406 forget to switch to the *Article* buffer before printing, | |
3407 you'll get a nicely formatted list of article subjects shows | |
3408 up at the printer. With major mode printing you don't need to | |
3409 switch from gnus *Summary* buffer first. | |
3410 | |
3411 1b. Directory: | |
3412 | |
3413 * Directory: | |
3414 Specify a valid directory path. | |
3415 | |
3416 * File Regexp: | |
3417 Specify a file name regexp. All file names in the directory that | |
3418 match with regexp will be printed/previewed. An empty file name | |
3419 regexp means to print/preview all files in the directory. | |
3420 | |
3421 * List Directory Entry: | |
3422 If it's turned on, list directory entries besides file entries. | |
3423 | |
3424 1c. PostScript file: | |
3425 | |
3426 * PostScript File: | |
3427 Specify an existent PostScript file to print/preview. | |
3428 | |
3429 * PostScript Utility: | |
3430 Select a PostScript utility. | |
3431 See `pr-ps-utility-alist' and `pr-setting-database' for documentation. | |
3432 | |
3433 NOTE 2: Don't forget to download and install the utilities declared on | |
3434 `pr-ps-utility-alist'. | |
3435 | |
54210
602769168263
Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54209
diff
changeset
|
3436 * No Preprocessing: |
49646 | 3437 If it's turned on, don't use the PostScript utility to preprocess the |
3438 PostScript file before printing/previewing. | |
3439 | |
3440 2. PostScript printer: | |
3441 | |
3442 * PostScript Printer: | |
3443 You can select a new PostScript printer to send PostScript code | |
3444 generated. For selection it's used all PostScript printers defined | |
3445 in `pr-ps-printer-alist' variable (see it for documentation). | |
3446 See also `pr-setting-database'. | |
3447 | |
3448 * Despool: | |
3449 If spooling is on, you can turn it on/off, as you wish. | |
3450 If spooling is off, it'll not be possible to turn it on. | |
3451 If it's turned on, specify to despools the PostScript spooling buffer in | |
3452 a temporary file or in the selected PostScript file when | |
3453 printing/previewing. | |
3454 | |
3455 * Preview: | |
3456 Preview the PostScript generated. | |
3457 | |
3458 * Print: | |
3459 Print the PostScript generated. | |
3460 | |
3461 * Quit: | |
3462 Quit from printing interface buffer. | |
3463 | |
3464 * Send to Printer/Temporary File: | |
3465 If it's turned on, the PostScript generated is sent directly to | |
3466 PostScript printer or, for previewing, to a temporary file. | |
3467 | |
3468 * Send to File: | |
3469 Specify a file name to send the PostScript generated. | |
3470 | |
3471 * N-Up: | |
3472 Specify n-up printing. | |
3473 | |
3474 3. Text printer: | |
3475 | |
3476 * Text Printer: | |
3477 Select a new text printer to send text generated. For selection it's used | |
3478 all text printers defined in `pr-txt-printer-alist' variable (see it for | |
3479 documentation). See also `pr-setting-database'. | |
3480 | |
3481 * Printify: | |
3482 If you have control characters (character code from \\000 to \\037) in a | |
3483 buffer and you want to print them in a text printer, select this | |
3484 option. All control characters in your buffer or region will be | |
3485 replaced by a printable representation. The printable representations | |
3486 use ^ (for ASCII control characters) or hex. The characters tab, | |
3487 linefeed, space, return and formfeed are not affected. | |
3488 You don't need to select this option if you use any option of section | |
3489 I, the PostScript engine treats control characters properly. | |
3490 | |
3491 * Print: | |
3492 To print a directory, buffer, region or major mode in a | |
3493 text printer, select this option. See also the NOTE 1 on section 1. | |
3494 | |
3495 * Quit: | |
3496 Quit from printing interface buffer. | |
3497 | |
3498 4. Settings: | |
3499 | |
3500 There are 3 setting columns: | |
3501 | |
3502 4a. First column (left column): | |
3503 | |
3504 * Landscape: | |
3505 PostScript landscape printing. | |
3506 | |
3507 * Print Header: | |
3508 To have a header in each page in your PostScript code. | |
3509 | |
3510 * Print Header Frame: | |
3511 To draw a gaudy frame around the header. | |
3512 | |
3513 * Line Number: | |
3514 The line number is printed in your PostScript code. | |
3515 | |
3516 * Zebra Stripes: | |
3517 Background zebra stripes in your PostScript code. | |
3518 | |
3519 * Duplex: | |
3520 Duplex printing (if your PostScript printer has this feature). | |
3521 | |
3522 * Tumble: | |
3523 If duplex printing is on, you can choose if you want to have a | |
3524 printing suitable for binding on the left or right (tumble off), or to | |
3525 have a printing suitable for binding at top or bottom (tumble on). | |
3526 | |
3527 * Upside-Down: | |
3528 PostScript upside-down printing. | |
3529 | |
3530 4b. Second column (middle column): | |
3531 | |
3532 * Auto Region: | |
3533 If you want that region is automagically detected, turn on this | |
3534 option. Note that this will only work if you're using transient mark | |
3535 mode. When this option is on, the `*-buffer*' commands will behave | |
3536 like `*-region*' commands, that is, `*-buffer*' commands will print | |
3537 only the region marked instead of all buffer. | |
3538 | |
3539 * Auto Mode: | |
3540 Turn this option on if you want that when current major-mode is | |
3541 declared in `pr-mode-alist', the `*-buffer*' and `*-region*' commands | |
3542 behave like `*-mode*' commands. | |
3543 | |
3544 * Menu Lock: | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3545 If you want that Printing menu stays open while you are setting |
49646 | 3546 toggle options, turn on this option. The variables |
3547 `pr-menu-char-height' and `pr-menu-char-width' are used to guess the | |
3548 menu position, so don't forget to adjust these variables if menu | |
3549 position is not ok. | |
3550 | |
3551 * Spool Buffer: | |
3552 To spool the PostScript code generated. You can despool later by | |
3553 setting Despool option on PostScript printer section. | |
3554 | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3555 * Print with faces: |
49646 | 3556 If you use colors in your buffers and want to see these colors on your |
3557 PostScript code generated, turn on this option. If you have a | |
3558 black/white PostScript printer, these colors are displayed in gray | |
3559 scale by PostScript printer interpreter. | |
3560 | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3561 * Print via Ghostscript: |
49646 | 3562 If you don't have a PostScript printer to send PostScript files, turn |
3563 on this option. When this option is on, the ghostscript is used to | |
3564 print PostScript files. In GNU or Unix system, if ghostscript is set | |
3565 as a PostScript filter, you don't need to turn on this option. | |
3566 | |
3567 * Parity Page Menu: | |
3568 To print all pages, odd pages, even pages, odd sheets or even sheets. | |
3569 See also `ps-even-or-odd-pages'. | |
3570 | |
3571 4c. Third column (right column): | |
3572 | |
3573 * Verbose: | |
3574 That is, to be verbose when editing a field in interface buffer. | |
3575 | |
3576 5. Customize: | |
3577 | |
3578 Besides all options in section 4, you can customize much more PostScript | |
3579 options in `ps-print' option. Or you can customize some `lpr' options for | |
3580 text printing. Or customize `printing' options. | |
3581 | |
3582 6. Show settings: | |
3583 | |
3584 Show current settings for `printing', `ps-print' or `lpr'. | |
3585 | |
3586 7. Help: | |
3587 | |
3588 Quick help for printing interface buffer and printing menu layout. You can | |
3589 also quit the printing interface buffer or kill all printing help buffer. | |
3590 ") | |
3591 "Printing buffer interface help message.") | |
3592 | |
3593 | |
3594 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
3595 ;; Commands | |
3596 | |
3597 | |
3598 ;;;###autoload | |
3599 (defun pr-interface (&optional buffer) | |
3600 "Activate the printing interface buffer. | |
3601 | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3602 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
|
3603 |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
3604 For more information, type \\[pr-interface-help]." |
49646 | 3605 (interactive) |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3606 (save-excursion |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3607 (set-buffer (or buffer (current-buffer))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3608 (pr-create-interface))) |
49646 | 3609 |
3610 | |
3611 ;;;###autoload | |
3612 (defun pr-ps-directory-preview (n-up dir file-regexp &optional filename) | |
3613 "Preview directory using ghostview. | |
3614 | |
3615 Interactively, the command prompts for N-UP printing number, a directory, a | |
3616 file name regexp for matching and, when you use a prefix argument (C-u), the | |
3617 command prompts the user for a file name, and saves the PostScript image in | |
3618 that file instead of saving it in a temporary file. | |
3619 | |
3620 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is | |
3621 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for | |
3622 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil, | |
3623 save the image in a temporary file. If FILENAME is a string, save the | |
3624 PostScript image in a file with that name. If FILENAME is t, prompts for a | |
3625 file name. | |
3626 | |
3627 See also documentation for `pr-list-directory'." | |
3628 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS preview dir"))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3629 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3630 (pr-prompt "PS preview dir")) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3631 (setq filename (pr-ps-file filename)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3632 (pr-ps-file-list n-up dir file-regexp filename) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3633 (or pr-spool-p |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3634 (pr-ps-file-preview filename))) |
49646 | 3635 |
3636 | |
3637 ;;;###autoload | |
3638 (defun pr-ps-directory-using-ghostscript (n-up dir file-regexp &optional filename) | |
3639 "Print directory using PostScript through ghostscript. | |
3640 | |
3641 Interactively, the command prompts for N-UP printing number, a directory, a | |
3642 file name regexp for matching and, when you use a prefix argument (C-u), the | |
3643 command prompts the user for a file name, and saves the PostScript image in | |
3644 that file instead of saving it in a temporary file. | |
3645 | |
3646 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is | |
3647 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for | |
3648 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil, | |
3649 save the image in a temporary file. If FILENAME is a string, save the | |
3650 PostScript image in a file with that name. If FILENAME is t, prompts for a | |
3651 file name. | |
3652 | |
3653 See also documentation for `pr-list-directory'." | |
3654 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir GS"))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3655 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3656 (pr-prompt "PS print dir GS")) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3657 (let ((file (pr-ps-file filename))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3658 (pr-ps-file-list n-up dir file-regexp file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3659 (pr-ps-file-using-ghostscript file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3660 (or filename (pr-delete-file file)))) |
49646 | 3661 |
3662 | |
3663 ;;;###autoload | |
3664 (defun pr-ps-directory-print (n-up dir file-regexp &optional filename) | |
3665 "Print directory using PostScript printer. | |
3666 | |
3667 Interactively, the command prompts for N-UP printing number, a directory, a | |
3668 file name regexp for matching and, when you use a prefix argument (C-u), the | |
3669 command prompts the user for a file name, and saves the PostScript image in | |
3670 that file instead of saving it in a temporary file. | |
3671 | |
3672 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is | |
3673 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for | |
3674 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil, | |
3675 save the image in a temporary file. If FILENAME is a string, save the | |
3676 PostScript image in a file with that name. If FILENAME is t, prompts for a | |
3677 file name. | |
3678 | |
3679 See also documentation for `pr-list-directory'." | |
3680 (interactive (pr-interactive-ps-dir-args (pr-prompt "PS print dir"))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3681 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3682 (pr-prompt "PS print dir")) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3683 (let ((file (pr-ps-file filename))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3684 (pr-ps-file-list n-up dir file-regexp file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3685 (pr-ps-file-print file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3686 (or filename (pr-delete-file file)))) |
49646 | 3687 |
3688 | |
3689 ;;;###autoload | |
3690 (defun pr-ps-directory-ps-print (n-up dir file-regexp &optional filename) | |
3691 "Print directory using PostScript printer or through ghostscript. | |
3692 | |
3693 It depends on `pr-print-using-ghostscript'. | |
3694 | |
3695 Interactively, the command prompts for N-UP printing number, a directory, a | |
3696 file name regexp for matching and, when you use a prefix argument (C-u), the | |
3697 command prompts the user for a file name, and saves the PostScript image in | |
3698 that file instead of saving it in a temporary file. | |
3699 | |
3700 Noninteractively, if N-UP is nil, prompts for N-UP printing number. If DIR is | |
3701 nil, prompts for DIRectory. If FILE-REGEXP is nil, prompts for | |
3702 FILE(name)-REGEXP. The argument FILENAME is treated as follows: if it's nil, | |
3703 save the image in a temporary file. If FILENAME is a string, save the | |
3704 PostScript image in a file with that name. If FILENAME is t, prompts for a | |
3705 file name. | |
3706 | |
3707 See also documentation for `pr-list-directory'." | |
3708 (interactive (pr-interactive-ps-dir-args | |
3709 (pr-prompt (pr-prompt-gs "PS print dir")))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3710 (pr-set-ps-dir-args 'n-up 'dir 'file-regexp 'filename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3711 (pr-prompt (pr-prompt-gs "PS print dir"))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3712 (if (pr-using-ghostscript-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3713 (pr-ps-directory-using-ghostscript n-up dir file-regexp filename) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3714 (pr-ps-directory-print n-up dir file-regexp filename))) |
49646 | 3715 |
3716 | |
3717 ;;;###autoload | |
3718 (defun pr-ps-buffer-preview (n-up &optional filename) | |
3719 "Preview buffer using ghostview. | |
3720 | |
3721 Interactively, the command prompts for N-UP printing number and, when you use a | |
3722 prefix argument (C-u), the command prompts the user for a file name, and saves | |
3723 the PostScript image in that file instead of saving it in a temporary file. | |
3724 | |
3725 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The | |
3726 argument FILENAME is treated as follows: if it's nil, save the image in a | |
3727 temporary file. If FILENAME is a string, save the PostScript image in a file | |
3728 with that name. If FILENAME is t, prompts for a file name." | |
3729 (interactive (pr-interactive-n-up-file (pr-prompt "PS preview"))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3730 (if (pr-auto-mode-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3731 (pr-ps-mode-preview n-up filename) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3732 (pr-ps-preview (pr-region-active-symbol) n-up filename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3733 (pr-region-active-string "PS preview")))) |
49646 | 3734 |
3735 | |
3736 ;;;###autoload | |
3737 (defun pr-ps-buffer-using-ghostscript (n-up &optional filename) | |
3738 "Print buffer using PostScript through ghostscript. | |
3739 | |
3740 Interactively, the command prompts for N-UP printing number and, when you use a | |
3741 prefix argument (C-u), the command prompts the user for a file name, and saves | |
3742 the PostScript image in that file instead of sending it to the printer. | |
3743 | |
3744 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The | |
3745 argument FILENAME is treated as follows: if it's nil, send the image to the | |
3746 printer. If FILENAME is a string, save the PostScript image in a file with | |
3747 that name. If FILENAME is t, prompts for a file name." | |
3748 (interactive (pr-interactive-n-up-file (pr-prompt "PS print GS"))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3749 (if (pr-auto-mode-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3750 (pr-ps-mode-using-ghostscript n-up filename) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3751 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3752 (pr-region-active-string "PS print GS")))) |
49646 | 3753 |
3754 | |
3755 ;;;###autoload | |
3756 (defun pr-ps-buffer-print (n-up &optional filename) | |
3757 "Print buffer using PostScript printer. | |
3758 | |
3759 Interactively, the command prompts for N-UP printing number and, when you use a | |
3760 prefix argument (C-u), the command prompts the user for a file name, and saves | |
3761 the PostScript image in that file instead of sending it to the printer. | |
3762 | |
3763 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The | |
3764 argument FILENAME is treated as follows: if it's nil, send the image to the | |
3765 printer. If FILENAME is a string, save the PostScript image in a file with | |
3766 that name. If FILENAME is t, prompts for a file name." | |
3767 (interactive (pr-interactive-n-up-file (pr-prompt "PS print"))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3768 (if (pr-auto-mode-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3769 (pr-ps-mode-print n-up filename) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3770 (pr-ps-print (pr-region-active-symbol) n-up filename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3771 (pr-region-active-string "PS print")))) |
49646 | 3772 |
3773 | |
3774 ;;;###autoload | |
3775 (defun pr-ps-buffer-ps-print (n-up &optional filename) | |
3776 "Print buffer using PostScript printer or through ghostscript. | |
3777 | |
3778 It depends on `pr-print-using-ghostscript'. | |
3779 | |
3780 Interactively, the command prompts for N-UP printing number and, when you use a | |
3781 prefix argument (C-u), the command prompts the user for a file name, and saves | |
3782 the PostScript image in that file instead of sending it to the printer. | |
3783 | |
3784 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The | |
3785 argument FILENAME is treated as follows: if it's nil, send the image to the | |
3786 printer. If FILENAME is a string, save the PostScript image in a file with | |
3787 that name. If FILENAME is t, prompts for a file name." | |
3788 (interactive (pr-interactive-n-up-file | |
3789 (pr-prompt (pr-prompt-gs "PS print")))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3790 (cond ((pr-auto-mode-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3791 (pr-ps-mode-ps-print n-up filename)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3792 ((pr-using-ghostscript-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3793 (pr-ps-using-ghostscript (pr-region-active-symbol) n-up filename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3794 (pr-region-active-string "PS print GS"))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3795 (t |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3796 (pr-ps-print (pr-region-active-symbol) n-up filename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3797 (pr-region-active-string "PS print"))))) |
49646 | 3798 |
3799 | |
3800 ;;;###autoload | |
3801 (defun pr-ps-region-preview (n-up &optional filename) | |
3802 "Preview region using ghostview. | |
3803 | |
3804 See also `pr-ps-buffer-preview'." | |
3805 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS preview"))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3806 (if (pr-auto-mode-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3807 (let ((pr-auto-region t)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3808 (pr-ps-mode-preview n-up filename)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3809 (pr-ps-preview 'region n-up filename "PS preview region"))) |
49646 | 3810 |
3811 | |
3812 ;;;###autoload | |
3813 (defun pr-ps-region-using-ghostscript (n-up &optional filename) | |
3814 "Print region using PostScript through ghostscript. | |
3815 | |
3816 See also `pr-ps-buffer-using-ghostscript'." | |
3817 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print GS"))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3818 (if (pr-auto-mode-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3819 (let ((pr-auto-region t)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3820 (pr-ps-mode-using-ghostscript n-up filename)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3821 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region"))) |
49646 | 3822 |
3823 | |
3824 ;;;###autoload | |
3825 (defun pr-ps-region-print (n-up &optional filename) | |
3826 "Print region using PostScript printer. | |
3827 | |
3828 See also `pr-ps-buffer-print'." | |
3829 (interactive (pr-interactive-n-up-file (pr-prompt-region "PS print"))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3830 (if (pr-auto-mode-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3831 (let ((pr-auto-region t)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3832 (pr-ps-mode-print n-up filename)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3833 (pr-ps-print 'region n-up filename "PS print region"))) |
49646 | 3834 |
3835 | |
3836 ;;;###autoload | |
3837 (defun pr-ps-region-ps-print (n-up &optional filename) | |
3838 "Print region using PostScript printer or through ghostscript. | |
3839 | |
3840 See also `pr-ps-buffer-ps-print'." | |
3841 (interactive (pr-interactive-n-up-file | |
3842 (pr-prompt-region (pr-prompt-gs "PS print")))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3843 (cond ((pr-auto-mode-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3844 (let ((pr-auto-region t)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3845 (pr-ps-mode-ps-print n-up filename))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3846 ((pr-using-ghostscript-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3847 (pr-ps-using-ghostscript 'region n-up filename "PS print GS region")) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3848 (t |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3849 (pr-ps-print 'region n-up filename "PS print region")))) |
49646 | 3850 |
3851 | |
3852 ;;;###autoload | |
3853 (defun pr-ps-mode-preview (n-up &optional filename) | |
3854 "Preview major mode using ghostview. | |
3855 | |
3856 See also `pr-ps-buffer-preview'." | |
3857 (interactive (pr-interactive-n-up-file "PS preview mode")) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3858 (pr-set-n-up-and-filename 'n-up 'filename "PS preview mode") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3859 (let ((file (pr-ps-file filename))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3860 (and (pr-ps-mode n-up file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3861 (not pr-spool-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3862 (pr-ps-file-preview file)))) |
49646 | 3863 |
3864 | |
3865 ;;;###autoload | |
3866 (defun pr-ps-mode-using-ghostscript (n-up &optional filename) | |
3867 "Print major mode using PostScript through ghostscript. | |
3868 | |
3869 See also `pr-ps-buffer-using-ghostscript'." | |
3870 (interactive (pr-interactive-n-up-file "PS print GS mode")) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3871 (pr-set-n-up-and-filename 'n-up 'filename "PS print GS mode") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3872 (let ((file (pr-ps-file filename))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3873 (when (and (pr-ps-mode n-up file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3874 (not pr-spool-p)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3875 (pr-ps-file-using-ghostscript file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3876 (or filename (pr-delete-file file))))) |
49646 | 3877 |
3878 | |
3879 ;;;###autoload | |
3880 (defun pr-ps-mode-print (n-up &optional filename) | |
3881 "Print major mode using PostScript printer. | |
3882 | |
3883 See also `pr-ps-buffer-print'." | |
3884 (interactive (pr-interactive-n-up-file "PS print mode")) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3885 (pr-set-n-up-and-filename 'n-up 'filename "PS print mode") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3886 (pr-ps-mode n-up filename)) |
49646 | 3887 |
3888 | |
3889 ;;;###autoload | |
3890 (defun pr-ps-mode-ps-print (n-up &optional filename) | |
3891 "Print major mode using PostScript or through ghostscript. | |
3892 | |
3893 See also `pr-ps-buffer-ps-print'." | |
3894 (interactive (pr-interactive-n-up-file (pr-prompt-gs "PS print mode"))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3895 (if (pr-using-ghostscript-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3896 (pr-ps-mode-using-ghostscript n-up filename) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3897 (pr-ps-mode-print n-up filename))) |
49646 | 3898 |
3899 | |
3900 ;;;###autoload | |
3901 (defun pr-printify-directory (&optional dir file-regexp) | |
3902 "Replace nonprinting characters in directory with printable representations. | |
3903 The printable representations use ^ (for ASCII control characters) or hex. | |
3904 The characters tab, linefeed, space, return and formfeed are not affected. | |
3905 | |
3906 Interactively, the command prompts for a directory and a file name regexp for | |
3907 matching. | |
3908 | |
3909 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil, | |
3910 prompts for FILE(name)-REGEXP. | |
3911 | |
3912 See also documentation for `pr-list-directory'." | |
3913 (interactive (pr-interactive-dir-args "Printify dir")) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3914 (pr-set-dir-args 'dir 'file-regexp "Printify dir") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3915 (pr-file-list dir file-regexp 'pr-printify-buffer)) |
49646 | 3916 |
3917 | |
3918 ;;;###autoload | |
3919 (defun pr-printify-buffer () | |
3920 "Replace nonprinting characters in buffer with printable representations. | |
3921 The printable representations use ^ (for ASCII control characters) or hex. | |
3922 The characters tab, linefeed, space, return and formfeed are not affected." | |
3923 (interactive "*") | |
3924 (if (pr-region-active-p) | |
3925 (pr-printify-region) | |
3926 (printify-region (point-min) (point-max)))) | |
3927 | |
3928 | |
3929 ;;;###autoload | |
3930 (defun pr-printify-region () | |
3931 "Replace nonprinting characters in region with printable representations. | |
3932 The printable representations use ^ (for ASCII control characters) or hex. | |
3933 The characters tab, linefeed, space, return and formfeed are not affected." | |
3934 (interactive "*") | |
3935 (printify-region (point) (mark))) | |
3936 | |
3937 | |
3938 ;;;###autoload | |
3939 (defun pr-txt-directory (&optional dir file-regexp) | |
3940 "Print directory using text printer. | |
3941 | |
3942 Interactively, the command prompts for a directory and a file name regexp for | |
3943 matching. | |
3944 | |
3945 Noninteractively, if DIR is nil, prompts for DIRectory. If FILE-REGEXP is nil, | |
3946 prompts for FILE(name)-REGEXP. | |
3947 | |
3948 See also documentation for `pr-list-directory'." | |
3949 (interactive (pr-interactive-dir-args "Print dir")) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3950 (pr-set-dir-args 'dir 'file-regexp "Print dir") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3951 (pr-file-list dir file-regexp 'pr-txt-buffer)) |
49646 | 3952 |
3953 | |
3954 ;;;###autoload | |
3955 (defun pr-txt-buffer () | |
3956 "Print buffer using text printer." | |
3957 (interactive) | |
3958 (cond ((pr-auto-mode-p) | |
3959 (pr-txt-mode)) | |
3960 ((pr-region-active-p) | |
3961 (pr-txt-region)) | |
3962 (t | |
3963 (pr-txt-print (point-min) (point-max))))) | |
3964 | |
3965 | |
3966 ;;;###autoload | |
3967 (defun pr-txt-region () | |
3968 "Print region using text printer." | |
3969 (interactive) | |
3970 (if (pr-auto-mode-p) | |
3971 (let ((pr-auto-region t)) | |
3972 (pr-txt-mode)) | |
3973 (pr-txt-print (point) (mark)))) | |
3974 | |
3975 | |
3976 ;;;###autoload | |
3977 (defun pr-txt-mode () | |
3978 "Print major mode using text printer." | |
3979 (interactive) | |
3980 (let ((args (pr-mode-alist-p))) | |
3981 (if args | |
3982 (funcall (car args) (nthcdr 2 args)) | |
3983 (ding) | |
3984 (message "`%s' major mode not declared." major-mode)))) | |
3985 | |
3986 | |
3987 ;;;###autoload | |
3988 (defun pr-despool-preview (&optional filename) | |
3989 "Preview spooled PostScript. | |
3990 | |
3991 Interactively, when you use a prefix argument (C-u), the command prompts the | |
3992 user for a file name, and saves the spooled PostScript image in that file | |
3993 instead of saving it in a temporary file. | |
3994 | |
3995 Noninteractively, the argument FILENAME is treated as follows: if it is nil, | |
3996 save the image in a temporary file. If FILENAME is a string, save the | |
3997 PostScript image in a file with that name." | |
3998 (interactive (list (ps-print-preprint current-prefix-arg))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
3999 (let ((file (pr-ps-file filename))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4000 (when (stringp file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4001 (pr-despool-print file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4002 (pr-ps-file-preview file)))) |
49646 | 4003 |
4004 | |
4005 ;;;###autoload | |
4006 (defun pr-despool-using-ghostscript (&optional filename) | |
4007 "Print spooled PostScript using ghostscript. | |
4008 | |
4009 Interactively, when you use a prefix argument (C-u), the command prompts the | |
4010 user for a file name, and saves the spooled PostScript image in that file | |
4011 instead of sending it to the printer. | |
4012 | |
4013 Noninteractively, the argument FILENAME is treated as follows: if it is nil, | |
4014 send the image to the printer. If FILENAME is a string, save the PostScript | |
4015 image in a file with that name." | |
4016 (interactive (list (ps-print-preprint current-prefix-arg))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4017 (let ((file (pr-ps-file filename))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4018 (when (stringp file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4019 (pr-despool-print file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4020 (pr-ps-file-using-ghostscript file) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4021 (or filename (pr-delete-file file))))) |
49646 | 4022 |
4023 | |
4024 ;;;###autoload | |
4025 (defun pr-despool-print (&optional filename) | |
4026 "Send the spooled PostScript to the printer. | |
4027 | |
4028 Interactively, when you use a prefix argument (C-u), the command prompts the | |
4029 user for a file name, and saves the spooled PostScript image in that file | |
4030 instead of sending it to the printer. | |
4031 | |
4032 Noninteractively, the argument FILENAME is treated as follows: if it is nil, | |
4033 send the image to the printer. If FILENAME is a string, save the PostScript | |
4034 image in a file with that name." | |
4035 (interactive (list (ps-print-preprint current-prefix-arg))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4036 (pr-save-file-modes |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4037 (let ((ps-lpr-command (pr-command pr-ps-command)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4038 (ps-lpr-switches pr-ps-switches) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4039 (ps-printer-name-option pr-ps-printer-switch) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4040 (ps-printer-name pr-ps-printer)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4041 (ps-despool filename)))) |
49646 | 4042 |
4043 | |
4044 ;;;###autoload | |
4045 (defun pr-despool-ps-print (&optional filename) | |
4046 "Send the spooled PostScript to the printer or use ghostscript to print it. | |
4047 | |
4048 Interactively, when you use a prefix argument (C-u), the command prompts the | |
4049 user for a file name, and saves the spooled PostScript image in that file | |
4050 instead of sending it to the printer. | |
4051 | |
4052 Noninteractively, the argument FILENAME is treated as follows: if it is nil, | |
4053 send the image to the printer. If FILENAME is a string, save the PostScript | |
4054 image in a file with that name." | |
4055 (interactive (list (ps-print-preprint current-prefix-arg))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4056 (if pr-print-using-ghostscript |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4057 (pr-despool-using-ghostscript filename) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4058 (pr-despool-print filename))) |
49646 | 4059 |
4060 | |
4061 ;;;###autoload | |
4062 (defun pr-ps-file-preview (filename) | |
4063 "Preview PostScript file FILENAME." | |
4064 (interactive (list (pr-ps-infile-preprint "Preview "))) | |
4065 (and (stringp filename) (file-exists-p filename) | |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4066 (pr-call-process pr-gv-command filename))) |
49646 | 4067 |
4068 | |
4069 ;;;###autoload | |
4070 (defun pr-ps-file-up-preview (n-up ifilename &optional ofilename) | |
4071 "Preview PostScript file FILENAME." | |
4072 (interactive (pr-interactive-n-up-inout "PS preview")) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4073 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4074 "PS preview "))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4075 (pr-ps-utility-process n-up ifilename outfile) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4076 (pr-ps-file-preview outfile))) |
49646 | 4077 |
4078 | |
4079 ;;;###autoload | |
4080 (defun pr-ps-file-using-ghostscript (filename) | |
4081 "Print PostScript file FILENAME using ghostscript." | |
4082 (interactive (list (pr-ps-infile-preprint "Print preview "))) | |
4083 (and (stringp filename) (file-exists-p filename) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4084 (let* ((file (pr-expand-file-name filename)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4085 (tempfile (pr-dosify-file-name (make-temp-file file)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4086 ;; gs use |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4087 (pr-call-process pr-gs-command |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4088 (format "-sDEVICE=%s" pr-gs-device) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4089 (format "-r%d" pr-gs-resolution) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4090 (pr-switches-string pr-gs-switches "pr-gs-switches") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4091 (format "-sOutputFile=\"%s\"" tempfile) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4092 file |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4093 "-c quit") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4094 ;; printing |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4095 (pr-ps-file-print tempfile) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4096 ;; deleting |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4097 (pr-delete-file tempfile)))) |
49646 | 4098 |
4099 | |
4100 ;;;###autoload | |
4101 (defun pr-ps-file-print (filename) | |
4102 "Print PostScript file FILENAME." | |
4103 (interactive (list (pr-ps-infile-preprint "Print "))) | |
4104 (and (stringp filename) (file-exists-p filename) | |
4105 ;; printing | |
4106 (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
|
4107 (if (string= pr-ps-command "") |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
4108 ;; default action |
49646 | 4109 (let ((ps-spool-buffer (get-buffer-create ps-spool-buffer-name))) |
4110 (save-excursion | |
4111 (set-buffer ps-spool-buffer) | |
4112 (erase-buffer) | |
4113 (insert-file-contents-literally file)) | |
4114 (pr-despool-print)) | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
4115 ;; use `pr-ps-command' to print |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4116 (apply 'pr-call-process |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4117 pr-ps-command |
58241
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
4118 (pr-switches-string pr-ps-switches "pr-ps-switches") |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4119 (if (string-match "cp" pr-ps-command) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4120 ;; for "cp" (cmd in out) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4121 (list file |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4122 (concat pr-ps-printer-switch pr-ps-printer)) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4123 ;; else, for others (cmd out in) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4124 (list (concat pr-ps-printer-switch pr-ps-printer) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4125 file))))))) |
49646 | 4126 |
4127 | |
4128 ;;;###autoload | |
4129 (defun pr-ps-file-ps-print (filename) | |
4130 "Send PostScript file FILENAME to printer or use ghostscript to print it." | |
4131 (interactive (list (pr-ps-infile-preprint | |
4132 (if pr-print-using-ghostscript | |
4133 "Print preview " | |
4134 "Print ")))) | |
4135 (if pr-print-using-ghostscript | |
4136 (pr-ps-file-using-ghostscript filename) | |
4137 (pr-ps-file-print filename))) | |
4138 | |
4139 | |
4140 ;;;###autoload | |
4141 (defun pr-ps-file-up-ps-print (n-up ifilename &optional ofilename) | |
4142 "Process a PostScript file IFILENAME and send it to printer. | |
4143 | |
4144 Interactively, the command prompts for N-UP printing number, for an input | |
4145 PostScript file IFILENAME and, when you use a prefix argument (C-u), the | |
4146 command prompts the user for an output PostScript file name OFILENAME, and | |
4147 saves the PostScript image in that file instead of sending it to the printer. | |
4148 | |
4149 Noninteractively, if N-UP is nil, prompts for N-UP printing number. The | |
4150 argument IFILENAME is treated as follows: if it's t, prompts for an input | |
4151 PostScript file name; otherwise, it *must* be a string that it's an input | |
4152 PostScript file name. The argument OFILENAME is treated as follows: if it's | |
4153 nil, send the image to the printer. If OFILENAME is a string, save the | |
4154 PostScript image in a file with that name. If OFILENAME is t, prompts for a | |
4155 file name." | |
4156 (interactive (pr-interactive-n-up-inout | |
4157 (if pr-print-using-ghostscript | |
4158 "PS print GS" | |
4159 "PS print"))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4160 (let ((outfile (pr-ps-utility-args 'n-up 'ifilename 'ofilename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4161 (if pr-print-using-ghostscript |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4162 "PS print GS " |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4163 "PS print ")))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4164 (pr-ps-utility-process n-up ifilename outfile) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4165 (unless ofilename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4166 (pr-ps-file-ps-print outfile) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4167 (pr-delete-file outfile)))) |
49646 | 4168 |
4169 | |
4170 ;;;###autoload | |
4171 (defun pr-toggle-file-duplex () | |
4172 "Toggle duplex for PostScript file." | |
4173 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4174 (pr-toggle-file-duplex-menu t)) |
49646 | 4175 |
4176 | |
4177 ;;;###autoload | |
4178 (defun pr-toggle-file-tumble () | |
4179 "Toggle tumble for PostScript file. | |
4180 | |
4181 If tumble is off, produces a printing suitable for binding on the left or | |
4182 right. | |
4183 If tumble is on, produces a printing suitable for binding at the top or | |
4184 bottom." | |
4185 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4186 (pr-toggle-file-tumble-menu t)) |
49646 | 4187 |
4188 | |
4189 ;;;###autoload | |
4190 (defun pr-toggle-file-landscape () | |
4191 "Toggle landscape for PostScript file." | |
4192 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4193 (pr-toggle-file-landscape-menu t)) |
49646 | 4194 |
4195 | |
4196 ;;;###autoload | |
4197 (defun pr-toggle-ghostscript () | |
4198 "Toggle printing using ghostscript." | |
4199 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4200 (pr-toggle-ghostscript-menu t)) |
49646 | 4201 |
4202 | |
4203 ;;;###autoload | |
4204 (defun pr-toggle-faces () | |
4205 "Toggle printing with faces." | |
4206 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4207 (pr-toggle-faces-menu t)) |
49646 | 4208 |
4209 | |
4210 ;;;###autoload | |
4211 (defun pr-toggle-spool () | |
4212 "Toggle spooling." | |
4213 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4214 (pr-toggle-spool-menu t)) |
49646 | 4215 |
4216 | |
4217 ;;;###autoload | |
4218 (defun pr-toggle-duplex () | |
4219 "Toggle duplex." | |
4220 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4221 (pr-toggle-duplex-menu t)) |
49646 | 4222 |
4223 | |
4224 ;;;###autoload | |
4225 (defun pr-toggle-tumble () | |
4226 "Toggle tumble. | |
4227 | |
4228 If tumble is off, produces a printing suitable for binding on the left or | |
4229 right. | |
4230 If tumble is on, produces a printing suitable for binding at the top or | |
4231 bottom." | |
4232 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4233 (pr-toggle-tumble-menu t)) |
49646 | 4234 |
4235 | |
4236 ;;;###autoload | |
4237 (defun pr-toggle-landscape () | |
4238 "Toggle landscape." | |
4239 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4240 (pr-toggle-landscape-menu t)) |
49646 | 4241 |
4242 | |
4243 ;;;###autoload | |
4244 (defun pr-toggle-upside-down () | |
4245 "Toggle upside-down." | |
4246 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4247 (pr-toggle-upside-down-menu t)) |
49646 | 4248 |
4249 | |
4250 ;;;###autoload | |
4251 (defun pr-toggle-line () | |
4252 "Toggle line number." | |
4253 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4254 (pr-toggle-line-menu t)) |
49646 | 4255 |
4256 | |
4257 ;;;###autoload | |
4258 (defun pr-toggle-zebra () | |
4259 "Toggle zebra stripes." | |
4260 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4261 (pr-toggle-zebra-menu t)) |
49646 | 4262 |
4263 | |
4264 ;;;###autoload | |
4265 (defun pr-toggle-header () | |
4266 "Toggle printing header." | |
4267 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4268 (pr-toggle-header-menu t)) |
49646 | 4269 |
4270 | |
4271 ;;;###autoload | |
4272 (defun pr-toggle-header-frame () | |
4273 "Toggle printing header frame." | |
4274 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4275 (pr-toggle-header-frame-menu t)) |
49646 | 4276 |
4277 | |
4278 ;;;###autoload | |
4279 (defun pr-toggle-lock () | |
4280 "Toggle menu lock." | |
4281 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4282 (pr-toggle-lock-menu t)) |
49646 | 4283 |
4284 | |
4285 ;;;###autoload | |
4286 (defun pr-toggle-region () | |
4287 "Toggle auto region." | |
4288 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4289 (pr-toggle-region-menu t)) |
49646 | 4290 |
4291 | |
4292 ;;;###autoload | |
4293 (defun pr-toggle-mode () | |
4294 "Toggle auto mode." | |
4295 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4296 (pr-toggle-mode-menu t)) |
49646 | 4297 |
4298 | |
4299 ;;;###autoload | |
4300 (defun pr-customize (&rest ignore) | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4301 "Customization of the `printing' group." |
49646 | 4302 (interactive) |
4303 (customize-group 'printing)) | |
4304 | |
4305 | |
4306 ;;;###autoload | |
4307 (defun lpr-customize (&rest ignore) | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4308 "Customization of the `lpr' group." |
49646 | 4309 (interactive) |
4310 (customize-group 'lpr)) | |
4311 | |
4312 | |
4313 ;;;###autoload | |
4314 (defun pr-help (&rest ignore) | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4315 "Help for the printing package." |
49646 | 4316 (interactive) |
4317 (pr-show-setup pr-help-message "*Printing Help*")) | |
4318 | |
4319 | |
4320 ;;;###autoload | |
4321 (defun pr-ps-name () | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4322 "Interactively select a PostScript printer." |
49646 | 4323 (interactive) |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4324 (pr-menu-set-ps-title |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4325 (pr-complete-alist "PostScript printer" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4326 pr-ps-printer-alist pr-ps-name))) |
49646 | 4327 |
4328 | |
4329 ;;;###autoload | |
4330 (defun pr-txt-name () | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4331 "Interactively select a text printer." |
49646 | 4332 (interactive) |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4333 (pr-menu-set-txt-title |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4334 (pr-complete-alist "Text printer" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4335 pr-txt-printer-alist pr-txt-name))) |
49646 | 4336 |
4337 | |
4338 ;;;###autoload | |
4339 (defun pr-ps-utility () | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4340 "Interactively select a PostScript utility." |
49646 | 4341 (interactive) |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4342 (pr-menu-set-utility-title |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4343 (pr-complete-alist "Postscript utility" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4344 pr-ps-utility-alist pr-ps-utility))) |
49646 | 4345 |
4346 | |
4347 ;;;###autoload | |
4348 (defun pr-show-ps-setup (&rest ignore) | |
4349 "Show current ps-print settings." | |
4350 (interactive) | |
4351 (pr-show-setup (ps-setup) "*PS Setup*")) | |
4352 | |
4353 | |
4354 ;;;###autoload | |
4355 (defun pr-show-pr-setup (&rest ignore) | |
4356 "Show current printing settings." | |
4357 (interactive) | |
4358 (pr-show-setup (pr-setup) "*PR Setup*")) | |
4359 | |
4360 | |
4361 ;;;###autoload | |
4362 (defun pr-show-lpr-setup (&rest ignore) | |
4363 "Show current lpr settings." | |
4364 (interactive) | |
4365 (pr-show-setup (lpr-setup) "*LPR Setup*")) | |
4366 | |
4367 | |
4368 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
4369 ;; Fast Commands | |
4370 | |
4371 | |
4372 ;;;###autoload | |
4373 (defun pr-ps-fast-fire (n-up &optional select) | |
4374 "Fast fire function for PostScript printing. | |
4375 | |
4376 If a region is active, the region will be printed instead of the whole buffer. | |
4377 Also if the current major-mode is defined in `pr-mode-alist', the settings in | |
4378 `pr-mode-alist' will be used, that is, the current buffer or region will be | |
4379 printed using `pr-ps-mode-ps-print'. | |
4380 | |
4381 | |
4382 Interactively, you have the following situations: | |
4383 | |
4384 M-x pr-ps-fast-fire RET | |
4385 The command prompts the user for a N-UP value and printing will | |
4386 immediatelly be done using the current active printer. | |
4387 | |
4388 C-u M-x pr-ps-fast-fire RET | |
4389 C-u 0 M-x pr-ps-fast-fire RET | |
4390 The command prompts the user for a N-UP value and also for a current | |
4391 PostScript printer, then printing will immediatelly be done using the new | |
4392 current active printer. | |
4393 | |
4394 C-u 1 M-x pr-ps-fast-fire RET | |
4395 The command prompts the user for a N-UP value and also for a file name, | |
4396 and saves the PostScript image in that file instead of sending it to the | |
4397 printer. | |
4398 | |
4399 C-u 2 M-x pr-ps-fast-fire RET | |
4400 The command prompts the user for a N-UP value, then for a current | |
4401 PostScript printer and, finally, for a file name. Then change the active | |
4402 printer to that choosen by user and saves the PostScript image in | |
4403 that file instead of sending it to the printer. | |
4404 | |
4405 | |
4406 Noninteractively, the argument N-UP should be a positive integer greater than | |
4407 zero and the argument SELECT is treated as follows: | |
4408 | |
4409 If it's nil, send the image to the printer. | |
4410 | |
4411 If it's a list or an integer lesser or equal to zero, the command prompts | |
4412 the user for a current PostScript printer, then printing will immediatelly | |
4413 be done using the new current active printer. | |
4414 | |
4415 If it's an integer equal to 1, the command prompts the user for a file name | |
4416 and saves the PostScript image in that file instead of sending it to the | |
4417 printer. | |
4418 | |
4419 If it's an integer greater or equal to 2, the command prompts the user for a | |
4420 current PostScript printer and for a file name. Then change the active | |
4421 printer to that choosen by user and saves the PostScript image in that file | |
4422 instead of sending it to the printer. | |
4423 | |
4424 If it's a symbol which it's defined in `pr-ps-printer-alist', it's the new | |
4425 active printer and printing will immediatelly be done using the new active | |
4426 printer. | |
4427 | |
4428 Otherwise, send the image to the printer. | |
4429 | |
4430 | |
4431 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode' | |
4432 are both set to t." | |
4433 (interactive (list (pr-interactive-n-up (pr-prompt-gs "PS print fast")) | |
4434 current-prefix-arg)) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4435 (let ((pr-auto-region t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4436 (pr-auto-mode t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4437 filename) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4438 (cond ((null select)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4439 ((listp select) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4440 (pr-ps-name)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4441 ((and (symbolp select) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4442 (assq select pr-ps-printer-alist)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4443 (pr-menu-set-ps-title select)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4444 ((integerp select) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4445 (and (/= select 1) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4446 (pr-ps-name)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4447 (and (>= select 1) (not pr-spool-p) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4448 (setq filename (pr-ps-outfile-preprint |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4449 (if pr-print-using-ghostscript |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4450 "Fast GS " |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4451 "Fast ")))))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4452 (pr-ps-buffer-ps-print |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4453 (if (integerp n-up) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4454 (min (max n-up 1) 100) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4455 (error "n-up must be an integer greater than zero")) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4456 filename))) |
49646 | 4457 |
4458 | |
4459 ;;;###autoload | |
4460 (defun pr-txt-fast-fire (&optional select-printer) | |
4461 "Fast fire function for text printing. | |
4462 | |
4463 If a region is active, the region will be printed instead of the whole buffer. | |
4464 Also if the current major-mode is defined in `pr-mode-alist', the settings in | |
4465 `pr-mode-alist' will be used, that is, the current buffer or region will be | |
4466 printed using `pr-txt-mode'. | |
4467 | |
4468 Interactively, when you use a prefix argument (C-u), the command prompts the | |
4469 user for a new active text printer. | |
4470 | |
4471 Noninteractively, the argument SELECT-PRINTER is treated as follows: | |
4472 | |
4473 If it's nil, the printing is sent to the current active text printer. | |
4474 | |
4475 If it's a symbol which it's defined in `pr-txt-printer-alist', it's the new | |
4476 active printer and printing will immediatelly be done using the new active | |
4477 printer. | |
4478 | |
4479 If it's non-nil, the command prompts the user for a new active text printer. | |
4480 | |
4481 Note that this command always behaves as if `pr-auto-region' and `pr-auto-mode' | |
4482 are both set to t." | |
4483 (interactive (list current-prefix-arg)) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4484 (cond ((null select-printer)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4485 ((and (symbolp select-printer) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4486 (assq select-printer pr-txt-printer-alist)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4487 (pr-menu-set-txt-title select-printer)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4488 (t |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4489 (pr-txt-name))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4490 (let ((pr-auto-region t) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4491 (pr-auto-mode t)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4492 (pr-txt-buffer))) |
49646 | 4493 |
4494 | |
4495 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
4496 ;; Utilities | |
4497 | |
4498 | |
4499 (defun pr-setup () | |
4500 "Return the current `printing' setup. | |
4501 | |
4502 This is *not* an interactive command. | |
4503 One way to see `printing' setup is to switch to a *Scratch* buffer and type: | |
4504 | |
4505 M-: (insert (pr-setup)) RET | |
4506 | |
4507 Or choose the menu option Printing/Show Settings/printing." | |
4508 (let (ps-prefix-quote) | |
4509 (mapconcat | |
4510 #'ps-print-quote | |
4511 (list | |
4512 (concat "\n;;; printing.el version " pr-version "\n") | |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4513 ";; internal vars" |
58408
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4514 (ps-comment-string "emacs-version " emacs-version) |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4515 (ps-comment-string "pr-txt-command " pr-txt-command) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4516 (ps-comment-string "pr-txt-switches " |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4517 (pr-switches-string pr-txt-switches "pr-txt-switches")) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4518 (ps-comment-string "pr-txt-printer " pr-txt-printer) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4519 (ps-comment-string "pr-ps-command " pr-ps-command) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4520 (ps-comment-string "pr-ps-switches " |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4521 (pr-switches-string pr-ps-switches "pr-ps-switches")) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4522 (ps-comment-string "pr-ps-printer-switch" pr-ps-printer-switch) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4523 (ps-comment-string "pr-ps-printer " pr-ps-printer) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4524 (ps-comment-string "pr-cygwin-system " pr-cygwin-system) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4525 (ps-comment-string "ps-windows-system " ps-windows-system) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4526 (ps-comment-string "ps-lp-system " ps-lp-system) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4527 nil |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4528 '(14 . pr-path-style) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
4529 '(14 . pr-path-alist) |
49646 | 4530 nil |
4531 '(21 . pr-txt-name) | |
4532 '(21 . pr-txt-printer-alist) | |
4533 nil | |
4534 '(20 . pr-ps-name) | |
4535 '(20 . pr-ps-printer-alist) | |
4536 nil | |
4537 '(20 . pr-temp-dir) | |
4538 '(20 . pr-ps-temp-file) | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
4539 '(20 . pr-file-modes) |
49646 | 4540 '(20 . pr-delete-temp-file) |
4541 '(20 . pr-list-directory) | |
4542 nil | |
4543 '(17 . pr-gv-command) | |
4544 '(17 . pr-gs-command) | |
4545 '(17 . pr-gs-switches) | |
4546 '(17 . pr-gs-device) | |
4547 '(17 . pr-gs-resolution) | |
4548 nil | |
4549 '(27 . pr-print-using-ghostscript) | |
4550 '(27 . pr-faces-p) | |
4551 '(27 . pr-spool-p) | |
4552 '(27 . pr-file-landscape) | |
4553 '(27 . pr-file-duplex) | |
4554 '(27 . pr-file-tumble) | |
4555 '(27 . pr-auto-region) | |
4556 '(27 . pr-auto-mode) | |
4557 nil | |
4558 '(20 . pr-ps-utility) | |
4559 '(20 . pr-ps-utility-alist) | |
4560 nil | |
4561 '(14 . pr-mode-alist) | |
4562 nil | |
4563 '(20 . pr-menu-lock) | |
4564 '(20 . pr-menu-char-height) | |
4565 '(20 . pr-menu-char-width) | |
4566 nil | |
4567 '(20 . pr-setting-database) | |
4568 nil | |
4569 '(22 . pr-visible-entry-list) | |
4570 nil | |
4571 '(22 . pr-buffer-verbose) | |
4572 '(22 . pr-buffer-name) | |
4573 '(22 . pr-buffer-name-ignore) | |
4574 ")\n\n;;; printing.el - end of settings\n") | |
4575 "\n"))) | |
4576 | |
4577 | |
4578 (defun lpr-setup () | |
4579 "Return the current `lpr' setup. | |
4580 | |
4581 This is *not* an interactive command. | |
4582 One way to see `lpr' setup is to switch to a *Scratch* buffer and type: | |
4583 | |
4584 M-: (insert (lpr-setup)) RET | |
4585 | |
4586 Or choose the menu option Printing/Show Settings/lpr." | |
4587 (let (ps-prefix-quote) | |
4588 (mapconcat | |
4589 #'ps-print-quote | |
58408
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4590 (list |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4591 "\n;;; lpr.el settings\n" |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4592 (ps-comment-string "emacs-version" emacs-version) |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4593 nil |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4594 '(25 . printer-name) |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4595 '(25 . lpr-switches) |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4596 '(25 . lpr-add-switches) |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4597 '(25 . lpr-command) |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4598 '(25 . lpr-headers-switches) |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4599 '(25 . print-region-function) |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4600 '(25 . lpr-page-header-program) |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4601 '(25 . lpr-page-header-switches) |
6b5846d74ff0
pr-setup & lpr-setup
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58306
diff
changeset
|
4602 ")\n\n;;; lpr.el - end of settings\n") |
49646 | 4603 "\n"))) |
4604 | |
4605 | |
4606 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
4607 ;; mh-e (adapted from mh-e-init.el -- Tom Vogels <tov@ece.cmu.edu>) | |
4608 | |
4609 | |
4610 (defalias 'pr-mh-get-msg-num 'mh-get-msg-num) | |
4611 (defalias 'pr-mh-show 'mh-show) | |
4612 (defalias 'pr-mh-start-of-uncleaned-message 'mh-start-of-uncleaned-message) | |
4613 (defvar mh-show-buffer nil) | |
4614 | |
4615 | |
4616 (defun pr-article-date () | |
4617 "Find the date of an article or mail message in current buffer. | |
4618 Return only the dayname, if present, weekday, month, and year." | |
4619 (save-excursion | |
4620 (goto-char (point-min)) | |
4621 (if (re-search-forward | |
4622 "^Date:[ \t]+\\(\\([A-Za-z]+, \\)?[0-9]+ [A-Za-z]+ [0-9]+\\)" nil t) | |
4623 (buffer-substring (match-beginning 1) (match-end 1)) | |
4624 (format-time-string "%Y/%m/%d")))) | |
4625 | |
4626 | |
4627 (defun pr-mh-current-message () | |
4628 "Go to mh-inbox current message." | |
4629 (let ((msg (or (pr-mh-get-msg-num nil) 0))) | |
4630 (pr-mh-show) | |
4631 (set-buffer mh-show-buffer) | |
4632 (goto-char (point-min)) | |
4633 (pr-mh-start-of-uncleaned-message) | |
4634 (message "Printing message %d" msg))) | |
4635 | |
4636 | |
4637 (defun pr-mh-print-1 (n-up filename header-list) | |
4638 "Print mh-inbox current message in PostScript." | |
4639 (save-excursion | |
4640 (save-window-excursion | |
4641 (pr-mh-current-message) | |
4642 (pr-mode-print n-up filename header-list (point))))) | |
4643 | |
4644 | |
4645 (defun pr-mh-lpr-1 (header-list) | |
4646 "Print mh-inbox current message in text printer." | |
4647 (save-excursion | |
4648 (save-window-excursion | |
4649 (pr-mh-current-message) | |
4650 (pr-mode-lpr header-list (point))))) | |
4651 | |
4652 | |
4653 (defalias 'pr-mh-print-2 'pr-mode-print) | |
4654 | |
4655 | |
4656 (defalias 'pr-mh-lpr-2 'pr-mode-lpr) | |
4657 | |
4658 | |
4659 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
4660 ;; rmail (hacked from ps-print.el) | |
4661 | |
4662 | |
4663 (defun pr-rmail-lpr (header-list) | |
4664 "Print RMAIL current message in text printer." | |
4665 (pr-lpr-message-from-summary header-list | |
4666 'rmail-buffer 'rmail-summary-buffer)) | |
4667 | |
4668 | |
4669 (defun pr-rmail-print (n-up filename header-list) | |
4670 "Print RMAIL current message in PostScript." | |
4671 (pr-ps-message-from-summary n-up filename header-list | |
4672 'rmail-buffer 'rmail-summary-buffer)) | |
4673 | |
4674 | |
4675 (defun pr-ps-message-from-summary (n-up filename header-list | |
4676 summary-buffer summary-default) | |
4677 "Print current message in PostScript." | |
4678 (let ((buf (or (and (boundp summary-buffer) | |
4679 (symbol-value summary-buffer)) | |
4680 (symbol-value summary-default)))) | |
4681 (and (get-buffer buf) | |
4682 (save-excursion | |
4683 (set-buffer buf) | |
4684 (pr-mode-print n-up filename header-list))))) | |
4685 | |
4686 | |
4687 (defun pr-lpr-message-from-summary (header-list summary-buffer summary-default) | |
4688 "Print current message in text printer." | |
4689 (let ((buf (or (and (boundp summary-buffer) | |
4690 (symbol-value summary-buffer)) | |
4691 (symbol-value summary-default)))) | |
4692 (and (get-buffer buf) | |
4693 (save-excursion | |
4694 (set-buffer buf) | |
4695 (pr-mode-lpr header-list))))) | |
4696 | |
4697 | |
4698 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
4699 ;; gnus (hacked from ps-print.el) | |
4700 | |
4701 | |
4702 (defvar pr-gnus-article "*Article*") | |
4703 | |
4704 | |
4705 (defun pr-gnus-print (n-up filename header-list) | |
4706 "Print *Article* current message in PostScript." | |
4707 (pr-ps-message-from-summary n-up filename header-list | |
4708 'gnus-article-buffer 'pr-gnus-article)) | |
4709 | |
4710 | |
4711 (defun pr-gnus-lpr (header-list) | |
4712 "Print *Article* current message in text printer." | |
4713 (pr-lpr-message-from-summary header-list | |
4714 'gnus-article-buffer 'pr-gnus-article)) | |
4715 | |
4716 | |
4717 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
4718 ;; vm (hacked from ps-print.el) | |
4719 | |
4720 | |
4721 (defvar pr-vm-summary "") | |
4722 | |
4723 | |
4724 (defun pr-vm-print (n-up filename header-list) | |
4725 "Print current vm message in PostScript." | |
4726 (pr-ps-message-from-summary n-up filename header-list | |
4727 'vm-mail-buffer 'pr-vm-summary)) | |
4728 | |
4729 | |
4730 (defun pr-vm-lpr (header-list) | |
4731 "Print current vm message in text printer." | |
4732 (pr-lpr-message-from-summary header-list | |
4733 'vm-mail-buffer 'pr-vm-summary)) | |
4734 | |
4735 | |
4736 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
4737 ;; Mode Functions | |
4738 | |
4739 | |
4740 (defun pr-ps-mode (n-up filename) | |
4741 "If current major mode is declared, print it in PostScript." | |
4742 (let ((args (pr-mode-alist-p))) | |
4743 (if args | |
4744 (let ((fun (cdr args))) | |
4745 (funcall (car fun) n-up filename (cdr fun)) | |
4746 t) | |
4747 (ding) | |
4748 (message "`%s' major mode not declared." major-mode) | |
4749 nil))) | |
4750 | |
4751 | |
4752 (defmacro pr-local-variable (header-list &rest body) | |
4753 `(save-excursion | |
4754 (let ((ps-header-lines (or (nth 0 ,header-list) ps-header-lines)) | |
4755 (ps-left-header (or (nth 1 ,header-list) ps-left-header)) | |
4756 (ps-right-header (or (nth 2 ,header-list) ps-right-header)) | |
4757 ps-razzle-dazzle) | |
4758 (let ((local-var-list (pr-eval-local-alist (nthcdr 4 ,header-list)))) | |
4759 ,@body | |
4760 (and (nth 3 ,header-list) | |
4761 (pr-kill-local-variable local-var-list)))))) | |
4762 | |
4763 | |
4764 (defun pr-mode-print (n-up filename header-list &optional from to) | |
4765 "Print current major mode in PostScript." | |
4766 (pr-local-variable | |
4767 header-list | |
4768 (let ((file (pr-ps-file filename)) | |
4769 (start (cond (from) | |
4770 ((pr-region-active-p) (region-beginning)) | |
4771 (t nil) | |
4772 ))) | |
4773 (pr-text2ps (pr-region-active-symbol start) n-up file start | |
4774 (cond (to) | |
4775 ((pr-region-active-p) (region-end)) | |
4776 (from (point-max)) | |
4777 )) | |
4778 (unless (or pr-spool-p filename) | |
4779 (pr-ps-file-print file) | |
4780 (pr-delete-file file))))) | |
4781 | |
4782 | |
4783 (defun pr-mode-lpr (header-list &optional from to) | |
4784 "Print current major mode in text printer." | |
4785 (pr-local-variable | |
4786 header-list | |
4787 (pr-txt-print (cond (from) | |
4788 ((pr-region-active-p) (region-beginning)) | |
4789 (t (point-min))) | |
4790 (cond (to) | |
4791 ((pr-region-active-p) (region-end)) | |
4792 (t (point-max)))))) | |
4793 | |
4794 | |
4795 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
4796 ;; Menu Lock | |
4797 | |
4798 | |
4799 (defconst pr-menu-entry-alist | |
4800 '((postscript . 3) | |
4801 (text . 3) | |
4802 (postscript-options . 9) | |
4803 (postscript-process . 3) | |
4804 (printing . 3) | |
4805 (help . 3) | |
4806 ) | |
4807 "Alist that associates menu part with number of items per part. | |
4808 | |
4809 It's used by `pr-menu-index'. | |
4810 | |
4811 Each element has the form: | |
4812 | |
4813 (MENU-PART . NUMBER-OF-ITEMS) | |
4814 | |
4815 See `pr-visible-entry-alist'.") | |
4816 | |
4817 | |
4818 (defun pr-menu-index (entry index) | |
4819 (let ((base-list | |
4820 (cond ((eq entry 'text) | |
4821 '(postscript)) | |
4822 ((eq entry 'postscript-options) | |
4823 '(postscript text)) | |
4824 ((eq entry 'postscript-process) | |
4825 '(postscript text postscript-options)) | |
4826 ((eq entry 'printing) | |
4827 '(postscript text postscript-options postscript-process)) | |
4828 (t | |
4829 nil) | |
4830 )) | |
4831 key) | |
4832 (while base-list | |
4833 (setq key (car base-list) | |
4834 base-list (cdr base-list)) | |
4835 (and (pr-visible-p key) | |
4836 (setq index (+ index | |
4837 (cdr (assq key pr-menu-entry-alist))))))) | |
4838 (+ index 2)) | |
4839 | |
4840 | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4841 (defvar pr-menu-position nil) |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4842 (defvar pr-menu-state nil) |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4843 |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4844 |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4845 (cond |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4846 ((featurep 'xemacs) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4847 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4848 (defvar current-mouse-event nil) ; to avoid compilation gripes |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4849 (defun pr-menu-position (entry index horizontal) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4850 (pr-x-make-event |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4851 'button-release |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4852 (list 'button 1 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4853 'x (- (pr-x-event-x-pixel current-mouse-event) ; X |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4854 (* horizontal pr-menu-char-width)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4855 'y (- (pr-x-event-y-pixel current-mouse-event) ; Y |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4856 (* (pr-menu-index entry index) pr-menu-char-height))))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4857 ) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4858 (ps-windows-system |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4859 ;; GNU Emacs for Windows 9x/NT |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4860 (defun pr-menu-position (entry index horizontal) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4861 (let ((pos (cdr (pr-e-mouse-pixel-position)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4862 (list |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4863 (list (or (car pos) 0) ; X |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4864 (- (or (cdr pos) 0) ; Y |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4865 (* (pr-menu-index entry index) pr-menu-char-height))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4866 (selected-frame)))) ; frame |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4867 ) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4868 (t |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4869 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4870 (defun pr-menu-position (entry index horizontal) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4871 (let ((pos (cdr (pr-e-mouse-pixel-position)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4872 (list |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4873 (list (- (or (car pos) 0) ; X |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4874 (* horizontal pr-menu-char-width)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4875 (- (or (cdr pos) 0) ; Y |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4876 (* (pr-menu-index entry index) pr-menu-char-height))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4877 (selected-frame)))) ; frame |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4878 )) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4879 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4880 (cond |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4881 ((featurep 'xemacs) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4882 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4883 (defvar current-menubar nil) ; to avoid compilation gripes |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4884 (defun pr-menu-lookup (path) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4885 (car (pr-x-find-menu-item current-menubar (cons "Printing" path)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4886 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4887 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4888 (defun pr-menu-lock (entry index horizontal state path) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4889 (when pr-menu-lock |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4890 (or (and pr-menu-position (eq state pr-menu-state)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4891 (setq pr-menu-position (pr-menu-position entry index horizontal) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4892 pr-menu-state state)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4893 (let* ((menu (pr-menu-lookup path)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4894 (result (pr-x-get-popup-menu-response menu pr-menu-position))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4895 (and (pr-x-misc-user-event-p result) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4896 (funcall (pr-x-event-function result) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4897 (pr-x-event-object result)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4898 (setq pr-menu-position nil)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4899 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4900 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4901 (t |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4902 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4903 (defun pr-menu-lookup (path) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4904 (lookup-key global-map |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4905 (if path |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4906 (vconcat pr-menu-bar |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4907 (mapcar 'pr-get-symbol |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4908 (if (listp path) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4909 path |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4910 (list path)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4911 pr-menu-bar))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4912 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4913 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4914 (defun pr-menu-lock (entry index horizontal state path) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4915 (when pr-menu-lock |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4916 (or (and pr-menu-position (eq state pr-menu-state)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4917 (setq pr-menu-position (pr-menu-position entry index horizontal) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4918 pr-menu-state state)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4919 (let* ((menu (pr-menu-lookup path)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4920 (result (x-popup-menu pr-menu-position menu))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4921 (and result |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4922 (let ((command (lookup-key menu (vconcat result)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4923 (if (fboundp command) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4924 (funcall command) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4925 (eval command))))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4926 (setq pr-menu-position nil))))) |
49646 | 4927 |
4928 | |
4929 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
4930 ;; Printer & Utility Selection | |
4931 | |
4932 | |
4933 (defun pr-update-var (var-sym alist) | |
4934 (or (assq (symbol-value var-sym) alist) | |
4935 (set var-sym (car (car alist))))) | |
4936 | |
4937 | |
4938 (defun pr-update-menus (&optional force) | |
4939 "Update utility, PostScript and text printer menus. | |
4940 | |
4941 If FORCE is non-nil, update menus doesn't matter if `pr-ps-printer-alist', | |
4942 `pr-txt-printer-alist' or `pr-ps-utility-alist' were modified or not; | |
4943 otherwise, update PostScript printer menu iff `pr-ps-printer-menu-modified' is | |
4944 non-nil, update text printer menu iff `pr-txt-printer-menu-modified' is | |
4945 non-nil, and update PostScript File menus iff `pr-ps-utility-menu-modified' is | |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4946 non-nil. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4947 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4948 If menu binding was not done, calls `pr-menu-bind'." |
54621
14d929e67a70
Modify interactive declaration.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54333
diff
changeset
|
4949 (interactive "P") |
63328
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4950 (if pr-menu-print-item ; since v6.8.4 |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4951 ;; There was no menu binding yet, so do it now! |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4952 ;; This is a hack to be compatible with old versions of printing. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4953 ;; So, user does not need to change printing calling in init files. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4954 (pr-menu-bind) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4955 ;; Here menu binding is ok. |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4956 (pr-update-var 'pr-ps-name pr-ps-printer-alist) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4957 (pr-update-var 'pr-txt-name pr-txt-printer-alist) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4958 (pr-update-var 'pr-ps-utility pr-ps-utility-alist) |
af5c15bf9ea0
printing v6.8.4
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
63059
diff
changeset
|
4959 (pr-do-update-menus force))) |
49646 | 4960 |
4961 | |
4962 (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
|
4963 "Non-nil means `pr-ps-printer-alist' was modified and we need to update menu.") |
49646 | 4964 (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
|
4965 "Non-nil means `pr-txt-printer-alist' was modified and we need to update menu.") |
49646 | 4966 (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
|
4967 "Non-nil means `pr-ps-utility-alist' was modified and we need to update menu.") |
49646 | 4968 |
4969 | |
4970 (defconst pr-even-or-odd-alist | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4971 '((nil . "Print All Pages") |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4972 (even-page . "Print Even Pages") |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4973 (odd-page . "Print Odd Pages") |
49646 | 4974 (even-sheet . "Print Even Sheets") |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
4975 (odd-sheet . "Print Odd Sheets"))) |
49646 | 4976 |
4977 | |
4978 (defun pr-menu-create (name alist var-sym fun entry index) | |
4979 (cons name | |
4980 (mapcar | |
4981 #'(lambda (elt) | |
4982 (let ((sym (car elt))) | |
4983 (vector | |
4984 (symbol-name sym) | |
4985 (list fun (list 'quote sym) nil (list 'quote entry) index) | |
4986 :style 'radio | |
4987 :selected (list 'eq var-sym (list 'quote sym))))) | |
4988 alist))) | |
4989 | |
4990 | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4991 (cond |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4992 ((featurep 'xemacs) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4993 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4994 (defalias 'pr-update-mode-line 'set-menubar-dirty-flag) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4995 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4996 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4997 (defvar pr-ps-name-old "PostScript Printers") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4998 (defvar pr-txt-name-old "Text Printers") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
4999 (defvar pr-ps-utility-old "PostScript Utility") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5000 (defvar pr-even-or-odd-old "Print All Pages") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5001 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5002 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5003 (defun pr-do-update-menus (&optional force) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5004 (pr-menu-alist pr-ps-printer-alist |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5005 'pr-ps-name |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5006 'pr-menu-set-ps-title |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5007 '("Printing") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5008 'pr-ps-printer-menu-modified |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5009 force |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5010 pr-ps-name-old |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5011 'postscript 2) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5012 (pr-menu-alist pr-txt-printer-alist |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5013 'pr-txt-name |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5014 'pr-menu-set-txt-title |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5015 '("Printing") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5016 'pr-txt-printer-menu-modified |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5017 force |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5018 pr-txt-name-old |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5019 'text 2) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5020 (let ((save-var pr-ps-utility-menu-modified)) |
49646 | 5021 (pr-menu-alist pr-ps-utility-alist |
5022 'pr-ps-utility | |
5023 'pr-menu-set-utility-title | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5024 '("Printing" "PostScript Print" "File") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5025 'save-var |
49646 | 5026 force |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5027 pr-ps-utility-old |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5028 nil 1)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5029 (pr-menu-alist pr-ps-utility-alist |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5030 'pr-ps-utility |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5031 'pr-menu-set-utility-title |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5032 '("Printing" "PostScript Preview" "File") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5033 'pr-ps-utility-menu-modified |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5034 force |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5035 pr-ps-utility-old |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5036 nil 1) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5037 (pr-even-or-odd-pages ps-even-or-odd-pages force)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5038 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5039 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5040 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5041 entry index) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5042 (when (and alist (or force (symbol-value modified-sym))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5043 (pr-xemacs-global-menubar |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5044 (pr-x-add-submenu menu-path |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5045 (pr-menu-create name alist var-sym |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5046 fun entry index))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5047 (funcall fun (symbol-value var-sym)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5048 (set modified-sym nil))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5049 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5050 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5051 (defun pr-relabel-menu-item (newname var-sym) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5052 (pr-xemacs-global-menubar |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5053 (pr-x-relabel-menu-item |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5054 (list "Printing" (symbol-value var-sym)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5055 newname) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5056 (set var-sym newname))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5057 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5058 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5059 (defun pr-menu-set-ps-title (value &optional item entry index) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5060 (pr-relabel-menu-item (format "PostScript Printer: %s" value) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5061 'pr-ps-name-old) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5062 (pr-ps-set-printer value) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5063 (and index |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5064 (pr-menu-lock entry index 12 'toggle nil))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5065 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5066 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5067 (defun pr-menu-set-txt-title (value &optional item entry index) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5068 (pr-relabel-menu-item (format "Text Printer: %s" value) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5069 'pr-txt-name-old) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5070 (pr-txt-set-printer value) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5071 (and index |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5072 (pr-menu-lock entry index 12 'toggle nil))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5073 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5074 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5075 (defun pr-menu-set-utility-title (value &optional item entry index) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5076 (pr-xemacs-global-menubar |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5077 (let ((newname (format "%s" value))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5078 (pr-x-relabel-menu-item |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5079 (list "Printing" "PostScript Print" "File" pr-ps-utility-old) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5080 newname) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5081 (pr-x-relabel-menu-item |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5082 (list "Printing" "PostScript Preview" "File" pr-ps-utility-old) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5083 newname) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5084 (setq pr-ps-utility-old newname))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5085 (pr-ps-set-utility value) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5086 (and index |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5087 (pr-menu-lock entry index 5 nil '("PostScript Print" "File")))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5088 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5089 ;; XEmacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5090 (defun pr-even-or-odd-pages (value &optional no-lock) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5091 (pr-relabel-menu-item (cdr (assq value pr-even-or-odd-alist)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5092 'pr-even-or-odd-old) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5093 (setq ps-even-or-odd-pages value) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5094 (or no-lock |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5095 (pr-menu-lock 'postscript-options 8 12 'toggle nil)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5096 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5097 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5098 (t |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5099 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5100 (defalias 'pr-update-mode-line 'force-mode-line-update) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5101 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5102 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5103 (defun pr-do-update-menus (&optional force) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5104 (pr-menu-alist pr-ps-printer-alist |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5105 'pr-ps-name |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5106 'pr-menu-set-ps-title |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5107 "PostScript Printers" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5108 'pr-ps-printer-menu-modified |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5109 force |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5110 "PostScript Printers" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5111 'postscript 2) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5112 (pr-menu-alist pr-txt-printer-alist |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5113 'pr-txt-name |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5114 'pr-menu-set-txt-title |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5115 "Text Printers" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5116 'pr-txt-printer-menu-modified |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5117 force |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5118 "Text Printers" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5119 'text 2) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5120 (let ((save-var pr-ps-utility-menu-modified)) |
49646 | 5121 (pr-menu-alist pr-ps-utility-alist |
5122 'pr-ps-utility | |
5123 'pr-menu-set-utility-title | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5124 '("PostScript Print" "File" "PostScript Utility") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5125 'save-var |
49646 | 5126 force |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5127 "PostScript Utility" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5128 nil 1)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5129 (pr-menu-alist pr-ps-utility-alist |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5130 'pr-ps-utility |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5131 'pr-menu-set-utility-title |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5132 '("PostScript Preview" "File" "PostScript Utility") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5133 'pr-ps-utility-menu-modified |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5134 force |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5135 "PostScript Utility" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5136 nil 1) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5137 (pr-even-or-odd-pages ps-even-or-odd-pages force)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5138 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5139 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5140 (defun pr-menu-get-item (name-list) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5141 ;; NAME-LIST is a string or a list of strings. |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5142 (or (listp name-list) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5143 (setq name-list (list name-list))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5144 (and name-list |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5145 (let* ((reversed (reverse name-list)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5146 (name (pr-get-symbol (car reversed))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5147 (path (nreverse (cdr reversed))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5148 (menu (lookup-key |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5149 global-map |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5150 (vconcat pr-menu-bar |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5151 (mapcar 'pr-get-symbol path))))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5152 (assq name (nthcdr 2 menu))))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5153 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5154 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5155 (defvar pr-temp-menu nil) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5156 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5157 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5158 (defun pr-menu-alist (alist var-sym fun menu-path modified-sym force name |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5159 entry index) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5160 (when (and alist (or force (symbol-value modified-sym))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5161 (easy-menu-define pr-temp-menu nil "" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5162 (pr-menu-create name alist var-sym fun entry index)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5163 (let ((item (pr-menu-get-item menu-path))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5164 (and item |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5165 (let* ((binding (nthcdr 3 item)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5166 (key-binding (cdr binding))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5167 (setcar binding pr-temp-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5168 (and key-binding (listp (car key-binding)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5169 (setcdr binding (cdr key-binding))) ; skip KEY-BINDING |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5170 (funcall fun (symbol-value var-sym) item)))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5171 (set modified-sym nil))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5172 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5173 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5174 (defun pr-menu-set-item-name (item name) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5175 (and item |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5176 (setcar (nthcdr 2 item) name))) ; ITEM-NAME |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5177 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5178 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5179 (defun pr-menu-set-ps-title (value &optional item entry index) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5180 (pr-menu-set-item-name (or item |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5181 (pr-menu-get-item "PostScript Printers")) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5182 (format "PostScript Printer: %s" value)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5183 (pr-ps-set-printer value) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5184 (and index |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5185 (pr-menu-lock entry index 12 'toggle nil))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5186 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5187 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5188 (defun pr-menu-set-txt-title (value &optional item entry index) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5189 (pr-menu-set-item-name (or item |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5190 (pr-menu-get-item "Text Printers")) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5191 (format "Text Printer: %s" value)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5192 (pr-txt-set-printer value) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5193 (and index |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5194 (pr-menu-lock entry index 12 'toggle nil))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5195 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5196 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5197 (defun pr-menu-set-utility-title (value &optional item entry index) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5198 (let ((name (symbol-name value))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5199 (if item |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5200 (pr-menu-set-item-name item name) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5201 (pr-menu-set-item-name |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5202 (pr-menu-get-item |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5203 '("PostScript Print" "File" "PostScript Utility")) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5204 name) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5205 (pr-menu-set-item-name |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5206 (pr-menu-get-item |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5207 '("PostScript Preview" "File" "PostScript Utility")) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5208 name))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5209 (pr-ps-set-utility value) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5210 (and index |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5211 (pr-menu-lock entry index 5 nil '("PostScript Print" "File")))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5212 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5213 ;; GNU Emacs |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5214 (defun pr-even-or-odd-pages (value &optional no-lock) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5215 (pr-menu-set-item-name (pr-menu-get-item "Print All Pages") |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5216 (cdr (assq value pr-even-or-odd-alist))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5217 (setq ps-even-or-odd-pages value) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5218 (or no-lock |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5219 (pr-menu-lock 'postscript-options 8 12 'toggle nil))))) |
49646 | 5220 |
5221 | |
5222 (defun pr-ps-set-utility (value) | |
5223 (let ((item (cdr (assq value pr-ps-utility-alist)))) | |
5224 (or item | |
5225 (error | |
56578
a36e2d80b510
(toplevel, pr-ps-fast-fire, pr-ps-set-utility)
John Paul Wallington <jpw@pobox.com>
parents:
56493
diff
changeset
|
5226 "Invalid PostScript utility name `%s' for variable `pr-ps-utility'" |
49646 | 5227 value)) |
5228 (setq pr-ps-utility value) | |
5229 (pr-eval-alist (nthcdr 9 item))) | |
5230 (pr-update-mode-line)) | |
5231 | |
5232 | |
5233 (defun pr-ps-set-printer (value) | |
5234 (let ((ps (cdr (assq value pr-ps-printer-alist)))) | |
5235 (or ps | |
5236 (error | |
56578
a36e2d80b510
(toplevel, pr-ps-fast-fire, pr-ps-set-utility)
John Paul Wallington <jpw@pobox.com>
parents:
56493
diff
changeset
|
5237 "Invalid PostScript printer name `%s' for variable `pr-ps-name'" |
49646 | 5238 value)) |
5239 (setq pr-ps-name value | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
5240 pr-ps-command (pr-dosify-file-name (nth 0 ps)) |
49646 | 5241 pr-ps-switches (nth 1 ps) |
5242 pr-ps-printer-switch (nth 2 ps) | |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5243 pr-ps-printer (nth 3 ps)) |
49646 | 5244 (or (stringp pr-ps-command) |
5245 (setq pr-ps-command | |
5246 (cond (ps-windows-system "print") | |
5247 (ps-lp-system "lp") | |
5248 (t "lpr") | |
5249 ))) | |
5250 (or (stringp pr-ps-printer-switch) | |
5251 (setq pr-ps-printer-switch | |
5252 (cond (ps-windows-system "/D:") | |
5253 (ps-lp-system "-d") | |
5254 (t "-P") | |
5255 ))) | |
5256 (pr-eval-alist (nthcdr 4 ps))) | |
5257 (pr-update-mode-line)) | |
5258 | |
5259 | |
5260 (defun pr-txt-set-printer (value) | |
5261 (let ((txt (cdr (assq value pr-txt-printer-alist)))) | |
5262 (or txt | |
56578
a36e2d80b510
(toplevel, pr-ps-fast-fire, pr-ps-set-utility)
John Paul Wallington <jpw@pobox.com>
parents:
56493
diff
changeset
|
5263 (error "Invalid text printer name `%s' for variable `pr-txt-name'" |
49646 | 5264 value)) |
5265 (setq pr-txt-name value | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
5266 pr-txt-command (pr-dosify-file-name (nth 0 txt)) |
49646 | 5267 pr-txt-switches (nth 1 txt) |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5268 pr-txt-printer (nth 2 txt))) |
49646 | 5269 (or (stringp pr-txt-command) |
5270 (setq pr-txt-command | |
5271 (cond (ps-windows-system "print") | |
5272 (ps-lp-system "lp") | |
5273 (t "lpr") | |
5274 ))) | |
5275 (pr-update-mode-line)) | |
5276 | |
5277 | |
5278 (defun pr-eval-alist (alist) | |
5279 (mapcar #'(lambda (option) | |
5280 (let ((var-sym (car option)) | |
5281 (value (cdr option))) | |
5282 (if (eq var-sym 'inherits-from:) | |
5283 (pr-eval-setting-alist value 'global) | |
5284 (set var-sym (eval value))))) | |
5285 alist)) | |
5286 | |
5287 | |
5288 (defun pr-eval-local-alist (alist) | |
5289 (let (local-list) | |
5290 (mapcar #'(lambda (option) | |
5291 (let ((var-sym (car option)) | |
5292 (value (cdr option))) | |
5293 (setq local-list | |
5294 (if (eq var-sym 'inherits-from:) | |
5295 (nconc (pr-eval-setting-alist value) local-list) | |
5296 (set (make-local-variable var-sym) (eval value)) | |
5297 (cons var-sym local-list))))) | |
5298 alist) | |
5299 local-list)) | |
5300 | |
5301 | |
5302 (defun pr-eval-setting-alist (key &optional global old) | |
5303 (let ((setting (cdr (assq key pr-setting-database)))) | |
5304 (and setting | |
5305 (let ((inherits (nth 0 setting)) | |
5306 (local (nth 1 setting)) | |
5307 (kill (nth 2 setting)) | |
5308 local-list) | |
5309 (and local global | |
5310 (progn | |
5311 (ding) | |
5312 (message "There are local buffer settings for `%S'." key) | |
5313 (setq global nil))) | |
5314 (and inherits | |
5315 (if (memq inherits old) | |
56578
a36e2d80b510
(toplevel, pr-ps-fast-fire, pr-ps-set-utility)
John Paul Wallington <jpw@pobox.com>
parents:
56493
diff
changeset
|
5316 (error "Circular inheritance for `%S'" inherits) |
49646 | 5317 (setq local-list |
5318 (pr-eval-setting-alist inherits global | |
5319 (cons inherits old))))) | |
5320 (mapcar | |
5321 (cond ((not local) ; global settings | |
5322 #'(lambda (option) | |
5323 (let ((var-sym (car option))) | |
5324 (or (eq var-sym 'inherits-from:) | |
5325 (set var-sym (eval (cdr option))))))) | |
5326 (kill ; local settings with killing | |
5327 #'(lambda (option) | |
5328 (let ((var-sym (car option))) | |
5329 (unless (eq var-sym 'inherits-from:) | |
5330 (setq local-list (cons var-sym local-list)) | |
5331 (set (make-local-variable var-sym) | |
5332 (eval (cdr option))))))) | |
5333 (t ; local settings without killing | |
5334 #'(lambda (option) | |
5335 (let ((var-sym (car option))) | |
5336 (or (eq var-sym 'inherits-from:) | |
5337 (set (make-local-variable var-sym) | |
5338 (eval (cdr option)))))))) | |
5339 (nthcdr 3 setting)) | |
5340 local-list)))) | |
5341 | |
5342 | |
5343 (defun pr-kill-local-variable (local-var-list) | |
5344 (mapcar 'kill-local-variable local-var-list)) | |
5345 | |
5346 | |
5347 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
5348 ;; Internal Functions (II) | |
5349 | |
5350 | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5351 (defun pr-toggle (var-sym mess entry index horizontal state |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5352 &optional path no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5353 (set var-sym (not (symbol-value var-sym))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5354 (message "%s is %s" mess (if (symbol-value var-sym) "on" "off")) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5355 (or no-menu |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5356 (pr-menu-lock entry index horizontal state path))) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5357 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5358 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5359 (defun pr-toggle-file-duplex-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5360 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5361 (pr-toggle 'pr-file-duplex "PS file duplex" nil 7 5 nil |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5362 '("PostScript Print" "File") no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5363 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5364 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5365 (defun pr-toggle-file-tumble-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5366 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5367 (pr-toggle 'pr-file-tumble "PS file tumble" nil 8 5 nil |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5368 '("PostScript Print" "File") no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5369 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5370 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5371 (defun pr-toggle-file-landscape-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5372 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5373 (pr-toggle 'pr-file-landscape "PS file landscape" nil 6 5 nil |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5374 '("PostScript Print" "File") no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5375 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5376 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5377 (defun pr-toggle-ghostscript-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5378 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5379 (pr-toggle 'pr-print-using-ghostscript "Printing using ghostscript" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5380 'postscript-process 2 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5381 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5382 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5383 (defun pr-toggle-faces-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5384 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5385 (pr-toggle 'pr-faces-p "Printing with faces" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5386 'postscript-process 1 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5387 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5388 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5389 (defun pr-toggle-spool-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5390 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5391 (pr-toggle 'pr-spool-p "Spooling printing" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5392 'postscript-process 0 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5393 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5394 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5395 (defun pr-toggle-duplex-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5396 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5397 (pr-toggle 'ps-spool-duplex "Printing duplex" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5398 'postscript-options 5 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5399 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5400 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5401 (defun pr-toggle-tumble-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5402 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5403 (pr-toggle 'ps-spool-tumble "Tumble" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5404 'postscript-options 6 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5405 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5406 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5407 (defun pr-toggle-landscape-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5408 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5409 (pr-toggle 'ps-landscape-mode "Landscape" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5410 'postscript-options 0 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5411 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5412 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5413 (defun pr-toggle-upside-down-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5414 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5415 (pr-toggle 'ps-print-upside-down "Upside-Down" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5416 'postscript-options 7 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5417 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5418 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5419 (defun pr-toggle-line-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5420 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5421 (pr-toggle 'ps-line-number "Line number" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5422 'postscript-options 3 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5423 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5424 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5425 (defun pr-toggle-zebra-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5426 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5427 (pr-toggle 'ps-zebra-stripes "Zebra stripe" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5428 'postscript-options 4 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5429 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5430 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5431 (defun pr-toggle-header-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5432 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5433 (pr-toggle 'ps-print-header "Print header" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5434 'postscript-options 1 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5435 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5436 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5437 (defun pr-toggle-header-frame-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5438 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5439 (pr-toggle 'ps-print-header-frame "Print header frame" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5440 'postscript-options 2 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5441 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5442 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5443 (defun pr-toggle-lock-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5444 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5445 (pr-toggle 'pr-menu-lock "Menu lock" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5446 'printing 2 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5447 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5448 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5449 (defun pr-toggle-region-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5450 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5451 (pr-toggle 'pr-auto-region "Auto region" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5452 'printing 0 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5453 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5454 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5455 (defun pr-toggle-mode-menu (&optional no-menu) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5456 (interactive) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5457 (pr-toggle 'pr-auto-mode "Auto mode" |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5458 'printing 1 12 'toggle nil no-menu)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5459 |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5460 |
49646 | 5461 (defun pr-prompt (str) |
5462 (if (pr-auto-mode-p) | |
5463 (concat str " mode") | |
5464 (pr-region-active-string str))) | |
5465 | |
5466 | |
5467 (defun pr-prompt-region (str) | |
5468 (concat str (if (pr-auto-mode-p) | |
5469 " mode" | |
5470 " region"))) | |
5471 | |
5472 | |
5473 (defun pr-prompt-gs (str) | |
5474 (if (pr-using-ghostscript-p) | |
5475 (concat str " GS") | |
5476 str)) | |
5477 | |
5478 | |
5479 (defun pr-region-active-symbol (&optional region-p) | |
5480 (if (or region-p (pr-region-active-p)) | |
5481 'region | |
5482 'buffer)) | |
5483 | |
5484 | |
5485 (defun pr-region-active-string (prefix) | |
5486 (concat prefix | |
5487 (if (pr-region-active-p) | |
5488 " region" | |
5489 " buffer"))) | |
5490 | |
5491 | |
5492 (defun pr-show-setup (settings buffer-name) | |
5493 (with-output-to-temp-buffer buffer-name | |
5494 (princ settings) | |
5495 (print-help-return-message))) | |
5496 | |
5497 | |
5498 (defun pr-complete-alist (prompt alist default) | |
5499 (let ((collection (mapcar #'(lambda (elt) | |
5500 (setq elt (car elt)) | |
5501 (cons (symbol-name elt) elt)) | |
5502 alist))) | |
5503 (cdr (assoc (completing-read (concat prompt ": ") | |
5504 collection nil t | |
5505 (symbol-name default) nil | |
5506 (symbol-name default)) | |
5507 collection)))) | |
5508 | |
5509 | |
5510 (defun pr-delete-file (file) | |
57241
e53d659f0afd
Check if file exists before deleting it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
57187
diff
changeset
|
5511 (and pr-delete-temp-file (file-exists-p file) |
e53d659f0afd
Check if file exists before deleting it.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
57187
diff
changeset
|
5512 (delete-file file))) |
49646 | 5513 |
5514 | |
5515 (defun pr-expand-file-name (filename) | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
5516 (pr-dosify-file-name (expand-file-name filename))) |
49646 | 5517 |
5518 | |
5519 (defun pr-ps-outfile-preprint (&optional mess) | |
5520 (let* ((prompt (format "%soutput PostScript file name: " (or mess ""))) | |
5521 (res (read-file-name prompt default-directory "" nil))) | |
5522 (while (cond ((not (file-writable-p res)) | |
5523 (ding) | |
5524 (setq prompt "is unwritable")) | |
5525 ((file-directory-p res) | |
5526 (ding) | |
5527 (setq prompt "is a directory")) | |
5528 ((file-exists-p res) | |
5529 (ding) | |
5530 (setq prompt "exists") | |
5531 (not (y-or-n-p (format "File `%s' exists; overwrite? " | |
5532 res)))) | |
5533 (t nil)) | |
5534 (setq res (read-file-name | |
5535 (format "File %s; PostScript file: " prompt) | |
5536 (file-name-directory res) nil nil | |
5537 (file-name-nondirectory res)))) | |
5538 (pr-expand-file-name res))) | |
5539 | |
5540 | |
5541 (defun pr-ps-infile-preprint (&optional mess) | |
5542 (let* ((prompt (format "%sinput PostScript file name: " (or mess ""))) | |
5543 (res (read-file-name prompt default-directory "" nil))) | |
5544 (while (cond ((not (file-exists-p res)) | |
5545 (ding) | |
5546 (setq prompt "doesn't exist")) | |
5547 ((not (file-readable-p res)) | |
5548 (ding) | |
5549 (setq prompt "is unreadable")) | |
5550 ((file-directory-p res) | |
5551 (ding) | |
5552 (setq prompt "is a directory")) | |
5553 (t nil)) | |
5554 (setq res (read-file-name | |
5555 (format "File %s; PostScript file: " prompt) | |
5556 (file-name-directory res) nil nil | |
5557 (file-name-nondirectory res)))) | |
5558 (pr-expand-file-name res))) | |
5559 | |
5560 | |
5561 (defun pr-ps-utility-args (n-up-sym infile-sym outfile-sym prompt) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5562 ;; check arguments for PostScript file processing. |
49646 | 5563 ;; n-up |
5564 (or (symbol-value n-up-sym) | |
5565 (set n-up-sym (pr-interactive-n-up prompt))) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5566 ;; input file |
49646 | 5567 (and (eq (symbol-value infile-sym) t) |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5568 (set infile-sym (pr-ps-infile-preprint prompt))) |
49646 | 5569 (or (symbol-value infile-sym) |
5570 (error "%s: input PostScript file name is missing" prompt)) | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
5571 (set infile-sym (pr-dosify-file-name (symbol-value infile-sym))) |
49646 | 5572 ;; output file |
5573 (and (eq (symbol-value outfile-sym) t) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5574 (set outfile-sym (and current-prefix-arg |
49646 | 5575 (pr-ps-outfile-preprint prompt)))) |
5576 (and (symbol-value outfile-sym) | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
5577 (set outfile-sym (pr-dosify-file-name (symbol-value outfile-sym)))) |
49646 | 5578 (pr-ps-file (symbol-value outfile-sym))) |
5579 | |
5580 | |
5581 (defun pr-ps-utility-process (n-up infile outfile) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5582 ;; activate utility to process a PostScript file. |
49646 | 5583 (let (item) |
5584 (and (stringp infile) (file-exists-p infile) | |
5585 (setq item (cdr (assq pr-ps-utility pr-ps-utility-alist))) | |
56390
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5586 (pr-call-process (nth 0 item) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5587 (pr-switches-string (nth 1 item) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5588 "pr-ps-utility-alist entry") |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5589 (pr-switches-string (nth 8 item) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5590 "pr-ps-utility-alist entry") |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5591 (and (nth 2 item) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5592 (format (nth 2 item) ps-paper-type)) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5593 (format (nth 3 item) n-up) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5594 (and pr-file-landscape (nth 4 item)) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5595 (and pr-file-duplex (nth 5 item)) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5596 (and pr-file-tumble (nth 6 item)) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5597 (pr-expand-file-name infile) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5598 (nth 7 item) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5599 (pr-expand-file-name outfile))))) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5600 |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5601 |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5602 (defun pr-remove-nil-from-list (lst) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5603 (while (and lst (null (car lst))) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5604 (setq lst (cdr lst))) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5605 (let ((b lst) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5606 (l (cdr lst))) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5607 (while l |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5608 (if (car l) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5609 (setq b l |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5610 l (cdr l)) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5611 (setq l (cdr l)) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5612 (setcdr b l)))) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5613 lst) |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5614 |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5615 |
e97dd6ea9f71
It uses call-process instead shell-command
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54738
diff
changeset
|
5616 (defun pr-call-process (command &rest args) |
58241
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5617 (let ((buffer (get-buffer-create "*Printing Command Output*")) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5618 (cmd (pr-command command)) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5619 status) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5620 (setq args (pr-remove-nil-from-list args)) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5621 ;; *Printing Command Output* == show command & args |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5622 (save-excursion |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5623 (set-buffer buffer) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5624 (goto-char (point-max)) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5625 (insert (format "%s %S\n" cmd args))) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5626 ;; *Printing Command Output* == show any return message from command |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5627 (pr-save-file-modes |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5628 (setq status |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5629 (condition-case data |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5630 (apply 'call-process cmd nil buffer nil args) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5631 ((quit error) |
58241
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5632 (error-message-string data))))) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5633 ;; *Printing Command Output* == show exit status |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5634 (save-excursion |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5635 (set-buffer buffer) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5636 (goto-char (point-max)) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5637 (insert (format "Exit status: %s\n\n" status))) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5638 ;; message if error status |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5639 (if (or (stringp status) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5640 (and (integerp status) (/= status 0))) |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5641 (message |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5642 "Printing error status: %s (see *Printing Command Output* buffer)" |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5643 status)))) |
49646 | 5644 |
5645 | |
5646 (defun pr-txt-print (from to) | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
5647 (let ((lpr-command (pr-standard-file-name (pr-command pr-txt-command))) |
49646 | 5648 (lpr-switches (pr-switches pr-txt-switches "pr-txt-switches")) |
5649 (printer-name pr-txt-printer)) | |
5650 (lpr-region from to))) | |
5651 | |
5652 | |
5653 (defun pr-switches-string (switches mess) | |
58241
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5654 ;; If SWITCHES is nil, return nil. |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5655 ;; Otherwise, return the list of string in a string. |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5656 (and switches |
4aa6d60fc66c
Fix typos & pr-switches-string
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58218
diff
changeset
|
5657 (mapconcat 'identity (pr-switches switches mess) " "))) |
49646 | 5658 |
5659 | |
5660 (defun pr-switches (switches mess) | |
5661 (or (listp switches) | |
56578
a36e2d80b510
(toplevel, pr-ps-fast-fire, pr-ps-set-utility)
John Paul Wallington <jpw@pobox.com>
parents:
56493
diff
changeset
|
5662 (error "%S should have a list of strings" mess)) |
49646 | 5663 (ps-flatten-list ; dynamic evaluation |
5664 (mapcar 'ps-eval-switch switches))) | |
5665 | |
5666 | |
5667 (defun pr-ps-preview (kind n-up filename mess) | |
5668 (pr-set-n-up-and-filename 'n-up 'filename mess) | |
5669 (let ((file (pr-ps-file filename))) | |
5670 (pr-text2ps kind n-up file) | |
5671 (or pr-spool-p (pr-ps-file-preview file)))) | |
5672 | |
5673 | |
5674 (defun pr-ps-using-ghostscript (kind n-up filename mess) | |
5675 (pr-set-n-up-and-filename 'n-up 'filename mess) | |
5676 (let ((file (pr-ps-file filename))) | |
5677 (pr-text2ps kind n-up file) | |
5678 (unless (or pr-spool-p filename) | |
5679 (pr-ps-file-using-ghostscript file) | |
5680 (pr-delete-file file)))) | |
5681 | |
5682 | |
5683 (defun pr-ps-print (kind n-up filename mess) | |
5684 (pr-set-n-up-and-filename 'n-up 'filename mess) | |
5685 (let ((file (pr-ps-file filename))) | |
5686 (pr-text2ps kind n-up file) | |
5687 (unless (or pr-spool-p filename) | |
5688 (pr-ps-file-print file) | |
5689 (pr-delete-file file)))) | |
5690 | |
5691 | |
5692 (defun pr-ps-file (&optional filename) | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
5693 (pr-dosify-file-name (or filename |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5694 (make-temp-file |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5695 (convert-standard-filename |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5696 (expand-file-name pr-ps-temp-file pr-temp-dir)) |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5697 nil ".ps")))) |
49646 | 5698 |
5699 | |
5700 (defun pr-interactive-n-up (mess) | |
5701 (or (stringp mess) (setq mess "*")) | |
5702 (save-match-data | |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65582
diff
changeset
|
5703 (let* ((fmt-prompt "%s[%s] N-up printing (default 1): ") |
49646 | 5704 (prompt "") |
5705 (str (pr-f-read-string (format fmt-prompt prompt mess) "1" nil "1")) | |
5706 int) | |
5707 (while (if (string-match "^\\s *[0-9]+$" str) | |
62887
3d8c6d031cf0
(pr-interactive-n-up): Use string-to-number.
Richard M. Stallman <rms@gnu.org>
parents:
58408
diff
changeset
|
5708 (setq int (string-to-number str) |
49646 | 5709 prompt (cond ((< int 1) "Integer below 1; ") |
5710 ((> int 100) "Integer above 100; ") | |
5711 (t nil))) | |
5712 (setq prompt "Invalid integer syntax; ")) | |
5713 (ding) | |
5714 (setq str | |
5715 (pr-f-read-string (format fmt-prompt prompt mess) str nil "1"))) | |
5716 int))) | |
5717 | |
5718 | |
5719 (defun pr-interactive-dir (mess) | |
5720 (let* ((dir-name (file-name-directory (or (buffer-file-name) | |
5721 default-directory))) | |
5722 (fmt-prompt (concat "%s[" mess "] Directory to print: ")) | |
5723 (dir (read-file-name (format fmt-prompt "") | |
5724 "" dir-name nil dir-name)) | |
5725 prompt) | |
5726 (while (cond ((not (file-directory-p dir)) | |
5727 (ding) | |
5728 (setq prompt "It's not a directory! ")) | |
5729 ((not (file-readable-p dir)) | |
5730 (ding) | |
5731 (setq prompt "Directory is unreadable! ")) | |
5732 (t nil)) | |
5733 (setq dir-name (file-name-directory dir) | |
5734 dir (read-file-name (format fmt-prompt prompt) | |
5735 "" dir-name nil dir-name))) | |
5736 (file-name-as-directory dir))) | |
5737 | |
5738 | |
5739 (defun pr-interactive-regexp (mess) | |
5740 (pr-f-read-string (format "[%s] File regexp to print: " mess) "" nil "")) | |
5741 | |
5742 | |
5743 (defun pr-interactive-dir-args (mess) | |
5744 (list | |
5745 ;; get directory argument | |
5746 (pr-interactive-dir mess) | |
5747 ;; get file name regexp | |
5748 (pr-interactive-regexp mess))) | |
5749 | |
5750 | |
5751 (defun pr-interactive-ps-dir-args (mess) | |
5752 (list | |
5753 ;; get n-up argument | |
5754 (pr-interactive-n-up mess) | |
5755 ;; get directory argument | |
5756 (pr-interactive-dir mess) | |
5757 ;; get file name regexp | |
5758 (pr-interactive-regexp mess) | |
5759 ;; get output file name | |
5760 (and (not pr-spool-p) | |
5761 (ps-print-preprint current-prefix-arg)))) | |
5762 | |
5763 | |
5764 (defun pr-interactive-n-up-file (mess) | |
5765 (list | |
5766 ;; get n-up argument | |
5767 (pr-interactive-n-up mess) | |
5768 ;; get output file name | |
5769 (and (not pr-spool-p) | |
5770 (ps-print-preprint current-prefix-arg)))) | |
5771 | |
5772 | |
5773 (defun pr-interactive-n-up-inout (mess) | |
5774 (list | |
5775 ;; get n-up argument | |
5776 (pr-interactive-n-up mess) | |
5777 ;; get input file name | |
5778 (pr-ps-infile-preprint (concat mess " ")) | |
5779 ;; get output file name | |
5780 (ps-print-preprint current-prefix-arg))) | |
5781 | |
5782 | |
5783 (defun pr-set-outfilename (filename-sym) | |
5784 (and (not pr-spool-p) | |
5785 (eq (symbol-value filename-sym) t) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
5786 (set filename-sym (and current-prefix-arg |
49646 | 5787 (ps-print-preprint current-prefix-arg)))) |
5788 (and (symbol-value filename-sym) | |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
5789 (set filename-sym (pr-dosify-file-name (symbol-value filename-sym))))) |
49646 | 5790 |
5791 | |
5792 (defun pr-set-n-up-and-filename (n-up-sym filename-sym mess) | |
5793 ;; n-up | |
5794 (or (symbol-value n-up-sym) | |
5795 (set n-up-sym (pr-interactive-n-up mess))) | |
5796 ;; output file | |
5797 (pr-set-outfilename filename-sym)) | |
5798 | |
5799 | |
5800 (defun pr-set-dir-args (dir-sym regexp-sym mess) | |
5801 ;; directory | |
5802 (or (symbol-value dir-sym) | |
5803 (set dir-sym (pr-interactive-dir mess))) | |
5804 ;; file name regexp | |
5805 (or (symbol-value regexp-sym) | |
5806 (set regexp-sym (pr-interactive-regexp mess)))) | |
5807 | |
5808 | |
5809 (defun pr-set-ps-dir-args (n-up-sym dir-sym regexp-sym filename-sym mess) | |
5810 ;; n-up | |
5811 (or (symbol-value n-up-sym) | |
5812 (set n-up-sym (pr-interactive-n-up mess))) | |
5813 ;; directory & file name regexp | |
5814 (pr-set-dir-args dir-sym regexp-sym mess) | |
5815 ;; output file | |
5816 (pr-set-outfilename filename-sym)) | |
5817 | |
5818 | |
5819 (defun pr-find-buffer-visiting (file) | |
5820 (if (not (file-directory-p file)) | |
5821 (find-buffer-visiting (if ps-windows-system | |
5822 (downcase file) | |
5823 file)) | |
5824 (let ((truename (file-truename file)) | |
5825 (blist (buffer-list)) | |
5826 found) | |
5827 (while (and (not found) blist) | |
5828 (save-excursion | |
5829 (set-buffer (car blist)) | |
5830 (and (eq major-mode 'dired-mode) | |
5831 (save-excursion | |
5832 (goto-char (point-min)) | |
5833 (string= (buffer-substring-no-properties | |
5834 (+ (point-min) 2) | |
5835 (progn | |
5836 (end-of-line) | |
5837 (1- (point)))) | |
5838 truename)) | |
5839 (setq found (car blist)))) | |
5840 (setq blist (cdr blist))) | |
5841 found))) | |
5842 | |
5843 | |
5844 (defun pr-file-list (dir file-regexp fun) | |
5845 (mapcar #'(lambda (file) | |
5846 (and (or pr-list-directory | |
5847 (not (file-directory-p file))) | |
5848 (let ((buffer (pr-find-buffer-visiting file)) | |
5849 pop-up-windows | |
5850 pop-up-frames) | |
5851 (and (or buffer | |
5852 (file-readable-p file)) | |
5853 (save-excursion | |
5854 (set-buffer (or buffer | |
5855 (find-file-noselect file))) | |
5856 (funcall fun) | |
5857 (or buffer | |
5858 (kill-buffer (current-buffer)))))))) | |
5859 (directory-files dir t file-regexp))) | |
5860 | |
5861 | |
5862 (defun pr-delete-file-if-exists (filename) | |
5863 (and (not pr-spool-p) (stringp filename) (file-exists-p filename) | |
5864 (delete-file filename))) | |
5865 | |
5866 | |
5867 (defun pr-ps-file-list (n-up dir file-regexp filename) | |
5868 (pr-delete-file-if-exists (setq filename (pr-expand-file-name filename))) | |
5869 (let ((pr-spool-p t)) | |
5870 (pr-file-list dir file-regexp | |
5871 #'(lambda () | |
5872 (if (pr-auto-mode-p) | |
5873 (pr-ps-mode n-up filename) | |
5874 (pr-text2ps 'buffer n-up filename))))) | |
5875 (or pr-spool-p | |
5876 (pr-despool-print filename))) | |
5877 | |
5878 | |
5879 (defun pr-text2ps (kind n-up filename &optional from to) | |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5880 (pr-save-file-modes |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5881 (let ((ps-n-up-printing n-up) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5882 (ps-spool-config (and (eq ps-spool-config 'setpagedevice) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5883 'setpagedevice))) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5884 (pr-delete-file-if-exists filename) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5885 (cond (pr-faces-p |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5886 (cond (pr-spool-p |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5887 ;; pr-faces-p and pr-spool-p |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5888 ;; here FILENAME arg is ignored |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5889 (cond ((eq kind 'buffer) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5890 (ps-spool-buffer-with-faces)) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5891 ((eq kind 'region) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5892 (ps-spool-region-with-faces (or from (point)) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5893 (or to (mark)))) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5894 )) |
49646 | 5895 ;; pr-faces-p and not pr-spool-p |
58204
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5896 ((eq kind 'buffer) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5897 (ps-print-buffer-with-faces filename)) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5898 ((eq kind 'region) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5899 (ps-print-region-with-faces (or from (point)) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5900 (or to (mark)) filename)) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5901 )) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5902 (pr-spool-p |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5903 ;; not pr-faces-p and pr-spool-p |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5904 ;; here FILENAME arg is ignored |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5905 (cond ((eq kind 'buffer) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5906 (ps-spool-buffer)) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5907 ((eq kind 'region) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5908 (ps-spool-region (or from (point)) (or to (mark)))) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5909 )) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5910 ;; not pr-faces-p and not pr-spool-p |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5911 ((eq kind 'buffer) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5912 (ps-print-buffer filename)) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5913 ((eq kind 'region) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5914 (ps-print-region (or from (point)) (or to (mark)) filename)) |
687bb63efa9d
interactive-p & file permission bits
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58164
diff
changeset
|
5915 )))) |
49646 | 5916 |
5917 | |
5918 (defun pr-command (command) | |
5919 "Return absolute file name specification for COMMAND. | |
5920 | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5921 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
|
5922 |
49646 | 5923 If COMMAND is already an absolute file name specification, return it. |
5924 Else it uses `pr-path-alist' to find COMMAND, if find it then return it; | |
5925 otherwise, gives an error. | |
5926 | |
5927 When using `pr-path-alist' to find COMMAND, the entries `cygwin', `windows' and | |
5928 `unix' are used (see `pr-path-alist' for documentation). | |
5929 | |
5930 If Emacs is running on Windows 95/98/NT/2000, tries to find COMMAND, | |
5931 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
|
5932 (if (string= command "") |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5933 command |
56405
10b68aa88abe
Doc fix. Change name of some funs.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
56390
diff
changeset
|
5934 (pr-dosify-file-name |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5935 (or (pr-find-command command) |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5936 (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
|
5937 (ps-windows-system 'windows) |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5938 (t 'unix)) |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5939 (file-name-nondirectory command) |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5940 nil) |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5941 (error "Command not found: %s" |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
5942 (file-name-nondirectory command)))))) |
49646 | 5943 |
5944 | |
5945 (defun pr-path-command (symbol command sym-list) | |
5946 (let ((lpath (cdr (assq symbol pr-path-alist))) | |
5947 cmd) | |
5948 ;; PATH expansion | |
5949 (and (eq symbol 'PATH) (null lpath) | |
5950 (setq lpath (parse-colon-path (getenv "PATH")))) | |
5951 (while (and lpath | |
5952 (not | |
5953 (setq cmd | |
5954 (let ((path (car lpath))) | |
5955 (cond | |
5956 ;; symbol expansion | |
5957 ((symbolp path) | |
5958 (and (not (memq path sym-list)) | |
5959 (pr-path-command path command | |
5960 (cons path sym-list)))) | |
5961 ;; normal path | |
5962 ((stringp path) | |
5963 (pr-find-command | |
5964 (expand-file-name | |
5965 (substitute-in-file-name | |
5966 (concat (file-name-as-directory path) | |
5967 command))))) | |
5968 ))))) | |
5969 (setq lpath (cdr lpath))) | |
5970 cmd)) | |
5971 | |
5972 | |
5973 (defun pr-find-command (cmd) | |
5974 (if ps-windows-system | |
5975 ;; windows system | |
5976 (let ((ext (cons (file-name-extension cmd t) | |
5977 (list ".exe" ".bat" ".com"))) | |
5978 found) | |
5979 (setq cmd (file-name-sans-extension cmd)) | |
5980 (while (and ext | |
5981 (setq found (concat cmd (car ext))) | |
5982 (not (and (file-regular-p found) | |
5983 (file-executable-p found)))) | |
5984 (setq ext (cdr ext) | |
5985 found nil)) | |
5986 found) | |
5987 ;; non-windows systems | |
5988 (and (file-regular-p cmd) | |
5989 (file-executable-p cmd) | |
5990 cmd))) | |
5991 | |
5992 | |
5993 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
5994 ;; Printing Interface (inspired on ps-print-interface.el) | |
5995 | |
5996 | |
5997 (require 'widget) | |
5998 (require 'wid-edit) | |
5999 (require 'cus-edit) | |
6000 | |
6001 | |
6002 (defvar pr-i-window-configuration nil) | |
6003 | |
6004 (defvar pr-i-buffer nil) | |
6005 (defvar pr-i-region nil) | |
6006 (defvar pr-i-mode nil) | |
6007 (defvar pr-i-despool nil) | |
6008 (defvar pr-i-ps-as-is t) | |
6009 (defvar pr-i-n-up 1) | |
6010 (defvar pr-i-directory "./") | |
6011 (defvar pr-i-regexp "") | |
6012 (defvar pr-i-ps-file "") | |
6013 (defvar pr-i-out-file "") | |
6014 (defvar pr-i-answer-yes nil) | |
6015 (defvar pr-i-process 'buffer) | |
6016 (defvar pr-i-ps-send 'printer) | |
6017 | |
6018 | |
6019 (defvar pr-interface-map nil | |
6020 "Keymap for pr-interface.") | |
6021 | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
6022 (unless pr-interface-map |
49646 | 6023 (setq pr-interface-map (make-sparse-keymap)) |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
6024 (cond ((featurep 'xemacs) ; XEmacs |
49646 | 6025 (pr-f-set-keymap-parents pr-interface-map (list widget-keymap)) |
6026 (pr-f-set-keymap-name pr-interface-map 'pr-interface-map)) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
6027 (t ; GNU Emacs |
49646 | 6028 (pr-f-set-keymap-parents pr-interface-map widget-keymap))) |
6029 (define-key pr-interface-map "q" 'pr-interface-quit) | |
6030 (define-key pr-interface-map "?" 'pr-interface-help)) | |
6031 | |
6032 | |
6033 (defmacro pr-interface-save (&rest body) | |
6034 `(save-excursion | |
6035 (set-buffer pr-i-buffer) | |
6036 ,@body)) | |
6037 | |
6038 | |
6039 (defun pr-create-interface () | |
6040 "Create the front end for printing package." | |
6041 (setq pr-i-buffer (buffer-name (current-buffer)) | |
6042 pr-i-region (ps-mark-active-p) | |
6043 pr-i-mode (pr-mode-alist-p) | |
6044 pr-i-window-configuration (current-window-configuration)) | |
6045 | |
6046 (put 'pr-i-process 'pr-widget-list nil) | |
6047 (put 'pr-i-ps-send 'pr-widget-list nil) | |
6048 | |
6049 (delete-other-windows) | |
6050 (kill-buffer (get-buffer-create pr-buffer-name)) | |
6051 (switch-to-buffer (get-buffer-create pr-buffer-name)) | |
6052 | |
6053 ;; header | |
6054 (let ((versions (concat "printing v" pr-version | |
6055 " ps-print v" ps-print-version))) | |
64018
2d2ec1140b68
(printing): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63328
diff
changeset
|
6056 (widget-insert (make-string (- 79 (length versions)) ?\s) versions)) |
49646 | 6057 (pr-insert-italic "\nCurrent Directory : " 1) |
6058 (pr-insert-italic default-directory) | |
6059 | |
6060 (pr-insert-section-1) ; 1. Print | |
6061 (pr-insert-section-2) ; 2. PostScript Printer | |
6062 (pr-insert-section-3) ; 3. Text Printer | |
6063 | |
6064 ;; separator | |
6065 (widget-insert "\n\n " (make-string 77 ?-)) | |
6066 | |
6067 (pr-insert-section-4) ; 4. Settings | |
6068 (pr-insert-section-5) ; 5. Customize | |
6069 (pr-insert-section-6) ; 6. Show Settings | |
6070 (pr-insert-section-7) ; 7. Help | |
6071 | |
6072 (use-local-map pr-interface-map) | |
6073 (widget-setup) | |
6074 (goto-char (point-min)) | |
6075 | |
6076 (and pr-i-region ; let region activated | |
6077 (pr-keep-region-active))) | |
6078 | |
6079 | |
6080 (defun pr-insert-section-1 () | |
6081 ;; 1. Print: | |
6082 (pr-insert-italic "\nPrint :" 1) | |
6083 | |
6084 ;; 1a. Buffer: | |
6085 ;; 1a. Buffer: Buffer List | |
6086 (pr-insert-radio-button 'pr-i-process 'buffer) | |
6087 (pr-insert-menu "Buffer List" 'pr-i-buffer | |
6088 (let ((blist (buffer-list)) | |
6089 case-fold-search choices) | |
6090 (while blist | |
6091 (let ((name (buffer-name (car blist))) | |
6092 (ignore pr-buffer-name-ignore) | |
6093 found) | |
6094 (setq blist (cdr blist)) | |
6095 (while (and ignore (not found)) | |
6096 (setq found (string-match (car ignore) name) | |
6097 ignore (cdr ignore))) | |
6098 (or found | |
6099 (setq choices | |
6100 (cons (list 'quote | |
6101 (list 'choice-item | |
6102 :format "%[%t%]" | |
6103 name)) | |
6104 choices))))) | |
6105 (nreverse choices)) | |
6106 " Buffer : " nil | |
6107 '(progn | |
6108 (pr-interface-save | |
6109 (setq pr-i-region (ps-mark-active-p) | |
6110 pr-i-mode (pr-mode-alist-p))) | |
6111 (pr-update-checkbox 'pr-i-region) | |
6112 (pr-update-checkbox 'pr-i-mode))) | |
6113 ;; 1a. Buffer: Region | |
6114 (put 'pr-i-region 'pr-widget | |
6115 (pr-insert-checkbox | |
6116 "\n " | |
6117 'pr-i-region | |
6118 #'(lambda (widget &rest ignore) | |
6119 (let ((region-p (pr-interface-save | |
6120 (ps-mark-active-p)))) | |
6121 (cond ((null (widget-value widget)) ; widget is nil | |
6122 (setq pr-i-region nil)) | |
6123 (region-p ; widget is true and there is a region | |
6124 (setq pr-i-region t) | |
6125 (widget-value-set widget t) | |
6126 (widget-setup)) ; MUST be called after widget-value-set | |
6127 (t ; widget is true and there is no region | |
6128 (ding) | |
6129 (message "There is no region active") | |
6130 (setq pr-i-region nil) | |
6131 (widget-value-set widget nil) | |
6132 (widget-setup))))) ; MUST be called after widget-value-set | |
6133 " Region")) | |
6134 ;; 1a. Buffer: Mode | |
6135 (put 'pr-i-mode 'pr-widget | |
6136 (pr-insert-checkbox | |
6137 " " | |
6138 'pr-i-mode | |
6139 #'(lambda (widget &rest ignore) | |
6140 (let ((mode-p (pr-interface-save | |
6141 (pr-mode-alist-p)))) | |
6142 (cond | |
6143 ((null (widget-value widget)) ; widget is nil | |
6144 (setq pr-i-mode nil)) | |
6145 (mode-p ; widget is true and there is a `mode' | |
6146 (setq pr-i-mode t) | |
6147 (widget-value-set widget t) | |
6148 (widget-setup)) ; MUST be called after widget-value-set | |
6149 (t ; widget is true and there is no `mode' | |
6150 (ding) | |
6151 (message | |
6152 "This buffer isn't in a mode that printing treats specially.") | |
6153 (setq pr-i-mode nil) | |
6154 (widget-value-set widget nil) | |
6155 (widget-setup))))) ; MUST be called after widget-value-set | |
6156 " Mode\n")) | |
6157 | |
6158 ;; 1b. Directory: | |
6159 (pr-insert-radio-button 'pr-i-process 'directory) | |
6160 (widget-create | |
6161 'directory | |
6162 :size 58 | |
6163 :format " Directory : %v" | |
6164 :notify 'pr-interface-directory | |
6165 :action (lambda (widget &optional event) | |
6166 (if (pr-interface-directory widget) | |
6167 (pr-widget-field-action widget event) | |
6168 (ding) | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6169 (message "Please specify a readable directory"))) |
49646 | 6170 pr-i-directory) |
6171 ;; 1b. Directory: File Regexp | |
6172 (widget-create 'regexp | |
6173 :size 58 | |
6174 :format "\n File Regexp : %v\n" | |
6175 :notify (lambda (widget &rest ignore) | |
6176 (setq pr-i-regexp (widget-value widget))) | |
6177 pr-i-regexp) | |
6178 ;; 1b. Directory: List Directory Entry | |
6179 (widget-insert " ") | |
6180 (pr-insert-toggle 'pr-list-directory " List Directory Entry\n") | |
6181 | |
6182 ;; 1c. PostScript File: | |
6183 (pr-insert-radio-button 'pr-i-process 'file) | |
6184 (widget-create | |
6185 'file | |
6186 :size 51 | |
6187 :format " PostScript File : %v" | |
6188 :notify 'pr-interface-infile | |
6189 :action (lambda (widget &rest event) | |
6190 (if (pr-interface-infile widget) | |
6191 (pr-widget-field-action widget event) | |
6192 (ding) | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6193 (message "Please specify a readable PostScript file"))) |
49646 | 6194 pr-i-ps-file) |
6195 ;; 1c. PostScript File: PostScript Utility | |
6196 (pr-insert-menu "PostScript Utility" 'pr-ps-utility | |
6197 (pr-choice-alist pr-ps-utility-alist) | |
6198 "\n PostScript Utility : " | |
6199 " ") | |
54210
602769168263
Replace "As Is..." in PostScript file print/preview by "No Preprocessing...".
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54209
diff
changeset
|
6200 ;; 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
|
6201 (pr-insert-toggle 'pr-i-ps-as-is " No Preprocessing")) |
49646 | 6202 |
6203 | |
6204 (defun pr-insert-section-2 () | |
6205 ;; 2. PostScript Printer: | |
6206 ;; 2. PostScript Printer: PostScript Printer List | |
6207 (pr-insert-italic "\n\nPostScript Printer : " 2 20) | |
6208 (pr-insert-menu "PostScript Printer" 'pr-ps-name | |
6209 (pr-choice-alist pr-ps-printer-alist)) | |
6210 ;; 2. PostScript Printer: Despool | |
6211 (put 'pr-i-despool 'pr-widget | |
6212 (pr-insert-checkbox | |
6213 " " | |
6214 'pr-i-despool | |
6215 #'(lambda (widget &rest ignore) | |
6216 (if pr-spool-p | |
6217 (setq pr-i-despool (not pr-i-despool)) | |
6218 (ding) | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6219 (message "Can despool only when spooling is actually selected") |
49646 | 6220 (setq pr-i-despool nil)) |
6221 (widget-value-set widget pr-i-despool) | |
6222 (widget-setup)) ; MUST be called after widget-value-set | |
6223 " Despool ")) | |
6224 ;; 2. PostScript Printer: Preview Print Quit | |
6225 (pr-insert-button 'pr-interface-preview "Preview" " ") | |
6226 (pr-insert-button 'pr-interface-ps-print "Print" " ") | |
6227 (pr-insert-button 'pr-interface-quit "Quit") | |
6228 ;; 2. PostScript Printer: Send to Printer/Temporary File | |
6229 (pr-insert-radio-button 'pr-i-ps-send 'printer) | |
6230 (widget-insert " Send to Printer/Temporary File") | |
6231 ;; 2. PostScript Printer: Send to File | |
6232 (pr-insert-radio-button 'pr-i-ps-send 'file) | |
6233 (widget-create | |
6234 'file | |
6235 :size 57 | |
6236 :format " Send to File : %v" | |
6237 :notify 'pr-interface-outfile | |
6238 :action (lambda (widget &rest event) | |
6239 (if (and (pr-interface-outfile widget) | |
6240 (or (not (file-exists-p pr-i-out-file)) | |
6241 (setq pr-i-answer-yes | |
6242 (y-or-n-p "File exists; overwrite? ")))) | |
6243 (pr-widget-field-action widget event) | |
6244 (ding) | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6245 (message "Please specify a writable PostScript file"))) |
49646 | 6246 pr-i-out-file) |
6247 ;; 2. PostScript Printer: N-Up | |
6248 (widget-create | |
6249 'integer | |
6250 :size 3 | |
6251 :format "\n N-Up : %v" | |
6252 :notify (lambda (widget &rest ignore) | |
6253 (let ((value (if (string= (widget-apply widget :value-get) "") | |
6254 0 | |
6255 (widget-value widget)))) | |
6256 (if (and (integerp value) | |
6257 (<= 1 value) (<= value 100)) | |
6258 (progn | |
6259 (message " ") | |
6260 (setq pr-i-n-up value)) | |
6261 (ding) | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6262 (message "Please specify an integer between 1 and 100")))) |
49646 | 6263 pr-i-n-up)) |
6264 | |
6265 | |
6266 (defun pr-insert-section-3 () | |
6267 ;; 3. Text Printer: | |
6268 (pr-insert-italic "\n\nText Printer : " 2 14) | |
6269 (pr-insert-menu "Text Printer" 'pr-txt-name | |
6270 (pr-choice-alist pr-txt-printer-alist) | |
6271 nil " ") | |
6272 (pr-insert-button 'pr-interface-printify "Printify" " ") | |
6273 (pr-insert-button 'pr-interface-txt-print "Print" " ") | |
6274 (pr-insert-button 'pr-interface-quit "Quit")) | |
6275 | |
6276 | |
6277 (defun pr-insert-section-4 () | |
6278 ;; 4. Settings: | |
6279 ;; 4. Settings: Landscape Auto Region Verbose | |
6280 (pr-insert-checkbox "\n\n " 'ps-landscape-mode | |
6281 #'(lambda (&rest ignore) | |
6282 (setq ps-landscape-mode (not ps-landscape-mode) | |
6283 pr-file-landscape ps-landscape-mode)) | |
6284 " Landscape ") | |
6285 (pr-insert-toggle 'pr-auto-region " Auto Region ") | |
6286 (pr-insert-toggle 'pr-buffer-verbose " Verbose\n ") | |
6287 | |
6288 ;; 4. Settings: Print Header Auto Mode | |
6289 (pr-insert-toggle 'ps-print-header " Print Header ") | |
6290 (pr-insert-toggle 'pr-auto-mode " Auto Mode\n ") | |
6291 | |
6292 ;; 4. Settings: Print Header Frame Menu Lock | |
6293 (pr-insert-toggle 'ps-print-header-frame " Print Header Frame ") | |
6294 (pr-insert-toggle 'pr-menu-lock " Menu Lock\n ") | |
6295 | |
6296 ;; 4. Settings: Line Number | |
6297 (pr-insert-toggle 'ps-line-number " Line Number\n ") | |
6298 | |
6299 ;; 4. Settings: Zebra Stripes Spool Buffer | |
6300 (pr-insert-toggle 'ps-zebra-stripes " Zebra Stripes") | |
6301 (pr-insert-checkbox " " | |
6302 'pr-spool-p | |
6303 #'(lambda (&rest ignore) | |
6304 (setq pr-spool-p (not pr-spool-p)) | |
6305 (unless pr-spool-p | |
6306 (setq pr-i-despool nil) | |
6307 (pr-update-checkbox 'pr-i-despool))) | |
6308 " Spool Buffer") | |
6309 | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6310 ;; 4. Settings: Duplex Print with faces |
49646 | 6311 (pr-insert-checkbox "\n " |
6312 'ps-spool-duplex | |
6313 #'(lambda (&rest ignore) | |
6314 (setq ps-spool-duplex (not ps-spool-duplex) | |
6315 pr-file-duplex ps-spool-duplex)) | |
6316 " Duplex ") | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6317 (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
|
6318 |
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6319 ;; 4. Settings: Tumble Print via Ghostscript |
49646 | 6320 (pr-insert-checkbox "\n " |
6321 'ps-spool-tumble | |
6322 #'(lambda (&rest ignore) | |
6323 (setq ps-spool-tumble (not ps-spool-tumble) | |
6324 pr-file-tumble ps-spool-tumble)) | |
6325 " Tumble ") | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6326 (pr-insert-toggle 'pr-print-using-ghostscript " Print via Ghostscript\n ") |
49646 | 6327 |
6328 ;; 4. Settings: Upside-Down Page Parity | |
54209
c312c950b64d
Adjust buffer interface.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54146
diff
changeset
|
6329 (pr-insert-toggle 'ps-print-upside-down " Upside-Down") |
c312c950b64d
Adjust buffer interface.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
54146
diff
changeset
|
6330 (pr-insert-italic "\n\nSelect Pages : " 2 14) |
49646 | 6331 (pr-insert-menu "Page Parity" 'ps-even-or-odd-pages |
6332 (mapcar #'(lambda (alist) | |
6333 (list 'quote | |
6334 (list 'choice-item | |
6335 :format "%[%t%]" | |
6336 :tag (cdr alist) | |
6337 :value (car alist)))) | |
6338 pr-even-or-odd-alist))) | |
6339 | |
6340 | |
6341 (defun pr-insert-section-5 () | |
6342 ;; 5. Customize: | |
6343 (pr-insert-italic "\n\nCustomize : " 2 11) | |
6344 (pr-insert-button 'pr-customize "printing" " ") | |
6345 (pr-insert-button #'(lambda (&rest ignore) (ps-print-customize)) | |
6346 "ps-print" " ") | |
6347 (pr-insert-button 'lpr-customize "lpr")) | |
6348 | |
6349 | |
6350 (defun pr-insert-section-6 () | |
6351 ;; 6. Show Settings: | |
6352 (pr-insert-italic "\nShow Settings : " 1 14) | |
6353 (pr-insert-button 'pr-show-pr-setup "printing" " ") | |
6354 (pr-insert-button 'pr-show-ps-setup "ps-print" " ") | |
6355 (pr-insert-button 'pr-show-lpr-setup "lpr")) | |
6356 | |
6357 | |
6358 (defun pr-insert-section-7 () | |
6359 ;; 7. Help: | |
6360 (pr-insert-italic "\nHelp : " 1 5) | |
6361 (pr-insert-button 'pr-interface-help "Interface Help" " ") | |
6362 (pr-insert-button 'pr-help "Menu Help" " ") | |
6363 (pr-insert-button 'pr-interface-quit "Quit" "\n ") | |
6364 (pr-insert-button 'pr-kill-help "Kill All Printing Help Buffer")) | |
6365 | |
6366 | |
6367 (defun pr-kill-help (&rest ignore) | |
6368 "Kill all printing help buffer." | |
6369 (interactive) | |
6370 (let ((help '("*Printing Interface Help*" "*Printing Help*" | |
6371 "*LPR Setup*" "*PR Setup*" "*PS Setup*"))) | |
6372 (while help | |
6373 (let ((buffer (get-buffer (car help)))) | |
6374 (setq help (cdr help)) | |
6375 (when buffer | |
6376 (delete-windows-on buffer) | |
6377 (kill-buffer buffer))))) | |
6378 (recenter (- (window-height) 2))) | |
6379 | |
6380 | |
6381 (defun pr-interface-quit (&rest ignore) | |
6382 "Kill the printing buffer interface and quit." | |
6383 (interactive) | |
6384 (kill-buffer pr-buffer-name) | |
6385 (set-window-configuration pr-i-window-configuration)) | |
6386 | |
6387 | |
6388 (defun pr-interface-help (&rest ignore) | |
6389 "printing buffer interface help." | |
6390 (interactive) | |
6391 (pr-show-setup pr-interface-help-message "*Printing Interface Help*")) | |
6392 | |
6393 | |
6394 (defun pr-interface-txt-print (&rest ignore) | |
6395 "Print using lpr package." | |
6396 (interactive) | |
6397 (condition-case data | |
6398 (cond | |
6399 ((eq pr-i-process 'directory) | |
6400 (pr-i-directory) | |
6401 (pr-interface-save | |
6402 (pr-txt-directory pr-i-directory pr-i-regexp))) | |
6403 ((eq pr-i-process 'buffer) | |
6404 (pr-interface-save | |
6405 (cond (pr-i-region | |
6406 (let ((pr-auto-mode pr-i-mode)) | |
6407 (pr-txt-region))) | |
6408 (pr-i-mode | |
6409 (let (pr-auto-region) | |
6410 (pr-txt-mode))) | |
6411 (t | |
6412 (let (pr-auto-mode pr-auto-region) | |
6413 (pr-txt-buffer))) | |
6414 ))) | |
6415 ((eq pr-i-process 'file) | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6416 (error "Please specify a text file")) |
49646 | 6417 (t |
6418 (error "Internal error: `pr-i-process' = %S" pr-i-process)) | |
6419 ) | |
6420 ;; handlers | |
6421 ((quit error) | |
6422 (ding) | |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64762
diff
changeset
|
6423 (message "%s" (error-message-string data))))) |
49646 | 6424 |
6425 | |
6426 (defun pr-interface-printify (&rest ignore) | |
6427 "Printify a buffer." | |
6428 (interactive) | |
6429 (condition-case data | |
6430 (cond | |
6431 ((eq pr-i-process 'directory) | |
6432 (pr-i-directory) | |
6433 (pr-interface-save | |
6434 (pr-printify-directory pr-i-directory pr-i-regexp))) | |
6435 ((eq pr-i-process 'buffer) | |
6436 (pr-interface-save | |
6437 (if pr-i-region | |
6438 (pr-printify-region) | |
6439 (pr-printify-buffer)))) | |
6440 ((eq pr-i-process 'file) | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6441 (error "Cannot printify a PostScript file")) |
49646 | 6442 (t |
6443 (error "Internal error: `pr-i-process' = %S" pr-i-process)) | |
6444 ) | |
6445 ;; handlers | |
6446 ((quit error) | |
6447 (ding) | |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64762
diff
changeset
|
6448 (message "%s" (error-message-string data))))) |
49646 | 6449 |
6450 | |
6451 (defun pr-interface-ps-print (&rest ignore) | |
6452 "Print using ps-print package." | |
6453 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
6454 (pr-interface-ps 'pr-despool-ps-print 'pr-ps-directory-ps-print |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
6455 'pr-ps-file-ps-print 'pr-ps-file-up-ps-print |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
6456 'pr-ps-region-ps-print 'pr-ps-mode-ps-print |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
6457 'pr-ps-buffer-ps-print)) |
49646 | 6458 |
6459 | |
6460 (defun pr-interface-preview (&rest ignore) | |
6461 "Preview a PostScript file." | |
6462 (interactive) | |
58306
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
6463 (pr-interface-ps 'pr-despool-preview 'pr-ps-directory-preview |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
6464 'pr-ps-file-preview 'pr-ps-file-up-preview |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
6465 'pr-ps-region-preview 'pr-ps-mode-preview |
561c3f4a39fe
interactive-p & eval-and-compile
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
58241
diff
changeset
|
6466 'pr-ps-buffer-preview)) |
49646 | 6467 |
6468 | |
6469 (defun pr-interface-ps (ps-despool ps-directory ps-file ps-file-up ps-region | |
6470 ps-mode ps-buffer) | |
6471 (condition-case data | |
6472 (let ((outfile (or (and (eq pr-i-process 'file) pr-i-ps-as-is) | |
6473 (pr-i-ps-send)))) | |
6474 (cond | |
6475 ((and pr-i-despool pr-spool-p) | |
6476 (pr-interface-save | |
6477 (funcall ps-despool outfile)) | |
6478 (setq pr-i-despool nil) | |
6479 (pr-update-checkbox 'pr-i-despool)) | |
6480 ((eq pr-i-process 'directory) | |
6481 (pr-i-directory) | |
6482 (pr-interface-save | |
6483 (funcall ps-directory | |
6484 pr-i-n-up pr-i-directory pr-i-regexp outfile))) | |
6485 ((eq pr-i-process 'file) | |
6486 (cond ((or (file-directory-p pr-i-ps-file) | |
6487 (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
|
6488 (error "Please specify a readable PostScript file")) |
49646 | 6489 (pr-i-ps-as-is |
6490 (pr-interface-save | |
6491 (funcall ps-file pr-i-ps-file))) | |
6492 (t | |
6493 (pr-interface-save | |
6494 (funcall ps-file-up pr-i-n-up pr-i-ps-file outfile))) | |
6495 )) | |
6496 ((eq pr-i-process 'buffer) | |
6497 (pr-interface-save | |
6498 (cond (pr-i-region | |
6499 (let ((pr-auto-mode pr-i-mode)) | |
6500 (funcall ps-region pr-i-n-up outfile))) | |
6501 (pr-i-mode | |
6502 (let (pr-auto-region) | |
6503 (funcall ps-mode pr-i-n-up outfile))) | |
6504 (t | |
6505 (let (pr-auto-mode pr-auto-region) | |
6506 (funcall ps-buffer pr-i-n-up outfile))) | |
6507 ))) | |
6508 (t | |
6509 (error "Internal error: `pr-i-process' = %S" pr-i-process)) | |
6510 )) | |
6511 ;; handlers | |
6512 ((quit error) | |
6513 (ding) | |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64762
diff
changeset
|
6514 (message "%s" (error-message-string data))))) |
49646 | 6515 |
6516 | |
6517 (defun pr-i-ps-send () | |
6518 (cond ((eq pr-i-ps-send 'printer) | |
6519 nil) | |
6520 ((not (eq pr-i-ps-send 'file)) | |
6521 (error "Internal error: `pr-i-ps-send' = %S" pr-i-ps-send)) | |
6522 ((or (file-directory-p pr-i-out-file) | |
6523 (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
|
6524 (error "Please specify a writable PostScript file")) |
49646 | 6525 ((or (not (file-exists-p pr-i-out-file)) |
6526 pr-i-answer-yes | |
6527 (setq pr-i-answer-yes | |
6528 (y-or-n-p (format "File `%s' exists; overwrite? " | |
6529 pr-i-out-file)))) | |
6530 pr-i-out-file) | |
6531 (t | |
6532 (error "File already exists")))) | |
6533 | |
6534 | |
6535 (defun pr-i-directory () | |
6536 (or (and (file-directory-p pr-i-directory) | |
6537 (file-readable-p pr-i-directory)) | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6538 (error "Please specify be a readable directory"))) |
49646 | 6539 |
6540 | |
6541 (defun pr-interface-directory (widget &rest ignore) | |
6542 (and pr-buffer-verbose | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6543 (message "You can use M-TAB or ESC TAB for file completion")) |
49646 | 6544 (let ((dir (widget-value widget))) |
6545 (and (file-directory-p dir) | |
6546 (file-readable-p dir) | |
6547 (setq pr-i-directory dir)))) | |
6548 | |
6549 | |
6550 (defun pr-interface-infile (widget &rest ignore) | |
6551 (and pr-buffer-verbose | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6552 (message "You can use M-TAB or ESC TAB for file completion")) |
49646 | 6553 (let ((file (widget-value widget))) |
6554 (and (not (file-directory-p file)) | |
6555 (file-readable-p file) | |
6556 (setq pr-i-ps-file file)))) | |
6557 | |
6558 | |
6559 (defun pr-interface-outfile (widget &rest ignore) | |
6560 (setq pr-i-answer-yes nil) | |
6561 (and pr-buffer-verbose | |
54146
2a5eca2838d1
A lot of doc fix.
Vinicius Jose Latorre <viniciusjl@ig.com.br>
parents:
52401
diff
changeset
|
6562 (message "You can use M-TAB or ESC TAB for file completion")) |
49646 | 6563 (let ((file (widget-value widget))) |
6564 (and (not (file-directory-p file)) | |
6565 (file-writable-p file) | |
6566 (setq pr-i-out-file file)))) | |
6567 | |
6568 | |
6569 (defun pr-widget-field-action (widget event) | |
6570 (and (get-buffer "*Completions*") ; clean frame window | |
6571 (delete-windows-on "*Completions*")) | |
6572 (message " ") ; clean echo area | |
6573 (widget-field-action widget event)) | |
6574 | |
6575 | |
6576 (defun pr-insert-italic (str &optional from to) | |
6577 (let ((len (length str))) | |
6578 (put-text-property (if from (max from 0) 0) | |
6579 (if to (max to len) len) | |
6580 'face 'italic str) | |
6581 (widget-insert str))) | |
6582 | |
6583 | |
6584 (defun pr-insert-checkbox (before var-sym fun label) | |
6585 (widget-insert before) | |
6586 (prog1 | |
6587 (widget-create 'checkbox | |
6588 :notify fun | |
6589 (symbol-value var-sym)) | |
6590 (widget-insert label))) | |
6591 | |
6592 | |
6593 (defun pr-insert-toggle (var-sym label) | |
6594 (widget-create 'checkbox | |
6595 :notify `(lambda (&rest ignore) | |
6596 (setq ,var-sym (not ,var-sym))) | |
6597 (symbol-value var-sym)) | |
6598 (widget-insert label)) | |
6599 | |
6600 | |
6601 (defun pr-insert-button (fun label &optional separator) | |
6602 (widget-create 'push-button | |
6603 :notify fun | |
6604 label) | |
6605 (and separator | |
6606 (widget-insert separator))) | |
6607 | |
6608 | |
6609 (defun pr-insert-menu (tag var-sym choices &optional before after &rest body) | |
6610 (and before (widget-insert before)) | |
6611 (eval `(widget-create 'menu-choice | |
6612 :tag ,tag | |
6613 :format "%v" | |
6614 :inline t | |
6615 :value ,var-sym | |
6616 :notify (lambda (widget &rest ignore) | |
6617 (setq ,var-sym (widget-value widget)) | |
6618 ,@body) | |
6619 :void '(choice-item :format "%[%t%]" | |
6620 :tag "Can not display value!") | |
6621 ,@choices)) | |
6622 (and after (widget-insert after))) | |
6623 | |
6624 | |
6625 (defun pr-insert-radio-button (var-sym sym) | |
6626 (widget-insert "\n") | |
6627 (let ((wid-list (get var-sym 'pr-widget-list)) | |
6628 (wid (eval `(widget-create | |
6629 'radio-button | |
6630 :format " %[%v%]" | |
6631 :value (eq ,var-sym (quote ,sym)) | |
6632 :notify (lambda (&rest ignore) | |
6633 (setq ,var-sym (quote ,sym)) | |
6634 (pr-update-radio-button (quote ,var-sym))))))) | |
6635 (put var-sym 'pr-widget-list (cons (cons wid sym) wid-list)))) | |
6636 | |
6637 | |
6638 (defun pr-update-radio-button (var-sym) | |
6639 (let ((wid-list (get var-sym 'pr-widget-list))) | |
6640 (while wid-list | |
6641 (let ((wid (car (car wid-list))) | |
6642 (value (cdr (car wid-list)))) | |
6643 (setq wid-list (cdr wid-list)) | |
6644 (widget-value-set wid (eq (symbol-value var-sym) value)))) | |
6645 (widget-setup))) | |
6646 | |
6647 | |
6648 (defun pr-update-checkbox (var-sym) | |
6649 (let ((wid (get var-sym 'pr-widget))) | |
6650 (when wid | |
6651 (widget-value-set wid (symbol-value var-sym)) | |
6652 (widget-setup)))) | |
6653 | |
6654 | |
6655 (defun pr-choice-alist (alist) | |
6656 (let ((max (apply 'max (mapcar #'(lambda (alist) | |
6657 (length (symbol-name (car alist)))) | |
6658 alist)))) | |
6659 (mapcar #'(lambda (alist) | |
6660 (let* ((sym (car alist)) | |
6661 (name (symbol-name sym))) | |
6662 (list | |
6663 'quote | |
6664 (list | |
6665 'choice-item | |
6666 :format "%[%t%]" | |
6667 :tag (concat name | |
6668 (make-string (- max (length name)) ?_)) | |
6669 :value sym)))) | |
6670 alist))) | |
6671 | |
6672 | |
6673 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | |
6674 | |
6675 | |
6676 (provide 'printing) | |
6677 | |
6678 | |
58138
a93efc8bd56c
(pr-get-symbol): Don't downcase.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57241
diff
changeset
|
6679 ;; arch-tag: 9ce9ac3f-0f60-4370-900b-1943215d9d18 |
49646 | 6680 ;;; printing.el ends here |