Fix minor mode docstrings for the new meaning of a nil ARG.
[bpt/emacs.git] / lisp / doc-view.el
CommitLineData
b38b1ec0
SM
1;;; doc-view.el --- View PDF/PostScript/DVI files in Emacs -*- lexical-binding: t -*-
2
94dbe99c 3
73b0cd50 4;; Copyright (C) 2007-2011 Free Software Foundation, Inc.
94dbe99c
TTN
5;;
6;; Author: Tassilo Horn <tassilo@member.fsf.org>
7;; Maintainer: Tassilo Horn <tassilo@member.fsf.org>
8;; Keywords: files, pdf, ps, dvi
94dbe99c
TTN
9
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
94dbe99c 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
94dbe99c
TTN
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
94dbe99c
TTN
24
25;;; Requirements:
26
4b378e75 27;; doc-view.el requires GNU Emacs 22.1 or newer. You also need Ghostscript,
1ecc9da7
TH
28;; `dvipdf' (comes with Ghostscript) or `dvipdfm' (comes with teTeX or TeXLive)
29;; and `pdftotext', which comes with xpdf (http://www.foolabs.com/xpdf/) or
30;; poppler (http://poppler.freedesktop.org/).
94dbe99c
TTN
31
32;;; Commentary:
33
34;; DocView is a document viewer for Emacs. It converts PDF, PS and DVI files
35;; to a set of PNG files, one PNG for each page, and displays the PNG images
36;; inside an Emacs buffer. This buffer uses `doc-view-mode' which provides
37;; convenient key bindings for browsing the document.
38;;
640602f7 39;; To use it simply open a document file with
94dbe99c 40;;
640602f7 41;; C-x C-f ~/path/to/document RET
94dbe99c 42;;
640602f7
RS
43;; and the document will be converted and displayed, if your emacs supports png
44;; images. With `C-c C-c' you can toggle between the rendered images
1f75e53d 45;; representation and the source text representation of the document.
94dbe99c
TTN
46;;
47;; Since conversion may take some time all the PNG images are cached in a
48;; subdirectory of `doc-view-cache-directory' and reused when you want to view
640602f7
RS
49;; that file again. To reconvert a document hit `g' (`doc-view-reconvert-doc')
50;; when displaying the document. To delete all cached files use
94dbe99c
TTN
51;; `doc-view-clear-cache'. To open the cache with dired, so that you can tidy
52;; it out use `doc-view-dired-cache'.
53;;
54;; When conversion in underway the first page will be displayed as soon as it
55;; is available and the available pages are refreshed every
56;; `doc-view-conversion-refresh-interval' seconds. If that variable is nil the
57;; pages won't be displayed before conversion of the document finished
58;; completely.
59;;
60;; DocView lets you select a slice of the displayed pages. This slice will be
61;; remembered and applied to all pages of the current document. This enables
62;; you to cut away the margins of a document to save some space. To select a
63;; slice you can use `doc-view-set-slice' (bound to `s s') which will query you
64;; for the coordinates of the slice's top-left corner and its width and height.
65;; A much more convenient way to do the same is offered by the command
a8ce3d17 66;; `doc-view-set-slice-using-mouse' (bound to `s m'). After invocation you
94dbe99c
TTN
67;; only have to press mouse-1 at the top-left corner and drag it to the
68;; bottom-right corner of the desired slice. To reset the slice use
69;; `doc-view-reset-slice' (bound to `s r').
70;;
94dbe99c
TTN
71;; You can also search within the document. The command `doc-view-search'
72;; (bound to `C-s') queries for a search regexp and initializes a list of all
73;; matching pages and messages how many match-pages were found. After that you
7baca0fa
JL
74;; can jump to the next page containing a match with an additional `C-s'. With
75;; `C-r' you can do the same, but backwards. To search for a new regexp give a
76;; prefix arg to one of the search functions, e.g. by typing `C-u C-s'. The
77;; searching works by using a plain text representation of the document. If
a8ce3d17 78;; that doesn't already exist the first invocation of `doc-view-search' (or
7baca0fa
JL
79;; `doc-view-search-backward') starts the conversion. When that finishes and
80;; you're still viewing the document (i.e. you didn't switch to another buffer)
81;; you're queried for the regexp then.
640602f7
RS
82;;
83;; Dired users can simply hit `v' on a document file. If it's a PS, PDF or DVI
84;; it will be opened using `doc-view-mode'.
85;;
94dbe99c
TTN
86
87;;; Configuration:
88
640602f7
RS
89;; If the images are too small or too big you should set the "-rXXX" option in
90;; `doc-view-ghostscript-options' to another value. (The bigger your screen,
91;; the higher the value.)
94dbe99c
TTN
92;;
93;; This and all other options can be set with the customization interface.
94;; Simply do
95;;
96;; M-x customize-group RET doc-view RET
97;;
98;; and modify them to your needs.
99
34065e5e 100;;; Todo:
94dbe99c 101
56741510
SM
102;; - add print command.
103;; - share more code with image-mode.
f4c75497 104;; - better menu.
f4c75497 105;; - Bind slicing to a drag event.
eb79098b 106;; - doc-view-fit-doc-to-window and doc-view-fit-window-to-doc?
cec1df02 107;; - zoom the region around the cursor (like xdvi).
c17587fe
SM
108;; - get rid of the silly arrow in the fringe.
109;; - improve anti-aliasing (pdf-utils gets it better).
f4c75497 110
34065e5e
JL
111;;;; About isearch support
112
113;; I tried implementing isearch by setting
114;; `isearch-search-fun-function' buffer-locally, but that didn't
115;; work too good. The function doing the real search was called
116;; endlessly somehow. But even if we'd get that working no real
117;; isearch feeling comes up due to the missing match highlighting.
118;; Currently I display all lines containing a match in a tooltip and
119;; each C-s or C-r jumps directly to the next/previous page with a
120;; match. With isearch we could only display the current match. So
121;; we had to decide if another C-s jumps to the next page with a
122;; match (thus only the first match in a page will be displayed in a
123;; tooltip) or to the next match, which would do nothing visible
124;; (except the tooltip) if the next match is on the same page.
125
126;; And it's much slower than the current search facility, because
127;; isearch really searches for each step forward or backward wheras
128;; the current approach searches once and then it knows to which
129;; pages to jump.
130
131;; Anyway, if someone with better isearch knowledge wants to give it a try,
132;; feel free to do it. --Tassilo
133
134;;; Code:
135
23cda572 136(eval-when-compile (require 'cl))
94dbe99c 137(require 'dired)
414dd971 138(require 'image-mode)
7baca0fa 139(require 'jka-compr)
94dbe99c
TTN
140
141;;;; Customization Options
142
143(defgroup doc-view nil
144 "In-buffer viewer for PDF, PostScript and DVI files."
145 :link '(function-link doc-view)
146 :version "22.2"
147 :group 'applications
ff90f4b0 148 :group 'data
94dbe99c
TTN
149 :group 'multimedia
150 :prefix "doc-view-")
151
c9a9a5e3 152(defcustom doc-view-ghostscript-program (executable-find "gs")
94dbe99c 153 "Program to convert PS and PDF files to PNG."
c9a9a5e3 154 :type 'file
94dbe99c
TTN
155 :group 'doc-view)
156
157(defcustom doc-view-ghostscript-options
6a658a30 158 '("-dSAFER" ;; Avoid security problems when rendering files from untrusted
94d11cb5 159 ;; sources.
6a658a30 160 "-dNOPAUSE" "-sDEVICE=png16m" "-dTextAlphaBits=4"
05477667 161 "-dBATCH" "-dGraphicsAlphaBits=4" "-dQUIET")
4b378e75 162 "A list of options to give to ghostscript."
c9a9a5e3 163 :type '(repeat string)
94dbe99c
TTN
164 :group 'doc-view)
165
05477667
SM
166(defcustom doc-view-resolution 100
167 "Dots per inch resolution used to render the documents.
168Higher values result in larger images."
9efa445f
DN
169 :type 'number
170 :group 'doc-view)
05477667 171
875c044a
TH
172(defcustom doc-view-image-width 850
173 "Default image width.
174Has only an effect if imagemagick support is compiled into emacs."
175 :type 'number
176 :group 'doc-view)
177
c9a9a5e3 178(defcustom doc-view-dvipdfm-program (executable-find "dvipdfm")
94dbe99c
TTN
179 "Program to convert DVI files to PDF.
180
181DVI file will be converted to PDF before the resulting PDF is
53d4c024
TH
182converted to PNG.
183
184If this and `doc-view-dvipdf-program' are set,
185`doc-view-dvipdf-program' will be preferred."
186 :type 'file
187 :group 'doc-view)
188
189(defcustom doc-view-dvipdf-program (executable-find "dvipdf")
190 "Program to convert DVI files to PDF.
191
192DVI file will be converted to PDF before the resulting PDF is
193converted to PNG.
194
195If this and `doc-view-dvipdfm-program' are set,
196`doc-view-dvipdf-program' will be preferred."
c9a9a5e3 197 :type 'file
94dbe99c
TTN
198 :group 'doc-view)
199
95e16d17
TH
200(defcustom doc-view-unoconv-program (executable-find "unoconv")
201 "Program to convert any file type readable by OpenOffice.org to PDF.
202
203Needed for viewing OpenOffice.org (and MS Office) files."
204 :type 'file
205 :group 'doc-view)
206
c9a9a5e3 207(defcustom doc-view-ps2pdf-program (executable-find "ps2pdf")
94dbe99c
TTN
208 "Program to convert PS files to PDF.
209
210PS files will be converted to PDF before searching is possible."
c9a9a5e3 211 :type 'file
94dbe99c
TTN
212 :group 'doc-view)
213
c9a9a5e3 214(defcustom doc-view-pdftotext-program (executable-find "pdftotext")
94dbe99c
TTN
215 "Program to convert PDF files to plain text.
216
217Needed for searching."
c9a9a5e3 218 :type 'file
94dbe99c
TTN
219 :group 'doc-view)
220
c17587fe 221(defcustom doc-view-cache-directory
8aafd651 222 (expand-file-name (format "docview%d" (user-uid))
bce6be12 223 temporary-file-directory)
94dbe99c 224 "The base directory, where the PNG images will be saved."
c9a9a5e3 225 :type 'directory
94dbe99c
TTN
226 :group 'doc-view)
227
56741510
SM
228(defvar doc-view-conversion-buffer " *doc-view conversion output*"
229 "The buffer where messages from the converter programs go to.")
94dbe99c 230
56741510 231(defcustom doc-view-conversion-refresh-interval 1
1f75e53d
GM
232 "Interval in seconds between refreshes of the DocView buffer while converting.
233After such a refresh newly converted pages will be available for
94dbe99c
TTN
234viewing. If set to nil there won't be any refreshes and the
235pages won't be displayed before conversion of the whole document
236has finished."
c9a9a5e3 237 :type 'integer
94dbe99c
TTN
238 :group 'doc-view)
239
0a745733 240(defcustom doc-view-continuous nil
aefcadb6
JL
241 "In Continuous mode reaching the page edge advances to next/previous page.
242When non-nil, scrolling a line upward at the bottom edge of the page
243moves to the next page, and scrolling a line downward at the top edge
244of the page moves to the previous page."
245 :type 'boolean
246 :group 'doc-view
247 :version "23.2")
248
94dbe99c
TTN
249;;;; Internal Variables
250
de171465
SM
251(defun doc-view-new-window-function (winprops)
252 (let ((ol (image-mode-window-get 'overlay winprops)))
0bca393f
SM
253 (when (and ol (not (overlay-buffer ol)))
254 ;; I've seen `ol' be a dead overlay. I do not yet know how this
255 ;; happened, so maybe the bug is elsewhere, but in the mean time,
256 ;; this seems like a safe approach.
257 (setq ol nil))
de171465 258 (if ol
0bca393f
SM
259 (progn
260 (assert (eq (overlay-buffer ol) (current-buffer)))
261 (setq ol (copy-overlay ol)))
10b6e7c1 262 (assert (not (get-char-property (point-min) 'display)))
de171465
SM
263 (setq ol (make-overlay (point-min) (point-max) nil t))
264 (overlay-put ol 'doc-view t))
265 (overlay-put ol 'window (car winprops))
266 (image-mode-window-put 'overlay ol winprops)))
94dbe99c 267
de171465 268(defvar doc-view-current-files nil
94dbe99c 269 "Only used internally.")
ec4853ab 270(make-variable-buffer-local 'doc-view-current-files)
94dbe99c 271
ec4853ab 272(defvar doc-view-current-converter-processes nil
94dbe99c 273 "Only used internally.")
ec4853ab 274(make-variable-buffer-local 'doc-view-current-converter-processes)
94dbe99c
TTN
275
276(defvar doc-view-current-timer nil
277 "Only used internally.")
ec4853ab 278(make-variable-buffer-local 'doc-view-current-timer)
94dbe99c 279
94dbe99c
TTN
280(defvar doc-view-current-cache-dir nil
281 "Only used internally.")
ec4853ab 282(make-variable-buffer-local 'doc-view-current-cache-dir)
94dbe99c
TTN
283
284(defvar doc-view-current-search-matches nil
285 "Only used internally.")
ec4853ab 286(make-variable-buffer-local 'doc-view-current-search-matches)
94dbe99c 287
d99abf1b
RS
288(defvar doc-view-pending-cache-flush nil
289 "Only used internally.")
94dbe99c 290
937cb3fb 291(defvar doc-view-previous-major-mode nil
640602f7
RS
292 "Only used internally.")
293
39a402e3
TH
294(defvar doc-view-buffer-file-name nil
295 "Only used internally.
296The file name used for conversion. Normally it's the same as
297`buffer-file-name', but for remote files, compressed files and
298files inside an archive it is a temporary copy of
299the (uncompressed, extracted) file residing in
300`doc-view-cache-directory'.")
301
eb79098b
SM
302(defvar doc-view-doc-type nil
303 "The type of document in the current buffer.
304Can be `dvi', `pdf', or `ps'.")
305
640602f7 306;;;; DocView Keymaps
94dbe99c
TTN
307
308(defvar doc-view-mode-map
309 (let ((map (make-sparse-keymap)))
d2d7e96c 310 (set-keymap-parent map image-mode-map)
94dbe99c
TTN
311 ;; Navigation in the document
312 (define-key map (kbd "n") 'doc-view-next-page)
313 (define-key map (kbd "p") 'doc-view-previous-page)
eb8d0216
SM
314 (define-key map (kbd "<next>") 'forward-page)
315 (define-key map (kbd "<prior>") 'backward-page)
316 (define-key map [remap forward-page] 'doc-view-next-page)
317 (define-key map [remap backward-page] 'doc-view-previous-page)
94dbe99c
TTN
318 (define-key map (kbd "SPC") 'doc-view-scroll-up-or-next-page)
319 (define-key map (kbd "DEL") 'doc-view-scroll-down-or-previous-page)
aefcadb6
JL
320 (define-key map (kbd "C-n") 'doc-view-next-line-or-next-page)
321 (define-key map (kbd "<down>") 'doc-view-next-line-or-next-page)
322 (define-key map (kbd "C-p") 'doc-view-previous-line-or-previous-page)
323 (define-key map (kbd "<up>") 'doc-view-previous-line-or-previous-page)
94dbe99c
TTN
324 (define-key map (kbd "M-<") 'doc-view-first-page)
325 (define-key map (kbd "M->") 'doc-view-last-page)
7656fe61 326 (define-key map [remap goto-line] 'doc-view-goto-page)
4376876e 327 (define-key map (kbd "RET") 'image-next-line)
05477667
SM
328 ;; Zoom in/out.
329 (define-key map "+" 'doc-view-enlarge)
330 (define-key map "-" 'doc-view-shrink)
d7b89879
TH
331 ;; Fit the image to the window
332 (define-key map "W" 'doc-view-fit-width-to-window)
333 (define-key map "H" 'doc-view-fit-height-to-window)
334 (define-key map "P" 'doc-view-fit-page-to-window)
d2d7e96c 335 ;; Killing the buffer (and the process)
94dbe99c 336 (define-key map (kbd "k") 'doc-view-kill-proc-and-buffer)
937cb3fb 337 (define-key map (kbd "K") 'doc-view-kill-proc)
94dbe99c
TTN
338 ;; Slicing the image
339 (define-key map (kbd "s s") 'doc-view-set-slice)
340 (define-key map (kbd "s m") 'doc-view-set-slice-using-mouse)
341 (define-key map (kbd "s r") 'doc-view-reset-slice)
342 ;; Searching
343 (define-key map (kbd "C-s") 'doc-view-search)
344 (define-key map (kbd "<find>") 'doc-view-search)
7baca0fa 345 (define-key map (kbd "C-r") 'doc-view-search-backward)
94dbe99c
TTN
346 ;; Show the tooltip
347 (define-key map (kbd "C-t") 'doc-view-show-tooltip)
640602f7
RS
348 ;; Toggle between text and image display or editing
349 (define-key map (kbd "C-c C-c") 'doc-view-toggle-display)
515357c2
TH
350 ;; Open a new buffer with doc's text contents
351 (define-key map (kbd "C-c C-t") 'doc-view-open-text)
0bca393f
SM
352 ;; Reconvert the current document. Don't just use revert-buffer
353 ;; because that resets the scale factor, the page number, ...
354 (define-key map (kbd "g") 'doc-view-revert-buffer)
355 (define-key map (kbd "r") 'doc-view-revert-buffer)
94dbe99c 356 map)
640602f7
RS
357 "Keymap used by `doc-view-mode' when displaying a doc as a set of images.")
358
0bca393f
SM
359(defun doc-view-revert-buffer (&optional ignore-auto noconfirm)
360 "Like `revert-buffer', but preserves the buffer's current modes."
361 ;; FIXME: this should probably be moved to files.el and used for
362 ;; most/all "g" bindings to revert-buffer.
363 (interactive (list (not current-prefix-arg)))
364 (revert-buffer ignore-auto noconfirm 'preserve-modes))
365
366
f4c75497
SM
367(easy-menu-define doc-view-menu doc-view-mode-map
368 "Menu for Doc View mode."
369 '("DocView"
0a745733
JL
370 ["Toggle display" doc-view-toggle-display]
371 ("Continuous"
372 ["Off" (setq doc-view-continuous nil)
373 :style radio :selected (eq doc-view-continuous nil)]
374 ["On" (setq doc-view-continuous t)
375 :style radio :selected (eq doc-view-continuous t)]
376 "---"
377 ["Save as Default"
378 (customize-save-variable 'doc-view-continuous doc-view-continuous) t]
379 )
380 "---"
f4c75497
SM
381 ["Set Slice" doc-view-set-slice-using-mouse]
382 ["Set Slice (manual)" doc-view-set-slice]
383 ["Reset Slice" doc-view-reset-slice]
384 "---"
385 ["Search" doc-view-search]
7baca0fa 386 ["Search Backwards" doc-view-search-backward]
f4c75497
SM
387 ))
388
937cb3fb 389(defvar doc-view-minor-mode-map
640602f7
RS
390 (let ((map (make-sparse-keymap)))
391 ;; Toggle between text and image display or editing
392 (define-key map (kbd "C-c C-c") 'doc-view-toggle-display)
640602f7 393 map)
937cb3fb 394 "Keymap used by `doc-minor-view-mode'.")
94dbe99c
TTN
395
396;;;; Navigation Commands
397
160dfe43
SM
398(defmacro doc-view-current-page (&optional win)
399 `(image-mode-window-get 'page ,win))
de171465
SM
400(defmacro doc-view-current-info () `(image-mode-window-get 'info))
401(defmacro doc-view-current-overlay () `(image-mode-window-get 'overlay))
402(defmacro doc-view-current-image () `(image-mode-window-get 'image))
403(defmacro doc-view-current-slice () `(image-mode-window-get 'slice))
404
bdd42899
SM
405(defun doc-view-last-page-number ()
406 (length doc-view-current-files))
407
94dbe99c
TTN
408(defun doc-view-goto-page (page)
409 "View the page given by PAGE."
410 (interactive "nPage: ")
bdd42899 411 (let ((len (doc-view-last-page-number))
bc19637d 412 (hscroll (window-hscroll)))
94dbe99c 413 (if (< page 1)
1ca678aa 414 (setq page 1)
56741510
SM
415 (when (and (> page len)
416 ;; As long as the converter is running, we don't know
417 ;; how many pages will be available.
ec4853ab 418 (null doc-view-current-converter-processes))
1ca678aa 419 (setq page len)))
de171465
SM
420 (setf (doc-view-current-page) page
421 (doc-view-current-info)
1ca678aa
MC
422 (concat
423 (propertize
de171465 424 (format "Page %d of %d." page len) 'face 'bold)
1ca678aa 425 ;; Tell user if converting isn't finished yet
ec4853ab 426 (if doc-view-current-converter-processes
1ca678aa
MC
427 " (still converting...)\n"
428 "\n")
429 ;; Display context infos if this page matches the last search
430 (when (and doc-view-current-search-matches
de171465 431 (assq page doc-view-current-search-matches))
1ca678aa
MC
432 (concat (propertize "Search matches:\n" 'face 'bold)
433 (let ((contexts ""))
de171465 434 (dolist (m (cdr (assq page
1ca678aa
MC
435 doc-view-current-search-matches)))
436 (setq contexts (concat contexts " - \"" m "\"\n")))
437 contexts)))))
94dbe99c 438 ;; Update the buffer
56741510
SM
439 ;; We used to find the file name from doc-view-current-files but
440 ;; that's not right if the pages are not generated sequentially
441 ;; or if the page isn't in doc-view-current-files yet.
ec4853ab
SM
442 (let ((file (expand-file-name (format "page-%d.png" page)
443 (doc-view-current-cache-dir))))
444 (doc-view-insert-image file :pointer 'arrow)
bc19637d 445 (set-window-hscroll (selected-window) hscroll)
ec4853ab
SM
446 (when (and (not (file-exists-p file))
447 doc-view-current-converter-processes)
448 ;; The PNG file hasn't been generated yet.
449 (doc-view-pdf->png-1 doc-view-buffer-file-name file page
94d11cb5 450 (let ((win (selected-window)))
ec4853ab
SM
451 (lambda ()
452 (and (eq (current-buffer) (window-buffer win))
453 ;; If we changed page in the mean
454 ;; time, don't mess things up.
455 (eq (doc-view-current-page win) page)
bdd42899
SM
456 ;; Make sure we don't infloop.
457 (file-readable-p file)
ec4853ab 458 (with-selected-window win
94d11cb5 459 (doc-view-goto-page page))))))))
de171465
SM
460 (overlay-put (doc-view-current-overlay)
461 'help-echo (doc-view-current-info))))
94dbe99c
TTN
462
463(defun doc-view-next-page (&optional arg)
464 "Browse ARG pages forward."
465 (interactive "p")
de171465 466 (doc-view-goto-page (+ (doc-view-current-page) (or arg 1))))
94dbe99c
TTN
467
468(defun doc-view-previous-page (&optional arg)
469 "Browse ARG pages backward."
470 (interactive "p")
de171465 471 (doc-view-goto-page (- (doc-view-current-page) (or arg 1))))
94dbe99c
TTN
472
473(defun doc-view-first-page ()
474 "View the first page."
475 (interactive)
476 (doc-view-goto-page 1))
477
478(defun doc-view-last-page ()
479 "View the last page."
480 (interactive)
bdd42899 481 (doc-view-goto-page (doc-view-last-page-number)))
94dbe99c 482
7d6b4d3c
JL
483(defun doc-view-scroll-up-or-next-page (&optional arg)
484 "Scroll page up ARG lines if possible, else goto next page.
0a745733 485When `doc-view-continuous' is non-nil, scrolling upward
7d6b4d3c
JL
486at the bottom edge of the page moves to the next page.
487Otherwise, goto next page only on typing SPC (ARG is nil)."
488 (interactive "P")
0a745733 489 (if (or doc-view-continuous (null arg))
7d6b4d3c
JL
490 (let ((hscroll (window-hscroll))
491 (cur-page (doc-view-current-page)))
492 (when (= (window-vscroll) (image-scroll-up arg))
493 (doc-view-next-page)
494 (when (/= cur-page (doc-view-current-page))
495 (image-bob)
496 (image-bol 1))
497 (set-window-hscroll (selected-window) hscroll)))
498 (image-scroll-up arg)))
499
500(defun doc-view-scroll-down-or-previous-page (&optional arg)
501 "Scroll page down ARG lines if possible, else goto previous page.
0a745733 502When `doc-view-continuous' is non-nil, scrolling downward
7d6b4d3c
JL
503at the top edge of the page moves to the previous page.
504Otherwise, goto previous page only on typing DEL (ARG is nil)."
505 (interactive "P")
0a745733 506 (if (or doc-view-continuous (null arg))
7d6b4d3c
JL
507 (let ((hscroll (window-hscroll))
508 (cur-page (doc-view-current-page)))
509 (when (= (window-vscroll) (image-scroll-down arg))
510 (doc-view-previous-page)
511 (when (/= cur-page (doc-view-current-page))
512 (image-eob)
513 (image-bol 1))
514 (set-window-hscroll (selected-window) hscroll)))
515 (image-scroll-down arg)))
516
517(defun doc-view-next-line-or-next-page (&optional arg)
518 "Scroll upward by ARG lines if possible, else goto next page.
0a745733 519When `doc-view-continuous' is non-nil, scrolling a line upward
7d6b4d3c 520at the bottom edge of the page moves to the next page."
aefcadb6 521 (interactive "p")
0a745733 522 (if doc-view-continuous
aefcadb6
JL
523 (let ((hscroll (window-hscroll))
524 (cur-page (doc-view-current-page)))
7d6b4d3c 525 (when (= (window-vscroll) (image-next-line arg))
aefcadb6
JL
526 (doc-view-next-page)
527 (when (/= cur-page (doc-view-current-page))
528 (image-bob)
529 (image-bol 1))
530 (set-window-hscroll (selected-window) hscroll)))
531 (image-next-line 1)))
532
7d6b4d3c
JL
533(defun doc-view-previous-line-or-previous-page (&optional arg)
534 "Scroll downward by ARG lines if possible, else goto previous page.
0a745733 535When `doc-view-continuous' is non-nil, scrolling a line downward
aefcadb6
JL
536at the top edge of the page moves to the previous page."
537 (interactive "p")
0a745733 538 (if doc-view-continuous
aefcadb6
JL
539 (let ((hscroll (window-hscroll))
540 (cur-page (doc-view-current-page)))
7d6b4d3c 541 (when (= (window-vscroll) (image-previous-line arg))
aefcadb6
JL
542 (doc-view-previous-page)
543 (when (/= cur-page (doc-view-current-page))
544 (image-eob)
545 (image-bol 1))
546 (set-window-hscroll (selected-window) hscroll)))
7d6b4d3c 547 (image-previous-line arg)))
aefcadb6 548
937cb3fb
GM
549;;;; Utility Functions
550
640602f7 551(defun doc-view-kill-proc ()
ec4853ab 552 "Kill the current converter process(es)."
640602f7 553 (interactive)
bdd42899 554 (while (consp doc-view-current-converter-processes)
56741510 555 (ignore-errors ;; Maybe it's dead already?
ec4853ab 556 (kill-process (pop doc-view-current-converter-processes))))
640602f7
RS
557 (when doc-view-current-timer
558 (cancel-timer doc-view-current-timer)
559 (setq doc-view-current-timer nil))
560 (setq mode-line-process nil))
561
94dbe99c
TTN
562(defun doc-view-kill-proc-and-buffer ()
563 "Kill the current converter process and buffer."
564 (interactive)
640602f7 565 (doc-view-kill-proc)
94dbe99c 566 (when (eq major-mode 'doc-view-mode)
94dbe99c
TTN
567 (kill-buffer (current-buffer))))
568
c17587fe
SM
569(defun doc-view-make-safe-dir (dir)
570 (condition-case nil
571 (let ((umask (default-file-modes)))
c82f64de
LMI
572 (unwind-protect
573 (progn
574 ;; Create temp files with strict access rights. It's easy to
575 ;; loosen them later, whereas it's impossible to close the
576 ;; time-window of loose permissions otherwise.
577 (set-default-file-modes #o0700)
578 (make-directory dir))
579 ;; Reset the umask.
580 (set-default-file-modes umask)))
c17587fe 581 (file-already-exists
c82f64de
LMI
582 (when (file-symlink-p dir)
583 (error "Danger: %s points to a symbolic link" dir))
c17587fe
SM
584 ;; In case it was created earlier with looser rights.
585 ;; We could check the mode info returned by file-attributes, but it's
586 ;; a pain to parse and it may not tell you what we want under
587 ;; non-standard file-systems. So let's just say what we want and let
588 ;; the underlying C code and file-system figure it out.
589 ;; This also ends up checking a bunch of useful conditions: it makes
590 ;; sure we have write-access to the directory and that we own it, thus
591 ;; closing a bunch of security holes.
c82f64de
LMI
592 (condition-case error
593 (set-file-modes dir #o0700)
594 (file-error
595 (error
596 (format "Unable to use temporary directory %s: %s"
597 dir (mapconcat 'identity (cdr error) " "))))))))
c17587fe 598
937cb3fb
GM
599(defun doc-view-current-cache-dir ()
600 "Return the directory where the png files of the current doc should be saved.
601It's a subdirectory of `doc-view-cache-directory'."
602 (if doc-view-current-cache-dir
603 doc-view-current-cache-dir
c17587fe
SM
604 ;; Try and make sure doc-view-cache-directory exists and is safe.
605 (doc-view-make-safe-dir doc-view-cache-directory)
606 ;; Now compute the subdirectory to use.
937cb3fb
GM
607 (setq doc-view-current-cache-dir
608 (file-name-as-directory
c17587fe 609 (expand-file-name
5e9fde5e 610 (concat (file-name-nondirectory doc-view-buffer-file-name)
39a402e3
TH
611 "-"
612 (let ((file doc-view-buffer-file-name))
613 (with-temp-buffer
86903c81 614 (set-buffer-multibyte nil)
39a402e3
TH
615 (insert-file-contents-literally file)
616 (md5 (current-buffer)))))
c17587fe 617 doc-view-cache-directory)))))
937cb3fb
GM
618
619(defun doc-view-remove-if (predicate list)
620 "Return LIST with all items removed that satisfy PREDICATE."
621 (let (new-list)
8eda563d 622 (dolist (item list)
937cb3fb 623 (when (not (funcall predicate item))
8eda563d
JB
624 (setq new-list (cons item new-list))))
625 (nreverse new-list)))
937cb3fb 626
789ab9d4
RS
627;;;###autoload
628(defun doc-view-mode-p (type)
95e16d17
TH
629 "Return non-nil if document type TYPE is available for `doc-view'.
630Document types are symbols like `dvi', `ps', `pdf', or `odf' (any
631OpenDocument format)."
789ab9d4 632 (and (display-graphic-p)
c44d54b3
TH
633 (or (image-type-available-p 'imagemagick)
634 (image-type-available-p 'png))
789ab9d4
RS
635 (cond
636 ((eq type 'dvi)
637 (and (doc-view-mode-p 'pdf)
53d4c024
TH
638 (or (and doc-view-dvipdf-program
639 (executable-find doc-view-dvipdf-program))
640 (and doc-view-dvipdfm-program
641 (executable-find doc-view-dvipdfm-program)))))
622face2 642 ((or (eq type 'postscript) (eq type 'ps) (eq type 'eps)
789ab9d4
RS
643 (eq type 'pdf))
644 (and doc-view-ghostscript-program
645 (executable-find doc-view-ghostscript-program)))
95e16d17
TH
646 ((eq type 'odf)
647 (and doc-view-unoconv-program
648 (executable-find doc-view-unoconv-program)
649 (doc-view-mode-p 'pdf)))
789ab9d4
RS
650 (t ;; unknown image type
651 nil))))
652
94dbe99c
TTN
653;;;; Conversion Functions
654
05477667
SM
655(defvar doc-view-shrink-factor 1.125)
656
657(defun doc-view-enlarge (factor)
658 "Enlarge the document."
659 (interactive (list doc-view-shrink-factor))
875c044a
TH
660 (if (eq (plist-get (cdr (doc-view-current-image)) :type)
661 'imagemagick)
662 ;; ImageMagick supports on-the-fly-rescaling
663 (progn
664 (set (make-local-variable 'doc-view-image-width)
665 (ceiling (* factor doc-view-image-width)))
666 (doc-view-insert-image (plist-get (cdr (doc-view-current-image)) :file)
f77ca003 667 :width doc-view-image-width))
875c044a
TH
668 (set (make-local-variable 'doc-view-resolution)
669 (ceiling (* factor doc-view-resolution)))
670 (doc-view-reconvert-doc)))
05477667
SM
671
672(defun doc-view-shrink (factor)
673 "Shrink the document."
674 (interactive (list doc-view-shrink-factor))
675 (doc-view-enlarge (/ 1.0 factor)))
676
d7b89879
TH
677(defun doc-view-fit-width-to-window ()
678 "Fit the image width to the window width."
679 (interactive)
680 (let ((win-width (- (nth 2 (window-inside-pixel-edges))
681 (nth 0 (window-inside-pixel-edges))))
682 (slice (doc-view-current-slice)))
683 (if (not slice)
684 (let ((img-width (car (image-display-size
685 (image-get-display-property) t))))
686 (doc-view-enlarge (/ (float win-width) (float img-width))))
687
688 ;; If slice is set
689 (let* ((slice-width (nth 2 slice))
690 (scale-factor (/ (float win-width) (float slice-width)))
691 (new-slice (mapcar (lambda (x) (ceiling (* scale-factor x))) slice)))
692
693 (doc-view-enlarge scale-factor)
694 (setf (doc-view-current-slice) new-slice)
695 (doc-view-goto-page (doc-view-current-page))))))
696
697(defun doc-view-fit-height-to-window ()
698 "Fit the image height to the window height."
699 (interactive)
700 (let ((win-height (- (nth 3 (window-inside-pixel-edges))
701 (nth 1 (window-inside-pixel-edges))))
702 (slice (doc-view-current-slice)))
703 (if (not slice)
704 (let ((img-height (cdr (image-display-size
705 (image-get-display-property) t))))
706 ;; When users call 'doc-view-fit-height-to-window',
707 ;; they might want to go to next page by typing SPC
708 ;; ONLY once. So I used '(- win-height 1)' instead of
709 ;; 'win-height'
710 (doc-view-enlarge (/ (float (- win-height 1)) (float img-height))))
711
712 ;; If slice is set
713 (let* ((slice-height (nth 3 slice))
714 (scale-factor (/ (float (- win-height 1)) (float slice-height)))
715 (new-slice (mapcar (lambda (x) (ceiling (* scale-factor x))) slice)))
716
717 (doc-view-enlarge scale-factor)
718 (setf (doc-view-current-slice) new-slice)
719 (doc-view-goto-page (doc-view-current-page))))))
720
721(defun doc-view-fit-page-to-window ()
722 "Fit the image to the window.
723More specifically, this function enlarges image by:
724
725min {(window-width / image-width), (window-height / image-height)} times."
726 (interactive)
727 (let ((win-width (- (nth 2 (window-inside-pixel-edges))
728 (nth 0 (window-inside-pixel-edges))))
729 (win-height (- (nth 3 (window-inside-pixel-edges))
730 (nth 1 (window-inside-pixel-edges))))
731 (slice (doc-view-current-slice)))
732 (if (not slice)
733 (let ((img-width (car (image-display-size
734 (image-get-display-property) t)))
735 (img-height (cdr (image-display-size
736 (image-get-display-property) t))))
737 (doc-view-enlarge (min (/ (float win-width) (float img-width))
738 (/ (float (- win-height 1)) (float img-height)))))
739 ;; If slice is set
740 (let* ((slice-width (nth 2 slice))
741 (slice-height (nth 3 slice))
742 (scale-factor (min (/ (float win-width) (float slice-width))
743 (/ (float (- win-height 1)) (float slice-height))))
744 (new-slice (mapcar (lambda (x) (ceiling (* scale-factor x))) slice)))
745 (doc-view-enlarge scale-factor)
746 (setf (doc-view-current-slice) new-slice)
747 (doc-view-goto-page (doc-view-current-page))))))
748
c17587fe 749(defun doc-view-reconvert-doc ()
640602f7
RS
750 "Reconvert the current document.
751Should be invoked when the cached images aren't up-to-date."
752 (interactive)
f4c75497
SM
753 (doc-view-kill-proc)
754 ;; Clear the old cached files
755 (when (file-exists-p (doc-view-current-cache-dir))
bdd42899 756 (delete-directory (doc-view-current-cache-dir) 'recursive))
c17587fe 757 (doc-view-initiate-display))
94dbe99c 758
b4cb319f
SM
759(defun doc-view-sentinel (proc event)
760 "Generic sentinel for doc-view conversion processes."
94dbe99c 761 (if (not (string-match "finished" event))
b4cb319f 762 (message "DocView: process %s changed status to %s."
405ee48d
CY
763 (process-name proc)
764 (if (string-match "\\(.+\\)\n?\\'" event)
765 (match-string 1 event)
766 event))
ec4853ab
SM
767 (when (buffer-live-p (process-get proc 'buffer))
768 (with-current-buffer (process-get proc 'buffer)
769 (setq doc-view-current-converter-processes
770 (delq proc doc-view-current-converter-processes))
771 (setq mode-line-process
772 (if doc-view-current-converter-processes
773 (format ":%s" (car doc-view-current-converter-processes))))
774 (funcall (process-get proc 'callback))))))
775
776(defun doc-view-start-process (name program args callback)
3c03f2ce
TH
777 ;; Make sure the process is started in an existing directory, (rather than
778 ;; some file-name-handler-managed dir, for example).
779 (let* ((default-directory (if (file-readable-p default-directory)
780 default-directory
781 (expand-file-name "~/")))
ec4853ab
SM
782 (proc (apply 'start-process name doc-view-conversion-buffer
783 program args)))
784 (push proc doc-view-current-converter-processes)
785 (setq mode-line-process (list (format ":%s" proc)))
786 (set-process-sentinel proc 'doc-view-sentinel)
787 (process-put proc 'buffer (current-buffer))
788 (process-put proc 'callback callback)))
b4cb319f
SM
789
790(defun doc-view-dvi->pdf (dvi pdf callback)
791 "Convert DVI to PDF asynchronously and call CALLBACK when finished."
53d4c024
TH
792 ;; Prefer dvipdf over dvipdfm, because the latter has problems if the DVI
793 ;; references and includes other PS files.
794 (if (and doc-view-dvipdf-program
795 (executable-find doc-view-dvipdf-program))
796 (doc-view-start-process "dvi->pdf" doc-view-dvipdf-program
94d11cb5
IK
797 (list dvi pdf)
798 callback)
53d4c024
TH
799 (doc-view-start-process "dvi->pdf" doc-view-dvipdfm-program
800 (list "-o" pdf dvi)
801 callback)))
ec4853ab 802
95e16d17
TH
803(defun doc-view-odf->pdf (odf callback)
804 "Convert ODF to PDF asynchronously and call CALLBACK when finished.
805The converted PDF is put into the current cache directory, and it
806is named like ODF with the extension turned to pdf."
807 (doc-view-start-process "odf->pdf" doc-view-unoconv-program
808 (list "-f" "pdf" "-o" (doc-view-current-cache-dir) odf)
809 callback))
94dbe99c
TTN
810
811(defun doc-view-pdf/ps->png (pdf-ps png)
1f75e53d 812 "Convert PDF-PS to PNG asynchronously."
ec4853ab
SM
813 (doc-view-start-process
814 "pdf/ps->png" doc-view-ghostscript-program
815 (append doc-view-ghostscript-options
816 (list (format "-r%d" (round doc-view-resolution))
817 (concat "-sOutputFile=" png)
818 pdf-ps))
94d11cb5 819 (let ((resolution doc-view-resolution))
bdd42899
SM
820 (lambda ()
821 ;; Only create the resolution file when it's all done, so it also
822 ;; serves as a witness that the conversion is complete.
823 (write-region (prin1-to-string resolution) nil
824 (expand-file-name "resolution.el"
825 (doc-view-current-cache-dir))
826 nil 'silently)
827 (when doc-view-current-timer
828 (cancel-timer doc-view-current-timer)
829 (setq doc-view-current-timer nil))
830 (doc-view-display (current-buffer) 'force))))
ec4853ab 831 ;; Update the displayed pages as soon as they're done generating.
94dbe99c
TTN
832 (when doc-view-conversion-refresh-interval
833 (setq doc-view-current-timer
ec4853ab
SM
834 (run-at-time "1 secs" doc-view-conversion-refresh-interval
835 'doc-view-display
836 (current-buffer)))))
837
838(defun doc-view-pdf->png-1 (pdf png page callback)
839 "Convert a PAGE of a PDF file to PNG asynchronously.
840Call CALLBACK with no arguments when done."
841 (doc-view-start-process
842 "pdf->png-1" doc-view-ghostscript-program
843 (append doc-view-ghostscript-options
844 (list (format "-r%d" (round doc-view-resolution))
845 ;; Sadly, `gs' only supports the page-range
846 ;; for PDF files.
847 (format "-dFirstPage=%d" page)
848 (format "-dLastPage=%d" page)
849 (concat "-sOutputFile=" png)
850 pdf))
851 callback))
852
aa360da1
GM
853(declare-function clear-image-cache "image.c" (&optional filter))
854
ec4853ab
SM
855(defun doc-view-pdf->png (pdf png pages)
856 "Convert a PDF file to PNG asynchronously.
857Start by converting PAGES, and then the rest."
858 (if (null pages)
859 (doc-view-pdf/ps->png pdf png)
860 ;; We could render several `pages' with a single process if they're
861 ;; (almost) consecutive, but since in 99% of the cases, there'll be only
862 ;; a single page anyway, and of the remaining 1%, few cases will have
863 ;; consecutive pages, it's not worth the trouble.
94d11cb5 864 (let ((rest (cdr pages)))
ec4853ab
SM
865 (doc-view-pdf->png-1
866 pdf (format png (car pages)) (car pages)
867 (lambda ()
868 (if rest
869 (doc-view-pdf->png pdf png rest)
870 ;; Yippie, the important pages are done, update the display.
871 (clear-image-cache)
bdd42899
SM
872 ;; For the windows that have a message (like "Welcome to
873 ;; DocView") display property, clearing the image cache is
874 ;; not sufficient.
875 (dolist (win (get-buffer-window-list (current-buffer) nil 'visible))
876 (with-selected-window win
94d11cb5
IK
877 (when (stringp (get-char-property (point-min) 'display))
878 (doc-view-goto-page (doc-view-current-page)))))
ec4853ab
SM
879 ;; Convert the rest of the pages.
880 (doc-view-pdf/ps->png pdf png)))))))
94dbe99c 881
b4cb319f
SM
882(defun doc-view-pdf->txt (pdf txt callback)
883 "Convert PDF to TXT asynchronously and call CALLBACK when finished."
ca32d854
GM
884 (or doc-view-pdftotext-program
885 (error "You need the `pdftotext' program to convert a PDF to text"))
ec4853ab
SM
886 (doc-view-start-process "pdf->txt" doc-view-pdftotext-program
887 (list "-raw" pdf txt)
888 callback))
515357c2 889
b4cb319f
SM
890(defun doc-view-doc->txt (txt callback)
891 "Convert the current document to text and call CALLBACK when done."
7edd6b92 892 (make-directory (doc-view-current-cache-dir) t)
b4cb319f
SM
893 (case doc-view-doc-type
894 (pdf
895 ;; Doc is a PDF, so convert it to TXT
896 (doc-view-pdf->txt doc-view-buffer-file-name txt callback))
897 (ps
898 ;; Doc is a PS, so convert it to PDF (which will be converted to
899 ;; TXT thereafter).
94d11cb5
IK
900 (let ((pdf (expand-file-name "doc.pdf"
901 (doc-view-current-cache-dir))))
b4cb319f
SM
902 (doc-view-ps->pdf doc-view-buffer-file-name pdf
903 (lambda () (doc-view-pdf->txt pdf txt callback)))))
904 (dvi
905 ;; Doc is a DVI. This means that a doc.pdf already exists in its
906 ;; cache subdirectory.
907 (doc-view-pdf->txt (expand-file-name "doc.pdf"
908 (doc-view-current-cache-dir))
909 txt callback))
b71b7803
TH
910 (odf
911 ;; Doc is some ODF (or MS Office) doc. This means that a doc.pdf
912 ;; already exists in its cache subdirectory.
913 (doc-view-pdf->txt (expand-file-name "doc.pdf"
914 (doc-view-current-cache-dir))
915 txt callback))
b4cb319f
SM
916 (t (error "DocView doesn't know what to do"))))
917
918(defun doc-view-ps->pdf (ps pdf callback)
919 "Convert PS to PDF asynchronously and call CALLBACK when finished."
ca32d854
GM
920 (or doc-view-ps2pdf-program
921 (error "You need the `ps2pdf' program to convert PS to PDF"))
ec4853ab
SM
922 (doc-view-start-process "ps->pdf" doc-view-ps2pdf-program
923 (list
924 ;; Avoid security problems when rendering files from
925 ;; untrusted sources.
926 "-dSAFER"
927 ;; in-file and out-file
928 ps pdf)
929 callback))
930
931(defun doc-view-active-pages ()
932 (let ((pages ()))
933 (dolist (win (get-buffer-window-list (current-buffer) nil 'visible))
934 (let ((page (image-mode-window-get 'page win)))
935 (unless (memq page pages) (push page pages))))
936 pages))
94dbe99c 937
640602f7 938(defun doc-view-convert-current-doc ()
39a402e3 939 "Convert `doc-view-buffer-file-name' to a set of png files, one file per page.
640602f7
RS
940Those files are saved in the directory given by the function
941`doc-view-current-cache-dir'."
c17587fe
SM
942 ;; Let stale files still display while we recompute the new ones, so only
943 ;; flush the cache when the conversion is over. One of the reasons why it
944 ;; is important to keep displaying the stale page is so that revert-buffer
945 ;; preserves the horizontal/vertical scroll settings (which are otherwise
946 ;; resets during the redisplay).
947 (setq doc-view-pending-cache-flush t)
948 (let ((png-file (expand-file-name "page-%d.png"
949 (doc-view-current-cache-dir))))
7edd6b92 950 (make-directory (doc-view-current-cache-dir) t)
eb79098b
SM
951 (case doc-view-doc-type
952 (dvi
953 ;; DVI files have to be converted to PDF before Ghostscript can process
954 ;; it.
94d11cb5 955 (let ((pdf (expand-file-name "doc.pdf" doc-view-current-cache-dir)))
b4cb319f
SM
956 (doc-view-dvi->pdf doc-view-buffer-file-name pdf
957 (lambda () (doc-view-pdf/ps->png pdf png-file)))))
95e16d17
TH
958 (odf
959 ;; ODF files have to be converted to PDF before Ghostscript can
960 ;; process it.
961 (lexical-let
962 ((pdf (expand-file-name "doc.pdf" doc-view-current-cache-dir))
963 (opdf (expand-file-name (concat (file-name-sans-extension
964 (file-name-nondirectory doc-view-buffer-file-name))
965 ".pdf")
966 doc-view-current-cache-dir))
967 (png-file png-file))
968 ;; The unoconv tool only supports a output directory, but no
969 ;; file name. It's named like the input file with the
970 ;; extension replaced by pdf.
971 (doc-view-odf->pdf doc-view-buffer-file-name
972 (lambda ()
973 ;; Rename to doc.pdf
974 (rename-file opdf pdf)
975 (doc-view-pdf/ps->png pdf png-file)))))
bdd42899
SM
976 (pdf
977 (let ((pages (doc-view-active-pages)))
978 ;; Convert PDF to PNG images starting with the active pages.
979 (doc-view-pdf->png doc-view-buffer-file-name png-file pages)))
eb79098b
SM
980 (t
981 ;; Convert to PNG images.
982 (doc-view-pdf/ps->png doc-view-buffer-file-name png-file)))))
94dbe99c 983
94dbe99c
TTN
984;;;; Slicing
985
aa360da1
GM
986(declare-function image-size "image.c" (spec &optional pixels frame))
987
94dbe99c
TTN
988(defun doc-view-set-slice (x y width height)
989 "Set the slice of the images that should be displayed.
990You can use this function to tell doc-view not to display the
991margins of the document. It prompts for the top-left corner (X
992and Y) of the slice to display and its WIDTH and HEIGHT.
993
994See `doc-view-set-slice-using-mouse' for a more convenient way to
995do that. To reset the slice use `doc-view-reset-slice'."
996 (interactive
de171465 997 (let* ((size (image-size (doc-view-current-image) t))
1ca678aa
MC
998 (a (read-number (format "Top-left X (0..%d): " (car size))))
999 (b (read-number (format "Top-left Y (0..%d): " (cdr size))))
1000 (c (read-number (format "Width (0..%d): " (- (car size) a))))
1001 (d (read-number (format "Height (0..%d): " (- (cdr size) b)))))
94dbe99c 1002 (list a b c d)))
de171465 1003 (setf (doc-view-current-slice) (list x y width height))
94dbe99c 1004 ;; Redisplay
de171465 1005 (doc-view-goto-page (doc-view-current-page)))
94dbe99c
TTN
1006
1007(defun doc-view-set-slice-using-mouse ()
1008 "Set the slice of the images that should be displayed.
1009You set the slice by pressing mouse-1 at its top-left corner and
1010dragging it to its bottom-right corner. See also
1011`doc-view-set-slice' and `doc-view-reset-slice'."
1012 (interactive)
1013 (let (x y w h done)
1014 (while (not done)
1015 (let ((e (read-event
1ca678aa
MC
1016 (concat "Press mouse-1 at the top-left corner and "
1017 "drag it to the bottom-right corner!"))))
1018 (when (eq (car e) 'drag-mouse-1)
1019 (setq x (car (posn-object-x-y (event-start e))))
1020 (setq y (cdr (posn-object-x-y (event-start e))))
1021 (setq w (- (car (posn-object-x-y (event-end e))) x))
1022 (setq h (- (cdr (posn-object-x-y (event-end e))) y))
1023 (setq done t))))
94dbe99c
TTN
1024 (doc-view-set-slice x y w h)))
1025
1026(defun doc-view-reset-slice ()
e48a5bf9 1027 "Reset the current slice.
1f75e53d 1028After calling this function whole pages will be visible again."
94dbe99c 1029 (interactive)
de171465 1030 (setf (doc-view-current-slice) nil)
94dbe99c 1031 ;; Redisplay
de171465 1032 (doc-view-goto-page (doc-view-current-page)))
94dbe99c
TTN
1033
1034;;;; Display
1035
1036(defun doc-view-insert-image (file &rest args)
1037 "Insert the given png FILE.
e48a5bf9 1038ARGS is a list of image descriptors."
c17587fe
SM
1039 (when doc-view-pending-cache-flush
1040 (clear-image-cache)
1041 (setq doc-view-pending-cache-flush nil))
de171465 1042 (let ((ol (doc-view-current-overlay))
56741510 1043 (image (if (and file (file-readable-p file))
875c044a
TH
1044 (if (not (fboundp 'imagemagick-types))
1045 (apply 'create-image file 'png nil args)
1046 (unless (member :width args)
1047 (setq args (append args (list :width doc-view-image-width))))
1048 (apply 'create-image file 'imagemagick nil args))))
de171465
SM
1049 (slice (doc-view-current-slice)))
1050 (setf (doc-view-current-image) image)
56741510 1051 (move-overlay ol (point-min) (point-max))
de171465 1052 (overlay-put ol 'display
56741510
SM
1053 (cond
1054 (image
de171465
SM
1055 (if slice
1056 (list (cons 'slice slice) image)
56741510
SM
1057 image))
1058 ;; We're trying to display a page that doesn't exist.
ec4853ab 1059 (doc-view-current-converter-processes
56741510
SM
1060 ;; Maybe the page doesn't exist *yet*.
1061 "Cannot display this page (yet)!")
1062 (t
1063 ;; Typically happens if the conversion process somehow
1064 ;; failed. Better not signal an error here because it
1065 ;; could prevent a subsequent reconversion from fixing
1066 ;; the problem.
1067 (concat "Cannot display this page!\n"
1068 "Maybe because of a conversion failure!"))))
1069 (let ((win (overlay-get ol 'window)))
1070 (if (stringp (overlay-get ol 'display))
1071 (progn ;Make sure the text is not scrolled out of view.
1072 (set-window-hscroll win 0)
1073 (set-window-vscroll win 0))
1074 (let ((hscroll (image-mode-window-get 'hscroll win))
1075 (vscroll (image-mode-window-get 'vscroll win)))
1076 ;; Reset scroll settings, in case they were changed.
1077 (if hscroll (set-window-hscroll win hscroll))
1078 (if vscroll (set-window-vscroll win vscroll)))))))
94dbe99c
TTN
1079
1080(defun doc-view-sort (a b)
1081 "Return non-nil if A should be sorted before B.
1082Predicate for sorting `doc-view-current-files'."
f4c75497
SM
1083 (or (< (length a) (length b))
1084 (and (= (length a) (length b))
1085 (string< a b))))
94dbe99c 1086
65073003
SM
1087(defun doc-view-display (buffer &optional force)
1088 "Start viewing the document in BUFFER.
214abdd4
SM
1089If FORCE is non-nil, start viewing even if the document does not
1090have the page we want to view."
65073003 1091 (with-current-buffer buffer
56741510
SM
1092 (let ((prev-pages doc-view-current-files))
1093 (setq doc-view-current-files
1094 (sort (directory-files (doc-view-current-cache-dir) t
1095 "page-[0-9]+\\.png" t)
1096 'doc-view-sort))
10b6e7c1
CY
1097 (dolist (win (or (get-buffer-window-list buffer nil t)
1098 (list (selected-window))))
1099 (let* ((page (doc-view-current-page win))
1100 (pagefile (expand-file-name (format "page-%d.png" page)
1101 (doc-view-current-cache-dir))))
1102 (when (or force
1103 (and (not (member pagefile prev-pages))
1104 (member pagefile doc-view-current-files)))
1105 (with-selected-window win
94d11cb5
IK
1106 (assert (eq (current-buffer) buffer))
1107 (doc-view-goto-page page))))))))
94dbe99c
TTN
1108
1109(defun doc-view-buffer-message ()
c17587fe
SM
1110 ;; Only show this message initially, not when refreshing the buffer (in which
1111 ;; case it's better to keep displaying the "stale" page while computing
1112 ;; the fresh new ones).
de171465
SM
1113 (unless (overlay-get (doc-view-current-overlay) 'display)
1114 (overlay-put (doc-view-current-overlay) 'display
c17587fe
SM
1115 (concat (propertize "Welcome to DocView!" 'face 'bold)
1116 "\n"
1117 "
1f75e53d 1118If you see this buffer it means that the document you want to view is being
f4c75497 1119converted to PNG and the conversion of the first page hasn't finished yet or
94dbe99c
TTN
1120`doc-view-conversion-refresh-interval' is set to nil.
1121
1122For now these keys are useful:
1123
1ca678aa 1124`q' : Bury this buffer. Conversion will go on in background.
937cb3fb 1125`k' : Kill the conversion process and this buffer.
c17587fe 1126`K' : Kill the conversion process.\n"))))
94dbe99c 1127
aa360da1
GM
1128(declare-function tooltip-show "tooltip" (text &optional use-echo-area))
1129
94dbe99c
TTN
1130(defun doc-view-show-tooltip ()
1131 (interactive)
de171465 1132 (tooltip-show (doc-view-current-info)))
94dbe99c 1133
515357c2
TH
1134(defun doc-view-open-text ()
1135 "Open a buffer with the current doc's contents as text."
1136 (interactive)
ec4853ab 1137 (if doc-view-current-converter-processes
515357c2
TH
1138 (message "DocView: please wait till conversion finished.")
1139 (let ((txt (expand-file-name "doc.txt" (doc-view-current-cache-dir))))
1140 (if (file-readable-p txt)
5b355315
TH
1141 (let ((name (concat "Text contents of "
1142 (file-name-nondirectory buffer-file-name)))
1143 (dir (file-name-directory buffer-file-name)))
1144 (with-current-buffer (find-file txt)
1145 (rename-buffer name)
1146 (setq default-directory dir)))
b4cb319f 1147 (doc-view-doc->txt txt 'doc-view-open-text)))))
515357c2 1148
937cb3fb 1149;;;;; Toggle between editing and viewing
640602f7
RS
1150
1151(defun doc-view-toggle-display ()
937cb3fb 1152 "Toggle between editing a document as text or viewing it."
640602f7 1153 (interactive)
937cb3fb
GM
1154 (if (eq major-mode 'doc-view-mode)
1155 ;; Switch to editing mode
1156 (progn
1157 (doc-view-kill-proc)
1158 (setq buffer-read-only nil)
515357c2
TH
1159 (remove-overlays (point-min) (point-max) 'doc-view t)
1160 (set (make-local-variable 'image-mode-winprops-alist) t)
ad727c81
TH
1161 ;; Switch to the previously used major mode or fall back to
1162 ;; normal mode.
291cc045 1163 (doc-view-fallback-mode)
c17587fe 1164 (doc-view-minor-mode 1))
937cb3fb
GM
1165 ;; Switch to doc-view-mode
1166 (when (and (buffer-modified-p)
1167 (y-or-n-p "The buffer has been modified. Save the changes? "))
1168 (save-buffer))
937cb3fb 1169 (doc-view-mode)))
640602f7 1170
94dbe99c
TTN
1171;;;; Searching
1172
515357c2 1173
94dbe99c
TTN
1174(defun doc-view-search-internal (regexp file)
1175 "Return a list of FILE's pages that contain text matching REGEXP.
1ca678aa
MC
1176The value is an alist of the form (PAGE CONTEXTS) where PAGE is
1177the pagenumber and CONTEXTS are all lines of text containing a match."
94dbe99c
TTN
1178 (with-temp-buffer
1179 (insert-file-contents file)
1180 (let ((page 1)
1ca678aa
MC
1181 (lastpage 1)
1182 matches)
94dbe99c 1183 (while (re-search-forward (concat "\\(?:\\([\f]\\)\\|\\("
1ca678aa 1184 regexp "\\)\\)") nil t)
069b4ce3 1185 (when (match-string 1) (setq page (1+ page)))
1ca678aa
MC
1186 (when (match-string 2)
1187 (if (/= page lastpage)
c17587fe 1188 (push (cons page
515357c2
TH
1189 (list (buffer-substring
1190 (line-beginning-position)
1191 (line-end-position))))
1192 matches)
1ca678aa
MC
1193 (setq matches (cons
1194 (append
1195 (or
1196 ;; This page already is a match.
1197 (car matches)
1198 ;; This is the first match on page.
1199 (list page))
1200 (list (buffer-substring
1201 (line-beginning-position)
1202 (line-end-position))))
1203 (cdr matches))))
1204 (setq lastpage page)))
94dbe99c
TTN
1205 (nreverse matches))))
1206
1207(defun doc-view-search-no-of-matches (list)
1208 "Extract the number of matches from the search result LIST."
1209 (let ((no 0))
1210 (dolist (p list)
1211 (setq no (+ no (1- (length p)))))
1212 no))
1213
7baca0fa
JL
1214(defun doc-view-search-backward (new-query)
1215 "Call `doc-view-search' for backward search.
1216If prefix NEW-QUERY is given, ask for a new regexp."
1217 (interactive "P")
da99b369 1218 (doc-view-search new-query t))
7baca0fa
JL
1219
1220(defun doc-view-search (new-query &optional backward)
1221 "Jump to the next match or initiate a new search if NEW-QUERY is given.
94dbe99c 1222If the current document hasn't been transformed to plain text
7baca0fa
JL
1223till now do that first.
1224If BACKWARD is non-nil, jump to the previous match."
1225 (interactive "P")
da99b369 1226 (if (and (not new-query)
7baca0fa
JL
1227 doc-view-current-search-matches)
1228 (if backward
1229 (doc-view-search-previous-match 1)
1230 (doc-view-search-next-match 1))
1231 ;; New search, so forget the old results.
1232 (setq doc-view-current-search-matches nil)
1233 (let ((txt (expand-file-name "doc.txt"
1234 (doc-view-current-cache-dir))))
1235 (if (file-readable-p txt)
1236 (progn
1237 (setq doc-view-current-search-matches
1238 (doc-view-search-internal
1239 (read-from-minibuffer "Regexp: ")
1240 txt))
1241 (message "DocView: search yielded %d matches."
1242 (doc-view-search-no-of-matches
1243 doc-view-current-search-matches)))
1244 ;; We must convert to TXT first!
ec4853ab 1245 (if doc-view-current-converter-processes
7baca0fa 1246 (message "DocView: please wait till conversion finished.")
b4cb319f 1247 (doc-view-doc->txt txt (lambda () (doc-view-search nil))))))))
94dbe99c
TTN
1248
1249(defun doc-view-search-next-match (arg)
1250 "Go to the ARGth next matching page."
1251 (interactive "p")
937cb3fb 1252 (let* ((next-pages (doc-view-remove-if
de171465 1253 (lambda (i) (<= (car i) (doc-view-current-page)))
937cb3fb 1254 doc-view-current-search-matches))
1ca678aa 1255 (page (car (nth (1- arg) next-pages))))
94dbe99c 1256 (if page
1ca678aa 1257 (doc-view-goto-page page)
94dbe99c 1258 (when (and
1ca678aa
MC
1259 doc-view-current-search-matches
1260 (y-or-n-p "No more matches after current page. Wrap to first match? "))
1261 (doc-view-goto-page (caar doc-view-current-search-matches))))))
94dbe99c
TTN
1262
1263(defun doc-view-search-previous-match (arg)
1264 "Go to the ARGth previous matching page."
1265 (interactive "p")
937cb3fb 1266 (let* ((prev-pages (doc-view-remove-if
de171465 1267 (lambda (i) (>= (car i) (doc-view-current-page)))
937cb3fb 1268 doc-view-current-search-matches))
1ca678aa 1269 (page (car (nth (1- arg) (nreverse prev-pages)))))
94dbe99c 1270 (if page
1ca678aa 1271 (doc-view-goto-page page)
94dbe99c 1272 (when (and
1ca678aa
MC
1273 doc-view-current-search-matches
1274 (y-or-n-p "No more matches before current page. Wrap to last match? "))
1275 (doc-view-goto-page (caar (last doc-view-current-search-matches)))))))
94dbe99c 1276
640602f7 1277;;;; User interface commands and the mode
94dbe99c 1278
0d17c4b9 1279(put 'doc-view-mode 'mode-class 'special)
c17587fe 1280
515357c2
TH
1281(defun doc-view-already-converted-p ()
1282 "Return non-nil if the current doc was already converted."
1283 (and (file-exists-p (doc-view-current-cache-dir))
bdd42899
SM
1284 ;; Check that the resolution info is there, otherwise it means
1285 ;; the conversion is incomplete.
1286 (file-readable-p (expand-file-name "resolution.el"
1287 (doc-view-current-cache-dir)))
1288 (> (length (directory-files (doc-view-current-cache-dir)
1289 nil "\\.png\\'"))
1290 0)))
515357c2 1291
c17587fe
SM
1292(defun doc-view-initiate-display ()
1293 ;; Switch to image display if possible
322f4559 1294 (if (doc-view-mode-p doc-view-doc-type)
c17587fe
SM
1295 (progn
1296 (doc-view-buffer-message)
de171465 1297 (setf (doc-view-current-page) (or (doc-view-current-page) 1))
515357c2 1298 (if (doc-view-already-converted-p)
c17587fe
SM
1299 (progn
1300 (message "DocView: using cached files!")
cde4c3f1 1301 ;; Load the saved resolution
bdd42899
SM
1302 (let* ((res-file (expand-file-name "resolution.el"
1303 (doc-view-current-cache-dir)))
1304 (res
1305 (with-temp-buffer
1306 (when (file-readable-p res-file)
1307 (insert-file-contents res-file)
1308 (read (current-buffer))))))
1309 (when (numberp res)
cde4c3f1 1310 (set (make-local-variable 'doc-view-resolution) res)))
65073003 1311 (doc-view-display (current-buffer) 'force))
c17587fe
SM
1312 (doc-view-convert-current-doc))
1313 (message
1314 "%s"
1315 (substitute-command-keys
1316 (concat "Type \\[doc-view-toggle-display] to toggle between "
1317 "editing or viewing the document."))))
1318 (message
1319 "%s"
0855c2ca
CY
1320 (concat "No PNG support is available, or some conversion utility for "
1321 (file-name-extension doc-view-buffer-file-name)
1322 " files is missing."))
1281bd51
TH
1323 (when (and (executable-find doc-view-pdftotext-program)
1324 (y-or-n-p
1325 "Unable to render file. View extracted text instead? "))
1326 (doc-view-open-text))
1327 (doc-view-toggle-display)))
94dbe99c 1328
e0385bf4 1329(defvar bookmark-make-record-function)
069b4ce3 1330
65073003
SM
1331(defun doc-view-clone-buffer-hook ()
1332 ;; FIXME: There are several potential problems linked with reconversion
1333 ;; and auto-revert when we have indirect buffers because they share their
1334 ;; /tmp cache directory. This sharing is good (you'd rather not reconvert
1335 ;; for each clone), but that means that clones need to collaborate a bit.
1336 ;; I guess it mostly means: detect when a reconversion process is already
1337 ;; running, and run the sentinel in all clones.
515357c2 1338 ;;
de171465 1339 ;; Maybe the clones should really have a separate /tmp directory
65073003
SM
1340 ;; so they could have a different resolution and you could use clones
1341 ;; for zooming.
de171465
SM
1342 (remove-overlays (point-min) (point-max) 'doc-view t)
1343 (if (consp image-mode-winprops-alist) (setq image-mode-winprops-alist nil)))
65073003 1344
eb79098b
SM
1345(defun doc-view-intersection (l1 l2)
1346 (let ((l ()))
1347 (dolist (x l1) (if (memq x l2) (push x l)))
1348 l))
1349
291cc045
TH
1350(defun doc-view-set-doc-type ()
1351 "Figure out the current document type (`doc-view-doc-type')."
1352 (let ((name-types
1353 (when buffer-file-name
1354 (cdr (assoc (file-name-extension buffer-file-name)
1355 '(
1356 ;; DVI
1357 ("dvi" dvi)
1358 ;; PDF
1359 ("pdf" pdf) ("epdf" pdf)
1360 ;; PostScript
1361 ("ps" ps) ("eps" ps)
1362 ;; OpenDocument formats
1363 ("odt" odf) ("ods" odf) ("odp" odf) ("odg" odf)
1364 ("odc" odf) ("odi" odf) ("odm" odf) ("ott" odf)
1365 ("ots" odf) ("otp" odf) ("otg" odf)
1366 ;; Microsoft Office formats (also handled
1367 ;; by the odf conversion chain)
1368 ("doc" odf) ("docx" odf) ("xls" odf) ("xlsx" odf)
1369 ("ppt" odf) ("pptx" odf))))))
1370 (content-types
1371 (save-excursion
1372 (goto-char (point-min))
1373 (cond
1374 ((looking-at "%!") '(ps))
1375 ((looking-at "%PDF") '(pdf))
1376 ((looking-at "\367\002") '(dvi))))))
1377 (set (make-local-variable 'doc-view-doc-type)
1378 (car (or (doc-view-intersection name-types content-types)
1379 (when (and name-types content-types)
1380 (error "Conflicting types: name says %s but content says %s"
1381 name-types content-types))
1382 name-types content-types
1383 (error "Cannot determine the document type"))))))
1384
640602f7 1385;;;###autoload
937cb3fb 1386(defun doc-view-mode ()
640602f7 1387 "Major mode in DocView buffers.
06a21f70
TH
1388
1389DocView Mode is an Emacs document viewer. It displays PDF, PS
1390and DVI files (as PNG images) in Emacs buffers.
1391
640602f7 1392You can use \\<doc-view-mode-map>\\[doc-view-toggle-display] to
5c1f16b0
SM
1393toggle between displaying the document or editing it as text.
1394\\{doc-view-mode-map}"
937cb3fb 1395 (interactive)
f9adf05b 1396
96fe38a8 1397 (if (= (point-min) (point-max))
85699772 1398 ;; The doc is empty or doesn't exist at all, so fallback to
96fe38a8
SM
1399 ;; another mode. We used to also check file-exists-p, but this
1400 ;; returns nil for tar members.
291cc045 1401 (doc-view-fallback-mode)
06a21f70
TH
1402
1403 (let* ((prev-major-mode (if (eq major-mode 'doc-view-mode)
1404 doc-view-previous-major-mode
291cc045
TH
1405 (when (not (memq major-mode
1406 '(doc-view-mode fundamental-mode)))
ad727c81 1407 major-mode))))
06a21f70
TH
1408 (kill-all-local-variables)
1409 (set (make-local-variable 'doc-view-previous-major-mode) prev-major-mode))
bc19637d 1410
06a21f70 1411 ;; Figure out the document type.
291cc045
TH
1412 (unless doc-view-doc-type
1413 (doc-view-set-doc-type))
bc19637d 1414
06a21f70
TH
1415 (doc-view-make-safe-dir doc-view-cache-directory)
1416 ;; Handle compressed files, remote files, files inside archives
1417 (set (make-local-variable 'doc-view-buffer-file-name)
1418 (cond
1419 (jka-compr-really-do-compress
5e9fde5e 1420 ;; FIXME: there's a risk of name conflicts here.
06a21f70
TH
1421 (expand-file-name
1422 (file-name-nondirectory
1423 (file-name-sans-extension buffer-file-name))
1424 doc-view-cache-directory))
1425 ;; Is the file readable by local processes?
1426 ;; We used to use `file-remote-p' but it's unclear what it's
1427 ;; supposed to return nil for things like local files accessed via
1428 ;; `su' or via file://...
1429 ((let ((file-name-handler-alist nil))
5e9fde5e
SM
1430 (not (and buffer-file-name (file-readable-p buffer-file-name))))
1431 ;; FIXME: there's a risk of name conflicts here.
06a21f70 1432 (expand-file-name
5e9fde5e
SM
1433 (if buffer-file-name
1434 (file-name-nondirectory buffer-file-name)
1435 (buffer-name))
1436 doc-view-cache-directory))
06a21f70
TH
1437 (t buffer-file-name)))
1438 (when (not (string= doc-view-buffer-file-name buffer-file-name))
1439 (write-region nil nil doc-view-buffer-file-name))
bc19637d 1440
06a21f70
TH
1441 (add-hook 'change-major-mode-hook
1442 (lambda ()
1443 (doc-view-kill-proc)
1444 (remove-overlays (point-min) (point-max) 'doc-view t))
1445 nil t)
1446 (add-hook 'clone-indirect-buffer-hook 'doc-view-clone-buffer-hook nil t)
1447 (add-hook 'kill-buffer-hook 'doc-view-kill-proc nil t)
bc19637d 1448
06a21f70
TH
1449 (remove-overlays (point-min) (point-max) 'doc-view t) ;Just in case.
1450 ;; Keep track of display info ([vh]scroll, page number, overlay,
1451 ;; ...) for each window in which this document is shown.
1452 (add-hook 'image-mode-new-window-functions
1453 'doc-view-new-window-function nil t)
1454 (image-mode-setup-winprops)
bc19637d 1455
06a21f70
TH
1456 (set (make-local-variable 'mode-line-position)
1457 '(" P" (:eval (number-to-string (doc-view-current-page)))
bdd42899 1458 "/" (:eval (number-to-string (doc-view-last-page-number)))))
06a21f70
TH
1459 ;; Don't scroll unless the user specifically asked for it.
1460 (set (make-local-variable 'auto-hscroll-mode) nil)
7d6b4d3c
JL
1461 (set (make-local-variable 'mwheel-scroll-up-function)
1462 'doc-view-scroll-up-or-next-page)
1463 (set (make-local-variable 'mwheel-scroll-down-function)
1464 'doc-view-scroll-down-or-previous-page)
06a21f70
TH
1465 (set (make-local-variable 'cursor-type) nil)
1466 (use-local-map doc-view-mode-map)
1467 (set (make-local-variable 'after-revert-hook) 'doc-view-reconvert-doc)
1468 (set (make-local-variable 'bookmark-make-record-function)
1469 'doc-view-bookmark-make-record)
1470 (setq mode-name "DocView"
1471 buffer-read-only t
1472 major-mode 'doc-view-mode)
1473 (doc-view-initiate-display)
d1d33062
TH
1474 ;; Switch off view-mode explicitly, because doc-view-mode is the
1475 ;; canonical view mode for PDF/PS/DVI files. This could be
1476 ;; switched on automatically depending on the value of
1477 ;; `view-read-only'.
bde04ea9 1478 (set (make-local-variable 'view-read-only) nil)
06a21f70 1479 (run-mode-hooks 'doc-view-mode-hook)))
937cb3fb 1480
291cc045
TH
1481(defun doc-view-fallback-mode ()
1482 "Fallback to the previous or next best major mode."
1483 (if doc-view-previous-major-mode
1484 (funcall doc-view-previous-major-mode)
1485 (let ((auto-mode-alist (rassq-delete-all
1486 'doc-view-mode-maybe
1487 (rassq-delete-all 'doc-view-mode
1488 (copy-alist auto-mode-alist)))))
1489 (normal-mode))))
1490
1491;;;###autoload
1492(defun doc-view-mode-maybe ()
1493 "Switch to `doc-view-mode' if possible.
1494If the required external tools are not available, then fallback
1495to the next best mode."
1496 (condition-case nil
1497 (doc-view-set-doc-type)
1498 (error (doc-view-fallback-mode)))
1499 (if (doc-view-mode-p doc-view-doc-type)
1500 (doc-view-mode)
1501 (doc-view-fallback-mode)))
1502
937cb3fb
GM
1503;;;###autoload
1504(define-minor-mode doc-view-minor-mode
06e21633
CY
1505 "Toggle displaying buffer via Doc View (Doc View minor mode).
1506With a prefix argument ARG, enable Doc View minor mode if ARG is
1507positive, and disable it otherwise. If called from Lisp, enable
1508the mode if ARG is omitted or nil.
1509
937cb3fb
GM
1510See the command `doc-view-mode' for more information on this mode."
1511 nil " DocView" doc-view-minor-mode-map
1512 :group 'doc-view
1513 (when doc-view-minor-mode
1514 (add-hook 'change-major-mode-hook (lambda () (doc-view-minor-mode -1)) nil t)
1515 (message
1516 "%s"
1517 (substitute-command-keys
1518 "Type \\[doc-view-toggle-display] to toggle between editing or viewing the document."))))
94dbe99c
TTN
1519
1520(defun doc-view-clear-cache ()
1521 "Delete the whole cache (`doc-view-cache-directory')."
1522 (interactive)
515357c2 1523 (dired-delete-file doc-view-cache-directory 'always))
94dbe99c
TTN
1524
1525(defun doc-view-dired-cache ()
1526 "Open `dired' in `doc-view-cache-directory'."
1527 (interactive)
1528 (dired doc-view-cache-directory))
1529
94dbe99c 1530
1666a6b3
TH
1531;;;; Bookmark integration
1532
e44fa724
KF
1533(declare-function bookmark-make-record-default
1534 "bookmark" (&optional no-file no-context posn))
a9f8b49b 1535(declare-function bookmark-prop-get "bookmark" (bookmark prop))
43f8b275 1536(declare-function bookmark-default-handler "bookmark" (bmk))
a9f8b49b 1537
32a091dd 1538(defun doc-view-bookmark-make-record ()
43f8b275
SM
1539 (nconc (bookmark-make-record-default)
1540 `((page . ,(doc-view-current-page))
1541 (handler . doc-view-bookmark-jump))))
1666a6b3 1542
069b4ce3 1543
1666a6b3
TH
1544;;;###autoload
1545(defun doc-view-bookmark-jump (bmk)
03e26a79 1546 ;; This implements the `handler' function interface for record type
e0385bf4 1547 ;; returned by `doc-view-bookmark-make-record', which see.
43f8b275
SM
1548 (prog1 (bookmark-default-handler bmk)
1549 (let ((page (bookmark-prop-get bmk 'page)))
1666a6b3 1550 (when (not (eq major-mode 'doc-view-mode))
43f8b275 1551 (doc-view-toggle-display))
a9f8b49b 1552 (with-selected-window
94d11cb5
IK
1553 (or (get-buffer-window (current-buffer) 0)
1554 (selected-window))
1555 (doc-view-goto-page page)))))
1666a6b3 1556
069b4ce3
GM
1557
1558(provide 'doc-view)
1559
1560;; Local Variables:
f0da764a 1561;; eval: (outline-minor-mode 1)
069b4ce3
GM
1562;; End:
1563
94dbe99c 1564;;; doc-view.el ends here