summaryrefslogtreecommitdiff
path: root/lisp/toolbar/tool-bar.el
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2000-10-04 09:36:30 +0000
committerDave Love <fx@gnu.org>2000-10-04 09:36:30 +0000
commitebd4825d4a925bd53a99c6e81d6b3f4ccce97e85 (patch)
tree7e88b43db0b133840b13390f1734aec58658b06d /lisp/toolbar/tool-bar.el
parentddb62bf14ac8d0646c3ba609150e952d85b38ec4 (diff)
downloademacs-ebd4825d4a925bd53a99c6e81d6b3f4ccce97e85.tar.gz
(tool-bar-setup): New function.
(tool-bar-mode): Use it.
Diffstat (limited to 'lisp/toolbar/tool-bar.el')
-rw-r--r--lisp/toolbar/tool-bar.el89
1 files changed, 41 insertions, 48 deletions
diff --git a/lisp/toolbar/tool-bar.el b/lisp/toolbar/tool-bar.el
index 004a0a372c8..13ed0ed9c90 100644
--- a/lisp/toolbar/tool-bar.el
+++ b/lisp/toolbar/tool-bar.el
@@ -51,7 +51,9 @@ conveniently adding tool bar items."
(let ((elt (assq 'tool-bar-lines default-frame-alist)))
(if elt
(setcdr elt lines)
- (add-to-list 'default-frame-alist (cons 'tool-bar-lines lines))))))
+ (add-to-list 'default-frame-alist (cons 'tool-bar-lines lines)))))
+ (if (and tool-bar-mode (display-graphic-p))
+ (tool-bar-setup)))
(defvar tool-bar-global-map (let ((map (make-sparse-keymap)))
(global-set-key [tool-bar] map))
@@ -121,53 +123,44 @@ PROPS is a list of additional properties to add to the binding."
;;; Set up some global items. Additions/deletions up for grabs.
-(tool-bar-add-item-from-menu 'save-buffers-kill-emacs "exit")
-(tool-bar-add-item-from-menu 'find-file "new")
-(tool-bar-add-item-from-menu 'dired "open")
-(tool-bar-add-item-from-menu 'kill-this-buffer "close")
-(tool-bar-add-item-from-menu 'save-buffer "save" nil
- :visible '(not (eq 'special (get major-mode
- 'mode-class))))
-(tool-bar-add-item-from-menu 'write-file "saveas" nil
- :visible '(not (eq 'special (get major-mode
- 'mode-class))))
-(tool-bar-add-item-from-menu 'undo "undo" nil
- :visible '(not (eq 'special (get major-mode
- 'mode-class))))
-(tool-bar-add-item-from-menu 'kill-region "cut" nil
- :visible '(not (eq 'special (get major-mode
- 'mode-class))))
-(tool-bar-add-item-from-menu 'menu-bar-kill-ring-save "copy")
-(tool-bar-add-item-from-menu 'yank "paste" nil
- :visible '(not (eq 'special (get major-mode
- 'mode-class))))
-(tool-bar-add-item-from-menu 'nonincremental-search-forward "search")
-;;(tool-bar-add-item-from-menu 'ispell-buffer "spell")
-
-;; There's no icon appropriate for News and we need a command rather
-;; than a lambda for Read Mail.
-;;(tool-bar-add-item-from-menu 'compose-mail "mail_compose")
-
-(tool-bar-add-item-from-menu 'print-buffer "print")
-(tool-bar-add-item "preferences" 'customize 'customize nil
- :help "Edit preferences (customize)")
-
-(defun tool-bar-help ()
- "Pop up the help menu from the tool-bar."
- (interactive)
- (let* ((p (mouse-pixel-position))
- (menu menu-bar-help-menu)
- (selection (x-popup-menu (list (list (cadr p) (cddr p)) (car p))
- menu))
- binding)
- (while selection
- (setq binding (lookup-key (or binding menu) (vector (car selection)))
- selection (cdr selection)))
- (when binding
- (call-interactively binding))))
-
-(tool-bar-add-item "help" 'tool-bar-help
- 'help nil :help "Pop up the Help menu")
+(defun tool-bar-setup ()
+ (tool-bar-add-item-from-menu 'save-buffers-kill-emacs "exit")
+ (tool-bar-add-item-from-menu 'find-file "new")
+ (tool-bar-add-item-from-menu 'dired "open")
+ (tool-bar-add-item-from-menu 'kill-this-buffer "close")
+ (tool-bar-add-item-from-menu 'save-buffer "save" nil
+ :visible '(not (eq 'special (get major-mode
+ 'mode-class))))
+ (tool-bar-add-item-from-menu 'write-file "saveas" nil
+ :visible '(not (eq 'special (get major-mode
+ 'mode-class))))
+ (tool-bar-add-item-from-menu 'undo "undo" nil
+ :visible '(not (eq 'special (get major-mode
+ 'mode-class))))
+ (tool-bar-add-item-from-menu 'kill-region "cut" nil
+ :visible '(not (eq 'special (get major-mode
+ 'mode-class))))
+ (tool-bar-add-item-from-menu 'menu-bar-kill-ring-save "copy")
+ (tool-bar-add-item-from-menu 'yank "paste" nil
+ :visible '(not (eq 'special (get major-mode
+ 'mode-class))))
+ (tool-bar-add-item-from-menu 'nonincremental-search-forward "search")
+ ;;(tool-bar-add-item-from-menu 'ispell-buffer "spell")
+
+ ;; There's no icon appropriate for News and we need a command rather
+ ;; than a lambda for Read Mail.
+ ;;(tool-bar-add-item-from-menu 'compose-mail "mail_compose")
+
+ (tool-bar-add-item-from-menu 'print-buffer "print")
+ (tool-bar-add-item "preferences" 'customize 'customize nil
+ :help "Edit preferences (customize)")
+
+ (tool-bar-add-item "help"
+ (lambda ()
+ (interactive)
+ (popup-menu menu-bar-help-menu))
+ 'help nil :help "Pop up the Help menu")
+ )
(provide 'tool-bar)