Variable: dictionary-tool-bar-map

dictionary-tool-bar-map is a variable defined in dictionary.el.gz.

Value

<dired> <menu-bar-non-minibuffer-window-p>      nil
<kill-buffer> <kill-this-buffer-enabled-p>      nil
<new-file> <menu-bar-non-minibuffer-window-p>   nil
<open-file> <menu-bar-non-minibuffer-window-p>  nil
<separator-1>                                   nil

Documentation

Like the default tool-bar-map, but with additions for Dictionary mode.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Basic function providing startup actions
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

(defvar dictionary-tool-bar-map
  (let ((map (make-sparse-keymap)))
    ;; Most of these items are the same as in the default tool bar
    ;; map, but with extraneous items removed, and with extra search
    ;; and navigation items.
    (tool-bar-local-item-from-menu 'find-file "new" map
                                   nil :label "New File"
                                   :vert-only t)
    (tool-bar-local-item-from-menu 'menu-find-file-existing "open" map
                                   nil :label "Open" :vert-only t)
    (tool-bar-local-item-from-menu 'dired "diropen" map nil :vert-only t)
    (tool-bar-local-item-from-menu 'kill-this-buffer "close" map nil
                                   :vert-only t)
    (define-key-after map [separator-1] menu-bar-separator)
    (tool-bar-local-item-from-menu 'dictionary-search "search"
                                   map dictionary-mode-map :vert-only t
                                   :help "Start a new search query.")
    (tool-bar-local-item-from-menu 'dictionary-previous "left-arrow"
                                   map dictionary-mode-map
                                   :vert-only t
                                   :help "Go backwards in history.")
    map)
  "Like the default `tool-bar-map', but with additions for Dictionary mode.")