]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-print.el
emacs: Improved printing support.
[notmuch] / emacs / notmuch-print.el
1 ;; notmuch-print.el --- printing messages from notmuch.
2 ;;
3 ;; Copyright © David Edmondson
4 ;;
5 ;; This file is part of Notmuch.
6 ;;
7 ;; Notmuch is free software: you can redistribute it and/or modify it
8 ;; under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
11 ;;
12 ;; Notmuch is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 ;; General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with Notmuch.  If not, see <http://www.gnu.org/licenses/>.
19 ;;
20 ;; Authors: David Edmondson <dme@dme.org>
21
22 (defcustom notmuch-print-mechanism 'notmuch-print-lpr
23   "How should printing be done?"
24   :group 'notmuch
25   :type '(choice
26           (function :tag "Use lpr" notmuch-print-lpr)
27           (function :tag "Use ps-print" notmuch-print-ps-print)
28           (function :tag "Use ps-print then evince" notmuch-print-ps-print/evince)
29           (function :tag "Use muttprint" notmuch-print-muttprint)
30           (function :tag "Use muttprint then evince" notmuch-print-muttprint/evince)
31           (function :tag "Using a custom function")))
32
33 ;; Utility functions:
34
35 (defun notmuch-print-run-evince (file)
36   "View FILE using 'evince'."
37   (start-process "evince" nil "evince" file))
38
39 (defun notmuch-print-run-muttprint (&optional output)
40   "Pass the contents of the current buffer to 'muttprint'.
41
42 Optional OUTPUT allows passing a list of flags to muttprint."
43   (apply #'call-process-region (point-min) (point-max)
44          ;; Reads from stdin.
45          "muttprint"
46          nil nil nil
47          ;; Show the tags.
48          "--printed-headers" "Date_To_From_CC_Newsgroups_*Subject*_/Tags/"
49          output))
50
51 ;; User-visible functions:
52
53 (defun notmuch-print-lpr (msg)
54   "Print a message buffer using lpr."
55   (lpr-buffer))
56
57 (defun notmuch-print-ps-print (msg)
58   "Print a message buffer using the ps-print package."
59   (let ((subject (plist-get (notmuch-show-get-prop :headers msg) :Subject)))
60     (rename-buffer subject t)
61     (ps-print-buffer)))
62
63 (defun notmuch-print-ps-print/evince (msg)
64   "Preview a message buffer using ps-print and evince."
65   (let ((ps-file (make-temp-file "notmuch"))
66         (subject (plist-get (notmuch-show-get-prop :headers msg) :Subject)))
67     (rename-buffer subject t)
68     (ps-print-buffer ps-file)
69     (notmuch-print-run-evince ps-file)))
70
71 (defun notmuch-print-muttprint (msg)
72   "Print a message using muttprint."
73   (notmuch-print-run-muttprint))
74
75 (defun notmuch-print-muttprint/evince (msg)
76   "Preview a message buffer using muttprint and evince."
77   (let ((ps-file (make-temp-file "notmuch")))
78     (notmuch-print-run-muttprint (list "--printer" (concat "TO_FILE:" ps-file)))
79     (notmuch-print-run-evince ps-file)))
80
81 (defun notmuch-print-message (msg)
82   "Print a message using the user-selected mechanism."
83   (funcall notmuch-print-mechanism msg))
84
85 (provide 'notmuch-print)