1 ;;; doc-view.el --- View PDF/PostScript/DVI files in Emacs -*- lexical-binding: t -*-
3 ;; Copyright (C) 2007-2013 Free Software Foundation, Inc.
5 ;; Author: Tassilo Horn <tsdh@gnu.org>
6 ;; Maintainer: Tassilo Horn <tsdh@gnu.org>
7 ;; Keywords: files, pdf, ps, dvi
9 ;; This file is part of GNU Emacs.
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 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; doc-view.el requires GNU Emacs 22.1 or newer. You also need Ghostscript,
27 ;; `dvipdf' (comes with Ghostscript) or `dvipdfm' (comes with teTeX or TeXLive)
28 ;; and `pdftotext', which comes with xpdf (http://www.foolabs.com/xpdf/) or
29 ;; poppler (http://poppler.freedesktop.org/).
33 ;; DocView is a document viewer for Emacs. It converts PDF, PS and DVI files
34 ;; to a set of PNG files, one PNG for each page, and displays the PNG images
35 ;; inside an Emacs buffer. This buffer uses `doc-view-mode' which provides
36 ;; convenient key bindings for browsing the document.
38 ;; To use it simply open a document file with
40 ;; C-x C-f ~/path/to/document RET
42 ;; and the document will be converted and displayed, if your emacs supports png
43 ;; images. With `C-c C-c' you can toggle between the rendered images
44 ;; representation and the source text representation of the document.
46 ;; Since conversion may take some time all the PNG images are cached in a
47 ;; subdirectory of `doc-view-cache-directory' and reused when you want to view
48 ;; that file again. To reconvert a document hit `g' (`doc-view-reconvert-doc')
49 ;; when displaying the document. To delete all cached files use
50 ;; `doc-view-clear-cache'. To open the cache with dired, so that you can tidy
51 ;; it out use `doc-view-dired-cache'.
53 ;; When conversion in underway the first page will be displayed as soon as it
54 ;; is available and the available pages are refreshed every
55 ;; `doc-view-conversion-refresh-interval' seconds. If that variable is nil the
56 ;; pages won't be displayed before conversion of the document finished
59 ;; DocView lets you select a slice of the displayed pages. This slice
60 ;; will be remembered and applied to all pages of the current
61 ;; document. This enables you to cut away the margins of a document
62 ;; to save some space. To select a slice you can use
63 ;; `doc-view-set-slice' (bound to `s s') which will query you for the
64 ;; coordinates of the slice's top-left corner and its width and
65 ;; height. A much more convenient way to do the same is offered by
66 ;; the command `doc-view-set-slice-using-mouse' (bound to `s m').
67 ;; After invocation you only have to press mouse-1 at the top-left
68 ;; corner and drag it to the bottom-right corner of the desired slice.
69 ;; Even more accurate and convenient is to use
70 ;; `doc-view-set-slice-from-bounding-box' (bound to `s b') which uses
71 ;; the BoundingBox information of the current page to set an optimal
72 ;; slice. To reset the slice use `doc-view-reset-slice' (bound to `s
75 ;; You can also search within the document. The command `doc-view-search'
76 ;; (bound to `C-s') queries for a search regexp and initializes a list of all
77 ;; matching pages and messages how many match-pages were found. After that you
78 ;; can jump to the next page containing a match with an additional `C-s'. With
79 ;; `C-r' you can do the same, but backwards. To search for a new regexp give a
80 ;; prefix arg to one of the search functions, e.g. by typing `C-u C-s'. The
81 ;; searching works by using a plain text representation of the document. If
82 ;; that doesn't already exist the first invocation of `doc-view-search' (or
83 ;; `doc-view-search-backward') starts the conversion. When that finishes and
84 ;; you're still viewing the document (i.e. you didn't switch to another buffer)
85 ;; you're queried for the regexp then.
87 ;; Dired users can simply hit `v' on a document file. If it's a PS, PDF or DVI
88 ;; it will be opened using `doc-view-mode'.
93 ;; If the images are too small or too big you should set the "-rXXX" option in
94 ;; `doc-view-ghostscript-options' to another value. (The bigger your screen,
95 ;; the higher the value.)
97 ;; This and all other options can be set with the customization interface.
100 ;; M-x customize-group RET doc-view RET
102 ;; and modify them to your needs.
106 ;; - add print command.
107 ;; - share more code with image-mode.
109 ;; - Bind slicing to a drag event.
110 ;; - zoom the region around the cursor (like xdvi).
111 ;; - get rid of the silly arrow in the fringe.
112 ;; - improve anti-aliasing (pdf-utils gets it better).
114 ;;;; About isearch support
116 ;; I tried implementing isearch by setting
117 ;; `isearch-search-fun-function' buffer-locally, but that didn't
118 ;; work too good. The function doing the real search was called
119 ;; endlessly somehow. But even if we'd get that working no real
120 ;; isearch feeling comes up due to the missing match highlighting.
121 ;; Currently I display all lines containing a match in a tooltip and
122 ;; each C-s or C-r jumps directly to the next/previous page with a
123 ;; match. With isearch we could only display the current match. So
124 ;; we had to decide if another C-s jumps to the next page with a
125 ;; match (thus only the first match in a page will be displayed in a
126 ;; tooltip) or to the next match, which would do nothing visible
127 ;; (except the tooltip) if the next match is on the same page.
129 ;; And it's much slower than the current search facility, because
130 ;; isearch really searches for each step forward or backward whereas
131 ;; the current approach searches once and then it knows to which
134 ;; Anyway, if someone with better isearch knowledge wants to give it a try,
135 ;; feel free to do it. --Tassilo
141 (require 'image-mode
)
144 ;;;; Customization Options
146 (defgroup doc-view nil
147 "In-buffer viewer for PDF, PostScript, DVI, and DJVU files."
148 :link
'(function-link doc-view
)
155 (defcustom doc-view-ghostscript-program
"gs"
156 "Program to convert PS and PDF files to PNG."
160 (defcustom doc-view-pdfdraw-program
162 ((executable-find "pdfdraw") "pdfdraw")
164 "Name of MuPDF's program to convert PDF files to PNG."
168 (defcustom doc-view-pdf-
>png-converter-function
169 (if (executable-find doc-view-pdfdraw-program
)
170 #'doc-view-pdf-
>png-converter-mupdf
171 #'doc-view-pdf-
>png-converter-ghostscript
)
172 "Function to call to convert a PDF file into a PNG file."
174 (function-item doc-view-pdf-
>png-converter-ghostscript
175 :doc
"Use ghostscript")
176 (function-item doc-view-pdf-
>png-converter-mupdf
181 (defcustom doc-view-ghostscript-options
182 '("-dSAFER" ;; Avoid security problems when rendering files from untrusted
184 "-dNOPAUSE" "-sDEVICE=png16m" "-dTextAlphaBits=4"
185 "-dBATCH" "-dGraphicsAlphaBits=4" "-dQUIET")
186 "A list of options to give to ghostscript."
187 :type
'(repeat string
)
190 (defcustom doc-view-resolution
100
191 "Dots per inch resolution used to render the documents.
192 Higher values result in larger images."
196 (defcustom doc-view-scale-internally t
197 "Whether we should try to rescale images ourselves.
198 If nil, the document is re-rendered every time the scaling factor is modified.
199 This only has an effect if the image libraries linked with Emacs support
203 (defcustom doc-view-image-width
850
204 "Default image width.
205 Has only an effect if `doc-view-scale-internally' is non-nil and support for
206 scaling is compiled into emacs."
211 (defcustom doc-view-dvipdfm-program
"dvipdfm"
212 "Program to convert DVI files to PDF.
214 DVI file will be converted to PDF before the resulting PDF is
217 If this and `doc-view-dvipdf-program' are set,
218 `doc-view-dvipdf-program' will be preferred."
222 (defcustom doc-view-dvipdf-program
"dvipdf"
223 "Program to convert DVI files to PDF.
225 DVI file will be converted to PDF before the resulting PDF is
228 If this and `doc-view-dvipdfm-program' are set,
229 `doc-view-dvipdf-program' will be preferred."
233 (define-obsolete-variable-alias 'doc-view-unoconv-program
234 'doc-view-odf-
>pdf-converter-program
237 (defcustom doc-view-odf-
>pdf-converter-program
239 ((executable-find "soffice") "soffice")
240 ((executable-find "unoconv") "unoconv")
242 "Program to convert any file type readable by OpenOffice.org to PDF.
244 Needed for viewing OpenOffice.org (and MS Office) files."
249 (defcustom doc-view-odf-
>pdf-converter-function
251 ((string-match "unoconv\\'" doc-view-odf-
>pdf-converter-program
)
252 #'doc-view-odf-
>pdf-converter-unoconv
)
253 ((string-match "soffice\\'" doc-view-odf-
>pdf-converter-program
)
254 #'doc-view-odf-
>pdf-converter-soffice
))
255 "Function to call to convert a ODF file into a PDF file."
257 (function-item doc-view-odf-
>pdf-converter-unoconv
259 (function-item doc-view-odf-
>pdf-converter-soffice
260 :doc
"Use LibreOffice")
264 (defcustom doc-view-ps2pdf-program
"ps2pdf"
265 "Program to convert PS files to PDF.
267 PS files will be converted to PDF before searching is possible."
271 (defcustom doc-view-pdftotext-program
"pdftotext"
272 "Program to convert PDF files to plain text.
274 Needed for searching."
278 (defcustom doc-view-cache-directory
279 (expand-file-name (format "docview%d" (user-uid))
280 temporary-file-directory
)
281 "The base directory, where the PNG images will be saved."
285 (defvar doc-view-conversion-buffer
" *doc-view conversion output*"
286 "The buffer where messages from the converter programs go to.")
288 (defcustom doc-view-conversion-refresh-interval
1
289 "Interval in seconds between refreshes of the DocView buffer while converting.
290 After such a refresh newly converted pages will be available for
291 viewing. If set to nil there won't be any refreshes and the
292 pages won't be displayed before conversion of the whole document
297 (defcustom doc-view-continuous nil
298 "In Continuous mode reaching the page edge advances to next/previous page.
299 When non-nil, scrolling a line upward at the bottom edge of the page
300 moves to the next page, and scrolling a line downward at the top edge
301 of the page moves to the previous page."
306 ;;;; Internal Variables
308 (defvar-local doc-view--current-converter-processes nil
309 "Only used internally.")
311 (defun doc-view-new-window-function (winprops)
312 ;; (message "New window %s for buf %s" (car winprops) (current-buffer))
313 (cl-assert (or (eq t
(car winprops
))
314 (eq (window-buffer (car winprops
)) (current-buffer))))
315 (let ((ol (image-mode-window-get 'overlay winprops
)))
318 (setq ol
(copy-overlay ol
))
319 ;; `ol' might actually be dead.
320 (move-overlay ol
(point-min) (point-max)))
321 (setq ol
(make-overlay (point-min) (point-max) nil t
))
322 (overlay-put ol
'doc-view t
))
323 (overlay-put ol
'window
(car winprops
))
324 (unless (windowp (car winprops
))
325 ;; It's a pseudo entry. Let's make sure it's not displayed (the
326 ;; `window' property is only effective if its value is a window).
327 (cl-assert (eq t
(car winprops
)))
329 (image-mode-window-put 'overlay ol winprops
)
330 (when (and (windowp (car winprops
))
331 (stringp (overlay-get ol
'display
))
332 (null doc-view--current-converter-processes
))
333 ;; We're not displaying an image yet, so let's do so. This happens when
334 ;; the buffer is displayed for the first time.
335 ;; Don't do it if there's a conversion is running, since in that case, it
336 ;; will be done later.
337 (with-selected-window (car winprops
)
338 (doc-view-goto-page 1)))))
340 (defvar-local doc-view--current-files nil
341 "Only used internally.")
343 (defvar-local doc-view--current-timer nil
344 "Only used internally.")
346 (defvar-local doc-view--current-cache-dir nil
347 "Only used internally.")
349 (defvar-local doc-view--current-search-matches nil
350 "Only used internally.")
352 (defvar doc-view--pending-cache-flush nil
353 "Only used internally.")
355 (defvar doc-view--previous-major-mode nil
356 "Only used internally.")
358 (defvar doc-view--buffer-file-name nil
359 "Only used internally.
360 The file name used for conversion. Normally it's the same as
361 `buffer-file-name', but for remote files, compressed files and
362 files inside an archive it is a temporary copy of
363 the (uncompressed, extracted) file residing in
364 `doc-view-cache-directory'.")
366 (defvar doc-view-doc-type nil
367 "The type of document in the current buffer.
368 Can be `dvi', `pdf', or `ps'.")
370 (defvar doc-view-single-page-converter-function nil
371 "Function to call to convert a single page of the document to a bitmap file.
372 May operate on the source document or on some intermediate (typically PDF)
375 (defvar-local doc-view--image-type nil
376 "The type of image in the current buffer.
377 Can be `png' or `tiff'.")
379 (defvar-local doc-view--image-file-pattern nil
380 "The `format' pattern of image file names.
381 Typically \"page-%s.png\".")
385 (defvar doc-view-mode-map
386 (let ((map (make-sparse-keymap)))
387 (set-keymap-parent map image-mode-map
)
388 ;; Navigation in the document
389 (define-key map
(kbd "n") 'doc-view-next-page
)
390 (define-key map
(kbd "p") 'doc-view-previous-page
)
391 (define-key map
(kbd "<next>") 'forward-page
)
392 (define-key map
(kbd "<prior>") 'backward-page
)
393 (define-key map
[remap forward-page
] 'doc-view-next-page
)
394 (define-key map
[remap backward-page
] 'doc-view-previous-page
)
395 (define-key map
(kbd "SPC") 'doc-view-scroll-up-or-next-page
)
396 (define-key map
(kbd "S-SPC") 'doc-view-scroll-down-or-previous-page
)
397 (define-key map
(kbd "DEL") 'doc-view-scroll-down-or-previous-page
)
398 (define-key map
(kbd "C-n") 'doc-view-next-line-or-next-page
)
399 (define-key map
(kbd "<down>") 'doc-view-next-line-or-next-page
)
400 (define-key map
(kbd "C-p") 'doc-view-previous-line-or-previous-page
)
401 (define-key map
(kbd "<up>") 'doc-view-previous-line-or-previous-page
)
402 (define-key map
(kbd "M-<") 'doc-view-first-page
)
403 (define-key map
(kbd "M->") 'doc-view-last-page
)
404 (define-key map
[remap goto-line
] 'doc-view-goto-page
)
405 (define-key map
(kbd "RET") 'image-next-line
)
407 (define-key map
"+" 'doc-view-enlarge
)
408 (define-key map
"=" 'doc-view-enlarge
)
409 (define-key map
"-" 'doc-view-shrink
)
410 (define-key map
"0" 'doc-view-scale-reset
)
411 (define-key map
[remap text-scale-adjust
] 'doc-view-scale-adjust
)
412 ;; Fit the image to the window
413 (define-key map
"W" 'doc-view-fit-width-to-window
)
414 (define-key map
"H" 'doc-view-fit-height-to-window
)
415 (define-key map
"P" 'doc-view-fit-page-to-window
)
416 ;; Killing the buffer (and the process)
417 (define-key map
(kbd "k") 'doc-view-kill-proc-and-buffer
)
418 (define-key map
(kbd "K") 'doc-view-kill-proc
)
420 (define-key map
(kbd "s s") 'doc-view-set-slice
)
421 (define-key map
(kbd "s m") 'doc-view-set-slice-using-mouse
)
422 (define-key map
(kbd "s b") 'doc-view-set-slice-from-bounding-box
)
423 (define-key map
(kbd "s r") 'doc-view-reset-slice
)
425 (define-key map
(kbd "C-s") 'doc-view-search
)
426 (define-key map
(kbd "<find>") 'doc-view-search
)
427 (define-key map
(kbd "C-r") 'doc-view-search-backward
)
429 (define-key map
(kbd "C-t") 'doc-view-show-tooltip
)
430 ;; Toggle between text and image display or editing
431 (define-key map
(kbd "C-c C-c") 'doc-view-toggle-display
)
432 ;; Open a new buffer with doc's text contents
433 (define-key map
(kbd "C-c C-t") 'doc-view-open-text
)
434 ;; Reconvert the current document. Don't just use revert-buffer
435 ;; because that resets the scale factor, the page number, ...
436 (define-key map
(kbd "g") 'doc-view-revert-buffer
)
437 (define-key map
(kbd "r") 'doc-view-revert-buffer
)
439 "Keymap used by `doc-view-mode' when displaying a doc as a set of images.")
441 (defun doc-view-revert-buffer (&optional ignore-auto noconfirm
)
442 "Like `revert-buffer', but preserves the buffer's current modes."
443 ;; FIXME: this should probably be moved to files.el and used for
444 ;; most/all "g" bindings to revert-buffer.
445 (interactive (list (not current-prefix-arg
)))
446 (revert-buffer ignore-auto noconfirm
'preserve-modes
))
449 (easy-menu-define doc-view-menu doc-view-mode-map
450 "Menu for Doc View mode."
452 ["Toggle display" doc-view-toggle-display
]
454 ["Off" (setq doc-view-continuous nil
)
455 :style radio
:selected
(eq doc-view-continuous nil
)]
456 ["On" (setq doc-view-continuous t
)
457 :style radio
:selected
(eq doc-view-continuous t
)]
460 (customize-save-variable 'doc-view-continuous doc-view-continuous
) t
]
463 ["Set Slice" doc-view-set-slice-using-mouse
]
464 ["Set Slice (BoundingBox)" doc-view-set-slice-from-bounding-box
]
465 ["Set Slice (manual)" doc-view-set-slice
]
466 ["Reset Slice" doc-view-reset-slice
]
468 ["Search" doc-view-search
]
469 ["Search Backwards" doc-view-search-backward
]
472 (defvar doc-view-minor-mode-map
473 (let ((map (make-sparse-keymap)))
474 ;; Toggle between text and image display or editing
475 (define-key map
(kbd "C-c C-c") 'doc-view-toggle-display
)
477 "Keymap used by `doc-minor-view-mode'.")
479 ;;;; Navigation Commands
481 (defmacro doc-view-current-page
(&optional win
)
482 `(image-mode-window-get 'page
,win
))
483 (defmacro doc-view-current-info
() `(image-mode-window-get 'info
))
484 (defmacro doc-view-current-overlay
() `(image-mode-window-get 'overlay
))
485 (defmacro doc-view-current-image
() `(image-mode-window-get 'image
))
486 (defmacro doc-view-current-slice
() `(image-mode-window-get 'slice
))
488 (defun doc-view-last-page-number ()
489 (length doc-view--current-files
))
491 (defun doc-view-goto-page (page)
492 "View the page given by PAGE."
493 (interactive "nPage: ")
494 (let ((len (doc-view-last-page-number)))
497 (when (and (> page len
)
498 ;; As long as the converter is running, we don't know
499 ;; how many pages will be available.
500 (null doc-view--current-converter-processes
))
502 (force-mode-line-update) ;To update `current-page'.
503 (setf (doc-view-current-page) page
504 (doc-view-current-info)
507 (format "Page %d of %d." page len
) 'face
'bold
)
508 ;; Tell user if converting isn't finished yet
509 (if doc-view--current-converter-processes
510 " (still converting...)\n"
512 ;; Display context infos if this page matches the last search
513 (when (and doc-view--current-search-matches
514 (assq page doc-view--current-search-matches
))
515 (concat (propertize "Search matches:\n" 'face
'bold
)
517 (dolist (m (cdr (assq page
518 doc-view--current-search-matches
)))
519 (setq contexts
(concat contexts
" - \"" m
"\"\n")))
522 ;; We used to find the file name from doc-view--current-files but
523 ;; that's not right if the pages are not generated sequentially
524 ;; or if the page isn't in doc-view--current-files yet.
525 (let ((file (expand-file-name
526 (format doc-view--image-file-pattern page
)
527 (doc-view--current-cache-dir))))
528 (doc-view-insert-image file
:pointer
'arrow
)
529 (when (and (not (file-exists-p file
))
530 doc-view--current-converter-processes
)
531 ;; The PNG file hasn't been generated yet.
532 (funcall doc-view-single-page-converter-function
533 doc-view--buffer-file-name file page
534 (let ((win (selected-window)))
536 (and (eq (current-buffer) (window-buffer win
))
537 ;; If we changed page in the mean
538 ;; time, don't mess things up.
539 (eq (doc-view-current-page win
) page
)
540 ;; Make sure we don't infloop.
541 (file-readable-p file
)
542 (with-selected-window win
543 (doc-view-goto-page page
))))))))
544 (overlay-put (doc-view-current-overlay)
545 'help-echo
(doc-view-current-info))))
547 (defun doc-view-next-page (&optional arg
)
548 "Browse ARG pages forward."
550 (doc-view-goto-page (+ (doc-view-current-page) (or arg
1))))
552 (defun doc-view-previous-page (&optional arg
)
553 "Browse ARG pages backward."
555 (doc-view-goto-page (- (doc-view-current-page) (or arg
1))))
557 (defun doc-view-first-page ()
558 "View the first page."
560 (doc-view-goto-page 1))
562 (defun doc-view-last-page ()
563 "View the last page."
565 (doc-view-goto-page (doc-view-last-page-number)))
567 (defun doc-view-scroll-up-or-next-page (&optional arg
)
568 "Scroll page up ARG lines if possible, else goto next page.
569 When `doc-view-continuous' is non-nil, scrolling upward
570 at the bottom edge of the page moves to the next page.
571 Otherwise, goto next page only on typing SPC (ARG is nil)."
573 (if (or doc-view-continuous
(null arg
))
574 (let ((hscroll (window-hscroll))
575 (cur-page (doc-view-current-page)))
576 (when (= (window-vscroll) (image-scroll-up arg
))
578 (when (/= cur-page
(doc-view-current-page))
581 (set-window-hscroll (selected-window) hscroll
)))
582 (image-scroll-up arg
)))
584 (defun doc-view-scroll-down-or-previous-page (&optional arg
)
585 "Scroll page down ARG lines if possible, else goto previous page.
586 When `doc-view-continuous' is non-nil, scrolling downward
587 at the top edge of the page moves to the previous page.
588 Otherwise, goto previous page only on typing DEL (ARG is nil)."
590 (if (or doc-view-continuous
(null arg
))
591 (let ((hscroll (window-hscroll))
592 (cur-page (doc-view-current-page)))
593 (when (= (window-vscroll) (image-scroll-down arg
))
594 (doc-view-previous-page)
595 (when (/= cur-page
(doc-view-current-page))
598 (set-window-hscroll (selected-window) hscroll
)))
599 (image-scroll-down arg
)))
601 (defun doc-view-next-line-or-next-page (&optional arg
)
602 "Scroll upward by ARG lines if possible, else goto next page.
603 When `doc-view-continuous' is non-nil, scrolling a line upward
604 at the bottom edge of the page moves to the next page."
606 (if doc-view-continuous
607 (let ((hscroll (window-hscroll))
608 (cur-page (doc-view-current-page)))
609 (when (= (window-vscroll) (image-next-line arg
))
611 (when (/= cur-page
(doc-view-current-page))
614 (set-window-hscroll (selected-window) hscroll
)))
615 (image-next-line 1)))
617 (defun doc-view-previous-line-or-previous-page (&optional arg
)
618 "Scroll downward by ARG lines if possible, else goto previous page.
619 When `doc-view-continuous' is non-nil, scrolling a line downward
620 at the top edge of the page moves to the previous page."
622 (if doc-view-continuous
623 (let ((hscroll (window-hscroll))
624 (cur-page (doc-view-current-page)))
625 (when (= (window-vscroll) (image-previous-line arg
))
626 (doc-view-previous-page)
627 (when (/= cur-page
(doc-view-current-page))
630 (set-window-hscroll (selected-window) hscroll
)))
631 (image-previous-line arg
)))
633 ;;;; Utility Functions
635 (defun doc-view-kill-proc ()
636 "Kill the current converter process(es)."
638 (while (consp doc-view--current-converter-processes
)
639 (ignore-errors ;; Some entries might not be processes, and maybe
640 ;; some are dead already?
641 (kill-process (pop doc-view--current-converter-processes
))))
642 (when doc-view--current-timer
643 (cancel-timer doc-view--current-timer
)
644 (setq doc-view--current-timer nil
))
645 (setq mode-line-process nil
))
647 (defun doc-view-kill-proc-and-buffer ()
648 "Kill the current converter process and buffer."
651 (when (eq major-mode
'doc-view-mode
)
652 (kill-buffer (current-buffer))))
654 (defun doc-view-make-safe-dir (dir)
656 (let ((umask (default-file-modes)))
659 ;; Create temp files with strict access rights. It's easy to
660 ;; loosen them later, whereas it's impossible to close the
661 ;; time-window of loose permissions otherwise.
662 (set-default-file-modes #o0700
)
663 (make-directory dir
))
665 (set-default-file-modes umask
)))
667 (when (file-symlink-p dir
)
668 (error "Danger: %s points to a symbolic link" dir
))
669 ;; In case it was created earlier with looser rights.
670 ;; We could check the mode info returned by file-attributes, but it's
671 ;; a pain to parse and it may not tell you what we want under
672 ;; non-standard file-systems. So let's just say what we want and let
673 ;; the underlying C code and file-system figure it out.
674 ;; This also ends up checking a bunch of useful conditions: it makes
675 ;; sure we have write-access to the directory and that we own it, thus
676 ;; closing a bunch of security holes.
677 (condition-case error
678 (set-file-modes dir
#o0700
)
681 (format "Unable to use temporary directory %s: %s"
682 dir
(mapconcat 'identity
(cdr error
) " "))))))))
684 (defun doc-view--current-cache-dir ()
685 "Return the directory where the png files of the current doc should be saved.
686 It's a subdirectory of `doc-view-cache-directory'."
687 (if doc-view--current-cache-dir
688 doc-view--current-cache-dir
689 ;; Try and make sure doc-view-cache-directory exists and is safe.
690 (doc-view-make-safe-dir doc-view-cache-directory
)
691 ;; Now compute the subdirectory to use.
692 (setq doc-view--current-cache-dir
693 (file-name-as-directory
695 (concat (subst-char-in-string ?% ?_
;; bug#13679
696 (file-name-nondirectory doc-view--buffer-file-name
))
698 (let ((file doc-view--buffer-file-name
))
700 (set-buffer-multibyte nil
)
701 (insert-file-contents-literally file
)
702 (md5 (current-buffer)))))
703 doc-view-cache-directory
)))))
706 (defun doc-view-mode-p (type)
707 "Return non-nil if document type TYPE is available for `doc-view'.
708 Document types are symbols like `dvi', `ps', `pdf', or `odf' (any
709 OpenDocument format)."
710 (and (display-graphic-p)
711 (or (image-type-available-p 'imagemagick
)
712 (image-type-available-p 'png
))
715 (and (doc-view-mode-p 'pdf
)
716 (or (and doc-view-dvipdf-program
717 (executable-find doc-view-dvipdf-program
))
718 (and doc-view-dvipdfm-program
719 (executable-find doc-view-dvipdfm-program
)))))
720 ((memq type
'(postscript ps eps pdf
))
721 ;; FIXME: allow mupdf here
722 (and doc-view-ghostscript-program
723 (executable-find doc-view-ghostscript-program
)))
725 (and doc-view-odf-
>pdf-converter-program
726 (executable-find doc-view-odf-
>pdf-converter-program
)
727 (doc-view-mode-p 'pdf
)))
729 (executable-find "ddjvu"))
730 (t ;; unknown image type
733 ;;;; Conversion Functions
735 (defvar doc-view-shrink-factor
1.125)
737 (defun doc-view-enlarge (factor)
738 "Enlarge the document by FACTOR."
739 (interactive (list doc-view-shrink-factor
))
740 (if (and doc-view-scale-internally
741 (eq (plist-get (cdr (doc-view-current-image)) :type
)
743 ;; ImageMagick supports on-the-fly-rescaling.
744 (let ((new (ceiling (* factor doc-view-image-width
))))
745 (unless (equal new doc-view-image-width
)
746 (setq-local doc-view-image-width new
)
747 (doc-view-insert-image
748 (plist-get (cdr (doc-view-current-image)) :file
)
749 :width doc-view-image-width
)))
750 (let ((new (ceiling (* factor doc-view-resolution
))))
751 (unless (equal new doc-view-resolution
)
752 (setq-local doc-view-resolution new
)
753 (doc-view-reconvert-doc)))))
755 (defun doc-view-shrink (factor)
756 "Shrink the document."
757 (interactive (list doc-view-shrink-factor
))
758 (doc-view-enlarge (/ 1.0 factor
)))
760 (defun doc-view-scale-reset ()
761 "Reset the document size/zoom level to the initial one."
763 (if (and doc-view-scale-internally
764 (eq (plist-get (cdr (doc-view-current-image)) :type
)
767 (kill-local-variable 'doc-view-image-width
)
768 (doc-view-insert-image
769 (plist-get (cdr (doc-view-current-image)) :file
)
770 :width doc-view-image-width
))
771 (kill-local-variable 'doc-view-resolution
)
772 (doc-view-reconvert-doc)))
774 (defun doc-view-scale-adjust (factor)
775 "Adjust the scale of the DocView page images by FACTOR.
776 FACTOR defaults to `doc-view-shrink-factor'.
778 The actual adjustment made depends on the final component of the
779 key-binding used to invoke the command, with all modifiers removed:
781 +, = Increase the image scale by FACTOR
782 - Decrease the image scale by FACTOR
783 0 Reset the image scale to the initial scale"
784 (interactive (list doc-view-shrink-factor
))
785 (let ((ev last-command-event
)
786 (echo-keystrokes nil
))
787 (pcase (event-basic-type ev
)
788 ((or ?
+ ?
=) (doc-view-enlarge factor
))
789 (?-
(doc-view-shrink factor
))
790 (?
0 (doc-view-scale-reset)))))
792 (defun doc-view-fit-width-to-window ()
793 "Fit the image width to the window width."
795 (let ((win-width (- (nth 2 (window-inside-pixel-edges))
796 (nth 0 (window-inside-pixel-edges))))
797 (slice (doc-view-current-slice)))
799 (let ((img-width (car (image-display-size
800 (image-get-display-property) t
))))
801 (doc-view-enlarge (/ (float win-width
) (float img-width
))))
804 (let* ((slice-width (nth 2 slice
))
805 (scale-factor (/ (float win-width
) (float slice-width
)))
806 (new-slice (mapcar (lambda (x) (ceiling (* scale-factor x
))) slice
)))
808 (doc-view-enlarge scale-factor
)
809 (setf (doc-view-current-slice) new-slice
)
810 (doc-view-goto-page (doc-view-current-page))))))
812 (defun doc-view-fit-height-to-window ()
813 "Fit the image height to the window height."
815 (let ((win-height (- (nth 3 (window-inside-pixel-edges))
816 (nth 1 (window-inside-pixel-edges))))
817 (slice (doc-view-current-slice)))
819 (let ((img-height (cdr (image-display-size
820 (image-get-display-property) t
))))
821 ;; When users call 'doc-view-fit-height-to-window',
822 ;; they might want to go to next page by typing SPC
823 ;; ONLY once. So I used '(- win-height 1)' instead of
825 (doc-view-enlarge (/ (float (- win-height
1)) (float img-height
))))
828 (let* ((slice-height (nth 3 slice
))
829 (scale-factor (/ (float (- win-height
1)) (float slice-height
)))
830 (new-slice (mapcar (lambda (x) (ceiling (* scale-factor x
))) slice
)))
832 (doc-view-enlarge scale-factor
)
833 (setf (doc-view-current-slice) new-slice
)
834 (doc-view-goto-page (doc-view-current-page))))))
836 (defun doc-view-fit-page-to-window ()
837 "Fit the image to the window.
838 More specifically, this function enlarges image by:
840 min {(window-width / image-width), (window-height / image-height)} times."
842 (let ((win-width (- (nth 2 (window-inside-pixel-edges))
843 (nth 0 (window-inside-pixel-edges))))
844 (win-height (- (nth 3 (window-inside-pixel-edges))
845 (nth 1 (window-inside-pixel-edges))))
846 (slice (doc-view-current-slice)))
848 (let ((img-width (car (image-display-size
849 (image-get-display-property) t
)))
850 (img-height (cdr (image-display-size
851 (image-get-display-property) t
))))
852 (doc-view-enlarge (min (/ (float win-width
) (float img-width
))
853 (/ (float (- win-height
1))
854 (float img-height
)))))
856 (let* ((slice-width (nth 2 slice
))
857 (slice-height (nth 3 slice
))
858 (scale-factor (min (/ (float win-width
) (float slice-width
))
859 (/ (float (- win-height
1))
860 (float slice-height
))))
861 (new-slice (mapcar (lambda (x) (ceiling (* scale-factor x
))) slice
)))
862 (doc-view-enlarge scale-factor
)
863 (setf (doc-view-current-slice) new-slice
)
864 (doc-view-goto-page (doc-view-current-page))))))
866 (defun doc-view-reconvert-doc ()
867 "Reconvert the current document.
868 Should be invoked when the cached images aren't up-to-date."
871 ;; Clear the old cached files
872 (when (file-exists-p (doc-view--current-cache-dir))
873 (delete-directory (doc-view--current-cache-dir) 'recursive
))
874 (kill-local-variable 'doc-view-last-page-number
)
875 (doc-view-initiate-display))
877 (defun doc-view-sentinel (proc event
)
878 "Generic sentinel for doc-view conversion processes."
879 (if (not (string-match "finished" event
))
880 (message "DocView: process %s changed status to %s."
882 (if (string-match "\\(.+\\)\n?\\'" event
)
883 (match-string 1 event
)
885 (when (buffer-live-p (process-get proc
'buffer
))
886 (with-current-buffer (process-get proc
'buffer
)
887 (setq doc-view--current-converter-processes
888 (delq proc doc-view--current-converter-processes
))
889 (setq mode-line-process
890 (if doc-view--current-converter-processes
891 (format ":%s" (car doc-view--current-converter-processes
))))
892 (funcall (process-get proc
'callback
))))))
894 (defun doc-view-start-process (name program args callback
)
895 ;; Make sure the process is started in an existing directory, (rather than
896 ;; some file-name-handler-managed dir, for example).
897 (let* ((default-directory (or (unhandled-file-name-directory
899 (expand-file-name "~/")))
900 (proc (apply 'start-process name doc-view-conversion-buffer
902 (push proc doc-view--current-converter-processes
)
903 (setq mode-line-process
(list (format ":%s" proc
)))
904 (set-process-sentinel proc
'doc-view-sentinel
)
905 (process-put proc
'buffer
(current-buffer))
906 (process-put proc
'callback callback
)))
908 (defun doc-view-dvi->pdf
(dvi pdf callback
)
909 "Convert DVI to PDF asynchronously and call CALLBACK when finished."
910 ;; Prefer dvipdf over dvipdfm, because the latter has problems if the DVI
911 ;; references and includes other PS files.
912 (if (and doc-view-dvipdf-program
913 (executable-find doc-view-dvipdf-program
))
914 (doc-view-start-process "dvi->pdf" doc-view-dvipdf-program
917 (doc-view-start-process "dvi->pdf" doc-view-dvipdfm-program
921 (defun doc-view-pdf->png-converter-ghostscript
(pdf png page callback
)
922 (doc-view-start-process
923 "pdf/ps->png" doc-view-ghostscript-program
924 `(,@doc-view-ghostscript-options
925 ,(format "-r%d" (round doc-view-resolution
))
926 ,@(if page
`(,(format "-dFirstPage=%d" page
)))
927 ,@(if page
`(,(format "-dLastPage=%d" page
)))
928 ,(concat "-sOutputFile=" png
)
932 (defalias 'doc-view-ps-
>png-converter-ghostscript
933 'doc-view-pdf-
>png-converter-ghostscript
)
935 (defun doc-view-djvu->tiff-converter-ddjvu
(djvu tiff page callback
)
936 "Convert PAGE of a DJVU file to bitmap(s) asynchronously.
937 Call CALLBACK with no arguments when done.
938 If PAGE is nil, convert the whole document."
939 (doc-view-start-process
942 ;; ddjvu only accepts the range 1-999.
943 ,(format "-scale=%d" (round doc-view-resolution
))
944 ;; -eachpage was only added after djvulibre-3.5.25.3!
945 ,@(unless page
'("-eachpage"))
946 ,@(if page
`(,(format "-page=%d" page
)))
951 (defun doc-view-pdf->png-converter-mupdf
(pdf png page callback
)
952 (doc-view-start-process
953 "pdf->png" doc-view-pdfdraw-program
955 ,(format "-r%d" (round doc-view-resolution
))
957 ,@(if page
`(,(format "%d" page
))))
960 (defun doc-view-odf->pdf-converter-unoconv
(odf callback
)
961 "Convert ODF to PDF asynchronously and call CALLBACK when finished.
962 The converted PDF is put into the current cache directory, and it
963 is named like ODF with the extension turned to pdf."
964 (doc-view-start-process "odf->pdf" doc-view-odf-
>pdf-converter-program
965 (list "-f" "pdf" "-o" (doc-view--current-cache-dir) odf
)
968 (defun doc-view-odf->pdf-converter-soffice
(odf callback
)
969 "Convert ODF to PDF asynchronously and call CALLBACK when finished.
970 The converted PDF is put into the current cache directory, and it
971 is named like ODF with the extension turned to pdf."
972 ;; FIXME: soffice doesn't work when there's another running
973 ;; LibreOffice instance, in which case it returns success without
974 ;; actually doing anything. See LibreOffice bug
975 ;; https://bugs.freedesktop.org/show_bug.cgi?id=37531. A workaround
976 ;; is to start soffice with a separate UserInstallation directory.
977 (let ((tmp-user-install-dir (make-temp-file "libreoffice-docview" t
)))
978 (doc-view-start-process "odf->pdf" doc-view-odf-
>pdf-converter-program
980 (concat "-env:UserInstallation=file://"
981 tmp-user-install-dir
)
982 "--headless" "--convert-to" "pdf"
983 "--outdir" (doc-view--current-cache-dir) odf
)
985 (delete-directory tmp-user-install-dir t
)
986 (funcall callback
)))))
988 (defun doc-view-pdf/ps-
>png
(pdf-ps png
)
989 ;; FIXME: Fix name and docstring to account for djvu&tiff.
990 "Convert PDF-PS to PNG asynchronously."
992 (pcase doc-view-doc-type
993 (`pdf doc-view-pdf-
>png-converter-function
)
994 (`djvu
#'doc-view-djvu-
>tiff-converter-ddjvu
)
995 (_ #'doc-view-ps-
>png-converter-ghostscript
))
997 (let ((resolution doc-view-resolution
))
999 ;; Only create the resolution file when it's all done, so it also
1000 ;; serves as a witness that the conversion is complete.
1001 (write-region (prin1-to-string resolution
) nil
1002 (expand-file-name "resolution.el"
1003 (doc-view--current-cache-dir))
1005 (when doc-view--current-timer
1006 (cancel-timer doc-view--current-timer
)
1007 (setq doc-view--current-timer nil
))
1008 (doc-view-display (current-buffer) 'force
))))
1010 ;; Update the displayed pages as soon as they're done generating.
1011 (when doc-view-conversion-refresh-interval
1012 (setq doc-view--current-timer
1013 (run-at-time "1 secs" doc-view-conversion-refresh-interval
1015 (current-buffer)))))
1017 (declare-function clear-image-cache
"image.c" (&optional filter
))
1019 (defun doc-view-document->bitmap
(pdf png pages
)
1020 "Convert a document file to bitmap images asynchronously.
1021 Start by converting PAGES, and then the rest."
1023 (doc-view-pdf/ps-
>png pdf png
)
1024 ;; We could render several `pages' with a single process if they're
1025 ;; (almost) consecutive, but since in 99% of the cases, there'll be only
1026 ;; a single page anyway, and of the remaining 1%, few cases will have
1027 ;; consecutive pages, it's not worth the trouble.
1028 (let ((rest (cdr pages
)))
1029 (funcall doc-view-single-page-converter-function
1030 pdf
(format png
(car pages
)) (car pages
)
1033 (doc-view-document->bitmap pdf png rest
)
1034 ;; Yippie, the important pages are done, update the display.
1036 ;; For the windows that have a message (like "Welcome to
1037 ;; DocView") display property, clearing the image cache is
1039 (dolist (win (get-buffer-window-list (current-buffer) nil
'visible
))
1040 (with-selected-window win
1041 (when (stringp (overlay-get (doc-view-current-overlay) 'display
))
1042 (doc-view-goto-page (doc-view-current-page)))))
1043 ;; Convert the rest of the pages.
1044 (doc-view-pdf/ps-
>png pdf png
)))))))
1046 (defun doc-view-pdf->txt
(pdf txt callback
)
1047 "Convert PDF to TXT asynchronously and call CALLBACK when finished."
1048 (or (executable-find doc-view-pdftotext-program
)
1049 (error "You need the `pdftotext' program to convert a PDF to text"))
1050 (doc-view-start-process "pdf->txt" doc-view-pdftotext-program
1051 (list "-raw" pdf txt
)
1054 (defun doc-view-current-cache-doc-pdf ()
1055 "Return the name of the doc.pdf in the current cache dir.
1056 This file exists only if the current document isn't a PDF or PS file already."
1057 (expand-file-name "doc.pdf" (doc-view--current-cache-dir)))
1059 (defun doc-view-doc->txt
(txt callback
)
1060 "Convert the current document to text and call CALLBACK when done."
1061 (make-directory (doc-view--current-cache-dir) t
)
1062 (pcase doc-view-doc-type
1064 ;; Doc is a PDF, so convert it to TXT
1065 (doc-view-pdf->txt doc-view--buffer-file-name txt callback
))
1067 ;; Doc is a PS, so convert it to PDF (which will be converted to
1069 (let ((pdf (doc-view-current-cache-doc-pdf)))
1070 (doc-view-ps->pdf doc-view--buffer-file-name pdf
1071 (lambda () (doc-view-pdf->txt pdf txt callback
)))))
1073 ;; Doc is a DVI. This means that a doc.pdf already exists in its
1074 ;; cache subdirectory.
1075 (doc-view-pdf->txt
(doc-view-current-cache-doc-pdf) txt callback
))
1077 ;; Doc is some ODF (or MS Office) doc. This means that a doc.pdf
1078 ;; already exists in its cache subdirectory.
1079 (doc-view-pdf->txt
(doc-view-current-cache-doc-pdf) txt callback
))
1080 (_ (error "DocView doesn't know what to do"))))
1082 (defun doc-view-ps->pdf
(ps pdf callback
)
1083 "Convert PS to PDF asynchronously and call CALLBACK when finished."
1084 (or (executable-find doc-view-ps2pdf-program
)
1085 (error "You need the `ps2pdf' program to convert PS to PDF"))
1086 (doc-view-start-process "ps->pdf" doc-view-ps2pdf-program
1088 ;; Avoid security problems when rendering files from
1089 ;; untrusted sources.
1091 ;; in-file and out-file
1095 (defun doc-view-active-pages ()
1097 (dolist (win (get-buffer-window-list (current-buffer) nil
'visible
))
1098 (let ((page (image-mode-window-get 'page win
)))
1099 (unless (memq page pages
) (push page pages
))))
1102 (defun doc-view-convert-current-doc ()
1103 "Convert `doc-view--buffer-file-name' to a set of png files, one file per page.
1104 Those files are saved in the directory given by the function
1105 `doc-view--current-cache-dir'."
1106 ;; Let stale files still display while we recompute the new ones, so only
1107 ;; flush the cache when the conversion is over. One of the reasons why it
1108 ;; is important to keep displaying the stale page is so that revert-buffer
1109 ;; preserves the horizontal/vertical scroll settings (which are otherwise
1110 ;; reset during the redisplay).
1111 (setq doc-view--pending-cache-flush t
)
1112 (let ((png-file (expand-file-name
1113 (format doc-view--image-file-pattern
"%d")
1114 (doc-view--current-cache-dir))))
1115 (make-directory (doc-view--current-cache-dir) t
)
1116 (pcase doc-view-doc-type
1118 ;; DVI files have to be converted to PDF before Ghostscript can process
1120 (let ((pdf (doc-view-current-cache-doc-pdf)))
1121 (doc-view-dvi->pdf doc-view--buffer-file-name pdf
1122 (lambda () (doc-view-pdf/ps-
>png pdf png-file
)))))
1124 ;; ODF files have to be converted to PDF before Ghostscript can
1126 (let ((pdf (doc-view-current-cache-doc-pdf))
1127 (opdf (expand-file-name
1128 (concat (file-name-base doc-view--buffer-file-name
)
1130 doc-view--current-cache-dir
))
1131 (png-file png-file
))
1132 ;; The unoconv tool only supports an output directory, but no
1133 ;; file name. It's named like the input file with the
1134 ;; extension replaced by pdf.
1135 (funcall doc-view-odf-
>pdf-converter-function doc-view--buffer-file-name
1137 ;; Rename to doc.pdf
1138 (rename-file opdf pdf
)
1139 (doc-view-pdf/ps-
>png pdf png-file
)))))
1141 (let ((pages (doc-view-active-pages)))
1142 ;; Convert doc to bitmap images starting with the active pages.
1143 (doc-view-document->bitmap doc-view--buffer-file-name png-file pages
)))
1145 ;; Convert to PNG images.
1146 (doc-view-pdf/ps-
>png doc-view--buffer-file-name png-file
)))))
1150 (declare-function image-size
"image.c" (spec &optional pixels frame
))
1152 (defun doc-view-set-slice (x y width height
)
1153 "Set the slice of the images that should be displayed.
1154 You can use this function to tell doc-view not to display the
1155 margins of the document. It prompts for the top-left corner (X
1156 and Y) of the slice to display and its WIDTH and HEIGHT.
1158 See `doc-view-set-slice-using-mouse' and
1159 `doc-view-set-slice-from-bounding-box' for more convenient ways
1160 to do that. To reset the slice use `doc-view-reset-slice'."
1162 (let* ((size (image-size (doc-view-current-image) t
))
1163 (a (read-number (format "Top-left X (0..%d): " (car size
))))
1164 (b (read-number (format "Top-left Y (0..%d): " (cdr size
))))
1165 (c (read-number (format "Width (0..%d): " (- (car size
) a
))))
1166 (d (read-number (format "Height (0..%d): " (- (cdr size
) b
)))))
1168 (setf (doc-view-current-slice) (list x y width height
))
1170 (doc-view-goto-page (doc-view-current-page)))
1172 (defun doc-view-set-slice-using-mouse ()
1173 "Set the slice of the images that should be displayed.
1174 You set the slice by pressing mouse-1 at its top-left corner and
1175 dragging it to its bottom-right corner. See also
1176 `doc-view-set-slice' and `doc-view-reset-slice'."
1180 (let ((e (read-event
1181 (concat "Press mouse-1 at the top-left corner and "
1182 "drag it to the bottom-right corner!"))))
1183 (when (eq (car e
) 'drag-mouse-1
)
1184 (setq x
(car (posn-object-x-y (event-start e
))))
1185 (setq y
(cdr (posn-object-x-y (event-start e
))))
1186 (setq w
(- (car (posn-object-x-y (event-end e
))) x
))
1187 (setq h
(- (cdr (posn-object-x-y (event-end e
))) y
))
1189 (doc-view-set-slice x y w h
)))
1191 (defun doc-view-get-bounding-box ()
1192 "Get the BoundingBox information of the current page."
1193 (let* ((page (doc-view-current-page))
1194 (doc (let ((cache-doc (doc-view-current-cache-doc-pdf)))
1195 (if (file-exists-p cache-doc
)
1197 doc-view--buffer-file-name
)))
1198 (o (shell-command-to-string
1199 (concat doc-view-ghostscript-program
1200 " -dSAFER -dBATCH -dNOPAUSE -q -sDEVICE=bbox "
1201 (format "-dFirstPage=%s -dLastPage=%s %s"
1204 (when (string-match (concat "%%BoundingBox: "
1205 "\\([[:digit:]]+\\) \\([[:digit:]]+\\) "
1206 "\\([[:digit:]]+\\) \\([[:digit:]]+\\)") o
)
1207 (mapcar #'string-to-number
1208 (list (match-string 1 o
)
1211 (match-string 4 o
)))))))
1213 (defvar doc-view-paper-sizes
1215 (a4-landscape 842 595)
1217 (letter-landscape 792 612)
1219 (legal-landscape 1008 612)
1221 (a3-landscape 1191 842)
1224 "An alist from paper size names to dimensions.")
1226 (defun doc-view-guess-paper-size (iw ih
)
1227 "Guess the paper size according to the aspect ratio."
1228 (cl-labels ((div (x y
)
1229 (round (/ (* 100.0 x
) y
))))
1230 (let ((ar (div iw ih
))
1231 (al (mapcar (lambda (l)
1232 (list (div (nth 1 l
) (nth 2 l
)) (car l
)))
1233 doc-view-paper-sizes
)))
1234 (cadr (assoc ar al
)))))
1236 (defun doc-view-scale-bounding-box (ps iw ih bb
)
1237 (list (/ (* (nth 0 bb
) iw
) (nth 1 (assoc ps doc-view-paper-sizes
)))
1238 (/ (* (nth 1 bb
) ih
) (nth 2 (assoc ps doc-view-paper-sizes
)))
1239 (/ (* (nth 2 bb
) iw
) (nth 1 (assoc ps doc-view-paper-sizes
)))
1240 (/ (* (nth 3 bb
) ih
) (nth 2 (assoc ps doc-view-paper-sizes
)))))
1242 (defun doc-view-set-slice-from-bounding-box (&optional force-paper-size
)
1243 "Set the slice from the document's BoundingBox information.
1244 The result is that the margins are almost completely cropped,
1245 much more accurate than could be done manually using
1246 `doc-view-set-slice-using-mouse'."
1248 (let ((bb (doc-view-get-bounding-box)))
1250 (message "BoundingBox couldn't be determined")
1251 (let* ((is (image-size (doc-view-current-image) t
))
1254 (ps (or (and (null force-paper-size
)
1255 (doc-view-guess-paper-size iw ih
))
1256 (intern (completing-read "Paper size: "
1257 doc-view-paper-sizes
1259 (bb (doc-view-scale-bounding-box ps iw ih bb
))
1264 ;; We keep a 2 pixel margin.
1265 (doc-view-set-slice (- x1
2) (- ih y2
2)
1266 (+ (- x2 x1
) 4) (+ (- y2 y1
) 4))))))
1268 (defun doc-view-reset-slice ()
1269 "Reset the current slice.
1270 After calling this function whole pages will be visible again."
1272 (setf (doc-view-current-slice) nil
)
1274 (doc-view-goto-page (doc-view-current-page)))
1278 (defun doc-view-insert-image (file &rest args
)
1279 "Insert the given png FILE.
1280 ARGS is a list of image descriptors."
1281 (when doc-view--pending-cache-flush
1283 (setq doc-view--pending-cache-flush nil
))
1284 (let ((ol (doc-view-current-overlay)))
1285 ;; Only insert the image if the buffer is visible.
1286 (when (window-live-p (overlay-get ol
'window
))
1287 (let* ((image (if (and file
(file-readable-p file
))
1288 (if (not (and doc-view-scale-internally
1289 (fboundp 'imagemagick-types
)))
1290 (apply 'create-image file doc-view--image-type nil args
)
1291 (unless (member :width args
)
1292 (setq args
`(,@args
:width
,doc-view-image-width
)))
1293 (apply 'create-image file
'imagemagick nil args
))))
1294 (slice (doc-view-current-slice))
1295 (img-width (and image
(car (image-size image
))))
1296 (displayed-img-width (if (and image slice
)
1297 (* (/ (float (nth 2 slice
))
1298 (car (image-size image
'pixels
)))
1301 (window-width (window-width)))
1302 (setf (doc-view-current-image) image
)
1303 (move-overlay ol
(point-min) (point-max))
1304 ;; In case the window is wider than the image, center the image
1306 (overlay-put ol
'before-string
1307 (when (and image
(> window-width displayed-img-width
))
1308 (propertize " " 'display
1309 `(space :align-to
(+ center
(-0.5 .
,displayed-img-width
))))))
1310 (overlay-put ol
'display
1314 (list (cons 'slice slice
) image
)
1316 ;; We're trying to display a page that doesn't exist.
1317 (doc-view--current-converter-processes
1318 ;; Maybe the page doesn't exist *yet*.
1319 "Cannot display this page (yet)!")
1321 ;; Typically happens if the conversion process somehow
1322 ;; failed. Better not signal an error here because it
1323 ;; could prevent a subsequent reconversion from fixing
1325 (concat "Cannot display this page!\n"
1326 "Maybe because of a conversion failure!"))))
1327 (let ((win (overlay-get ol
'window
)))
1328 (if (stringp (overlay-get ol
'display
))
1329 (progn ;Make sure the text is not scrolled out of view.
1330 (set-window-hscroll win
0)
1331 (set-window-vscroll win
0))
1332 (let ((hscroll (image-mode-window-get 'hscroll win
))
1333 (vscroll (image-mode-window-get 'vscroll win
)))
1334 ;; Reset scroll settings, in case they were changed.
1335 (if hscroll
(set-window-hscroll win hscroll
))
1336 (if vscroll
(set-window-vscroll win vscroll
)))))))))
1338 (defun doc-view-sort (a b
)
1339 "Return non-nil if A should be sorted before B.
1340 Predicate for sorting `doc-view--current-files'."
1341 (or (< (length a
) (length b
))
1342 (and (= (length a
) (length b
))
1345 (defun doc-view-display (buffer &optional force
)
1346 "Start viewing the document in BUFFER.
1347 If FORCE is non-nil, start viewing even if the document does not
1348 have the page we want to view."
1349 (with-current-buffer buffer
1350 (let ((prev-pages doc-view--current-files
))
1351 (setq doc-view--current-files
1352 (sort (directory-files (doc-view--current-cache-dir) t
1353 (format doc-view--image-file-pattern
1357 (unless (eq (length prev-pages
) (length doc-view--current-files
))
1358 (force-mode-line-update))
1359 (dolist (win (or (get-buffer-window-list buffer nil t
)
1361 (let* ((page (doc-view-current-page win
))
1362 (pagefile (expand-file-name
1363 (format doc-view--image-file-pattern page
)
1364 (doc-view--current-cache-dir))))
1366 (and (not (member pagefile prev-pages
))
1367 (member pagefile doc-view--current-files
)))
1369 (with-selected-window win
1370 (cl-assert (eq (current-buffer) buffer
) t
)
1371 (doc-view-goto-page page
))
1372 (doc-view-goto-page page
))))))))
1374 (defun doc-view-buffer-message ()
1375 ;; Only show this message initially, not when refreshing the buffer (in which
1376 ;; case it's better to keep displaying the "stale" page while computing
1377 ;; the fresh new ones).
1378 (unless (overlay-get (doc-view-current-overlay) 'display
)
1379 (overlay-put (doc-view-current-overlay) 'display
1380 (concat (propertize "Welcome to DocView!" 'face
'bold
)
1383 If you see this buffer it means that the document you want to view is being
1384 converted to PNG and the conversion of the first page hasn't finished yet or
1385 `doc-view-conversion-refresh-interval' is set to nil.
1387 For now these keys are useful:
1389 `q' : Bury this buffer. Conversion will go on in background.
1390 `k' : Kill the conversion process and this buffer.
1391 `K' : Kill the conversion process.\n"))))
1393 (declare-function tooltip-show
"tooltip" (text &optional use-echo-area
))
1395 (defun doc-view-show-tooltip ()
1397 (tooltip-show (doc-view-current-info)))
1399 (defun doc-view-open-text ()
1400 "Open a buffer with the current doc's contents as text."
1402 (if doc-view--current-converter-processes
1403 (message "DocView: please wait till conversion finished.")
1404 (let ((txt (expand-file-name "doc.txt" (doc-view--current-cache-dir))))
1405 (if (file-readable-p txt
)
1406 (let ((name (concat "Text contents of "
1407 (file-name-nondirectory buffer-file-name
)))
1408 (dir (file-name-directory buffer-file-name
)))
1409 (with-current-buffer (find-file txt
)
1410 (rename-buffer name
)
1411 (setq default-directory dir
)))
1412 (doc-view-doc->txt txt
'doc-view-open-text
)))))
1414 ;;;;; Toggle between editing and viewing
1416 (defvar-local doc-view-saved-settings nil
1417 "Doc-view settings saved while in some other mode.")
1418 (put 'doc-view-saved-settings
'permanent-local t
)
1420 (defun doc-view-toggle-display ()
1421 "Toggle between editing a document as text or viewing it."
1423 (if (eq major-mode
'doc-view-mode
)
1424 ;; Switch to editing mode
1426 (doc-view-kill-proc)
1427 (setq buffer-read-only nil
)
1428 ;; Switch to the previously used major mode or fall back to
1430 (doc-view-fallback-mode)
1431 (doc-view-minor-mode 1))
1432 ;; Switch to doc-view-mode
1433 (when (and (buffer-modified-p)
1434 (y-or-n-p "The buffer has been modified. Save the changes? "))
1441 (defun doc-view-search-internal (regexp file
)
1442 "Return a list of FILE's pages that contain text matching REGEXP.
1443 The value is an alist of the form (PAGE CONTEXTS) where PAGE is
1444 the pagenumber and CONTEXTS are all lines of text containing a match."
1446 (insert-file-contents file
)
1450 (while (re-search-forward (concat "\\(?:\\([\f]\\)\\|\\("
1451 regexp
"\\)\\)") nil t
)
1452 (when (match-string 1) (setq page
(1+ page
)))
1453 (when (match-string 2)
1454 (if (/= page lastpage
)
1456 (list (buffer-substring
1457 (line-beginning-position)
1458 (line-end-position))))
1463 ;; This page already is a match.
1465 ;; This is the first match on page.
1467 (list (buffer-substring
1468 (line-beginning-position)
1469 (line-end-position))))
1471 (setq lastpage page
)))
1472 (nreverse matches
))))
1474 (defun doc-view-search-no-of-matches (list)
1475 "Extract the number of matches from the search result LIST."
1478 (setq no
(+ no
(1- (length p
)))))
1481 (defun doc-view-search-backward (new-query)
1482 "Call `doc-view-search' for backward search.
1483 If prefix NEW-QUERY is given, ask for a new regexp."
1485 (doc-view-search new-query t
))
1487 (defun doc-view-search (new-query &optional backward
)
1488 "Jump to the next match or initiate a new search if NEW-QUERY is given.
1489 If the current document hasn't been transformed to plain text
1490 till now do that first.
1491 If BACKWARD is non-nil, jump to the previous match."
1493 (if (and (not new-query
)
1494 doc-view--current-search-matches
)
1496 (doc-view-search-previous-match 1)
1497 (doc-view-search-next-match 1))
1498 ;; New search, so forget the old results.
1499 (setq doc-view--current-search-matches nil
)
1500 (let ((txt (expand-file-name "doc.txt"
1501 (doc-view--current-cache-dir))))
1502 (if (file-readable-p txt
)
1504 (setq doc-view--current-search-matches
1505 (doc-view-search-internal
1506 (read-from-minibuffer "Regexp: ")
1508 (message "DocView: search yielded %d matches."
1509 (doc-view-search-no-of-matches
1510 doc-view--current-search-matches
)))
1511 ;; We must convert to TXT first!
1512 (if doc-view--current-converter-processes
1513 (message "DocView: please wait till conversion finished.")
1514 (doc-view-doc->txt txt
(lambda () (doc-view-search nil
))))))))
1516 (defun doc-view-search-next-match (arg)
1517 "Go to the ARGth next matching page."
1519 (let* ((next-pages (cl-remove-if
1520 (lambda (i) (<= (car i
) (doc-view-current-page)))
1521 doc-view--current-search-matches
))
1522 (page (car (nth (1- arg
) next-pages
))))
1524 (doc-view-goto-page page
)
1526 doc-view--current-search-matches
1527 (y-or-n-p "No more matches after current page. Wrap to first match? "))
1528 (doc-view-goto-page (caar doc-view--current-search-matches
))))))
1530 (defun doc-view-search-previous-match (arg)
1531 "Go to the ARGth previous matching page."
1533 (let* ((prev-pages (cl-remove-if
1534 (lambda (i) (>= (car i
) (doc-view-current-page)))
1535 doc-view--current-search-matches
))
1536 (page (car (nth (1- arg
) (nreverse prev-pages
)))))
1538 (doc-view-goto-page page
)
1540 doc-view--current-search-matches
1541 (y-or-n-p "No more matches before current page. Wrap to last match? "))
1542 (doc-view-goto-page (caar (last doc-view--current-search-matches
)))))))
1544 ;;;; User interface commands and the mode
1546 (put 'doc-view-mode
'mode-class
'special
)
1548 (defun doc-view-already-converted-p ()
1549 "Return non-nil if the current doc was already converted."
1550 (and (file-exists-p (doc-view--current-cache-dir))
1551 ;; Check that the resolution info is there, otherwise it means
1552 ;; the conversion is incomplete.
1553 (file-readable-p (expand-file-name "resolution.el"
1554 (doc-view--current-cache-dir)))
1555 (> (length (directory-files
1556 (doc-view--current-cache-dir)
1557 nil
(format doc-view--image-file-pattern
"[0-9]+")))
1560 (defun doc-view-initiate-display ()
1561 ;; Switch to image display if possible.
1562 (if (doc-view-mode-p doc-view-doc-type
)
1564 (doc-view-buffer-message)
1565 (setf (doc-view-current-page) (or (doc-view-current-page) 1))
1566 (if (doc-view-already-converted-p)
1568 (message "DocView: using cached files!")
1569 ;; Load the saved resolution.
1571 (expand-file-name "resolution.el"
1572 (doc-view--current-cache-dir)))
1575 (when (file-readable-p res-file
)
1576 (insert-file-contents res-file
)
1577 (read (current-buffer))))))
1579 (setq-local doc-view-resolution res
)))
1580 (doc-view-display (current-buffer) 'force
))
1581 (doc-view-convert-current-doc))
1584 (substitute-command-keys
1585 (concat "Type \\[doc-view-toggle-display] to toggle between "
1586 "editing or viewing the document."))))
1589 (concat "No PNG support is available, or some conversion utility for "
1590 (file-name-extension doc-view--buffer-file-name
)
1591 " files is missing."))
1592 (when (and (executable-find doc-view-pdftotext-program
)
1594 "Unable to render file. View extracted text instead? "))
1595 (doc-view-open-text))
1596 (doc-view-toggle-display)))
1598 (defvar bookmark-make-record-function
)
1600 (defun doc-view-clone-buffer-hook ()
1601 ;; FIXME: There are several potential problems linked with reconversion
1602 ;; and auto-revert when we have indirect buffers because they share their
1603 ;; /tmp cache directory. This sharing is good (you'd rather not reconvert
1604 ;; for each clone), but that means that clones need to collaborate a bit.
1605 ;; I guess it mostly means: detect when a reconversion process is already
1606 ;; running, and run the sentinel in all clones.
1608 ;; Maybe the clones should really have a separate /tmp directory
1609 ;; so they could have a different resolution and you could use clones
1611 (remove-overlays (point-min) (point-max) 'doc-view t
)
1612 (if (consp image-mode-winprops-alist
) (setq image-mode-winprops-alist nil
)))
1614 (defun doc-view-intersection (l1 l2
)
1616 (dolist (x l1
) (if (memq x l2
) (push x l
)))
1619 (defun doc-view-set-doc-type ()
1620 "Figure out the current document type (`doc-view-doc-type')."
1622 (when buffer-file-name
1623 (cdr (assoc (file-name-extension buffer-file-name
)
1628 ("pdf" pdf
) ("epdf" pdf
)
1630 ("ps" ps
) ("eps" ps
)
1633 ;; OpenDocument formats
1634 ("odt" odf
) ("ods" odf
) ("odp" odf
) ("odg" odf
)
1635 ("odc" odf
) ("odi" odf
) ("odm" odf
) ("ott" odf
)
1636 ("ots" odf
) ("otp" odf
) ("otg" odf
)
1637 ;; Microsoft Office formats (also handled
1638 ;; by the odf conversion chain)
1639 ("doc" odf
) ("docx" odf
) ("xls" odf
) ("xlsx" odf
)
1640 ("ppt" odf
) ("pptx" odf
))))))
1643 (goto-char (point-min))
1645 ((looking-at "%!") '(ps))
1646 ((looking-at "%PDF") '(pdf))
1647 ((looking-at "\367\002") '(dvi))
1648 ((looking-at "AT&TFORM") '(djvu))))))
1651 (car (or (doc-view-intersection name-types content-types
)
1652 (when (and name-types content-types
)
1653 (error "Conflicting types: name says %s but content says %s"
1654 name-types content-types
))
1655 name-types content-types
1656 (error "Cannot determine the document type"))))))
1658 (defun doc-view-set-up-single-converter ()
1659 "Find the right single-page converter for the current document type"
1660 (pcase-let ((`(,conv-function
,type
,extension
)
1661 (pcase doc-view-doc-type
1662 (`djvu
(list #'doc-view-djvu-
>tiff-converter-ddjvu
'tiff
"tif"))
1663 (_ (list doc-view-pdf-
>png-converter-function
'png
"png")))))
1664 (setq-local doc-view-single-page-converter-function conv-function
)
1665 (setq-local doc-view--image-type type
)
1666 (setq-local doc-view--image-file-pattern
(concat "page-%s." extension
))))
1668 ;; desktop.el integration
1670 (defun doc-view-desktop-save-buffer (_desktop-dirname)
1671 `((page .
,(doc-view-current-page))
1672 (slice .
,(doc-view-current-slice))))
1674 (declare-function desktop-restore-file-buffer
"desktop"
1675 (buffer-filename buffer-name buffer-misc
))
1677 (defun doc-view-restore-desktop-buffer (file name misc
)
1678 (let ((page (cdr (assq 'page misc
)))
1679 (slice (cdr (assq 'slice misc
))))
1680 (desktop-restore-file-buffer file name misc
)
1681 (with-selected-window (or (get-buffer-window (current-buffer) 0)
1683 (doc-view-goto-page page
)
1684 (when slice
(apply 'doc-view-set-slice slice
)))))
1686 (add-to-list 'desktop-buffer-mode-handlers
1687 '(doc-view-mode . doc-view-restore-desktop-buffer
))
1690 (defun doc-view-mode ()
1691 "Major mode in DocView buffers.
1693 DocView Mode is an Emacs document viewer. It displays PDF, PS
1694 and DVI files (as PNG images) in Emacs buffers.
1696 You can use \\<doc-view-mode-map>\\[doc-view-toggle-display] to
1697 toggle between displaying the document or editing it as text.
1698 \\{doc-view-mode-map}"
1701 (if (= (point-min) (point-max))
1702 ;; The doc is empty or doesn't exist at all, so fallback to
1703 ;; another mode. We used to also check file-exists-p, but this
1704 ;; returns nil for tar members.
1705 (doc-view-fallback-mode)
1707 (let* ((prev-major-mode (if (derived-mode-p 'doc-view-mode
)
1708 doc-view--previous-major-mode
1709 (unless (eq major-mode
'fundamental-mode
)
1711 (kill-all-local-variables)
1712 (setq-local doc-view--previous-major-mode prev-major-mode
))
1714 (dolist (var doc-view-saved-settings
)
1715 (set (make-local-variable (car var
)) (cdr var
)))
1717 ;; Figure out the document type.
1718 (unless doc-view-doc-type
1719 (doc-view-set-doc-type))
1720 (doc-view-set-up-single-converter)
1722 (doc-view-make-safe-dir doc-view-cache-directory
)
1723 ;; Handle compressed files, remote files, files inside archives
1724 (setq-local doc-view--buffer-file-name
1726 (jka-compr-really-do-compress
1727 ;; FIXME: there's a risk of name conflicts here.
1729 (file-name-nondirectory
1730 (file-name-sans-extension buffer-file-name
))
1731 doc-view-cache-directory
))
1732 ;; Is the file readable by local processes?
1733 ;; We used to use `file-remote-p' but it's unclear what it's
1734 ;; supposed to return nil for things like local files accessed
1735 ;; via `su' or via file://...
1736 ((let ((file-name-handler-alist nil
))
1737 (not (and buffer-file-name
1738 (file-readable-p buffer-file-name
))))
1739 ;; FIXME: there's a risk of name conflicts here.
1741 (if buffer-file-name
1742 (file-name-nondirectory buffer-file-name
)
1744 doc-view-cache-directory
))
1745 (t buffer-file-name
)))
1746 (when (not (string= doc-view--buffer-file-name buffer-file-name
))
1747 (write-region nil nil doc-view--buffer-file-name
))
1749 (add-hook 'change-major-mode-hook
1751 (doc-view-kill-proc)
1752 (remove-overlays (point-min) (point-max) 'doc-view t
))
1754 (add-hook 'clone-indirect-buffer-hook
'doc-view-clone-buffer-hook nil t
)
1755 (add-hook 'kill-buffer-hook
'doc-view-kill-proc nil t
)
1756 (when (and (boundp 'desktop-save-mode
)
1758 (setq-local desktop-save-buffer
'doc-view-desktop-save-buffer
))
1760 (remove-overlays (point-min) (point-max) 'doc-view t
) ;Just in case.
1761 ;; Keep track of display info ([vh]scroll, page number, overlay,
1762 ;; ...) for each window in which this document is shown.
1763 (add-hook 'image-mode-new-window-functions
1764 'doc-view-new-window-function nil t
)
1765 (image-mode-setup-winprops)
1767 (setq-local mode-line-position
1768 '(" P" (:eval
(number-to-string (doc-view-current-page)))
1769 "/" (:eval
(number-to-string (doc-view-last-page-number)))))
1770 ;; Don't scroll unless the user specifically asked for it.
1771 (setq-local auto-hscroll-mode nil
)
1772 (if (boundp 'mwheel-scroll-up-function
) ; not --without-x build
1773 (setq-local mwheel-scroll-up-function
1774 #'doc-view-scroll-up-or-next-page
))
1775 (if (boundp 'mwheel-scroll-down-function
)
1776 (setq-local mwheel-scroll-down-function
1777 #'doc-view-scroll-down-or-previous-page
))
1778 (setq-local cursor-type nil
)
1779 (use-local-map doc-view-mode-map
)
1780 (add-hook 'after-revert-hook
'doc-view-reconvert-doc nil t
)
1781 (setq-local bookmark-make-record-function
1782 #'doc-view-bookmark-make-record
)
1783 (setq mode-name
"DocView"
1785 major-mode
'doc-view-mode
)
1786 (doc-view-initiate-display)
1787 ;; Switch off view-mode explicitly, because doc-view-mode is the
1788 ;; canonical view mode for PDF/PS/DVI files. This could be
1789 ;; switched on automatically depending on the value of
1790 ;; `view-read-only'.
1791 (setq-local view-read-only nil
)
1792 (run-mode-hooks 'doc-view-mode-hook
)))
1794 (defun doc-view-fallback-mode ()
1795 "Fallback to the previous or next best major mode."
1796 (let ((vars (if (derived-mode-p 'doc-view-mode
)
1797 (mapcar (lambda (var) (cons var
(symbol-value var
)))
1798 '(doc-view-resolution
1799 image-mode-winprops-alist
)))))
1800 (remove-overlays (point-min) (point-max) 'doc-view t
)
1801 (if doc-view--previous-major-mode
1802 (funcall doc-view--previous-major-mode
)
1803 (let ((auto-mode-alist
1805 'doc-view-mode-maybe
1806 (rassq-delete-all 'doc-view-mode
1807 (copy-alist auto-mode-alist
)))))
1810 (setq-local doc-view-saved-settings vars
))))
1813 (defun doc-view-mode-maybe ()
1814 "Switch to `doc-view-mode' if possible.
1815 If the required external tools are not available, then fallback
1816 to the next best mode."
1818 (doc-view-set-doc-type)
1819 (error (doc-view-fallback-mode)))
1820 (if (doc-view-mode-p doc-view-doc-type
)
1822 (doc-view-fallback-mode)))
1825 (define-minor-mode doc-view-minor-mode
1826 "Toggle displaying buffer via Doc View (Doc View minor mode).
1827 With a prefix argument ARG, enable Doc View minor mode if ARG is
1828 positive, and disable it otherwise. If called from Lisp, enable
1829 the mode if ARG is omitted or nil.
1831 See the command `doc-view-mode' for more information on this mode."
1832 nil
" DocView" doc-view-minor-mode-map
1834 (when doc-view-minor-mode
1835 (add-hook 'change-major-mode-hook
(lambda () (doc-view-minor-mode -
1)) nil t
)
1838 (substitute-command-keys
1839 "Type \\[doc-view-toggle-display] to toggle between editing or viewing the document."))))
1841 (defun doc-view-clear-cache ()
1842 "Delete the whole cache (`doc-view-cache-directory')."
1844 (dired-delete-file doc-view-cache-directory
'always
))
1846 (defun doc-view-dired-cache ()
1847 "Open `dired' in `doc-view-cache-directory'."
1849 (dired doc-view-cache-directory
))
1852 ;;;; Bookmark integration
1854 (declare-function bookmark-make-record-default
1855 "bookmark" (&optional no-file no-context posn
))
1856 (declare-function bookmark-prop-get
"bookmark" (bookmark prop
))
1857 (declare-function bookmark-default-handler
"bookmark" (bmk))
1859 (defun doc-view-bookmark-make-record ()
1860 (nconc (bookmark-make-record-default)
1861 `((page .
,(doc-view-current-page))
1862 (handler . doc-view-bookmark-jump
))))
1866 (defun doc-view-bookmark-jump (bmk)
1867 ;; This implements the `handler' function interface for record type
1868 ;; returned by `doc-view-bookmark-make-record', which see.
1869 (prog1 (bookmark-default-handler bmk
)
1870 (let ((page (bookmark-prop-get bmk
'page
)))
1871 (when (not (eq major-mode
'doc-view-mode
))
1872 (doc-view-toggle-display))
1873 (with-selected-window
1874 (or (get-buffer-window (current-buffer) 0)
1876 (doc-view-goto-page page
)))))
1882 ;; eval: (outline-minor-mode 1)
1885 ;;; doc-view.el ends here