* wl-draft.el (wl-draft-beginning-of-line): New command imported
[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   (define-key wl-draft-mode-map "\C-a" 'wl-draft-beginning-of-line))
164
165 (defun wl-draft-overload-menubar ()
166   (let ((keymap (current-local-map)))
167     (define-key keymap [menu-bar mail send]
168       '("Send Message" . wl-draft-send-and-exit))
169     (define-key keymap [menu-bar mail send-stay]
170       '("Send, Keep Editing" . wl-draft-send))
171     (define-key-after (lookup-key keymap [menu-bar mail])
172       [mail-sep-send] '("--")
173       'send-stay)
174     (define-key keymap [menu-bar mail cancel]
175       '("Kill Current Draft" . wl-draft-kill))
176     (define-key-after (lookup-key keymap [menu-bar mail])
177       [save] '("Save Draft and Exit" . wl-draft-save-and-exit)
178       'cancel)
179     (define-key-after (lookup-key keymap [menu-bar mail])
180       [mail-sep-exit] '("--")
181       'save)
182     (define-key-after (lookup-key keymap [menu-bar mail])
183       [preview] '("Preview Message" . wl-draft-preview-message)
184       'mail-sep-exit)
185     (define-key keymap [menu-bar mail yank]
186       '("Cite Message" . wl-draft-yank-original))
187     (define-key keymap [menu-bar mail signature]
188       '("Insert Signature" . insert-signature))
189     (define-key keymap [menu-bar headers fcc]
190       '("Fcc" . wl-draft-fcc))))
191
192 (defun wl-draft-overload-functions ()
193   (wl-mode-line-buffer-identification)
194 ;;  (local-set-key "\C-c\C-s" 'wl-draft-send);; override
195   (wl-draft-overload-menubar))
196
197 ;; for "ja-mule-canna-2.3.mini" on PocketBSD
198 (defun-maybe make-face (a))
199
200 (eval-when-compile
201   (require 'static))
202 (static-cond
203  ((and (fboundp 'defface)
204        (not (featurep 'tinycustom)))
205   (defalias 'wl-defface 'defface)
206   (eval-when-compile
207     (defun wl-face-spec-set-match-display (display frame))
208     (defun wl-frame-parameter (frame property &optional default))
209     (defun wl-get-frame-properties (&optional frame))))
210  (t
211   (defmacro wl-defface (face spec doc &rest args)
212     (nconc (list 'wl-declare-face (list 'quote face) spec)))
213
214   (defun wl-declare-face (face spec)
215     (make-face face)
216     (while spec
217       (let* ((entry (car spec))
218              (display (nth 0 entry))
219              (atts (nth 1 entry)))
220         (setq spec (cdr spec))
221         (when (wl-face-spec-set-match-display display nil)
222           (apply 'wl-face-attributes-set face nil atts)))))
223
224   (defconst wl-face-attributes
225     '((:bold set-face-bold-p)
226       (:italic set-face-italic-p)
227       (:underline set-face-underline-p)
228       (:foreground set-face-foreground)
229       (:background set-face-background)
230       (:stipple set-face-stipple)))
231
232   (defun wl-face-attributes-set (face frame &rest atts)
233     "For FACE on FRAME set the attributes [KEYWORD VALUE]....
234 Each keyword should be listed in `custom-face-attributes'.
235
236 If FRAME is nil, set the default face."
237     (while atts
238       (let* ((name (nth 0 atts))
239              (value (nth 1 atts))
240              (fun (nth 1 (assq name wl-face-attributes))))
241         (setq atts (cdr (cdr atts)))
242         (condition-case nil
243             (funcall fun face value frame)
244           (error nil)))))
245
246   (defun wl-frame-parameter (frame property &optional default)
247     "Return FRAME's value for property PROPERTY."
248     (or (cdr (assq property (frame-parameters frame)))
249         default))
250
251   (eval-when-compile
252     (defun-maybe x-display-grayscale-p ()))
253
254   (defun wl-get-frame-properties (&optional frame)
255     "Return a plist with the frame properties of FRAME used by custom."
256     (list (cons 'type window-system)
257           (cons 'class (or (wl-frame-parameter frame 'display-type)
258                            (when window-system
259                              (cond ((x-display-color-p)
260                                     'color)
261                                    ((and (fboundp 'x-display-grayscale-p)
262                                          (x-display-grayscale-p))
263                                     'grayscale)
264                                    (t 'mono)))))
265           (cons 'background (or (wl-frame-parameter frame 'background-mode)
266                                 wl-highlight-background-mode))))
267
268   (defun wl-face-spec-set-match-display (display frame)
269     "Non-nil iff DISPLAY matches FRAME.
270 If FRAME is nil, the current FRAME is used."
271     ;; This is a kludge to get started, we really should use specifiers!
272     (if (eq display t)
273         t
274       (let* ((props (wl-get-frame-properties frame))
275              (type (cdr (assq 'type props)))
276              (class (cdr (assq 'class props)))
277              (background (cdr (assq 'background props)))
278              (match t)
279              (entries display)
280              entry req options)
281         (while (and entries match)
282           (setq entry (car entries)
283                 entries (cdr entries)
284                 req (car entry)
285                 options (cdr entry)
286                 match (cond ((eq req 'type)
287                              (memq type options))
288                             ((eq req 'class)
289                              (memq class options))
290                             ((eq req 'background)
291                              (memq background options))
292                             (t
293                              (message "\
294 Warning: Unknown req `%S' with options `%S'" req options)
295                              nil))))
296         match)))))
297
298 (defun wl-read-event-char ()
299   "Get the next event."
300   (let ((event (read-event)))
301     (cons (and (numberp event) event) event)))
302
303 (require 'product)
304 (product-provide (provide 'wl-mule) (require 'wl-version))
305
306 ;;; wl-mule.el ends here