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