Update.
[elisp/lemi.git] / mime / semi-def.el
1 ;;; semi-def.el --- definition module for SEMI -*- coding: iso-8859-4; -*-
2
3 ;; Copyright (C) 1995,96,97,98,99,2000 Free Software Foundation, Inc.
4
5 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
6 ;; Keywords: definition, MIME, multimedia, mail, news
7
8 ;; This file is part of SEMI (Sample of Emacs MIME Implementation).
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 (eval-when-compile (require 'cl))
28
29 (require 'custom)
30
31 (defconst mime-user-interface-product ["SEMI" (1 14 3) "Ushinoya"]
32   "Product name, version number and code name of MIME-kernel package.")
33
34 (autoload 'mule-caesar-region "mule-caesar"
35   "Caesar rotation of current region." t)
36
37
38 ;;; @ constants
39 ;;;
40
41 (defconst mime-echo-buffer-name "*MIME-echo*"
42   "Name of buffer to display MIME-playing information.")
43
44 (defconst mime-temp-buffer-name " *MIME-temp*")
45
46
47 ;;; @ button
48 ;;;
49
50 (defcustom mime-button-face 'bold
51   "Face used for content-button or URL-button of MIME-Preview buffer."
52   :group 'mime
53   :type 'face)
54
55 (defcustom mime-button-mouse-face 'highlight
56   "Face used for MIME-preview buffer mouse highlighting."
57   :group 'mime
58   :type 'face)
59
60 (defsubst mime-add-button (from to function &optional data)
61   "Create a button between FROM and TO with callback FUNCTION and DATA."
62   (and mime-button-face
63        (put-text-property from to 'face mime-button-face))
64   (and mime-button-mouse-face
65        (put-text-property from to 'mouse-face mime-button-mouse-face))
66   (put-text-property from to 'mime-button-callback function)
67   (and data
68        (put-text-property from to 'mime-button-data data))
69   )
70
71 (defsubst mime-insert-button (string function &optional data)
72   "Insert STRING as button with callback FUNCTION and DATA."
73   (save-restriction
74     (narrow-to-region (point)(point))
75     (insert (concat "[" string "]\n"))
76     (mime-add-button (point-min)(point-max) function data)
77     ))
78
79 (defvar mime-button-mother-dispatcher nil)
80
81 (defun mime-button-dispatcher (event)
82   "Select the button under point."
83   (interactive "e")
84   (let (buf point func data)
85     (save-window-excursion
86       (mouse-set-point event)
87       (setq buf (current-buffer)
88             point (point)
89             func (get-text-property (point) 'mime-button-callback)
90             data (get-text-property (point) 'mime-button-data)
91             ))
92     (save-excursion
93       (set-buffer buf)
94       (goto-char point)
95       (if func
96           (apply func data)
97         (if (fboundp mime-button-mother-dispatcher)
98             (funcall mime-button-mother-dispatcher event)
99           )))))
100
101
102 ;;; @ for URL
103 ;;;
104
105 (defcustom mime-browse-url-regexp
106   (concat "\\(https?\\|ftps?\\|file\\|gopher\\|news\\|nntps?\\|telnets?\\|wais\\|mailto\\):"
107           "\\(//[-a-zA-Z0-9_.]+:[0-9]*\\)?"
108           "[-a-zA-Z0-9_=?#$@~`%&*+|\\/.,]*[-a-zA-Z0-9_=#$@~`%&*+|\\/]")
109   "*Regexp to match URL in text body."
110   :group 'mime
111   :type 'regexp)
112
113 (defcustom mime-browse-url-function (function browse-url)
114   "*Function to browse URL."
115   :group 'mime
116   :type 'function)
117
118 (defsubst mime-add-url-buttons ()
119   "Add URL-buttons for text body."
120   (goto-char (point-min))
121   (while (re-search-forward mime-browse-url-regexp nil t)
122     (let ((beg (match-beginning 0))
123           (end (match-end 0)))
124       (mime-add-button beg end mime-browse-url-function
125                        (list (buffer-substring beg end))))))
126
127
128 ;;; @ menu
129 ;;;
130
131 (if window-system
132     (if (featurep 'xemacs)
133         (defun select-menu-alist (title menu-alist)
134           (let (ret)
135             (popup-menu
136              (list* title
137                     "---"
138                     (mapcar (function
139                              (lambda (cell)
140                                (vector (car cell)
141                                        `(progn
142                                           (setq ret ',(cdr cell))
143                                           (throw 'exit nil)
144                                           )
145                                        t)
146                                ))
147                             menu-alist)
148                     ))
149             (recursive-edit)
150             ret))
151       (defun select-menu-alist (title menu-alist)
152         (x-popup-menu
153          (list '(1 1) (selected-window))
154          (list title (cons title menu-alist))
155          ))
156       )
157   (defun select-menu-alist (title menu-alist)
158     (cdr
159      (assoc (completing-read (concat title " : ") menu-alist)
160             menu-alist)
161      ))
162   )
163
164
165 ;;; @ Other Utility
166 ;;;
167
168 (defvar mime-condition-type-alist
169   '((preview . mime-preview-condition)
170     (action . mime-acting-condition)))
171
172 (defvar mime-condition-mode-alist
173   '((with-default . ctree-set-calist-with-default)
174     (t . ctree-set-calist-strictly)))
175
176 (defun mime-add-condition (target-type condition &optional mode file)
177   "Add CONDITION to database specified by TARGET-TYPE.
178 TARGET-TYPE must be 'preview or 'action.  
179 If optional argument MODE is 'strict or nil (omitted), CONDITION is
180 added strictly.
181 If optional argument MODE is 'with-default, CONDITION is added with
182 default rule.
183 If optional argument FILE is specified, it is loaded when CONDITION is
184 activate."
185   (let ((sym (cdr (assq target-type mime-condition-type-alist))))
186     (if sym
187         (let ((func (cdr (or (assq mode mime-condition-mode-alist)
188                              (assq t mime-condition-mode-alist)))))
189           (if (fboundp func)
190               (progn
191                 (funcall func sym condition)
192                 (if file
193                     (let ((method (cdr (assq 'method condition))))
194                       (autoload method file)
195                       ))
196                 )
197             (error "Function for mode `%s' is not found." mode)
198             ))
199       (error "Variable for target-type `%s' is not found." target-type)
200       )))
201
202
203 ;;; @ end
204 ;;;
205
206 (provide 'semi-def)
207
208 ;;; semi-def.el ends here