Variable: window-tool-bar-style

window-tool-bar-style is a customizable variable defined in window-tool-bar.el.gz.

Value

image

Documentation

Tool bar style to use for window tool bars.

The meaning is the same as for tool-bar-style, which see. If set to the symbol tool-bar-style, then use the value of tool-bar-style instead.

When images cannot be displayed (see display-images-p), the value set here is ignored and the window tool bar displays text.

This variable was added, or its default value changed, in window-tool-bar version 0.3.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/window-tool-bar.el.gz
;;; Display styling:
(defcustom window-tool-bar-style 'image
  "Tool bar style to use for window tool bars.
The meaning is the same as for `tool-bar-style', which see.  If
set to the symbol `tool-bar-style', then use the value of
`tool-bar-style' instead.

When images cannot be displayed (see `display-images-p'), the value set
here is ignored and the window tool bar displays text."
  :type '(choice
          (const :tag "Images" :value image)
          (const :tag "Text" :value text)
          ;; This option would require multiple tool bar lines.
          ;;(const :tag "Both, text below image" :value both)
          (const :tag "Both, text to right of image" :value both-horiz)
          (const :tag "Both, text to left of image" :value text-image-horiz)
          (const :tag "Inherit tool-bar-style" :value tool-bar-style)
          (const :tag "System default" :value nil))
  :group 'window-tool-bar
  :package-version '(window-tool-bar . "0.3"))