Mercurial > emacs
annotate lisp/iimage.el @ 104691:669c6df8c8b9
*** empty log message ***
author | Juri Linkov <juri@jurta.org> |
---|---|
date | Fri, 28 Aug 2009 23:49:32 +0000 |
parents | a9dc0e7c3f2b |
children | 1d1d5d9bd884 |
rev | line source |
---|---|
55525 | 1 ;;; iimage.el --- Inline image minor mode. |
2 | |
100908 | 3 ;; Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. |
55525 | 4 |
5 ;; Author: KOSEKI Yoshinori <kose@meadowy.org> | |
6 ;; Maintainer: KOSEKI Yoshinori <kose@meadowy.org> | |
7 ;; Keywords: multimedia | |
8 | |
9 ;; This file is part of GNU Emacs. | |
10 | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
11 ;; GNU Emacs is free software: you can redistribute it and/or modify |
55525 | 12 ;; it under the terms of the GNU General Public License as published by |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; the Free Software Foundation, either version 3 of the License, or |
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; (at your option) any later version. |
55525 | 15 |
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. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
94678
ee5932bf781d
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
55525 | 23 |
24 ;;; Commentary: | |
25 | |
56331
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
26 ;; Iimage is a minor mode that displays images, when image-filename |
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
27 ;; exists in the buffer. |
55525 | 28 ;; http://www.netlaputa.ne.jp/~kose/Emacs/iimage.html |
29 ;; | |
30 ;; Add to your `~/.emacs': | |
56331
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
31 ;; (autoload 'iimage-mode "iimage" "Support Inline image minor mode." t) |
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
32 ;; (autoload 'turn-on-iimage-mode "iimage" "Turn on Inline image minor mode." t) |
55525 | 33 ;; |
34 ;; ** Display images in *Info* buffer. | |
35 ;; | |
36 ;; (add-hook 'info-mode-hook 'turn-on-iimage-mode) | |
37 ;; | |
38 ;; .texinfo: @file{file://foo.png} | |
39 ;; .info: `file://foo.png' | |
40 ;; | |
41 ;; ** Display images in Wiki buffer. | |
42 ;; | |
43 ;; (add-hook 'wiki-mode-hook 'turn-on-iimage-mode) | |
44 ;; | |
45 ;; wiki-file: [[foo.png]] | |
46 | |
47 ;;; Code: | |
48 | |
49 (eval-when-compile | |
50 (require 'image-file)) | |
51 | |
61272
3933597e185e
(iimage): New customization group.
Lute Kamstra <lute@gnu.org>
parents:
56331
diff
changeset
|
52 (defgroup iimage nil |
3933597e185e
(iimage): New customization group.
Lute Kamstra <lute@gnu.org>
parents:
56331
diff
changeset
|
53 "Support for inline images." |
3933597e185e
(iimage): New customization group.
Lute Kamstra <lute@gnu.org>
parents:
56331
diff
changeset
|
54 :version "22.1" |
3933597e185e
(iimage): New customization group.
Lute Kamstra <lute@gnu.org>
parents:
56331
diff
changeset
|
55 :group 'image) |
3933597e185e
(iimage): New customization group.
Lute Kamstra <lute@gnu.org>
parents:
56331
diff
changeset
|
56 |
56331
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
57 (defconst iimage-version "1.1") |
55525 | 58 (defvar iimage-mode nil) |
59 (defvar iimage-mode-map nil) | |
60 | |
61 ;; Set up key map. | |
62 (unless iimage-mode-map | |
63 (setq iimage-mode-map (make-sparse-keymap)) | |
64 (define-key iimage-mode-map "\C-l" 'iimage-recenter)) | |
65 | |
66 (defun iimage-recenter (&optional arg) | |
67 "Re-draw images and recenter." | |
68 (interactive "P") | |
69 (iimage-mode-buffer 0) | |
70 (iimage-mode-buffer 1) | |
71 (recenter arg)) | |
72 | |
73 (defvar iimage-mode-image-filename-regex | |
74 (concat "[-+./_0-9a-zA-Z]+\\." | |
75 (regexp-opt (nconc (mapcar #'upcase | |
76 image-file-name-extensions) | |
77 image-file-name-extensions) | |
78 t))) | |
79 | |
80 (defvar iimage-mode-image-regex-alist | |
81 `((,(concat "\\(`?file://\\|\\[\\[\\|<\\|`\\)?" | |
82 "\\(" iimage-mode-image-filename-regex "\\)" | |
83 "\\(\\]\\]\\|>\\|'\\)?") . 2)) | |
84 "*Alist of filename REGEXP vs NUM. | |
85 Each element looks like (REGEXP . NUM). | |
86 NUM specifies which parenthesized expression in the regexp. | |
87 | |
74256
9b80e932389f
(iimage-mode-image-regex-alist): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
88 Examples of image filename regexps: |
55525 | 89 file://foo.png |
90 `file://foo.png' | |
91 \\[\\[foo.gif]] | |
92 <foo.png> | |
93 foo.JPG | |
94 ") | |
95 | |
56331
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
96 (defvar iimage-mode-image-search-path nil |
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
97 "*List of directories to search for image files for iimage-mode.") |
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
98 |
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
99 ;;;###autoload |
55525 | 100 (defun turn-on-iimage-mode () |
101 "Unconditionally turn on iimage mode." | |
102 (interactive) | |
103 (iimage-mode 1)) | |
104 | |
105 (defun turn-off-iimage-mode () | |
106 "Unconditionally turn off iimage mode." | |
107 (interactive) | |
108 (iimage-mode 0)) | |
109 | |
85825
13163bbed0bf
* progmodes/mixal-mode.el (mixal-run, mixal-debug): Call mixvm
Dan Nicolaescu <dann@ics.uci.edu>
parents:
78236
diff
changeset
|
110 (defalias 'iimage-locate-file 'locate-file) |
56331
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
111 |
55525 | 112 (defun iimage-mode-buffer (arg) |
74256
9b80e932389f
(iimage-mode-image-regex-alist): Doc fix.
Juanma Barranquero <lekktu@gmail.com>
parents:
68651
diff
changeset
|
113 "Display/undisplay images. |
55525 | 114 With numeric ARG, display the images if and only if ARG is positive." |
115 (interactive) | |
116 (let ((ing (if (numberp arg) | |
117 (> arg 0) | |
118 iimage-mode)) | |
119 (modp (buffer-modified-p (current-buffer))) | |
120 file buffer-read-only) | |
121 (save-excursion | |
122 (goto-char (point-min)) | |
123 (dolist (pair iimage-mode-image-regex-alist) | |
124 (while (re-search-forward (car pair) nil t) | |
125 (if (and (setq file (match-string (cdr pair))) | |
56331
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
126 (setq file (iimage-locate-file file |
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
127 (cons default-directory |
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
128 iimage-mode-image-search-path)))) |
55525 | 129 (if ing |
130 (add-text-properties (match-beginning 0) (match-end 0) | |
131 (list 'display (create-image file))) | |
132 (remove-text-properties (match-beginning 0) (match-end 0) | |
133 '(display))))))) | |
134 (set-buffer-modified-p modp))) | |
135 | |
56331
401149ed59c0
(turn-on-iimage-mode, iimage-mode): Add autoload cookies.
Eli Zaretskii <eliz@gnu.org>
parents:
55532
diff
changeset
|
136 ;;;###autoload |
55525 | 137 (define-minor-mode iimage-mode |
138 "Toggle inline image minor mode." | |
61272
3933597e185e
(iimage): New customization group.
Lute Kamstra <lute@gnu.org>
parents:
56331
diff
changeset
|
139 :group 'iimage :lighter " iImg" :keymap iimage-mode-map |
55525 | 140 (run-hooks 'iimage-mode-hook) |
141 (iimage-mode-buffer iimage-mode)) | |
142 | |
143 (provide 'iimage) | |
144 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
145 ;; arch-tag: f6f8e29a-08f6-4a12-9496-51e67441ce65 |
55525 | 146 ;;; iimage.el ends here |