Add adjust-buffer-face-height command
[bpt/emacs.git] / lisp / image-mode.el
CommitLineData
c7bd5d57
RS
1;;; image-mode.el --- support for visiting image files
2;;
a47d49c0 3;; Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
c7bd5d57
RS
4;;
5;; Author: Richard Stallman <rms@gnu.org>
6;; Keywords: multimedia
7
8;; This file is part of GNU Emacs.
9
eb3fa2cf 10;; GNU Emacs is free software: you can redistribute it and/or modify
c7bd5d57 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.
c7bd5d57
RS
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/>.
c7bd5d57
RS
22
23;;; Commentary:
24
25;; Defines a major mode for visiting image files
26;; that allows conversion between viewing the text of the file
27;; and viewing the file as an image. Viewing the image
28;; works by putting a `display' text-property on the
29;; image data, with the image-data still present underneath; if the
30;; resulting buffer file is saved to another name it will correctly save
31;; the image data to the new file.
32
33;;; Code:
34
35(require 'image)
44e3c7c6 36(eval-when-compile (require 'cl))
c7bd5d57 37
d90e651e
JL
38;;;###autoload (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist)
39;;;###autoload (push '("\\.png\\'" . image-mode) auto-mode-alist)
40;;;###autoload (push '("\\.gif\\'" . image-mode) auto-mode-alist)
41;;;###autoload (push '("\\.tiff?\\'" . image-mode) auto-mode-alist)
42;;;###autoload (push '("\\.p[bpgn]m\\'" . image-mode) auto-mode-alist)
4a2f0e99
JL
43
44;;;###autoload (push '("\\.x[bp]m\\'" . c-mode) auto-mode-alist)
d90e651e 45;;;###autoload (push '("\\.x[bp]m\\'" . image-mode-maybe) auto-mode-alist)
c7bd5d57 46
4a2f0e99
JL
47;;;###autoload (push '("\\.svgz?\\'" . xml-mode) auto-mode-alist)
48;;;###autoload (push '("\\.svgz?\\'" . image-mode-maybe) auto-mode-alist)
49
44e3c7c6
SM
50;;; Image mode window-info management.
51
52(defvar image-mode-winprops-alist t)
53(make-variable-buffer-local 'image-mode-winprops-alist)
54
55(defvar image-mode-new-window-functions nil
56 "Special hook run when image data is requested in a new window.
57It is called with one argument, the initial WINPROPS.")
58
b81f0bab 59(defun image-mode-winprops (&optional window cleanup)
44e3c7c6
SM
60 "Return winprops of WINDOW.
61A winprops object has the shape (WINDOW . ALIST)."
b81f0bab
CY
62 (cond ((null window)
63 (setq window (selected-window)))
64 ((not (windowp window))
65 (error "Not a window: %s" window)))
66 (when cleanup
67 (setq image-mode-winprops-alist
68 (delq nil (mapcar (lambda (winprop)
69 (if (window-live-p (car-safe winprop))
70 winprop))
71 image-mode-winprops-alist))))
44e3c7c6
SM
72 (let ((winprops (assq window image-mode-winprops-alist)))
73 ;; For new windows, set defaults from the latest.
74 (unless winprops
75 (setq winprops (cons window
76 (copy-alist (cdar image-mode-winprops-alist))))
77 (run-hook-with-args 'image-mode-new-window-functions winprops))
78 ;; Move window to front.
79 (setq image-mode-winprops-alist
80 (cons winprops (delq winprops image-mode-winprops-alist)))
81 winprops))
82
83(defun image-mode-window-get (prop &optional winprops)
84 (unless (consp winprops) (setq winprops (image-mode-winprops winprops)))
85 (cdr (assq prop (cdr winprops))))
86
87(defsetf image-mode-window-get (prop &optional winprops) (val)
88 `(image-mode-window-put ,prop ,val ,winprops))
89
90(defun image-mode-window-put (prop val &optional winprops)
91 (unless (consp winprops) (setq winprops (image-mode-winprops winprops)))
92 (setcdr winprops (cons (cons prop val)
93 (delq (assq prop (cdr winprops)) (cdr winprops)))))
94
95(defun image-set-window-vscroll (vscroll)
96 (setf (image-mode-window-get 'vscroll) vscroll)
97 (set-window-vscroll (selected-window) vscroll))
98
99(defun image-set-window-hscroll (ncol)
60134fd4 100 (setf (image-mode-window-get 'hscroll) ncol)
44e3c7c6
SM
101 (set-window-hscroll (selected-window) ncol))
102
103(defun image-mode-reapply-winprops ()
6d401b4e
SM
104 ;; When set-window-buffer, set hscroll and vscroll to what they were
105 ;; last time the image was displayed in this window.
b81f0bab
CY
106 (when (and (image-get-display-property)
107 (listp image-mode-winprops-alist))
108 (let* ((winprops (image-mode-winprops nil t))
6d401b4e
SM
109 (hscroll (image-mode-window-get 'hscroll winprops))
110 (vscroll (image-mode-window-get 'vscroll winprops)))
c313b5fe
SM
111 (if hscroll (set-window-hscroll (selected-window) hscroll))
112 (if vscroll (set-window-vscroll (selected-window) vscroll)))))
36e1c289 113
44e3c7c6
SM
114(defun image-mode-setup-winprops ()
115 ;; Record current scroll settings.
116 (unless (listp image-mode-winprops-alist)
117 (setq image-mode-winprops-alist nil))
118 (add-hook 'window-configuration-change-hook
119 'image-mode-reapply-winprops nil t))
120
121;;; Image scrolling functions
122
91784462
SM
123(defun image-get-display-property ()
124 (get-char-property (point-min) 'display
125 ;; There might be different images for different displays.
126 (if (eq (window-buffer) (current-buffer))
127 (selected-window))))
128
bb0cb417
CY
129(defun image-forward-hscroll (&optional n)
130 "Scroll image in current window to the left by N character widths.
131Stop if the right edge of the image is reached."
132 (interactive "p")
133 (cond ((= n 0) nil)
134 ((< n 0)
44e3c7c6 135 (image-set-window-hscroll (max 0 (+ (window-hscroll) n))))
bb0cb417 136 (t
91784462 137 (let* ((image (image-get-display-property))
bb0cb417
CY
138 (edges (window-inside-edges))
139 (win-width (- (nth 2 edges) (nth 0 edges)))
140 (img-width (ceiling (car (image-size image)))))
44e3c7c6 141 (image-set-window-hscroll (min (max 0 (- img-width win-width))
36e1c289 142 (+ n (window-hscroll))))))))
bb0cb417
CY
143
144(defun image-backward-hscroll (&optional n)
145 "Scroll image in current window to the right by N character widths.
146Stop if the left edge of the image is reached."
147 (interactive "p")
148 (image-forward-hscroll (- n)))
149
150(defun image-next-line (&optional n)
151 "Scroll image in current window upward by N lines.
152Stop if the bottom edge of the image is reached."
153 (interactive "p")
154 (cond ((= n 0) nil)
155 ((< n 0)
44e3c7c6 156 (image-set-window-vscroll (max 0 (+ (window-vscroll) n))))
bb0cb417 157 (t
91784462 158 (let* ((image (image-get-display-property))
bb0cb417
CY
159 (edges (window-inside-edges))
160 (win-height (- (nth 3 edges) (nth 1 edges)))
161 (img-height (ceiling (cdr (image-size image)))))
44e3c7c6 162 (image-set-window-vscroll (min (max 0 (- img-height win-height))
36e1c289 163 (+ n (window-vscroll))))))))
bb0cb417
CY
164
165(defun image-previous-line (&optional n)
166 "Scroll image in current window downward by N lines.
167Stop if the top edge of the image is reached."
168 (interactive "p")
169 (image-next-line (- n)))
170
171(defun image-scroll-up (&optional n)
172 "Scroll image in current window upward by N lines.
173Stop if the bottom edge of the image is reached.
174If ARG is omitted or nil, scroll upward by a near full screen.
175A near full screen is `next-screen-context-lines' less than a full screen.
176Negative ARG means scroll downward.
177If ARG is the atom `-', scroll downward by nearly full screen.
178When calling from a program, supply as argument a number, nil, or `-'."
179 (interactive "P")
180 (cond ((null n)
181 (let* ((edges (window-inside-edges))
182 (win-height (- (nth 3 edges) (nth 1 edges))))
183 (image-next-line
184 (max 0 (- win-height next-screen-context-lines)))))
185 ((eq n '-)
186 (let* ((edges (window-inside-edges))
187 (win-height (- (nth 3 edges) (nth 1 edges))))
188 (image-next-line
189 (min 0 (- next-screen-context-lines win-height)))))
190 (t (image-next-line (prefix-numeric-value n)))))
191
192(defun image-scroll-down (&optional n)
3488c456 193 "Scroll image in current window downward by N lines.
bb0cb417
CY
194Stop if the top edge of the image is reached.
195If ARG is omitted or nil, scroll downward by a near full screen.
196A near full screen is `next-screen-context-lines' less than a full screen.
197Negative ARG means scroll upward.
198If ARG is the atom `-', scroll upward by nearly full screen.
199When calling from a program, supply as argument a number, nil, or `-'."
200 (interactive "P")
201 (cond ((null n)
202 (let* ((edges (window-inside-edges))
203 (win-height (- (nth 3 edges) (nth 1 edges))))
204 (image-next-line
205 (min 0 (- next-screen-context-lines win-height)))))
206 ((eq n '-)
207 (let* ((edges (window-inside-edges))
208 (win-height (- (nth 3 edges) (nth 1 edges))))
209 (image-next-line
210 (max 0 (- win-height next-screen-context-lines)))))
211 (t (image-next-line (- (prefix-numeric-value n))))))
212
213(defun image-bol (arg)
214 "Scroll horizontally to the left edge of the image in the current window.
215With argument ARG not nil or 1, move forward ARG - 1 lines first,
216stopping if the top or bottom edge of the image is reached."
217 (interactive "p")
218 (and arg
219 (/= (setq arg (prefix-numeric-value arg)) 1)
220 (image-next-line (- arg 1)))
44e3c7c6 221 (image-set-window-hscroll 0))
bb0cb417
CY
222
223(defun image-eol (arg)
224 "Scroll horizontally to the right edge of the image in the current window.
225With argument ARG not nil or 1, move forward ARG - 1 lines first,
226stopping if the top or bottom edge of the image is reached."
227 (interactive "p")
228 (and arg
229 (/= (setq arg (prefix-numeric-value arg)) 1)
230 (image-next-line (- arg 1)))
91784462 231 (let* ((image (image-get-display-property))
bb0cb417
CY
232 (edges (window-inside-edges))
233 (win-width (- (nth 2 edges) (nth 0 edges)))
234 (img-width (ceiling (car (image-size image)))))
44e3c7c6 235 (image-set-window-hscroll (max 0 (- img-width win-width)))))
bb0cb417
CY
236
237(defun image-bob ()
238 "Scroll to the top-left corner of the image in the current window."
239 (interactive)
44e3c7c6
SM
240 (image-set-window-hscroll 0)
241 (image-set-window-vscroll 0))
bb0cb417
CY
242
243(defun image-eob ()
244 "Scroll to the bottom-right corner of the image in the current window."
245 (interactive)
91784462 246 (let* ((image (image-get-display-property))
bb0cb417
CY
247 (edges (window-inside-edges))
248 (win-width (- (nth 2 edges) (nth 0 edges)))
249 (img-width (ceiling (car (image-size image))))
250 (win-height (- (nth 3 edges) (nth 1 edges)))
251 (img-height (ceiling (cdr (image-size image)))))
44e3c7c6
SM
252 (image-set-window-hscroll (max 0 (- img-width win-width)))
253 (image-set-window-vscroll (max 0 (- img-height win-height)))))
bb0cb417 254
bd1d6a63
SM
255;; Adjust frame and image size.
256
257(defun image-mode-fit-frame ()
258 "Fit the frame to the current image.
259This function assumes the current frame has only one window."
260 ;; FIXME: This does not take into account decorations like mode-line,
261 ;; minibuffer, header-line, ...
262 (interactive)
263 (let* ((saved (frame-parameter nil 'image-mode-saved-size))
264 (display (image-get-display-property))
265 (size (image-size display)))
266 (if (and saved
267 (eq (caar saved) (frame-width))
268 (eq (cdar saved) (frame-height)))
269 (progn ;; Toggle back to previous non-fitted size.
270 (set-frame-parameter nil 'image-mode-saved-size nil)
271 (setq size (cdr saved)))
272 ;; Round up size, and save current size so we can toggle back to it.
273 (setcar size (ceiling (car size)))
274 (setcdr size (ceiling (cdr size)))
275 (set-frame-parameter nil 'image-mode-saved-size
276 (cons size (cons (frame-width) (frame-height)))))
277 (set-frame-width (selected-frame) (car size))
278 (set-frame-height (selected-frame) (cdr size))))
279
bb0cb417
CY
280;;; Image Mode setup
281
d487ca7d
JL
282(defvar image-type nil
283 "Current image type.
284This variable is used to display the current image type in the mode line.")
285(make-variable-buffer-local 'image-type)
286
c7bd5d57 287(defvar image-mode-map
bb0cb417 288 (let ((map (make-sparse-keymap)))
d2d7e96c
SM
289 (suppress-keymap map)
290 (define-key map "q" 'quit-window)
291 ;;
bb0cb417
CY
292 (define-key map "\C-c\C-c" 'image-toggle-display)
293 (define-key map [remap forward-char] 'image-forward-hscroll)
294 (define-key map [remap backward-char] 'image-backward-hscroll)
295 (define-key map [remap previous-line] 'image-previous-line)
296 (define-key map [remap next-line] 'image-next-line)
297 (define-key map [remap scroll-up] 'image-scroll-up)
298 (define-key map [remap scroll-down] 'image-scroll-down)
299 (define-key map [remap move-beginning-of-line] 'image-bol)
300 (define-key map [remap move-end-of-line] 'image-eol)
301 (define-key map [remap beginning-of-buffer] 'image-bob)
302 (define-key map [remap end-of-buffer] 'image-eob)
303 map)
304 "Major mode keymap for viewing images in Image mode.")
305
306(defvar image-mode-text-map
c7bd5d57
RS
307 (let ((map (make-sparse-keymap)))
308 (define-key map "\C-c\C-c" 'image-toggle-display)
309 map)
bb0cb417 310 "Major mode keymap for viewing images as text in Image mode.")
c7bd5d57 311
e0385bf4 312(defvar bookmark-make-record-function)
a47d49c0 313
c7bd5d57
RS
314;;;###autoload
315(defun image-mode ()
316 "Major mode for image files.
317You can use \\<image-mode-map>\\[image-toggle-display]
318to toggle between display as an image and display as text."
319 (interactive)
320 (kill-all-local-variables)
d487ca7d 321 (setq mode-name "Image[text]")
c7bd5d57 322 (setq major-mode 'image-mode)
137187c8 323 ;; Use our own bookmarking function for images.
e0385bf4
KF
324 (set (make-local-variable 'bookmark-make-record-function)
325 'image-bookmark-make-record)
36e1c289
TH
326
327 ;; Keep track of [vh]scroll when switching buffers
44e3c7c6 328 (image-mode-setup-winprops)
36e1c289 329
d90e651e 330 (add-hook 'change-major-mode-hook 'image-toggle-display-text nil t)
f992a935 331 (if (and (display-images-p)
91784462 332 (not (image-get-display-property)))
f992a935
CY
333 (image-toggle-display)
334 ;; Set next vars when image is already displayed but local
335 ;; variables were cleared by kill-all-local-variables
bb0cb417 336 (use-local-map image-mode-map)
f992a935 337 (setq cursor-type nil truncate-lines t))
ab145daf
CY
338 (run-mode-hooks 'image-mode-hook)
339 (if (display-images-p)
340 (message "%s" (concat
341 (substitute-command-keys
9f446ee9 342 "Type \\[image-toggle-display] to view as ")
91784462 343 (if (image-get-display-property)
ab145daf 344 "text" "an image") "."))))
d90e651e
JL
345
346;;;###autoload
347(define-minor-mode image-minor-mode
348 "Toggle Image minor mode.
349With arg, turn Image minor mode on if arg is positive, off otherwise.
350See the command `image-mode' for more information on this mode."
d487ca7d 351 nil (:eval (format " Image[%s]" image-type)) image-mode-text-map
d90e651e
JL
352 :group 'image
353 :version "22.1"
90d0be7d
JL
354 (if (not image-minor-mode)
355 (image-toggle-display-text)
91784462 356 (if (image-get-display-property)
d487ca7d
JL
357 (setq cursor-type nil truncate-lines t)
358 (setq image-type "text"))
90d0be7d 359 (add-hook 'change-major-mode-hook (lambda () (image-minor-mode -1)) nil t)
8a26c165 360 (message "%s" (concat (substitute-command-keys
36e1c289 361 "Type \\[image-toggle-display] to view the image as ")
91784462 362 (if (image-get-display-property)
36e1c289 363 "text" "an image") "."))))
d90e651e
JL
364
365;;;###autoload
366(defun image-mode-maybe ()
367 "Set major or minor mode for image files.
368Set Image major mode only when there are no other major modes
369associated with a filename in `auto-mode-alist'. When an image
370filename matches another major mode in `auto-mode-alist' then
371set that major mode and Image minor mode.
372
373See commands `image-mode' and `image-minor-mode' for more
374information on these modes."
375 (interactive)
376 (let* ((mode-alist
377 (delq nil (mapcar
378 (lambda (elt)
379 (unless (memq (or (car-safe (cdr elt)) (cdr elt))
380 '(image-mode image-mode-maybe))
381 elt))
382 auto-mode-alist))))
383 (if (assoc-default buffer-file-name mode-alist 'string-match)
9fce2d71
JR
384 (let ((auto-mode-alist mode-alist)
385 (magic-mode-alist nil))
d90e651e
JL
386 (set-auto-mode)
387 (image-minor-mode t))
388 (image-mode))))
389
390(defun image-toggle-display-text ()
391 "Showing the text of the image file."
91784462 392 (if (image-get-display-property)
d90e651e 393 (image-toggle-display)))
c7bd5d57 394
f2920ffe
RS
395(defvar archive-superior-buffer)
396(defvar tar-superior-buffer)
397
c7bd5d57
RS
398(defun image-toggle-display ()
399 "Start or stop displaying an image file as the actual image.
400This command toggles between showing the text of the image file
401and showing the image as an image."
402 (interactive)
91784462 403 (if (image-get-display-property)
c7bd5d57 404 (let ((inhibit-read-only t)
837daa0d
RS
405 (buffer-undo-list t)
406 (modified (buffer-modified-p)))
c7bd5d57
RS
407 (remove-list-of-text-properties (point-min) (point-max)
408 '(display intangible read-nonsticky
409 read-only front-sticky))
837daa0d 410 (set-buffer-modified-p modified)
c7bd5d57
RS
411 (kill-local-variable 'cursor-type)
412 (kill-local-variable 'truncate-lines)
bb0cb417
CY
413 (kill-local-variable 'auto-hscroll-mode)
414 (use-local-map image-mode-text-map)
d487ca7d
JL
415 (setq image-type "text")
416 (if (eq major-mode 'image-mode)
417 (setq mode-name "Image[text]"))
d90e651e
JL
418 (if (called-interactively-p)
419 (message "Repeat this command to go back to displaying the image")))
c7bd5d57
RS
420 ;; Turn the image data into a real image, but only if the whole file
421 ;; was inserted
dc255b24 422 (let* ((filename (buffer-file-name))
d487ca7d
JL
423 (data-p (not (and filename
424 (file-readable-p filename)
425 (not (file-remote-p filename))
426 (not (buffer-modified-p))
427 (not (and (boundp 'archive-superior-buffer)
428 archive-superior-buffer))
429 (not (and (boundp 'tar-superior-buffer)
430 tar-superior-buffer)))))
431 (file-or-data (if data-p
432 (string-make-unibyte
433 (buffer-substring-no-properties (point-min) (point-max)))
434 filename))
435 (type (image-type file-or-data nil data-p))
436 (image (create-image file-or-data type data-p))
c7bd5d57
RS
437 (props
438 `(display ,image
36e1c289
TH
439 intangible ,image
440 rear-nonsticky (display intangible)
441 read-only t front-sticky (read-only)))
d90e651e 442 (inhibit-read-only t)
837daa0d
RS
443 (buffer-undo-list t)
444 (modified (buffer-modified-p)))
dc255b24 445 (image-refresh image)
c7bd5d57 446 (add-text-properties (point-min) (point-max) props)
837daa0d 447 (set-buffer-modified-p modified)
c7bd5d57
RS
448 ;; Inhibit the cursor when the buffer contains only an image,
449 ;; because cursors look very strange on top of images.
450 (setq cursor-type nil)
451 ;; This just makes the arrow displayed in the right fringe
452 ;; area look correct when the image is wider than the window.
453 (setq truncate-lines t)
bb0cb417
CY
454 ;; Allow navigation of large images
455 (set (make-local-variable 'auto-hscroll-mode) nil)
456 (use-local-map image-mode-map)
d487ca7d
JL
457 (setq image-type type)
458 (if (eq major-mode 'image-mode)
459 (setq mode-name (format "Image[%s]" type)))
d90e651e
JL
460 (if (called-interactively-p)
461 (message "Repeat this command to go back to displaying the file as text")))))
c7bd5d57 462
137187c8
TH
463;;; Support for bookmark.el
464
05d42c21 465(defun image-bookmark-make-record (annotation)
137187c8
TH
466 (let ((the-record
467 `((filename . ,(buffer-file-name))
468 (image-type . ,image-type)
469 (position . ,(point))
470 (handler . image-bookmark-jump))))
471
472 ;; Take no chances with text properties
473 (set-text-properties 0 (length annotation) nil annotation)
474
475 (when annotation
476 (nconc the-record (list (cons 'annotation annotation))))
477
478 ;; Finally, return the completed record.
479 the-record))
480
a47d49c0
GM
481(declare-function bookmark-get-filename "bookmark" (bookmark))
482(declare-function bookmark-get-bookmark-record "bookmark" (bookmark))
483(declare-function bookmark-get-position "bookmark" (bookmark))
484
137187c8
TH
485;;;###autoload
486(defun image-bookmark-jump (bmk)
03e26a79 487 ;; This implements the `handler' function interface for record type
e0385bf4 488 ;; returned by `bookmark-make-record-function', which see.
137187c8
TH
489 (save-window-excursion
490 (let ((filename (bookmark-get-filename bmk))
491 (type (cdr (assq 'image-type (bookmark-get-bookmark-record bmk))))
492 (pos (bookmark-get-position bmk)))
493 (find-file filename)
494 (when (not (string= image-type type))
495 (image-toggle-display))
496 (when (string= image-type "text")
497 (goto-char pos))
03e26a79 498 `((buffer ,(current-buffer)) (position ,(point))))))
137187c8 499
c7bd5d57
RS
500(provide 'image-mode)
501
8f7ee639 502;; arch-tag: b5b2b7e6-26a7-4b79-96e3-1546b5c4c6cb
c7bd5d57 503;;; image-mode.el ends here