annotate lisp/toolbar/tool-bar.el @ 66153:e2fa815b43c1

(Quitting): Minor clarification.
author Richard M. Stallman <rms@gnu.org>
date Mon, 17 Oct 2005 16:19:56 +0000
parents 34bd8e434dd7
children edf295560b5a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38436
b174db545cfd Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents: 38144
diff changeset
1 ;;; tool-bar.el --- setting up the tool bar
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
2 ;;
64701
34bd8e434dd7 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64091
diff changeset
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004,
34bd8e434dd7 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64091
diff changeset
4 ;; 2005 Free Software Foundation, Inc.
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
5 ;;
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
6 ;; Author: Dave Love <fx@gnu.org>
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
7 ;; Keywords: mouse frames
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
8
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
10
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
14 ;; any later version.
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
15
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
20
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
64091
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 62442
diff changeset
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 62442
diff changeset
24 ;; Boston, MA 02110-1301, USA.
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
25
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
26 ;;; Commentary:
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
27
45935
7ac43b3204b0 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 45133
diff changeset
28 ;; Provides `tool-bar-mode' to control display of the tool-bar and
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
29 ;; bindings for the global tool bar with convenience functions
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
30 ;; `tool-bar-add-item' and `tool-bar-add-item-from-menu'.
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
31
32285
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
32 ;; The normal global binding for [tool-bar] (below) uses the value of
33574
b470e0e05721 comment fix
Dave Love <fx@gnu.org>
parents: 33201
diff changeset
33 ;; `tool-bar-map' as the actual keymap to define the tool bar. Modes
b470e0e05721 comment fix
Dave Love <fx@gnu.org>
parents: 33201
diff changeset
34 ;; may either bind items under the [tool-bar] prefix key of the local
b470e0e05721 comment fix
Dave Love <fx@gnu.org>
parents: 33201
diff changeset
35 ;; map to add to the global bar or may set `tool-bar-map'
32382
2c430e11f471 Fix a typo.
Eli Zaretskii <eliz@gnu.org>
parents: 32358
diff changeset
36 ;; buffer-locally to override it. (Some items are removed from the
32285
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
37 ;; global bar in modes which have `special' as their `mode-class'
44153
3db8348dbbfa Fix typo in commentary.
Juanma Barranquero <lekktu@gmail.com>
parents: 43445
diff changeset
38 ;; property.)
32285
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
39
32331
d1c0cf83e365 (tool-bar-mode): Check whether tool-bar-map
Dave Love <fx@gnu.org>
parents: 32285
diff changeset
40 ;; Todo: Somehow make tool bars easily customizable by the naive?
d1c0cf83e365 (tool-bar-mode): Check whether tool-bar-map
Dave Love <fx@gnu.org>
parents: 32285
diff changeset
41
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
42 ;;; Code:
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
43
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
44 ;;;###autoload
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
45 (define-minor-mode tool-bar-mode
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
46 "Toggle use of the tool bar.
34004
423ccdfa2db5 (tool-bar-mode): Doc fix.
Gerd Moellmann <gerd@gnu.org>
parents: 33895
diff changeset
47 With numeric ARG, display the tool bar if and only if ARG is positive.
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
48
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
49 See `tool-bar-add-item' and `tool-bar-add-item-from-menu' for
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
50 conveniently adding tool bar items."
43445
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
51 :init-value nil
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
52 :global t
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
53 :group 'mouse
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
54 :group 'frames
39019
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
55 (and (display-images-p)
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
56 (let ((lines (if tool-bar-mode 1 0)))
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
57 ;; Alter existing frames...
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
58 (mapc (lambda (frame)
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
59 (modify-frame-parameters frame
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
60 (list (cons 'tool-bar-lines lines))))
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
61 (frame-list))
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
62 ;; ...and future ones.
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
63 (let ((elt (assq 'tool-bar-lines default-frame-alist)))
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
64 (if elt
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
65 (setcdr elt lines)
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
66 (add-to-list 'default-frame-alist (cons 'tool-bar-lines lines)))))
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
67 (if (and tool-bar-mode
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
68 (display-graphic-p)
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
69 (= 1 (length (default-value 'tool-bar-map)))) ; not yet setup
a9bd717014f0 (tool-bar-mode): Make it a no-op if images
Eli Zaretskii <eliz@gnu.org>
parents: 38698
diff changeset
70 (tool-bar-setup))))
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
71
43445
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
72 ;;;###autoload
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
73 ;; We want to pretend the toolbar by standard is on, as this will make
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
74 ;; customize consider disabling the toolbar a customization, and save
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
75 ;; that. We could do this for real by setting :init-value above, but
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
76 ;; that would turn on the toolbar in MS Windows where it is currently
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
77 ;; useless, and it would overwrite disabling the tool bar from X
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
78 ;; resources. If anyone want to implement this in a cleaner way,
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
79 ;; please do so.
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
80 ;; -- Per Abrahamsen <abraham@dina.kvl.dk> 2002-02-21.
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
81 (put 'tool-bar-mode 'standard-value '(t))
2fca4318df9a 2002-02-21 Per Abrahamsen <abraham@dina.kvl.dk>
Per Abrahamsen <abraham@dina.kvl.dk>
parents: 43412
diff changeset
82
32285
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
83 (defvar tool-bar-map (make-sparse-keymap)
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
84 "Keymap for the tool bar.
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
85 Define this locally to override the global tool bar.")
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
86
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
87 (global-set-key [tool-bar]
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
88 '(menu-item "tool bar" ignore
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
89 :filter (lambda (ignore) tool-bar-map)))
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
90
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
91 ;;;###autoload
32285
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
92 (defun tool-bar-add-item (icon def key &rest props)
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
93 "Add an item to the tool bar.
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
94 ICON names the image, DEF is the key definition and KEY is a symbol
32285
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
95 for the fake function key in the menu keymap. Remaining arguments
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
96 PROPS are additional items to add to the menu item specification. See
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
97 Info node `(elisp)Tool Bar'. Items are added from left to right.
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
98
35764
0a2ba9c8fde1 (tool-bar-add-item): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 34019
diff changeset
99 ICON is the base name of a file containing the image to use. The
56000
84b465b3b4e2 Moved to lc-*.xpm
Jan Djärv <jan.h.d@swipnet.se>
parents: 55988
diff changeset
100 function will first try to use lc-ICON.xpm if display-color-cells
55988
2809c96660f4 Better documentation.
Jan Djärv <jan.h.d@swipnet.se>
parents: 55986
diff changeset
101 is less or equal to 256, then ICON.xpm, then ICON.pbm, and finally
35764
0a2ba9c8fde1 (tool-bar-add-item): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents: 34019
diff changeset
102 ICON.xbm, using `find-image'.
32285
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
103
44307
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
104 Use this function only to make bindings in the global value of `tool-bar-map'.
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
105 To define items in any other map, use `tool-bar-local-item'."
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
106 (apply 'tool-bar-local-item icon def key tool-bar-map props))
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
107
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
108 ;;;###autoload
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
109 (defun tool-bar-local-item (icon def key map &rest props)
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
110 "Add an item to the tool bar in map MAP.
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
111 ICON names the image, DEF is the key definition and KEY is a symbol
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
112 for the fake function key in the menu keymap. Remaining arguments
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
113 PROPS are additional items to add to the menu item specification. See
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
114 Info node `(elisp)Tool Bar'. Items are added from left to right.
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
115
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
116 ICON is the base name of a file containing the image to use. The
56000
84b465b3b4e2 Moved to lc-*.xpm
Jan Djärv <jan.h.d@swipnet.se>
parents: 55988
diff changeset
117 function will first try to use lc-ICON.xpm if display-color-cells
55988
2809c96660f4 Better documentation.
Jan Djärv <jan.h.d@swipnet.se>
parents: 55986
diff changeset
118 is less or equal to 256, then ICON.xpm, then ICON.pbm, and finally
44307
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
119 ICON.xbm, using `find-image'."
34019
3d6f9638e8e5 (tool-bar-add-item-from-menu): Use
Gerd Moellmann <gerd@gnu.org>
parents: 34004
diff changeset
120 (let* ((fg (face-attribute 'tool-bar :foreground))
3d6f9638e8e5 (tool-bar-add-item-from-menu): Use
Gerd Moellmann <gerd@gnu.org>
parents: 34004
diff changeset
121 (bg (face-attribute 'tool-bar :background))
3d6f9638e8e5 (tool-bar-add-item-from-menu): Use
Gerd Moellmann <gerd@gnu.org>
parents: 34004
diff changeset
122 (colors (nconc (if (eq fg 'unspecified) nil (list :foreground fg))
3d6f9638e8e5 (tool-bar-add-item-from-menu): Use
Gerd Moellmann <gerd@gnu.org>
parents: 34004
diff changeset
123 (if (eq bg 'unspecified) nil (list :background bg))))
55986
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
124 (xpm-spec (list :type 'xpm :file (concat icon ".xpm")))
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
125 (xpm-lo-spec (if (> (display-color-cells) 256)
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
126 nil
56000
84b465b3b4e2 Moved to lc-*.xpm
Jan Djärv <jan.h.d@swipnet.se>
parents: 55988
diff changeset
127 (list :type 'xpm :file (concat "lc-" icon ".xpm"))))
55986
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
128 (pbm-spec (append (list :type 'pbm :file (concat icon ".pbm")) colors))
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
129 (xbm-spec (append (list :type 'xbm :file (concat icon ".xbm")) colors))
32788
5ed618d6e94c (tool-bar-add-item-from-menu)
Dave Love <fx@gnu.org>
parents: 32382
diff changeset
130 (image (find-image
32358
52dcf5ad6176 (tool-bar-add-item)
Dave Love <fx@gnu.org>
parents: 32340
diff changeset
131 (if (display-color-p)
55986
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
132 (list xpm-lo-spec xpm-spec pbm-spec xbm-spec)
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
133 (list pbm-spec xbm-spec xpm-lo-spec xpm-spec)))))
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
134
38470
b8361f155685 (tool-bar-add-item-from-menu, tool-bar-add-item): Don't call image-related
Eli Zaretskii <eliz@gnu.org>
parents: 38436
diff changeset
135 (when (and (display-images-p) image)
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
136 (unless (image-mask-p image)
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
137 (setq image (append image '(:mask heuristic))))
44307
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
138 (define-key-after map (vector key)
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
139 `(menu-item ,(symbol-name key) ,def :image ,image ,@props)))))
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
140
32340
97bfc5c6e1c1 (tool-bar-add-item-from-menu): Add autoload cookie.
Dave Love <fx@gnu.org>
parents: 32331
diff changeset
141 ;;;###autoload
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
142 (defun tool-bar-add-item-from-menu (command icon &optional map &rest props)
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
143 "Define tool bar binding for COMMAND using the given ICON in keymap MAP.
44307
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
144 This makes a binding for COMMAND in `tool-bar-map', copying its
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
145 binding from the menu bar in MAP (which defaults to `global-map'), but
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
146 modifies the binding by adding an image specification for ICON. It
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
147 finds ICON just like `tool-bar-add-item'. PROPS are additional
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
148 properties to add to the binding.
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
149
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
150 MAP must contain appropriate binding for `[menu-bar]' which holds a keymap.
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
151
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
152 Use this function only to make bindings in the global value of `tool-bar-map'.
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
153 To define items in any other map, use `tool-bar-local-item'."
46483
7350385eb42a (tool-bar-add-item-from-menu): Make sure to change the global tool-bar-map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 45935
diff changeset
154 (apply 'tool-bar-local-item-from-menu command icon
7350385eb42a (tool-bar-add-item-from-menu): Make sure to change the global tool-bar-map.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 45935
diff changeset
155 (default-value 'tool-bar-map) map props))
32285
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
156
44307
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
157 ;;;###autoload
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
158 (defun tool-bar-local-item-from-menu (command icon in-map &optional from-map &rest props)
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
159 "Define tool bar binding for COMMAND using the given ICON in keymap MAP.
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
160 This makes a binding for COMMAND in IN-MAP, copying its binding from
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
161 the menu bar in FROM-MAP (which defaults to `global-map'), but
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
162 modifies the binding by adding an image specification for ICON. It
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
163 finds ICON just like `tool-bar-add-item'. PROPS are additional
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
164 properties to add to the binding.
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
165
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
166 MAP must contain appropriate binding for `[menu-bar]' which holds a keymap."
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
167 (unless from-map
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
168 (setq from-map global-map))
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
169 (let* ((menu-bar-map (lookup-key from-map [menu-bar]))
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
170 (keys (where-is-internal command menu-bar-map))
34019
3d6f9638e8e5 (tool-bar-add-item-from-menu): Use
Gerd Moellmann <gerd@gnu.org>
parents: 34004
diff changeset
171 (fg (face-attribute 'tool-bar :foreground))
3d6f9638e8e5 (tool-bar-add-item-from-menu): Use
Gerd Moellmann <gerd@gnu.org>
parents: 34004
diff changeset
172 (bg (face-attribute 'tool-bar :background))
3d6f9638e8e5 (tool-bar-add-item-from-menu): Use
Gerd Moellmann <gerd@gnu.org>
parents: 34004
diff changeset
173 (colors (nconc (if (eq fg 'unspecified) nil (list :foreground fg))
3d6f9638e8e5 (tool-bar-add-item-from-menu): Use
Gerd Moellmann <gerd@gnu.org>
parents: 34004
diff changeset
174 (if (eq bg 'unspecified) nil (list :background bg))))
55986
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
175 (xpm-spec (list :type 'xpm :file (concat icon ".xpm")))
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
176 (xpm-lo-spec (if (> (display-color-cells) 256)
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
177 nil
56000
84b465b3b4e2 Moved to lc-*.xpm
Jan Djärv <jan.h.d@swipnet.se>
parents: 55988
diff changeset
178 (list :type 'xpm :file (concat "lc-" icon ".xpm"))))
55986
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
179 (pbm-spec (append (list :type 'pbm :file (concat icon ".pbm")) colors))
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
180 (xbm-spec (append (list :type 'xbm :file (concat icon ".xbm")) colors))
33895
3683396305bc (tool-bar-add-item-from-menu): Handle case
Gerd Moellmann <gerd@gnu.org>
parents: 33574
diff changeset
181 (spec (if (display-color-p)
55986
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
182 (list xpm-lo-spec xpm-spec pbm-spec xbm-spec)
49f0c8a3942a * toolbar/tool-bar.el (tool-bar-local-item)
Jan Djärv <jan.h.d@swipnet.se>
parents: 55345
diff changeset
183 (list pbm-spec xbm-spec xpm-lo-spec xpm-spec)))
33895
3683396305bc (tool-bar-add-item-from-menu): Handle case
Gerd Moellmann <gerd@gnu.org>
parents: 33574
diff changeset
184 (image (find-image spec))
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
185 submap key)
38470
b8361f155685 (tool-bar-add-item-from-menu, tool-bar-add-item): Don't call image-related
Eli Zaretskii <eliz@gnu.org>
parents: 38436
diff changeset
186 (when (and (display-images-p) image)
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
187 ;; We'll pick up the last valid entry in the list of keys if
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
188 ;; there's more than one.
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
189 (dolist (k keys)
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
190 ;; We're looking for a binding of the command in a submap of
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
191 ;; the menu bar map, so the key sequence must be two or more
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
192 ;; long.
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
193 (if (and (vectorp k)
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
194 (> (length k) 1))
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
195 (let ((m (lookup-key menu-bar-map (substring k 0 -1)))
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
196 ;; Last element in the bound key sequence:
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
197 (kk (aref k (1- (length k)))))
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
198 (if (and (keymapp m)
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
199 (symbolp kk))
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
200 (setq submap m
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
201 key kk)))))
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
202 (when (and (symbolp submap) (boundp submap))
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
203 (setq submap (eval submap)))
31751
3c4b8a33fed9 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
Miles Bader <miles@gnu.org>
parents: 31738
diff changeset
204 (unless (image-mask-p image)
3c4b8a33fed9 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
Miles Bader <miles@gnu.org>
parents: 31738
diff changeset
205 (setq image (append image '(:mask heuristic))))
38698
0d7cddbc0fa7 (tool-bar-add-item-from-menu): Handle
Gerd Moellmann <gerd@gnu.org>
parents: 38470
diff changeset
206 (let ((defn (assq key (cdr submap))))
0d7cddbc0fa7 (tool-bar-add-item-from-menu): Handle
Gerd Moellmann <gerd@gnu.org>
parents: 38470
diff changeset
207 (if (eq (cadr defn) 'menu-item)
44307
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
208 (define-key-after in-map (vector key)
38698
0d7cddbc0fa7 (tool-bar-add-item-from-menu): Handle
Gerd Moellmann <gerd@gnu.org>
parents: 38470
diff changeset
209 (append (cdr defn) (list :image image) props))
0d7cddbc0fa7 (tool-bar-add-item-from-menu): Handle
Gerd Moellmann <gerd@gnu.org>
parents: 38470
diff changeset
210 (setq defn (cdr defn))
44307
62bd2c6cd91f (tool-bar-local-item): Renamed from tool-bar-add-item, and new arg MAP.
Richard M. Stallman <rms@gnu.org>
parents: 44153
diff changeset
211 (define-key-after in-map (vector key)
45133
1fa9ceaa1c5f (tool-bar-local-item-from-menu): Handle both cases: when the menu item
Richard M. Stallman <rms@gnu.org>
parents: 44670
diff changeset
212 (let ((rest (cdr defn)))
1fa9ceaa1c5f (tool-bar-local-item-from-menu): Handle both cases: when the menu item
Richard M. Stallman <rms@gnu.org>
parents: 44670
diff changeset
213 ;; If the rest of the definition starts
1fa9ceaa1c5f (tool-bar-local-item-from-menu): Handle both cases: when the menu item
Richard M. Stallman <rms@gnu.org>
parents: 44670
diff changeset
214 ;; with a list of menu cache info, get rid of that.
1fa9ceaa1c5f (tool-bar-local-item-from-menu): Handle both cases: when the menu item
Richard M. Stallman <rms@gnu.org>
parents: 44670
diff changeset
215 (if (and (consp rest) (consp (car rest)))
1fa9ceaa1c5f (tool-bar-local-item-from-menu): Handle both cases: when the menu item
Richard M. Stallman <rms@gnu.org>
parents: 44670
diff changeset
216 (setq rest (cdr rest)))
1fa9ceaa1c5f (tool-bar-local-item-from-menu): Handle both cases: when the menu item
Richard M. Stallman <rms@gnu.org>
parents: 44670
diff changeset
217 (append `(menu-item ,(car defn) ,rest)
1fa9ceaa1c5f (tool-bar-local-item-from-menu): Handle both cases: when the menu item
Richard M. Stallman <rms@gnu.org>
parents: 44670
diff changeset
218 (list :image image) props))))))))
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
219
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
220 ;;; Set up some global items. Additions/deletions up for grabs.
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
221
32124
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
222 (defun tool-bar-setup ()
38144
ef9d470d0fd1 (tool-bar-setup): Remove the EXIT button.
Eli Zaretskii <eliz@gnu.org>
parents: 36715
diff changeset
223 ;; People say it's bad to have EXIT on the tool bar, since users
ef9d470d0fd1 (tool-bar-setup): Remove the EXIT button.
Eli Zaretskii <eliz@gnu.org>
parents: 36715
diff changeset
224 ;; might inadvertently click that button.
ef9d470d0fd1 (tool-bar-setup): Remove the EXIT button.
Eli Zaretskii <eliz@gnu.org>
parents: 36715
diff changeset
225 ;;(tool-bar-add-item-from-menu 'save-buffers-kill-emacs "exit")
32124
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
226 (tool-bar-add-item-from-menu 'find-file "new")
57866
c7e565aa7305 * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses
Jan Djärv <jan.h.d@swipnet.se>
parents: 56000
diff changeset
227 (tool-bar-add-item-from-menu 'find-file-existing "open")
c7e565aa7305 * toolbar/tool-bar.el (tool-bar-setup): Tool bar item dired uses
Jan Djärv <jan.h.d@swipnet.se>
parents: 56000
diff changeset
228 (tool-bar-add-item-from-menu 'dired "diropen")
32124
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
229 (tool-bar-add-item-from-menu 'kill-this-buffer "close")
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
230 (tool-bar-add-item-from-menu 'save-buffer "save" nil
36715
2b98ff02ebaf (tool-bar-setup): Don't suppress write-file
Dave Love <fx@gnu.org>
parents: 35764
diff changeset
231 :visible '(or buffer-file-name
2b98ff02ebaf (tool-bar-setup): Don't suppress write-file
Dave Love <fx@gnu.org>
parents: 35764
diff changeset
232 (not (eq 'special
2b98ff02ebaf (tool-bar-setup): Don't suppress write-file
Dave Love <fx@gnu.org>
parents: 35764
diff changeset
233 (get major-mode
2b98ff02ebaf (tool-bar-setup): Don't suppress write-file
Dave Love <fx@gnu.org>
parents: 35764
diff changeset
234 'mode-class)))))
32124
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
235 (tool-bar-add-item-from-menu 'write-file "saveas" nil
36715
2b98ff02ebaf (tool-bar-setup): Don't suppress write-file
Dave Love <fx@gnu.org>
parents: 35764
diff changeset
236 :visible '(or buffer-file-name
2b98ff02ebaf (tool-bar-setup): Don't suppress write-file
Dave Love <fx@gnu.org>
parents: 35764
diff changeset
237 (not (eq 'special
2b98ff02ebaf (tool-bar-setup): Don't suppress write-file
Dave Love <fx@gnu.org>
parents: 35764
diff changeset
238 (get major-mode
2b98ff02ebaf (tool-bar-setup): Don't suppress write-file
Dave Love <fx@gnu.org>
parents: 35764
diff changeset
239 'mode-class)))))
32124
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
240 (tool-bar-add-item-from-menu 'undo "undo" nil
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
241 :visible '(not (eq 'special (get major-mode
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
242 'mode-class))))
55345
6dd3315d02d4 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
243 (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [cut])
6dd3315d02d4 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
244 "cut" nil
32124
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
245 :visible '(not (eq 'special (get major-mode
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
246 'mode-class))))
55345
6dd3315d02d4 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
247 (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [copy])
6dd3315d02d4 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
248 "copy")
6dd3315d02d4 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
249 (tool-bar-add-item-from-menu (lookup-key menu-bar-edit-menu [paste])
6dd3315d02d4 * toolbar/tool-bar.el (tool-bar-setup): Use lookup-key for
Jan Djärv <jan.h.d@swipnet.se>
parents: 52401
diff changeset
250 "paste" nil
32124
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
251 :visible '(not (eq 'special (get major-mode
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
252 'mode-class))))
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
253 (tool-bar-add-item-from-menu 'nonincremental-search-forward "search")
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
254 ;;(tool-bar-add-item-from-menu 'ispell-buffer "spell")
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
255
32124
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
256 ;; There's no icon appropriate for News and we need a command rather
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
257 ;; than a lambda for Read Mail.
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
258 ;;(tool-bar-add-item-from-menu 'compose-mail "mail_compose")
31895
6d04db7a9256 (tool-bar-help): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31751
diff changeset
259
32124
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
260 (tool-bar-add-item-from-menu 'print-buffer "print")
32285
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
261 (tool-bar-add-item "preferences" 'customize 'customize
32124
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
262 :help "Edit preferences (customize)")
31895
6d04db7a9256 (tool-bar-help): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 31751
diff changeset
263
32285
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
264 (tool-bar-add-item "help" (lambda ()
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
265 (interactive)
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
266 (popup-menu menu-bar-help-menu))
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
267 'help
4763231809cd (tool-bar-map): Define it empty.
Dave Love <fx@gnu.org>
parents: 32124
diff changeset
268 :help "Pop up the Help menu")
32124
5554c8f22e37 (tool-bar-setup): New function.
Dave Love <fx@gnu.org>
parents: 31921
diff changeset
269 )
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
270
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
271 (provide 'tool-bar)
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
272
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 46483
diff changeset
273 ;;; arch-tag: 15f30f0a-d0d7-4d50-bbb7-f48fd0c8582f
31738
e8458588eb55 Renamed from toolbar.el. Change `toolbar'
Dave Love <fx@gnu.org>
parents:
diff changeset
274 ;;; tool-bar.el ends here