lisp/*.el: Lexical-binding cleanup.
[bpt/emacs.git] / lisp / tool-bar.el
CommitLineData
e8af40ee 1;;; tool-bar.el --- setting up the tool bar
e9bffc61 2
73b0cd50 3;; Copyright (C) 2000-2011 Free Software Foundation, Inc.
e9bffc61 4
ec7f4585
DL
5;; Author: Dave Love <fx@gnu.org>
6;; Keywords: mouse frames
bd78fa1d 7;; Package: emacs
ec7f4585
DL
8
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
ec7f4585 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
ec7f4585
DL
15
16;; GNU Emacs 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
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
ec7f4585
DL
23
24;;; Commentary:
25
02d709c0 26;; Provides `tool-bar-mode' to control display of the tool-bar and
ec7f4585
DL
27;; bindings for the global tool bar with convenience functions
28;; `tool-bar-add-item' and `tool-bar-add-item-from-menu'.
29
9a4b8870 30;; The normal global binding for [tool-bar] (below) uses the value of
c129b5ef
DL
31;; `tool-bar-map' as the actual keymap to define the tool bar. Modes
32;; may either bind items under the [tool-bar] prefix key of the local
33;; map to add to the global bar or may set `tool-bar-map'
b28e72df 34;; buffer-locally to override it. (Some items are removed from the
9a4b8870 35;; global bar in modes which have `special' as their `mode-class'
b011dcb0 36;; property.)
9a4b8870 37
adf7d3a8
DL
38;; Todo: Somehow make tool bars easily customizable by the naive?
39
ec7f4585
DL
40;;; Code:
41
646cb69e
RS
42;; The autoload cookie doesn't work when preloading.
43;; Deleting it means invoking this command won't work
44;; when you are on a tty. I hope that won't cause too much trouble -- rms.
ec7f4585
DL
45(define-minor-mode tool-bar-mode
46 "Toggle use of the tool bar.
a81fc510 47With numeric ARG, display the tool bar if and only if ARG is positive.
ec7f4585
DL
48
49See `tool-bar-add-item' and `tool-bar-add-item-from-menu' for
50conveniently adding tool bar items."
6431f2e6 51 :init-value t
ec7f4585 52 :global t
9d794026
GM
53 ;; It's defined in C/cus-start, this stops the d-m-m macro defining it again.
54 :variable tool-bar-mode
6431f2e6
CY
55 (let ((val (if tool-bar-mode 1 0)))
56 (dolist (frame (frame-list))
4ad11f8c
CY
57 (set-frame-parameter frame 'tool-bar-lines val))
58 ;; If the user has given `default-frame-alist' a `tool-bar-lines'
59 ;; parameter, replace it.
60 (if (assq 'tool-bar-lines default-frame-alist)
61 (setq default-frame-alist
62 (cons (cons 'tool-bar-lines val)
63 (assq-delete-all 'tool-bar-lines
64 default-frame-alist)))))
65 (and tool-bar-mode
66 (= 1 (length (default-value 'tool-bar-map))) ; not yet setup
67 (tool-bar-setup)))
ec7f4585 68
929e8487 69;;;###autoload
6a5af08f
KL
70;; Used in the Show/Hide menu, to have the toggle reflect the current frame.
71(defun toggle-tool-bar-mode-from-frame (&optional arg)
72 "Toggle tool bar on or off, based on the status of the current frame.
73See `tool-bar-mode' for more information."
74 (interactive (list (or current-prefix-arg 'toggle)))
75 (if (eq arg 'toggle)
76 (tool-bar-mode (if (> (frame-parameter nil 'tool-bar-lines) 0) 0 1))
77 (tool-bar-mode arg)))
78
9a4b8870
DL
79(defvar tool-bar-map (make-sparse-keymap)
80 "Keymap for the tool bar.
81Define this locally to override the global tool bar.")
82
83(global-set-key [tool-bar]
1e8780b1 84 `(menu-item ,(purecopy "tool bar") ignore
c8fcd943
SM
85 :filter tool-bar-make-keymap))
86
aa360da1
GM
87(declare-function image-mask-p "image.c" (spec &optional frame))
88
b8067901
CY
89(defconst tool-bar-keymap-cache (make-hash-table :weakness t :test 'equal))
90
06b60517 91(defun tool-bar-make-keymap (&optional _ignore)
c8fcd943
SM
92 "Generate an actual keymap from `tool-bar-map'.
93Its main job is to figure out which images to use based on the display's
94color capability and based on the available image libraries."
b8067901
CY
95 (let ((key (cons (frame-terminal) tool-bar-map)))
96 (or (gethash key tool-bar-keymap-cache)
97 (puthash key (tool-bar-make-keymap-1) tool-bar-keymap-cache))))
98
99(defun tool-bar-make-keymap-1 ()
100 "Generate an actual keymap from `tool-bar-map', without caching."
c8fcd943 101 (mapcar (lambda (bind)
71928058 102 (let (image-exp plist)
c8fcd943 103 (when (and (eq (car-safe (cdr-safe bind)) 'menu-item)
71928058
CY
104 ;; For the format of menu-items, see node
105 ;; `Extended Menu Items' in the Elisp manual.
106 (setq plist (nthcdr (if (consp (nth 4 bind)) 5 4)
107 bind))
108 (setq image-exp (plist-get plist :image))
109 (consp image-exp)
110 (not (eq (car image-exp) 'image))
111 (fboundp (car image-exp)))
112 (if (not (display-images-p))
113 (setq bind nil)
114 (let ((image (eval image-exp)))
6a9cbb85 115 (unless (and image (image-mask-p image))
71928058
CY
116 (setq image (append image '(:mask heuristic))))
117 (setq bind (copy-sequence bind)
118 plist (nthcdr (if (consp (nth 4 bind)) 5 4)
119 bind))
120 (plist-put plist :image image))))
121 bind))
c8fcd943
SM
122 tool-bar-map))
123
ec7f4585 124;;;###autoload
9a4b8870 125(defun tool-bar-add-item (icon def key &rest props)
ec7f4585
DL
126 "Add an item to the tool bar.
127ICON names the image, DEF is the key definition and KEY is a symbol
9a4b8870
DL
128for the fake function key in the menu keymap. Remaining arguments
129PROPS are additional items to add to the menu item specification. See
130Info node `(elisp)Tool Bar'. Items are added from left to right.
ec7f4585 131
cb4aae04 132ICON is the base name of a file containing the image to use. The
d36b11e2 133function will first try to use low-color/ICON.xpm if `display-color-cells'
968d6127 134is less or equal to 256, then ICON.xpm, then ICON.pbm, and finally
cb4aae04 135ICON.xbm, using `find-image'.
9a4b8870 136
ca1b34c8
RS
137Use this function only to make bindings in the global value of `tool-bar-map'.
138To define items in any other map, use `tool-bar-local-item'."
139 (apply 'tool-bar-local-item icon def key tool-bar-map props))
140
94975270
CY
141(defun tool-bar--image-expression (icon)
142 "Return an expression that evaluates to an image spec for ICON."
143 (let* ((fg (face-attribute 'tool-bar :foreground))
144 (bg (face-attribute 'tool-bar :background))
145 (colors (nconc (if (eq fg 'unspecified) nil (list :foreground fg))
146 (if (eq bg 'unspecified) nil (list :background bg))))
147 (xpm-spec (list :type 'xpm :file (concat icon ".xpm")))
148 (xpm-lo-spec (list :type 'xpm :file
149 (concat "low-color/" icon ".xpm")))
150 (pbm-spec (append (list :type 'pbm :file
151 (concat icon ".pbm")) colors))
152 (xbm-spec (append (list :type 'xbm :file
153 (concat icon ".xbm")) colors)))
154 `(find-image (cond ((not (display-color-p))
155 ',(list pbm-spec xbm-spec xpm-lo-spec xpm-spec))
156 ((< (display-color-cells) 256)
157 ',(list xpm-lo-spec xpm-spec pbm-spec xbm-spec))
158 (t
159 ',(list xpm-spec pbm-spec xbm-spec))))))
160
ca1b34c8
RS
161;;;###autoload
162(defun tool-bar-local-item (icon def key map &rest props)
163 "Add an item to the tool bar in map MAP.
164ICON names the image, DEF is the key definition and KEY is a symbol
165for the fake function key in the menu keymap. Remaining arguments
166PROPS are additional items to add to the menu item specification. See
167Info node `(elisp)Tool Bar'. Items are added from left to right.
168
169ICON is the base name of a file containing the image to use. The
c8fcd943 170function will first try to use low-color/ICON.xpm if `display-color-cells'
968d6127 171is less or equal to 256, then ICON.xpm, then ICON.pbm, and finally
ca1b34c8 172ICON.xbm, using `find-image'."
94975270 173 (let* ((image-exp (tool-bar--image-expression icon)))
c8fcd943
SM
174 (define-key-after map (vector key)
175 `(menu-item ,(symbol-name key) ,def :image ,image-exp ,@props))))
ec7f4585 176
c2156508 177;;;###autoload
ec7f4585 178(defun tool-bar-add-item-from-menu (command icon &optional map &rest props)
7c064859 179 "Define tool bar binding for COMMAND in keymap MAP using the given ICON.
ca1b34c8
RS
180This makes a binding for COMMAND in `tool-bar-map', copying its
181binding from the menu bar in MAP (which defaults to `global-map'), but
182modifies the binding by adding an image specification for ICON. It
183finds ICON just like `tool-bar-add-item'. PROPS are additional
184properties to add to the binding.
185
186MAP must contain appropriate binding for `[menu-bar]' which holds a keymap.
187
188Use this function only to make bindings in the global value of `tool-bar-map'.
7c064859 189To define items in any other map, use `tool-bar-local-item-from-menu'."
03a8bf7d
SM
190 (apply 'tool-bar-local-item-from-menu command icon
191 (default-value 'tool-bar-map) map props))
ca1b34c8
RS
192
193;;;###autoload
194(defun tool-bar-local-item-from-menu (command icon in-map &optional from-map &rest props)
7c064859 195 "Define local tool bar binding for COMMAND using the given ICON.
ca1b34c8
RS
196This makes a binding for COMMAND in IN-MAP, copying its binding from
197the menu bar in FROM-MAP (which defaults to `global-map'), but
198modifies the binding by adding an image specification for ICON. It
199finds ICON just like `tool-bar-add-item'. PROPS are additional
200properties to add to the binding.
201
7c064859
NR
202FROM-MAP must contain appropriate binding for `[menu-bar]' which
203holds a keymap."
ca1b34c8
RS
204 (unless from-map
205 (setq from-map global-map))
206 (let* ((menu-bar-map (lookup-key from-map [menu-bar]))
ec7f4585 207 (keys (where-is-internal command menu-bar-map))
94975270 208 (image-exp (tool-bar--image-expression icon))
ec7f4585 209 submap key)
c8fcd943
SM
210 ;; We'll pick up the last valid entry in the list of keys if
211 ;; there's more than one.
9ae0c310 212 ;; FIXME: Aren't they *all* "valid"?? --Stef
c8fcd943
SM
213 (dolist (k keys)
214 ;; We're looking for a binding of the command in a submap of
215 ;; the menu bar map, so the key sequence must be two or more
216 ;; long.
217 (if (and (vectorp k)
218 (> (length k) 1))
219 (let ((m (lookup-key menu-bar-map (substring k 0 -1)))
220 ;; Last element in the bound key sequence:
221 (kk (aref k (1- (length k)))))
222 (if (and (keymapp m)
7ac82b84 223 (symbolp kk))
c8fcd943
SM
224 (setq submap m
225 key kk)))))
7ac82b84
J
226 (when (and (symbolp submap) (boundp submap))
227 (setq submap (eval submap)))
228 (let ((defn (assq key (cdr submap))))
229 (if (eq (cadr defn) 'menu-item)
230 (define-key-after in-map (vector key)
231 (append (cdr defn) (list :image image-exp) props))
232 (setq defn (cdr defn))
c8fcd943 233 (define-key-after in-map (vector key)
7ac82b84
J
234 (let ((rest (cdr defn)))
235 ;; If the rest of the definition starts
236 ;; with a list of menu cache info, get rid of that.
237 (if (and (consp rest) (consp (car rest)))
238 (setq rest (cdr rest)))
239 (append `(menu-item ,(car defn) ,rest)
240 (list :image image-exp) props)))))))
ec7f4585
DL
241
242;;; Set up some global items. Additions/deletions up for grabs.
243
e4779829 244(defun tool-bar-setup ()
94975270
CY
245 (setq tool-bar-separator-image-expression
246 (tool-bar--image-expression "separator"))
d2bd5189
JD
247 (tool-bar-add-item-from-menu 'find-file "new" nil :label "New File"
248 :vert-only t)
249 (tool-bar-add-item-from-menu 'menu-find-file-existing "open" nil
4039c786 250 :label "Open" :vert-only t)
d2bd5189
JD
251 (tool-bar-add-item-from-menu 'dired "diropen" nil :vert-only t)
252 (tool-bar-add-item-from-menu 'kill-this-buffer "close" nil :vert-only t)
94975270 253 (tool-bar-add-item-from-menu 'save-buffer "save" nil
c940c054 254 :label "Save")
4039c786 255 (define-key-after (default-value 'tool-bar-map) [separator-1] menu-bar-separator)
900503ae 256 (tool-bar-add-item-from-menu 'undo "undo" nil)
4039c786 257 (define-key-after (default-value 'tool-bar-map) [separator-2] menu-bar-separator)
e4779829 258 (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [cut])
c940c054 259 "cut" nil :vert-only t)
e4779829 260 (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [copy])
d2bd5189 261 "copy" nil :vert-only t)
e4779829 262 (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [paste])
c940c054 263 "paste" nil :vert-only t)
4039c786 264 (define-key-after (default-value 'tool-bar-map) [separator-3] menu-bar-separator)
900503ae
CY
265 (tool-bar-add-item-from-menu 'isearch-forward "search"
266 nil :label "Search" :vert-only t)
e4779829
CY
267 ;;(tool-bar-add-item-from-menu 'ispell-buffer "spell")
268
269 ;; There's no icon appropriate for News and we need a command rather
270 ;; than a lambda for Read Mail.
271 ;;(tool-bar-add-item-from-menu 'compose-mail "mail/compose")
272
900503ae
CY
273 ;; Help button on a tool bar is rather non-standard...
274 ;; (let ((tool-bar-map (default-value 'tool-bar-map)))
275 ;; (tool-bar-add-item "help" (lambda ()
276 ;; (interactive)
277 ;; (popup-menu menu-bar-help-menu))
278 ;; 'help
279 ;; :help "Pop up the Help menu"))
280)
ec7f4585 281
8cf1771a
JD
282(if (featurep 'move-toolbar)
283 (defcustom tool-bar-position 'top
284 "Specify on which side the tool bar shall be.
285Possible values are `top' (tool bar on top), `bottom' (tool bar at bottom),
286`left' (tool bar on left) and `right' (tool bar on right).
287Customize `tool-bar-mode' if you want to show or hide the tool bar."
288 :type '(choice (const top)
289 (const bottom)
290 (const left)
291 (const right))
292 :group 'frames
293 :initialize 'custom-initialize-default
294 :set (lambda (sym val)
295 (set-default sym val)
9d794026 296 (modify-all-frames-parameters
8cf1771a
JD
297 (list (cons 'tool-bar-position val))))))
298
ec7f4585 299
c044516d 300(provide 'tool-bar)
9d794026 301
ec7f4585 302;;; tool-bar.el ends here