* wl-mule.el (wl-draft-overload-menubar): Taken from wl-e21.el.
[elisp/wanderlust.git] / wl / wl-mule.el
1 ;;; wl-mule.el --- Wanderlust modules for Mule compatible Emacsen.
2
3 ;; Copyright (C) 1998,1999,2000 Yuuichi Teranishi <teranisi@gohome.org>
4
5 ;; Author: Yuuichi Teranishi <teranisi@gohome.org>
6 ;; Keywords: mail, net news
7
8 ;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen).
9
10 ;; This program is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14 ;;
15 ;; This program is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ;; GNU 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
26 ;;; Commentary:
27 ;; For Mule2.3@19.34, Emacs 20.x
28
29 ;;; Code:
30 ;;
31
32 (eval-when-compile
33   (require 'wl-folder)
34   (require 'wl-summary)
35   (require 'wl-draft)
36   (require 'wl-message)
37   (require 'wl-highlight)
38   (require 'wl-vars)
39   (defvar-maybe wl-draft-mode-map (make-sparse-keymap)))
40
41 (defun wl-draft-mode-setup ()
42   (require 'derived)
43   (define-derived-mode wl-draft-mode mail-mode "Draft"
44     "draft mode for Wanderlust derived from mail mode.
45 See info under Wanderlust for full documentation.
46
47 Special commands:
48 \\{wl-draft-mode-map}"))
49
50 ;; Common implementations.
51 (defun wl-highlight-folder-current-line (&optional numbers)
52   "Highlight current folder line."
53   (interactive)
54   (save-excursion
55     (end-of-line)
56     (let ((end (point))
57           (start (progn (beginning-of-line) (point)))
58           (inhibit-read-only t)
59           (text-face
60            (cond ((looking-at wl-highlight-folder-opened-regexp)
61                   'wl-highlight-folder-opened-face)
62                  ((looking-at wl-highlight-folder-closed-regexp)
63                   'wl-highlight-folder-closed-face)
64                  (t
65                   (if (looking-at (format "^[ \t]*\\(%s\\|%s\\)"
66                                           wl-folder-unsubscribe-mark
67                                           wl-folder-removed-mark))
68                       'wl-highlight-folder-killed-face
69                     'wl-highlight-folder-unknown-face)))))
70       (if (and wl-highlight-folder-by-numbers
71                numbers (nth 0 numbers) (nth 1 numbers)
72                (re-search-forward "[0-9-]+/[0-9-]+/[0-9-]+" end t))
73           (let* ((unsync (nth 0 numbers))
74                  (unread (nth 1 numbers))
75                  (face (cond
76                         ((and unsync (zerop unsync))
77                          (if (and unread (zerop unread))
78                              'wl-highlight-folder-zero-face
79                            'wl-highlight-folder-unread-face))
80                         ((and unsync
81                               (>= unsync wl-folder-many-unsync-threshold))
82                          'wl-highlight-folder-many-face)
83                         (t
84                          'wl-highlight-folder-few-face))))
85             (if (numberp wl-highlight-folder-by-numbers)
86                 (progn
87                   (put-text-property start (match-beginning 0) 'face text-face)
88                   (put-text-property (match-beginning 0) (point) 'face face))
89               ;; Remove previous face.
90               (put-text-property start (point) 'face nil)
91               (put-text-property start (point) 'face face))
92             (goto-char start))
93         (put-text-property start end 'face text-face)))
94     (when wl-use-highlight-mouse-line
95       (wl-highlight-folder-mouse-line))))
96
97 (defun wl-highlight-plugged-current-line ())
98 (defun wl-plugged-set-folder-icon (folder string)
99   string)
100
101 (defun wl-message-define-keymap ()
102   (let ((keymap (make-sparse-keymap)))
103     (define-key keymap "l" 'wl-message-toggle-disp-summary)
104     (define-key keymap [mouse-4] 'wl-message-wheel-down)
105     (define-key keymap [mouse-5] 'wl-message-wheel-up)
106     (define-key keymap [S-mouse-4] 'wl-message-wheel-down)
107     (define-key keymap [S-mouse-5] 'wl-message-wheel-up)
108     (set-keymap-parent wl-message-button-map keymap)
109     (define-key wl-message-button-map [mouse-2]
110       'wl-message-button-dispatcher)
111     keymap))
112
113 (defun wl-message-wheel-up (event)
114   (interactive "e")
115   (if (string-match (regexp-quote wl-message-buffer-cache-name)
116                     (regexp-quote (buffer-name)))
117       (wl-message-next-page)
118     (let ((cur-buf (current-buffer))
119           proceed)
120       (save-selected-window
121         (select-window (posn-window (event-start event)))
122         (set-buffer cur-buf)
123         (setq proceed (wl-message-next-page)))
124       (if proceed
125           (if (memq 'shift (event-modifiers event))
126               (wl-summary-down t)
127             (wl-summary-next t))))))
128
129 (defun wl-message-wheel-down (event)
130   (interactive "e")
131   (if (string-match (regexp-quote wl-message-buffer-cache-name)
132                     (regexp-quote (buffer-name)))
133       (wl-message-prev-page)
134     (let ((cur-buf (current-buffer))
135           proceed)
136       (save-selected-window
137         (select-window (posn-window (event-start event)))
138         (set-buffer cur-buf)
139         (setq proceed (wl-message-prev-page)))
140       (if proceed
141           (if (memq 'shift (event-modifiers event))
142               (wl-summary-up t)
143             (wl-summary-prev t))))))
144
145 (defun wl-draft-key-setup ()
146   (define-key wl-draft-mode-map "\C-c\C-y" 'wl-draft-yank-original)
147   (define-key wl-draft-mode-map "\C-c\C-s" 'wl-draft-send)
148   (define-key wl-draft-mode-map "\C-c\C-c" 'wl-draft-send-and-exit)
149   (define-key wl-draft-mode-map "\C-c\C-z" 'wl-draft-save-and-exit)
150   (define-key wl-draft-mode-map "\C-c\C-k" 'wl-draft-kill)
151   (define-key wl-draft-mode-map "\C-l"     'wl-draft-highlight-and-recenter)
152   (define-key wl-draft-mode-map "\C-i"     'wl-complete-field-body-or-tab)
153   (define-key wl-draft-mode-map "\C-c\C-r" 'wl-draft-caesar-region)
154   (define-key wl-draft-mode-map "\M-t"     'wl-toggle-plugged)
155   (define-key wl-draft-mode-map "\C-c\C-o" 'wl-jump-to-draft-buffer)
156   (define-key wl-draft-mode-map "\C-c\C-e" 'wl-draft-config-exec)
157   (define-key wl-draft-mode-map "\C-c\C-j" 'wl-template-select)
158   (define-key wl-draft-mode-map "\C-c\C-p" 'wl-draft-preview-message)
159 ;;   (define-key wl-draft-mode-map "\C-x\C-s" 'wl-draft-save)
160   (define-key wl-draft-mode-map "\C-c\C-a" 'wl-addrmgr)
161   (define-key wl-draft-mode-map "\C-xk" 'wl-draft-mimic-kill-buffer)
162   (define-key wl-draft-mode-map "\C-c\C-d" 'wl-draft-elide-region))
163
164 (defun wl-draft-overload-menubar ()
165   (let ((keymap (current-local-map)))
166     (define-key keymap [menu-bar mail send]
167       '("Send Message" . wl-draft-send-and-exit))
168     (define-key keymap [menu-bar mail send-stay]
169       '("Send, Keep Editing" . wl-draft-send))
170     (define-key-after (lookup-key keymap [menu-bar mail])
171       [mail-sep-send] '("--")
172       'send-stay)
173     (define-key keymap [menu-bar mail cancel]
174       '("Kill Current Draft" . wl-draft-kill))
175     (define-key-after (lookup-key keymap [menu-bar mail])
176       [save] '("Save Draft and Exit" . wl-draft-save-and-exit)
177       'cancel)
178     (define-key-after (lookup-key keymap [menu-bar mail])
179       [mail-sep-exit] '("--")
180       'save)
181     (define-key-after (lookup-key keymap [menu-bar mail])
182       [preview] '("Preview Message" . wl-draft-preview-message)
183       'mail-sep-exit)
184     (define-key keymap [menu-bar mail yank]
185       '("Cite Message" . wl-draft-yank-original))
186     (define-key keymap [menu-bar mail signature]
187       '("Insert Signature" . insert-signature))
188     (define-key keymap [menu-bar headers fcc]
189       '("Fcc" . wl-draft-fcc))))
190
191 (defun wl-draft-overload-functions ()
192   (wl-mode-line-buffer-identification)
193 ;;  (local-set-key "\C-c\C-s" 'wl-draft-send);; override
194   (wl-draft-overload-menubar))
195
196 ;; for "ja-mule-canna-2.3.mini" on PocketBSD
197 (defun-maybe make-face (a))
198
199 (eval-when-compile
200   (require 'static))
201 (static-cond
202  ((and (fboundp 'defface)
203        (not (featurep 'tinycustom)))
204   (defalias 'wl-defface 'defface)
205   (eval-when-compile
206     (defun wl-face-spec-set-match-display (display frame))
207     (defun wl-frame-parameter (frame property &optional default))
208     (defun wl-get-frame-properties (&optional frame))))
209  (t
210   (defmacro wl-defface (face spec doc &rest args)
211     (nconc (list 'wl-declare-face (list 'quote face) spec)))
212
213   (defun wl-declare-face (face spec)
214     (make-face face)
215     (while spec
216       (let* ((entry (car spec))
217              (display (nth 0 entry))
218              (atts (nth 1 entry)))
219         (setq spec (cdr spec))
220         (when (wl-face-spec-set-match-display display nil)
221           (apply 'wl-face-attributes-set face nil atts)))))
222
223   (defconst wl-face-attributes
224     '((:bold set-face-bold-p)
225       (:italic set-face-italic-p)
226       (:underline set-face-underline-p)
227       (:foreground set-face-foreground)
228       (:background set-face-background)
229       (:stipple set-face-stipple)))
230
231   (defun wl-face-attributes-set (face frame &rest atts)
232     "For FACE on FRAME set the attributes [KEYWORD VALUE]....
233 Each keyword should be listed in `custom-face-attributes'.
234
235 If FRAME is nil, set the default face."
236     (while atts
237       (let* ((name (nth 0 atts))
238              (value (nth 1 atts))
239              (fun (nth 1 (assq name wl-face-attributes))))
240         (setq atts (cdr (cdr atts)))
241         (condition-case nil
242             (funcall fun face value frame)
243           (error nil)))))
244
245   (defun wl-frame-parameter (frame property &optional default)
246     "Return FRAME's value for property PROPERTY."
247     (or (cdr (assq property (frame-parameters frame)))
248         default))
249
250   (eval-when-compile
251     (defun-maybe x-display-grayscale-p ()))
252
253   (defun wl-get-frame-properties (&optional frame)
254     "Return a plist with the frame properties of FRAME used by custom."
255     (list (cons 'type window-system)
256           (cons 'class (or (wl-frame-parameter frame 'display-type)
257                            (when window-system
258                              (cond ((x-display-color-p)
259                                     'color)
260                                    ((and (fboundp 'x-display-grayscale-p)
261                                          (x-display-grayscale-p))
262                                     'grayscale)
263                                    (t 'mono)))))
264           (cons 'background (or (wl-frame-parameter frame 'background-mode)
265                                 wl-highlight-background-mode))))
266
267   (defun wl-face-spec-set-match-display (display frame)
268     "Non-nil iff DISPLAY matches FRAME.
269 If FRAME is nil, the current FRAME is used."
270     ;; This is a kludge to get started, we really should use specifiers!
271     (if (eq display t)
272         t
273       (let* ((props (wl-get-frame-properties frame))
274              (type (cdr (assq 'type props)))
275              (class (cdr (assq 'class props)))
276              (background (cdr (assq 'background props)))
277              (match t)
278              (entries display)
279              entry req options)
280         (while (and entries match)
281           (setq entry (car entries)
282                 entries (cdr entries)
283                 req (car entry)
284                 options (cdr entry)
285                 match (cond ((eq req 'type)
286                              (memq type options))
287                             ((eq req 'class)
288                              (memq class options))
289                             ((eq req 'background)
290                              (memq background options))
291                             (t
292                              (message "\
293 Warning: Unknown req `%S' with options `%S'" req options)
294                              nil))))
295         match)))))
296
297 (defun wl-read-event-char ()
298   "Get the next event."
299   (let ((event (read-event)))
300     (cons (and (numberp event) event) event)))
301
302 (require 'product)
303 (product-provide (provide 'wl-mule) (require 'wl-version))
304
305 ;;; wl-mule.el ends here