Mercurial > emacs
annotate lisp/image-mode.el @ 92632:870c7b456283
(date-to-time, time-subtract, time-add, safe-date-to-time): Doc fixes.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Sat, 08 Mar 2008 20:22:16 +0000 |
parents | 2b5ff8c0d207 |
children | d5bb646771f8 |
rev | line source |
---|---|
60694 | 1 ;;; image-mode.el --- support for visiting image files |
2 ;; | |
87557 | 3 ;; Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
60694 | 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 | |
78236
9355f9b7bbff
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
77989
diff
changeset
|
12 ;; the Free Software Foundation; either version 3, or (at your option) |
60694 | 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 | |
64091 | 22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
23 ;; Boston, MA 02110-1301, USA. | |
60694 | 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) | |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
38 (eval-when-compile (require 'cl)) |
60694 | 39 |
60937
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
40 ;;;###autoload (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
41 ;;;###autoload (push '("\\.png\\'" . image-mode) auto-mode-alist) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
42 ;;;###autoload (push '("\\.gif\\'" . image-mode) auto-mode-alist) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
43 ;;;###autoload (push '("\\.tiff?\\'" . image-mode) auto-mode-alist) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
44 ;;;###autoload (push '("\\.p[bpgn]m\\'" . image-mode) auto-mode-alist) |
82836
4526cbe33367
Add autoloads to put associations in auto-mode-alist:
Juri Linkov <juri@jurta.org>
parents:
82770
diff
changeset
|
45 |
4526cbe33367
Add autoloads to put associations in auto-mode-alist:
Juri Linkov <juri@jurta.org>
parents:
82770
diff
changeset
|
46 ;;;###autoload (push '("\\.x[bp]m\\'" . c-mode) auto-mode-alist) |
60937
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
47 ;;;###autoload (push '("\\.x[bp]m\\'" . image-mode-maybe) auto-mode-alist) |
60694 | 48 |
82836
4526cbe33367
Add autoloads to put associations in auto-mode-alist:
Juri Linkov <juri@jurta.org>
parents:
82770
diff
changeset
|
49 ;;;###autoload (push '("\\.svgz?\\'" . xml-mode) auto-mode-alist) |
4526cbe33367
Add autoloads to put associations in auto-mode-alist:
Juri Linkov <juri@jurta.org>
parents:
82770
diff
changeset
|
50 ;;;###autoload (push '("\\.svgz?\\'" . image-mode-maybe) auto-mode-alist) |
4526cbe33367
Add autoloads to put associations in auto-mode-alist:
Juri Linkov <juri@jurta.org>
parents:
82770
diff
changeset
|
51 |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
52 ;;; Image mode window-info management. |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
53 |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
54 (defvar image-mode-winprops-alist t) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
55 (make-variable-buffer-local 'image-mode-winprops-alist) |
88062
4ff20f6b1ec8
* image-mode.el (image-mode-current-vscroll)
Tassilo Horn <tassilo@member.fsf.org>
parents:
88057
diff
changeset
|
56 |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
57 (defvar image-mode-new-window-functions nil |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
58 "Special hook run when image data is requested in a new window. |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
59 It is called with one argument, the initial WINPROPS.") |
88057
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
60 |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
61 (defun image-mode-winprops (&optional window) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
62 "Return winprops of WINDOW. |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
63 A winprops object has the shape (WINDOW . ALIST)." |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
64 (unless window (setq window (selected-window))) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
65 (let ((winprops (assq window image-mode-winprops-alist))) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
66 ;; For new windows, set defaults from the latest. |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
67 (unless winprops |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
68 (setq winprops (cons window |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
69 (copy-alist (cdar image-mode-winprops-alist)))) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
70 (run-hook-with-args 'image-mode-new-window-functions winprops)) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
71 ;; Move window to front. |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
72 (setq image-mode-winprops-alist |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
73 (cons winprops (delq winprops image-mode-winprops-alist))) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
74 winprops)) |
88057
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
75 |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
76 (defun image-mode-window-get (prop &optional winprops) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
77 (unless (consp winprops) (setq winprops (image-mode-winprops winprops))) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
78 (cdr (assq prop (cdr winprops)))) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
79 |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
80 (defsetf image-mode-window-get (prop &optional winprops) (val) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
81 `(image-mode-window-put ,prop ,val ,winprops)) |
88057
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
82 |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
83 (defun image-mode-window-put (prop val &optional winprops) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
84 (unless (consp winprops) (setq winprops (image-mode-winprops winprops))) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
85 (setcdr winprops (cons (cons prop val) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
86 (delq (assq prop (cdr winprops)) (cdr winprops))))) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
87 |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
88 (defun image-set-window-vscroll (vscroll) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
89 (setf (image-mode-window-get 'vscroll) vscroll) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
90 (set-window-vscroll (selected-window) vscroll)) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
91 |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
92 (defun image-set-window-hscroll (ncol) |
92010
a7a0e6010c46
(image-set-window-hscroll): Typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91999
diff
changeset
|
93 (setf (image-mode-window-get 'hscroll) ncol) |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
94 (set-window-hscroll (selected-window) ncol)) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
95 |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
96 (defun image-mode-reapply-winprops () |
88103
d6247c939edc
(image-mode-current-vscroll, image-mode-current-hscroll): Make buffer-local.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88062
diff
changeset
|
97 (walk-windows |
d6247c939edc
(image-mode-current-vscroll, image-mode-current-hscroll): Make buffer-local.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88062
diff
changeset
|
98 (lambda (win) |
d6247c939edc
(image-mode-current-vscroll, image-mode-current-hscroll): Make buffer-local.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88062
diff
changeset
|
99 (with-current-buffer (window-buffer win) |
d6247c939edc
(image-mode-current-vscroll, image-mode-current-hscroll): Make buffer-local.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88062
diff
changeset
|
100 ;; When set-window-buffer, set hscroll and vscroll to what they were |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
101 ;; last time the image was displayed in this window. |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
102 (when (listp image-mode-winprops-alist) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
103 (let* ((winprops (image-mode-winprops win)) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
104 (hscroll (image-mode-window-get 'hscroll winprops)) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
105 (vscroll (image-mode-window-get 'vscroll winprops))) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
106 (if hscroll (set-window-hscroll win hscroll)) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
107 (if vscroll (set-window-vscroll win vscroll)))))) |
88103
d6247c939edc
(image-mode-current-vscroll, image-mode-current-hscroll): Make buffer-local.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88062
diff
changeset
|
108 'nomini |
d6247c939edc
(image-mode-current-vscroll, image-mode-current-hscroll): Make buffer-local.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88062
diff
changeset
|
109 (selected-frame))) |
88057
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
110 |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
111 (defun image-mode-setup-winprops () |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
112 ;; Record current scroll settings. |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
113 (unless (listp image-mode-winprops-alist) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
114 (setq image-mode-winprops-alist nil)) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
115 (add-hook 'window-configuration-change-hook |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
116 'image-mode-reapply-winprops nil t)) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
117 |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
118 ;;; Image scrolling functions |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
119 |
91928
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
120 (defun image-get-display-property () |
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
121 (get-char-property (point-min) 'display |
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
122 ;; There might be different images for different displays. |
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
123 (if (eq (window-buffer) (current-buffer)) |
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
124 (selected-window)))) |
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
125 |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
126 (defun image-forward-hscroll (&optional n) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
127 "Scroll image in current window to the left by N character widths. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
128 Stop if the right edge of the image is reached." |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
129 (interactive "p") |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
130 (cond ((= n 0) nil) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
131 ((< n 0) |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
132 (image-set-window-hscroll (max 0 (+ (window-hscroll) n)))) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
133 (t |
91928
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
134 (let* ((image (image-get-display-property)) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
135 (edges (window-inside-edges)) |
81063
b3fc5c4daa5f
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
81019
diff
changeset
|
136 (win-width (- (nth 2 edges) (nth 0 edges))) |
b3fc5c4daa5f
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
81019
diff
changeset
|
137 (img-width (ceiling (car (image-size image))))) |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
138 (image-set-window-hscroll (min (max 0 (- img-width win-width)) |
88057
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
139 (+ n (window-hscroll)))))))) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
140 |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
141 (defun image-backward-hscroll (&optional n) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
142 "Scroll image in current window to the right by N character widths. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
143 Stop if the left edge of the image is reached." |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
144 (interactive "p") |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
145 (image-forward-hscroll (- n))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
146 |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
147 (defun image-next-line (&optional n) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
148 "Scroll image in current window upward by N lines. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
149 Stop if the bottom edge of the image is reached." |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
150 (interactive "p") |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
151 (cond ((= n 0) nil) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
152 ((< n 0) |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
153 (image-set-window-vscroll (max 0 (+ (window-vscroll) n)))) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
154 (t |
91928
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
155 (let* ((image (image-get-display-property)) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
156 (edges (window-inside-edges)) |
81063
b3fc5c4daa5f
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
81019
diff
changeset
|
157 (win-height (- (nth 3 edges) (nth 1 edges))) |
b3fc5c4daa5f
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
81019
diff
changeset
|
158 (img-height (ceiling (cdr (image-size image))))) |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
159 (image-set-window-vscroll (min (max 0 (- img-height win-height)) |
88057
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
160 (+ n (window-vscroll)))))))) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
161 |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
162 (defun image-previous-line (&optional n) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
163 "Scroll image in current window downward by N lines. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
164 Stop if the top edge of the image is reached." |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
165 (interactive "p") |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
166 (image-next-line (- n))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
167 |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
168 (defun image-scroll-up (&optional n) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
169 "Scroll image in current window upward by N lines. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
170 Stop if the bottom edge of the image is reached. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
171 If ARG is omitted or nil, scroll upward by a near full screen. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
172 A near full screen is `next-screen-context-lines' less than a full screen. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
173 Negative ARG means scroll downward. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
174 If ARG is the atom `-', scroll downward by nearly full screen. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
175 When calling from a program, supply as argument a number, nil, or `-'." |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
176 (interactive "P") |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
177 (cond ((null n) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
178 (let* ((edges (window-inside-edges)) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
179 (win-height (- (nth 3 edges) (nth 1 edges)))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
180 (image-next-line |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
181 (max 0 (- win-height next-screen-context-lines))))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
182 ((eq n '-) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
183 (let* ((edges (window-inside-edges)) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
184 (win-height (- (nth 3 edges) (nth 1 edges)))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
185 (image-next-line |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
186 (min 0 (- next-screen-context-lines win-height))))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
187 (t (image-next-line (prefix-numeric-value n))))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
188 |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
189 (defun image-scroll-down (&optional n) |
88103
d6247c939edc
(image-mode-current-vscroll, image-mode-current-hscroll): Make buffer-local.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88062
diff
changeset
|
190 "Scroll image in current window downward by N lines. |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
191 Stop if the top edge of the image is reached. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
192 If ARG is omitted or nil, scroll downward by a near full screen. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
193 A near full screen is `next-screen-context-lines' less than a full screen. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
194 Negative ARG means scroll upward. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
195 If ARG is the atom `-', scroll upward by nearly full screen. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
196 When calling from a program, supply as argument a number, nil, or `-'." |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
197 (interactive "P") |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
198 (cond ((null n) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
199 (let* ((edges (window-inside-edges)) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
200 (win-height (- (nth 3 edges) (nth 1 edges)))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
201 (image-next-line |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
202 (min 0 (- next-screen-context-lines win-height))))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
203 ((eq n '-) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
204 (let* ((edges (window-inside-edges)) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
205 (win-height (- (nth 3 edges) (nth 1 edges)))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
206 (image-next-line |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
207 (max 0 (- win-height next-screen-context-lines))))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
208 (t (image-next-line (- (prefix-numeric-value n)))))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
209 |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
210 (defun image-bol (arg) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
211 "Scroll horizontally to the left edge of the image in the current window. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
212 With argument ARG not nil or 1, move forward ARG - 1 lines first, |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
213 stopping if the top or bottom edge of the image is reached." |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
214 (interactive "p") |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
215 (and arg |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
216 (/= (setq arg (prefix-numeric-value arg)) 1) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
217 (image-next-line (- arg 1))) |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
218 (image-set-window-hscroll 0)) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
219 |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
220 (defun image-eol (arg) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
221 "Scroll horizontally to the right edge of the image in the current window. |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
222 With argument ARG not nil or 1, move forward ARG - 1 lines first, |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
223 stopping if the top or bottom edge of the image is reached." |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
224 (interactive "p") |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
225 (and arg |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
226 (/= (setq arg (prefix-numeric-value arg)) 1) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
227 (image-next-line (- arg 1))) |
91928
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
228 (let* ((image (image-get-display-property)) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
229 (edges (window-inside-edges)) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
230 (win-width (- (nth 2 edges) (nth 0 edges))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
231 (img-width (ceiling (car (image-size image))))) |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
232 (image-set-window-hscroll (max 0 (- img-width win-width))))) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
233 |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
234 (defun image-bob () |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
235 "Scroll to the top-left corner of the image in the current window." |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
236 (interactive) |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
237 (image-set-window-hscroll 0) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
238 (image-set-window-vscroll 0)) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
239 |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
240 (defun image-eob () |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
241 "Scroll to the bottom-right corner of the image in the current window." |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
242 (interactive) |
91928
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
243 (let* ((image (image-get-display-property)) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
244 (edges (window-inside-edges)) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
245 (win-width (- (nth 2 edges) (nth 0 edges))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
246 (img-width (ceiling (car (image-size image)))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
247 (win-height (- (nth 3 edges) (nth 1 edges))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
248 (img-height (ceiling (cdr (image-size image))))) |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
249 (image-set-window-hscroll (max 0 (- img-width win-width))) |
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
250 (image-set-window-vscroll (max 0 (- img-height win-height))))) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
251 |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
252 ;;; Image Mode setup |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
253 |
82944 | 254 (defvar image-type nil |
255 "Current image type. | |
256 This variable is used to display the current image type in the mode line.") | |
257 (make-variable-buffer-local 'image-type) | |
258 | |
60694 | 259 (defvar image-mode-map |
260 (let ((map (make-sparse-keymap))) | |
261 (define-key map "\C-c\C-c" 'image-toggle-display) | |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
262 (define-key map [remap forward-char] 'image-forward-hscroll) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
263 (define-key map [remap backward-char] 'image-backward-hscroll) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
264 (define-key map [remap previous-line] 'image-previous-line) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
265 (define-key map [remap next-line] 'image-next-line) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
266 (define-key map [remap scroll-up] 'image-scroll-up) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
267 (define-key map [remap scroll-down] 'image-scroll-down) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
268 (define-key map [remap move-beginning-of-line] 'image-bol) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
269 (define-key map [remap move-end-of-line] 'image-eol) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
270 (define-key map [remap beginning-of-buffer] 'image-bob) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
271 (define-key map [remap end-of-buffer] 'image-eob) |
60694 | 272 map) |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
273 "Major mode keymap for viewing images in Image mode.") |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
274 |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
275 (defvar image-mode-text-map |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
276 (let ((map (make-sparse-keymap))) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
277 (define-key map "\C-c\C-c" 'image-toggle-display) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
278 map) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
279 "Major mode keymap for viewing images as text in Image mode.") |
60694 | 280 |
92556
5944be8c8211
Change a return type, for greater extensibility. See
Karl Fogel <kfogel@red-bean.com>
parents:
92010
diff
changeset
|
281 (defvar bookmark-make-record-function) |
87557 | 282 |
60694 | 283 ;;;###autoload |
284 (defun image-mode () | |
285 "Major mode for image files. | |
286 You can use \\<image-mode-map>\\[image-toggle-display] | |
287 to toggle between display as an image and display as text." | |
288 (interactive) | |
289 (kill-all-local-variables) | |
82944 | 290 (setq mode-name "Image[text]") |
60694 | 291 (setq major-mode 'image-mode) |
87412
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
292 ;; Use our own bookmarking function for images. |
92556
5944be8c8211
Change a return type, for greater extensibility. See
Karl Fogel <kfogel@red-bean.com>
parents:
92010
diff
changeset
|
293 (set (make-local-variable 'bookmark-make-record-function) |
5944be8c8211
Change a return type, for greater extensibility. See
Karl Fogel <kfogel@red-bean.com>
parents:
92010
diff
changeset
|
294 'image-bookmark-make-record) |
88057
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
295 |
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
296 ;; Keep track of [vh]scroll when switching buffers |
91999
a58e06f6236c
Extend [hv]scroll support to per-window properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
91928
diff
changeset
|
297 (image-mode-setup-winprops) |
88057
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
298 |
60937
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
299 (add-hook 'change-major-mode-hook 'image-toggle-display-text nil t) |
75745
19d4ee6e5621
(image-mode): Revert 2007-01-30 changes.
Chong Yidong <cyd@stupidchicken.com>
parents:
75626
diff
changeset
|
300 (if (and (display-images-p) |
91928
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
301 (not (image-get-display-property))) |
75745
19d4ee6e5621
(image-mode): Revert 2007-01-30 changes.
Chong Yidong <cyd@stupidchicken.com>
parents:
75626
diff
changeset
|
302 (image-toggle-display) |
19d4ee6e5621
(image-mode): Revert 2007-01-30 changes.
Chong Yidong <cyd@stupidchicken.com>
parents:
75626
diff
changeset
|
303 ;; Set next vars when image is already displayed but local |
19d4ee6e5621
(image-mode): Revert 2007-01-30 changes.
Chong Yidong <cyd@stupidchicken.com>
parents:
75626
diff
changeset
|
304 ;; variables were cleared by kill-all-local-variables |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
305 (use-local-map image-mode-map) |
75745
19d4ee6e5621
(image-mode): Revert 2007-01-30 changes.
Chong Yidong <cyd@stupidchicken.com>
parents:
75626
diff
changeset
|
306 (setq cursor-type nil truncate-lines t)) |
72570
7011a586dd45
* image-mode.el (image-mode): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
72568
diff
changeset
|
307 (run-mode-hooks 'image-mode-hook) |
7011a586dd45
* image-mode.el (image-mode): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
72568
diff
changeset
|
308 (if (display-images-p) |
7011a586dd45
* image-mode.el (image-mode): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
72568
diff
changeset
|
309 (message "%s" (concat |
7011a586dd45
* image-mode.el (image-mode): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
72568
diff
changeset
|
310 (substitute-command-keys |
75545
4f14c21e4f44
(image-mode): Don't automatically view as image.
Chong Yidong <cyd@stupidchicken.com>
parents:
75347
diff
changeset
|
311 "Type \\[image-toggle-display] to view as ") |
91928
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
312 (if (image-get-display-property) |
72570
7011a586dd45
* image-mode.el (image-mode): Fix last fix.
Chong Yidong <cyd@stupidchicken.com>
parents:
72568
diff
changeset
|
313 "text" "an image") ".")))) |
60937
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
314 |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
315 ;;;###autoload |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
316 (define-minor-mode image-minor-mode |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
317 "Toggle Image minor mode. |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
318 With arg, turn Image minor mode on if arg is positive, off otherwise. |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
319 See the command `image-mode' for more information on this mode." |
82944 | 320 nil (:eval (format " Image[%s]" image-type)) image-mode-text-map |
60937
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
321 :group 'image |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
322 :version "22.1" |
60943
258772850c9a
(image-minor-mode): Set `cursor-type' and `truncate-lines' if the
Juri Linkov <juri@jurta.org>
parents:
60937
diff
changeset
|
323 (if (not image-minor-mode) |
258772850c9a
(image-minor-mode): Set `cursor-type' and `truncate-lines' if the
Juri Linkov <juri@jurta.org>
parents:
60937
diff
changeset
|
324 (image-toggle-display-text) |
91928
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
325 (if (image-get-display-property) |
82944 | 326 (setq cursor-type nil truncate-lines t) |
327 (setq image-type "text")) | |
60943
258772850c9a
(image-minor-mode): Set `cursor-type' and `truncate-lines' if the
Juri Linkov <juri@jurta.org>
parents:
60937
diff
changeset
|
328 (add-hook 'change-major-mode-hook (lambda () (image-minor-mode -1)) nil t) |
65582
4d1085b02d64
Message format spec fixes (1)
Deepak Goel <deego@gnufans.org>
parents:
64091
diff
changeset
|
329 (message "%s" (concat (substitute-command-keys |
88057
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
330 "Type \\[image-toggle-display] to view the image as ") |
91928
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
331 (if (image-get-display-property) |
88057
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
332 "text" "an image") ".")))) |
60937
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
333 |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
334 ;;;###autoload |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
335 (defun image-mode-maybe () |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
336 "Set major or minor mode for image files. |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
337 Set Image major mode only when there are no other major modes |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
338 associated with a filename in `auto-mode-alist'. When an image |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
339 filename matches another major mode in `auto-mode-alist' then |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
340 set that major mode and Image minor mode. |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
341 |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
342 See commands `image-mode' and `image-minor-mode' for more |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
343 information on these modes." |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
344 (interactive) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
345 (let* ((mode-alist |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
346 (delq nil (mapcar |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
347 (lambda (elt) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
348 (unless (memq (or (car-safe (cdr elt)) (cdr elt)) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
349 '(image-mode image-mode-maybe)) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
350 elt)) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
351 auto-mode-alist)))) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
352 (if (assoc-default buffer-file-name mode-alist 'string-match) |
75568
146ba0f8974c
(image-mode-maybe): Prevent magic-mode-alist from
Jason Rumney <jasonr@gnu.org>
parents:
75547
diff
changeset
|
353 (let ((auto-mode-alist mode-alist) |
146ba0f8974c
(image-mode-maybe): Prevent magic-mode-alist from
Jason Rumney <jasonr@gnu.org>
parents:
75547
diff
changeset
|
354 (magic-mode-alist nil)) |
60937
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
355 (set-auto-mode) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
356 (image-minor-mode t)) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
357 (image-mode)))) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
358 |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
359 (defun image-toggle-display-text () |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
360 "Showing the text of the image file." |
91928
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
361 (if (image-get-display-property) |
60937
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
362 (image-toggle-display))) |
60694 | 363 |
71939
3c0fceee4b4a
(tar-superior-buffer, archive-superior-buffer):
Richard M. Stallman <rms@gnu.org>
parents:
70943
diff
changeset
|
364 (defvar archive-superior-buffer) |
3c0fceee4b4a
(tar-superior-buffer, archive-superior-buffer):
Richard M. Stallman <rms@gnu.org>
parents:
70943
diff
changeset
|
365 (defvar tar-superior-buffer) |
3c0fceee4b4a
(tar-superior-buffer, archive-superior-buffer):
Richard M. Stallman <rms@gnu.org>
parents:
70943
diff
changeset
|
366 |
60694 | 367 (defun image-toggle-display () |
368 "Start or stop displaying an image file as the actual image. | |
369 This command toggles between showing the text of the image file | |
370 and showing the image as an image." | |
371 (interactive) | |
91928
e788f311729d
(image-get-display-property): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
88103
diff
changeset
|
372 (if (image-get-display-property) |
60694 | 373 (let ((inhibit-read-only t) |
60780 | 374 (buffer-undo-list t) |
375 (modified (buffer-modified-p))) | |
60694 | 376 (remove-list-of-text-properties (point-min) (point-max) |
377 '(display intangible read-nonsticky | |
378 read-only front-sticky)) | |
60780 | 379 (set-buffer-modified-p modified) |
60694 | 380 (kill-local-variable 'cursor-type) |
381 (kill-local-variable 'truncate-lines) | |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
382 (kill-local-variable 'auto-hscroll-mode) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
383 (use-local-map image-mode-text-map) |
82944 | 384 (setq image-type "text") |
385 (if (eq major-mode 'image-mode) | |
386 (setq mode-name "Image[text]")) | |
60937
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
387 (if (called-interactively-p) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
388 (message "Repeat this command to go back to displaying the image"))) |
60694 | 389 ;; Turn the image data into a real image, but only if the whole file |
390 ;; was inserted | |
81019
a1b4792efa5e
(image-toggle-display): Don't clear image cache. Only use filename in
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
391 (let* ((filename (buffer-file-name)) |
82944 | 392 (data-p (not (and filename |
393 (file-readable-p filename) | |
394 (not (file-remote-p filename)) | |
395 (not (buffer-modified-p)) | |
396 (not (and (boundp 'archive-superior-buffer) | |
397 archive-superior-buffer)) | |
398 (not (and (boundp 'tar-superior-buffer) | |
399 tar-superior-buffer))))) | |
400 (file-or-data (if data-p | |
401 (string-make-unibyte | |
402 (buffer-substring-no-properties (point-min) (point-max))) | |
403 filename)) | |
404 (type (image-type file-or-data nil data-p)) | |
405 (image (create-image file-or-data type data-p)) | |
60694 | 406 (props |
407 `(display ,image | |
88057
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
408 intangible ,image |
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
409 rear-nonsticky (display intangible) |
1341d54b08e2
2008-01-29 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
87557
diff
changeset
|
410 read-only t front-sticky (read-only))) |
60937
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
411 (inhibit-read-only t) |
60780 | 412 (buffer-undo-list t) |
413 (modified (buffer-modified-p))) | |
81019
a1b4792efa5e
(image-toggle-display): Don't clear image cache. Only use filename in
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
414 (image-refresh image) |
60694 | 415 (add-text-properties (point-min) (point-max) props) |
60780 | 416 (set-buffer-modified-p modified) |
60694 | 417 ;; Inhibit the cursor when the buffer contains only an image, |
418 ;; because cursors look very strange on top of images. | |
419 (setq cursor-type nil) | |
420 ;; This just makes the arrow displayed in the right fringe | |
421 ;; area look correct when the image is wider than the window. | |
422 (setq truncate-lines t) | |
77989
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
423 ;; Allow navigation of large images |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
424 (set (make-local-variable 'auto-hscroll-mode) nil) |
6393038dae4d
(image-forward-hscroll, image-backward-hscroll)
Chong Yidong <cyd@stupidchicken.com>
parents:
75745
diff
changeset
|
425 (use-local-map image-mode-map) |
82944 | 426 (setq image-type type) |
427 (if (eq major-mode 'image-mode) | |
428 (setq mode-name (format "Image[%s]" type))) | |
60937
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
429 (if (called-interactively-p) |
ddcbccff39ce
Optimize image filename extension regexps in
Juri Linkov <juri@jurta.org>
parents:
60780
diff
changeset
|
430 (message "Repeat this command to go back to displaying the file as text"))))) |
60694 | 431 |
87412
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
432 ;;; Support for bookmark.el |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
433 |
92564
2b5ff8c0d207
(image-bookmark-make-record): Delete obsolete
Tassilo Horn <tassilo@member.fsf.org>
parents:
92556
diff
changeset
|
434 (defun image-bookmark-make-record (annotation) |
87412
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
435 (let ((the-record |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
436 `((filename . ,(buffer-file-name)) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
437 (image-type . ,image-type) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
438 (position . ,(point)) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
439 (handler . image-bookmark-jump)))) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
440 |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
441 ;; Take no chances with text properties |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
442 (set-text-properties 0 (length annotation) nil annotation) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
443 |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
444 (when annotation |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
445 (nconc the-record (list (cons 'annotation annotation)))) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
446 |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
447 ;; Finally, return the completed record. |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
448 the-record)) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
449 |
87557 | 450 (declare-function bookmark-get-filename "bookmark" (bookmark)) |
451 (declare-function bookmark-get-bookmark-record "bookmark" (bookmark)) | |
452 (declare-function bookmark-get-position "bookmark" (bookmark)) | |
453 | |
87412
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
454 ;;;###autoload |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
455 (defun image-bookmark-jump (bmk) |
87521
0140d3ebb262
Change a return type, for greater extensibility. See
Karl Fogel <kfogel@red-bean.com>
parents:
87412
diff
changeset
|
456 ;; This implements the `handler' function interface for record type |
92556
5944be8c8211
Change a return type, for greater extensibility. See
Karl Fogel <kfogel@red-bean.com>
parents:
92010
diff
changeset
|
457 ;; returned by `bookmark-make-record-function', which see. |
87412
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
458 (save-window-excursion |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
459 (let ((filename (bookmark-get-filename bmk)) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
460 (type (cdr (assq 'image-type (bookmark-get-bookmark-record bmk)))) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
461 (pos (bookmark-get-position bmk))) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
462 (find-file filename) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
463 (when (not (string= image-type type)) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
464 (image-toggle-display)) |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
465 (when (string= image-type "text") |
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
466 (goto-char pos)) |
87521
0140d3ebb262
Change a return type, for greater extensibility. See
Karl Fogel <kfogel@red-bean.com>
parents:
87412
diff
changeset
|
467 `((buffer ,(current-buffer)) (position ,(point)))))) |
87412
f6ce12419345
2007-12-26 Tassilo Horn <tassilo@member.fsf.org>
Tassilo Horn <tassilo@member.fsf.org>
parents:
85800
diff
changeset
|
468 |
60694 | 469 (provide 'image-mode) |
470 | |
60697
d9c9ad74e719
Changes from arch/CVS synchronization
Miles Bader <miles@gnu.org>
parents:
60694
diff
changeset
|
471 ;; arch-tag: b5b2b7e6-26a7-4b79-96e3-1546b5c4c6cb |
60694 | 472 ;;; image-mode.el ends here |