blob: f194e047eeda8e4c965c087062a0a39d2b868883 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
;; geiser-image.el -- support for image display
;; Copyright (c) 2012 Jose Antonio Ortega Ruiz
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the Modified BSD License. You should
;; have received a copy of the license along with this program. If
;; not, see <http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5>.
;; Authors: Michael Wilber, Jose Antonio Ortega Ruiz <jao@gnu.org>
;; Start date: Sun Sep 02, 2012 00:00
(require 'geiser-custom)
(require 'geiser-base)
;;; Customization:
(defgroup geiser-image nil
"Options for image displaying."
:group 'geiser)
(geiser-custom--defcustom geiser-system-image-viewer "display"
"Which system image viewer program to invoke upon M-x
`geiser-view-last-image'."
:type 'string
:group 'geiser-image)
(geiser-custom--defcustom geiser-image-cache-keep-last 10
"How many images to keep in geiser's image cache."
:type 'integer
:group 'geiser-image)
(geiser-custom--defcustom geiser-image-cache-dir nil
;; Currently, this variable is updated, if needed, by racket during
;; initialization. If/when we add image support for other
;; implementations, we'll have to work with implementation-specific
;; caches.
"Directory where generated images are stored. If nil, the
system wide tmp dir will be used."
:type 'path
:group 'geiser-image)
(geiser-custom--defface image-button
'button geiser-image "image buttons in terminal buffers")
(defun geiser-image--list-cache ()
"List all the images in the image cache."
(and geiser-image-cache-dir
(file-directory-p geiser-image-cache-dir)
(let ((files (directory-files-and-attributes
geiser-image-cache-dir t "geiser-img-[0-9]*.png")))
(mapcar 'car
(sort files (lambda (a b)
(< (float-time (nth 6 a))
(float-time (nth 6 b)))))))))
(defun geiser-image--clean-cache ()
"Clean all except for the last `geiser-image-cache-keep-last'
images in `geiser-image-cache-dir'."
(interactive)
(dolist (f (butlast (geiser-image--list-cache) geiser-image-cache-keep-last))
(delete-file f)))
(defun geiser-image--display (file)
(start-process "Geiser image view" nil geiser-system-image-viewer file))
(defun geiser-image--button-action (button)
(let ((file (button-get button 'geiser-image-file)))
(when (file-exists-p file) (geiser-image--display file))))
(define-button-type 'geiser-image--button
'action 'geiser-image--button-action
'follow-link t)
(defun geiser-image--insert-button (file)
(insert-text-button "[image]"
:type 'geiser-image--button
'face 'geiser-font-lock-image-button
'geiser-image-file file
'help-echo "Click to display image"))
(defun geiser-image--replace-images (inline-images-p auto-p)
"Replace all image patterns with actual images"
(let ((seen 0))
(with-silent-modifications
(save-excursion
(goto-char (point-min))
(while (re-search-forward "\"?#<Image: \\([-+./_0-9a-zA-Z]+\\)>\"?" nil t)
(setq seen (+ 1 seen))
(let* ((file (match-string 1))
(begin (match-beginning 0))
(end (match-end 0)))
(delete-region begin end)
(if (and inline-images-p (display-images-p))
(put-image (create-image file) begin "[image]")
(goto-char begin)
(geiser-image--insert-button file)
(when auto-p (geiser-image--display file)))
(setq geiser-image-cache-dir (file-name-directory file))
(geiser-image--clean-cache)))))
seen))
(defun geiser-view-last-image (n)
"Open the last displayed image in the system's image viewer.
With prefix arg, open the N-th last shown image in the system's
image viewer."
(interactive "p")
(let ((images (reverse (geiser-image--list-cache))))
(if (>= (length images) n)
(geiser-image--display (nth (- n 1) images))
(error "There aren't %d recent images" n))))
(provide 'geiser-image)
|