Variable: message-tool-bar-gnome

message-tool-bar-gnome is a customizable variable defined in message.el.gz.

Value

((ispell-message "spell" nil :vert-only t :visible
		 (not flyspell-mode))
 (flyspell-buffer "spell" t :vert-only t :visible flyspell-mode :help "Flyspell whole buffer")
 (message-send-and-exit "mail/send" t :label "Send")
 (message-dont-send "mail/save-draft")
 (mml-attach-file "attach" mml-mode-map :vert-only t)
 (mml-preview "mail/preview" mml-mode-map)
 (mml-secure-message-sign-encrypt "lock" mml-mode-map :visible nil)
 (message-insert-importance-high "important" nil :visible nil)
 (message-insert-importance-low "unimportant" nil :visible nil)
 (message-insert-disposition-notification-to "receipt" nil :visible nil))

Documentation

List of items for the message tool bar (GNOME style).

See gmm-tool-bar-from-list for details on the format of the list.

This variable was added, or its default value changed, in Emacs 23.1.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defcustom message-tool-bar-gnome
  '((ispell-message "spell" nil
		    :vert-only t
		    :visible (not flyspell-mode))
    (flyspell-buffer "spell" t
		     :vert-only t
		     :visible flyspell-mode
		     :help "Flyspell whole buffer")
    (message-send-and-exit "mail/send" t :label "Send")
    (message-dont-send "mail/save-draft")
    (mml-attach-file "attach" mml-mode-map :vert-only t)
    (mml-preview "mail/preview" mml-mode-map)
    (mml-secure-message-sign-encrypt "lock" mml-mode-map :visible nil)
    (message-insert-importance-high "important" nil :visible nil)
    (message-insert-importance-low "unimportant" nil :visible nil)
    (message-insert-disposition-notification-to "receipt" nil :visible nil))
  "List of items for the message tool bar (GNOME style).

See `gmm-tool-bar-from-list' for details on the format of the list."
  :type '(repeat gmm-tool-bar-item)
  :version "23.1" ;; No Gnus
  :initialize #'custom-initialize-default
  :set #'message-tool-bar-update
  :group 'message)