640eb50a0229d76adf74838f8f1bdad08b1846c4
[gnus] / lisp / gmm-utils.el
1 ;;; gmm-utils.el --- Utility functions for Gnus, Message and MML
2
3 ;; Copyright (C) 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4
5 ;; Author: Reiner Steib <reiner.steib@gmx.de>
6 ;; Keywords: news
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs 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 3 of the License, or
13 ;; (at your option) any later version.
14
15 ;; GNU Emacs 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.  If not, see <http://www.gnu.org/licenses/>.
22
23 ;;; Commentary:
24
25 ;; This library provides self-contained utility functions.  The functions are
26 ;; used in Gnus, Message and MML, but within this library there are no
27 ;; dependencies on Gnus, Message, or MML.
28
29 ;;; Code:
30
31 (defgroup gmm nil
32   "Utility functions for Gnus, Message and MML."
33   :prefix "gmm-"
34   :version "22.1" ;; Gnus 5.10.9
35   :group 'lisp)
36
37 ;; Helper functions from `gnus-utils.el': gmm-verbose, gmm-message, gmm-error
38
39 (defcustom gmm-verbose 7
40   "Integer that says how verbose gmm should be.
41 The higher the number, the more messages will flash to say what
42 it did.  At zero, it will be totally mute; at five, it will
43 display most important messages; and at ten, it will keep on
44 jabbering all the time."
45   :type 'integer
46   :group 'gmm)
47
48 ;;;###autoload
49 (defun gmm-regexp-concat (regexp)
50   "Potentially concat a list of regexps into a single one.
51 The concatenation is done with logical ORs."
52   (cond ((null regexp)
53          nil)
54         ((stringp regexp)
55          regexp)
56         ((listp regexp)
57          (mapconcat (lambda (elt) (concat "\\(" elt "\\)"))
58                     regexp
59                     "\\|"))))
60
61 ;;;###autoload
62 (defun gmm-message (level &rest args)
63   "If LEVEL is lower than `gmm-verbose' print ARGS using `message'.
64
65 Guideline for numbers:
66 1 - error messages
67 3 - non-serious error messages
68 5 - messages for things that take a long time
69 7 - not very important messages on stuff
70 9 - messages inside loops."
71   (if (<= level gmm-verbose)
72       (apply 'message args)
73     ;; We have to do this format thingy here even if the result isn't
74     ;; shown - the return value has to be the same as the return value
75     ;; from `message'.
76     (apply 'format args)))
77
78 ;;;###autoload
79 (defun gmm-error (level &rest args)
80   "Beep an error if LEVEL is equal to or less than `gmm-verbose'.
81 ARGS are passed to `message'."
82   (when (<= (floor level) gmm-verbose)
83     (apply 'message args)
84     (ding)
85     (let (duration)
86       (when (and (floatp level)
87                  (not (zerop (setq duration (* 10 (- level (floor level)))))))
88         (sit-for duration))))
89   nil)
90
91 ;;;###autoload
92 (defun gmm-widget-p (symbol)
93   "Non-nil if SYMBOL is a widget."
94   (get symbol 'widget-type))
95
96 (autoload 'widget-create-child-value "wid-edit")
97 (autoload 'widget-convert "wid-edit")
98 (autoload 'widget-default-get "wid-edit")
99
100 ;; Copy of the `nnmail-lazy' code from `nnmail.el':
101 (define-widget 'gmm-lazy 'default
102   "Base widget for recursive datastructures.
103
104 This is a copy of the `lazy' widget in Emacs 22.1 provided for compatibility."
105   :format "%{%t%}: %v"
106   :convert-widget 'widget-value-convert-widget
107   :value-create (lambda (widget)
108                   (let ((value (widget-get widget :value))
109                         (type (widget-get widget :type)))
110                     (widget-put widget :children
111                                 (list (widget-create-child-value
112                                        widget (widget-convert type) value)))))
113   :value-delete 'widget-children-value-delete
114   :value-get (lambda (widget)
115                (widget-value (car (widget-get widget :children))))
116   :value-inline (lambda (widget)
117                   (widget-apply (car (widget-get widget :children))
118                                 :value-inline))
119   :default-get (lambda (widget)
120                  (widget-default-get
121                   (widget-convert (widget-get widget :type))))
122   :match (lambda (widget value)
123            (widget-apply (widget-convert (widget-get widget :type))
124                          :match value))
125   :validate (lambda (widget)
126               (widget-apply (car (widget-get widget :children)) :validate)))
127
128 ;; Note: The format of `gmm-tool-bar-item' may change if some future Emacs
129 ;; version will provide customizable tool bar buttons using a different
130 ;; interface.
131
132 ;; TODO: Extend API so that the "Command" entry can be a function or a plist.
133 ;; In case of a list it should have the format...
134 ;;
135 ;;  (:none command-without-modifier
136 ;;   :shift command-with-shift-pressed
137 ;;   :control command-with-ctrl-pressed
138 ;;   :control-shift command-with-control-and-shift-pressed
139 ;;   ;; mouse-2 and mouse-3 can't be used in Emacs yet.
140 ;;   :mouse-2 command-on-mouse-2-press
141 ;;   :mouse-3 command-on-mouse-3-press) ;; typically a menu of related commands
142 ;;
143 ;; Combinations of mouse-[23] plus shift and/or controll might be overkill.
144 ;;
145 ;; Then use (plist-get rs-command :none), (plist-get rs-command :shift)
146
147 (define-widget 'gmm-tool-bar-item (if (gmm-widget-p 'lazy) 'lazy 'gmm-lazy)
148   "Tool bar list item."
149   :tag "Tool bar item"
150   :type '(choice
151           (list :tag "Command and Icon"
152                 (function :tag "Command")
153                 (string :tag "Icon file")
154                 (choice
155                  (const :tag "Default map" nil)
156                  ;; Note: Usually we need non-nil attributes if map is t.
157                  (const :tag "No menu" t)
158                  (sexp :tag "Other map"))
159                 (plist :inline t :tag "Properties"))
160           (list :tag "Separator"
161                 (const :tag "No command" gmm-ignore)
162                 (string :tag "Icon file")
163                 (const :tag "No map")
164                 (plist :inline t :tag "Properties"))))
165
166 (define-widget 'gmm-tool-bar-zap-list (if (gmm-widget-p 'lazy) 'lazy 'gmm-lazy)
167   "Tool bar zap list."
168   :tag "Tool bar zap list"
169   :type '(choice (const :tag "Zap all" t)
170                  (const :tag "Keep all" nil)
171                  (list
172                   ;; :value
173                   ;; Work around (bug in customize?), see
174                   ;; <news:v9is48jrj1.fsf@marauder.physik.uni-ulm.de>
175                   ;; (new-file open-file dired kill-buffer write-file
176                   ;;        print-buffer customize help)
177                   (set :inline t
178                        (const new-file)
179                        (const open-file)
180                        (const dired)
181                        (const kill-buffer)
182                        (const save-buffer)
183                        (const write-file)
184                        (const undo)
185                        (const cut)
186                        (const copy)
187                        (const paste)
188                        (const search-forward)
189                        (const print-buffer)
190                        (const customize)
191                        (const help))
192                   (repeat :inline t
193                           :tag "Other"
194                           (symbol :tag "Icon item")))))
195
196 ;; (defun gmm-color-cells (&optional display)
197 ;;   "Return the number of color cells supported by DISPLAY.
198 ;; Compatibility function."
199 ;;   ;; `display-color-cells' doesn't return more than 256 even if color depth is
200 ;;   ;; > 8 in Emacs 21.
201 ;;   ;;
202 ;;   ;; Feel free to add proper XEmacs support.
203 ;;   (let* ((cells (and (fboundp 'display-color-cells)
204 ;;                   (display-color-cells display)))
205 ;;       (plane (and (fboundp 'x-display-planes)
206 ;;                   (ash 1 (x-display-planes))))
207 ;;       (none -1))
208 ;;     (max (if (integerp cells) cells none)
209 ;;       (if (integerp plane) plane none))))
210
211 (defcustom gmm-tool-bar-style
212   (if (and (boundp 'tool-bar-mode)
213            tool-bar-mode
214            (and (fboundp 'display-visual-class)
215                 (not (memq (display-visual-class)
216                            (list 'static-gray 'gray-scale
217                                  'static-color 'pseudo-color)))))
218       'gnome
219     'retro)
220   "Prefered tool bar style."
221   :type '(choice (const :tag "GNOME style" gnome)
222                  (const :tag "Retro look"  retro))
223   :group 'gmm)
224
225 (defvar tool-bar-map)
226
227 ;;;###autoload
228 (defun gmm-tool-bar-from-list (icon-list zap-list default-map)
229   "Make a tool bar from ICON-LIST.
230
231 Within each entry of ICON-LIST, the first element is a menu
232 command, the second element is an icon file name and the third
233 element is a test function.  You can use \\[describe-key]
234 <menu-entry> to find out the name of a menu command.  The fourth
235 and all following elements are passed as the PROPS argument to the
236 function `tool-bar-local-item'.
237
238 If ZAP-LIST is a list, remove those item from the default
239 `tool-bar-map'.  If it is t, start with a new sparse map.  You
240 can use \\[describe-key] <icon> to find out the name of an icon
241 item.  When \\[describe-key] <icon> shows \"<tool-bar> <new-file>
242 runs the command find-file\", then use `new-file' in ZAP-LIST.
243
244 DEFAULT-MAP specifies the default key map for ICON-LIST."
245   (let (;; For Emacs 21, we must let-bind `tool-bar-map'.  In Emacs 22, we
246         ;; could use some other local variable.
247         (tool-bar-map (if (eq zap-list t)
248                           (make-sparse-keymap)
249                         (copy-keymap tool-bar-map))))
250     (when (listp zap-list)
251       ;; Zap some items which aren't relevant for this mode and take up space.
252       (dolist (key zap-list)
253         (define-key tool-bar-map (vector key) nil)))
254     (mapc (lambda (el)
255             (let ((command (car el))
256                   (icon (nth 1 el))
257                   (fmap (or (nth 2 el) default-map))
258                   (props  (cdr (cdr (cdr el)))) )
259               ;; command may stem from different from-maps:
260               (cond ((eq command 'gmm-ignore)
261                      ;; The dummy `gmm-ignore', see `gmm-tool-bar-item'
262                      ;; widget.  Suppress tooltip by adding `:enable nil'.
263                      (if (fboundp 'tool-bar-local-item)
264                          (apply 'tool-bar-local-item icon nil nil
265                                 tool-bar-map :enable nil props)
266                        ;; (tool-bar-local-item ICON DEF KEY MAP &rest PROPS)
267                        ;; (tool-bar-add-item ICON DEF KEY &rest PROPS)
268                        (apply 'tool-bar-add-item icon nil nil :enable nil props)))
269                     ((equal fmap t) ;; Not a menu command
270                      (if (fboundp 'tool-bar-local-item)
271                          (apply 'tool-bar-local-item
272                                 icon command
273                                 (intern icon) ;; reuse icon or fmap here?
274                                 tool-bar-map props)
275                        ;; Emacs 21 compatibility:
276                        (apply 'tool-bar-add-item
277                               icon command
278                               (intern icon)
279                               props)))
280                     (t ;; A menu command
281                      (if (fboundp 'tool-bar-local-item-from-menu)
282                          (apply 'tool-bar-local-item-from-menu
283                                 ;; (apply 'tool-bar-local-item icon def key
284                                 ;; tool-bar-map props)
285                                 command icon tool-bar-map (symbol-value fmap)
286                                 props)
287                        ;; Emacs 21 compatibility:
288                        (apply 'tool-bar-add-item-from-menu
289                               command icon (symbol-value fmap)
290                               props))))
291               t))
292           (if (symbolp icon-list)
293               (eval icon-list)
294             icon-list))
295     tool-bar-map))
296
297 (defmacro defun-gmm (name function arg-list &rest body)
298   "Create function NAME.
299 If FUNCTION exists, then NAME becomes an alias for FUNCTION.
300 Otherwise, create function NAME with ARG-LIST and BODY."
301   (let ((defined-p (fboundp function)))
302     (if defined-p
303         `(defalias ',name ',function)
304       `(defun ,name ,arg-list ,@body))))
305
306 (defun-gmm gmm-image-search-load-path
307   image-search-load-path (file &optional path)
308   "Emacs 21 and XEmacs don't have `image-search-load-path'.
309 This function returns nil on those systems."
310   nil)
311
312 ;; Cf. `mh-image-load-path-for-library' in `mh-compat.el'.
313
314 (defun-gmm gmm-image-load-path-for-library
315   image-load-path-for-library (library image &optional path no-error)
316   "Return a suitable search path for images used by LIBRARY.
317
318 It searches for IMAGE in `image-load-path' (excluding
319 \"`data-directory'/images\") and `load-path', followed by a path
320 suitable for LIBRARY, which includes \"../../etc/images\" and
321 \"../etc/images\" relative to the library file itself, and then
322 in \"`data-directory'/images\".
323
324 Then this function returns a list of directories which contains
325 first the directory in which IMAGE was found, followed by the
326 value of `load-path'.  If PATH is given, it is used instead of
327 `load-path'.
328
329 If NO-ERROR is non-nil and a suitable path can't be found, don't
330 signal an error.  Instead, return a list of directories as before,
331 except that nil appears in place of the image directory.
332
333 Here is an example that uses a common idiom to provide
334 compatibility with versions of Emacs that lack the variable
335 `image-load-path':
336
337     ;; Shush compiler.
338     (defvar image-load-path)
339
340     (let* ((load-path (image-load-path-for-library \"mh-e\" \"mh-logo.xpm\"))
341            (image-load-path (cons (car load-path)
342                                   (when (boundp 'image-load-path)
343                                     image-load-path))))
344       (mh-tool-bar-folder-buttons-init))"
345   (unless library (error "No library specified"))
346   (unless image   (error "No image specified"))
347   (let (image-directory image-directory-load-path)
348     ;; Check for images in image-load-path or load-path.
349     (let ((img image)
350           (dir (or
351                 ;; Images in image-load-path.
352                 (gmm-image-search-load-path image) ;; "gmm-" prefix!
353                 ;; Images in load-path.
354                 (locate-library image)))
355           parent)
356       ;; Since the image might be in a nested directory (for
357       ;; example, mail/attach.pbm), adjust `image-directory'
358       ;; accordingly.
359       (when dir
360         (setq dir (file-name-directory dir))
361         (while (setq parent (file-name-directory img))
362           (setq img (directory-file-name parent)
363                 dir (expand-file-name "../" dir))))
364       (setq image-directory-load-path dir))
365
366     ;; If `image-directory-load-path' isn't Emacs' image directory,
367     ;; it's probably a user preference, so use it.  Then use a
368     ;; relative setting if possible; otherwise, use
369     ;; `image-directory-load-path'.
370     (cond
371      ;; User-modified image-load-path?
372      ((and image-directory-load-path
373            (not (equal image-directory-load-path
374                        (file-name-as-directory
375                         (expand-file-name "images" data-directory)))))
376       (setq image-directory image-directory-load-path))
377      ;; Try relative setting.
378      ((let (library-name d1ei d2ei)
379         ;; First, find library in the load-path.
380         (setq library-name (locate-library library))
381         (if (not library-name)
382             (error "Cannot find library %s in load-path" library))
383         ;; And then set image-directory relative to that.
384         (setq
385          ;; Go down 2 levels.
386          d2ei (file-name-as-directory
387                (expand-file-name
388                 (concat (file-name-directory library-name) "../../etc/images")))
389          ;; Go down 1 level.
390          d1ei (file-name-as-directory
391                (expand-file-name
392                 (concat (file-name-directory library-name) "../etc/images"))))
393         (setq image-directory
394               ;; Set it to nil if image is not found.
395               (cond ((file-exists-p (expand-file-name image d2ei)) d2ei)
396                     ((file-exists-p (expand-file-name image d1ei)) d1ei)))))
397      ;; Use Emacs' image directory.
398      (image-directory-load-path
399       (setq image-directory image-directory-load-path))
400      (no-error
401       (message "Could not find image %s for library %s" image library))
402      (t
403       (error "Could not find image %s for library %s" image library)))
404
405     ;; Return an augmented `path' or `load-path'.
406     (nconc (list image-directory)
407            (delete image-directory (copy-sequence (or path load-path))))))
408
409 (defun gmm-customize-mode (&optional mode)
410   "Customize customization group for MODE.
411 If mode is nil, use `major-mode' of the current buffer."
412   (interactive)
413   (customize-group
414    (or mode
415        (intern (let ((mode (symbol-name major-mode)))
416                  (string-match "^\\(.+\\)-mode$" mode)
417                  (match-string 1 mode))))))
418
419 (defun gmm-write-region (start end filename &optional append visit
420                                lockname mustbenew)
421   "Compatibility function for `write-region'.
422
423 In XEmacs, the seventh argument of `write-region' specifies the
424 coding-system."
425   (if (and mustbenew
426            (or (featurep 'xemacs)
427                (= emacs-major-version 20)))
428       (if (file-exists-p filename)
429           (signal 'file-already-exists
430                   (list "File exists" filename))
431         (write-region start end filename append visit lockname))
432     (write-region start end filename append visit lockname mustbenew)))
433
434 (provide 'gmm-utils)
435
436 ;; arch-tag: e0b60920-2ce6-40c1-bfc0-cadbbe26b602
437 ;;; gmm-utils.el ends here