]> code.delx.au - gnu-emacs/blob - lisp/textmodes/reftex-dcr.el
Message format spec fixes (2)
[gnu-emacs] / lisp / textmodes / reftex-dcr.el
1 ;;; reftex-dcr.el --- viewing cross references and citations with RefTeX
2 ;; Copyright (c) 1997, 1998, 1999, 2000, 2003, 2004, 2005
3 ;; Free Software Foundation, Inc.
4
5 ;; Author: Carsten Dominik <dominik@science.uva.nl>
6 ;; Version: VERSIONTAG
7 ;;
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
30 (eval-when-compile (require 'cl))
31 (provide 'reftex-dcr)
32 (provide 'reftex-vcr)
33 (require 'reftex)
34 ;;;
35
36 (defun reftex-view-crossref (&optional arg auto-how)
37 "View cross reference of macro at point. Point must be on the KEY
38 argument. When at at `\\ref' macro, show corresponding `\\label'
39 definition, also in external documents (`xr'). When on a label, show
40 a locations where KEY is referenced. Subsequent calls find additional
41 locations. When on a `\\cite', show the associated `\\bibitem' macro or
42 the BibTeX database entry. When on a `\\bibitem', show a `\\cite' macro
43 which uses this KEY. When on an `\\index', show other locations marked
44 by the same index entry.
45 To define additional cross referencing items, use the option
46 `reftex-view-crossref-extra'. See also `reftex-view-crossref-from-bibtex'.
47 With one or two C-u prefixes, enforce rescanning of the document.
48 With argument 2, select the window showing the cross reference.
49 AUTO-HOW is only for the automatic crossref display and is handed through
50 to the functions `reftex-view-cr-cite' and `reftex-view-cr-ref'."
51
52 (interactive "P")
53 ;; See where we are.
54 (let* ((macro (car (reftex-what-macro-safe 1)))
55 (key (reftex-this-word "^{}%\n\r, \t"))
56 dw)
57
58 (if (or (null macro) (reftex-in-comment))
59 (error "Not on a crossref macro argument"))
60
61 (setq reftex-call-back-to-this-buffer (current-buffer))
62
63 (cond
64 ((string-match "\\`\\\\cite\\|cite\\*?\\'\\|bibentry" macro)
65 ;; A citation macro: search for bibitems or BibTeX entries
66 (setq dw (reftex-view-cr-cite arg key auto-how)))
67 ((string-match "\\`\\\\ref\\|ref\\(range\\)?\\*?\\'" macro)
68 ;; A reference macro: search for labels
69 (setq dw (reftex-view-cr-ref arg key auto-how)))
70 (auto-how nil) ;; No further action for automatic display (speed)
71 ((or (equal macro "\\label")
72 (member macro reftex-macros-with-labels))
73 ;; A label macro: search for reference macros
74 (reftex-access-scan-info arg)
75 (setq dw (reftex-view-regexp-match
76 (format reftex-find-reference-format (regexp-quote key))
77 4 nil nil)))
78 ((equal macro "\\bibitem")
79 ;; A bibitem macro: search for citations
80 (reftex-access-scan-info arg)
81 (setq dw (reftex-view-regexp-match
82 (format reftex-find-citation-regexp-format (regexp-quote key))
83 4 nil nil)))
84 ((member macro reftex-macros-with-index)
85 (reftex-access-scan-info arg)
86 (setq dw (reftex-view-regexp-match
87 (format reftex-find-index-entry-regexp-format
88 (regexp-quote key))
89 3 nil nil)))
90 (t
91 (reftex-access-scan-info arg)
92 (catch 'exit
93 (let ((list reftex-view-crossref-extra)
94 entry mre action group)
95 (while (setq entry (pop list))
96 (setq mre (car entry)
97 action (nth 1 entry)
98 group (nth 2 entry))
99 (when (string-match mre macro)
100 (setq dw (reftex-view-regexp-match
101 (format action key) group nil nil))
102 (throw 'exit t))))
103 (error "Not on a crossref macro argument"))))
104 (if (and (eq arg 2) (windowp dw)) (select-window dw))))
105
106 (defun reftex-view-cr-cite (arg key how)
107 ;; View crossreference of a ref cite. HOW can have the values
108 ;; nil: Show in another window.
109 ;; echo: Show one-line info in echo area.
110 ;; tmp-window: Show in small window and arrange for window to disappear.
111
112 ;; Ensure access to scanning info
113 (reftex-access-scan-info (or arg current-prefix-arg))
114
115 (if (eq how 'tmp-window)
116 ;; Remember the window configuration
117 (put 'reftex-auto-view-crossref 'last-window-conf
118 (current-window-configuration)))
119
120 (let (files size item (pos (point)) (win (selected-window)) pop-win
121 (bibtype (reftex-bib-or-thebib)))
122 ;; Find the citation mode and the file list
123 (cond
124 ; ((assq 'bib (symbol-value reftex-docstruct-symbol))
125 ((eq bibtype 'bib)
126 (setq item nil
127 files (reftex-get-bibfile-list)))
128 ; ((assq 'thebib (symbol-value reftex-docstruct-symbol))
129 ((eq bibtype 'thebib)
130 (setq item t
131 files (reftex-uniquify
132 (mapcar 'cdr
133 (reftex-all-assq
134 'thebib (symbol-value reftex-docstruct-symbol))))))
135 (reftex-default-bibliography
136 (setq item nil
137 files (reftex-default-bibliography)))
138 (how) ;; don't throw for special display
139 (t (error "Cannot display crossref")))
140
141 (if (eq how 'echo)
142 ;; Display in Echo area
143 (reftex-echo-cite key files item)
144 ;; Display in a window
145 (if (not (eq how 'tmp-window))
146 ;; Normal display
147 (reftex-pop-to-bibtex-entry key files nil t item)
148 ;; A temporary window
149 (condition-case nil
150 (reftex-pop-to-bibtex-entry key files nil t item)
151 (error (goto-char pos)
152 (message "cite: no such citation key %s" key)
153 (error "")))
154 ;; Resize the window
155 (setq size (max 1 (count-lines (point)
156 (reftex-end-of-bib-entry item))))
157 (let ((window-min-height 2))
158 (shrink-window (1- (- (window-height) size)))
159 (recenter 0))
160 ;; Arrange restoration
161 (add-hook 'pre-command-hook 'reftex-restore-window-conf))
162
163 ;; Normal display in other window
164 (add-hook 'pre-command-hook 'reftex-highlight-shall-die)
165 (setq pop-win (selected-window))
166 (select-window win)
167 (goto-char pos)
168 (when (equal arg 2)
169 (select-window pop-win)))))
170
171 (defun reftex-view-cr-ref (arg label how)
172 ;; View crossreference of a ref macro. HOW can have the values
173 ;; nil: Show in another window.
174 ;; echo: Show one-line info in echo area.
175 ;; tmp-window: Show in small window and arrange for window to disappear.
176
177 ;; Ensure access to scanning info
178 (reftex-access-scan-info (or arg current-prefix-arg))
179
180 (if (eq how 'tmp-window)
181 ;; Remember the window configuration
182 (put 'reftex-auto-view-crossref 'last-window-conf
183 (current-window-configuration)))
184
185 (let* ((xr-data (assoc 'xr (symbol-value reftex-docstruct-symbol)))
186 (xr-re (nth 2 xr-data))
187 (entry (assoc label (symbol-value reftex-docstruct-symbol)))
188 (win (selected-window)) pop-win (pos (point)))
189
190 (if (and (not entry) (stringp label) xr-re (string-match xr-re label))
191 ;; Label is defined in external document
192 (save-excursion
193 (save-match-data
194 (set-buffer
195 (or (reftex-get-file-buffer-force
196 (cdr (assoc (match-string 1 label) (nth 1
197 xr-data))))
198 (error "Problem with external label %s" label))))
199 (setq label (substring label (match-end 1)))
200 (reftex-access-scan-info)
201 (setq entry
202 (assoc label (symbol-value reftex-docstruct-symbol)))))
203 (if (eq how 'echo)
204 ;; Display in echo area
205 (reftex-echo-ref label entry (symbol-value reftex-docstruct-symbol))
206 (let ((window-conf (current-window-configuration)))
207 (condition-case nil
208 (reftex-show-label-location entry t nil t t)
209 (error (set-window-configuration window-conf)
210 (message "ref: Label %s not found" label)
211 (error "ref: Label %s not found" label)))) ;; 2nd is line OK
212 (add-hook 'pre-command-hook 'reftex-highlight-shall-die)
213
214 (when (eq how 'tmp-window)
215 ;; Resize window and arrange restauration
216 (shrink-window (1- (- (window-height) 9)))
217 (recenter '(4))
218 (add-hook 'pre-command-hook 'reftex-restore-window-conf))
219 (setq pop-win (selected-window))
220 (select-window win)
221 (goto-char pos)
222 (when (equal arg 2)
223 (select-window pop-win)))))
224
225 (defun reftex-mouse-view-crossref (ev)
226 "View cross reference of \\ref or \\cite macro where you click.
227 If the macro at point is a \\ref, show the corresponding label definition.
228 If it is a \\cite, show the BibTeX database entry.
229 If there is no such macro at point, search forward to find one.
230 With argument, actually select the window showing the cross reference."
231 (interactive "e")
232 (mouse-set-point ev)
233 (reftex-view-crossref current-prefix-arg))
234
235 (defun reftex-view-crossref-when-idle ()
236 ;; Display info about crossref at point in echo area or a window.
237 ;; This function was desigend to work with an idle timer.
238 ;; We try to get out of here as quickly as possible if the call is useless.
239 (and reftex-mode
240 ;; Make sure message area is free if we need it.
241 (or (eq reftex-auto-view-crossref 'window) (not (current-message)))
242 ;; Make sure we are not already displaying this one
243 (not (memq last-command '(reftex-view-crossref
244 reftex-mouse-view-crossref)))
245 ;; Quick precheck if this might be a relevant spot
246 ;; FIXME: Can fail with backslash in comment
247 (save-excursion
248 (search-backward "\\" nil t)
249 (looking-at "\\\\[a-zA-Z]*\\(cite\\|ref\\|bibentry\\)"))
250
251 (condition-case nil
252 (let ((current-prefix-arg nil))
253 (cond
254 ((eq reftex-auto-view-crossref t)
255 (reftex-view-crossref -1 'echo))
256 ((eq reftex-auto-view-crossref 'window)
257 (reftex-view-crossref -1 'tmp-window))
258 (t nil)))
259 (error nil))))
260
261 (defun reftex-restore-window-conf ()
262 (set-window-configuration (get 'reftex-auto-view-crossref 'last-window-conf))
263 (put 'reftex-auto-view-crossref 'last-window-conf nil)
264 (remove-hook 'pre-command-hook 'reftex-restore-window-conf))
265
266 (defun reftex-echo-ref (label entry docstruct)
267 ;; Display crossref info in echo area.
268 (cond
269 ((null docstruct)
270 (message "%s" (substitute-command-keys (format reftex-no-info-message "ref"))))
271 ((null entry)
272 (message "ref: unknown label: %s" label))
273 (t
274 (when (stringp (nth 2 entry))
275 (message "ref(%s): %s" (nth 1 entry) (nth 2 entry)))
276 (let ((buf (get-buffer " *Echo Area*")))
277 (when buf
278 (save-excursion
279 (set-buffer buf)
280 (run-hooks 'reftex-display-copied-context-hook)))))))
281
282 (defun reftex-echo-cite (key files item)
283 ;; Display citation info in echo area.
284 (let* ((cache (assq 'bibview-cache (symbol-value reftex-docstruct-symbol)))
285 (cache-entry (assoc key (cdr cache)))
286 entry string buf (all-files files))
287
288 (if (and reftex-cache-cite-echo cache-entry)
289 ;; We can just use the cache
290 (setq string (cdr cache-entry))
291
292 ;; Need to look in the database
293 (unless reftex-revisit-to-echo
294 (setq files (reftex-visited-files files)))
295
296 (setq entry
297 (condition-case nil
298 (save-excursion
299 (reftex-pop-to-bibtex-entry key files nil nil item t))
300 (error
301 (if (and files (= (length all-files) (length files)))
302 (message "cite: no such database entry: %s" key)
303 (message "%s" (substitute-command-keys
304 (format reftex-no-info-message "cite"))))
305 nil)))
306 (when entry
307 (if item
308 (setq string (reftex-nicify-text entry))
309 (setq string (reftex-make-cite-echo-string
310 (reftex-parse-bibtex-entry entry)
311 reftex-docstruct-symbol)))))
312 (unless (or (null string) (equal string ""))
313 (message "cite: %s" string))
314 (when (setq buf (get-buffer " *Echo Area*"))
315 (save-excursion
316 (set-buffer buf)
317 (run-hooks 'reftex-display-copied-context-hook)))))
318
319 (defvar reftex-use-itimer-in-xemacs nil
320 "*Non-nil means use the idle timers in XEmacs for crossref display.
321 Currently, idle timer restart is broken and we use the post-command-hook.")
322
323 (defun reftex-toggle-auto-view-crossref ()
324 "Toggle the automatic display of crossref information in the echo area.
325 When active, leaving point idle in the argument of a \\ref or \\cite macro
326 will display info in the echo area."
327 (interactive)
328 (if reftex-auto-view-crossref-timer
329 (progn
330 (if (featurep 'xemacs)
331 (if reftex-use-itimer-in-xemacs
332 (delete-itimer reftex-auto-view-crossref-timer)
333 (remove-hook 'post-command-hook 'reftex-start-itimer-once))
334 (cancel-timer reftex-auto-view-crossref-timer))
335 (setq reftex-auto-view-crossref-timer nil)
336 (message "Automatic display of crossref information was turned off"))
337 (setq reftex-auto-view-crossref-timer
338 (if (featurep 'xemacs)
339 (if reftex-use-itimer-in-xemacs
340 (start-itimer "RefTeX Idle Timer"
341 'reftex-view-crossref-when-idle
342 reftex-idle-time reftex-idle-time t)
343 (add-hook 'post-command-hook 'reftex-start-itimer-once)
344 t)
345 (run-with-idle-timer
346 reftex-idle-time t 'reftex-view-crossref-when-idle)))
347 (unless reftex-auto-view-crossref
348 (setq reftex-auto-view-crossref t))
349 (message "Automatic display of crossref information was turned on")))
350
351 (defun reftex-start-itimer-once ()
352 (and reftex-mode
353 (not (itimer-live-p reftex-auto-view-crossref-timer))
354 (setq reftex-auto-view-crossref-timer
355 (start-itimer "RefTeX Idle Timer"
356 'reftex-view-crossref-when-idle
357 reftex-idle-time nil t))))
358
359 (defun reftex-view-crossref-from-bibtex (&optional arg)
360 "View location in a LaTeX document which cites the BibTeX entry at point.
361 Since BibTeX files can be used by many LaTeX documents, this function
362 prompts upon first use for a buffer in RefTeX mode. To reset this
363 link to a document, call the function with with a prefix arg.
364 Calling this function several times find successive citation locations."
365 (interactive "P")
366 (when arg
367 ;; Break connection to reference buffer
368 (put 'reftex-bibtex-view-cite-locations :ref-buffer nil))
369 (let ((ref-buffer (get 'reftex-bibtex-view-cite-locations :ref-buffer)))
370 ;; Establish connection to reference buffer
371 (unless ref-buffer
372 (setq ref-buffer
373 (save-excursion
374 (completing-read
375 "Reference buffer: "
376 (delq nil
377 (mapcar
378 (lambda (b)
379 (set-buffer b)
380 (if reftex-mode (list (buffer-name b)) nil))
381 (buffer-list)))
382 nil t)))
383 (put 'reftex-bibtex-view-cite-locations :ref-buffer ref-buffer))
384 ;; Search for citations
385 (bibtex-beginning-of-entry)
386 (if (looking-at
387 "@[a-zA-Z]+[ \t\n\r]*[{(][ \t\n\r]*\\([^, \t\r\n}]+\\)")
388 (progn
389 (goto-char (match-beginning 1))
390 (reftex-view-regexp-match
391 (format reftex-find-citation-regexp-format
392 (regexp-quote (match-string 1)))
393 4 arg ref-buffer))
394 (error "Cannot find citation key in BibTeX entry"))))
395
396 (defun reftex-view-regexp-match (re &optional highlight-group new ref-buffer)
397 ;; Search for RE in current document or in the document of REF-BUFFER.
398 ;; Continue the search, if the same re was searched last.
399 ;; Highlight the group HIGHLIGHT-GROUP of the match.
400 ;; When NEW is non-nil, start a new search regardless.
401 ;; Match point is displayed in another window.
402 ;; Upon success, returns the window which displays the match.
403
404 ;;; Decide if new search or continued search
405 (let* ((oldprop (get 'reftex-view-regexp-match :props))
406 (newprop (list (current-buffer) re))
407 (cont (and (not new) (equal oldprop newprop)))
408 (cnt (if cont (get 'reftex-view-regexp-match :cnt) 0))
409 (current-window (selected-window))
410 (window-conf (current-window-configuration))
411 match pop-window)
412 (switch-to-buffer-other-window (or ref-buffer (current-buffer)))
413 ;; Search
414 (condition-case nil
415 (if cont
416 (setq match (reftex-global-search-continue))
417 (reftex-access-scan-info)
418 (setq match (reftex-global-search re (reftex-all-document-files))))
419 (error nil))
420 ;; Evaluate the match.
421 (if match
422 (progn
423 (put 'reftex-view-regexp-match :props newprop)
424 (put 'reftex-view-regexp-match :cnt (incf cnt))
425 (reftex-highlight 0 (match-beginning highlight-group)
426 (match-end highlight-group))
427 (add-hook 'pre-command-hook 'reftex-highlight-shall-die)
428 (setq pop-window (selected-window)))
429 (put 'reftex-view-regexp-match :props nil)
430 (or cont (set-window-configuration window-conf)))
431 (select-window current-window)
432 (if match
433 (progn
434 (message "Match Nr. %s" cnt)
435 pop-window)
436 (if cont
437 (error "No further matches (total number of matches: %d)" cnt)
438 (error "No matches")))))
439
440 (defvar reftex-global-search-marker (make-marker))
441 (defun reftex-global-search (regexp file-list)
442 ;; Start a search for REGEXP in all files of FILE-LIST
443 (put 'reftex-global-search :file-list file-list)
444 (put 'reftex-global-search :regexp regexp)
445 (move-marker reftex-global-search-marker nil)
446 (reftex-global-search-continue))
447
448 (defun reftex-global-search-continue ()
449 ;; Continue a global search started with `reftex-global-search'
450 (unless (get 'reftex-global-search :file-list)
451 (error "No global search to continue"))
452 (let* ((file-list (get 'reftex-global-search :file-list))
453 (regexp (get 'reftex-global-search :regexp))
454 (buf (or (marker-buffer reftex-global-search-marker)
455 (reftex-get-file-buffer-force (car file-list))))
456 (pos (or (marker-position reftex-global-search-marker) 1))
457 file)
458 ;; Take up starting position
459 (unless buf (error "No such buffer %s" buf))
460 (switch-to-buffer buf)
461 (widen)
462 (goto-char pos)
463 ;; Search and switch file if necessary
464 (if (catch 'exit
465 (while t
466 (when (re-search-forward regexp nil t)
467 (move-marker reftex-global-search-marker (point))
468 (throw 'exit t))
469 ;; No match - goto next file
470 (pop file-list)
471 (or file-list (throw 'exit nil))
472 (setq file (car file-list)
473 buf (reftex-get-file-buffer-force file))
474 (unless buf (error "Cannot access file %s" file))
475 (put 'reftex-global-search :file-list file-list)
476 (switch-to-buffer buf)
477 (widen)
478 (goto-char 1)))
479 t
480 (move-marker reftex-global-search-marker nil)
481 (error "All files processed"))))
482
483 ;;; arch-tag: d2f52b56-744e-44ad-830d-1fc193b90eda
484 ;;; reftex-dcr.el ends here