(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / lisp / iimage.el
blob32f6aef9abd4eb3f8f39e6d7e8134ae1a5ef804d
1 ;;; iimage.el --- Inline image minor mode.
3 ;; Copyright (C) 2004, 2005 Free Software Foundation
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 2, or (at your option)
14 ;; any later version.
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., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Commentary:
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]]
49 ;;; Code:
51 (eval-when-compile
52 (require 'image-file))
54 (defgroup iimage nil
55 "Support for inline images."
56 :version "22.1"
57 :group 'image)
59 (defconst iimage-version "1.1")
60 (defvar iimage-mode nil)
61 (defvar iimage-mode-map nil)
63 ;; Set up key map.
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."
70 (interactive "P")
71 (iimage-mode-buffer 0)
72 (iimage-mode-buffer 1)
73 (recenter arg))
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)
80 t)))
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 image filename regex exsamples:
91 file://foo.png
92 `file://foo.png'
93 \\[\\[foo.gif]]
94 <foo.png>
95 foo.JPG
98 (defvar iimage-mode-image-search-path nil
99 "*List of directories to search for image files for iimage-mode.")
101 ;;;###autoload
102 (defun turn-on-iimage-mode ()
103 "Unconditionally turn on iimage mode."
104 (interactive)
105 (iimage-mode 1))
107 (defun turn-off-iimage-mode ()
108 "Unconditionally turn off iimage mode."
109 (interactive)
110 (iimage-mode 0))
112 ;; Emacs21.3 or earlier does not heve locate-file.
113 (if (fboundp 'locate-file)
114 (defalias 'iimage-locate-file 'locate-file)
115 (defun iimage-locate-file (filename path)
116 (locate-library filename t path)))
118 (defun iimage-mode-buffer (arg)
119 "Display/Undisplay Images.
120 With numeric ARG, display the images if and only if ARG is positive."
121 (interactive)
122 (let ((ing (if (numberp arg)
123 (> arg 0)
124 iimage-mode))
125 (modp (buffer-modified-p (current-buffer)))
126 file buffer-read-only)
127 (save-excursion
128 (goto-char (point-min))
129 (dolist (pair iimage-mode-image-regex-alist)
130 (while (re-search-forward (car pair) nil t)
131 (if (and (setq file (match-string (cdr pair)))
132 (setq file (iimage-locate-file file
133 (cons default-directory
134 iimage-mode-image-search-path))))
135 (if ing
136 (add-text-properties (match-beginning 0) (match-end 0)
137 (list 'display (create-image file)))
138 (remove-text-properties (match-beginning 0) (match-end 0)
139 '(display)))))))
140 (set-buffer-modified-p modp)))
142 ;;;###autoload
143 (define-minor-mode iimage-mode
144 "Toggle inline image minor mode."
145 :group 'iimage :lighter " iImg" :keymap iimage-mode-map
146 (run-hooks 'iimage-mode-hook)
147 (iimage-mode-buffer iimage-mode))
149 (provide 'iimage)
151 ;;; arch-tag: f6f8e29a-08f6-4a12-9496-51e67441ce65
152 ;;; iimage.el ends here