(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / lisp / toolbar / tool-bar.el
blob5f2e3afd46cc1f34a9d26515ef3a337bd04c34ef
1 ;;; tool-bar.el --- setting up the tool bar
2 ;;
3 ;; Copyright (C) 2000, 2001, 2002, 2005 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Dave Love <fx@gnu.org>
6 ;; Keywords: mouse frames
8 ;; This file is part of GNU Emacs.
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.
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.
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.
25 ;;; Commentary:
27 ;; Provides `tool-bar-mode' to control display of the tool-bar and
28 ;; bindings for the global tool bar with convenience functions
29 ;; `tool-bar-add-item' and `tool-bar-add-item-from-menu'.
31 ;; The normal global binding for [tool-bar] (below) uses the value of
32 ;; `tool-bar-map' as the actual keymap to define the tool bar. Modes
33 ;; may either bind items under the [tool-bar] prefix key of the local
34 ;; map to add to the global bar or may set `tool-bar-map'
35 ;; buffer-locally to override it. (Some items are removed from the
36 ;; global bar in modes which have `special' as their `mode-class'
37 ;; property.)
39 ;; Todo: Somehow make tool bars easily customizable by the naive?
41 ;;; Code:
43 ;;;###autoload
44 (define-minor-mode tool-bar-mode
45 "Toggle use of the tool bar.
46 With numeric ARG, display the tool bar if and only if ARG is positive.
48 See `tool-bar-add-item' and `tool-bar-add-item-from-menu' for
49 conveniently adding tool bar items."
50 :init-value nil
51 :global t
52 :group 'mouse
53 :group 'frames
54 (and (display-images-p)
55 (let ((lines (if tool-bar-mode 1 0)))
56 ;; Alter existing frames...
57 (mapc (lambda (frame)
58 (modify-frame-parameters frame
59 (list (cons 'tool-bar-lines lines))))
60 (frame-list))
61 ;; ...and future ones.
62 (let ((elt (assq 'tool-bar-lines default-frame-alist)))
63 (if elt
64 (setcdr elt lines)
65 (add-to-list 'default-frame-alist (cons 'tool-bar-lines lines)))))
66 (if (and tool-bar-mode
67 (display-graphic-p)
68 (= 1 (length (default-value 'tool-bar-map)))) ; not yet setup
69 (tool-bar-setup))))
71 ;;;###autoload
72 ;; We want to pretend the toolbar by standard is on, as this will make
73 ;; customize consider disabling the toolbar a customization, and save
74 ;; that. We could do this for real by setting :init-value above, but
75 ;; that would turn on the toolbar in MS Windows where it is currently
76 ;; useless, and it would overwrite disabling the tool bar from X
77 ;; resources. If anyone want to implement this in a cleaner way,
78 ;; please do so.
79 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2002-02-21.
80 (put 'tool-bar-mode 'standard-value '(t))
82 (defvar tool-bar-map (make-sparse-keymap)
83 "Keymap for the tool bar.
84 Define this locally to override the global tool bar.")
86 (global-set-key [tool-bar]
87 '(menu-item "tool bar" ignore
88 :filter (lambda (ignore) tool-bar-map)))
90 ;;;###autoload
91 (defun tool-bar-add-item (icon def key &rest props)
92 "Add an item to the tool bar.
93 ICON names the image, DEF is the key definition and KEY is a symbol
94 for the fake function key in the menu keymap. Remaining arguments
95 PROPS are additional items to add to the menu item specification. See
96 Info node `(elisp)Tool Bar'. Items are added from left to right.
98 ICON is the base name of a file containing the image to use. The
99 function will first try to use lc-ICON.xpm if display-color-cells
100 is less or equal to 256, then ICON.xpm, then ICON.pbm, and finally
101 ICON.xbm, using `find-image'.
103 Use this function only to make bindings in the global value of `tool-bar-map'.
104 To define items in any other map, use `tool-bar-local-item'."
105 (apply 'tool-bar-local-item icon def key tool-bar-map props))
107 ;;;###autoload
108 (defun tool-bar-local-item (icon def key map &rest props)
109 "Add an item to the tool bar in map MAP.
110 ICON names the image, DEF is the key definition and KEY is a symbol
111 for the fake function key in the menu keymap. Remaining arguments
112 PROPS are additional items to add to the menu item specification. See
113 Info node `(elisp)Tool Bar'. Items are added from left to right.
115 ICON is the base name of a file containing the image to use. The
116 function will first try to use lc-ICON.xpm if display-color-cells
117 is less or equal to 256, then ICON.xpm, then ICON.pbm, and finally
118 ICON.xbm, using `find-image'."
119 (let* ((fg (face-attribute 'tool-bar :foreground))
120 (bg (face-attribute 'tool-bar :background))
121 (colors (nconc (if (eq fg 'unspecified) nil (list :foreground fg))
122 (if (eq bg 'unspecified) nil (list :background bg))))
123 (xpm-spec (list :type 'xpm :file (concat icon ".xpm")))
124 (xpm-lo-spec (if (> (display-color-cells) 256)
126 (list :type 'xpm :file (concat "lc-" icon ".xpm"))))
127 (pbm-spec (append (list :type 'pbm :file (concat icon ".pbm")) colors))
128 (xbm-spec (append (list :type 'xbm :file (concat icon ".xbm")) colors))
129 (image (find-image
130 (if (display-color-p)
131 (list xpm-lo-spec xpm-spec pbm-spec xbm-spec)
132 (list pbm-spec xbm-spec xpm-lo-spec xpm-spec)))))
134 (when (and (display-images-p) image)
135 (unless (image-mask-p image)
136 (setq image (append image '(:mask heuristic))))
137 (define-key-after map (vector key)
138 `(menu-item ,(symbol-name key) ,def :image ,image ,@props)))))
140 ;;;###autoload
141 (defun tool-bar-add-item-from-menu (command icon &optional map &rest props)
142 "Define tool bar binding for COMMAND using the given ICON in keymap MAP.
143 This makes a binding for COMMAND in `tool-bar-map', copying its
144 binding from the menu bar in MAP (which defaults to `global-map'), but
145 modifies the binding by adding an image specification for ICON. It
146 finds ICON just like `tool-bar-add-item'. PROPS are additional
147 properties to add to the binding.
149 MAP must contain appropriate binding for `[menu-bar]' which holds a keymap.
151 Use this function only to make bindings in the global value of `tool-bar-map'.
152 To define items in any other map, use `tool-bar-local-item'."
153 (apply 'tool-bar-local-item-from-menu command icon
154 (default-value 'tool-bar-map) map props))
156 ;;;###autoload
157 (defun tool-bar-local-item-from-menu (command icon in-map &optional from-map &rest props)
158 "Define tool bar binding for COMMAND using the given ICON in keymap MAP.
159 This makes a binding for COMMAND in IN-MAP, copying its binding from
160 the menu bar in FROM-MAP (which defaults to `global-map'), but
161 modifies the binding by adding an image specification for ICON. It
162 finds ICON just like `tool-bar-add-item'. PROPS are additional
163 properties to add to the binding.
165 MAP must contain appropriate binding for `[menu-bar]' which holds a keymap."
166 (unless from-map
167 (setq from-map global-map))
168 (let* ((menu-bar-map (lookup-key from-map [menu-bar]))
169 (keys (where-is-internal command menu-bar-map))
170 (fg (face-attribute 'tool-bar :foreground))
171 (bg (face-attribute 'tool-bar :background))
172 (colors (nconc (if (eq fg 'unspecified) nil (list :foreground fg))
173 (if (eq bg 'unspecified) nil (list :background bg))))
174 (xpm-spec (list :type 'xpm :file (concat icon ".xpm")))
175 (xpm-lo-spec (if (> (display-color-cells) 256)
177 (list :type 'xpm :file (concat "lc-" icon ".xpm"))))
178 (pbm-spec (append (list :type 'pbm :file (concat icon ".pbm")) colors))
179 (xbm-spec (append (list :type 'xbm :file (concat icon ".xbm")) colors))
180 (spec (if (display-color-p)
181 (list xpm-lo-spec xpm-spec pbm-spec xbm-spec)
182 (list pbm-spec xbm-spec xpm-lo-spec xpm-spec)))
183 (image (find-image spec))
184 submap key)
185 (when (and (display-images-p) image)
186 ;; We'll pick up the last valid entry in the list of keys if
187 ;; there's more than one.
188 (dolist (k keys)
189 ;; We're looking for a binding of the command in a submap of
190 ;; the menu bar map, so the key sequence must be two or more
191 ;; long.
192 (if (and (vectorp k)
193 (> (length k) 1))
194 (let ((m (lookup-key menu-bar-map (substring k 0 -1)))
195 ;; Last element in the bound key sequence:
196 (kk (aref k (1- (length k)))))
197 (if (and (keymapp m)
198 (symbolp kk))
199 (setq submap m
200 key kk)))))
201 (when (and (symbolp submap) (boundp submap))
202 (setq submap (eval submap)))
203 (unless (image-mask-p image)
204 (setq image (append image '(:mask heuristic))))
205 (let ((defn (assq key (cdr submap))))
206 (if (eq (cadr defn) 'menu-item)
207 (define-key-after in-map (vector key)
208 (append (cdr defn) (list :image image) props))
209 (setq defn (cdr defn))
210 (define-key-after in-map (vector key)
211 (let ((rest (cdr defn)))
212 ;; If the rest of the definition starts
213 ;; with a list of menu cache info, get rid of that.
214 (if (and (consp rest) (consp (car rest)))
215 (setq rest (cdr rest)))
216 (append `(menu-item ,(car defn) ,rest)
217 (list :image image) props))))))))
219 ;;; Set up some global items. Additions/deletions up for grabs.
221 (defun tool-bar-setup ()
222 ;; People say it's bad to have EXIT on the tool bar, since users
223 ;; might inadvertently click that button.
224 ;;(tool-bar-add-item-from-menu 'save-buffers-kill-emacs "exit")
225 (tool-bar-add-item-from-menu 'find-file "new")
226 (tool-bar-add-item-from-menu 'find-file-existing "open")
227 (tool-bar-add-item-from-menu 'dired "diropen")
228 (tool-bar-add-item-from-menu 'kill-this-buffer "close")
229 (tool-bar-add-item-from-menu 'save-buffer "save" nil
230 :visible '(or buffer-file-name
231 (not (eq 'special
232 (get major-mode
233 'mode-class)))))
234 (tool-bar-add-item-from-menu 'write-file "saveas" nil
235 :visible '(or buffer-file-name
236 (not (eq 'special
237 (get major-mode
238 'mode-class)))))
239 (tool-bar-add-item-from-menu 'undo "undo" nil
240 :visible '(not (eq 'special (get major-mode
241 'mode-class))))
242 (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [cut])
243 "cut" nil
244 :visible '(not (eq 'special (get major-mode
245 'mode-class))))
246 (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [copy])
247 "copy")
248 (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [paste])
249 "paste" nil
250 :visible '(not (eq 'special (get major-mode
251 'mode-class))))
252 (tool-bar-add-item-from-menu 'nonincremental-search-forward "search")
253 ;;(tool-bar-add-item-from-menu 'ispell-buffer "spell")
255 ;; There's no icon appropriate for News and we need a command rather
256 ;; than a lambda for Read Mail.
257 ;;(tool-bar-add-item-from-menu 'compose-mail "mail_compose")
259 (tool-bar-add-item-from-menu 'print-buffer "print")
260 (tool-bar-add-item "preferences" 'customize 'customize
261 :help "Edit preferences (customize)")
263 (tool-bar-add-item "help" (lambda ()
264 (interactive)
265 (popup-menu menu-bar-help-menu))
266 'help
267 :help "Pop up the Help menu")
270 (provide 'tool-bar)
272 ;;; arch-tag: 15f30f0a-d0d7-4d50-bbb7-f48fd0c8582f
273 ;;; tool-bar.el ends here