[TMP] enable load_prefer_newer
[bpt/emacs.git] / lisp / sb-image.el
CommitLineData
58bd8bf9
CY
1;;; sb-image --- Image management for speedbar
2
ba318903 3;; Copyright (C) 1999-2003, 2005-2014 Free Software Foundation, Inc.
58bd8bf9
CY
4
5;; Author: Eric M. Ludlam <zappo@gnu.org>
6;; Keywords: file, tags, tools
58bd8bf9
CY
7
8;; This file is part of GNU Emacs.
9
eb3fa2cf 10;; GNU Emacs is free software: you can redistribute it and/or modify
58bd8bf9 11;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
12;; the Free Software Foundation, either version 3 of the License, or
13;; (at your option) any later version.
58bd8bf9
CY
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
eb3fa2cf 21;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
58bd8bf9
CY
22
23;;; Commentary:
24;;
25;; Supporting Image display for Emacs 20 and less, Emacs 21, and XEmacs,
26;; is a challenging task, which doesn't take kindly to being byte compiled.
27;; When sharing speedbar.elc between these three applications, the Image
28;; support can get lost.
29;;
30;; By splitting out that hard part into this file, and avoiding byte
31;; compilation, one copy speedbar can support all these platforms together.
32;;
33;; This file requires the `image' package if it is available.
34
35(require 'ezimage)
36
37;;; Code:
38(defcustom speedbar-use-images ezimage-use-images
9201cc28 39 "Non-nil if speedbar should display icons."
58bd8bf9
CY
40 :group 'speedbar
41 :version "21.1"
42 :type 'boolean)
43
44(defalias 'defimage-speedbar 'defezimage)
45
46(defvar speedbar-expand-image-button-alist
47 '(("<+>" . ezimage-directory-plus)
48 ("<->" . ezimage-directory-minus)
49 ("< >" . ezimage-directory)
50 ("[+]" . ezimage-page-plus)
51 ("[-]" . ezimage-page-minus)
52 ("[?]" . ezimage-page)
53 ("[ ]" . ezimage-page)
54 ("{+}" . ezimage-box-plus)
55 ("{-}" . ezimage-box-minus)
56 ("<M>" . ezimage-mail)
57 ("<d>" . ezimage-document-tag)
58 ("<i>" . ezimage-info-tag)
59 (" =>" . ezimage-tag)
60 (" +>" . ezimage-tag-gt)
61 (" ->" . ezimage-tag-v)
62 (">" . ezimage-tag)
63 ("@" . ezimage-tag-type)
64 (" @" . ezimage-tag-type)
65 ("*" . ezimage-checkout)
66 ("#" . ezimage-object)
67 ("!" . ezimage-object-out-of-date)
68 ("//" . ezimage-label)
69 ("%" . ezimage-lock)
70 )
71 "List of text and image associations.")
72
73(defun speedbar-insert-image-button-maybe (start length)
74 "Insert an image button based on text starting at START for LENGTH chars.
75If buttontext is unknown, just insert that text.
76If we have an image associated with it, use that image."
77 (when speedbar-use-images
78 (let ((ezimage-expand-image-button-alist
79 speedbar-expand-image-button-alist))
80 (ezimage-insert-image-button-maybe start length))))
81
82(defun speedbar-image-dump ()
83 "Dump out the current state of the Speedbar image alist.
84See `speedbar-expand-image-button-alist' for details."
85 (interactive)
86 (with-output-to-temp-buffer "*Speedbar Images*"
7fdbcd83 87 (with-current-buffer "*Speedbar Images*"
58bd8bf9
CY
88 (goto-char (point-max))
89 (insert "Speedbar image cache.\n\n")
90 (let ((start (point)) (end nil))
91 (insert "Image\tText\tImage Name")
92 (setq end (point))
93 (insert "\n")
94 (put-text-property start end 'face 'underline))
95 (let ((ia speedbar-expand-image-button-alist))
96 (while ia
97 (let ((start (point)))
98 (insert (car (car ia)))
99 (insert "\t")
100 (speedbar-insert-image-button-maybe start
101 (length (car (car ia))))
102 (insert (car (car ia)) "\t" (format "%s" (cdr (car ia))) "\n"))
103 (setq ia (cdr ia)))))))
104
105(provide 'sb-image)
106
107;;; sb-image.el ends here