annotate lisp/utils/foldout.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children ac2d302a0011
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; foldout.el --- Folding extensions for outline-mode and outline-minor-mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Author: Kevin Broadey <KevinB@bartley.demon.co.uk>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Created: 27 Jan 1994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Version: foldout.el 1.10 dated 94/05/19 at 17:09:12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; Keywords: folding, outline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; along with XEmacs; see the file COPYING. If not, write to the Free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; Synched up with: FSF 19.30.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;; This file provides folding editor extensions for outline-mode and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;; outline-minor-mode buffers. What's a "folding editor"? Read on...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; Imagine you're in an outline-mode buffer and you've hidden all the text and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;; subheadings under your level-1 headings. You now want to look at the stuff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;; hidden under one of these headings. Normally you'd do C-c C-e (show-entry)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; to expose the body or C-c C-i to expose the child (level-2) headings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;; With foldout, you do C-c C-z (foldout-zoom-subtree). This exposes the body
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;; and child subheadings and narrows the buffer so that only the level-1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;; heading, the body and the level-2 headings are visible. If you now want to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;; look under one of the level-2 headings, position the cursor on it and do C-c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;; C-z again. This exposes the level-2 body and its level-3 child subheadings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;; and narrows the buffer again. You can keep on zooming in on successive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;; subheadings as much as you like. A string in the modeline tells you how
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;; deep you've gone.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ;; When zooming in on a heading you might only want to see the child
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ;; subheadings. You do this by specifying a numeric argument: C-u C-c C-z.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 ;; You can specify the number of levels of children too (c.f. show-children):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ;; e.g. M-2 C-c C-z exposes two levels of child subheadings. Alternatively,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;; you might only be interested in the body. You do this by specifying a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;; negative argument: M-- C-c C-z. You can also cause the whole subtree to be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ;; expanded, similar to C-c C-s (show-subtree), by specifying a zero argument:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 ;; M-0 C-c C-z.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 ;; While you're zoomed in you can still use outline-mode's exposure and hiding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 ;; functions. It won't upset foldout at all. Also, since the buffer is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 ;; narrowed, "global" editing actions will only affect the stuff under the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;; zoomed-in heading. This is useful for restricting changes to a particular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ;; chapter or section of your document.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 ;; You unzoom (exit) a fold by doing C-c C-x (foldout-exit-fold). This hides
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ;; all the text and subheadings under the top-level heading and returns you to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 ;; the previous view of the buffer. Specifying a numeric argument exits that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 ;; many folds. Specifying a zero argument exits *all* folds.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ;; You might want to exit a fold *without* hiding the text and subheadings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 ;; You do this by specifying a negative argument. For example, M--2 C-c C-x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ;; exits two folds and leaves the text and subheadings exposed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 ;; Foldout also provides mouse bindings for entering and exiting folds and for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 ;; showing and hiding text. Hold down Meta and Control, then click a mouse
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 ;; button as follows:-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 ;; mouse-1 (foldout-mouse-zoom) zooms in on the heading clicked on:-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 ;; single click expose body
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 ;; double click expose subheadings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 ;; triple click expose body and subheadings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 ;; quad click expose entire subtree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 ;; mouse-2 (foldout-mouse-show) exposes text under the heading clicked on:-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 ;; single click expose body
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 ;; double click expose subheadings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 ;; triple click expose body and subheadings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 ;; quad click expose entire subtree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 ;; mouse-3 (foldout-mouse-hide-or-exit) hides text under the heading clicked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 ;; on or exits the fold:-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 ;; single click hide subtree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ;; double click exit fold and hide text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 ;; triple click exit fold without hiding text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 ;; quad click exit all folds and hide text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ;; You can change the modifier keys used by setting `foldout-mouse-modifiers'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 ;;; Installation:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 ;; To use foldout, put this in your .emacs:-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 ;; (require 'foldout)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 ;; If you don't want it loaded until you need it, try this instead:-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 ;; (eval-after-load "outline" '(require 'foldout))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 ;;; Advertisements:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ;; Get out-xtra.el by Per Abrahamsen <abraham@iesd.auc.dk> for more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 ;; outline-mode goodies. In particular, `outline-hide-sublevels' makes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 ;; setup a lot easier.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 ;; folding.el by Jamie Lokier <u90jl@ecs.ox.ac.uk> supports folding by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 ;; recognising special marker text in you file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 ;; c-outline.el (by me) provides outline-mode support to recognise `C'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 ;; statements as outline headings, so with foldout you can have a folding `C'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 ;; code editor without having to put in start- and end-of-fold markers. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 ;; is a real winner!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 ;;; ChangeLog:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 ;; 1.10 21-Mar-94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 ;; foldout.el is now part of the GNU Emacs distribution!!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 ;; Put in changes made by RMS to version 1.8 to keep the diffs to a minimum.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 ;; bugfix: numeric arg to foldout-exit-fold wasn't working - looks like I don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 ;; know how to use the Common LISP `loop' macro after all, so use `while'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 ;; instead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 ;; 1.9 15-Mar-94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 ;; Didn't test that very well, did I? The change to foldout-zoom-subtree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 ;; affected foldout-mouse-zoom: if the heading under the `level n' one clicked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 ;; on was at `level n+2' then it didn't get exposed. Sorry about that!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 ;; 1.8 15-Mar-94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 ;; Changed meaning of prefix arg to foldout-zoom-subtree. arg > 0 now means
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 ;; "expose that many children" instead of just "expose children" so it is more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 ;; like `show-children' (C-c C-i). Arg of C-u on its own only shows one level
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 ;; of children, though, so you can still zoom by doing C-u C-c C-z.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 ;; I can't think of a good meaning for the value of a negative prefix. Any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 ;; suggestions?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 ;; Added advertisement for my c-outline.el package. Now you can have a folding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 ;; editor for c-mode without any effort!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 ;; 1.7 7-Mar-94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 ;; I got fed up trying to work out how many blank lines there were outside the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 ;; narrowed region when inside a fold. Now *all* newlines before the following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 ;; heading are *in* the narrowed region. Thus, if the cursor is at point-max,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 ;; the number of blank lines above it is the number you'll get above the next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 ;; heading.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 ;; Since all newlines are now inside the narrowed region, when exiting a fold
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 ;; add a newline at the end of the region if there isn't one so that the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 ;; following heading doesn't accidentally get joined to the body text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 ;; Bugfix: `foldout-mouse-modifiers' should be `defvar', not `defconst'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 ;; Use "cond" instead of "case" so that lemacs-19.9 users can use the mouse.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 ;; Improve "Commentary" entry on using the mouse.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 ;; Add "Installation" keyword.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 ;; 1.6 3-Mar-94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 ;; Add mouse support functions foldout-mouse-zoom, foldout-mouse-show,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 ;; foldout-mouse-hide-or-exit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 ;; 1.5 11-Feb-94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 ;; Rename `foldout-enter-subtree' to `foldout-zoom-subtree' and change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 ;; keystroke from C-g to C-z. This is more mnemonic and leaves C-g alone, as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 ;; users expect this to cancel the current key sequence.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 ;; Added better commentary at the request of RMS. Added stuff to comply with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 ;; the lisp-mnt.el conventions. Added instructions on how best to load the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 ;; package.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 ;; 1.4 2-Feb-94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 ;; Bugfix: end-of-fold marking was wrong:-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 ;; End of narrowed region should be one character on from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 ;; (outline-end-of-subtree) so it includes the end-of-line at the end of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 ;; last line of the subtree.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 ;; End-of-fold marker should be outside the narrowed region so text inserted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 ;; at the end of the region goes before the marker. Need to make a special
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 ;; case for end-of-buffer because it is impossible to set a marker that will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 ;; follow eob. Bummer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 ;; 1.3 28-Jan-94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 ;; Changed `foldout-zoom-subtree'. A zero arg now makes it expose the entire
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 ;; subtree on entering the fold. As before, < 0 shows only the body and > 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 ;; shows only the subheadings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 ;; 1.2 28-Jan-94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 ;; Fixed a dumb bug - didn't make `foldout-modeline-string' buffer-local :-(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 ;; Changed `foldout-exit-fold' to use prefix arg to say how many folds to exit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 ;; Negative arg means exit but don't hide text. Zero arg means exit all folds.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 ;; Added `foldout-inhibit-key-bindings' to inhibit key bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 ;; 1.1 27-Jan-94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 ;; Released to the net. Inspired by a question in gnu.emacs.help from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 ;; Jason D Lohn <jlohn@eng.umd.edu>.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (require 'outline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 ;; something has gone very wrong if outline-minor-mode isn't bound now.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (if (not (boundp 'outline-minor-mode))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (error "Can't find outline-minor-mode"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (defconst foldout-fold-list nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 "List of start and end markers for the folds currently entered.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 An end marker of NIL means the fold ends after (point-max).")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (make-variable-buffer-local 'foldout-fold-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (defconst foldout-modeline-string nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 "Modeline string announcing that we are in an outline fold.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (make-variable-buffer-local 'foldout-modeline-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 ;; put our minor mode string immediately following outline-minor-mode's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (or (assq 'foldout-modeline-string minor-mode-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (let ((outl-entry (memq (assq 'outline-minor-mode minor-mode-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 minor-mode-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (foldout-entry '((foldout-modeline-string foldout-modeline-string))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 ;; something's wrong with outline if we can't find it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (if (null outl-entry)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (error "Can't find outline-minor-mode in minor-mode-alist"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 ;; slip our fold announcement into the list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (setcdr outl-entry (nconc foldout-entry (cdr outl-entry)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (defun foldout-zoom-subtree (&optional exposure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 "Open the subtree under the current heading and narrow to it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 Normally the body and the immediate subheadings are exposed, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 optional arg EXPOSURE \(interactively with prefix arg\) changes this:-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 EXPOSURE > 0 exposes n levels of subheadings (c.f. show-children)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 EXPOSURE < 0 exposes only the body
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 EXPOSURE = 0 exposes the entire subtree"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (outline-back-to-heading)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (let* ((exposure-value (prefix-numeric-value exposure))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 (start (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (start-marker (point-marker))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (end (progn (outline-end-of-subtree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (skip-chars-forward "\n\^M")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 ;; I need a marker that will follow the end of the region even when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 ;; text is inserted right at the end. Text gets inserted *after*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 ;; markers, so I need it at end+1. Unfortunately I can't set a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 ;; marker at (point-max)+1, so I use NIL to mean the region ends at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 ;; (point-max).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (end-marker (if (eobp) nil (set-marker (make-marker) (1+ end))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 ;; narrow to this subtree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (narrow-to-region start end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 ;; show the body and/or subheadings for this heading
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (goto-char start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 ((null exposure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (show-entry)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (show-children))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 ((< exposure-value 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (show-entry))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 ((consp exposure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (show-children))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 ((> exposure-value 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (show-children exposure-value))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (show-subtree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 ;; save the location of the fold we are entering
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (setq foldout-fold-list (cons (cons start-marker end-marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 foldout-fold-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 ;; update the modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (foldout-update-modeline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (defun foldout-exit-fold (&optional num-folds)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 "Return to the ARG'th enclosing fold view. With ARG = 0 exit all folds.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 Normally causes exited folds to be hidden, but with ARG < 0, -ARG folds are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 exited and text is left visible."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (let (start-marker end-marker (hide-fold t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 ;; check there are some folds to leave
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (if (null foldout-fold-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (error "Not in a fold!"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 ;; catch a request to leave all folds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 ((zerop num-folds)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 (setq num-folds (length foldout-fold-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 ;; have we been told not to hide the fold?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 ((< num-folds 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (setq hide-fold nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 num-folds (- num-folds)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 ;; limit the number of folds if we've been told to exit too many
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (setq num-folds (min num-folds (length foldout-fold-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 ;; exit the folds
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (while (not (zerop num-folds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 ;; get the fold at the top of the stack
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (setq start-marker (car (car foldout-fold-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 end-marker (cdr (car foldout-fold-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 foldout-fold-list (cdr foldout-fold-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 num-folds (1- num-folds))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 ;; Make sure there is a newline at the end of this fold,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 ;; otherwise the following heading will get joined to the body
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 ;; text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (if end-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 (goto-char end-marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (forward-char -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 (or (memq (preceding-char) '(?\n ?\^M))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 (insert ?\n))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 ;; If this is the last fold to exit, hide the text unless we've
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 ;; been told not to. Note that at the moment point is at the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 ;; beginning of the following heading if there is one.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 ;; Also, make sure that the newline before the following heading
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 ;; is \n otherwise it will be hidden. If there is a newline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 ;; before this one, make it visible too so we do the same as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 ;; outline.el and leave a blank line before the heading.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (if (zerop num-folds)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 (let ((beginning-of-heading (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (end-of-subtree (if end-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (forward-char -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (if (memq (preceding-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 '(?\n ?\^M))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 (forward-char -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (point-max))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 ;; hide the subtree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (if hide-fold
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (outline-flag-region start-marker end-of-subtree ?\^M))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 ;; make sure the next heading is exposed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 (if end-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (outline-flag-region end-of-subtree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 beginning-of-heading ?\n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 ;; zap the markers so they don't slow down editing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 (set-marker start-marker nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (if end-marker (set-marker end-marker nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 ;; narrow to the enclosing fold if there is one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 (if foldout-fold-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (setq start-marker (car (car foldout-fold-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 end-marker (cdr (car foldout-fold-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 (narrow-to-region start-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (if end-marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (1- (marker-position end-marker))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (point-max)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (recenter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 ;; update the modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (foldout-update-modeline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 (defun foldout-update-modeline ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 "Set the modeline string to indicate our fold depth."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 (let ((depth (length foldout-fold-list)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (setq foldout-modeline-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 ;; if we're not in a fold, keep quiet
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 ((zerop depth)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 ;; in outline-minor-mode we're after "Outl:xx" in the modeline
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (outline-minor-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (format ":%d" depth))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 ;; otherwise just announce the depth (I guess we're in outline-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 ((= depth 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 " Inside 1 fold")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (format " Inside %d folds" depth))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 ))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (defun foldout-mouse-zoom (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 "Zoom in on the heading clicked on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 How much is exposed by the zoom depends on the number of mouse clicks:-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 1 expose body
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 2 expose subheadings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 3 expose body and subheadings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 4 expose entire subtree"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (interactive "@e")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 ;; swallow intervening mouse events so we only get the final click-count.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (setq event (foldout-mouse-swallow-events event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 ;; go to the heading clicked on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (foldout-mouse-goto-heading event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 ;; zoom away
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (foldout-zoom-subtree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 (let ((nclicks (event-click-count event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 ((= nclicks 1) -1) ; body only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 ((= nclicks 2) '(1)) ; subheadings only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 ((= nclicks 3) nil) ; body and subheadings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (t 0))))) ; entire subtree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 (defun foldout-mouse-show (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 "Show what is hidden under the heading clicked on.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 What gets exposed depends on the number of mouse clicks:-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 1 expose body
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 2 expose subheadings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 3 expose body and subheadings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 4 expose entire subtree"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (interactive "@e")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 ;; swallow intervening mouse events so we only get the final click-count.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (setq event (foldout-mouse-swallow-events event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 ;; expose the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 (foldout-mouse-goto-heading event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 (let ((nclicks (event-click-count event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 ((= nclicks 1) (show-entry))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 ((= nclicks 2) (show-children))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 ((= nclicks 3) (show-entry) (show-children))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (t (show-subtree)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (defun foldout-mouse-hide-or-exit (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 "Hide the subtree under the heading clicked on, or exit a fold.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 What happens depends on the number of mouse clicks:-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 1 hide subtree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 2 exit fold and hide text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 3 exit fold without hiding text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 4 exit all folds and hide text"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 (interactive "@e")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 ;; swallow intervening mouse events so we only get the final click-count.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (setq event (foldout-mouse-swallow-events event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 ;; hide or exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (let ((nclicks (event-click-count event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (if (= nclicks 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (foldout-mouse-goto-heading event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (hide-subtree))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (foldout-exit-fold
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 ((= nclicks 2) 1) ; exit and hide
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 ((= nclicks 3) -1) ; exit don't hide
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (t 0)))))) ; exit all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 (defun foldout-mouse-swallow-events (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 "Swallow intervening mouse events so we only get the final click-count.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 Signal an error if the final event isn't the same type as the first one."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 (let ((initial-event-type (event-basic-type event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 (while (null (sit-for 0 double-click-time 'nodisplay))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (setq event (read-event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (or (eq initial-event-type (event-basic-type event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 (error "")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (defun foldout-mouse-goto-heading (event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 "Go to the heading where the mouse event started. Signal an error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 if the event didn't occur on a heading."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (goto-char (posn-point (event-start event)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 (or (outline-on-heading-p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 ;; outline.el sometimes treats beginning-of-buffer as a heading
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 ;; even though outline-on-heading returns nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (save-excursion (beginning-of-line) (bobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 (error "Not a heading line")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 ;;; Keymaps:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 (defvar foldout-inhibit-key-bindings nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 "Set non-NIL before loading foldout to inhibit key bindings.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 (defvar foldout-mouse-modifiers '(meta control)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 "List of modifier keys to apply to foldout's mouse events.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 The default (meta control) makes foldout bind its functions to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 M-C-down-mouse-{1,2,3}.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 Valid modifiers are shift, control, meta, alt, hyper and super.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (if foldout-inhibit-key-bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (define-key outline-mode-map "\C-c\C-z" 'foldout-zoom-subtree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (define-key outline-mode-map "\C-c\C-x" 'foldout-exit-fold)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 (define-key outline-minor-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (concat outline-minor-mode-prefix "\C-z") 'foldout-zoom-subtree)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 (define-key outline-minor-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (concat outline-minor-mode-prefix "\C-x") 'foldout-exit-fold)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 (let* ((modifiers (apply 'concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 (mapcar (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (lambda (modifier)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 (vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 ((eq modifier 'shift) ?S)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 ((eq modifier 'control) ?C)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 ((eq modifier 'meta) ?M)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 ((eq modifier 'alt) ?A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 ((eq modifier 'hyper) ?H)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 ((eq modifier 'super) ?s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (t (error "invalid mouse modifier %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 modifier)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 ?-)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 foldout-mouse-modifiers)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 (mouse-1 (vector (intern (concat modifiers "down-mouse-1"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 (mouse-2 (vector (intern (concat modifiers "down-mouse-2"))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (mouse-3 (vector (intern (concat modifiers "down-mouse-3")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 (define-key outline-mode-map mouse-1 'foldout-mouse-zoom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 (define-key outline-mode-map mouse-2 'foldout-mouse-show)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 (define-key outline-mode-map mouse-3 'foldout-mouse-hide-or-exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 (define-key outline-minor-mode-map mouse-1 'foldout-mouse-zoom)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 (define-key outline-minor-mode-map mouse-2 'foldout-mouse-show)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 (define-key outline-minor-mode-map mouse-3 'foldout-mouse-hide-or-exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 (provide 'foldout)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 ;;; foldout.el ends here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561