2005-03-18 00:15:23 +00:00
|
|
|
;;; image-mode.el --- support for visiting image files
|
|
|
|
;;
|
2008-01-04 03:12:43 +00:00
|
|
|
;; Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
2005-03-18 00:15:23 +00:00
|
|
|
;;
|
|
|
|
;; Author: Richard Stallman <rms@gnu.org>
|
|
|
|
;; Keywords: multimedia
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2007-07-25 04:50:21 +00:00
|
|
|
;; the Free Software Foundation; either version 3, or (at your option)
|
2005-03-18 00:15:23 +00:00
|
|
|
;; any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
;; along with GNU Emacs; see the file COPYING. If not, write to the
|
2005-07-04 23:32:44 +00:00
|
|
|
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
;; Boston, MA 02110-1301, USA.
|
2005-03-18 00:15:23 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Defines a major mode for visiting image files
|
|
|
|
;; that allows conversion between viewing the text of the file
|
|
|
|
;; and viewing the file as an image. Viewing the image
|
|
|
|
;; works by putting a `display' text-property on the
|
|
|
|
;; image data, with the image-data still present underneath; if the
|
|
|
|
;; resulting buffer file is saved to another name it will correctly save
|
|
|
|
;; the image data to the new file.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
|
|
(require 'image)
|
2008-02-21 03:27:15 +00:00
|
|
|
(eval-when-compile (require 'cl))
|
2005-03-18 00:15:23 +00:00
|
|
|
|
2005-03-25 19:57:21 +00:00
|
|
|
;;;###autoload (push '("\\.jpe?g\\'" . image-mode) auto-mode-alist)
|
|
|
|
;;;###autoload (push '("\\.png\\'" . image-mode) auto-mode-alist)
|
|
|
|
;;;###autoload (push '("\\.gif\\'" . image-mode) auto-mode-alist)
|
|
|
|
;;;###autoload (push '("\\.tiff?\\'" . image-mode) auto-mode-alist)
|
|
|
|
;;;###autoload (push '("\\.p[bpgn]m\\'" . image-mode) auto-mode-alist)
|
2007-08-25 14:08:44 +00:00
|
|
|
|
|
|
|
;;;###autoload (push '("\\.x[bp]m\\'" . c-mode) auto-mode-alist)
|
2005-03-25 19:57:21 +00:00
|
|
|
;;;###autoload (push '("\\.x[bp]m\\'" . image-mode-maybe) auto-mode-alist)
|
2005-03-18 00:15:23 +00:00
|
|
|
|
2007-08-25 14:08:44 +00:00
|
|
|
;;;###autoload (push '("\\.svgz?\\'" . xml-mode) auto-mode-alist)
|
|
|
|
;;;###autoload (push '("\\.svgz?\\'" . image-mode-maybe) auto-mode-alist)
|
|
|
|
|
2008-02-21 03:27:15 +00:00
|
|
|
;;; Image mode window-info management.
|
|
|
|
|
|
|
|
(defvar image-mode-winprops-alist t)
|
|
|
|
(make-variable-buffer-local 'image-mode-winprops-alist)
|
|
|
|
|
|
|
|
(defvar image-mode-new-window-functions nil
|
|
|
|
"Special hook run when image data is requested in a new window.
|
|
|
|
It is called with one argument, the initial WINPROPS.")
|
|
|
|
|
|
|
|
(defun image-mode-winprops (&optional window)
|
|
|
|
"Return winprops of WINDOW.
|
|
|
|
A winprops object has the shape (WINDOW . ALIST)."
|
|
|
|
(unless window (setq window (selected-window)))
|
|
|
|
(let ((winprops (assq window image-mode-winprops-alist)))
|
|
|
|
;; For new windows, set defaults from the latest.
|
|
|
|
(unless winprops
|
|
|
|
(setq winprops (cons window
|
|
|
|
(copy-alist (cdar image-mode-winprops-alist))))
|
|
|
|
(run-hook-with-args 'image-mode-new-window-functions winprops))
|
|
|
|
;; Move window to front.
|
|
|
|
(setq image-mode-winprops-alist
|
|
|
|
(cons winprops (delq winprops image-mode-winprops-alist)))
|
|
|
|
winprops))
|
|
|
|
|
|
|
|
(defun image-mode-window-get (prop &optional winprops)
|
|
|
|
(unless (consp winprops) (setq winprops (image-mode-winprops winprops)))
|
|
|
|
(cdr (assq prop (cdr winprops))))
|
|
|
|
|
|
|
|
(defsetf image-mode-window-get (prop &optional winprops) (val)
|
|
|
|
`(image-mode-window-put ,prop ,val ,winprops))
|
|
|
|
|
|
|
|
(defun image-mode-window-put (prop val &optional winprops)
|
|
|
|
(unless (consp winprops) (setq winprops (image-mode-winprops winprops)))
|
|
|
|
(setcdr winprops (cons (cons prop val)
|
|
|
|
(delq (assq prop (cdr winprops)) (cdr winprops)))))
|
|
|
|
|
|
|
|
(defun image-set-window-vscroll (vscroll)
|
|
|
|
(setf (image-mode-window-get 'vscroll) vscroll)
|
|
|
|
(set-window-vscroll (selected-window) vscroll))
|
|
|
|
|
|
|
|
(defun image-set-window-hscroll (ncol)
|
|
|
|
(setf (image-mode-window-put 'hscroll) ncol)
|
|
|
|
(set-window-hscroll (selected-window) ncol))
|
|
|
|
|
|
|
|
(defun image-mode-reapply-winprops ()
|
2008-02-01 01:43:36 +00:00
|
|
|
(walk-windows
|
|
|
|
(lambda (win)
|
|
|
|
(with-current-buffer (window-buffer win)
|
|
|
|
;; When set-window-buffer, set hscroll and vscroll to what they were
|
2008-02-21 03:27:15 +00:00
|
|
|
;; last time the image was displayed in this window.
|
|
|
|
(when (listp image-mode-winprops-alist)
|
|
|
|
(let* ((winprops (image-mode-winprops win))
|
|
|
|
(hscroll (image-mode-window-get 'hscroll winprops))
|
|
|
|
(vscroll (image-mode-window-get 'vscroll winprops)))
|
|
|
|
(if hscroll (set-window-hscroll win hscroll))
|
|
|
|
(if vscroll (set-window-vscroll win vscroll))))))
|
2008-02-01 01:43:36 +00:00
|
|
|
'nomini
|
|
|
|
(selected-frame)))
|
2008-01-29 13:49:05 +00:00
|
|
|
|
2008-02-21 03:27:15 +00:00
|
|
|
(defun image-mode-setup-winprops ()
|
|
|
|
;; Record current scroll settings.
|
|
|
|
(unless (listp image-mode-winprops-alist)
|
|
|
|
(setq image-mode-winprops-alist nil))
|
|
|
|
(add-hook 'window-configuration-change-hook
|
|
|
|
'image-mode-reapply-winprops nil t))
|
|
|
|
|
|
|
|
;;; Image scrolling functions
|
|
|
|
|
2008-02-18 04:08:04 +00:00
|
|
|
(defun image-get-display-property ()
|
|
|
|
(get-char-property (point-min) 'display
|
|
|
|
;; There might be different images for different displays.
|
|
|
|
(if (eq (window-buffer) (current-buffer))
|
|
|
|
(selected-window))))
|
|
|
|
|
2007-05-24 23:12:53 +00:00
|
|
|
(defun image-forward-hscroll (&optional n)
|
|
|
|
"Scroll image in current window to the left by N character widths.
|
|
|
|
Stop if the right edge of the image is reached."
|
|
|
|
(interactive "p")
|
|
|
|
(cond ((= n 0) nil)
|
|
|
|
((< n 0)
|
2008-02-21 03:27:15 +00:00
|
|
|
(image-set-window-hscroll (max 0 (+ (window-hscroll) n))))
|
2007-05-24 23:12:53 +00:00
|
|
|
(t
|
2008-02-18 04:08:04 +00:00
|
|
|
(let* ((image (image-get-display-property))
|
2007-05-24 23:12:53 +00:00
|
|
|
(edges (window-inside-edges))
|
|
|
|
(win-width (- (nth 2 edges) (nth 0 edges)))
|
|
|
|
(img-width (ceiling (car (image-size image)))))
|
2008-02-21 03:27:15 +00:00
|
|
|
(image-set-window-hscroll (min (max 0 (- img-width win-width))
|
2008-01-29 13:49:05 +00:00
|
|
|
(+ n (window-hscroll))))))))
|
2007-05-24 23:12:53 +00:00
|
|
|
|
|
|
|
(defun image-backward-hscroll (&optional n)
|
|
|
|
"Scroll image in current window to the right by N character widths.
|
|
|
|
Stop if the left edge of the image is reached."
|
|
|
|
(interactive "p")
|
|
|
|
(image-forward-hscroll (- n)))
|
|
|
|
|
|
|
|
(defun image-next-line (&optional n)
|
|
|
|
"Scroll image in current window upward by N lines.
|
|
|
|
Stop if the bottom edge of the image is reached."
|
|
|
|
(interactive "p")
|
|
|
|
(cond ((= n 0) nil)
|
|
|
|
((< n 0)
|
2008-02-21 03:27:15 +00:00
|
|
|
(image-set-window-vscroll (max 0 (+ (window-vscroll) n))))
|
2007-05-24 23:12:53 +00:00
|
|
|
(t
|
2008-02-18 04:08:04 +00:00
|
|
|
(let* ((image (image-get-display-property))
|
2007-05-24 23:12:53 +00:00
|
|
|
(edges (window-inside-edges))
|
|
|
|
(win-height (- (nth 3 edges) (nth 1 edges)))
|
|
|
|
(img-height (ceiling (cdr (image-size image)))))
|
2008-02-21 03:27:15 +00:00
|
|
|
(image-set-window-vscroll (min (max 0 (- img-height win-height))
|
2008-01-29 13:49:05 +00:00
|
|
|
(+ n (window-vscroll))))))))
|
2007-05-24 23:12:53 +00:00
|
|
|
|
|
|
|
(defun image-previous-line (&optional n)
|
|
|
|
"Scroll image in current window downward by N lines.
|
|
|
|
Stop if the top edge of the image is reached."
|
|
|
|
(interactive "p")
|
|
|
|
(image-next-line (- n)))
|
|
|
|
|
|
|
|
(defun image-scroll-up (&optional n)
|
|
|
|
"Scroll image in current window upward by N lines.
|
|
|
|
Stop if the bottom edge of the image is reached.
|
|
|
|
If ARG is omitted or nil, scroll upward by a near full screen.
|
|
|
|
A near full screen is `next-screen-context-lines' less than a full screen.
|
|
|
|
Negative ARG means scroll downward.
|
|
|
|
If ARG is the atom `-', scroll downward by nearly full screen.
|
|
|
|
When calling from a program, supply as argument a number, nil, or `-'."
|
|
|
|
(interactive "P")
|
|
|
|
(cond ((null n)
|
|
|
|
(let* ((edges (window-inside-edges))
|
|
|
|
(win-height (- (nth 3 edges) (nth 1 edges))))
|
|
|
|
(image-next-line
|
|
|
|
(max 0 (- win-height next-screen-context-lines)))))
|
|
|
|
((eq n '-)
|
|
|
|
(let* ((edges (window-inside-edges))
|
|
|
|
(win-height (- (nth 3 edges) (nth 1 edges))))
|
|
|
|
(image-next-line
|
|
|
|
(min 0 (- next-screen-context-lines win-height)))))
|
|
|
|
(t (image-next-line (prefix-numeric-value n)))))
|
|
|
|
|
|
|
|
(defun image-scroll-down (&optional n)
|
2008-02-01 01:43:36 +00:00
|
|
|
"Scroll image in current window downward by N lines.
|
2007-05-24 23:12:53 +00:00
|
|
|
Stop if the top edge of the image is reached.
|
|
|
|
If ARG is omitted or nil, scroll downward by a near full screen.
|
|
|
|
A near full screen is `next-screen-context-lines' less than a full screen.
|
|
|
|
Negative ARG means scroll upward.
|
|
|
|
If ARG is the atom `-', scroll upward by nearly full screen.
|
|
|
|
When calling from a program, supply as argument a number, nil, or `-'."
|
|
|
|
(interactive "P")
|
|
|
|
(cond ((null n)
|
|
|
|
(let* ((edges (window-inside-edges))
|
|
|
|
(win-height (- (nth 3 edges) (nth 1 edges))))
|
|
|
|
(image-next-line
|
|
|
|
(min 0 (- next-screen-context-lines win-height)))))
|
|
|
|
((eq n '-)
|
|
|
|
(let* ((edges (window-inside-edges))
|
|
|
|
(win-height (- (nth 3 edges) (nth 1 edges))))
|
|
|
|
(image-next-line
|
|
|
|
(max 0 (- win-height next-screen-context-lines)))))
|
|
|
|
(t (image-next-line (- (prefix-numeric-value n))))))
|
|
|
|
|
|
|
|
(defun image-bol (arg)
|
|
|
|
"Scroll horizontally to the left edge of the image in the current window.
|
|
|
|
With argument ARG not nil or 1, move forward ARG - 1 lines first,
|
|
|
|
stopping if the top or bottom edge of the image is reached."
|
|
|
|
(interactive "p")
|
|
|
|
(and arg
|
|
|
|
(/= (setq arg (prefix-numeric-value arg)) 1)
|
|
|
|
(image-next-line (- arg 1)))
|
2008-02-21 03:27:15 +00:00
|
|
|
(image-set-window-hscroll 0))
|
2007-05-24 23:12:53 +00:00
|
|
|
|
|
|
|
(defun image-eol (arg)
|
|
|
|
"Scroll horizontally to the right edge of the image in the current window.
|
|
|
|
With argument ARG not nil or 1, move forward ARG - 1 lines first,
|
|
|
|
stopping if the top or bottom edge of the image is reached."
|
|
|
|
(interactive "p")
|
|
|
|
(and arg
|
|
|
|
(/= (setq arg (prefix-numeric-value arg)) 1)
|
|
|
|
(image-next-line (- arg 1)))
|
2008-02-18 04:08:04 +00:00
|
|
|
(let* ((image (image-get-display-property))
|
2007-05-24 23:12:53 +00:00
|
|
|
(edges (window-inside-edges))
|
|
|
|
(win-width (- (nth 2 edges) (nth 0 edges)))
|
|
|
|
(img-width (ceiling (car (image-size image)))))
|
2008-02-21 03:27:15 +00:00
|
|
|
(image-set-window-hscroll (max 0 (- img-width win-width)))))
|
2007-05-24 23:12:53 +00:00
|
|
|
|
|
|
|
(defun image-bob ()
|
|
|
|
"Scroll to the top-left corner of the image in the current window."
|
|
|
|
(interactive)
|
2008-02-21 03:27:15 +00:00
|
|
|
(image-set-window-hscroll 0)
|
|
|
|
(image-set-window-vscroll 0))
|
2007-05-24 23:12:53 +00:00
|
|
|
|
|
|
|
(defun image-eob ()
|
|
|
|
"Scroll to the bottom-right corner of the image in the current window."
|
|
|
|
(interactive)
|
2008-02-18 04:08:04 +00:00
|
|
|
(let* ((image (image-get-display-property))
|
2007-05-24 23:12:53 +00:00
|
|
|
(edges (window-inside-edges))
|
|
|
|
(win-width (- (nth 2 edges) (nth 0 edges)))
|
|
|
|
(img-width (ceiling (car (image-size image))))
|
|
|
|
(win-height (- (nth 3 edges) (nth 1 edges)))
|
|
|
|
(img-height (ceiling (cdr (image-size image)))))
|
2008-02-21 03:27:15 +00:00
|
|
|
(image-set-window-hscroll (max 0 (- img-width win-width)))
|
|
|
|
(image-set-window-vscroll (max 0 (- img-height win-height)))))
|
2007-05-24 23:12:53 +00:00
|
|
|
|
|
|
|
;;; Image Mode setup
|
|
|
|
|
2007-08-28 22:32:07 +00:00
|
|
|
(defvar image-type nil
|
|
|
|
"Current image type.
|
|
|
|
This variable is used to display the current image type in the mode line.")
|
|
|
|
(make-variable-buffer-local 'image-type)
|
|
|
|
|
2005-03-18 00:15:23 +00:00
|
|
|
(defvar image-mode-map
|
2007-05-24 23:12:53 +00:00
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
(define-key map "\C-c\C-c" 'image-toggle-display)
|
|
|
|
(define-key map [remap forward-char] 'image-forward-hscroll)
|
|
|
|
(define-key map [remap backward-char] 'image-backward-hscroll)
|
|
|
|
(define-key map [remap previous-line] 'image-previous-line)
|
|
|
|
(define-key map [remap next-line] 'image-next-line)
|
|
|
|
(define-key map [remap scroll-up] 'image-scroll-up)
|
|
|
|
(define-key map [remap scroll-down] 'image-scroll-down)
|
|
|
|
(define-key map [remap move-beginning-of-line] 'image-bol)
|
|
|
|
(define-key map [remap move-end-of-line] 'image-eol)
|
|
|
|
(define-key map [remap beginning-of-buffer] 'image-bob)
|
|
|
|
(define-key map [remap end-of-buffer] 'image-eob)
|
|
|
|
map)
|
|
|
|
"Major mode keymap for viewing images in Image mode.")
|
|
|
|
|
|
|
|
(defvar image-mode-text-map
|
2005-03-18 00:15:23 +00:00
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
(define-key map "\C-c\C-c" 'image-toggle-display)
|
|
|
|
map)
|
2007-05-24 23:12:53 +00:00
|
|
|
"Major mode keymap for viewing images as text in Image mode.")
|
2005-03-18 00:15:23 +00:00
|
|
|
|
2008-01-04 03:12:43 +00:00
|
|
|
(defvar bookmark-make-cell-function)
|
|
|
|
|
2005-03-18 00:15:23 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun image-mode ()
|
|
|
|
"Major mode for image files.
|
|
|
|
You can use \\<image-mode-map>\\[image-toggle-display]
|
|
|
|
to toggle between display as an image and display as text."
|
|
|
|
(interactive)
|
|
|
|
(kill-all-local-variables)
|
2007-08-28 22:32:07 +00:00
|
|
|
(setq mode-name "Image[text]")
|
2005-03-18 00:15:23 +00:00
|
|
|
(setq major-mode 'image-mode)
|
2007-12-26 11:48:37 +00:00
|
|
|
;; Use our own bookmarking function for images.
|
|
|
|
(set (make-local-variable 'bookmark-make-cell-function)
|
|
|
|
'image-bookmark-make-cell)
|
2008-01-29 13:49:05 +00:00
|
|
|
|
|
|
|
;; Keep track of [vh]scroll when switching buffers
|
2008-02-21 03:27:15 +00:00
|
|
|
(image-mode-setup-winprops)
|
2008-01-29 13:49:05 +00:00
|
|
|
|
2005-03-25 19:57:21 +00:00
|
|
|
(add-hook 'change-major-mode-hook 'image-toggle-display-text nil t)
|
2007-02-09 16:50:29 +00:00
|
|
|
(if (and (display-images-p)
|
2008-02-18 04:08:04 +00:00
|
|
|
(not (image-get-display-property)))
|
2007-02-09 16:50:29 +00:00
|
|
|
(image-toggle-display)
|
|
|
|
;; Set next vars when image is already displayed but local
|
|
|
|
;; variables were cleared by kill-all-local-variables
|
2007-05-24 23:12:53 +00:00
|
|
|
(use-local-map image-mode-map)
|
2007-02-09 16:50:29 +00:00
|
|
|
(setq cursor-type nil truncate-lines t))
|
2006-08-29 13:02:53 +00:00
|
|
|
(run-mode-hooks 'image-mode-hook)
|
|
|
|
(if (display-images-p)
|
|
|
|
(message "%s" (concat
|
|
|
|
(substitute-command-keys
|
2007-01-30 16:52:48 +00:00
|
|
|
"Type \\[image-toggle-display] to view as ")
|
2008-02-18 04:08:04 +00:00
|
|
|
(if (image-get-display-property)
|
2006-08-29 13:02:53 +00:00
|
|
|
"text" "an image") "."))))
|
2005-03-25 19:57:21 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(define-minor-mode image-minor-mode
|
|
|
|
"Toggle Image minor mode.
|
|
|
|
With arg, turn Image minor mode on if arg is positive, off otherwise.
|
|
|
|
See the command `image-mode' for more information on this mode."
|
2007-08-28 22:32:07 +00:00
|
|
|
nil (:eval (format " Image[%s]" image-type)) image-mode-text-map
|
2005-03-25 19:57:21 +00:00
|
|
|
:group 'image
|
|
|
|
:version "22.1"
|
2005-03-25 21:45:47 +00:00
|
|
|
(if (not image-minor-mode)
|
|
|
|
(image-toggle-display-text)
|
2008-02-18 04:08:04 +00:00
|
|
|
(if (image-get-display-property)
|
2007-08-28 22:32:07 +00:00
|
|
|
(setq cursor-type nil truncate-lines t)
|
|
|
|
(setq image-type "text"))
|
2005-03-25 21:45:47 +00:00
|
|
|
(add-hook 'change-major-mode-hook (lambda () (image-minor-mode -1)) nil t)
|
2005-09-18 12:25:02 +00:00
|
|
|
(message "%s" (concat (substitute-command-keys
|
2008-01-29 13:49:05 +00:00
|
|
|
"Type \\[image-toggle-display] to view the image as ")
|
2008-02-18 04:08:04 +00:00
|
|
|
(if (image-get-display-property)
|
2008-01-29 13:49:05 +00:00
|
|
|
"text" "an image") "."))))
|
2005-03-25 19:57:21 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(defun image-mode-maybe ()
|
|
|
|
"Set major or minor mode for image files.
|
|
|
|
Set Image major mode only when there are no other major modes
|
|
|
|
associated with a filename in `auto-mode-alist'. When an image
|
|
|
|
filename matches another major mode in `auto-mode-alist' then
|
|
|
|
set that major mode and Image minor mode.
|
|
|
|
|
|
|
|
See commands `image-mode' and `image-minor-mode' for more
|
|
|
|
information on these modes."
|
|
|
|
(interactive)
|
|
|
|
(let* ((mode-alist
|
|
|
|
(delq nil (mapcar
|
|
|
|
(lambda (elt)
|
|
|
|
(unless (memq (or (car-safe (cdr elt)) (cdr elt))
|
|
|
|
'(image-mode image-mode-maybe))
|
|
|
|
elt))
|
|
|
|
auto-mode-alist))))
|
|
|
|
(if (assoc-default buffer-file-name mode-alist 'string-match)
|
2007-01-31 12:37:08 +00:00
|
|
|
(let ((auto-mode-alist mode-alist)
|
|
|
|
(magic-mode-alist nil))
|
2005-03-25 19:57:21 +00:00
|
|
|
(set-auto-mode)
|
|
|
|
(image-minor-mode t))
|
|
|
|
(image-mode))))
|
|
|
|
|
|
|
|
(defun image-toggle-display-text ()
|
|
|
|
"Showing the text of the image file."
|
2008-02-18 04:08:04 +00:00
|
|
|
(if (image-get-display-property)
|
2005-03-25 19:57:21 +00:00
|
|
|
(image-toggle-display)))
|
2005-03-18 00:15:23 +00:00
|
|
|
|
2006-07-17 20:55:07 +00:00
|
|
|
(defvar archive-superior-buffer)
|
|
|
|
(defvar tar-superior-buffer)
|
|
|
|
|
2005-03-18 00:15:23 +00:00
|
|
|
(defun image-toggle-display ()
|
|
|
|
"Start or stop displaying an image file as the actual image.
|
|
|
|
This command toggles between showing the text of the image file
|
|
|
|
and showing the image as an image."
|
|
|
|
(interactive)
|
2008-02-18 04:08:04 +00:00
|
|
|
(if (image-get-display-property)
|
2005-03-18 00:15:23 +00:00
|
|
|
(let ((inhibit-read-only t)
|
2005-03-21 17:42:36 +00:00
|
|
|
(buffer-undo-list t)
|
|
|
|
(modified (buffer-modified-p)))
|
2005-03-18 00:15:23 +00:00
|
|
|
(remove-list-of-text-properties (point-min) (point-max)
|
|
|
|
'(display intangible read-nonsticky
|
|
|
|
read-only front-sticky))
|
2005-03-21 17:42:36 +00:00
|
|
|
(set-buffer-modified-p modified)
|
2005-03-18 00:15:23 +00:00
|
|
|
(kill-local-variable 'cursor-type)
|
|
|
|
(kill-local-variable 'truncate-lines)
|
2007-05-24 23:12:53 +00:00
|
|
|
(kill-local-variable 'auto-hscroll-mode)
|
|
|
|
(use-local-map image-mode-text-map)
|
2007-08-28 22:32:07 +00:00
|
|
|
(setq image-type "text")
|
|
|
|
(if (eq major-mode 'image-mode)
|
|
|
|
(setq mode-name "Image[text]"))
|
2005-03-25 19:57:21 +00:00
|
|
|
(if (called-interactively-p)
|
|
|
|
(message "Repeat this command to go back to displaying the image")))
|
2005-03-18 00:15:23 +00:00
|
|
|
;; Turn the image data into a real image, but only if the whole file
|
|
|
|
;; was inserted
|
2007-05-21 23:05:20 +00:00
|
|
|
(let* ((filename (buffer-file-name))
|
2007-08-28 22:32:07 +00:00
|
|
|
(data-p (not (and filename
|
|
|
|
(file-readable-p filename)
|
|
|
|
(not (file-remote-p filename))
|
|
|
|
(not (buffer-modified-p))
|
|
|
|
(not (and (boundp 'archive-superior-buffer)
|
|
|
|
archive-superior-buffer))
|
|
|
|
(not (and (boundp 'tar-superior-buffer)
|
|
|
|
tar-superior-buffer)))))
|
|
|
|
(file-or-data (if data-p
|
|
|
|
(string-make-unibyte
|
|
|
|
(buffer-substring-no-properties (point-min) (point-max)))
|
|
|
|
filename))
|
|
|
|
(type (image-type file-or-data nil data-p))
|
|
|
|
(image (create-image file-or-data type data-p))
|
2005-03-18 00:15:23 +00:00
|
|
|
(props
|
|
|
|
`(display ,image
|
2008-01-29 13:49:05 +00:00
|
|
|
intangible ,image
|
|
|
|
rear-nonsticky (display intangible)
|
|
|
|
read-only t front-sticky (read-only)))
|
2005-03-25 19:57:21 +00:00
|
|
|
(inhibit-read-only t)
|
2005-03-21 17:42:36 +00:00
|
|
|
(buffer-undo-list t)
|
|
|
|
(modified (buffer-modified-p)))
|
2007-05-21 23:05:20 +00:00
|
|
|
(image-refresh image)
|
2005-03-18 00:15:23 +00:00
|
|
|
(add-text-properties (point-min) (point-max) props)
|
2005-03-21 17:42:36 +00:00
|
|
|
(set-buffer-modified-p modified)
|
2005-03-18 00:15:23 +00:00
|
|
|
;; Inhibit the cursor when the buffer contains only an image,
|
|
|
|
;; because cursors look very strange on top of images.
|
|
|
|
(setq cursor-type nil)
|
|
|
|
;; This just makes the arrow displayed in the right fringe
|
|
|
|
;; area look correct when the image is wider than the window.
|
|
|
|
(setq truncate-lines t)
|
2007-05-24 23:12:53 +00:00
|
|
|
;; Allow navigation of large images
|
|
|
|
(set (make-local-variable 'auto-hscroll-mode) nil)
|
|
|
|
(use-local-map image-mode-map)
|
2007-08-28 22:32:07 +00:00
|
|
|
(setq image-type type)
|
|
|
|
(if (eq major-mode 'image-mode)
|
|
|
|
(setq mode-name (format "Image[%s]" type)))
|
2005-03-25 19:57:21 +00:00
|
|
|
(if (called-interactively-p)
|
|
|
|
(message "Repeat this command to go back to displaying the file as text")))))
|
2005-03-18 00:15:23 +00:00
|
|
|
|
2007-12-26 11:48:37 +00:00
|
|
|
;;; Support for bookmark.el
|
|
|
|
|
|
|
|
(defun image-bookmark-make-cell (annotation &rest args)
|
|
|
|
(let ((the-record
|
|
|
|
`((filename . ,(buffer-file-name))
|
|
|
|
(image-type . ,image-type)
|
|
|
|
(position . ,(point))
|
|
|
|
(handler . image-bookmark-jump))))
|
|
|
|
|
|
|
|
;; Take no chances with text properties
|
|
|
|
(set-text-properties 0 (length annotation) nil annotation)
|
|
|
|
|
|
|
|
(when annotation
|
|
|
|
(nconc the-record (list (cons 'annotation annotation))))
|
|
|
|
|
|
|
|
;; Finally, return the completed record.
|
|
|
|
the-record))
|
|
|
|
|
2008-01-04 03:12:43 +00:00
|
|
|
(declare-function bookmark-get-filename "bookmark" (bookmark))
|
|
|
|
(declare-function bookmark-get-bookmark-record "bookmark" (bookmark))
|
|
|
|
(declare-function bookmark-get-position "bookmark" (bookmark))
|
|
|
|
|
2007-12-26 11:48:37 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun image-bookmark-jump (bmk)
|
2008-01-02 07:49:04 +00:00
|
|
|
;; This implements the `handler' function interface for record type
|
|
|
|
;; returned by `bookmark-make-cell-function', which see.
|
2007-12-26 11:48:37 +00:00
|
|
|
(save-window-excursion
|
|
|
|
(let ((filename (bookmark-get-filename bmk))
|
|
|
|
(type (cdr (assq 'image-type (bookmark-get-bookmark-record bmk))))
|
|
|
|
(pos (bookmark-get-position bmk)))
|
|
|
|
(find-file filename)
|
|
|
|
(when (not (string= image-type type))
|
|
|
|
(image-toggle-display))
|
|
|
|
(when (string= image-type "text")
|
|
|
|
(goto-char pos))
|
2008-01-02 07:49:04 +00:00
|
|
|
`((buffer ,(current-buffer)) (position ,(point))))))
|
2007-12-26 11:48:37 +00:00
|
|
|
|
2005-03-18 00:15:23 +00:00
|
|
|
(provide 'image-mode)
|
|
|
|
|
2005-03-18 02:53:44 +00:00
|
|
|
;; arch-tag: b5b2b7e6-26a7-4b79-96e3-1546b5c4c6cb
|
2005-03-18 00:15:23 +00:00
|
|
|
;;; image-mode.el ends here
|