* gmm-utils.el (gmm-tool-bar-item): Add "Separator".
[gnus] / lisp / gmm-utils.el
1 ;;; gmm-utils.el --- Utility functions for Gnus, Message and MML
2
3 ;; Copyright (C) 2006 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 2, or (at your option)
13 ;; 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; see the file COPYING.  If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;; This library provides self-contained utility functions.  The functions are
28 ;; used in Gnus, Message and MML, but within this library there are no
29 ;; dependencies on Gnus, Message, or MML or Gnus.
30
31 ;;; Code:
32
33 (defgroup gmm nil
34   "Utility functions for Gnus, Message and MML"
35   :prefix "gmm-"
36   :group 'lisp)
37
38 ;; Helper functions from `gnus-utils.el': gmm-verbose, gmm-message, gmm-error
39
40 (defcustom gmm-verbose 7
41   "Integer that says how verbose gmm should be.
42 The higher the number, the more messages will flash to say what
43 it done.  At zero, it will be totally mute; at five, it will
44 display most important messages; and at ten, it will keep on
45 jabbering all the time."
46   :type 'integer)
47
48 ;;;###autoload
49 (defun gmm-message (level &rest args)
50   "If LEVEL is lower than `gmm-verbose' print ARGS using `message'.
51
52 Guideline for numbers:
53 1 - error messages, 3 - non-serious error messages, 5 - messages for things
54 that take a long time, 7 - not very important messages on stuff, 9 - messages
55 inside loops."
56   (if (<= level gmm-verbose)
57       (apply 'message args)
58     ;; We have to do this format thingy here even if the result isn't
59     ;; shown - the return value has to be the same as the return value
60     ;; from `message'.
61     (apply 'format args)))
62
63 ;;;###autoload
64 (defun gmm-error (level &rest args)
65   "Beep an error if LEVEL is equal to or less than `gmm-verbose'.
66 ARGS are passed to `message'."
67   (when (<= (floor level) gmm-verbose)
68     (apply 'message args)
69     (ding)
70     (let (duration)
71       (when (and (floatp level)
72                  (not (zerop (setq duration (* 10 (- level (floor level)))))))
73         (sit-for duration))))
74   nil)
75
76 ;;;###autoload
77 (defun gmm-widget-p (symbol)
78   "Non-nil iff SYMBOL is a widget."
79   (get symbol 'widget-type))
80
81 ;; Copy of the `nnmail-lazy' code from `nnmail.el':
82 (define-widget 'gmm-lazy 'default
83   "Base widget for recursive datastructures.
84
85 This is copy of the `lazy' widget in Emacs 22.1 provided for compatibility."
86   :format "%{%t%}: %v"
87   :convert-widget 'widget-value-convert-widget
88   :value-create (lambda (widget)
89                   (let ((value (widget-get widget :value))
90                         (type (widget-get widget :type)))
91                     (widget-put widget :children
92                                 (list (widget-create-child-value
93                                        widget (widget-convert type) value)))))
94   :value-delete 'widget-children-value-delete
95   :value-get (lambda (widget)
96                (widget-value (car (widget-get widget :children))))
97   :value-inline (lambda (widget)
98                   (widget-apply (car (widget-get widget :children))
99                                 :value-inline))
100   :default-get (lambda (widget)
101                  (widget-default-get
102                   (widget-convert (widget-get widget :type))))
103   :match (lambda (widget value)
104            (widget-apply (widget-convert (widget-get widget :type))
105                          :match value))
106   :validate (lambda (widget)
107               (widget-apply (car (widget-get widget :children)) :validate)))
108
109 ;; Note: The format of `gmm-tool-bar-item' may change if some future Emacs
110 ;; version will provide customizable tool bar buttons using a different
111 ;; interface.
112
113 ;;;###autoload
114 (define-widget 'gmm-tool-bar-item (if (gmm-widget-p 'lazy) 'lazy 'gmm-lazy)
115   "Tool bar list item."
116   :tag "Tool bar item"
117   :type '(choice
118           (list :tag "Command and Icon"
119                 (function :tag "Command")
120                 (string :tag "Icon file")
121                 (choice
122                  (const :tag "Default map" nil)
123                  ;; Note: Usually we need non-nil attributes if map is t.
124                  (const :tag "No menu" t)
125                  (sexp :tag "Other map"))
126                 (plist :inline t :tag "Properties"))
127           (list :tag "Separator"
128                 (const :tag "No command" gmm-ignore)
129                 (string :tag "Icon file")
130                 (const :tag "No map")
131                 (plist :inline t :tag "Properties"))))
132
133 ;;;###autoload
134 (define-widget 'gmm-tool-bar-zap-list (if (gmm-widget-p 'lazy) 'lazy 'gmm-lazy)
135   "Tool bar zap list."
136   :tag "Tool bar zap list"
137   :type '(choice (const :tag "Zap all" t)
138                  (const :tag "Keep all" nil)
139                  (list
140                   ;; :value
141                   ;; Work around (bug in customize?), see
142                   ;; <news:v9is48jrj1.fsf@marauder.physik.uni-ulm.de>
143                   ;; (new-file open-file dired kill-buffer write-file
144                   ;;        print-buffer customize help)
145                   (set :inline t
146                        (const new-file)
147                        (const open-file)
148                        (const dired)
149                        (const kill-buffer)
150                        (const save-buffer)
151                        (const write-file)
152                        (const undo)
153                        (const cut)
154                        (const copy)
155                        (const paste)
156                        (const search-forward)
157                        (const print-buffer)
158                        (const customize)
159                        (const help))
160                   (repeat :inline t
161                           :tag "Other"
162                           (symbol :tag "Icon item")))))
163
164 (defvar tool-bar-map)
165
166 ;;;###autoload
167 (defun gmm-tool-bar-from-list (icon-list zap-list default-map)
168   "Make a tool bar from ICON-LIST.
169
170 Within each entry of ICON-LIST, the first element is a menu
171 command, the second element is an icon file name and the third
172 element is a test function.  You can use \\[describe-key]
173 <menu-entry> to find out the name of a menu command.  The fourth
174 and all following elements are passed a the PROPS argument to the
175 function `tool-bar-local-item'.
176
177 If ZAP-LIST is a list, remove those item from the default
178 `tool-bar-map'.  If it is t, start with a new sparse map.  You
179 can use \\[describe-key] <icon> to find out the name of an icon
180 item.  When \\[describe-key] <icon> shows \"<tool-bar> <new-file>
181 runs the command find-file\", then use `new-file' in ZAP-LIST.
182
183 DEFAULT-MAP specifies the default key map for ICON-LIST."
184   (let (;; For Emacs 21, we must let-bind `tool-bar-map'.  In Emacs 22, we
185         ;; could use some other local variable.
186         (tool-bar-map (if (eq zap-list t)
187                           (make-sparse-keymap)
188                         (copy-keymap tool-bar-map))))
189     (when (listp zap-list)
190       ;; Zap some items which aren't relevant for this mode and take up space.
191       (dolist (key zap-list)
192         (define-key tool-bar-map (vector key) nil)))
193     (mapc (lambda (el)
194             (let ((command (car el))
195                   (icon (nth 1 el))
196                   (fmap (or (nth 2 el) default-map))
197                   (props  (cdr (cdr (cdr el)))) )
198               ;; command may stem from different from-maps:
199               (cond ((eq command 'gmm-ignore)
200                      ;; The dummy `gmm-ignore', see `gmm-tool-bar-item'
201                      ;; widget.  Suppress tooltip by adding `:enable nil'.
202                      (if (fboundp 'tool-bar-local-item)
203                          (apply 'tool-bar-local-item icon nil nil
204                                 tool-bar-map :enable nil props)
205                        ;; (tool-bar-local-item ICON DEF KEY MAP &rest PROPS)
206                        ;; (tool-bar-add-item ICON DEF KEY &rest PROPS)
207                        (apply 'tool-bar-add-item icon nil nil :enable nil props)))
208                     ((equal fmap t) ;; Not a menu command
209                      (if (fboundp 'tool-bar-local-item)
210                          (apply 'tool-bar-local-item
211                                 icon command
212                                 (intern icon) ;; reuse icon or fmap here?
213                                 tool-bar-map props)
214                        ;; Emacs 21 compatibility:
215                        (apply 'tool-bar-add-item
216                               icon command
217                               (intern icon)
218                               props)))
219                     (t ;; A menu command
220                      (if (fboundp 'tool-bar-local-item-from-menu)
221                          (apply 'tool-bar-local-item-from-menu
222                                 ;; (apply 'tool-bar-local-item icon def key
223                                 ;; tool-bar-map props)
224                                 command icon tool-bar-map (symbol-value fmap)
225                                 props)
226                        ;; Emacs 21 compatibility:
227                        (apply 'tool-bar-add-item-from-menu
228                               command icon (symbol-value fmap)
229                               props))))
230               t))
231           (if (symbolp icon-list)
232               (eval icon-list)
233             icon-list))
234     tool-bar-map))
235
236 (provide 'gmm-utils)
237
238 ;; arch-tag: e0b60920-2ce6-40c1-bfc0-cadbbe26b602
239 ;;; gmm-utils.el ends here