Variable: preview-icon-specs

preview-icon-specs is a customizable variable defined in preview.el.

Value

((:type xpm :min 24 :file "prvtex24.xpm" :ascent 75)
 (:type xpm :min 20 :file "prvtex20.xpm" :ascent 75)
 (:type xpm :min 16 :file "prvtex16.xpm" :ascent 75)
 (:type xpm :file "prvtex12.xpm" :ascent 75)
 (:type xbm :min 24 :file "prvtex24.xbm" :ascent 75)
 (:type xbm :min 16 :file "prvtex16.xbm" :ascent 75)
 (:type xbm :file "prvtex12.xbm" :ascent 75))

Documentation

The icon used for an open preview.

The spec must begin with :type. File names are relative to load-path and data-directory, a spec :min requires a minimal pixel height for preview-reference-face before the spec will be considered. Since evaluating the :file spec takes considerable time under XEmacs, it should come after the :min spec to avoid unnecessary evaluation time.

Source Code

;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/preview.el
(defcustom preview-icon-specs
  '((:type xpm :min 24 :file "prvtex24.xpm" :ascent 75)
    (:type xpm :min 20 :file "prvtex20.xpm" :ascent 75)
    (:type xpm :min 16 :file "prvtex16.xpm" :ascent 75)
    (:type xpm         :file "prvtex12.xpm" :ascent 75)
    (:type xbm :min 24 :file "prvtex24.xbm" :ascent 75)
    (:type xbm :min 16 :file "prvtex16.xbm" :ascent 75)
    (:type xbm         :file "prvtex12.xbm" :ascent 75))
  "The icon used for an open preview.
The spec must begin with `:type'.  File names are relative to
`load-path' and `data-directory', a spec `:min' requires a
minimal pixel height for `preview-reference-face' before the spec
will be considered.  Since evaluating the `:file' spec takes
considerable time under XEmacs, it should come after the `:min'
spec to avoid unnecessary evaluation time."
  :group 'preview-appearance
  :type preview-specs-type
  :set #'preview-specs-setter)