Sync up with SEMI 1.7.1.
[elisp/semi.git] / semi-def.el
1 ;;; semi-def.el --- definition module for WEMI
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 WEMI (Widget based 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 (eval-when-compile (require 'cl))
30
31
32 (defconst mime-user-interface-version '("WEMI" "Kan'nami" 1 7 1)
33   "Implementation name, version name and numbers of MIME-kernel package.")
34
35 (autoload 'mule-caesar-region "mule-caesar"
36   "Caesar rotation of current region." t)
37
38
39 ;;; @ constants
40 ;;;
41
42 (defconst mime-echo-buffer-name "*MIME-echo*"
43   "Name of buffer to display MIME-playing information.")
44
45 (defconst mime-temp-buffer-name " *MIME-temp*")
46
47
48 ;;; @ button
49 ;;;
50
51 (defcustom mime-button-face 'bold
52   "Face used for content-button or URL-button of MIME-Preview buffer."
53   :group 'mime
54   :type 'face)
55
56 (defcustom mime-button-mouse-face 'highlight
57   "Face used for MIME-preview buffer mouse highlighting."
58   :group 'mime
59   :type 'face)
60
61 (defsubst mime-insert-button (string function &optional data)
62   "Insert STRING as button with callback FUNCTION and DATA."
63   (save-restriction
64     (narrow-to-region (point)(point))
65     (mapcar #'(lambda (line)
66                 (widget-create
67                  'push-button
68                  :action `(lambda (widget &optional event)
69                             (,function)
70                             )
71                  :mouse-down-action `(lambda (widget event)
72                                        (let (buf point)
73                                          (save-window-excursion
74                                            (mouse-set-point event)
75                                            (setq buf (current-buffer)
76                                                  point (point)))
77                                          (save-excursion
78                                            (set-buffer buf)
79                                            (goto-char point)
80                                            (,function)
81                                            )))
82                  line)
83                 (insert "\n")
84                 )
85             (split-string string "\n"))
86     ;;(mime-add-button (point-min)(point-max) function data)
87     ))
88
89 (defvar mime-button-mother-dispatcher nil)
90
91 (defun mime-button-dispatcher (event)
92   "Select the button under point."
93   (interactive "e")
94   (let (buf point func data)
95     (save-window-excursion
96       (mouse-set-point event)
97       (setq buf (current-buffer)
98             point (point)
99             func (get-text-property (point) 'mime-button-callback)
100             data (get-text-property (point) 'mime-button-data)
101             ))
102     (save-excursion
103       (set-buffer buf)
104       (goto-char point)
105       (if func
106           (apply func data)
107         (if (fboundp mime-button-mother-dispatcher)
108             (funcall mime-button-mother-dispatcher event)
109           )
110         ))))
111
112
113 ;;; @ menu
114 ;;;
115
116 (if window-system
117     (if (featurep 'xemacs)
118         (defun select-menu-alist (title menu-alist)
119           (let (ret)
120             (popup-menu
121              (list* title
122                     "---"
123                     (mapcar (function
124                              (lambda (cell)
125                                (vector (car cell)
126                                        `(progn
127                                           (setq ret ',(cdr cell))
128                                           (throw 'exit nil)
129                                           )
130                                        t)
131                                ))
132                             menu-alist)
133                     ))
134             (recursive-edit)
135             ret))
136       (defun select-menu-alist (title menu-alist)
137         (x-popup-menu
138          (list '(1 1) (selected-window))
139          (list title (cons title menu-alist))
140          ))
141       )
142   (defun select-menu-alist (title menu-alist)
143     (cdr
144      (assoc (completing-read (concat title " : ") menu-alist)
145             menu-alist)
146      ))
147   )
148
149
150 ;;; @ PGP
151 ;;;
152
153 (defvar pgp-function-alist
154   '(
155     ;; for mime-pgp
156     (verify             mc-verify                       "mc-toplev")
157     (decrypt            mc-decrypt                      "mc-toplev")
158     (fetch-key          mc-pgp-fetch-key                "mc-pgp")
159     (snarf-keys         mc-snarf-keys                   "mc-toplev")
160     ;; for mime-edit
161     (mime-sign          mime-mc-pgp-sign-region         "mime-mc")
162     (traditional-sign   mc-pgp-sign-region              "mc-pgp")
163     (encrypt            mime-mc-pgp-encrypt-region      "mime-mc")
164     (insert-key         mc-insert-public-key            "mc-toplev")
165     )
166   "Alist of service names vs. corresponding functions and its filenames.
167 Each element looks like (SERVICE FUNCTION FILE).
168
169 SERVICE is a symbol of PGP processing.  It allows `verify', `decrypt',
170 `fetch-key', `snarf-keys', `mime-sign', `traditional-sign', `encrypt'
171 or `insert-key'.
172
173 Function is a symbol of function to do specified SERVICE.
174
175 FILE is string of filename which has definition of corresponding
176 FUNCTION.")
177
178 (defmacro pgp-function (method)
179   "Return function to do service METHOD."
180   `(cadr (assq ,method (symbol-value 'pgp-function-alist))))
181
182 (mapcar (function
183          (lambda (method)
184            (autoload (cadr method)(nth 2 method))
185            ))
186         pgp-function-alist)
187
188
189 ;;; @ field
190 ;;;
191
192 (defun tm:set-fields (sym field-list &optional regexp-sym)
193   (or regexp-sym
194       (setq regexp-sym
195             (let ((name (symbol-name sym)))
196               (intern
197                (concat (if (string-match "\\(.*\\)-list" name)
198                            (substring name 0 (match-end 1))
199                          name)
200                        "-regexp")
201                )))
202       )
203   (set sym field-list)
204   (set regexp-sym
205        (concat "^" (apply (function regexp-or) field-list) ":"))
206   )
207
208 (defun tm:add-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                (or (member field fields)
223                    (setq fields (cons field fields))
224                    )
225                ))
226             (reverse field-list)
227             )
228     (set regexp-sym
229          (concat "^" (apply (function regexp-or) fields) ":"))
230     (set sym fields)
231     ))
232
233 (defun tm:delete-fields (sym field-list &optional regexp-sym)
234   (or regexp-sym
235       (setq regexp-sym
236             (let ((name (symbol-name sym)))
237               (intern
238                (concat (if (string-match "\\(.*\\)-list" name)
239                            (substring name 0 (match-end 1))
240                          name)
241                        "-regexp")
242                )))
243       )
244   (let ((fields (eval sym)))
245     (mapcar (function
246              (lambda (field)
247                (setq fields (delete field fields))
248                ))
249             field-list)
250     (set regexp-sym
251          (concat "^" (apply (function regexp-or) fields) ":"))
252     (set sym fields)
253     ))
254
255
256 ;;; @ Other Utility
257 ;;;
258
259 (defvar mime-condition-type-alist
260   '((preview . mime-preview-condition)
261     (action . mime-acting-condition)))
262
263 (defvar mime-condition-mode-alist
264   '((with-default . ctree-set-calist-with-default)
265     (t . ctree-set-calist-strictly)))
266
267 (defun mime-add-condition (target-type condition &optional mode file)
268   "Add CONDITION to database specified by TARGET-TYPE.
269 TARGET-TYPE must be 'preview or 'action.  
270 If optional argument MODE is 'strict or nil (omitted), CONDITION is
271 added strictly.
272 If optional argument MODE is 'with-default, CONDITION is added with
273 default rule.
274 If optional argument FILE is specified, it is loaded when CONDITION is
275 activate."
276   (let ((sym (cdr (assq target-type mime-condition-type-alist))))
277     (if sym
278         (let ((func (cdr (or (assq mode mime-condition-mode-alist)
279                              (assq t mime-condition-mode-alist)))))
280           (if (fboundp func)
281               (progn
282                 (funcall func sym condition)
283                 (if file
284                     (let ((method (cdr (assq 'method condition))))
285                       (autoload method file)
286                       ))
287                 )
288             (error "Function for mode `%s' is not found." mode)
289             ))
290       (error "Variable for target-type `%s' is not found." target-type)
291       )))
292
293
294 ;;; @ end
295 ;;;
296
297 (provide 'semi-def)
298
299 ;;; semi-def.el ends here