]> code.delx.au - gnu-emacs/blob - lisp/tumme.el
(tumme-display-thumbnail-original-image): Make sure
[gnu-emacs] / lisp / tumme.el
1 ;;; tumme.el --- use dired to browse and manipulate your images
2 ;;
3 ;; Copyright (C) 2005, 2006 Free Software Foundation, Inc.
4 ;;
5 ;; Version: 0.4.11
6 ;; Keywords: multimedia
7 ;; Author: Mathias Dahl <mathias.rem0veth1s.dahl@gmail.com>
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
25
26 ;;; Commentary:
27 ;;
28 ;; BACKGROUND
29 ;; ==========
30 ;;
31 ;; I needed a program to browse, organize and tag my pictures. I got
32 ;; tired of the old gallery program I used as it did not allow
33 ;; multi-file operations easily. Also, it put things out of my
34 ;; control. Image viewing programs I tested did not allow multi-file
35 ;; operations or did not do what I wanted it to.
36 ;;
37 ;; So, I got the idea to use the wonderful functionality of Emacs and
38 ;; `dired' to do it. It would allow me to do almost anything I wanted,
39 ;; which is basically just to browse all my pictures in an easy way,
40 ;; letting me manipulate and tag them in various ways. `dired' already
41 ;; provide all the file handling and navigation facilities; I only
42 ;; needed to add some functions to display the images.
43 ;;
44 ;; I briefly tried out thumbs.el, and although it seemed more
45 ;; powerful than this package, it did not work the way I wanted to. It
46 ;; was too slow to created thumbnails of all files in a directory (I
47 ;; currently keep all my 2000+ images in the same directory) and
48 ;; browsing the thumbnail buffer was slow too. tumme.el will not
49 ;; create thumbnails until they are needed and the browsing is done
50 ;; quickly and easily in dired. I copied a great deal of ideas and
51 ;; code from there though... :)
52 ;;
53 ;; About the name: tumme means thumb in Swedish and it is used for
54 ;; working with thumbnails, so... :) If you want to know how to
55 ;; pronounce it, go to the page on EmacsWiki and download the .ogg
56 ;; file from there.
57 ;;
58 ;; `tumme' stores the thumbnail files in `tumme-dir' using the file
59 ;; name format ORIGNAME.thumb.ORIGEXT. For example
60 ;; ~/.emacs.d/tumme/myimage01.thumb.jpg. The "database" is for now
61 ;; just a plain text file with the following format:
62 ;;
63 ;; file-name-non-directory;comment:comment-text;tag1;tag2;tag3;...;tagN
64 ;;
65 ;;
66 ;; PREREQUISITES
67 ;; =============
68 ;;
69 ;; * The ImageMagick package. Currently, `convert' and `mogrify' are
70 ;; used. Find it here: http://www.imagemagick.org.
71 ;;
72 ;; * For non-lossy rotation of JPEG images, the JpegTRAN program is
73 ;; needed.
74 ;;
75 ;; * For `tumme-get-exif-data' and `tumme-write-exif-data' to work,
76 ;; the command line tool `exiftool' is needed. It can be found here:
77 ;; http://www.sno.phy.queensu.ca/~phil/exiftool/. These two functions
78 ;; are, among other things, used for writing comments to image files
79 ;; using `tumme-thumbnail-set-image-description' and to create
80 ;; "unique" file names using `tumme-get-exif-file-name' (used by
81 ;; `tumme-copy-with-exif-file-name').
82 ;;
83 ;;
84 ;; USAGE
85 ;; =====
86 ;;
87 ;; This information has been moved to the manual. Type `C-h r' to open
88 ;; the Emacs manual and go to the node Thumbnails by typing `g
89 ;; Thumbnails RET'.
90 ;;
91 ;; Quickstart: M-x tumme RET DIRNAME RET
92 ;;
93 ;; where DIRNAME is a directory containing image files.
94 ;;
95 ;; LIMITATIONS
96 ;; ===========
97 ;;
98 ;; * Supports all image formats that Emacs and convert supports, but
99 ;; the thumbnails are hard-coded to JPEG format.
100 ;;
101 ;; * WARNING: The "database" format used might be changed so keep a
102 ;; backup of `tumme-db-file' when testing new versions.
103 ;;
104 ;;
105 ;; TODO
106 ;; ====
107 ;;
108 ;; * Support gallery creation when using per-directory thumbnail
109 ;; storage.
110 ;;
111 ;; * Some sort of auto-rotate function based on rotate info in the
112 ;; EXIF data.
113 ;;
114 ;; * Check if exiftool exist before trying to call it to give a better
115 ;; error message.
116 ;;
117 ;; * Investigate if it is possible to also write the tags to the image
118 ;; files.
119 ;;
120 ;; * From thumbs.el: Add an option for clean-up/max-size functionality
121 ;; for thumbnail directory.
122 ;;
123 ;; * From thumbs.el: Add setroot function.
124 ;;
125 ;; * From thumbs.el: Add image resizing, if useful (tumme's automatic
126 ;; "image fit" might be enough)
127 ;;
128 ;; * From thumbs.el: Add the "modify" commands (emboss, negate,
129 ;; monochrome etc).
130 ;;
131 ;; * Asynchronous creation of thumbnails.
132 ;;
133 ;; * Add `tumme-display-thumbs-ring' and functions to cycle that. Find
134 ;; out which is best, saving old batch just before inserting new, or
135 ;; saving the current batch in the ring when inserting it. Adding it
136 ;; probably needs rewriting `tumme-display-thumbs' to be more general.
137 ;;
138 ;; * Find some way of toggling on and off really nice keybindings in
139 ;; dired (for example, using C-n or <down> instead of C-S-n). Richard
140 ;; suggested that we could keep C-t as prefix for tumme commands as it
141 ;; is currently not used in dired. He also suggested that
142 ;; `dired-next-line' and `dired-previous-line' figure out if tumme is
143 ;; enabled in the current buffer and, if it is, call
144 ;; `tumme-dired-next-line' and `tumme-dired-previous-line',
145 ;; respectively. Update: This is partly done; some bindings have now
146 ;; been added to dired.
147 ;;
148 ;; * Enhanced gallery creation with basic CSS-support and pagination
149 ;; of tag pages with many pictures.
150 ;;
151 ;; * Rewrite `tumme-modify-mark-on-thumb-original-file' to be less
152 ;; ugly.
153 ;;
154 ;; * In some way keep track of buffers and windows and stuff so that
155 ;; it works as the user expects.
156 ;;
157 ;; * More/better documentation
158 ;;
159 ;;
160 ;;; Code:
161
162 (require 'dired)
163 (require 'format-spec)
164 (require 'widget)
165
166 (eval-when-compile
167 (require 'wid-edit))
168
169 (defgroup tumme nil
170 "Use dired to browse your images as thumbnails, and more."
171 :prefix "tumme-"
172 :group 'multimedia)
173
174 (defcustom tumme-dir "~/.emacs.d/tumme/"
175 "*Directory where thumbnail images are stored."
176 :type 'string
177 :group 'tumme)
178
179 (defcustom tumme-thumbnail-storage 'use-tumme-dir
180 "*How to store tumme's thumbnail files.
181 Tumme can store thumbnail files in one of two ways and this is
182 controlled by this variable. \"Use tumme dir\" means that the
183 thumbnails are stored in a central directory. \"Per directory\"
184 means that each thumbnail is stored in a subdirectory called
185 \".tumme\" in the same directory where the image file is.
186 \"Thumbnail Managing Standard\" means that the thumbnails are
187 stored and generated according to the Thumbnail Managing Standard
188 that allows sharing of thumbnails across different programs."
189 :type '(choice :tag "How to store thumbnail files"
190 (const :tag "Thumbnail Managing Standard" standard)
191 (const :tag "Use tumme-dir" use-tumme-dir)
192 (const :tag "Per-directory" per-directory))
193 :group 'tumme)
194
195 (defcustom tumme-db-file "~/.emacs.d/tumme/.tumme_db"
196 "*Database file where file names and their associated tags are stored."
197 :type 'string
198 :group 'tumme)
199
200 (defcustom tumme-temp-image-file "~/.emacs.d/tumme/.tumme_temp"
201 "*Name of temporary image file used by various commands."
202 :type 'string
203 :group 'tumme)
204
205 (defcustom tumme-gallery-dir "~/.emacs.d/tumme/.tumme_gallery"
206 "*Directory to store generated gallery html pages.
207 This path needs to be \"shared\" to the public so that it can access
208 the index.html page that tumme creates."
209 :type 'string
210 :group 'tumme)
211
212 (defcustom tumme-gallery-image-root-url
213 "http://your.own.server/tummepics"
214 "*URL where the full size images are to be found.
215 Note that this path has to be configured in your web server. Tumme
216 expects to find pictures in this directory."
217 :type 'string
218 :group 'tumme)
219
220 (defcustom tumme-gallery-thumb-image-root-url
221 "http://your.own.server/tummethumbs"
222 "*URL where the thumbnail images are to be found.
223 Note that this path has to be configured in your web server. Tumme
224 expects to find pictures in this directory."
225 :type 'string
226 :group 'tumme)
227
228 (defcustom tumme-cmd-create-thumbnail-program
229 "convert"
230 "*Executable used to create thumbnail.
231 Used together with `tumme-cmd-create-thumbnail-options'."
232 :type 'string
233 :group 'tumme)
234
235 (defcustom tumme-cmd-create-thumbnail-options
236 "%p -size %wx%h \"%f\" -resize %wx%h +profile \"*\" jpeg:\"%t\""
237 "*Format of command used to create thumbnail image.
238 Available options are %p which is replaced by
239 `tumme-cmd-create-thumbnail-program', %w which is replaced by
240 `tumme-thumb-width', %h which is replaced by `tumme-thumb-height',
241 %f which is replaced by the file name of the original image and %t
242 which is replaced by the file name of the thumbnail file."
243 :type 'string
244 :group 'tumme)
245
246 (defcustom tumme-cmd-create-temp-image-program
247 "convert"
248 "*Executable used to create temporary image.
249 Used together with `tumme-cmd-create-temp-image-options'."
250 :type 'string
251 :group 'tumme)
252
253 (defcustom tumme-cmd-create-temp-image-options
254 "%p -size %wx%h \"%f\" -resize %wx%h +profile \"*\" jpeg:\"%t\""
255 "*Format of command used to create temporary image for display window.
256 Available options are %p which is replaced by
257 `tumme-cmd-create-temp-image-program', %w and %h which is replaced by
258 the calculated max size for width and height in the image display window,
259 %f which is replaced by the file name of the original image and %t which
260 is replaced by the file name of the temporary file."
261 :type 'string
262 :group 'tumme)
263
264 (defcustom tumme-cmd-pngnq-program (executable-find "pngnq")
265 "*The file name of the `pngnq' program.
266 It quantizes colors of PNG images down to 256 colors."
267 :type '(choice (const :tag "Not Set" nil) string)
268 :group 'tumme)
269
270 (defcustom tumme-cmd-pngcrush-program (executable-find "pngcrush")
271 "*The file name of the `pngcrush' program.
272 It optimizes the compression of PNG images. Also it adds PNG textual chunks
273 with the information required by the Thumbnail Managing Standard."
274 :type '(choice (const :tag "Not Set" nil) string)
275 :group 'tumme)
276
277 (defcustom tumme-cmd-create-standard-thumbnail-command
278 (concat
279 tumme-cmd-create-thumbnail-program " "
280 "-size %wx%h \"%f\" "
281 (unless (or tumme-cmd-pngcrush-program tumme-cmd-pngnq-program)
282 (concat
283 "-set \"Thumb::MTime\" \"%m\" "
284 "-set \"Thumb::URI\" \"file://%f\" "
285 "-set \"Description\" \"Thumbnail of file://%f\" "
286 "-set \"Software\" \"" (emacs-version) "\" "))
287 "-thumbnail %wx%h png:\"%t\""
288 (if tumme-cmd-pngnq-program
289 (concat
290 " ; " tumme-cmd-pngnq-program " -f \"%t\""
291 (unless tumme-cmd-pngcrush-program
292 " ; mv %q %t")))
293 (if tumme-cmd-pngcrush-program
294 (concat
295 (unless tumme-cmd-pngcrush-program
296 " ; cp %t %q")
297 " ; " tumme-cmd-pngcrush-program " -q "
298 "-text b \"Description\" \"Thumbnail of file://%f\" "
299 "-text b \"Software\" \"" (emacs-version) "\" "
300 ;; "-text b \"Thumb::Image::Height\" \"%oh\" "
301 ;; "-text b \"Thumb::Image::Mimetype\" \"%mime\" "
302 ;; "-text b \"Thumb::Image::Width\" \"%ow\" "
303 "-text b \"Thumb::MTime\" \"%m\" "
304 ;; "-text b \"Thumb::Size\" \"%b\" "
305 "-text b \"Thumb::URI\" \"file://%f\" "
306 "%q %t"
307 " ; rm %q")))
308 "*Command to create thumbnails according to the Thumbnail Managing Standard."
309 :type 'string
310 :group 'tumme)
311
312 (defcustom tumme-cmd-rotate-thumbnail-program
313 "mogrify"
314 "*Executable used to rotate thumbnail.
315 Used together with `tumme-cmd-rotate-thumbnail-options'."
316 :type 'string
317 :group 'tumme)
318
319 (defcustom tumme-cmd-rotate-thumbnail-options
320 "%p -rotate %d \"%t\""
321 "*Format of command used to rotate thumbnail image.
322 Available options are %p which is replaced by
323 `tumme-cmd-rotate-thumbnail-program', %d which is replaced by the
324 number of (positive) degrees to rotate the image, normally 90 or 270
325 \(for 90 degrees right and left), %t which is replaced by the file name
326 of the thumbnail file."
327 :type 'string
328 :group 'tumme)
329
330 (defcustom tumme-cmd-rotate-original-program
331 "jpegtran"
332 "*Executable used to rotate original image.
333 Used together with `tumme-cmd-rotate-original-options'."
334 :type 'string
335 :group 'tumme)
336
337 (defcustom tumme-cmd-rotate-original-options
338 "%p -rotate %d -copy all \"%o\" > %t"
339 "*Format of command used to rotate original image.
340 Available options are %p which is replaced by
341 `tumme-cmd-rotate-original-program', %d which is replaced by the
342 number of (positive) degrees to rotate the image, normally 90 or
343 270 \(for 90 degrees right and left), %o which is replaced by the
344 original image file name and %t which is replaced by
345 `tumme-temp-image-file'."
346 :type 'string
347 :group 'tumme)
348
349 (defcustom tumme-temp-rotate-image-file
350 "~/.emacs.d/tumme/.tumme_rotate_temp"
351 "*Temporary file for rotate operations."
352 :type 'string
353 :group 'tumme)
354
355 (defcustom tumme-rotate-original-ask-before-overwrite t
356 "Confirm overwrite of original file after rotate operation.
357 If non-nil, ask user for confirmation before overwriting the
358 original file with `tumme-temp-rotate-image-file'."
359 :type 'boolean
360 :group 'tumme)
361
362 (defcustom tumme-cmd-write-exif-data-program
363 "exiftool"
364 "*Program used to write EXIF data to image.
365 Used together with `tumme-cmd-write-exif-data-options'."
366 :type 'string
367 :group 'tumme)
368
369 (defcustom tumme-cmd-write-exif-data-options
370 "%p -%t=\"%v\" \"%f\""
371 "*Format of command used to write EXIF data.
372 Available options are %p which is replaced by
373 `tumme-cmd-write-exif-data-program', %f which is replaced by the
374 image file name, %t which is replaced by the tag name and %v
375 which is replaced by the tag value."
376 :type 'string
377 :group 'tumme)
378
379 (defcustom tumme-cmd-read-exif-data-program
380 "exiftool"
381 "*Program used to read EXIF data to image.
382 Used together with `tumme-cmd-read-exif-data-program-options'."
383 :type 'string
384 :group 'tumme)
385
386 (defcustom tumme-cmd-read-exif-data-options
387 "%p -s -s -s -%t \"%f\""
388 "*Format of command used to read EXIF data.
389 Available options are %p which is replaced by
390 `tumme-cmd-write-exif-data-options', %f which is replaced
391 by the image file name and %t which is replaced by the tag name."
392 :type 'string
393 :group 'tumme)
394
395 (defcustom tumme-gallery-hidden-tags
396 (list "private" "hidden" "pending")
397 "*List of \"hidden\" tags.
398 Used by `tumme-gallery-generate' to leave out \"hidden\" images."
399 :type '(repeat string)
400 :group 'tumme)
401
402 (defcustom tumme-thumb-size (if (eq 'standard tumme-thumbnail-storage) 128 100)
403 "Size of thumbnails, in pixels.
404 This is the default size for both `tumme-thumb-width' and `tumme-thumb-height'."
405 :type 'integer
406 :group 'tumme)
407
408 (defcustom tumme-thumb-width tumme-thumb-size
409 "Width of thumbnails, in pixels."
410 :type 'integer
411 :group 'tumme)
412
413 (defcustom tumme-thumb-height tumme-thumb-size
414 "Height of thumbnails, in pixels."
415 :type 'integer
416 :group 'tumme)
417
418 (defcustom tumme-thumb-relief 2
419 "*Size of button-like border around thumbnails."
420 :type 'integer
421 :group 'tumme)
422
423 (defcustom tumme-thumb-margin 2
424 "*Size of the margin around thumbnails.
425 This is where you see the cursor."
426 :type 'integer
427 :group 'tumme)
428
429 (defcustom tumme-line-up-method 'dynamic
430 "*Default method for line-up of thumbnails in thumbnail buffer.
431 Used by `tumme-display-thumbs' and other functions that needs to
432 line-up thumbnails. Dynamic means to use the available width of the
433 window containing the thumbnail buffer, Fixed means to use
434 `tumme-thumbs-per-row', Interactive is for asking the user, and No
435 line-up means that no automatic line-up will be done."
436 :type '(choice :tag "Default line-up method"
437 (const :tag "Dynamic" dynamic)
438 (const :tag "Fixed" fixed)
439 (const :tag "Interactive" interactive)
440 (const :tag "No line-up" none))
441 :group 'tumme)
442
443 (defcustom tumme-thumbs-per-row 3
444 "*Number of thumbnails to display per row in thumb buffer."
445 :type 'integer
446 :group 'tumme)
447
448 (defcustom tumme-display-window-width-correction 1
449 "*Number to be used to correct image display window width.
450 Change if the default (1) does not work (i.e. if the image does not
451 completely fit)."
452 :type 'integer
453 :group 'tumme)
454
455 (defcustom tumme-display-window-height-correction 0
456 "*Number to be used to correct image display window height.
457 Change if the default (0) does not work (i.e. if the image does not
458 completely fit)."
459 :type 'integer
460 :group 'tumme)
461
462 (defcustom tumme-track-movement t
463 "The current state of the tracking and mirroring.
464 For more information, see the documentation for
465 `tumme-toggle-movement-tracking'."
466 :type 'boolean
467 :group 'tumme)
468
469 (defcustom tumme-append-when-browsing nil
470 "Append thumbnails in thumbnail buffer when browsing.
471 If non-nil, using `tumme-next-line-and-display' and
472 `tumme-previous-line-and-display' will leave a trail of thumbnail
473 images in the thumbnail buffer. If you enable this and want to clean
474 the thumbnail buffer because it is filled with too many thumbmnails,
475 just call `tumme-display-thumb' to display only the image at point.
476 This value can be toggled using `tumme-toggle-append-browsing'."
477 :type 'boolean
478 :group 'tumme)
479
480 (defcustom tumme-dired-disp-props t
481 "If non-nil, display properties for dired file when browsing.
482 Used by `tumme-next-line-and-display',
483 `tumme-previous-line-and-display' and `tumme-mark-and-display-next'.
484 If the database file is large, this can slow down image browsing in
485 dired and you might want to turn it off."
486 :type 'boolean
487 :group 'tumme)
488
489 (defcustom tumme-display-properties-format "%b: %f (%t): %c"
490 "*Display format for thumbnail properties.
491 %b is replaced with associated dired buffer name, %f with file name
492 \(without path) of original image file, %t with the list of tags and %c
493 with the comment."
494 :type 'string
495 :group 'tumme)
496
497 (defcustom tumme-external-viewer
498 ;; TODO: Use mailcap, dired-guess-shell-alist-default,
499 ;; dired-view-command-alist.
500 (cond ((executable-find "display"))
501 ((executable-find "xli"))
502 ((executable-find "qiv") "qiv -t"))
503 "*Name of external viewer.
504 Including parameters. Used when displaying original image from
505 `tumme-thumbnail-mode'."
506 :type 'string
507 :group 'tumme)
508
509 (defcustom tumme-main-image-directory "~/pics/"
510 "*Name of main image directory, if any.
511 Used by `tumme-copy-with-exif-file-name'."
512 :type 'string
513 :group 'tumme)
514
515 (defcustom tumme-show-all-from-dir-max-files 50
516 "*Maximum number of files to show using `tumme-show-all-from-dir'.
517 before warning the user."
518 :type 'integer
519 :group 'tumme)
520
521 (defun tumme-dir ()
522 "Return the current thumbnails directory (from variable `tumme-dir').
523 Create the thumbnails directory if it does not exist."
524 (let ((tumme-dir (file-name-as-directory
525 (expand-file-name tumme-dir))))
526 (unless (file-directory-p tumme-dir)
527 (make-directory tumme-dir t)
528 (message "Creating thumbnails directory"))
529 tumme-dir))
530
531 (defun tumme-insert-image (file type relief margin)
532 "Insert image FILE of image TYPE, using RELIEF and MARGIN, at point."
533
534 (let ((i `(image :type ,type
535 :file ,file
536 :relief ,relief
537 :margin ,margin)))
538 (insert-image i)))
539
540 (defun tumme-get-thumbnail-image (file)
541 "Return the image descriptor for a thumbnail of image file FILE."
542 (unless (string-match (image-file-name-regexp) file)
543 (error "%s is not a valid image file" file))
544 (let ((thumb-file (tumme-thumb-name file)))
545 (unless (and (file-exists-p thumb-file)
546 (<= (float-time (nth 5 (file-attributes file)))
547 (float-time (nth 5 (file-attributes thumb-file)))))
548 (tumme-create-thumb file thumb-file))
549 (create-image thumb-file)
550 ;; (list 'image :type 'jpeg
551 ;; :file thumb-file
552 ;; :relief tumme-thumb-relief :margin tumme-thumb-margin)
553 ))
554
555 (defun tumme-insert-thumbnail (file original-file-name
556 associated-dired-buffer)
557 "Insert thumbnail image FILE.
558 Add text properties ORIGINAL-FILE-NAME and ASSOCIATED-DIRED-BUFFER."
559 (let (beg end)
560 (setq beg (point))
561 (tumme-insert-image file
562 ;; TODO: this should depend on the real file type
563 (if (eq 'standard tumme-thumbnail-storage)
564 'png 'jpeg)
565 tumme-thumb-relief
566 tumme-thumb-margin)
567 (setq end (point))
568 (add-text-properties
569 beg end
570 (list 'tumme-thumbnail t
571 'original-file-name original-file-name
572 'associated-dired-buffer associated-dired-buffer
573 'tags (tumme-list-tags original-file-name)
574 'mouse-face 'highlight
575 'comment (tumme-get-comment original-file-name)))))
576
577 (defun tumme-thumb-name (file)
578 "Return thumbnail file name for FILE.
579 Depending on the value of `tumme-thumbnail-storage', the file
580 name will vary. For central thumbnail file storage, make a
581 MD5-hash of the image file's directory name and add that to make
582 the thumbnail file name unique. For per-directory storage, just
583 add a subdirectory. For standard storage, produce the file name
584 according to the Thumbnail Managing Standard."
585 (cond ((eq 'standard tumme-thumbnail-storage)
586 (expand-file-name
587 (concat "~/.thumbnails/normal/"
588 (md5 (concat "file://" (expand-file-name file))) ".png")))
589 ((eq 'use-tumme-dir tumme-thumbnail-storage)
590 (let* ((f (expand-file-name file))
591 (md5-hash
592 ;; Is MD5 hashes fast enough? The checksum of a
593 ;; thumbnail file name need not be that
594 ;; "cryptographically" good so a faster one could
595 ;; be used here.
596 (md5 (file-name-as-directory (file-name-directory f)))))
597 (format "%s%s%s.thumb.%s"
598 (file-name-as-directory (expand-file-name (tumme-dir)))
599 (file-name-sans-extension (file-name-nondirectory f))
600 (if md5-hash (concat "_" md5-hash) "")
601 (file-name-extension f))))
602 ((eq 'per-directory tumme-thumbnail-storage)
603 (let ((f (expand-file-name file)))
604 (format "%s.tumme/%s.thumb.%s"
605 (file-name-directory f)
606 (file-name-sans-extension (file-name-nondirectory f))
607 (file-name-extension f))))))
608
609 (defun tumme-create-thumb (original-file thumbnail-file)
610 "For ORIGINAL-FILE, create thumbnail image named THUMBNAIL-FILE."
611 (let* ((width (int-to-string tumme-thumb-width))
612 (height (int-to-string tumme-thumb-height))
613 (modif-time (format "%.0f" (float-time (nth 5 (file-attributes
614 original-file)))))
615 (thumbnail-nq8-file (replace-regexp-in-string ".png\\'" "-nq8.png"
616 thumbnail-file))
617 (command
618 (format-spec
619 (if (eq 'standard tumme-thumbnail-storage)
620 tumme-cmd-create-standard-thumbnail-command
621 tumme-cmd-create-thumbnail-options)
622 (list
623 (cons ?p tumme-cmd-create-thumbnail-program)
624 (cons ?w width)
625 (cons ?h height)
626 (cons ?m modif-time)
627 (cons ?f original-file)
628 (cons ?q thumbnail-nq8-file)
629 (cons ?t thumbnail-file))))
630 thumbnail-dir)
631 (when (not (file-exists-p
632 (setq thumbnail-dir (file-name-directory thumbnail-file))))
633 (message "Creating thumbnail directory.")
634 (make-directory thumbnail-dir))
635 (call-process shell-file-name nil nil nil shell-command-switch command)))
636
637 ;;;###autoload
638 (defun tumme-dired-insert-marked-thumbs ()
639 "Insert thumbnails before file names of marked files in the dired buffer."
640 (interactive)
641 (dired-map-over-marks
642 (let* ((image-pos (dired-move-to-filename))
643 (image-file (dired-get-filename))
644 (thumb-file (tumme-get-thumbnail-image image-file))
645 overlay)
646 ;; If image is not already added, then add it.
647 (unless (delq nil (mapcar (lambda (o) (overlay-get o 'put-image))
648 ;; Can't use (overlays-at (point)), BUG?
649 (overlays-in (point) (1+ (point)))))
650 (put-image thumb-file image-pos)
651 (setq
652 overlay
653 (car (delq nil (mapcar (lambda (o) (and (overlay-get o 'put-image) o))
654 (overlays-in (point) (1+ (point)))))))
655 (overlay-put overlay 'image-file image-file)
656 (overlay-put overlay 'thumb-file thumb-file)))
657 nil)
658 (add-hook 'dired-after-readin-hook 'tumme-dired-after-readin-hook nil t))
659
660 (defun tumme-dired-after-readin-hook ()
661 "Relocate existing thumbnail overlays in dired buffer after reverting.
662 Move them to their corresponding files if they are still exist.
663 Otherwise, delete overlays."
664 (mapc (lambda (overlay)
665 (when (overlay-get overlay 'put-image)
666 (let* ((image-file (overlay-get overlay 'image-file))
667 (image-pos (dired-goto-file image-file)))
668 (if image-pos
669 (move-overlay overlay image-pos image-pos)
670 (delete-overlay overlay)))))
671 (overlays-in (point-min) (point-max))))
672
673 (defun tumme-next-line-and-display ()
674 "Move to next dired line and display thumbnail image."
675 (interactive)
676 (dired-next-line 1)
677 (tumme-display-thumbs
678 t (or tumme-append-when-browsing nil) t)
679 (if tumme-dired-disp-props
680 (tumme-dired-display-properties)))
681
682 (defun tumme-previous-line-and-display ()
683 "Move to previous dired line and display thumbnail image."
684 (interactive)
685 (dired-previous-line 1)
686 (tumme-display-thumbs
687 t (or tumme-append-when-browsing nil) t)
688 (if tumme-dired-disp-props
689 (tumme-dired-display-properties)))
690
691 (defun tumme-toggle-append-browsing ()
692 "Toggle `tumme-append-when-browsing'."
693 (interactive)
694 (setq tumme-append-when-browsing
695 (not tumme-append-when-browsing))
696 (message "Append browsing %s."
697 (if tumme-append-when-browsing
698 "on"
699 "off")))
700
701 (defun tumme-mark-and-display-next ()
702 "Mark current file in dired and display next thumbnail image."
703 (interactive)
704 (dired-mark 1)
705 (tumme-display-thumbs
706 t (or tumme-append-when-browsing nil) t)
707 (if tumme-dired-disp-props
708 (tumme-dired-display-properties)))
709
710 (defun tumme-toggle-dired-display-properties ()
711 "Toggle `tumme-dired-disp-props'."
712 (interactive)
713 (setq tumme-dired-disp-props
714 (not tumme-dired-disp-props))
715 (message "Dired display properties %s."
716 (if tumme-dired-disp-props
717 "on"
718 "off")))
719
720 (defvar tumme-thumbnail-buffer "*tumme*"
721 "Tumme's thumbnail buffer.")
722
723 (defun tumme-create-thumbnail-buffer ()
724 "Create thumb buffer and set `tumme-thumbnail-mode'."
725 (let ((buf (get-buffer-create tumme-thumbnail-buffer)))
726 (with-current-buffer buf
727 (setq buffer-read-only t)
728 (if (not (eq major-mode 'tumme-thumbnail-mode))
729 (tumme-thumbnail-mode)))
730 buf))
731
732 (defvar tumme-display-image-buffer "*tumme-display-image*"
733 "Where larger versions of the images are display.")
734
735 (defun tumme-create-display-image-buffer ()
736 "Create image display buffer and set `tumme-display-image-mode'."
737 (let ((buf (get-buffer-create tumme-display-image-buffer)))
738 (with-current-buffer buf
739 (setq buffer-read-only t)
740 (if (not (eq major-mode 'tumme-display-image-mode))
741 (tumme-display-image-mode)))
742 buf))
743
744 (defvar tumme-saved-window-configuration nil
745 "Saved window configuration.")
746
747 ;;;###autoload
748 (defun tumme-dired-with-window-configuration (dir &optional arg)
749 "Open directory DIR and create a default window configuration.
750
751 Convenience command that:
752
753 - Opens dired in folder DIR
754 - Splits windows in most useful (?) way
755 - Set `truncate-lines' to t
756
757 After the command has finished, you would typically mark some
758 image files in dired and type
759 \\[tumme-display-thumbs] (`tumme-display-thumbs').
760
761 If called with prefix argument ARG, skip splitting of windows.
762
763 The current window configuration is saved and can be restored by
764 calling `tumme-restore-window-configuration'."
765 (interactive "DDirectory: \nP")
766 (let ((buf (tumme-create-thumbnail-buffer))
767 (buf2 (tumme-create-display-image-buffer)))
768 (setq tumme-saved-window-configuration
769 (current-window-configuration))
770 (dired dir)
771 (delete-other-windows)
772 (when (not arg)
773 (split-window-horizontally)
774 (setq truncate-lines t)
775 (save-excursion
776 (other-window 1)
777 (switch-to-buffer buf)
778 (split-window-vertically)
779 (other-window 1)
780 (switch-to-buffer buf2)
781 (other-window -2)))))
782
783 (defun tumme-restore-window-configuration ()
784 "Restore window configuration.
785 Restore any changes to the window configuration made by calling
786 `tumme-dired-with-window-configuration'."
787 (interactive)
788 (if tumme-saved-window-configuration
789 (set-window-configuration tumme-saved-window-configuration)
790 (message "No saved window configuration")))
791
792 ;;;###autoload
793 (defun tumme-display-thumbs (&optional arg append do-not-pop)
794 "Display thumbnails of all marked files, in `tumme-thumbnail-buffer'.
795 If a thumbnail image does not exist for a file, it is created on the
796 fly. With prefix argument ARG, display only thumbnail for file at
797 point (this is useful if you have marked some files but want to show
798 another one).
799
800 Recommended usage is to split the current frame horizontally so that
801 you have the dired buffer in the left window and the
802 `tumme-thumbnail-buffer' buffer in the right window.
803
804 With optional argument APPEND, append thumbnail to thumbnail buffer
805 instead of erasing it first.
806
807 Option argument DO-NOT-POP controls if `pop-to-buffer' should be
808 used or not. If non-nil, use `display-buffer' instead of
809 `pop-to-buffer'. This is used from functions like
810 `tumme-next-line-and-display' and
811 `tumme-previous-line-and-display' where we do not want the
812 thumbnail buffer to be selected."
813 (interactive "P")
814 (let ((buf (tumme-create-thumbnail-buffer))
815 curr-file thumb-name files count dired-buf beg)
816 (if arg
817 (setq files (list (dired-get-filename)))
818 (setq files (dired-get-marked-files)))
819 (setq dired-buf (current-buffer))
820 (with-current-buffer buf
821 (let ((inhibit-read-only t))
822 (if (not append)
823 (erase-buffer)
824 (goto-char (point-max)))
825 (mapcar
826 (lambda (curr-file)
827 (setq thumb-name (tumme-thumb-name curr-file))
828 (if (and (not (file-exists-p thumb-name))
829 (not (= 0 (tumme-create-thumb curr-file thumb-name))))
830 (message "Thumb could not be created for file %s" curr-file)
831 (tumme-insert-thumbnail thumb-name curr-file dired-buf)))
832 files))
833 (cond ((eq 'dynamic tumme-line-up-method)
834 (tumme-line-up-dynamic))
835 ((eq 'fixed tumme-line-up-method)
836 (tumme-line-up))
837 ((eq 'interactive tumme-line-up-method)
838 (tumme-line-up-interactive))
839 ((eq 'none tumme-line-up-method)
840 nil)
841 (t
842 (tumme-line-up-dynamic))))
843 (if do-not-pop
844 (display-buffer tumme-thumbnail-buffer)
845 (pop-to-buffer tumme-thumbnail-buffer))))
846
847 ;;;###autoload
848 (defun tumme-show-all-from-dir (dir)
849 "Make a preview buffer for all images in DIR and display it.
850 If the number of files in DIR matching `image-file-name-regexp'
851 exceeds `tumme-show-all-from-dir-max-files', a warning will be
852 displayed."
853 (interactive "DDir: ")
854 (dired dir)
855 (dired-mark-files-regexp (image-file-name-regexp))
856 (let ((files (dired-get-marked-files)))
857 (if (or (<= (length files) tumme-show-all-from-dir-max-files)
858 (and (> (length files) tumme-show-all-from-dir-max-files)
859 (y-or-n-p
860 (format
861 "Directory contains more than %d image files. Proceed? "
862 tumme-show-all-from-dir-max-files))))
863 (progn
864 (tumme-display-thumbs)
865 (pop-to-buffer tumme-thumbnail-buffer))
866 (message "Cancelled."))))
867
868 ;;;###autoload
869 (defalias 'tumme 'tumme-show-all-from-dir)
870
871 (defun tumme-write-tag (files tag)
872 "For all FILES, writes TAG to the image database."
873 (save-excursion
874 (let (end buf)
875 (setq buf (find-file tumme-db-file))
876 (if (not (listp files))
877 (if (stringp files)
878 (setq files (list files))
879 (error "Files must be a string or a list of strings!")))
880 (mapcar
881 (lambda (file)
882 (goto-char (point-min))
883 (if (search-forward-regexp
884 (format "^%s" file) nil t)
885 (progn
886 (end-of-line)
887 (setq end (point))
888 (beginning-of-line)
889 (when (not (search-forward (format ";%s" tag) end t))
890 (end-of-line)
891 (insert (format ";%s" tag))))
892 (goto-char (point-max))
893 (insert (format "\n%s;%s" file tag))))
894 files)
895 (save-buffer)
896 (kill-buffer buf))))
897
898 (defun tumme-remove-tag (files tag)
899 "For all FILES, remove TAG from the image database."
900 (save-excursion
901 (let (end buf start)
902 (setq buf (find-file tumme-db-file))
903 (if (not (listp files))
904 (if (stringp files)
905 (setq files (list files))
906 (error "Files must be a string or a list of strings!")))
907 (mapcar
908 (lambda (file)
909 (goto-char (point-min))
910 (when (search-forward-regexp
911 (format "^%s" file) nil t)
912 (end-of-line)
913 (setq end (point))
914 (beginning-of-line)
915 (when (search-forward-regexp (format "\\(;%s\\)" tag) end t)
916 (delete-region (match-beginning 1) (match-end 1))
917 ;; Check if file should still be in the database. If
918 ;; it has no tags or comments, it will be removed.
919 (end-of-line)
920 (setq end (point))
921 (beginning-of-line)
922 (when (not (search-forward ";" end t))
923 (kill-line 1)
924 ;; If on empty line at end of buffer
925 (when (and (eobp)
926 (looking-at "^$"))
927 (delete-backward-char 1))))))
928 files)
929 (save-buffer)
930 (kill-buffer buf))))
931
932 (defun tumme-list-tags (file)
933 "Read all tags for image FILE from the image database."
934 (save-excursion
935 (let (end buf (tags ""))
936 (setq buf (find-file tumme-db-file))
937 (goto-char (point-min))
938 (when (search-forward-regexp
939 (format "^%s" file) nil t)
940 (end-of-line)
941 (setq end (point))
942 (beginning-of-line)
943 (if (search-forward ";" end t)
944 (if (search-forward "comment:" end t)
945 (if (search-forward ";" end t)
946 (setq tags (buffer-substring (point) end)))
947 (setq tags (buffer-substring (point) end)))))
948 (kill-buffer buf)
949 (split-string tags ";"))))
950
951 ;;;###autoload
952 (defun tumme-tag-files (arg)
953 "Tag marked file(s) in dired. With prefix ARG, tag file at point."
954 (interactive "P")
955 (let ((tag (read-string "Tags to add (separate tags with a semicolon): "))
956 curr-file files)
957 (if arg
958 (setq files (dired-get-filename))
959 (setq files (dired-get-marked-files)))
960 (tumme-write-tag files tag)))
961
962 (defun tumme-tag-thumbnail ()
963 "Tag current thumbnail."
964 (interactive)
965 (let ((tag (read-string "Tags to add (separate tags with a semicolon): ")))
966 (tumme-write-tag (tumme-original-file-name) tag))
967 (tumme-update-property
968 'tags (tumme-list-tags (tumme-original-file-name))))
969
970 ;;;###autoload
971 (defun tumme-delete-tag (arg)
972 "Remove tag for selected file(s).
973 With prefix argument ARG, remove tag from file at point."
974 (interactive "P")
975 (let ((tag (read-string "Tag to remove: "))
976 files)
977 (if arg
978 (setq files (list (dired-get-filename)))
979 (setq files (dired-get-marked-files)))
980 (tumme-remove-tag files tag)))
981
982 (defun tumme-tag-thumbnail-remove ()
983 "Remove tag from thumbnail."
984 (interactive)
985 (let ((tag (read-string "Tag to remove: ")))
986 (tumme-remove-tag (tumme-original-file-name) tag))
987 (tumme-update-property
988 'tags (tumme-list-tags (tumme-original-file-name))))
989
990 (defun tumme-original-file-name ()
991 "Get original file name for thumbnail or display image at point."
992 (get-text-property (point) 'original-file-name))
993
994 (defun tumme-associated-dired-buffer ()
995 "Get associated dired buffer at point."
996 (get-text-property (point) 'associated-dired-buffer))
997
998 (defun tumme-get-buffer-window (buf)
999 "Return window where buffer BUF is."
1000 (get-window-with-predicate
1001 (lambda (window)
1002 (equal (window-buffer window) buf))
1003 nil t))
1004
1005 (defun tumme-track-original-file ()
1006 "Track the original file in the associated dired buffer.
1007 See documentation for `tumme-toggle-movement-tracking'. Interactive
1008 use only useful if `tumme-track-movement' is nil."
1009 (interactive)
1010 (let ((old-buf (current-buffer))
1011 (dired-buf (tumme-associated-dired-buffer))
1012 (file-name (tumme-original-file-name)))
1013 (when (and dired-buf file-name)
1014 (setq file-name (file-name-nondirectory file-name))
1015 (set-buffer dired-buf)
1016 (goto-char (point-min))
1017 (if (not (search-forward file-name nil t))
1018 (message "Could not track file")
1019 (dired-move-to-filename)
1020 (set-window-point
1021 (tumme-get-buffer-window dired-buf) (point)))
1022 (set-buffer old-buf))))
1023
1024 (defun tumme-toggle-movement-tracking ()
1025 "Turn on and off `tumme-track-movement'.
1026 Tracking of the movements between thumbnail and dired buffer so that
1027 they are \"mirrored\" in the dired buffer. When this is on, moving
1028 around in the thumbnail or dired buffer will find the matching
1029 position in the other buffer."
1030 (interactive)
1031 (setq tumme-track-movement (not tumme-track-movement))
1032 (message "Tracking %s" (if tumme-track-movement "on" "off")))
1033
1034 (defun tumme-track-thumbnail ()
1035 "Track current dired file's thumb in `tumme-thumbnail-buffer'.
1036 This is almost the same as what `tumme-track-original-file' does, but
1037 the other way around."
1038 (let ((file (dired-get-filename))
1039 (old-buf (current-buffer))
1040 prop-val found)
1041 (when (get-buffer tumme-thumbnail-buffer)
1042 (set-buffer tumme-thumbnail-buffer)
1043 (goto-char (point-min))
1044 (while (and (not (eobp))
1045 (not found))
1046 (if (and (setq prop-val
1047 (get-text-property (point) 'original-file-name))
1048 (string= prop-val file))
1049 (setq found t))
1050 (if (not found)
1051 (forward-char 1)))
1052 (when found
1053 (set-window-point
1054 (tumme-thumbnail-window) (point))
1055 (tumme-display-thumb-properties))
1056 (set-buffer old-buf))))
1057
1058 (defun tumme-dired-next-line (&optional arg)
1059 "Call `dired-next-line', then track thumbnail.
1060 This can safely replace `dired-next-line'. With prefix argument, move
1061 ARG lines."
1062 (interactive "P")
1063 (dired-next-line (or arg 1))
1064 (if tumme-track-movement
1065 (tumme-track-thumbnail)))
1066
1067 (defun tumme-dired-previous-line (&optional arg)
1068 "Call `dired-previous-line', then track thumbnail.
1069 This can safely replace `dired-previous-line'. With prefix argument,
1070 move ARG lines."
1071 (interactive "P")
1072 (dired-previous-line (or arg 1))
1073 (if tumme-track-movement
1074 (tumme-track-thumbnail)))
1075
1076 (defun tumme-forward-char ()
1077 "Move to next image and display properties."
1078 (interactive)
1079 ;; Before we move, make sure that there is an image two positions
1080 ;; forward.
1081 (when (save-excursion
1082 (forward-char 2)
1083 (tumme-image-at-point-p))
1084 (forward-char)
1085 (while (and (not (eobp))
1086 (not (tumme-image-at-point-p)))
1087 (forward-char))
1088 (if tumme-track-movement
1089 (tumme-track-original-file)))
1090 (tumme-display-thumb-properties))
1091
1092 (defun tumme-backward-char ()
1093 "Move to previous image and display properties."
1094 (interactive)
1095 (when (not (bobp))
1096 (backward-char)
1097 (while (and (not (bobp))
1098 (not (tumme-image-at-point-p)))
1099 (backward-char))
1100 (if tumme-track-movement
1101 (tumme-track-original-file)))
1102 (tumme-display-thumb-properties))
1103
1104 (defun tumme-next-line ()
1105 "Move to next line and display properties."
1106 (interactive)
1107 (next-line 1)
1108 ;; If we end up in an empty spot, back up to the next thumbnail.
1109 (if (not (tumme-image-at-point-p))
1110 (tumme-backward-char))
1111 (if tumme-track-movement
1112 (tumme-track-original-file))
1113 (tumme-display-thumb-properties))
1114
1115
1116 (defun tumme-previous-line ()
1117 "Move to previous line and display properties."
1118 (interactive)
1119 (previous-line 1)
1120 ;; If we end up in an empty spot, back up to the next
1121 ;; thumbnail. This should only happen if the user deleted a
1122 ;; thumbnail and did not refresh, so it is not very common. But we
1123 ;; can handle it in a good manner, so why not?
1124 (if (not (tumme-image-at-point-p))
1125 (tumme-backward-char))
1126 (if tumme-track-movement
1127 (tumme-track-original-file))
1128 (tumme-display-thumb-properties))
1129
1130 (defun tumme-format-properties-string (buf file props comment)
1131 "Format display properties.
1132 BUF is the associated dired buffer, FILE is the original image file
1133 name, PROPS is a list of tags and COMMENT is the image files's
1134 comment."
1135 (format-spec
1136 tumme-display-properties-format
1137 (list
1138 (cons ?b buf)
1139 (cons ?f file)
1140 (cons ?t (or (princ props) ""))
1141 (cons ?c (or comment "")))))
1142
1143 (defun tumme-display-thumb-properties ()
1144 "Display thumbnail properties in the echo area."
1145 (if (not (eobp))
1146 (let ((file-name (file-name-nondirectory (tumme-original-file-name)))
1147 (dired-buf (buffer-name (tumme-associated-dired-buffer)))
1148 (props (mapconcat
1149 'princ
1150 (get-text-property (point) 'tags)
1151 ", "))
1152 (comment (get-text-property (point) 'comment)))
1153 (if file-name
1154 (message
1155 (tumme-format-properties-string
1156 dired-buf
1157 file-name
1158 props
1159 comment))))))
1160
1161 (defun tumme-dired-file-marked-p ()
1162 "Check whether file on current line is marked or not."
1163 (save-excursion
1164 (beginning-of-line)
1165 (not (looking-at "^ .*$"))))
1166
1167 (defun tumme-modify-mark-on-thumb-original-file (command)
1168 "Modify mark in dired buffer.
1169 This is quite ugly but I don't know how to implemented in a better
1170 way. COMMAND is one of 'mark for marking file in dired, 'unmark for
1171 unmarking file in dired or 'flag for flagging file for delete in
1172 dired."
1173 (let ((file-name (tumme-original-file-name))
1174 (dired-buf (tumme-associated-dired-buffer)))
1175 (if (not (and dired-buf file-name))
1176 (message "No image, or image with correct properties, at point.")
1177 (with-current-buffer dired-buf
1178 (message file-name)
1179 (setq file-name (file-name-nondirectory file-name))
1180 (goto-char (point-min))
1181 (if (search-forward file-name nil t)
1182 (cond ((eq command 'mark) (dired-mark 1))
1183 ((eq command 'unmark) (dired-unmark 1))
1184 ((eq command 'toggle)
1185 (if (tumme-dired-file-marked-p)
1186 (dired-unmark 1)
1187 (dired-mark 1)))
1188 ((eq command 'flag) (dired-flag-file-deletion 1))))))))
1189
1190 (defun tumme-mark-thumb-original-file ()
1191 "Mark original image file in associated dired buffer."
1192 (interactive)
1193 (tumme-modify-mark-on-thumb-original-file 'mark)
1194 (tumme-forward-char))
1195
1196 (defun tumme-unmark-thumb-original-file ()
1197 "Unmark original image file in associated dired buffer."
1198 (interactive)
1199 (tumme-modify-mark-on-thumb-original-file 'unmark)
1200 (tumme-forward-char))
1201
1202 (defun tumme-flag-thumb-original-file ()
1203 "Flag original image file for deletion in associated dired buffer."
1204 (interactive)
1205 (tumme-modify-mark-on-thumb-original-file 'flag)
1206 (tumme-forward-char))
1207
1208 (defun tumme-toggle-mark-thumb-original-file ()
1209 "Toggle mark on original image file in associated dired buffer."
1210 (interactive)
1211 (tumme-modify-mark-on-thumb-original-file 'toggle))
1212
1213 (defun tumme-jump-original-dired-buffer ()
1214 "Jump to the dired buffer associated with the current image file.
1215 You probably want to use this together with
1216 `tumme-track-original-file'."
1217 (interactive)
1218 (let ((buf (tumme-associated-dired-buffer))
1219 window frame)
1220 (setq window (tumme-get-buffer-window buf))
1221 (if window
1222 (progn
1223 (if (not (equal (selected-frame) (setq frame (window-frame window))))
1224 (select-frame-set-input-focus frame))
1225 (select-window window))
1226 (message "Associated dired buffer not visible"))))
1227
1228 ;;;###autoload
1229 (defun tumme-jump-thumbnail-buffer ()
1230 "Jump to thumbnail buffer."
1231 (interactive)
1232 (let ((window (tumme-thumbnail-window))
1233 frame)
1234 (if window
1235 (progn
1236 (if (not (equal (selected-frame) (setq frame (window-frame window))))
1237 (select-frame-set-input-focus frame))
1238 (select-window window))
1239 (message "Thumbnail buffer not visible"))))
1240
1241 (defvar tumme-thumbnail-mode-map (make-sparse-keymap)
1242 "Keymap for `tumme-thumbnail-mode'.")
1243
1244 (defvar tumme-thumbnail-mode-line-up-map (make-sparse-keymap)
1245 "Keymap for line-up commands in `tumme-thumbnail-mode'.")
1246
1247 (defvar tumme-thumbnail-mode-tag-map (make-sparse-keymap)
1248 "Keymap for tag commands in `tumme-thumbnail-mode'.")
1249
1250 (defun tumme-define-thumbnail-mode-keymap ()
1251 "Define keymap for `tumme-thumbnail-mode'."
1252
1253 ;; Keys
1254 (define-key tumme-thumbnail-mode-map [right] 'tumme-forward-char)
1255 (define-key tumme-thumbnail-mode-map [left] 'tumme-backward-char)
1256 (define-key tumme-thumbnail-mode-map [up] 'tumme-previous-line)
1257 (define-key tumme-thumbnail-mode-map [down] 'tumme-next-line)
1258 (define-key tumme-thumbnail-mode-map "\C-f" 'tumme-forward-char)
1259 (define-key tumme-thumbnail-mode-map "\C-b" 'tumme-backward-char)
1260 (define-key tumme-thumbnail-mode-map "\C-p" 'tumme-previous-line)
1261 (define-key tumme-thumbnail-mode-map "\C-n" 'tumme-next-line)
1262
1263 (define-key tumme-thumbnail-mode-map "d" 'tumme-flag-thumb-original-file)
1264 (define-key tumme-thumbnail-mode-map [delete]
1265 'tumme-flag-thumb-original-file)
1266 (define-key tumme-thumbnail-mode-map "m" 'tumme-mark-thumb-original-file)
1267 (define-key tumme-thumbnail-mode-map "u" 'tumme-unmark-thumb-original-file)
1268 (define-key tumme-thumbnail-mode-map "." 'tumme-track-original-file)
1269 (define-key tumme-thumbnail-mode-map [tab] 'tumme-jump-original-dired-buffer)
1270
1271 ;; add line-up map
1272 (define-key tumme-thumbnail-mode-map "g" tumme-thumbnail-mode-line-up-map)
1273
1274 ;; map it to "g" so that the user can press it more quickly
1275 (define-key tumme-thumbnail-mode-line-up-map "g" 'tumme-line-up-dynamic)
1276 ;; "f" for "fixed" number of thumbs per row
1277 (define-key tumme-thumbnail-mode-line-up-map "f" 'tumme-line-up)
1278 ;; "i" for "interactive"
1279 (define-key tumme-thumbnail-mode-line-up-map "i" 'tumme-line-up-interactive)
1280
1281 ;; add tag map
1282 (define-key tumme-thumbnail-mode-map "t" tumme-thumbnail-mode-tag-map)
1283
1284 ;; map it to "t" so that the user can press it more quickly
1285 (define-key tumme-thumbnail-mode-tag-map "t" 'tumme-tag-thumbnail)
1286 ;; "r" for "remove"
1287 (define-key tumme-thumbnail-mode-tag-map "r" 'tumme-tag-thumbnail-remove)
1288
1289 (define-key tumme-thumbnail-mode-map "\C-m"
1290 'tumme-display-thumbnail-original-image)
1291 (define-key tumme-thumbnail-mode-map [C-return]
1292 'tumme-thumbnail-display-external)
1293
1294 (define-key tumme-thumbnail-mode-map "l" 'tumme-rotate-thumbnail-left)
1295 (define-key tumme-thumbnail-mode-map "r" 'tumme-rotate-thumbnail-right)
1296
1297 (define-key tumme-thumbnail-mode-map "L" 'tumme-rotate-original-left)
1298 (define-key tumme-thumbnail-mode-map "R" 'tumme-rotate-original-right)
1299
1300 (define-key tumme-thumbnail-mode-map "D"
1301 'tumme-thumbnail-set-image-description)
1302
1303 (define-key tumme-thumbnail-mode-map "\C-d" 'tumme-delete-char)
1304 (define-key tumme-thumbnail-mode-map " "
1305 'tumme-display-next-thumbnail-original)
1306 (define-key tumme-thumbnail-mode-map
1307 (kbd "DEL") 'tumme-display-previous-thumbnail-original)
1308 (define-key tumme-thumbnail-mode-map "c" 'tumme-comment-thumbnail)
1309 (define-key tumme-thumbnail-mode-map "q" 'tumme-kill-buffer-and-window)
1310
1311 ;; Mouse
1312 (define-key tumme-thumbnail-mode-map [mouse-2] 'tumme-mouse-display-image)
1313 (define-key tumme-thumbnail-mode-map [mouse-1] 'tumme-mouse-select-thumbnail)
1314
1315 ;; Seems I must first set C-down-mouse-1 to undefined, or else it
1316 ;; will trigger the buffer menu. If I try to instead bind
1317 ;; C-down-mouse-1 to `tumme-mouse-toggle-mark', I get a message
1318 ;; about C-mouse-1 not being defined afterwards. Annoying, but I
1319 ;; probably do not completely understand mouse events.
1320
1321 (define-key tumme-thumbnail-mode-map [C-down-mouse-1] 'undefined)
1322 (define-key tumme-thumbnail-mode-map [C-mouse-1] 'tumme-mouse-toggle-mark)
1323
1324 ;; Menu
1325 (define-key tumme-thumbnail-mode-map [menu-bar tumme]
1326 (cons "Tumme" (make-sparse-keymap "Tumme")))
1327
1328 (define-key tumme-thumbnail-mode-map
1329 [menu-bar tumme tumme-kill-buffer-and-window]
1330 '("Quit" . tumme-kill-buffer-and-window))
1331
1332 (define-key tumme-thumbnail-mode-map
1333 [menu-bar tumme tumme-delete-char]
1334 '("Delete thumbnail from buffer" . tumme-delete-char))
1335
1336 (define-key tumme-thumbnail-mode-map
1337 [menu-bar tumme tumme-tag-thumbnail-remove]
1338 '("Remove tag from thumbnail" . tumme-tag-thumbnail-remove))
1339
1340 (define-key tumme-thumbnail-mode-map
1341 [menu-bar tumme tumme-tag-thumbnail]
1342 '("Tag thumbnail" . tumme-tag-thumbnail))
1343
1344 (define-key tumme-thumbnail-mode-map
1345 [menu-bar tumme tumme-comment-thumbnail]
1346 '("Comment thumbnail" . tumme-comment-thumbnail))
1347
1348 (define-key tumme-thumbnail-mode-map
1349 [menu-bar tumme tumme-refresh-thumb]
1350 '("Refresh thumb" . tumme-refresh-thumb))
1351 (define-key tumme-thumbnail-mode-map
1352 [menu-bar tumme tumme-line-up-dynamic]
1353 '("Dynamic line up" . tumme-line-up-dynamic))
1354 (define-key tumme-thumbnail-mode-map
1355 [menu-bar tumme tumme-line-up]
1356 '("Line up thumbnails" . tumme-line-up))
1357
1358 (define-key tumme-thumbnail-mode-map
1359 [menu-bar tumme tumme-rotate-thumbnail-left]
1360 '("Rotate thumbnail left" . tumme-rotate-thumbnail-left))
1361 (define-key tumme-thumbnail-mode-map
1362 [menu-bar tumme tumme-rotate-thumbnail-right]
1363 '("Rotate thumbnail right" . tumme-rotate-thumbnail-right))
1364
1365 (define-key tumme-thumbnail-mode-map
1366 [menu-bar tumme tumme-rotate-original-left]
1367 '("Rotate original left" . tumme-rotate-original-left))
1368 (define-key tumme-thumbnail-mode-map
1369 [menu-bar tumme tumme-rotate-original-right]
1370 '("Rotate original right" . tumme-rotate-original-right))
1371
1372 (define-key tumme-thumbnail-mode-map
1373 [menu-bar tumme tumme-toggle-movement-tracking]
1374 '("Toggle movement tracking on/off" . tumme-toggle-movement-tracking))
1375
1376 (define-key tumme-thumbnail-mode-map
1377 [menu-bar tumme tumme-jump-original-dired-buffer]
1378 '("Jump to dired buffer" . tumme-jump-original-dired-buffer))
1379 (define-key tumme-thumbnail-mode-map
1380 [menu-bar tumme tumme-track-original-file]
1381 '("Track original" . tumme-track-original-file))
1382
1383 (define-key tumme-thumbnail-mode-map
1384 [menu-bar tumme tumme-flag-thumb-original-file]
1385 '("Flag original for deletion" . tumme-flag-thumb-original-file))
1386 (define-key tumme-thumbnail-mode-map
1387 [menu-bar tumme tumme-unmark-thumb-original-file]
1388 '("Unmark original" . tumme-unmark-thumb-original-file))
1389 (define-key tumme-thumbnail-mode-map
1390 [menu-bar tumme tumme-mark-thumb-original-file]
1391 '("Mark original" . tumme-mark-thumb-original-file))
1392
1393 (define-key tumme-thumbnail-mode-map
1394 [menu-bar tumme tumme-thumbnail-display-external]
1395 '("Display in external viewer" . tumme-thumbnail-display-external))
1396 (define-key tumme-thumbnail-mode-map
1397 [menu-bar tumme tumme-display-thumbnail-original-image]
1398 '("Display image" . tumme-display-thumbnail-original-image)))
1399
1400 (defvar tumme-display-image-mode-map (make-sparse-keymap)
1401 "Keymap for `tumme-display-image-mode'.")
1402
1403 (defun tumme-define-display-image-mode-keymap ()
1404 "Define keymap for `tumme-display-image-mode'."
1405
1406 ;; Keys
1407 (define-key tumme-display-image-mode-map "q" 'tumme-kill-buffer-and-window)
1408
1409 (define-key tumme-display-image-mode-map "f"
1410 'tumme-display-current-image-full)
1411
1412 (define-key tumme-display-image-mode-map "s"
1413 'tumme-display-current-image-sized)
1414
1415 ;; Menu
1416 (define-key tumme-display-image-mode-map [menu-bar tumme]
1417 (cons "Tumme" (make-sparse-keymap "Tumme")))
1418
1419 (define-key tumme-display-image-mode-map
1420 [menu-bar tumme tumme-kill-buffer-and-window]
1421 '("Quit" . tumme-kill-buffer-and-window))
1422
1423 (define-key tumme-display-image-mode-map
1424 [menu-bar tumme tumme-display-current-image-sized]
1425 '("Display original, sized to fit" . tumme-display-current-image-sized))
1426
1427 (define-key tumme-display-image-mode-map
1428 [menu-bar tumme tumme-display-current-image-full]
1429 '("Display original, full size" . tumme-display-current-image-full))
1430
1431 )
1432
1433 (defun tumme-display-current-image-full ()
1434 "Display current image in full size."
1435 (interactive)
1436 (let ((file (tumme-original-file-name)))
1437 (if file
1438 (progn
1439 (tumme-display-image file t)
1440 (message "Full size image displayed"))
1441 (error "No original file name at point"))))
1442
1443 (defun tumme-display-current-image-sized ()
1444 "Display current image in sized to fit window dimensions."
1445 (interactive)
1446 (let ((file (tumme-original-file-name)))
1447 (if file
1448 (progn
1449 (tumme-display-image file)
1450 (message "Full size image displayed"))
1451 (error "No original file name at point"))))
1452
1453 (define-derived-mode tumme-thumbnail-mode
1454 fundamental-mode "tumme-thumbnail"
1455 "Browse and manipulate thumbnail images using dired.
1456 Use `tumme-dired' and `tumme-setup-dired-keybindings' to get a
1457 nice setup to start with."
1458 (tumme-define-thumbnail-mode-keymap)
1459 (message "tumme-thumbnail-mode enabled"))
1460
1461 (define-derived-mode tumme-display-image-mode
1462 fundamental-mode "tumme-image-display"
1463 "Mode for displaying and manipulating original image.
1464 Resized or in full-size."
1465 (tumme-define-display-image-mode-keymap)
1466 (message "tumme-display-image-mode enabled"))
1467
1468 ;;;###autoload
1469 (defun tumme-setup-dired-keybindings ()
1470 "Setup easy-to-use keybindings for the commands to be used in dired mode.
1471 Note that n, p and <down> and <up> will be hijacked and bound to
1472 `tumme-dired-x-line'."
1473 (interactive)
1474
1475 ;; Hijack previous and next line movement. Let C-p and C-b be
1476 ;; though...
1477
1478 (define-key dired-mode-map "p" 'tumme-dired-previous-line)
1479 (define-key dired-mode-map "n" 'tumme-dired-next-line)
1480 (define-key dired-mode-map [up] 'tumme-dired-previous-line)
1481 (define-key dired-mode-map [down] 'tumme-dired-next-line)
1482
1483 (define-key dired-mode-map (kbd "C-S-n") 'tumme-next-line-and-display)
1484 (define-key dired-mode-map (kbd "C-S-p") 'tumme-previous-line-and-display)
1485 (define-key dired-mode-map (kbd "C-S-m") 'tumme-mark-and-display-next)
1486
1487 (define-key dired-mode-map "\C-td" 'tumme-display-thumbs)
1488 (define-key dired-mode-map "\C-tt" 'tumme-tag-files)
1489 (define-key dired-mode-map "\C-tr" 'tumme-delete-tag)
1490 (define-key dired-mode-map [tab] 'tumme-jump-thumbnail-buffer)
1491 (define-key dired-mode-map "\C-ti" 'tumme-dired-display-image)
1492 (define-key dired-mode-map "\C-tx" 'tumme-dired-display-external)
1493 (define-key dired-mode-map "\C-ta" 'tumme-display-thumbs-append)
1494 (define-key dired-mode-map "\C-t." 'tumme-display-thumb)
1495 (define-key dired-mode-map "\C-tc" 'tumme-dired-comment-files)
1496 (define-key dired-mode-map "\C-tf" 'tumme-mark-tagged-files)
1497
1498 ;; Menu for dired
1499 (define-key dired-mode-map [menu-bar tumme]
1500 (cons "Tumme" (make-sparse-keymap "Tumme")))
1501
1502 (define-key dired-mode-map [menu-bar tumme tumme-copy-with-exif-file-name]
1503 '("Copy with EXIF file name" . tumme-copy-with-exif-file-name))
1504
1505 (define-key dired-mode-map [menu-bar tumme tumme-dired-comment-files]
1506 '("Comment files" . tumme-dired-comment-files))
1507
1508 (define-key dired-mode-map [menu-bar tumme tumme-mark-tagged-files]
1509 '("Mark tagged files" . tumme-mark-tagged-files))
1510
1511 (define-key dired-mode-map [menu-bar tumme tumme-delete-tag]
1512 '("Remove tag from files" . tumme-delete-tag))
1513
1514 (define-key dired-mode-map [menu-bar tumme tumme-tag-files]
1515 '("Tag files" . tumme-tag-files))
1516
1517 (define-key dired-mode-map [menu-bar tumme tumme-jump-thumbnail-buffer]
1518 '("Jump to thumbnail buffer" . tumme-jump-thumbnail-buffer))
1519
1520 (define-key dired-mode-map [menu-bar tumme tumme-toggle-movement-tracking]
1521 '("Toggle movement tracking" . tumme-toggle-movement-tracking))
1522
1523 (define-key dired-mode-map
1524 [menu-bar tumme tumme-toggle-append-browsing]
1525 '("Toggle append browsing" . tumme-toggle-append-browsing))
1526
1527 (define-key dired-mode-map
1528 [menu-bar tumme tumme-toggle-disp-props]
1529 '("Toggle display properties" . tumme-toggle-dired-display-properties))
1530
1531 (define-key dired-mode-map
1532 [menu-bar tumme tumme-dired-display-external]
1533 '("Display in external viewer" . tumme-dired-display-external))
1534 (define-key dired-mode-map
1535 [menu-bar tumme tumme-dired-display-image]
1536 '("Display image" . tumme-dired-display-image))
1537 (define-key dired-mode-map
1538 [menu-bar tumme tumme-display-thumb]
1539 '("Display this thumbnail" . tumme-display-thumb))
1540 (define-key dired-mode-map
1541 [menu-bar tumme tumme-display-thumbs-append]
1542 '("Display thumbnails append" . tumme-display-thumbs-append))
1543 (define-key dired-mode-map
1544 [menu-bar tumme tumme-display-thumbs]
1545 '("Display thumbnails" . tumme-display-thumbs))
1546
1547 (define-key dired-mode-map
1548 [menu-bar tumme tumme-create-thumbs]
1549 '("Create thumbnails for marked files" . tumme-create-thumbs))
1550
1551 (define-key dired-mode-map
1552 [menu-bar tumme tumme-mark-and-display-next]
1553 '("Mark and display next" . tumme-mark-and-display-next))
1554 (define-key dired-mode-map
1555 [menu-bar tumme tumme-previous-line-and-display]
1556 '("Display thumb for previous file" . tumme-previous-line-and-display))
1557 (define-key dired-mode-map
1558 [menu-bar tumme tumme-next-line-and-display]
1559 '("Display thumb for next file" . tumme-next-line-and-display)))
1560
1561 (defun tumme-create-thumbs (&optional arg)
1562 "Create thumbnail images for all marked files in dired.
1563 With prefix argument ARG, create thumbnails even if they already exist
1564 \(i.e. use this to refresh your thumbnails)."
1565 (interactive "P")
1566 (let (curr-file thumb-name files count)
1567 (setq files (dired-get-marked-files))
1568 (mapcar
1569 (lambda (curr-file)
1570 (setq thumb-name (tumme-thumb-name curr-file))
1571 ;; If the user overrides the exist check, we must clear the
1572 ;; image cache so that if the user wants to display the
1573 ;; thumnail, it is not fetched from cache.
1574 (if arg
1575 (clear-image-cache))
1576 (if (or (not (file-exists-p thumb-name))
1577 arg)
1578 (if (not (= 0 (tumme-create-thumb curr-file
1579 (tumme-thumb-name curr-file))))
1580 (error "Thumb could not be created"))))
1581 files)))
1582
1583 (defvar tumme-slideshow-timer nil
1584 "Slideshow timer.")
1585
1586 (defvar tumme-slideshow-count 0
1587 "Keeping track on number of images in slideshow.")
1588
1589 (defvar tumme-slideshow-times 0
1590 "Number of pictures to display in slideshow.")
1591
1592 (defun tumme-slideshow-step ()
1593 "Step to next file, if `tumme-slideshow-times' has not been reached."
1594 (if (< tumme-slideshow-count tumme-slideshow-times)
1595 (progn
1596 (message "%s" (1+ tumme-slideshow-count))
1597 (setq tumme-slideshow-count (1+ tumme-slideshow-count))
1598 (tumme-next-line-and-display))
1599 (tumme-slideshow-stop)))
1600
1601 (defun tumme-slideshow-start ()
1602 "Start slideshow.
1603 Ask user for number of images to show and the delay in between."
1604 (interactive)
1605 (setq tumme-slideshow-count 0)
1606 (setq tumme-slideshow-times (string-to-number (read-string "How many: ")))
1607 (let ((repeat (string-to-number
1608 (read-string
1609 "Delay, in seconds. Decimals are accepted : " "1"))))
1610 (setq tumme-slideshow-timer
1611 (run-with-timer
1612 0 repeat
1613 'tumme-slideshow-step))))
1614
1615 (defun tumme-slideshow-stop ()
1616 "Cancel slideshow."
1617 (interactive)
1618 (cancel-timer tumme-slideshow-timer))
1619
1620 (defun tumme-delete-char ()
1621 "Remove current thumbnail from thumbnail buffer and line up."
1622 (interactive)
1623 (let ((inhibit-read-only t))
1624 (delete-char 1)
1625 (if (looking-at " ")
1626 (delete-char 1))))
1627
1628 ;;;###autoload
1629 (defun tumme-display-thumbs-append ()
1630 "Append thumbnails to `tumme-thumbnail-buffer'."
1631 (interactive)
1632 (tumme-display-thumbs nil t t))
1633
1634 ;;;###autoload
1635 (defun tumme-display-thumb ()
1636 "Shorthard for `tumme-display-thumbs' with prefix argument."
1637 (interactive)
1638 (tumme-display-thumbs t nil t))
1639
1640 (defun tumme-line-up ()
1641 "Line up thumbnails according to `tumme-thumbs-per-row'.
1642 See also `tumme-line-up-dynamic'."
1643 (interactive)
1644 (let ((inhibit-read-only t))
1645 (goto-char (point-min))
1646 (while (and (not (tumme-image-at-point-p))
1647 (not (eobp)))
1648 (delete-char 1))
1649 (while (not (eobp))
1650 (forward-char)
1651 (while (and (not (tumme-image-at-point-p))
1652 (not (eobp)))
1653 (delete-char 1)))
1654 (goto-char (point-min))
1655 (let ((count 0))
1656 (while (not (eobp))
1657 (forward-char)
1658 (if (= tumme-thumbs-per-row 1)
1659 (insert "\n")
1660 (insert " ")
1661 (setq count (1+ count))
1662 (when (= count (- tumme-thumbs-per-row 1))
1663 (forward-char)
1664 (insert "\n")
1665 (setq count 0)))))
1666 (goto-char (point-min))))
1667
1668 (defun tumme-line-up-dynamic ()
1669 "Line up thumbnails images dynamically.
1670 Calculate how many thumbnails fit."
1671 (interactive)
1672 (let* ((char-width (frame-char-width))
1673 (width (tumme-window-width-pixels (tumme-thumbnail-window)))
1674 (tumme-thumbs-per-row
1675 (/ width
1676 (+ (* 2 tumme-thumb-relief)
1677 (* 2 tumme-thumb-margin)
1678 tumme-thumb-width char-width))))
1679 (tumme-line-up)))
1680
1681 (defun tumme-line-up-interactive ()
1682 "Line up thumbnails interactively.
1683 Ask user how many thumbnails should be displayed per row."
1684 (interactive)
1685 (let ((tumme-thumbs-per-row
1686 (string-to-number (read-string "How many thumbs per row: "))))
1687 (if (not (> tumme-thumbs-per-row 0))
1688 (message "Number must be greater than 0")
1689 (tumme-line-up))))
1690
1691 (defun tumme-thumbnail-display-external ()
1692 "Display original image for thumbnail at point using external viewer."
1693 (interactive)
1694 (let ((file (tumme-original-file-name)))
1695 (if (not (tumme-image-at-point-p))
1696 (message "No thumbnail at point")
1697 (if (not file)
1698 (message "No original file name found")
1699 (call-process shell-file-name nil nil nil shell-command-switch
1700 (format "%s \"%s\"" tumme-external-viewer file))))))
1701
1702 ;;;###autoload
1703 (defun tumme-dired-display-external ()
1704 "Display file at point using an external viewer."
1705 (interactive)
1706 (let ((file (dired-get-filename)))
1707 (call-process shell-file-name nil nil nil shell-command-switch
1708 (format "%s \"%s\"" tumme-external-viewer file))))
1709
1710 (defun tumme-window-width-pixels (window)
1711 "Calculate WINDOW width in pixels."
1712 (* (window-width window) (frame-char-width)))
1713
1714 (defun tumme-window-height-pixels (window)
1715 "Calculate WINDOW height in pixels."
1716 ;; Note: The mode-line consumes one line
1717 (* (- (window-height window) 1) (frame-char-height)))
1718
1719 (defun tumme-display-window ()
1720 "Return window where `tumme-display-image-buffer' is visible."
1721 (get-window-with-predicate
1722 (lambda (window)
1723 (equal (buffer-name (window-buffer window)) tumme-display-image-buffer))
1724 nil t))
1725
1726 (defun tumme-thumbnail-window ()
1727 "Return window where `tumme-thumbnail-buffer' is visible."
1728 (get-window-with-predicate
1729 (lambda (window)
1730 (equal (buffer-name (window-buffer window)) tumme-thumbnail-buffer))
1731 nil t))
1732
1733 (defun tumme-associated-dired-buffer-window ()
1734 "Return window where associated dired buffer is visible."
1735 (let (buf)
1736 (if (tumme-image-at-point-p)
1737 (progn
1738 (setq buf (tumme-associated-dired-buffer))
1739 (get-window-with-predicate
1740 (lambda (window)
1741 (equal (window-buffer window) buf))))
1742 (error "No thumbnail image at point"))))
1743
1744 (defun tumme-display-window-width ()
1745 "Return width, in pixels, of tumme's image display window."
1746 (- (tumme-window-width-pixels (tumme-display-window))
1747 tumme-display-window-width-correction))
1748
1749 (defun tumme-display-window-height ()
1750 "Return height, in pixels, of tumme's image display window."
1751 (- (tumme-window-height-pixels (tumme-display-window))
1752 tumme-display-window-height-correction))
1753
1754 (defun tumme-display-image (file &optional original-size)
1755 "Display image FILE in image buffer.
1756 Use this when you want to display the image, semi sized, in a new
1757 window. The image is sized to fit the display window (using a
1758 temporary file, don't worry). Because of this, it will not be as
1759 quick as opening it directly, but on most modern systems it
1760 should feel snappy enough.
1761
1762 If optional argument ORIGINAL-SIZE is non-nil, display image in its
1763 original size."
1764 (let ((new-file (expand-file-name tumme-temp-image-file))
1765 width height command ret)
1766 (setq file (expand-file-name file))
1767 (if (not original-size)
1768 (progn
1769 (setq width (tumme-display-window-width))
1770 (setq height (tumme-display-window-height))
1771 (setq command
1772 (format-spec
1773 tumme-cmd-create-temp-image-options
1774 (list
1775 (cons ?p tumme-cmd-create-temp-image-program)
1776 (cons ?w width)
1777 (cons ?h height)
1778 (cons ?f file)
1779 (cons ?t new-file))))
1780 (setq ret (call-process shell-file-name nil nil nil
1781 shell-command-switch command))
1782 (if (not (= 0 ret))
1783 (error "Could not resize image")))
1784 (copy-file file new-file t))
1785 (with-current-buffer (tumme-create-display-image-buffer)
1786 (let ((inhibit-read-only t))
1787 (erase-buffer)
1788 (clear-image-cache)
1789 (tumme-insert-image tumme-temp-image-file 'jpeg 0 0)
1790 (goto-char (point-min))
1791 (tumme-update-property 'original-file-name file)))))
1792
1793 (defun tumme-display-thumbnail-original-image (&optional arg)
1794 "Display current thumbnail's original image in display buffer.
1795 See documentation for `tumme-display-image' for more information.
1796 With prefix argument ARG, display image in its original size."
1797 (interactive "P")
1798 (let ((file (tumme-original-file-name)))
1799 (if (not (string-equal major-mode "tumme-thumbnail-mode"))
1800 (message "Not in tumme-thumbnail-mode")
1801 (if (not (tumme-image-at-point-p))
1802 (message "No thumbnail at point")
1803 (if (not file)
1804 (message "No original file name found")
1805 (tumme-create-display-image-buffer)
1806 (display-buffer tumme-display-image-buffer)
1807 (tumme-display-image file arg))))))
1808
1809
1810 ;;;###autoload
1811 (defun tumme-dired-display-image (&optional arg)
1812 "Display current image file.
1813 See documentation for `tumme-display-image' for more information.
1814 With prefix argument ARG, display image in its original size."
1815 (interactive "P")
1816 (tumme-create-display-image-buffer)
1817 (display-buffer tumme-display-image-buffer)
1818 (tumme-display-image (dired-get-filename) arg))
1819
1820 (defun tumme-image-at-point-p ()
1821 "Return true if there is a tumme thumbnail at point."
1822 (get-text-property (point) 'tumme-thumbnail))
1823
1824 (defun tumme-rotate-thumbnail (degrees)
1825 "Rotate thumbnail DEGREES degrees."
1826 (if (not (tumme-image-at-point-p))
1827 (message "No thumbnail at point")
1828 (let ((file (tumme-thumb-name (tumme-original-file-name)))
1829 command)
1830 (setq command (format-spec
1831 tumme-cmd-rotate-thumbnail-options
1832 (list
1833 (cons ?p tumme-cmd-rotate-thumbnail-program)
1834 (cons ?d degrees)
1835 (cons ?t (expand-file-name file)))))
1836 (call-process shell-file-name nil nil nil shell-command-switch command)
1837 ;; Clear the cache to refresh image. I wish I could just refresh
1838 ;; the current file but I do not know how to do that. Yet...
1839 (clear-image-cache))))
1840
1841 (defun tumme-rotate-thumbnail-left ()
1842 "Rotate thumbnail left (counter clockwise) 90 degrees.
1843 The result of the rotation is displayed in the image display area
1844 and a confirmation is needed before the original image files is
1845 overwritten. This confirmation can be turned off using
1846 `tumme-rotate-original-ask-before-overwrite'."
1847 (interactive)
1848 (tumme-rotate-thumbnail "270"))
1849
1850 (defun tumme-rotate-thumbnail-right ()
1851 "Rotate thumbnail counter right (clockwise) 90 degrees.
1852 The result of the rotation is displayed in the image display area
1853 and a confirmation is needed before the original image files is
1854 overwritten. This confirmation can be turned off using
1855 `tumme-rotate-original-ask-before-overwrite'."
1856 (interactive)
1857 (tumme-rotate-thumbnail "90"))
1858
1859 (defun tumme-refresh-thumb ()
1860 "Force creation of new image for current thumbnail."
1861 (interactive)
1862 (let ((file (tumme-original-file-name)))
1863 (clear-image-cache)
1864 (tumme-create-thumb file (tumme-thumb-name file))))
1865
1866 (defun tumme-rotate-original (degrees)
1867 "Rotate original image DEGREES degrees."
1868 (if (not (tumme-image-at-point-p))
1869 (message "No image at point")
1870 (let ((file (tumme-original-file-name))
1871 command temp-file)
1872 (if (not (string-match "\.[jJ][pP[eE]?[gG]$" file))
1873 (error "Only JPEG images can be rotated!"))
1874 (setq command (format-spec
1875 tumme-cmd-rotate-original-options
1876 (list
1877 (cons ?p tumme-cmd-rotate-original-program)
1878 (cons ?d degrees)
1879 (cons ?o (expand-file-name file))
1880 (cons ?t tumme-temp-rotate-image-file))))
1881 (if (not (= 0 (call-process shell-file-name nil nil nil
1882 shell-command-switch command)))
1883 (error "Could not rotate image")
1884 (tumme-display-image tumme-temp-rotate-image-file)
1885 (if (or (and tumme-rotate-original-ask-before-overwrite
1886 (y-or-n-p
1887 "Rotate to temp file OK. Overwrite original image? "))
1888 (not tumme-rotate-original-ask-before-overwrite))
1889 (progn
1890 (copy-file tumme-temp-rotate-image-file file t)
1891 (tumme-refresh-thumb))
1892 (tumme-display-image file))))))
1893
1894 (defun tumme-rotate-original-left ()
1895 "Rotate original image left (counter clockwise) 90 degrees."
1896 (interactive)
1897 (tumme-rotate-original "270"))
1898
1899 (defun tumme-rotate-original-right ()
1900 "Rotate original image right (clockwise) 90 degrees."
1901 (interactive)
1902 (tumme-rotate-original "90"))
1903
1904 (defun tumme-get-exif-file-name (file)
1905 "Use the image's EXIF information to return a unique file name.
1906 The file name should be unique as long as you do not take more than
1907 one picture per second. The original file name is suffixed at the end
1908 for traceability. The format of the returned file name is
1909 YYYY_MM_DD_HH_MM_DD_ORIG_FILE_NAME.jpg. Used from
1910 `tumme-copy-with-exif-file-name'."
1911 (let (data no-exif-data-found)
1912 (if (not (string-match "\.[Jj][Pp][Ee]?[Gg]$" (expand-file-name file)))
1913 (progn
1914 (setq no-exif-data-found t)
1915 (setq data
1916 (format-time-string
1917 "%Y:%m:%d %H:%M:%S"
1918 (nth 5 (file-attributes (expand-file-name file))))))
1919 (setq data (tumme-get-exif-data (expand-file-name file)
1920 "DateTimeOriginal")))
1921 (while (string-match "[ :]" data)
1922 (setq data (replace-match "_" nil nil data)))
1923 (format "%s%s%s" data
1924 (if no-exif-data-found
1925 "_noexif_"
1926 "_")
1927 (file-name-nondirectory file))))
1928
1929 (defun tumme-thumbnail-set-image-description ()
1930 "Set the ImageDescription EXIF tag for the original image.
1931 If the image already has a value for this tag, it is used as the
1932 default value at the prompt."
1933 (interactive)
1934 (if (not (tumme-image-at-point-p))
1935 (message "No thumbnail at point")
1936 (let* ((file (tumme-original-file-name))
1937 (old-value (tumme-get-exif-data file "ImageDescription")))
1938 (if (eq 0
1939 (tumme-set-exif-data file "ImageDescription"
1940 (read-string "Value of ImageDescription: "
1941 old-value)))
1942 (message "Successfully wrote ImageDescription tag.")
1943 (error "Could not write ImageDescription tag")))))
1944
1945 (defun tumme-set-exif-data (file tag-name tag-value)
1946 "In FILE, set EXIF tag TAG-NAME to value TAG-VALUE."
1947 (let (command)
1948 (setq command (format-spec
1949 tumme-cmd-write-exif-data-options
1950 (list
1951 (cons ?p tumme-cmd-write-exif-data-program)
1952 (cons ?f (expand-file-name file))
1953 (cons ?t tag-name)
1954 (cons ?v tag-value))))
1955 (call-process shell-file-name nil nil nil shell-command-switch command)))
1956
1957 (defun tumme-get-exif-data (file tag-name)
1958 "From FILE, return EXIF tag TAG-NAME."
1959 (let ((buf (get-buffer-create "*tumme-get-exif-data*"))
1960 command tag-value)
1961 (setq command (format-spec
1962 tumme-cmd-read-exif-data-options
1963 (list
1964 (cons ?p tumme-cmd-read-exif-data-program)
1965 (cons ?f file)
1966 (cons ?t tag-name))))
1967 (with-current-buffer buf
1968 (delete-region (point-min) (point-max))
1969 (if (not (eq (call-process shell-file-name nil t nil
1970 shell-command-switch command) 0))
1971 (error "Could not get EXIF tag")
1972 (goto-char (point-min))
1973 ;; Clean buffer from newlines and carriage returns before
1974 ;; getting final info
1975 (while (search-forward-regexp "[\n\r]" nil t)
1976 (replace-match "" nil t))
1977 (setq tag-value (buffer-substring (point-min) (point-max)))))
1978 tag-value))
1979
1980 (defun tumme-copy-with-exif-file-name ()
1981 "Copy file with unique name to main image directory.
1982 Copy current or all marked files in dired to a new file in your
1983 main image directory, using a file name generated by
1984 `tumme-get-exif-file-name'. A typical usage for this if when
1985 copying images from a digital camera into the image directory.
1986
1987 Typically, you would open up the folder with the incoming
1988 digital images, mark the files to be copied, and execute this
1989 function. The result is a couple of new files in
1990 `tumme-main-image-directory' called
1991 2005_05_08_12_52_00_dscn0319.jpg,
1992 2005_05_08_14_27_45_dscn0320.jpg etc."
1993 (interactive)
1994 (let (new-name
1995 (files (dired-get-marked-files)))
1996 (mapcar
1997 (lambda (curr-file)
1998 (setq new-name
1999 (format "%s/%s"
2000 (file-name-as-directory
2001 (expand-file-name tumme-main-image-directory))
2002 (tumme-get-exif-file-name curr-file)))
2003 (message "Copying %s to %s" curr-file new-name)
2004 (copy-file curr-file new-name))
2005 files)))
2006
2007 (defun tumme-display-next-thumbnail-original ()
2008 "In thubnail buffer, move to next thumbnail and display the image."
2009 (interactive)
2010 (tumme-forward-char)
2011 (tumme-display-thumbnail-original-image))
2012
2013 (defun tumme-display-previous-thumbnail-original ()
2014 "Move to previous thumbnail and display image."
2015
2016 (interactive)
2017 (tumme-backward-char)
2018 (tumme-display-thumbnail-original-image))
2019
2020 (defun tumme-write-comment (file comment)
2021 "For FILE, write comment COMMENT in database."
2022 (save-excursion
2023 (let (end buf comment-beg)
2024 (setq buf (find-file tumme-db-file))
2025 (goto-char (point-min))
2026 (if (search-forward-regexp
2027 (format "^%s" file) nil t)
2028 (progn
2029 (end-of-line)
2030 (setq end (point))
2031 (beginning-of-line)
2032 ;; Delete old comment, if any
2033 (cond ((search-forward ";comment:" end t)
2034 (setq comment-beg (match-beginning 0))
2035 ;; Any tags after the comment?
2036 (if (search-forward ";" end t)
2037 (setq comment-end (- (point) 1))
2038 (setq comment-end end))
2039 ;; Delete comment tag and comment
2040 (delete-region comment-beg comment-end)))
2041 ;; Insert new comment
2042 (beginning-of-line)
2043 (if (not (search-forward ";" end t))
2044 (progn
2045 (end-of-line)
2046 (insert ";")))
2047 (insert (format "comment:%s;" comment)))
2048 ;; File does not exist in databse - add it.
2049 (goto-char (point-max))
2050 (insert (format "\n%s;comment:%s" file comment)))
2051 (save-buffer)
2052 (kill-buffer buf))))
2053
2054 (defun tumme-update-property (prop value)
2055 "Update text property PROP with value VALUE at point."
2056 (let ((inhibit-read-only t))
2057 (put-text-property
2058 (point) (1+ (point))
2059 prop
2060 value)))
2061
2062 ;;;###autoload
2063 (defun tumme-dired-comment-files ()
2064 "Add comment to current or marked files in dired."
2065 (interactive)
2066 (let ((files (dired-get-marked-files))
2067 (comment (tumme-read-comment)))
2068 (mapcar
2069 (lambda (curr-file)
2070 (tumme-write-comment curr-file comment))
2071 files)))
2072
2073 (defun tumme-comment-thumbnail ()
2074 "Add comment to current thumbnail in thumbnail buffer."
2075 (interactive)
2076 (let* ((file (tumme-original-file-name))
2077 (comment (tumme-read-comment file)))
2078 (tumme-write-comment file comment)
2079 (tumme-update-property 'comment comment))
2080 (tumme-display-thumb-properties))
2081
2082 (defun tumme-read-comment (&optional file)
2083 "Read comment for an image.
2084 Read comment for an image, optionally using old comment from FILE
2085 as initial value."
2086 (let ((comment
2087 (read-string
2088 "Comment: "
2089 (if file (tumme-get-comment file)))))
2090 comment))
2091
2092 (defun tumme-get-comment (file)
2093 "Get comment for file FILE."
2094 (save-excursion
2095 (let (end buf comment-beg comment)
2096 (setq buf (find-file tumme-db-file))
2097 (goto-char (point-min))
2098 (when (search-forward-regexp
2099 (format "^%s" file) nil t)
2100 (end-of-line)
2101 (setq end (point))
2102 (beginning-of-line)
2103 (cond ((search-forward ";comment:" end t)
2104 (setq comment-beg (point))
2105 (if (search-forward ";" end t)
2106 (setq comment-end (- (point) 1))
2107 (setq comment-end end))
2108 (setq comment (buffer-substring
2109 comment-beg comment-end)))))
2110 (kill-buffer buf)
2111 comment)))
2112
2113 ;;;###autoload
2114 (defun tumme-mark-tagged-files ()
2115 "Use regexp to mark files with matching tag.
2116 A `tag' is a keyword, a piece of meta data, associated with an
2117 image file and stored in tumme's database file. This command
2118 lets you input a regexp and this will be matched against all tags
2119 on all image files in the database file. The files that have a
2120 matching tags will be marked in the dired buffer."
2121 (interactive)
2122 (let ((tag (read-string "Mark tagged files (regexp): "))
2123 (hits 0)
2124 files buf)
2125 (save-excursion
2126 (setq buf (find-file tumme-db-file))
2127 (goto-char (point-min))
2128 ;; Collect matches
2129 (while (search-forward-regexp
2130 (concat "\\(^[^;\n]+\\);.*" tag ".*$") nil t)
2131 (setq files (append (list (match-string 1)) files)))
2132 (kill-buffer buf)
2133 ;; Mark files
2134 (mapcar
2135 ;; I tried using `dired-mark-files-regexp' but it was
2136 ;; waaaay to slow.
2137 (lambda (curr-file)
2138 ;; Don't bother about hits found in other directories than
2139 ;; the current one.
2140 (when (string= (file-name-as-directory
2141 (expand-file-name default-directory))
2142 (file-name-as-directory
2143 (file-name-directory curr-file)))
2144 (setq curr-file (file-name-nondirectory curr-file))
2145 (goto-char (point-min))
2146 (when (search-forward-regexp (format "\\s %s$" curr-file) nil t)
2147 (setq hits (+ hits 1))
2148 (dired-mark 1))))
2149 files))
2150 (message "%d files with matching tag marked." hits)))
2151
2152 (defun tumme-mouse-display-image (event)
2153 "Use mouse EVENT, call `tumme-display-image' to display image.
2154 Track this in associated dired buffer if `tumme-track-movement' is
2155 non-nil."
2156 (interactive "e")
2157 (let (file)
2158 (mouse-set-point event)
2159 (goto-char (posn-point (event-end event)))
2160 (setq file (tumme-original-file-name))
2161 (if tumme-track-movement
2162 (tumme-track-original-file))
2163 (tumme-create-display-image-buffer)
2164 (display-buffer tumme-display-image-buffer)
2165 (tumme-display-image file)))
2166
2167 (defun tumme-mouse-select-thumbnail (event)
2168 "Use mouse EVENT to select thumbnail image.
2169 Track this in associated dired buffer if `tumme-track-movement' is
2170 non-nil."
2171 (interactive "e")
2172 (let (file)
2173 (mouse-set-point event)
2174 (goto-char (posn-point (event-end event)))
2175 (if tumme-track-movement
2176 (tumme-track-original-file)))
2177 (tumme-display-thumb-properties))
2178
2179 (defun tumme-mouse-toggle-mark (event)
2180 "Use mouse EVENT to toggle dired mark for thumbnail.
2181 Track this in associated dired buffer if `tumme-track-movement' is
2182 non-nil."
2183 (interactive "e")
2184 (let (file)
2185 (mouse-set-point event)
2186 (goto-char (posn-point (event-end event)))
2187 (if tumme-track-movement
2188 (tumme-track-original-file)))
2189 (tumme-toggle-mark-thumb-original-file))
2190
2191 (defun tumme-dired-display-properties ()
2192 "Display properties for dired file in the echo area."
2193 (interactive)
2194 (let* ((file (dired-get-filename))
2195 (file-name (file-name-nondirectory file))
2196 (dired-buf (buffer-name (current-buffer)))
2197 (props (mapconcat
2198 'princ
2199 (tumme-list-tags file)
2200 ", "))
2201 (comment (tumme-get-comment file)))
2202 (if file-name
2203 (message
2204 (tumme-format-properties-string
2205 dired-buf
2206 file-name
2207 props
2208 comment)))))
2209
2210 (defvar tumme-tag-file-list nil
2211 "List to store tag-file structure.")
2212
2213 (defvar tumme-file-tag-list nil
2214 "List to store file-tag structure.")
2215
2216 (defvar tumme-file-comment-list nil
2217 "List to store file comments.")
2218
2219 (defun tumme-add-to-tag-file-list (tag file)
2220 "Add relation between TAG and FILE."
2221 (let (curr)
2222 (if tumme-tag-file-list
2223 (if (setq curr (assoc tag tumme-tag-file-list))
2224 (if (not (member file curr))
2225 (setcdr curr (cons file (cdr curr))))
2226 (setcdr tumme-tag-file-list
2227 (cons (list tag file) (cdr tumme-tag-file-list))))
2228 (setq tumme-tag-file-list (list (list tag file))))))
2229
2230 (defun tumme-add-to-tag-file-lists (tag file)
2231 "Helper function used from `tumme-create-gallery-lists'.
2232
2233 Add TAG to FILE in one list and FILE to TAG in the other.
2234
2235 Lisp structures look like the following:
2236
2237 tumme-file-tag-list:
2238
2239 ((\"filename1\" \"tag1\" \"tag2\" \"tag3\" ...)
2240 (\"filename2\" \"tag1\" \"tag2\" \"tag3\" ...)
2241 ...)
2242
2243 tumme-tag-file-list:
2244
2245 ((\"tag1\" \"filename1\" \"filename2\" \"filename3\" ...)
2246 (\"tag2\" \"filename1\" \"filename2\" \"filename3\" ...)
2247 ...)"
2248 ;; Add tag to file list
2249 (let (curr)
2250 (if tumme-file-tag-list
2251 (if (setq curr (assoc file tumme-file-tag-list))
2252 (setcdr curr (cons tag (cdr curr)))
2253 (setcdr tumme-file-tag-list
2254 (cons (list file tag) (cdr tumme-file-tag-list))))
2255 (setq tumme-file-tag-list (list (list file tag))))
2256 ;; Add file to tag list
2257 (if tumme-tag-file-list
2258 (if (setq curr (assoc tag tumme-tag-file-list))
2259 (if (not (member file curr))
2260 (setcdr curr (cons file (cdr curr))))
2261 (setcdr tumme-tag-file-list
2262 (cons (list tag file) (cdr tumme-tag-file-list))))
2263 (setq tumme-tag-file-list (list (list tag file))))))
2264
2265 (defun tumme-add-to-file-comment-list (file comment)
2266 "Helper function used from `tumme-create-gallery-lists'.
2267
2268 For FILE, add COMMENT to list.
2269
2270 Lisp structure looks like the following:
2271
2272 tumme-file-comment-list:
2273
2274 ((\"filename1\" . \"comment1\")
2275 (\"filename2\" . \"comment2\")
2276 ...)"
2277 (if tumme-file-comment-list
2278 (if (not (assoc file tumme-file-comment-list))
2279 (setcdr tumme-file-comment-list
2280 (cons (cons file comment)
2281 (cdr tumme-file-comment-list))))
2282 (setq tumme-file-comment-list (list (cons file comment)))))
2283
2284 (defun tumme-create-gallery-lists ()
2285 "Create temporary lists used by `tumme-gallery-generate'."
2286 (let ((buf (find-file tumme-db-file))
2287 end beg file row-tags)
2288 (setq tumme-tag-file-list nil)
2289 (setq tumme-file-tag-list nil)
2290 (setq tumme-file-comment-list nil)
2291 (goto-char (point-min))
2292 (while (search-forward-regexp "^." nil t)
2293 (end-of-line)
2294 (setq end (point))
2295 (beginning-of-line)
2296 (setq beg (point))
2297 (if (not (search-forward ";" end nil))
2298 (error "Something is really wrong, check format of database"))
2299 (setq row-tags (split-string
2300 (buffer-substring beg end) ";"))
2301 (setq file (car row-tags))
2302 (mapc
2303 (lambda (x)
2304 (if (not (string-match "^comment:\\(.*\\)" x))
2305 (tumme-add-to-tag-file-lists x file)
2306 (tumme-add-to-file-comment-list file (match-string 1 x))))
2307 (cdr row-tags)))
2308 (kill-buffer buf))
2309 ;; Sort tag-file list
2310 (setq tumme-tag-file-list
2311 (sort tumme-tag-file-list
2312 (lambda (x y)
2313 (string< (car x) (car y))))))
2314
2315 (defun tumme-hidden-p (file)
2316 "Return t if image FILE has a \"hidden\" tag."
2317 (let (hidden)
2318 (mapc
2319 (lambda (tag)
2320 (if (member tag tumme-gallery-hidden-tags)
2321 (setq hidden t)))
2322 (cdr (assoc file tumme-file-tag-list)))
2323 hidden))
2324
2325 (defun tumme-gallery-generate ()
2326 "Generate gallery pages.
2327 First we create a couple of Lisp structures from the database to make
2328 it easier to generate, then HTML-files are created in
2329 `tumme-gallery-dir'"
2330 (interactive)
2331 (if (eq 'per-directory tumme-thumbnail-storage)
2332 (error "Currently, gallery generation is not supported \
2333 when using per-directory thumbnail file storage"))
2334 (tumme-create-gallery-lists)
2335 (let ((tags tumme-tag-file-list)
2336 count curr tag index-buf tag-buf
2337 comment file-tags tag-link tag-link-list)
2338 ;; Make sure gallery root exist
2339 (if (file-exists-p tumme-gallery-dir)
2340 (if (not (file-directory-p tumme-gallery-dir))
2341 (error "Variable tumme-gallery-dir is not a directory"))
2342 (make-directory tumme-gallery-dir))
2343 ;; Open index file
2344 (setq index-buf (find-file
2345 (format "%s/index.html" tumme-gallery-dir)))
2346 (erase-buffer)
2347 (insert "<html>\n")
2348 (insert " <body>\n")
2349 (insert " <h2>Tumme Gallery</h2>\n")
2350 (insert (format "<p>\n Gallery generated %s\n <p>\n"
2351 (current-time-string)))
2352 (insert " <h3>Tag index</h3>\n")
2353 (setq count 1)
2354 ;; Pre-generate list of all tag links
2355 (mapc
2356 (lambda (curr)
2357 (setq tag (car curr))
2358 (when (not (member tag tumme-gallery-hidden-tags))
2359 (setq tag-link (format "<a href=\"%d.html\">%s</a>" count tag))
2360 (if tag-link-list
2361 (setq tag-link-list
2362 (append tag-link-list (list (cons tag tag-link))))
2363 (setq tag-link-list (list (cons tag tag-link))))
2364 (setq count (1+ count))))
2365 tags)
2366 (setq count 1)
2367 ;; Main loop where we generated thumbnail pages per tag
2368 (mapc
2369 (lambda (curr)
2370 (setq tag (car curr))
2371 ;; Don't display hidden tags
2372 (when (not (member tag tumme-gallery-hidden-tags))
2373 ;; Insert link to tag page in index
2374 (insert (format " %s<br>\n" (cdr (assoc tag tag-link-list))))
2375 ;; Open per-tag file
2376 (setq tag-buf (find-file
2377 (format "%s/%s.html" tumme-gallery-dir count)))
2378 (erase-buffer)
2379 (insert "<html>\n")
2380 (insert " <body>\n")
2381 (insert " <p><a href=\"index.html\">Index</a></p>\n")
2382 (insert (format " <h2>Images with tag &quot;%s&quot;</h2>" tag))
2383 ;; Main loop for files per tag page
2384 (mapc
2385 (lambda (file)
2386 (when (not (tumme-hidden-p file))
2387 ;; Insert thumbnail with link to full image
2388 (insert
2389 (format "<a href=\"%s/%s\"><img src=\"%s/%s\"%s></a>\n"
2390 tumme-gallery-image-root-url
2391 (file-name-nondirectory file)
2392 tumme-gallery-thumb-image-root-url
2393 (file-name-nondirectory (tumme-thumb-name file)) file))
2394 ;; Insert comment, if any
2395 (if (setq comment (cdr (assoc file tumme-file-comment-list)))
2396 (insert (format "<br>\n%s<br>\n" comment))
2397 (insert "<br>\n"))
2398 ;; Insert links to other tags, if any
2399 (when (> (length
2400 (setq file-tags (assoc file tumme-file-tag-list))) 2)
2401 (insert "[ ")
2402 (mapc
2403 (lambda (extra-tag)
2404 ;; Only insert if not file name or the main tag
2405 (if (and (not (equal extra-tag tag))
2406 (not (equal extra-tag file)))
2407 (insert
2408 (format "%s " (cdr (assoc extra-tag tag-link-list))))))
2409 file-tags)
2410 (insert "]<br>\n"))))
2411 (cdr curr))
2412 (insert " <p><a href=\"index.html\">Index</a></p>\n")
2413 (insert " </body>\n")
2414 (insert "</html>\n")
2415 (save-buffer)
2416 (kill-buffer tag-buf)
2417 (setq count (1+ count))))
2418 tags)
2419 (insert " </body>\n")
2420 (insert "</html>")
2421 (save-buffer)
2422 (kill-buffer index-buf)))
2423
2424 (defun tumme-kill-buffer-and-window ()
2425 "Kill the current buffer and, if possible, also the window."
2426 (interactive)
2427 (let ((buffer (current-buffer)))
2428 (condition-case nil
2429 (delete-window (selected-window))
2430 (error nil))
2431 (kill-buffer buffer)))
2432
2433 (defvar tumme-widget-list nil
2434 "List to keep track of meta data in edit buffer")
2435
2436 ;;;###autoload
2437 (defun tumme-dired-edit-comment-and-tags ()
2438 "Edit comment and tags of current or marked image files.
2439 Edit comment and tags for all marked image files in an
2440 easy-to-use form."
2441 (interactive)
2442 (setq tumme-widget-list nil)
2443 ;; Setup buffer.
2444 (let ((files (dired-get-marked-files)))
2445 (switch-to-buffer "*Tumme Edit Meta Data*")
2446 (kill-all-local-variables)
2447 (make-local-variable 'widget-example-repeat)
2448 (let ((inhibit-read-only t))
2449 (erase-buffer))
2450 (remove-overlays)
2451 ;; Some help for the user.
2452 (widget-insert
2453 "\nEdit comments and tags for each image. Separate multiple tags
2454 with a comma. Move forward between fields using TAB or RET.
2455 Move to the previous field using backtab (S-TAB). Save by
2456 activating the Save button at the bottom of the form or cancel
2457 the operation by activating the Cancel button.\n\n")
2458 ;; Here comes all images and a comment and tag field for each
2459 ;; image.
2460 (let (thumb-file img comment-widget tag-widget)
2461
2462 (dolist (file files)
2463
2464 (setq thumb-file (tumme-thumb-name file)
2465 img (create-image thumb-file))
2466
2467 (insert-image img)
2468 (widget-insert "\n\nComment: ")
2469 (setq comment-widget
2470 (widget-create 'editable-field
2471 :size 60
2472 :format "%v "
2473 :value (or (tumme-get-comment file) "")))
2474 (widget-insert "\nTags: ")
2475 (setq tag-widget
2476 (widget-create 'editable-field
2477 :size 60
2478 :format "%v "
2479 :value (or (mapconcat
2480 (lambda (tag)
2481 tag)
2482 (tumme-list-tags file)
2483 ",") "")))
2484 ;; Save information in all widgets so that we can use it when
2485 ;; the user saves the form.
2486 (setq tumme-widget-list
2487 (append tumme-widget-list
2488 (list (list file comment-widget tag-widget))))
2489 (widget-insert "\n\n")))
2490
2491 ;; Footer with Save and Cancel button.
2492 (widget-insert "\n")
2493 (widget-create 'push-button
2494 :notify
2495 (lambda (&rest ignore)
2496 (tumme-save-information-from-widgets)
2497 (bury-buffer)
2498 (message "Done."))
2499 "Save")
2500 (widget-insert " ")
2501 (widget-create 'push-button
2502 :notify
2503 (lambda (&rest ignore)
2504 (bury-buffer)
2505 (message "Operation canceled."))
2506 "Cancel")
2507 (widget-insert "\n")
2508 (use-local-map widget-keymap)
2509 (widget-setup)
2510 ;; Jump to the first widget.
2511 (widget-forward 1)))
2512
2513 (defun tumme-save-information-from-widgets ()
2514 "Save information found in `tumme-widget-list'.
2515 Use the information in `tumme-widget-list' to save comments and
2516 tags to their respective image file. Internal function used by
2517 `tumme-dired-edit-comment-and-tags'."
2518 (mapc
2519 (lambda (x)
2520 (let ((file (car x))
2521 (comment (widget-value (cadr x)))
2522 (tags (widget-value (car (cddr x)))))
2523 (tumme-write-comment file comment)
2524 (mapc
2525 (lambda (tag)
2526 (tumme-write-tag file tag))
2527 (split-string tags ","))))
2528 tumme-widget-list))
2529
2530
2531 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2532 ;;;;;;;;; TEST-SECTION ;;;;;;;;;;;
2533 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2534
2535 ;; (defvar tumme-dir-max-size 12300000)
2536
2537 ;; (defun tumme-test-clean-old-files ()
2538 ;; "Clean `tumme-dir' from old thumbnail files.
2539 ;; \"Oldness\" measured using last access time. If the total size of all
2540 ;; thumbnail files in `tumme-dir' is larger than 'tumme-dir-max-size',
2541 ;; old files are deleted until the max size is reached."
2542 ;; (let* ((files
2543 ;; (sort
2544 ;; (mapcar
2545 ;; (lambda (f)
2546 ;; (let ((fattribs (file-attributes f)))
2547 ;; ;; Get last access time and file size
2548 ;; `(,(nth 4 fattribs) ,(nth 7 fattribs) ,f)))
2549 ;; (directory-files (tumme-dir) t ".+\.thumb\..+$"))
2550 ;; ;; Sort function. Compare time between two files.
2551 ;; '(lambda (l1 l2)
2552 ;; (time-less-p (car l1) (car l2)))))
2553 ;; (dirsize (apply '+ (mapcar (lambda (x) (cadr x)) files))))
2554 ;; (while (> dirsize tumme-dir-max-size)
2555 ;; (y-or-n-p
2556 ;; (format "Size of thumbnail directory: %d, delete old file %s? "
2557 ;; dirsize (cadr (cdar files))))
2558 ;; (delete-file (cadr (cdar files)))
2559 ;; (setq dirsize (- dirsize (car (cdar files))))
2560 ;; (setq files (cdr files)))))
2561
2562 ;;;;;;;;;;;;;;;;;;;;;;,
2563
2564 ;; (defun dired-speedbar-buttons (dired-buffer)
2565 ;; (when (and (boundp 'tumme-use-speedbar)
2566 ;; tumme-use-speedbar)
2567 ;; (let ((filename (with-current-buffer dired-buffer
2568 ;; (dired-get-filename))))
2569 ;; (when (and (not (string-equal filename (buffer-string)))
2570 ;; (string-match (image-file-name-regexp) filename))
2571 ;; (erase-buffer)
2572 ;; (insert (propertize
2573 ;; filename
2574 ;; 'display
2575 ;; (tumme-get-thumbnail-image filename)))))))
2576
2577 ;; (setq tumme-use-speedbar t)
2578
2579 (provide 'tumme)
2580
2581 ;; arch-tag: 9d11411d-331f-4380-8b44-8adfe3a0343e
2582 ;;; tumme.el ends here