1 ;;; reftex-toc.el --- RefTeX's table of contents mode
2 ;; Copyright (C) 1997, 1998, 1999, 2000, 2003, 2004, 2005,
3 ;; 2006, 2007, 2008 Free Software Foundation, Inc.
5 ;; Author: Carsten Dominik <dominik@science.uva.nl>
6 ;; Maintainer: auctex-devel@gnu.org
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, or (at your option)
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; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
30 (eval-when-compile (require 'cl
))
35 (defvar reftex-toc-map
(make-sparse-keymap)
36 "Keymap used for *toc* buffer.")
38 (defvar reftex-toc-menu
)
39 (eval-when-compile (defvar zmacs-regions
))
40 (defvar reftex-last-window-height nil
)
41 (defvar reftex-last-window-width nil
)
42 (defvar reftex-toc-include-labels-indicator nil
)
43 (defvar reftex-toc-include-index-indicator nil
)
44 (defvar reftex-toc-max-level-indicator nil
)
46 (defun reftex-toc-mode ()
47 "Major mode for managing Table of Contents for LaTeX files.
48 This buffer was created with RefTeX.
49 Press `?' for a summary of important key bindings.
51 Here are all local bindings.
55 (kill-all-local-variables)
56 (setq major-mode
'reftex-toc-mode
58 (use-local-map reftex-toc-map
)
59 (set (make-local-variable 'transient-mark-mode
) t
)
60 (set (make-local-variable 'zmacs-regions
) t
)
61 (set (make-local-variable 'revert-buffer-function
) 'reftex-toc-revert
)
62 (set (make-local-variable 'reftex-toc-include-labels-indicator
) "")
63 (set (make-local-variable 'reftex-toc-max-level-indicator
)
64 (if (= reftex-toc-max-level
100)
66 (int-to-string reftex-toc-max-level
)))
67 (setq mode-line-format
68 (list "---- " 'mode-line-buffer-identification
69 " " 'global-mode-string
" (" mode-name
")"
70 " L<" 'reftex-toc-include-labels-indicator
">"
71 " I<" 'reftex-toc-include-index-indicator
">"
72 " T<" 'reftex-toc-max-level-indicator
">"
74 (setq truncate-lines t
)
75 (when (featurep 'xemacs
)
76 ;; XEmacs needs the call to make-local-hook
77 (make-local-hook 'post-command-hook
)
78 (make-local-hook 'pre-command-hook
))
79 (make-local-variable 'reftex-last-follow-point
)
80 (add-hook 'post-command-hook
'reftex-toc-post-command-hook nil t
)
81 (add-hook 'pre-command-hook
'reftex-toc-pre-command-hook nil t
)
82 (easy-menu-add reftex-toc-menu reftex-toc-map
)
83 (run-hooks 'reftex-toc-mode-hook
))
85 (defvar reftex-last-toc-file nil
86 "Stores the file name from which `reftex-toc' was called. For redo command.")
89 (defvar reftex-toc-return-marker
(make-marker)
90 "Marker which makes it possible to return from toc to old position.")
92 (defconst reftex-toc-help
93 " AVAILABLE KEYS IN TOC BUFFER
94 ============================
95 n / p next-line / previous-line
96 SPC Show the corresponding location of the LaTeX document.
97 TAB Goto the location and keep the *toc* window.
98 RET Goto the location and hide the *toc* window (also on mouse-2).
99 < / > Promote / Demote section, or all sections in region.
100 C-c > Display Index. With prefix arg, restrict index to current section.
101 q / k Hide/Kill *toc* buffer, return to position of reftex-toc command.
102 l i c F Toggle display of [l]abels, [i]ndex, [c]ontext, [F]ile borders.
103 t Change maximum toc depth (e.g. `3 t' hides levels greater than 3).
104 f / g Toggle follow mode / Refresh *toc* buffer.
105 a / d Toggle auto recenter / Toggle dedicated frame
106 r / C-u r Reparse the LaTeX document / Reparse entire LaTeX document.
107 . In other window, show position from where `reftex-toc' was called.
108 M-% Global search and replace to rename label at point.
109 x Switch to TOC of external document (with LaTeX package `xr').
110 z Jump to a specific section (e.g. '3 z' goes to section 3).")
112 (defun reftex-toc (&optional rebuild reuse
)
113 "Show the table of contents for the current document.
114 When called with a raw C-u prefix, rescan the document first."
116 ;; The REUSE argument means, search all visible frames for a window
117 ;; displaying the toc window. If yes, reuse this window.
121 (if (or (not (string= reftex-last-toc-master
(reftex-TeX-master-file)))
123 (reftex-erase-buffer "*toc*"))
125 (setq reftex-last-toc-file
(buffer-file-name))
126 (setq reftex-last-toc-master
(reftex-TeX-master-file))
128 (set-marker reftex-toc-return-marker
(point))
130 ;; If follow mode is active, arrange to delay it one command
131 (if reftex-toc-follow-mode
132 (setq reftex-toc-follow-mode
1))
134 (and reftex-toc-include-index-entries
135 (reftex-ensure-index-support))
136 (or reftex-support-index
137 (setq reftex-toc-include-index-entries nil
))
139 ;; Ensure access to scanning info and rescan buffer if prefix are is '(4)
140 (reftex-access-scan-info current-prefix-arg
)
142 (let* ((this-buf (current-buffer))
143 (docstruct-symbol reftex-docstruct-symbol
)
144 (xr-data (assq 'xr
(symbol-value reftex-docstruct-symbol
)))
145 (xr-alist (cons (cons "" (buffer-file-name)) (nth 1 xr-data
)))
146 (here-I-am (if (boundp 'reftex-rebuilding-toc
)
147 (get 'reftex-toc
:reftex-data
)
148 (car (reftex-where-am-I))))
149 (unsplittable (if (fboundp 'frame-property
)
150 (frame-property (selected-frame) 'unsplittable
)
151 (frame-parameter (selected-frame) 'unsplittable
)))
154 (if (setq toc-window
(get-buffer-window
156 (if reuse
'visible
)))
157 (select-window toc-window
)
158 (when (or (not reftex-toc-keep-other-windows
)
159 (< (window-height) (* 2 window-min-height
)))
160 (delete-other-windows))
162 (setq reftex-last-window-width
(window-width)
163 reftex-last-window-height
(window-height)) ; remember
166 (if reftex-toc-split-windows-horizontally
167 (split-window-horizontally
168 (floor (* (window-width)
169 reftex-toc-split-windows-fraction
)))
170 (split-window-vertically
171 (floor (* (window-height)
172 reftex-toc-split-windows-fraction
)))))
174 (let ((default-major-mode 'reftex-toc-mode
))
175 (switch-to-buffer "*toc*")))
177 (or (eq major-mode
'reftex-toc-mode
) (reftex-toc-mode))
178 (set (make-local-variable 'reftex-docstruct-symbol
) docstruct-symbol
)
179 (setq reftex-toc-include-labels-indicator
180 (if (eq reftex-toc-include-labels t
)
182 reftex-toc-include-labels
))
183 (setq reftex-toc-include-index-indicator
184 (if (eq reftex-toc-include-index-entries t
)
186 reftex-toc-include-index-entries
))
190 ;; buffer is empty - fill it with the table of contents
191 (message "Building *toc* buffer...")
193 (setq buffer-read-only nil
)
195 "TABLE-OF-CONTENTS on %s
196 SPC=view TAB=goto RET=goto+hide [q]uit [r]escan [l]abels [f]ollow [x]r [?]Help
197 ------------------------------------------------------------------------------
198 " (abbreviate-file-name reftex-last-toc-master
)))
200 (if (reftex-use-fonts)
201 (put-text-property (point-min) (point) 'face reftex-toc-header-face
))
202 (put-text-property (point-min) (point) 'intangible t
)
203 (put-text-property (point-min) (1+ (point-min)) 'xr-alist xr-alist
)
206 (reftex-insert-docstruct
209 reftex-toc-include-labels
210 reftex-toc-include-index-entries
211 reftex-toc-include-file-boundaries
212 reftex-toc-include-context
220 (run-hooks 'reftex-display-copied-context-hook
)
221 (message "Building *toc* buffer...done.")
222 (setq buffer-read-only t
))
224 ;; Only compute the offset
226 (or (reftex-get-offset this-buf here-I-am
227 (if reftex-toc-include-labels
" " nil
)
229 reftex-toc-include-index-entries
230 reftex-toc-include-file-boundaries
)
231 (reftex-last-assoc-before-elt
233 (symbol-value reftex-docstruct-symbol
))))
234 (put 'reftex-toc
:reftex-line
3)
236 (beginning-of-line)))
238 ;; Find the correct starting point
239 (reftex-find-start-point (point) offset
(get 'reftex-toc
:reftex-line
))
240 (setq reftex-last-follow-point
(point))))
242 (defun reftex-toc-recenter (&optional arg
)
243 "Display the TOC window and highlight line corresponding to current position."
245 (let ((buf (current-buffer))
246 (frame (selected-frame)))
248 (if (= (count-lines 1 (point)) 2)
249 (let ((current-prefix-arg nil
))
250 (select-window (get-buffer-window buf frame
))
253 (not (get-text-property (point) 'intangible
))
254 (memq reftex-highlight-selection
'(cursor both
))
256 (or (previous-single-property-change
257 (min (point-max) (1+ (point))) :data
)
259 (or (next-single-property-change (point) :data
)
261 (select-window (get-buffer-window buf frame
))))
263 (defun reftex-toc-pre-command-hook ()
264 ;; used as pre command hook in *toc* buffer
265 (reftex-unhighlight 0)
268 (defun reftex-toc-post-command-hook ()
269 ;; used in the post-command-hook for the *toc* buffer
270 (when (get-text-property (point) :data
)
271 (put 'reftex-toc
:reftex-data
(get-text-property (point) :data
))
273 (not (get-text-property (point) 'intangible
))
274 (memq reftex-highlight-selection
'(cursor both
))
276 (or (previous-single-property-change (1+ (point)) :data
)
278 (or (next-single-property-change (point) :data
)
280 (if (integerp reftex-toc-follow-mode
)
281 ;; remove delayed action
282 (setq reftex-toc-follow-mode t
)
283 (and (not (reftex-toc-dframe-p))
284 reftex-toc-follow-mode
285 (not (equal reftex-last-follow-point
(point)))
286 ;; show context in other window
287 (setq reftex-last-follow-point
(point))
289 (reftex-toc-visit-location nil
(not reftex-revisit-to-follow
))
292 (defun reftex-re-enlarge ()
293 ;; Enlarge window to a remembered size.
294 (if reftex-toc-split-windows-horizontally
295 (enlarge-window-horizontally
296 (max 0 (- (or reftex-last-window-width
(window-width))
299 (max 0 (- (or reftex-last-window-height
(window-height))
302 (defun reftex-toc-dframe-p (&optional frame error
)
303 ;; Check if FRAME is the dedicated TOC frame.
304 ;; If yes, and ERROR is non-nil, throw an error.
305 (setq frame
(or frame
(selected-frame)))
307 (if (fboundp 'frame-property
)
308 (frame-property frame
'name
)
309 (frame-parameter frame
'name
))
310 "RefTeX TOC Frame")))
312 (error "This frame is view-only. Use `C-c =' to create toc window for commands"))
315 (defun reftex-toc-show-help ()
316 "Show a summary of special key bindings."
318 (reftex-toc-dframe-p nil
'error
)
319 (with-output-to-temp-buffer "*RefTeX Help*"
320 (princ reftex-toc-help
))
321 (reftex-enlarge-to-fit "*RefTeX Help*" t
)
322 ;; If follow mode is active, arrange to delay it one command
323 (if reftex-toc-follow-mode
324 (setq reftex-toc-follow-mode
1)))
326 (defun reftex-toc-next (&optional arg
)
327 "Move to next selectable item."
329 (when (featurep 'xemacs
) (setq zmacs-region-stays t
))
330 (setq reftex-callback-fwd t
)
331 (or (eobp) (forward-char 1))
332 (goto-char (or (next-single-property-change (point) :data
)
334 (defun reftex-toc-previous (&optional arg
)
335 "Move to previous selectable item."
337 (when (featurep 'xemacs
) (setq zmacs-region-stays t
))
338 (setq reftex-callback-fwd nil
)
339 (goto-char (or (previous-single-property-change (point) :data
)
341 (defun reftex-toc-next-heading (&optional arg
)
342 "Move to next table of contentes line."
344 (when (featurep 'xemacs
) (setq zmacs-region-stays t
))
346 (re-search-forward "^ " nil t arg
)
348 (defun reftex-toc-previous-heading (&optional arg
)
349 "Move to previous table of contentes line."
351 (when (featurep 'xemacs
) (setq zmacs-region-stays t
))
352 (re-search-backward "^ " nil t arg
))
353 (defun reftex-toc-toggle-follow ()
354 "Toggle follow (other window follows with context)."
356 (setq reftex-last-follow-point -
1)
357 (setq reftex-toc-follow-mode
(not reftex-toc-follow-mode
)))
358 (defun reftex-toc-toggle-file-boundary ()
359 "Toggle inclusion of file boundaries in *toc* buffer."
361 (setq reftex-toc-include-file-boundaries
362 (not reftex-toc-include-file-boundaries
))
364 (defun reftex-toc-toggle-labels (arg)
365 "Toggle inclusion of labels in *toc* buffer.
366 With prefix ARG, prompt for a label type and include only labels of
369 (setq reftex-toc-include-labels
370 (if arg
(reftex-query-label-type)
371 (not reftex-toc-include-labels
)))
373 (defun reftex-toc-toggle-index (arg)
374 "Toggle inclusion of index in *toc* buffer.
375 With prefix arg, prompt for an index tag and include only entries of that
378 (setq reftex-toc-include-index-entries
379 (if arg
(reftex-index-select-tag)
380 (not reftex-toc-include-index-entries
)))
382 (defun reftex-toc-toggle-context ()
383 "Toggle inclusion of label context in *toc* buffer.
384 Label context is only displayed when the labels are there as well."
386 (setq reftex-toc-include-context
(not reftex-toc-include-context
))
388 (defun reftex-toc-max-level (arg)
389 "Set the maximum level of toc lines in this buffer to value of prefix ARG.
390 When no prefix is given, set the max level to a large number, so that all
391 levels are shown. For eaxample, to set the level to 3, type `3 m'."
393 (setq reftex-toc-max-level
(if arg
394 (prefix-numeric-value arg
)
396 (setq reftex-toc-max-level-indicator
397 (if arg
(int-to-string reftex-toc-max-level
) "ALL"))
399 (defun reftex-toc-view-line ()
400 "View document location in other window."
402 (reftex-toc-dframe-p nil
'error
)
403 (reftex-toc-visit-location))
404 (defun reftex-toc-goto-line-and-hide ()
405 "Go to document location in other window. Hide the *toc* window."
407 (reftex-toc-dframe-p nil
'error
)
408 (reftex-toc-visit-location 'hide
))
409 (defun reftex-toc-goto-line ()
410 "Go to document location in other window. *toc* window stays."
412 (reftex-toc-dframe-p nil
'error
)
413 (reftex-toc-visit-location t
))
414 (defun reftex-toc-mouse-goto-line-and-hide (ev)
415 "Go to document location in other window. Hide the *toc* window."
418 (reftex-toc-dframe-p nil
'error
)
419 (reftex-toc-visit-location 'hide
))
420 (defun reftex-toc-show-calling-point ()
421 "Show point where reftex-toc was called from."
423 (reftex-toc-dframe-p nil
'error
)
424 (let ((this-window (selected-window)))
427 (switch-to-buffer-other-window
428 (marker-buffer reftex-toc-return-marker
))
429 (goto-char (marker-position reftex-toc-return-marker
))
431 (select-window this-window
))))
432 (defun reftex-toc-quit ()
433 "Hide the *toc* window and do not move point.
434 If the toc window is the only window on the dedicated TOC frame, the frame
437 (if (and (one-window-p)
438 (reftex-toc-dframe-p)
439 (> (length (frame-list)) 1))
441 (or (one-window-p) (delete-window))
442 (switch-to-buffer (marker-buffer reftex-toc-return-marker
))
444 (goto-char (or (marker-position reftex-toc-return-marker
) (point)))))
445 (defun reftex-toc-quit-and-kill ()
446 "Kill the *toc* buffer."
448 (kill-buffer "*toc*")
449 (or (one-window-p) (delete-window))
450 (switch-to-buffer (marker-buffer reftex-toc-return-marker
))
452 (goto-char (marker-position reftex-toc-return-marker
)))
453 (defun reftex-toc-display-index (&optional arg
)
454 "Display the index buffer for the current document.
455 This works just like `reftex-display-index' from a LaTeX buffer.
456 With prefix arg 1, restrict index to the section at point."
458 (reftex-toc-dframe-p nil
'error
)
459 (let ((data (get-text-property (point) :data
))
460 (docstruct (symbol-value reftex-docstruct-symbol
))
463 (setq bor
(reftex-last-assoc-before-elt 'toc data docstruct
)
464 eor
(assoc 'toc
(cdr (memq bor docstruct
)))
465 restr
(list (nth 6 bor
) bor eor
)))
466 (reftex-toc-goto-line)
467 (reftex-display-index (if restr nil arg
) restr
)))
469 ;; Rescanning the document and rebuilding the TOC buffer.
470 (defun reftex-toc-rescan (&rest ignore
)
471 "Regenerate the *toc* buffer by reparsing file of section at point."
473 (if (and reftex-enable-partial-scans
474 (null current-prefix-arg
))
475 (let* ((data (get-text-property (point) :data
))
477 (file (cond ((eq what
'toc
) (nth 3 data
))
478 ((memq what
'(eof bof file-error
)) (nth 1 data
))
479 ((stringp what
) (nth 3 data
))
480 ((eq what
'index
) (nth 3 data
))))
481 (line (+ (count-lines (point-min) (point)) (if (bolp) 1 0))))
483 (error "Don't know which file to rescan. Try `C-u r'")
484 (put 'reftex-toc
:reftex-line line
)
485 (switch-to-buffer-other-window
486 (reftex-get-file-buffer-force file
))
487 (setq current-prefix-arg
'(4))
488 (let ((reftex-rebuilding-toc t
))
491 (reftex-kill-temporary-buffers))
493 (defun reftex-toc-Rescan (&rest ignore
)
494 "Regenerate the *toc* buffer by reparsing the entire document."
496 (let* ((line (+ (count-lines (point-min) (point)) (if (bolp) 1 0))))
497 (put 'reftex-toc
:reftex-line line
))
498 (switch-to-buffer-other-window
499 (reftex-get-file-buffer-force reftex-last-toc-file
))
500 (setq current-prefix-arg
'(16))
501 (let ((reftex-rebuilding-toc t
))
504 (defun reftex-toc-revert (&rest ignore
)
505 "Regenerate the *toc* from the internal lists."
508 (if (fboundp 'frame-property
)
509 (frame-property (selected-frame) 'unsplittable
)
510 (frame-parameter (selected-frame) 'unsplittable
)))
511 (reftex-rebuilding-toc t
))
514 (reftex-get-file-buffer-force reftex-last-toc-file
))
515 (switch-to-buffer-other-window
516 (reftex-get-file-buffer-force reftex-last-toc-file
))))
517 (reftex-erase-buffer "*toc*")
518 (setq current-prefix-arg nil
)
521 (defun reftex-toc-external (&rest ignore
)
522 "Switch to table of contents of an external document."
524 (reftex-toc-dframe-p nil
'error
)
525 (let* ((old-buf (current-buffer))
526 (xr-alist (get-text-property 1 'xr-alist
))
527 (xr-index (reftex-select-external-document
529 (switch-to-buffer-other-window (or (reftex-get-file-buffer-force
530 (cdr (nth xr-index xr-alist
)))
531 (error "Cannot switch document")))
533 (if (equal old-buf
(current-buffer))
535 (message "Switched document"))))
537 (defun reftex-toc-jump (arg)
538 "Jump to a specific section. E.g. '3 z' jumps to section 3.
539 Useful for large TOC's."
541 (goto-char (point-min))
543 (concat "^ *" (number-to-string (if (numberp arg
) arg
1)) " ")
547 ;; Promotion/Demotion stuff
556 (defun reftex-toc-demote (&optional arg
)
557 "Demote section at point. If region is active, apply to all in region."
559 (reftex-toc-do-promote 1))
560 (defun reftex-toc-promote (&optional arg
)
561 "Promote section at point. If region is active, apply to all in region."
563 (reftex-toc-do-promote -
1))
564 (defun reftex-toc-do-promote (delta)
565 "Workhorse for reftex-toc-promote and reftex-to-demote.
566 Changes the level of sections in the current region, or just the section at
568 ;; We should not do anything unless we are sure this is going to work for
569 ;; each section in the region. Therefore we first collect information and
571 (let* ((start-line (+ (count-lines (point-min) (point))
573 (mark-line (if (reftex-region-active-p)
574 (save-excursion (goto-char (mark))
575 (+ (count-lines (point-min) (point))
578 (pro-or-de (if (> delta
0) "de" "pro"))
579 beg end entries data sections nsec mpos msg
)
582 (if (reftex-region-active-p)
583 ;; A region is dangerous, check if we have a brandnew scan,
584 ;; to make sure we are not missing any section statements.
585 (if (not (reftex-toc-check-docstruct))
586 (reftex-toc-load-all-files-for-promotion) ;; exits
587 (setq beg
(min (point) (mark))
588 end
(max (point) (mark))))
589 (setq beg
(point) end
(point)))
591 (while (and (setq data
(get-text-property (point) :data
))
593 (if (eq (car data
) 'toc
) (push (cons data
(point)) entries
))
594 (goto-char (or (next-single-property-change (point) :data
)
596 (setq entries
(nreverse entries
))
597 ;; Get the relevant section numbers, for an informative message
598 (goto-char start-pos
)
599 (setq sections
(reftex-toc-extract-section-number (car entries
)))
600 (if (> (setq nsec
(length entries
)) 1)
603 (reftex-toc-extract-section-number
604 (nth (1- nsec
) entries
)))))
605 ;; Run through the list and prepare the changes.
606 (setq entries
(mapcar 'reftex-toc-promote-prepare entries
))
607 ;; Ask for permission
608 (if (or (not reftex-toc-confirm-promotion
) ; never confirm
609 (and (integerp reftex-toc-confirm-promotion
) ; confirm if many
610 (< nsec reftex-toc-confirm-promotion
))
612 (format "%s %d toc-entr%s (section%s %s)? "
613 (if (< delta
0) "Promote" "Demote")
615 (if (= 1 nsec
) "y" "ies")
616 (if (= 1 nsec
) "" "s")
618 nil
; we have permission, do nothing
619 (error "Abort")) ; abort, we don't have permission
621 (mapc 'reftex-toc-promote-action entries
)
622 ;; Rescan the document and rebuilt the toc buffer
623 (save-window-excursion
625 (reftex-toc-restore-region start-line mark-line
)
626 (message "%d section%s %smoted"
627 nsec
(if (= 1 nsec
) "" "s") pro-or-de
)
629 (if msg
(progn (ding) (message "%s" msg
)))))
632 (defun reftex-toc-restore-region (point-line &optional mark-line
)
634 (progn (goto-line mark-line
)
635 (setq mpos
(point))))
636 (if point-line
(goto-line point-line
))
640 (if (featurep 'xemacs
)
641 (zmacs-activate-region)
643 deactivate-mark nil
)))))
649 (defun reftex-toc-promote-prepare (x)
650 "Look at a toc entry and see if we could pro/demote it.
651 Expects the level change DELTA to be dynamically scoped into this function.
652 This function prepares everything for the changes, but does not do it.
653 The return value is a list with information needed when doing the
654 promotion/demotion later."
655 (let* ((data (car x
))
657 (marker (nth 4 data
))
658 (literal (nth 7 data
))
661 ;; Here follows some paranoid code to make very sure we are not
662 ;; going to break anything
664 (if (and (markerp marker
) (marker-buffer marker
))
665 ;; Buffer is still live and we have the marker.
668 ;; Goto the buffer and check of section is unchanged
669 (set-buffer (marker-buffer marker
))
670 (goto-char (marker-position marker
))
671 (if (looking-at (regexp-quote literal
))
672 ;; OK, get the makro name
674 (beginning-of-line 1)
675 (if (looking-at reftex-section-regexp
)
676 (setq name
(reftex-match-string 2))
677 (error "Something is wrong! Contact maintainer!")))
678 ;; Section has changed, request scan and loading
679 ;; We use a variable to delay until after the safe-exc.
680 ;; because otherwise we loose the region.
682 ;; Scan document and load all files, this exits command
683 (if load
(reftex-toc-load-all-files-for-promotion))) ; exits
684 ;; We don't have a live marker: scan and load files.
685 (reftex-toc-load-all-files-for-promotion)))
686 (level (cdr (assoc name reftex-section-levels-all
)))
687 (dummy (if (not (integerp level
))
689 (goto-char toc-point
)
690 (error "Cannot %smote special sections" pro-or-de
))))
691 ;; Delta is dynamically scoped into here...
692 (newlevel (if (>= level
0) (+ delta level
) (- level delta
)))
693 (dummy2 (if (or (and (>= level
0) (= newlevel -
1))
694 (and (< level
0) (= newlevel
0)))
695 (error "Cannot %smote \\%s" pro-or-de name
)))
696 (newname (reftex-toc-newhead-from-alist newlevel name
697 reftex-section-levels-all
)))
698 (if (and name newname
)
699 (list data name newname toc-point
)
700 (goto-char toc-point
)
701 (error "Cannot %smote \\%s" pro-or-de name
))))
703 (defun reftex-toc-promote-action (x)
704 "Change the level of a toc entry.
705 DELTA and PRO-OR-DE are assumed to be dynamically scoped into this function."
706 (let* ((data (car x
))
709 (marker (nth 4 data
)))
711 (set-buffer (marker-buffer marker
))
712 (goto-char (marker-position marker
))
713 (if (looking-at (concat "\\([ \t]*\\\\\\)" (regexp-quote name
)))
714 (replace-match (concat "\\1" newname
))
715 (error "Fatal error during %smotion" pro-or-de
)))))
717 (defun reftex-toc-extract-section-number (entry)
718 "Get the numbering of a toc entry, for message purposes."
719 (if (string-match "\\s-*\\(\\S-+\\)" (nth 2 (car entry
)))
720 (match-string 1 (nth 2 (car entry
)))
723 (defun reftex-toc-newhead-from-alist (nlevel head alist
)
724 "Get new heading with level NLEVEL from ALIST.
725 If there are no such entries, return nil.
726 If there are several different entries with same new level, choose
727 the one with the smallest distance to the assocation of HEAD in the alist.
728 This makes it possible for promotion to work several sets of headings,
729 if these sets are sorted blocks in the alist."
731 (ass (assoc head al
))
732 (pos (length (memq ass al
)))
733 dist
(mindist 1000) newhead
)
735 (if (equal (cdar al
) nlevel
)
737 (setq dist
(abs (- (length al
) pos
)))
739 (setq newhead
(car (car al
))
744 (defun reftex-toc-check-docstruct ()
745 "Check if the current docstruct is fully up to date and all files visited."
746 ;; We do this by checking if all sections are on the right position
747 (let ((docstruct (symbol-value reftex-docstruct-symbol
))
748 entry marker empoint
)
750 (while (setq entry
(pop docstruct
))
751 (if (eq (car entry
) 'toc
)
753 (setq marker
(nth 4 entry
)
754 empoint
(nth 8 entry
))
755 (if (not (and (markerp marker
)
756 (marker-buffer marker
)
757 (= (marker-position marker
) empoint
)))
758 (throw 'exit nil
)))))
761 (defun reftex-toc-load-all-files-for-promotion ()
762 "Make sure all files of the document are being visited by buffers,
763 and that the scanning info is absolutely up to date.
764 We do this by rescanning with reftex-keep-temporary-buffers bound to t.
765 The variable PRO-OR-DE is assumed to be dynamically scoped into this function.
766 When finished, we exit with an error message."
767 (let ((reftex-keep-temporary-buffers t
))
769 (reftex-toc-restore-region start-line mark-line
)
771 "TOC had to be updated first. Please check selection and repeat the command.")))
773 (defun reftex-toc-rename-label ()
774 "Rename the currently selected label in the *TOC* buffer.
775 This launches a global search and replace in order to rename a label.
776 Renaming a label is hardly ever necessary - the only exeption is after
777 promotion/demotion in connection with a package like fancyref, where the
778 label prefix determines the wording of a reference."
780 (let* ((toc (get-text-property (point) :data
))
781 (label (car toc
)) newlabel
)
782 (if (not (stringp label
))
783 (error "This is not a label entry."))
784 (setq newlabel
(read-string (format "Rename label \"%s\" to:" label
)))
785 (if (assoc newlabel
(symbol-value reftex-docstruct-symbol
))
787 (format "Label '%s' exists. Use anyway? " label
)))
790 (save-window-excursion
791 (reftex-toc-visit-location t
)
793 (reftex-query-replace-document
794 (concat "{" (regexp-quote label
) "}")
795 (format "{%s}" newlabel
))
797 (reftex-toc-rescan)))
800 (defun reftex-toc-visit-location (&optional final no-revisit
)
801 ;; Visit the tex file corresponding to the toc entry on the current line.
802 ;; If FINAL is t, stay there
803 ;; If FINAL is 'hide, hide the *toc* window.
804 ;; Otherwise, move cursor back into *toc* window.
805 ;; NO-REVISIT means don't visit files, just use live buffers.
806 ;; This function is pretty clever about finding back a section heading,
807 ;; even if the buffer is not live, or things like outline, x-symbol etc.
810 (let* ((toc (get-text-property (point) :data
))
811 (toc-window (selected-window))
812 show-window show-buffer match
)
814 (unless toc
(error "Don't know which toc line to visit"))
820 (setq match
(reftex-toc-find-section toc no-revisit
)))
822 ((eq (car toc
) 'index
)
824 (setq match
(reftex-index-show-entry toc no-revisit
)))
826 ((memq (car toc
) '(bof eof
))
829 (let ((where (car toc
))
831 (if (or (not no-revisit
) (reftex-get-buffer-visiting file
))
833 (switch-to-buffer-other-window
834 (reftex-get-file-buffer-force file nil
))
835 (goto-char (if (eq where
'bof
) (point-min) (point-max))))
836 (message "%s" reftex-no-follow-message
) nil
))))
840 (setq match
(reftex-show-label-location toc reftex-callback-fwd
843 (setq show-window
(selected-window)
844 show-buffer
(current-buffer))
847 (select-window toc-window
)
848 (error "Cannot find location"))
850 (select-window toc-window
)
852 ;; use the `final' parameter to decide what to do next
855 (reftex-unhighlight 0)
856 (select-window show-window
))
858 (reftex-unhighlight 0)
859 (or (one-window-p) (delete-window))
860 ;; If `show-window' is still live, show-buffer is already visible
861 ;; so let's not make it visible in yet-another-window.
862 (if (window-live-p show-window
)
863 (set-buffer show-buffer
)
864 (switch-to-buffer show-buffer
))
868 (defun reftex-toc-find-section (toc &optional no-revisit
)
869 (let* ((file (nth 3 toc
))
872 (literal (nth 7 toc
))
873 (emergency-point (nth 8 toc
))
876 ((and (markerp marker
) (marker-buffer marker
))
877 ;; Buffer is still live and we have the marker. Should be easy.
878 (switch-to-buffer-other-window (marker-buffer marker
))
880 (goto-char (marker-position marker
))
881 (or (looking-at (regexp-quote literal
))
882 (looking-at (reftex-make-regexp-allow-for-ctrl-m literal
))
883 (looking-at (reftex-make-desperate-section-regexp literal
))
884 (looking-at (concat "\\\\"
888 reftex-section-levels-all
)))
890 ((or (not no-revisit
)
891 (reftex-get-buffer-visiting file
))
892 ;; Marker is lost. Use the backup method.
893 (switch-to-buffer-other-window
894 (reftex-get-file-buffer-force file nil
))
895 (goto-char (or emergency-point
(point-min)))
896 (or (looking-at (regexp-quote literal
))
897 (let ((len (length literal
)))
898 (or (reftex-nearest-match (regexp-quote literal
) len
)
899 (reftex-nearest-match
900 (reftex-make-regexp-allow-for-ctrl-m literal
) len
)
901 (reftex-nearest-match
902 (reftex-make-desperate-section-regexp literal
) len
)))))
903 (t (message "%s" reftex-no-follow-message
) nil
))))
905 (goto-char (match-beginning 0))
906 (if (not (= (point) (point-max))) (recenter 1))
907 (reftex-highlight 0 (match-beginning 0) (match-end 0) (current-buffer)))
910 (defun reftex-make-desperate-section-regexp (old)
911 ;; Return a regexp which will still match a section statement even if
912 ;; x-symbol or isotex or the like have been at work in the mean time.
913 (let* ((n (1+ (string-match "[[{]" old
)))
914 (new (regexp-quote (substring old
0 (1+ (string-match "[[{]" old
)))))
915 (old (substring old n
)))
917 "\\([\r\n]\\)\\|\\(\\`\\|[ \t\n\r]\\)\\([a-zA-Z0-9]+\\)\\([ \t\n\r]\\|}\\'\\)"
919 (if (match-beginning 1)
920 (setq new
(concat new
"[^\n\r]*[\n\r]"))
921 (setq new
(concat new
"[^\n\r]*" (match-string 3 old
))))
922 (setq old
(substring old
(match-end 0))))
925 ;; Auto recentering of TOC window
927 (defun reftex-recenter-toc-when-idle ()
928 (and (> (buffer-size) 5)
930 (not (active-minibuffer-window))
931 (fboundp 'reftex-toc-mode
)
932 (get-buffer-window "*toc*" 'visible
)
933 (string= reftex-last-toc-master
(reftex-TeX-master-file))
934 (let (current-prefix-arg)
935 (reftex-toc-recenter))))
937 (defun reftex-toggle-auto-toc-recenter ()
938 "Toggle the automatic recentering of the toc window.
939 When active, leaving point idle will make the toc window jump to the correct
942 (if reftex-toc-auto-recenter-timer
944 (if (featurep 'xemacs
)
945 (delete-itimer reftex-toc-auto-recenter-timer
)
946 (cancel-timer reftex-toc-auto-recenter-timer
))
947 (setq reftex-toc-auto-recenter-timer nil
)
948 (message "Automatic recentering of toc windwo was turned off"))
949 (setq reftex-toc-auto-recenter-timer
950 (if (featurep 'xemacs
)
951 (start-itimer "RefTeX Idle Timer for recenter"
952 'reftex-recenter-toc-when-idle
953 reftex-idle-time reftex-idle-time t
)
955 reftex-idle-time t
'reftex-recenter-toc-when-idle
)))
956 (message "Automatic recentering of toc window was turned on")))
958 (defun reftex-toc-toggle-dedicated-frame ()
959 "Toggle the display of a separate frame for the TOC.
960 This frame is not used by the `reftex-toc' commands, but it is useful to
961 always show the current section in connection with the option
962 `reftex-auto-recenter-toc'."
965 (let* ((frames (frame-list)) frame
966 (get-frame-prop-func (if (fboundp 'frame-property
)
969 (while (setq frame
(pop frames
))
970 (if (equal (funcall get-frame-prop-func frame
'name
)
975 (reftex-make-separate-toc-frame))))
977 (defun reftex-make-separate-toc-frame ()
978 ;; Create a new fame showing only the toc buffer.
979 (let ((current-frame (selected-frame))
980 (current-window (selected-window))
981 (current-toc-window (get-buffer-window "*toc*" 'visible
))
983 (if (and current-toc-window
984 (not (equal (selected-frame) (window-frame current-toc-window
))))
986 (setq current-toc-frame
988 '((name .
"RefTeX TOC Frame")
989 (height .
20) (width .
60)
992 (default-toolbar-visible-p . nil
)
993 (menubar-visible-p . nil
)
994 (horizontal-scrollbar-visible-p . nil
))))
995 (select-frame current-toc-frame
)
996 (switch-to-buffer "*toc*")
997 (select-frame current-frame
)
998 (cond ((fboundp 'x-focus-frame
)
999 (x-focus-frame current-frame
))
1000 ((and (featurep 'xemacs
) ; `focus-frame' is a nop in Emacs.
1001 (fboundp 'focus-frame
))
1002 (focus-frame current-frame
)))
1003 (select-window current-window
)
1004 (when (eq reftex-auto-recenter-toc
'frame
)
1005 (unless reftex-toc-auto-recenter-timer
1006 (reftex-toggle-auto-toc-recenter))
1007 (add-hook 'delete-frame-hook
'reftex-toc-delete-frame-hook
)))))
1009 (defun reftex-toc-delete-frame-hook (frame)
1010 (if (and reftex-toc-auto-recenter-timer
1011 (reftex-toc-dframe-p frame
))
1013 (reftex-toggle-auto-toc-recenter))))
1015 ;; Table of Contents map
1016 (define-key reftex-toc-map
(if (featurep 'xemacs
) [(button2)] [(mouse-2)])
1017 'reftex-toc-mouse-goto-line-and-hide
)
1018 (define-key reftex-toc-map
[follow-link
] 'mouse-face
)
1020 (substitute-key-definition
1021 'next-line
'reftex-toc-next reftex-toc-map global-map
)
1022 (substitute-key-definition
1023 'previous-line
'reftex-toc-previous reftex-toc-map global-map
)
1026 '(("n" . reftex-toc-next
)
1027 ("p" . reftex-toc-previous
)
1028 ("?" . reftex-toc-show-help
)
1029 (" " . reftex-toc-view-line
)
1030 ("\C-m" . reftex-toc-goto-line-and-hide
)
1031 ("\C-i" . reftex-toc-goto-line
)
1032 ("\C-c>" . reftex-toc-display-index
)
1033 ("r" . reftex-toc-rescan
)
1034 ("R" . reftex-toc-Rescan
)
1035 ("g" . revert-buffer
)
1036 ("q" . reftex-toc-quit
);
1037 ("k" . reftex-toc-quit-and-kill
)
1038 ("f" . reftex-toc-toggle-follow
);
1039 ("a" . reftex-toggle-auto-toc-recenter
)
1040 ("d" . reftex-toc-toggle-dedicated-frame
)
1041 ("F" . reftex-toc-toggle-file-boundary
)
1042 ("i" . reftex-toc-toggle-index
)
1043 ("l" . reftex-toc-toggle-labels
)
1044 ("t" . reftex-toc-max-level
)
1045 ("c" . reftex-toc-toggle-context
)
1046 ; ("%" . reftex-toc-toggle-commented)
1047 ("\M-%" . reftex-toc-rename-label
)
1048 ("x" . reftex-toc-external
)
1049 ("z" . reftex-toc-jump
)
1050 ("." . reftex-toc-show-calling-point
)
1051 ("\C-c\C-n" . reftex-toc-next-heading
)
1052 ("\C-c\C-p" . reftex-toc-previous-heading
)
1053 (">" . reftex-toc-demote
)
1054 ("<" . reftex-toc-promote
))
1055 do
(define-key reftex-toc-map
(car x
) (cdr x
)))
1057 (loop for key across
"0123456789" do
1058 (define-key reftex-toc-map
(vector (list key
)) 'digit-argument
))
1059 (define-key reftex-toc-map
"-" 'negative-argument
)
1062 reftex-toc-menu reftex-toc-map
1063 "Menu for Table of Contents buffer"
1065 ["Show Location" reftex-toc-view-line t
]
1066 ["Go To Location" reftex-toc-goto-line t
]
1067 ["Exit & Go To Location" reftex-toc-goto-line-and-hide t
]
1068 ["Show Calling Point" reftex-toc-show-calling-point t
]
1069 ["Quit" reftex-toc-quit t
]
1072 ["Promote" reftex-toc-promote t
]
1073 ["Demote" reftex-toc-demote t
]
1074 ["Rename Label" reftex-toc-rename-label t
])
1076 ["Index" reftex-toc-display-index t
]
1077 ["External Document TOC " reftex-toc-external t
]
1080 ["Rebuilt *toc* Buffer" revert-buffer t
]
1081 ["Rescan One File" reftex-toc-rescan reftex-enable-partial-scans
]
1082 ["Rescan Entire Document" reftex-toc-Rescan t
])
1085 ["File Boundaries" reftex-toc-toggle-file-boundary
:style toggle
1086 :selected reftex-toc-include-file-boundaries
]
1087 ["Labels" reftex-toc-toggle-labels
:style toggle
1088 :selected reftex-toc-include-labels
]
1089 ["Index Entries" reftex-toc-toggle-index
:style toggle
1090 :selected reftex-toc-include-index-entries
]
1091 ["Context" reftex-toc-toggle-context
:style toggle
1092 :selected reftex-toc-include-context
]
1094 ["Follow Mode" reftex-toc-toggle-follow
:style toggle
1095 :selected reftex-toc-follow-mode
]
1096 ["Auto Recenter" reftex-toggle-auto-toc-recenter
:style toggle
1097 :selected reftex-toc-auto-recenter-timer
]
1098 ["Dedicated Frame" reftex-toc-toggle-dedicated-frame t
])
1100 ["Help" reftex-toc-show-help t
]))
1103 ;;; arch-tag: 92400ce2-0b86-4c89-a606-4ed71acea17e
1104 ;;; reftex-toc.el ends here