(mime-module-version): update.
[elisp/semi.git] / semi-def.el
1 ;;; semi-def.el --- definition module for SEMI
2
3 ;; Copyright (C) 1995,1996,1997,1998 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Keywords: definition, MIME, multimedia, mail, news
7
8 ;; This file is part of SEMI (Spadework for Emacs MIME Interfaces).
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Code:
26
27 (require 'emu)
28
29 (defconst mime-module-version '("SEMI" "N\e.D\eNr" 1 3 2)
30   "Implementation name, version name and numbers of MIME-kernel package.")
31
32 (autoload 'mule-caesar-region "mule-caesar"
33   "Caesar rotation of current region." t)
34
35
36 ;;; @ variables
37 ;;;
38
39 (defvar mime/use-multi-frame
40   (and (>= emacs-major-version 19) window-system))
41
42 (defvar mime/find-file-function
43   (if mime/use-multi-frame
44       (function find-file-other-frame)
45     (function find-file)
46     ))
47
48
49 ;;; @ constants
50 ;;;
51
52 (defconst mime-echo-buffer-name "*MIME-echo*"
53   "Name of buffer to display MIME-playing information.")
54
55 (defconst mime-temp-buffer-name " *MIME-temp*")
56
57
58 ;;; @ button
59 ;;;
60
61 (defcustom mime-button-face 'bold
62   "Face used for content-button or URL-button of MIME-Preview buffer."
63   :group 'mime
64   :type 'face)
65
66 (defcustom mime-button-mouse-face 'highlight
67   "Face used for MIME-preview buffer mouse highlighting."
68   :group 'mime
69   :type 'face)
70
71 (defsubst mime-add-button (from to function &optional data)
72   "Create a button between FROM and TO with callback FUNCTION and DATA."
73   (let ((overlay (make-overlay from to)))
74     (and mime-button-face
75          (overlay-put overlay 'face mime-button-face))
76     (and mime-button-mouse-face
77          (overlay-put overlay 'mouse-face mime-button-mouse-face))
78     (add-text-properties from to (list 'mime-button-callback function))
79     (and data
80          (add-text-properties from to (list 'mime-button-data data)))
81     ;;(add-text-properties from to (list 'keymap widget-keymap))
82     ))
83
84 (defsubst mime-insert-button (string function &optional data)
85   "Insert STRING as button with callback FUNCTION and DATA."
86   (save-restriction
87     (narrow-to-region (point)(point))
88     (insert (concat "[" string "]"))
89     ;; (widget-push-button-value-create
90     ;;  (widget-convert 'push-button
91     ;;                  :notify (lambda (&rest ignore)
92     ;;                            (mime-preview-play-current-entity)
93     ;;                            )
94     ;;                  string))
95     (insert "\n")
96     (mime-add-button (point-min)(point-max) function data)
97     ))
98
99 (defvar mime-button-mother-dispatcher nil)
100
101 (defun mime-button-dispatcher (event)
102   "Select the button under point."
103   (interactive "e")
104   (let (buf point func data)
105     (save-window-excursion
106       (mouse-set-point event)
107       (setq buf (current-buffer)
108             point (point)
109             func (get-text-property (point) 'mime-button-callback)
110             data (get-text-property (point) 'mime-button-data)
111             )
112       )
113     (save-excursion
114       (set-buffer buf)
115       (goto-char point)
116       (if func
117           (apply func data)
118         (if (fboundp mime-button-mother-dispatcher)
119             (funcall mime-button-mother-dispatcher event)
120           )
121         ))))
122
123
124 ;;; @ PGP
125 ;;;
126
127 (defvar pgp-function-alist
128   '(
129     ;; for mime-pgp
130     (verify             mc-verify                       "mc-toplev")
131     (decrypt            mc-decrypt                      "mc-toplev")
132     (fetch-key          mc-pgp-fetch-key                "mc-pgp")
133     (snarf-keys         mc-snarf-keys                   "mc-toplev")
134     ;; for mime-edit
135     (mime-sign          mime-mc-pgp-sign-region         "mime-mc")
136     (traditional-sign   mc-pgp-sign-region              "mc-pgp")
137     (encrypt            mime-mc-pgp-encrypt-region      "mime-mc")
138     (insert-key         mc-insert-public-key            "mc-toplev")
139     )
140   "Alist of service names vs. corresponding functions and its filenames.
141 Each element looks like (SERVICE FUNCTION FILE).
142
143 SERVICE is a symbol of PGP processing.  It allows `verify', `decrypt',
144 `fetch-key', `snarf-keys', `mime-sign', `traditional-sign', `encrypt'
145 or `insert-key'.
146
147 Function is a symbol of function to do specified SERVICE.
148
149 FILE is string of filename which has definition of corresponding
150 FUNCTION.")
151
152 (defmacro pgp-function (method)
153   "Return function to do service METHOD."
154   `(cadr (assq ,method (symbol-value 'pgp-function-alist)))
155   )
156
157 (mapcar (function
158          (lambda (method)
159            (autoload (cadr method)(nth 2 method))
160            ))
161         pgp-function-alist)
162
163
164 ;;; @ field
165 ;;;
166
167 (defun tm:set-fields (sym field-list &optional regexp-sym)
168   (or regexp-sym
169       (setq regexp-sym
170             (let ((name (symbol-name sym)))
171               (intern
172                (concat (if (string-match "\\(.*\\)-list" name)
173                            (substring name 0 (match-end 1))
174                          name)
175                        "-regexp")
176                )))
177       )
178   (set sym field-list)
179   (set regexp-sym
180        (concat "^" (apply (function regexp-or) field-list) ":"))
181   )
182
183 (defun tm:add-fields (sym field-list &optional regexp-sym)
184   (or regexp-sym
185       (setq regexp-sym
186             (let ((name (symbol-name sym)))
187               (intern
188                (concat (if (string-match "\\(.*\\)-list" name)
189                            (substring name 0 (match-end 1))
190                          name)
191                        "-regexp")
192                )))
193       )
194   (let ((fields (eval sym)))
195     (mapcar (function
196              (lambda (field)
197                (or (member field fields)
198                    (setq fields (cons field fields))
199                    )
200                ))
201             (reverse field-list)
202             )
203     (set regexp-sym
204          (concat "^" (apply (function regexp-or) fields) ":"))
205     (set sym fields)
206     ))
207
208 (defun tm:delete-fields (sym field-list &optional regexp-sym)
209   (or regexp-sym
210       (setq regexp-sym
211             (let ((name (symbol-name sym)))
212               (intern
213                (concat (if (string-match "\\(.*\\)-list" name)
214                            (substring name 0 (match-end 1))
215                          name)
216                        "-regexp")
217                )))
218       )
219   (let ((fields (eval sym)))
220     (mapcar (function
221              (lambda (field)
222                (setq fields (delete field fields))
223                ))
224             field-list)
225     (set regexp-sym
226          (concat "^" (apply (function regexp-or) fields) ":"))
227     (set sym fields)
228     ))
229
230
231 ;;; @ RCS version
232 ;;;
233
234 (defsubst get-version-string (id)
235   "Return a version-string from RCS ID."
236   (and (string-match ",v \\([0-9][0-9.][0-9.]+\\)" id)
237        (substring id (match-beginning 1)(match-end 1))
238        ))
239
240
241 ;;; @ Other Utility
242 ;;;
243
244 (defun call-after-loaded (module func &optional hook-name)
245   "If MODULE is provided, then FUNC is called.
246 Otherwise func is set to MODULE-load-hook.
247 If optional argument HOOK-NAME is specified,
248 it is used as hook to set."
249   (if (featurep module)
250       (funcall func)
251     (or hook-name
252         (setq hook-name (intern (concat (symbol-name module) "-load-hook")))
253         )
254     (add-hook hook-name func)
255     ))
256
257
258 ;;; @ end
259 ;;;
260
261 (provide 'semi-def)
262
263 ;;; semi-def.el ends here