Merge from emacs--rel--22, gnus--devo--0
[bpt/emacs.git] / lisp / image-mode.el
1 ;;; image-mode.el --- support for visiting image files
2 ;;
3 ;; Copyright (C) 2005, 2006, 2007 Free Software Foundation, Inc.
4 ;;
5 ;; Author: Richard Stallman <rms@gnu.org>
6 ;; Keywords: multimedia
7
8 ;; This file is part of GNU Emacs.
9
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 3, or (at your option)
13 ;; any later version.
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
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;; Defines a major mode for visiting image files
28 ;; that allows conversion between viewing the text of the file
29 ;; and viewing the file as an image. Viewing the image
30 ;; works by putting a `display' text-property on the
31 ;; image data, with the image-data still present underneath; if the
32 ;; resulting buffer file is saved to another name it will correctly save
33 ;; the image data to the new file.
34
35 ;;; Code:
36
37 (require 'image)
38
39 ;;;###autoload (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist)
40 ;;;###autoload (push '("\\.png\\'" . image-mode) auto-mode-alist)
41 ;;;###autoload (push '("\\.gif\\'" . image-mode) auto-mode-alist)
42 ;;;###autoload (push '("\\.tiff?\\'" . image-mode) auto-mode-alist)
43 ;;;###autoload (push '("\\.p[bpgn]m\\'" . image-mode) auto-mode-alist)
44
45 ;;;###autoload (push '("\\.x[bp]m\\'" . c-mode) auto-mode-alist)
46 ;;;###autoload (push '("\\.x[bp]m\\'" . image-mode-maybe) auto-mode-alist)
47
48 ;;;###autoload (push '("\\.svgz?\\'" . xml-mode) auto-mode-alist)
49 ;;;###autoload (push '("\\.svgz?\\'" . image-mode-maybe) auto-mode-alist)
50
51 ;;; Image scrolling functions
52
53 (defun image-forward-hscroll (&optional n)
54 "Scroll image in current window to the left by N character widths.
55 Stop if the right edge of the image is reached."
56 (interactive "p")
57 (cond ((= n 0) nil)
58 ((< n 0)
59 (set-window-hscroll (selected-window)
60 (max 0 (+ (window-hscroll) n))))
61 (t
62 (let* ((image (get-char-property (point-min) 'display))
63 (edges (window-inside-edges))
64 (win-width (- (nth 2 edges) (nth 0 edges)))
65 (img-width (ceiling (car (image-size image)))))
66 (set-window-hscroll (selected-window)
67 (min (max 0 (- img-width win-width))
68 (+ n (window-hscroll))))))))
69
70 (defun image-backward-hscroll (&optional n)
71 "Scroll image in current window to the right by N character widths.
72 Stop if the left edge of the image is reached."
73 (interactive "p")
74 (image-forward-hscroll (- n)))
75
76 (defun image-next-line (&optional n)
77 "Scroll image in current window upward by N lines.
78 Stop if the bottom edge of the image is reached."
79 (interactive "p")
80 (cond ((= n 0) nil)
81 ((< n 0)
82 (set-window-vscroll (selected-window)
83 (max 0 (+ (window-vscroll) n))))
84 (t
85 (let* ((image (get-char-property (point-min) 'display))
86 (edges (window-inside-edges))
87 (win-height (- (nth 3 edges) (nth 1 edges)))
88 (img-height (ceiling (cdr (image-size image)))))
89 (set-window-vscroll (selected-window)
90 (min (max 0 (- img-height win-height))
91 (+ n (window-vscroll))))))))
92
93 (defun image-previous-line (&optional n)
94 "Scroll image in current window downward by N lines.
95 Stop if the top edge of the image is reached."
96 (interactive "p")
97 (image-next-line (- n)))
98
99 (defun image-scroll-up (&optional n)
100 "Scroll image in current window upward by N lines.
101 Stop if the bottom edge of the image is reached.
102 If ARG is omitted or nil, scroll upward by a near full screen.
103 A near full screen is `next-screen-context-lines' less than a full screen.
104 Negative ARG means scroll downward.
105 If ARG is the atom `-', scroll downward by nearly full screen.
106 When calling from a program, supply as argument a number, nil, or `-'."
107 (interactive "P")
108 (cond ((null n)
109 (let* ((edges (window-inside-edges))
110 (win-height (- (nth 3 edges) (nth 1 edges))))
111 (image-next-line
112 (max 0 (- win-height next-screen-context-lines)))))
113 ((eq n '-)
114 (let* ((edges (window-inside-edges))
115 (win-height (- (nth 3 edges) (nth 1 edges))))
116 (image-next-line
117 (min 0 (- next-screen-context-lines win-height)))))
118 (t (image-next-line (prefix-numeric-value n)))))
119
120 (defun image-scroll-down (&optional n)
121 "Scroll image in current window downward by N lines
122 Stop if the top edge of the image is reached.
123 If ARG is omitted or nil, scroll downward by a near full screen.
124 A near full screen is `next-screen-context-lines' less than a full screen.
125 Negative ARG means scroll upward.
126 If ARG is the atom `-', scroll upward by nearly full screen.
127 When calling from a program, supply as argument a number, nil, or `-'."
128 (interactive "P")
129 (cond ((null n)
130 (let* ((edges (window-inside-edges))
131 (win-height (- (nth 3 edges) (nth 1 edges))))
132 (image-next-line
133 (min 0 (- next-screen-context-lines win-height)))))
134 ((eq n '-)
135 (let* ((edges (window-inside-edges))
136 (win-height (- (nth 3 edges) (nth 1 edges))))
137 (image-next-line
138 (max 0 (- win-height next-screen-context-lines)))))
139 (t (image-next-line (- (prefix-numeric-value n))))))
140
141 (defun image-bol (arg)
142 "Scroll horizontally to the left edge of the image in the current window.
143 With argument ARG not nil or 1, move forward ARG - 1 lines first,
144 stopping if the top or bottom edge of the image is reached."
145 (interactive "p")
146 (and arg
147 (/= (setq arg (prefix-numeric-value arg)) 1)
148 (image-next-line (- arg 1)))
149 (set-window-hscroll (selected-window) 0))
150
151 (defun image-eol (arg)
152 "Scroll horizontally to the right edge of the image in the current window.
153 With argument ARG not nil or 1, move forward ARG - 1 lines first,
154 stopping if the top or bottom edge of the image is reached."
155 (interactive "p")
156 (and arg
157 (/= (setq arg (prefix-numeric-value arg)) 1)
158 (image-next-line (- arg 1)))
159 (let* ((image (get-char-property (point-min) 'display))
160 (edges (window-inside-edges))
161 (win-width (- (nth 2 edges) (nth 0 edges)))
162 (img-width (ceiling (car (image-size image)))))
163 (set-window-hscroll (selected-window)
164 (max 0 (- img-width win-width)))))
165
166 (defun image-bob ()
167 "Scroll to the top-left corner of the image in the current window."
168 (interactive)
169 (set-window-hscroll (selected-window) 0)
170 (set-window-vscroll (selected-window) 0))
171
172 (defun image-eob ()
173 "Scroll to the bottom-right corner of the image in the current window."
174 (interactive)
175 (let* ((image (get-char-property (point-min) 'display))
176 (edges (window-inside-edges))
177 (win-width (- (nth 2 edges) (nth 0 edges)))
178 (img-width (ceiling (car (image-size image))))
179 (win-height (- (nth 3 edges) (nth 1 edges)))
180 (img-height (ceiling (cdr (image-size image)))))
181 (set-window-hscroll (selected-window) (max 0 (- img-width win-width)))
182 (set-window-vscroll (selected-window) (max 0 (- img-height win-height)))))
183
184 ;;; Image Mode setup
185
186 (defvar image-type nil
187 "Current image type.
188 This variable is used to display the current image type in the mode line.")
189 (make-variable-buffer-local 'image-type)
190
191 (defvar image-mode-map
192 (let ((map (make-sparse-keymap)))
193 (define-key map "\C-c\C-c" 'image-toggle-display)
194 (define-key map [remap forward-char] 'image-forward-hscroll)
195 (define-key map [remap backward-char] 'image-backward-hscroll)
196 (define-key map [remap previous-line] 'image-previous-line)
197 (define-key map [remap next-line] 'image-next-line)
198 (define-key map [remap scroll-up] 'image-scroll-up)
199 (define-key map [remap scroll-down] 'image-scroll-down)
200 (define-key map [remap move-beginning-of-line] 'image-bol)
201 (define-key map [remap move-end-of-line] 'image-eol)
202 (define-key map [remap beginning-of-buffer] 'image-bob)
203 (define-key map [remap end-of-buffer] 'image-eob)
204 map)
205 "Major mode keymap for viewing images in Image mode.")
206
207 (defvar image-mode-text-map
208 (let ((map (make-sparse-keymap)))
209 (define-key map "\C-c\C-c" 'image-toggle-display)
210 map)
211 "Major mode keymap for viewing images as text in Image mode.")
212
213 ;;;###autoload
214 (defun image-mode ()
215 "Major mode for image files.
216 You can use \\<image-mode-map>\\[image-toggle-display]
217 to toggle between display as an image and display as text."
218 (interactive)
219 (kill-all-local-variables)
220 (setq mode-name "Image[text]")
221 (setq major-mode 'image-mode)
222 (add-hook 'change-major-mode-hook 'image-toggle-display-text nil t)
223 (if (and (display-images-p)
224 (not (get-char-property (point-min) 'display)))
225 (image-toggle-display)
226 ;; Set next vars when image is already displayed but local
227 ;; variables were cleared by kill-all-local-variables
228 (use-local-map image-mode-map)
229 (setq cursor-type nil truncate-lines t))
230 (run-mode-hooks 'image-mode-hook)
231 (if (display-images-p)
232 (message "%s" (concat
233 (substitute-command-keys
234 "Type \\[image-toggle-display] to view as ")
235 (if (get-char-property (point-min) 'display)
236 "text" "an image") "."))))
237
238 ;;;###autoload
239 (define-minor-mode image-minor-mode
240 "Toggle Image minor mode.
241 With arg, turn Image minor mode on if arg is positive, off otherwise.
242 See the command `image-mode' for more information on this mode."
243 nil (:eval (format " Image[%s]" image-type)) image-mode-text-map
244 :group 'image
245 :version "22.1"
246 (if (not image-minor-mode)
247 (image-toggle-display-text)
248 (if (get-char-property (point-min) 'display)
249 (setq cursor-type nil truncate-lines t)
250 (setq image-type "text"))
251 (add-hook 'change-major-mode-hook (lambda () (image-minor-mode -1)) nil t)
252 (message "%s" (concat (substitute-command-keys
253 "Type \\[image-toggle-display] to view the image as ")
254 (if (get-char-property (point-min) 'display)
255 "text" "an image") "."))))
256
257 ;;;###autoload
258 (defun image-mode-maybe ()
259 "Set major or minor mode for image files.
260 Set Image major mode only when there are no other major modes
261 associated with a filename in `auto-mode-alist'. When an image
262 filename matches another major mode in `auto-mode-alist' then
263 set that major mode and Image minor mode.
264
265 See commands `image-mode' and `image-minor-mode' for more
266 information on these modes."
267 (interactive)
268 (let* ((mode-alist
269 (delq nil (mapcar
270 (lambda (elt)
271 (unless (memq (or (car-safe (cdr elt)) (cdr elt))
272 '(image-mode image-mode-maybe))
273 elt))
274 auto-mode-alist))))
275 (if (assoc-default buffer-file-name mode-alist 'string-match)
276 (let ((auto-mode-alist mode-alist)
277 (magic-mode-alist nil))
278 (set-auto-mode)
279 (image-minor-mode t))
280 (image-mode))))
281
282 (defun image-toggle-display-text ()
283 "Showing the text of the image file."
284 (if (get-char-property (point-min) 'display)
285 (image-toggle-display)))
286
287 (defvar archive-superior-buffer)
288 (defvar tar-superior-buffer)
289
290 (defun image-toggle-display ()
291 "Start or stop displaying an image file as the actual image.
292 This command toggles between showing the text of the image file
293 and showing the image as an image."
294 (interactive)
295 (if (get-char-property (point-min) 'display)
296 (let ((inhibit-read-only t)
297 (buffer-undo-list t)
298 (modified (buffer-modified-p)))
299 (remove-list-of-text-properties (point-min) (point-max)
300 '(display intangible read-nonsticky
301 read-only front-sticky))
302 (set-buffer-modified-p modified)
303 (kill-local-variable 'cursor-type)
304 (kill-local-variable 'truncate-lines)
305 (kill-local-variable 'auto-hscroll-mode)
306 (use-local-map image-mode-text-map)
307 (setq image-type "text")
308 (if (eq major-mode 'image-mode)
309 (setq mode-name "Image[text]"))
310 (if (called-interactively-p)
311 (message "Repeat this command to go back to displaying the image")))
312 ;; Turn the image data into a real image, but only if the whole file
313 ;; was inserted
314 (let* ((filename (buffer-file-name))
315 (data-p (not (and filename
316 (file-readable-p filename)
317 (not (file-remote-p filename))
318 (not (buffer-modified-p))
319 (not (and (boundp 'archive-superior-buffer)
320 archive-superior-buffer))
321 (not (and (boundp 'tar-superior-buffer)
322 tar-superior-buffer)))))
323 (file-or-data (if data-p
324 (string-make-unibyte
325 (buffer-substring-no-properties (point-min) (point-max)))
326 filename))
327 (type (image-type file-or-data nil data-p))
328 (image (create-image file-or-data type data-p))
329 (props
330 `(display ,image
331 intangible ,image
332 rear-nonsticky (display intangible)
333 read-only t front-sticky (read-only)))
334 (inhibit-read-only t)
335 (buffer-undo-list t)
336 (modified (buffer-modified-p)))
337 (image-refresh image)
338 (add-text-properties (point-min) (point-max) props)
339 (set-buffer-modified-p modified)
340 ;; Inhibit the cursor when the buffer contains only an image,
341 ;; because cursors look very strange on top of images.
342 (setq cursor-type nil)
343 ;; This just makes the arrow displayed in the right fringe
344 ;; area look correct when the image is wider than the window.
345 (setq truncate-lines t)
346 ;; Allow navigation of large images
347 (set (make-local-variable 'auto-hscroll-mode) nil)
348 (use-local-map image-mode-map)
349 (setq image-type type)
350 (if (eq major-mode 'image-mode)
351 (setq mode-name (format "Image[%s]" type)))
352 (if (called-interactively-p)
353 (message "Repeat this command to go back to displaying the file as text")))))
354
355 (provide 'image-mode)
356
357 ;; arch-tag: b5b2b7e6-26a7-4b79-96e3-1546b5c4c6cb
358 ;;; image-mode.el ends here