1 ;;; iimage.el --- Inline image minor mode.
3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
5 ;; Author: KOSEKI Yoshinori <kose@meadowy.org>
6 ;; Maintainer: KOSEKI Yoshinori <kose@meadowy.org>
7 ;; Keywords: multimedia
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 3, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
28 ;; Iimage is a minor mode that displays images, when image-filename
29 ;; exists in the buffer.
30 ;; http://www.netlaputa.ne.jp/~kose/Emacs/iimage.html
32 ;; Add to your `~/.emacs':
33 ;; (autoload 'iimage-mode "iimage" "Support Inline image minor mode." t)
34 ;; (autoload 'turn-on-iimage-mode "iimage" "Turn on Inline image minor mode." t)
36 ;; ** Display images in *Info* buffer.
38 ;; (add-hook 'info-mode-hook 'turn-on-iimage-mode)
40 ;; .texinfo: @file{file://foo.png}
41 ;; .info: `file://foo.png'
43 ;; ** Display images in Wiki buffer.
45 ;; (add-hook 'wiki-mode-hook 'turn-on-iimage-mode)
47 ;; wiki-file: [[foo.png]]
52 (require 'image-file
))
55 "Support for inline images."
59 (defconst iimage-version
"1.1")
60 (defvar iimage-mode nil
)
61 (defvar iimage-mode-map nil
)
64 (unless iimage-mode-map
65 (setq iimage-mode-map
(make-sparse-keymap))
66 (define-key iimage-mode-map
"\C-l" 'iimage-recenter
))
68 (defun iimage-recenter (&optional arg
)
69 "Re-draw images and recenter."
71 (iimage-mode-buffer 0)
72 (iimage-mode-buffer 1)
75 (defvar iimage-mode-image-filename-regex
76 (concat "[-+./_0-9a-zA-Z]+\\."
77 (regexp-opt (nconc (mapcar #'upcase
78 image-file-name-extensions
)
79 image-file-name-extensions
)
82 (defvar iimage-mode-image-regex-alist
83 `((,(concat "\\(`?file://\\|\\[\\[\\|<\\|`\\)?"
84 "\\(" iimage-mode-image-filename-regex
"\\)"
85 "\\(\\]\\]\\|>\\|'\\)?") .
2))
86 "*Alist of filename REGEXP vs NUM.
87 Each element looks like (REGEXP . NUM).
88 NUM specifies which parenthesized expression in the regexp.
90 Examples of image filename regexps:
98 (defvar iimage-mode-image-search-path nil
99 "*List of directories to search for image files for iimage-mode.")
102 (defun turn-on-iimage-mode ()
103 "Unconditionally turn on iimage mode."
107 (defun turn-off-iimage-mode ()
108 "Unconditionally turn off iimage mode."
112 (defalias 'iimage-locate-file
'locate-file
)
114 (defun iimage-mode-buffer (arg)
115 "Display/undisplay images.
116 With numeric ARG, display the images if and only if ARG is positive."
118 (let ((ing (if (numberp arg
)
121 (modp (buffer-modified-p (current-buffer)))
122 file buffer-read-only
)
124 (goto-char (point-min))
125 (dolist (pair iimage-mode-image-regex-alist
)
126 (while (re-search-forward (car pair
) nil t
)
127 (if (and (setq file
(match-string (cdr pair
)))
128 (setq file
(iimage-locate-file file
129 (cons default-directory
130 iimage-mode-image-search-path
))))
132 (add-text-properties (match-beginning 0) (match-end 0)
133 (list 'display
(create-image file
)))
134 (remove-text-properties (match-beginning 0) (match-end 0)
136 (set-buffer-modified-p modp
)))
139 (define-minor-mode iimage-mode
140 "Toggle inline image minor mode."
141 :group
'iimage
:lighter
" iImg" :keymap iimage-mode-map
142 (run-hooks 'iimage-mode-hook
)
143 (iimage-mode-buffer iimage-mode
))
147 ;;; arch-tag: f6f8e29a-08f6-4a12-9496-51e67441ce65
148 ;;; iimage.el ends here