1 ;;; ps-samp.el --- ps-print sample setup code
3 ;; Copyright (C) 2007-2017 Free Software Foundation, Inc.
5 ;; Author: Jim Thompson (was <thompson@wg2.waii.com>)
6 ;; Jacques Duthen (was <duthen@cegelec-red.fr>)
7 ;; Vinicius Jose Latorre <viniciusjl@ig.com.br>
8 ;; Kenichi Handa <handa@m17n.org> (multi-byte characters)
9 ;; Maintainer: Kenichi Handa <handa@m17n.org> (multi-byte characters)
10 ;; Vinicius Jose Latorre <viniciusjl@ig.com.br>
11 ;; Keywords: wp, print, PostScript
12 ;; X-URL: http://www.emacswiki.org/cgi-bin/wiki/ViniciusJoseLatorre
15 ;; This file is part of GNU Emacs.
17 ;; GNU Emacs is free software: you can redistribute it and/or modify
18 ;; it under the terms of the GNU General Public License as published by
19 ;; the Free Software Foundation, either version 3 of the License, or
20 ;; (at your option) any later version.
22 ;; GNU Emacs is distributed in the hope that it will be useful,
23 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
24 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 ;; GNU General Public License for more details.
27 ;; You should have received a copy of the GNU General Public License
28 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
32 ;; Some example hacks for ps-print.el.
33 ;; This stuff is for anybody that's brave enough to look this far,
34 ;; and able to figure out how to use it. It isn't really part of
35 ;; ps-print, but I'll leave it here in hopes it might be useful:
37 ;; WARNING!!! The following code is *sample* code only.
38 ;; Don't use it unless you understand what it does!
46 ;; A hook to bind to `rmail-mode-hook' to locally bind prsc and set
47 ;; `ps-left-header' specially for mail messages.
48 (defun ps-rmail-mode-hook ()
49 (local-set-key [print] 'ps-rmail-print-message-from-summary)
50 (setq-local ps-header-lines 3)
51 ;; The left header will display the message's subject, its
52 ;; author, and the name of the folder it was in.
53 (setq-local ps-left-header
54 '(ps-article-subject ps-article-author buffer-name)))
56 ;; Like `ps-gnus-print-article-from-summary', but for rmail.
57 (defun ps-rmail-print-message-from-summary ()
59 (ps-print-message-from-summary 'rmail-summary-buffer "RMAIL"))
61 ;; Used in `ps-rmail-print-article-from-summary',
62 ;; `ps-gnus-print-article-from-summary' and `ps-vm-print-message-from-summary'.
63 (defun ps-print-message-from-summary (summary-buffer summary-default)
64 (let ((ps-buf (or (and (boundp summary-buffer)
65 (symbol-value summary-buffer))
67 (and (get-buffer ps-buf)
68 (with-current-buffer ps-buf
69 (ps-spool-buffer-with-faces)))))
71 ;; Look in an article or mail message for the Subject: line.
72 (defun ps-article-subject ()
75 (narrow-to-region (point-min) (progn (rfc822-goto-eoh) (point)))
76 (concat "Subject: " (or (mail-fetch-field "Subject") "???")))))
78 ;; Look in an article or mail message for the From: line. Sorta-kinda
79 ;; understands RFC-822 addresses and can pull the real name out where
81 (defun ps-article-author ()
84 (narrow-to-region (point-min) (progn (rfc822-goto-eoh) (point)))
85 (let ((fromstring (mail-fetch-field "From")))
87 ;; Try first to match addresses that look like
88 ;; thompson@wg2.waii.com (Jim Thompson)
89 ((and fromstring (string-match ".*[ \t]+(\\(.*\\))" fromstring))
90 (match-string 1 fromstring))
91 ;; Next try to match addresses that look like
92 ;; Jim Thompson <thompson@wg2.waii.com> or
93 ;; "Jim Thompson" <thompson@wg2.waii.com>
95 (string-match "\\(\"?\\)\\(.*\\)\\1[ \t]+<.*>" fromstring))
96 (match-string 2 fromstring))
97 ;; Couldn't find a real name -- show the address instead.
101 ;; A hook to bind to `gnus-article-prepare-hook'. This will set
102 ;; `ps-left-header' specially for gnus articles. Unfortunately,
103 ;; `gnus-article-mode-hook' is called only once, the first time the *Article*
104 ;; buffer enters that mode, so it would only work for the first time
105 ;; we ran gnus. The second time, this hook wouldn't get set up. The
106 ;; only alternative is `gnus-article-prepare-hook'.
107 (defun ps-gnus-article-prepare-hook ()
108 (setq-local ps-header-lines 3)
109 ;; The left headers will display the article's subject, its
110 ;; author, and the newsgroup it was in.
111 (setq-local ps-left-header
112 '(ps-article-subject ps-article-author gnus-newsgroup-name)))
114 ;; A hook to bind to `vm-mode-hook' to locally bind prsc and set
115 ;; `ps-left-header' specially for mail messages.
116 (defun ps-vm-mode-hook ()
117 (local-set-key [print] 'ps-vm-print-message-from-summary
)
118 (setq-local ps-header-lines
3)
119 ;; The left headers will display the message's subject, its
120 ;; author, and the name of the folder it was in.
121 (setq-local ps-left-header
122 '(ps-article-subject ps-article-author buffer-name
)))
124 ;; Every now and then I forget to switch from the *Summary* buffer to
125 ;; the *Article* before hitting prsc, and a nicely formatted list of
126 ;; article subjects shows up at the printer. This function, bound to
127 ;; prsc for the gnus *Summary* buffer means I don't have to switch
129 (defun ps-gnus-print-article-from-summary ()
131 (ps-print-message-from-summary 'gnus-article-buffer
"*Article*"))
133 ;; Like `ps-gnus-print-article-from-summary', but for vm.
134 (defun ps-vm-print-message-from-summary ()
136 (ps-print-message-from-summary 'vm-mail-buffer
""))
138 ;; A hook to bind to `gnus-summary-setup-buffer' to locally bind prsc.
139 (defun ps-gnus-summary-setup ()
140 (local-set-key [print] 'ps-gnus-print-article-from-summary))
142 (defun ps-info-file ()
144 (goto-char (point-min))
145 (if (re-search-forward "File:[ \t]+\\([^, \t\n]*\\)" nil t)
149 (defun ps-info-node ()
151 (goto-char (point-min))
152 (if (re-search-forward "Node:[ \t]+\\([^,\t\n]*\\)" nil t)
156 (defun ps-info-mode-hook ()
157 ;; The left headers will display the node name and file name.
158 (setq-local ps-left-header '(ps-info-node ps-info-file)))
160 ;; WARNING! The following function is a *sample* only, and is *not* meant
161 ;; to be used as a whole unless you understand what the effects will be!
162 (defun ps-samp-ps-setup ()
163 (global-set-key [print] 'ps-spool-buffer-with-faces
)
164 (global-set-key [S-print
] 'ps-spool-region-with-faces
)
165 (global-set-key [C-print
] 'ps-despool
)
166 (add-hook 'gnus-article-prepare-hook
'ps-gnus-article-prepare-hook
)
167 (add-hook 'gnus-summary-mode-hook
'ps-gnus-summary-setup
)
168 (add-hook 'vm-mode-hook
'ps-vm-mode-hook
)
169 (add-hook 'vm-mode-hooks
'ps-vm-mode-hook
)
170 (add-hook 'Info-mode-hook
'ps-info-mode-hook
)
171 (setq ps-spool-duplex t
174 ps-lpr-switches
'("-Jjct,duplex_long")
177 ps-number-of-columns
2
178 ps-left-margin
(/ (* 72 1.0) 2.54) ; 1.0 cm
179 ps-right-margin
(/ (* 72 1.0) 2.54) ; 1.0 cm
180 ps-inter-column
(/ (* 72 1.0) 2.54) ; 1.0 cm
181 ps-bottom-margin
(/ (* 72 1.5) 2.54) ; 1.5 cm
182 ps-top-margin
(/ (* 72 1.5) 2.54) ; 1.5 cm
183 ps-header-offset
(/ (* 72 1.0) 2.54) ; 1.0 cm
184 ps-header-line-pad
.15
186 ps-print-header-frame t
190 ps-font-family
'Courier
192 ps-header-font-family
'Helvetica
193 ps-header-font-size
6
194 ps-header-title-font-size
8))
197 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
199 ;; If zeroconf is enabled, all CUPS printers can be detected. The
200 ;; "PostScript printer" menu will be modified dynamically, as printers
201 ;; are added or removed.
205 ;; * Emacs has D-Bus support enabled. That is, D-Bus is installed on
206 ;; the system, and Emacs has been configured and built with the
207 ;; --with-dbus option.
209 ;; * The zeroconf daemon avahi-daemon is running.
211 ;; * CUPS has enabled the option "Share published printers connected
212 ;; to this system" (see <http://localhost:631/admin>).
218 ;; Add a PostScript printer to the "PostScript printer" menu.
219 (defun ps-add-printer (service)
220 (let ((name (zeroconf-service-name service
))
221 (text (zeroconf-service-txt service
))
222 (addr (zeroconf-service-address service
))
223 (port (zeroconf-service-port service
))
225 ;; `text' is an array of key=value strings like ("Duplex=T" "Copies=T").
226 (dolist (string text
)
227 (let ((split (split-string string
"=" t
)))
228 ;; If it is a PostScript printer, there must be a string like
229 ;; "pdl=application/postscript,application/vnd.hp-PCL,...".
230 (when (and (string-equal "pdl" (car split
))
231 (string-match "application/postscript" (cadr split
)))
233 ;; A CUPS printer queue is coded as "rp=printers/<name>".
234 (when (and (string-equal "rp" (car split
))
235 (string-match "printers/\\(.+\\)" (cadr split
)))
236 (setq cups-queue
(match-string 1 (cadr split
))))))
241 'pr-ps-printer-alist
(list (intern name
) "lpr" nil
"-P" cups-queue
))
242 ;; No CUPS printer, but a network printer.
244 'pr-ps-printer-alist
(list (intern name
) "cupsdoprint"
246 "-H" (format "%s:%s" addr port
))))
247 (pr-update-menus t
))))
249 ;; Remove a printer from the "PostScript printer" menu.
250 (defun ps-remove-printer (service)
251 (setq pr-ps-printer-alist
252 (delete (assoc (intern (zeroconf-service-name service
))
254 pr-ps-printer-alist
))
257 ;; Activate the functions in zeroconf.
258 (defun ps-make-dynamic-printer-menu ()
259 (when (featurep 'dbusbind
)
261 (zeroconf-service-add-hook "_ipp._tcp" :new
'ps-add-printer
)
262 (zeroconf-service-add-hook "_ipp._tcp" :removed
'ps-remove-printer
)))
265 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
269 ;;; ps-samp.el ends here