Mercurial > emacs
annotate lisp/speedbar.el @ 22677:a05b1e5f4389
(dos-printer): Obsolete variable deleted.
(dos-ps-printer): Likewise.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 03 Jul 1998 19:53:47 +0000 |
parents | a77d473867b8 |
children | ca02f300fc41 |
rev | line source |
---|---|
21650 | 1 ;;; speedbar --- quick access to files and tags |
2 | |
3 ;;; Copyright (C) 1996, 97, 98 Free Software Foundation | |
4 ;; | |
5 ;; Author: Eric M. Ludlam <zappo@gnu.ai.mit.edu> | |
6 ;; Version: 0.6.2 | |
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21658
diff
changeset
|
7 ;; Keywords: file, tags, tools, convenience |
21650 | 8 ;; |
9 ;; This file is part of GNU Emacs. | |
10 ;; | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 ;; | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 ;; | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
25 | |
26 ;;; Commentary: | |
27 ;; | |
28 ;; The speedbar provides a frame in which files, and locations in | |
29 ;; files are displayed. These items can be clicked on with mouse-2 | |
30 ;; in order to make the last active frame display that file location. | |
31 ;; | |
32 ;; Starting Speedbar: | |
33 ;; | |
34 ;; If speedbar came to you as a part of Emacs, simply type | |
35 ;; `M-x speedbar', and it will be autoloaded for you. A "Speedbar" | |
36 ;; submenu will be added under "Tools". | |
37 ;; | |
38 ;; If speedbar is not a part of your distribution, then add | |
39 ;; this to your .emacs file: | |
40 ;; | |
41 ;; (autoload 'speedbar-frame-mode "speedbar" "Popup a speedbar frame" t) | |
42 ;; (autoload 'speedbar-get-focus "speedbar" "Jump to speedbar frame" t) | |
43 ;; | |
44 ;; If you want to choose it from a menu, you can do this: | |
45 ;; | |
46 ;; Emacs: | |
47 ;; (define-key-after (lookup-key global-map [menu-bar tools]) | |
48 ;; [speedbar] '("Speedbar" . speedbar-frame-mode) [calendar]) | |
49 ;; | |
50 ;; XEmacs: | |
51 ;; (add-menu-button '("Tools") | |
52 ;; ["Speedbar" speedbar-frame-mode | |
53 ;; :style toggle | |
54 ;; :selected (and (boundp 'speedbar-frame) | |
55 ;; (frame-live-p speedbar-frame) | |
56 ;; (frame-visible-p speedbar-frame))] | |
57 ;; "--") | |
58 ;; | |
59 ;; If you want to access speedbar using only the keyboard, do this: | |
60 ;; | |
61 ;; (global-set-key [(f4)] 'speedbar-get-focus) | |
62 ;; | |
63 ;; This will let you hit f4 (or whatever key you choose) to jump | |
64 ;; focus to the speedbar frame. Pressing it again will bring you back | |
65 ;; to the attached frame. Pressing RET or e to jump to a file | |
66 ;; or tag will move you back to the attached frame. The command | |
67 ;; `speedbar-get-focus' will also create a speedbar frame if it does | |
68 ;; not exist. | |
69 ;; | |
70 ;; Customizing Speedbar: | |
71 ;; | |
72 ;; Once a speedbar frame is active, it takes advantage of idle time | |
73 ;; to keep its contents updated. The contents is usually a list of | |
74 ;; files in the directory of the currently active buffer. When | |
75 ;; applicable, tags in the active file can be expanded. | |
76 ;; | |
77 ;; To add new supported files types into speedbar, use the function | |
78 ;; `speedbar-add-supported-extension' If speedbar complains that the | |
79 ;; file type is not supported, that means there is no built in | |
80 ;; support from imenu, and the etags part wasn't set up correctly. You | |
81 ;; may add elements to `speedbar-supported-extension-expressions' as long | |
82 ;; as it is done before speedbar is loaded. | |
83 ;; | |
84 ;; To prevent speedbar from following you into certain directories | |
85 ;; use the function `speedbar-add-ignored-path-regexp' too add a new | |
86 ;; regular expression matching a type of path. You may add list | |
87 ;; elements to `speedbar-ignored-path-expressions' as long as it is | |
88 ;; done before speedbar is loaded. | |
89 ;; | |
90 ;; To add new file types to imenu, see the documentation in the | |
91 ;; file imenu.el that comes with emacs. To add new file types which | |
92 ;; etags supports, you need to modify the variable | |
93 ;; `speedbar-fetch-etags-parse-list'. | |
94 ;; | |
95 ;; If the updates are going too slow for you, modify the variable | |
96 ;; `speedbar-update-speed' to a longer idle time before updates. | |
97 ;; | |
98 ;; If you navigate directories, you will probably notice that you | |
99 ;; will navigate to a directory which is eventually replaced after | |
100 ;; you go back to editing a file (unless you pull up a new file.) | |
101 ;; The delay time before this happens is in | |
102 ;; `speedbar-navigating-speed', and defaults to 10 seconds. | |
103 ;; | |
104 ;; Users XEmacs previous to 20 may want to change the default | |
105 ;; timeouts for `speedbar-update-speed' to something longer as XEmacs | |
106 ;; doesn't have idle timers, the speedbar timer keeps going off | |
107 ;; arbitrarily while you're typing. It's quite pesky. | |
108 ;; | |
109 ;; Users of really old emacsen without the needed timers will not | |
110 ;; have speedbar updating automatically. Use "r" to refresh the | |
111 ;; display after changing directories. Remember, do not interrupt the | |
112 ;; stealthy updates or your display may not be completely refreshed. | |
113 ;; | |
114 ;; See optional file `speedbspec.el' for additional configurations | |
115 ;; which allow speedbar to create specialized lists for special modes | |
116 ;; that are not file-related. | |
117 ;; | |
118 ;; AUC-TEX users: The imenu tags for AUC-TEX mode don't work very | |
119 ;; well. Use the imenu keywords from tex-mode.el for better results. | |
120 ;; | |
121 ;; This file requires the library package assoc (association lists) | |
122 ;; and the package custom (for easy configuration of speedbar) | |
123 ;; http://www.dina.kvl.dk/~abraham/custom/ | |
124 ;; | |
125 ;; If you do not have custom installed, you can still get face colors | |
126 ;; by modifying the faces directly in your .emacs file, or setting | |
127 ;; them in your .Xdefaults file. | |
128 ;; Here is an example .Xdefaults for a dark background: | |
129 ;; | |
130 ;; emacs*speedbar-button-face.attributeForeground: Aquamarine | |
131 ;; emacs*speedbar-selected-face.attributeForeground: red | |
132 ;; emacs*speedbar-selected-face.attributeUnderline: true | |
133 ;; emacs*speedbar-directory-face.attributeForeground: magenta | |
134 ;; emacs*speedbar-file-face.attributeForeground: green3 | |
135 ;; emacs*speedbar-highlight-face.attributeBackground: sea green | |
136 ;; emacs*speedbar-tag-face.attributeForeground: yellow | |
137 | |
138 ;;; Speedbar updates can be found at: | |
139 ;; ftp://ftp.ultranet.com/pub/zappo/speedbar*.tar.gz | |
140 ;; | |
141 | |
142 ;;; Change log: | |
143 ;; 0.1 Initial Revision | |
144 ;; 0.2 Fixed problem with x-pointer-shape causing future frames not | |
145 ;; to be created. | |
146 ;; Fixed annoying habit of `speedbar-update-contents' to make | |
147 ;; it possible to accidentally kill the speedbar buffer. | |
148 ;; Clicking directory names now only changes the contents of | |
149 ;; the speedbar, and does not cause a dired mode to appear. | |
150 ;; Clicking the <+> next to the directory does cause dired to | |
151 ;; be run. | |
152 ;; Added XEmacs support, which means timer support moved to a | |
153 ;; platform independant call. | |
154 ;; Added imenu support. Now modes are supported by imenu | |
155 ;; first, and etags only if the imenu call doesn't work. | |
156 ;; Imenu is a little faster than etags, and is more emacs | |
157 ;; friendly. | |
158 ;; Added more user control variables described in the commentary. | |
159 ;; Added smart recentering when nodes are opened and closed. | |
160 ;; 0.3 x-pointer-shape fixed for emacs 19.35, so I put that check in. | |
161 ;; Added invisible codes to the beginning of each line. | |
162 ;; Added list aproach to node expansion for easier addition of new | |
163 ;; types of things to expand by | |
164 ;; Added multi-level path name support | |
165 ;; Added multi-level tag name support. | |
166 ;; Only mouse-2 is now used for node expansion | |
167 ;; Added keys e + - to edit expand, and contract node lines | |
168 ;; Added longer legal file regexp for all those modes which support | |
169 ;; imenu. (pascal, fortran90, ada, pearl) | |
170 ;; Added pascal support to etags from Dave Penkler <dave_penkler@grenoble.hp.com> | |
171 ;; Fixed centering algorithm | |
172 ;; Tried to choose background independent colors. Made more robust. | |
173 ;; Rearranged code into a more logical order | |
174 ;; 0.3.1 Fixed doc & broken keybindings | |
175 ;; Added mode hooks. | |
176 ;; Improved color selection to be background mode smart | |
177 ;; `nil' passed to `speedbar-frame-mode' now toggles the frame as | |
178 ;; advertised in the doc string | |
179 ;; 0.4a Added modified patch from Dan Schmidt <dfan@lglass.com> allowing a | |
180 ;; directory cache to be maintained speeding up revisiting of files. | |
181 ;; Default raise-lower behavior is now off by default. | |
182 ;; Added some menu items for edit expand and contract. | |
183 ;; Pre 19.31 emacsen can run without idle timers. | |
184 ;; Added some patch information from Farzin Guilak <farzin@protocol.com> | |
185 ;; adding xemacs specifics, and some etags upgrades. | |
186 ;; Added ability to set a faces symbol-value to a string | |
187 ;; representing the desired foreground color. (idea from | |
188 ;; Farzin Guilak, but implemented differently) | |
189 ;; Fixed problem with 1 character buttons. | |
190 ;; Added support for new Imenu marker technique. | |
191 ;; Added `speedbar-load-hooks' for things to run only once on | |
192 ;; load such as updating one of the many lists. | |
193 ;; Added `speedbar-supported-extension-expressions' which is a | |
194 ;; list of extensions that speedbar will tag. This variable | |
195 ;; should only be updated with `speedbar-add-supported-extension' | |
196 ;; Moved configure dialog support to a separate file so | |
197 ;; speedbar is not dependant on eieio to run | |
198 ;; Fixed list-contraction problem when the item was at the end | |
199 ;; of a sublist. | |
200 ;; Fixed XEmacs multi-frame timer selecting bug problem. | |
201 ;; Added `speedbar-ignored-modes' which is a list of major modes | |
202 ;; speedbar will not follow when it is displayed in the selected frame | |
203 ;; 0.4 When the file being edited is not in the list, and is a file | |
204 ;; that should be in the list, the speedbar cache is replaced. | |
205 ;; Temp buffers are now shown in the attached frame not the | |
206 ;; speedbar frame | |
207 ;; New variables `speedbar-vc-*' and `speedbar-stealthy-function-list' | |
208 ;; added. `speedbar-update-current-file' is now a member of | |
209 ;; the stealthy list. New function `speedbar-check-vc' will | |
210 ;; examine each file and mark it if it is checked out. To | |
211 ;; add new version control types, override the function | |
212 ;; `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p'. | |
213 ;; The stealth list is interruptible so that long operations | |
214 ;; do not interrupt someones editing flow. Other long | |
215 ;; speedbar updates will be added to the stealthy list in the | |
216 ;; future should interesting ones be needed. | |
217 ;; Added many new functions including: | |
218 ;; `speedbar-item-byte-compile' `speedbar-item-load' | |
219 ;; `speedbar-item-copy' `speedbar-item-rename' `speedbar-item-delete' | |
220 ;; and `speedbar-item-info' | |
221 ;; If the user kills the speedbar buffer in some way, the frame will | |
222 ;; be removed. | |
223 ;; 0.4.1 Bug fixes | |
224 ;; <mark.jeffries@nomura.co.uk> added `speedbar-update-flag', | |
225 ;; XEmacs fixes for menus, and tag sorting, and quit key. | |
226 ;; Modeline now updates itself based on window-width. | |
227 ;; Frame is cached when closed to make pulling it up again faster. | |
228 ;; Speedbars window is now marked as dedicated. | |
229 ;; Added bindings: <grossjoh@charly.informatik.uni-dortmund.de> | |
230 ;; Long directories are now span multiple lines autmoatically | |
231 ;; Added `speedbar-directory-button-trim-method' to specify how to | |
232 ;; sorten the directory button to fit on the screen. | |
233 ;; 0.4.2 Add one level of full-text cache. | |
234 ;; Add `speedbar-get-focus' to switchto/raise the speedbar frame. | |
235 ;; Editing thing-on-line will auto-raise the attached frame. | |
236 ;; Bound `U' to `speedbar-up-directory' command. | |
237 ;; Refresh will now maintain all subdirectories that were open | |
238 ;; when the refresh was requested. (This does not include the | |
239 ;; tags, only the directories) | |
240 ;; 0.4.3 Bug fixes | |
241 ;; 0.4.4 Added `speedbar-ignored-path-expressions' and friends. | |
242 ;; Configuration menu items not displayed if dialog-mode not present | |
243 ;; Speedbar buffer now starts with a space, and is not deleted | |
244 ;; ewhen the speedbar frame is closed. This prevents the invisible | |
245 ;; frame from preventing buffer switches with other buffers. | |
246 ;; Fixed very bad bug in the -add-[extension|path] functions. | |
247 ;; Added `speedbar-find-file-in-frame' which will always pop up a frame | |
248 ;; that is already display a buffer selected in the speedbar buffer. | |
249 ;; Added S-mouse2 as "power click" for always poping up a new frame. | |
250 ;; and always rescanning with imenu (ditching the imenu cache), and | |
251 ;; always rescanning directories. | |
252 ;; 0.4.5 XEmacs bugfixes and enhancements. | |
253 ;; Window Title simplified. | |
254 ;; 0.4.6 Fixed problems w/ dedicated minibuffer frame. | |
255 ;; Fixed errors reported by checkdoc. | |
256 ;; 0.5 Mode-specific contents added. Controlled w/ the variable | |
257 ;; `speedbar-mode-specific-contents-flag'. See speedbspec | |
258 ;; for info on enabling this feature. | |
259 ;; `speedbar-load-hook' name change and pointer check against | |
260 ;; major-mode. Suggested by Sam Steingold <sds@ptc.com> | |
261 ;; Quit auto-selects the attached frame. | |
262 ;; Ranamed `speedbar-do-updates' to `speedbar-update-flag' | |
263 ;; Passes checkdoc. | |
264 ;; 0.5.1 Advice from ptype@dra.hmg.gb: | |
265 ;; Use `post-command-idle-hook' in older emacsen | |
266 ;; `speedbar-sort-tags' now works with imenu. | |
267 ;; Unknown files (marked w/ ?) can now be operated on w/ | |
268 ;; file commands. | |
269 ;; `speedbar-vc-*-hook's for easilly adding new version control systems. | |
270 ;; Checkin/out w/ vc will reset the scanners and update the * marker. | |
271 ;; Fixed ange-ftp require compile time problem. | |
272 ;; Fixed XEmacs menu bar bug. | |
273 ;; Added `speedbar-activity-change-focus-flag' to control if the | |
274 ;; focus changes w/ mouse events. | |
275 ;; Added `speedbar-sort-tags' toggle to the menubar. | |
276 ;; Added `speedbar-smart-directory-expand-flag' to toggle how | |
277 ;; new directories might be inserted into the speedbar hierarchy. | |
278 ;; Added `speedbar-visiting-[tag|file]hook' which is called whenever | |
279 ;; speedbar pulls up a file or tag in the attached frame. Setting | |
280 ;; this to `reposition-window' will do nice things to function tags. | |
281 ;; Fixed text-cache default-directory bug. | |
282 ;; Emacs 20 char= support. | |
283 ;; 0.5.2 Customization | |
284 ;; For older emacsen, you will need to download the new defcustom | |
285 ;; package to get nice faces for speedbar | |
286 ;; mouse1 Double-click is now the same as middle click. | |
287 ;; No mouse pointer shape stuff for XEmacs (is there any?) | |
288 ;; 0.5.3 Regressive support for non-custom enabled emacsen. | |
289 ;; Fixed serious problem w/ 0.5.2 and ignored paths. | |
290 ;; `condition-case' no longer used in timer fcn. | |
291 ;; `speedbar-edit-line' is now smarter w/ special modes. | |
292 ;; 0.5.4 Fixed more problems for Emacs 20 so speedbar loads correctly. | |
293 ;; Updated some documentation strings. | |
294 ;; Added customization menu item, and customized some more variables. | |
295 ;; 0.5.5 Fixed so that there can be no ignored paths | |
296 ;; Added .l & .lsp as lisp, suggested by: sshteingold@cctrading.com | |
297 ;; You can now adjust height in `speedbar-frame-parameters' | |
298 ;; XEmacs fix for use of `local-variable-p' | |
299 ;; 0.5.6 Folded in XEmacs suggestions from Hrvoje Niksic <hniksic@srce.hr> | |
300 ;; Several custom changes (group definitions, trim-method & others) | |
301 ;; Keymap changes, and ways to add menu items. | |
302 ;; Timer use changes for XEmacs 20.4 | |
303 ;; Regular expression enhancements. | |
304 ;; 0.6 Fixed up some frame definition stuff, use more convenience fns. | |
305 ;; Rehashed frame creation code for better compatibility. | |
306 ;; Fixed setting of kill-buffer hook. | |
307 ;; Default speedbar has no menubar, mouse-3 is popup menu, | |
308 ;; XEmacs double-click capability (Hrvoje Niksic <hniksic@srce.hr>) | |
309 ;; General documentation fixup. | |
310 ;; 0.6.1 Fixed button-3 menu for Emacs 20. | |
311 ;; 0.6.2 Added autoload tag to `speedbar-get-focus' | |
312 | |
313 ;;; TODO: | |
314 ;; - More functions to create buttons and options | |
315 ;; - filtering algorithms to reduce the number of tags/files displayed. | |
316 ;; - Timeout directories we haven't visited in a while. | |
317 ;; - Remeber tags when refreshing the display. (Refresh tags too?) | |
318 ;; - More 'special mode support. | |
319 ;; - C- Mouse 3 menu too much indirection | |
320 | |
321 (require 'assoc) | |
322 (require 'easymenu) | |
323 | |
324 ;; From custom web page for compatibility between versions of custom: | |
325 (eval-and-compile | |
326 (condition-case () | |
327 (require 'custom) | |
328 (error nil)) | |
329 (if (and (featurep 'custom) (fboundp 'custom-declare-variable)) | |
330 nil ;; We've got what we needed | |
331 ;; We have the old custom-library, hack around it! | |
332 (defmacro defgroup (&rest args) | |
333 nil) | |
334 (defmacro defface (var values doc &rest args) | |
335 (` (progn | |
336 (defvar (, var) (quote (, var))) | |
337 ;; To make colors for your faces you need to set your .Xdefaults | |
338 ;; or set them up ahead of time in your .emacs file. | |
339 (make-face (, var)) | |
340 ))) | |
341 (defmacro defcustom (var value doc &rest args) | |
342 (` (defvar (, var) (, value) (, doc)))))) | |
343 | |
344 ;; customization stuff | |
345 (defgroup speedbar nil | |
346 "File and tag browser frame." | |
347 :group 'tags | |
21658
d8a81542dbf9
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21650
diff
changeset
|
348 :group 'tools |
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21658
diff
changeset
|
349 :group 'convenience |
21658
d8a81542dbf9
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21650
diff
changeset
|
350 :version "20.3") |
21650 | 351 |
352 (defgroup speedbar-faces nil | |
353 "Faces used in speedbar." | |
354 :prefix "speedbar-" | |
355 :group 'speedbar | |
356 :group 'faces) | |
357 | |
358 (defgroup speedbar-vc nil | |
359 "Version control display in speedbar." | |
360 :prefix "speedbar-" | |
361 :group 'speedbar) | |
362 | |
363 ;;; Code: | |
364 (defvar speedbar-xemacsp (string-match "XEmacs" emacs-version) | |
365 "Non-nil if we are running in the XEmacs environment.") | |
366 (defvar speedbar-xemacs20p (and speedbar-xemacsp (= emacs-major-version 20))) | |
367 | |
368 (defvar speedbar-initial-expansion-list | |
369 '(speedbar-directory-buttons speedbar-default-directory-list) | |
370 "List of functions to call to fill in the speedbar buffer. | |
371 Whenever a top level update is issued all functions in this list are | |
372 run. These functions will always get the default directory to use | |
373 passed in as the first parameter, and a 0 as the second parameter. | |
374 The 0 indicates the uppermost indentation level. They must assume | |
375 that the cursor is at the position where they start inserting | |
376 buttons.") | |
377 | |
378 (defvar speedbar-stealthy-function-list | |
379 '(speedbar-update-current-file speedbar-check-vc) | |
380 "List of functions to periodically call stealthily. | |
381 Each function must return nil if interrupted, or t if completed. | |
382 Stealthy functions which have a single operation should always return | |
383 t. Functions which take a long time should maintain a state (where | |
384 they are in their speedbar related calculations) and permit | |
385 interruption. See `speedbar-check-vc' as a good example.") | |
386 | |
387 (defcustom speedbar-mode-specific-contents-flag t | |
388 "*Non-nil means speedbar will show special mode contents. | |
389 This permits some modes to create customized contents for the speedbar | |
390 frame." | |
391 :group 'speedbar | |
392 :type 'boolean) | |
393 | |
394 (defvar speedbar-special-mode-expansion-list nil | |
395 "Mode specific list of functions to call to fill in speedbar. | |
396 Some modes, such as Info or RMAIL, do not relate quite as easily into | |
397 a simple list of files. When this variable is non-nil and buffer-local, | |
398 then these functions are used, creating specialized contents. These | |
399 functions are called each time the speedbar timer is called. This | |
400 allows a mode to update its contents regularly. | |
401 | |
402 Each function is called with the default and frame belonging to | |
403 speedbar, and with one parameter; the buffer requesting | |
404 the speedbar display.") | |
405 | |
406 (defcustom speedbar-visiting-file-hook nil | |
407 "Hooks run when speedbar visits a file in the selected frame." | |
408 :group 'speedbar | |
409 :type 'hook) | |
410 | |
411 (defcustom speedbar-visiting-tag-hook nil | |
412 "Hooks run when speedbar visits a tag in the selected frame." | |
413 :group 'speedbar | |
414 :type 'hook) | |
415 | |
416 (defcustom speedbar-load-hook nil | |
417 "Hooks run when speedbar is loaded." | |
418 :group 'speedbar | |
419 :type 'hook) | |
420 | |
421 (defcustom speedbar-show-unknown-files nil | |
422 "*Non-nil show files we can't expand with a ? in the expand button. | |
423 nil means don't show the file in the list." | |
424 :group 'speedbar | |
425 :type 'boolean) | |
426 | |
427 (defcustom speedbar-update-speed | |
428 (if speedbar-xemacsp | |
429 (if speedbar-xemacs20p | |
430 2 ; 1 is too obrusive in XEmacs | |
431 5) ; when no idleness, need long delay | |
432 1) | |
433 "*Idle time in seconds needed before speedbar will update itself. | |
434 Updates occur to allow speedbar to display directory information | |
435 relevant to the buffer you are currently editing." | |
436 :group 'speedbar | |
437 :type 'integer) | |
438 | |
439 (defcustom speedbar-navigating-speed 10 | |
440 "*Idle time to wait after navigation commands in speedbar are executed. | |
441 Navigation commands included expanding/contracting nodes, and moving | |
442 between different directories." | |
443 :group 'speedbar | |
444 :type 'integer) | |
445 | |
446 (defcustom speedbar-frame-parameters '((minibuffer . nil) | |
447 (width . 20) | |
448 (scroll-bar-width . 10) | |
449 (border-width . 0) | |
450 (menu-bar-lines . 0) | |
451 (unsplittable . t)) | |
452 "*Parameters to use when creating the speedbar frame in Emacs. | |
453 Parameters not listed here which will be added automatically are | |
454 `height' which will be initialized to the height of the frame speedbar | |
455 is attached to." | |
456 :group 'speedbar | |
457 :type '(repeat (sexp :tag "Parameter:"))) | |
458 | |
459 ;; These values by Hrvoje Niksic <hniksic@srce.hr> | |
460 (defcustom speedbar-frame-plist | |
461 '(minibuffer nil width 20 border-width 0 | |
462 internal-border-width 0 unsplittable t | |
463 default-toolbar-visible-p nil has-modeline-p nil | |
464 menubar-visible-p nil | |
465 ;; I don't see the particular value of these three, but... | |
466 text-pointer-glyph [cursor-font :data "top_left_arrow"] | |
467 nontext-pointer-glyph [cursor-font :data "top_left_arrow"] | |
468 selection-pointer-glyph [cursor-font :data "hand2"]) | |
469 "*Parameters to use when creating the speedbar frame in XEmacs. | |
470 Parameters not listed here which will be added automatically are | |
471 `height' which will be initialized to the height of the frame speedbar | |
472 is attached to." | |
473 :group 'speedbar | |
474 :type '(repeat (group :inline t | |
475 (symbol :tag "Property") | |
476 (sexp :tag "Value")))) | |
477 | |
478 (defcustom speedbar-use-imenu-flag (stringp (locate-library "imenu")) | |
479 "*Non-nil means use imenu for file parsing. nil to use etags. | |
480 XEmacs prior to 20.4 doesn't support imenu, therefore the default is to | |
481 use etags instead. Etags support is not as robust as imenu support." | |
482 :tag "User Imenu" | |
483 :group 'speedbar | |
484 :type 'boolean) | |
485 | |
486 (defcustom speedbar-sort-tags nil | |
487 "*If Non-nil, sort tags in the speedbar display." | |
488 :group 'speedbar | |
489 :type 'boolean) | |
490 | |
491 (defcustom speedbar-activity-change-focus-flag nil | |
492 "*Non-nil means the selected frame will change based on activity. | |
493 Thus, if a file is selected for edit, the buffer will appear in the | |
494 selected frame and the focus will change to that frame." | |
495 :group 'speedbar | |
496 :type 'boolean) | |
497 | |
498 (defcustom speedbar-directory-button-trim-method 'span | |
499 "*Indicates how the directory button will be displayed. | |
500 Possible values are: | |
501 'span - span large directories over multiple lines. | |
502 'trim - trim large directories to only show the last few. | |
503 nil - no trimming." | |
504 :group 'speedbar | |
505 :type '(radio (const :tag "Span large directories over mutiple lines." | |
506 span) | |
507 (const :tag "Trim large directories to only show the last few." | |
508 trim) | |
509 (const :tag "No trimming." nil))) | |
510 | |
511 (defcustom speedbar-smart-directory-expand-flag t | |
512 "*Non-nil means speedbar should use smart expansion. | |
513 Smart expansion only affects when speedbar wants to display a | |
514 directory for a file in the attached frame. When smart expansion is | |
515 enabled, new directories which are children of a displayed directory | |
516 are expanded in the current framework. If nil, then the current | |
517 hierarchy would be replaced with the new directory." | |
518 :group 'speedbar | |
519 :type 'boolean) | |
520 | |
521 (defcustom speedbar-before-popup-hook nil | |
522 "*Hooks called before popping up the speedbar frame." | |
523 :group 'speedbar | |
524 :type 'hook) | |
525 | |
526 (defcustom speedbar-before-delete-hook nil | |
527 "*Hooks called before deleting the speedbar frame." | |
528 :group 'speedbar | |
529 :type 'hook) | |
530 | |
531 (defcustom speedbar-mode-hook nil | |
532 "*Hooks called after creating a speedbar buffer." | |
533 :group 'speedbar | |
534 :type 'hook) | |
535 | |
536 (defcustom speedbar-timer-hook nil | |
537 "*Hooks called after running the speedbar timer function." | |
538 :group 'speedbar | |
539 :type 'hook) | |
540 | |
541 (defcustom speedbar-verbosity-level 1 | |
542 "*Verbosity level of the speedbar. 0 means say nothing. | |
543 1 means medium level verbosity. 2 and higher are higher levels of | |
544 verbosity." | |
545 :group 'speedbar | |
546 :type 'integer) | |
547 | |
548 (defcustom speedbar-vc-do-check t | |
549 "*Non-nil check all files in speedbar to see if they have been checked out. | |
550 Any file checked out is marked with `speedbar-vc-indicator'" | |
551 :group 'speedbar-vc | |
552 :type 'boolean) | |
553 | |
554 (defvar speedbar-vc-indicator " *" | |
555 "Text used to mark files which are currently checked out. | |
556 Currently only RCS is supported. Other version control systems can be | |
557 added by examining the function `speedbar-this-file-in-vc' and | |
558 `speedbar-vc-check-dir-p'") | |
559 | |
560 (defcustom speedbar-scanner-reset-hook nil | |
561 "*Hook called whenever generic scanners are reset. | |
562 Set this to implement your own scanning / rescan safe functions with | |
563 state data." | |
564 :group 'speedbar | |
565 :type 'hook) | |
566 | |
567 (defcustom speedbar-vc-path-enable-hook nil | |
568 "*Return non-nil if the current path should be checked for Version Control. | |
569 Functions in this hook must accept one parameter which is the path | |
570 being checked." | |
571 :group 'speedbar-vc | |
572 :type 'hook) | |
573 | |
574 (defcustom speedbar-vc-in-control-hook nil | |
575 "*Return non-nil if the specified file is under Version Control. | |
576 Functions in this hook must accept two parameters. The PATH of the | |
577 current file, and the FILENAME of the file being checked." | |
578 :group 'speedbar-vc | |
579 :type 'hook) | |
580 | |
581 (defvar speedbar-vc-to-do-point nil | |
582 "Local variable maintaining the current version control check position.") | |
583 | |
584 (defvar speedbar-ignored-modes nil | |
585 "*List of major modes which speedbar will not switch directories for.") | |
586 | |
587 (defun speedbar-extension-list-to-regex (extlist) | |
588 "Takes EXTLIST, a list of extensions and transforms it into regexp. | |
589 All the preceding . are stripped for an optimized expression starting | |
590 with . followed by extensions, followed by full-filenames." | |
591 (let ((regex1 nil) (regex2 nil)) | |
592 (while extlist | |
593 (if (= (string-to-char (car extlist)) ?.) | |
594 (setq regex1 (concat regex1 (if regex1 "\\|" "") | |
595 (substring (car extlist) 1))) | |
596 (setq regex2 (concat regex2 (if regex2 "\\|" "") (car extlist)))) | |
597 (setq extlist (cdr extlist))) | |
598 ;; concat all the sub-exressions together, making sure all types | |
599 ;; of parts exist during concatination. | |
600 (concat "\\(" | |
601 (if regex1 (concat "\\(\\.\\(" regex1 "\\)\\)") "") | |
602 (if (and regex1 regex2) "\\|" "") | |
603 (if regex2 (concat "\\(" regex2 "\\)") "") | |
604 "\\)$"))) | |
605 | |
606 (defvar speedbar-ignored-path-regexp nil | |
607 "Regular expression matching paths speedbar will not switch to. | |
608 Created from `speedbar-ignored-path-expressions' with the function | |
609 `speedbar-extension-list-to-regex' (A misnamed function in this case.) | |
610 Use the function `speedbar-add-ignored-path-regexp', or customize the | |
611 variable `speedbar-ignored-path-expressions' to modify this variable.") | |
612 | |
613 (defcustom speedbar-ignored-path-expressions | |
614 '("/logs?/\\'") | |
615 "*List of regular expressions matching directories speedbar will ignore. | |
616 They should included paths to directories which are notoriously very | |
617 large and take a long time to load in. Use the function | |
618 `speedbar-add-ignored-path-regexp' to add new items to this list after | |
619 speedbar is loaded. You may place anything you like in this list | |
620 before speedbar has been loaded." | |
621 :group 'speedbar | |
622 :type '(repeat (regexp :tag "Path Regexp")) | |
623 :set (lambda (sym val) | |
624 (setq speedbar-ignored-path-expressions val | |
625 speedbar-ignored-path-regexp | |
626 (speedbar-extension-list-to-regex val)))) | |
627 | |
628 (defvar speedbar-file-unshown-regexp | |
629 (let ((nstr "") (noext completion-ignored-extensions)) | |
630 (while noext | |
631 (setq nstr (concat nstr (regexp-quote (car noext)) "\\'" | |
632 (if (cdr noext) "\\|" "")) | |
633 noext (cdr noext))) | |
634 (concat nstr "\\|#[^#]+#$\\|\\.\\.?\\'")) | |
635 "*Regexp matching files we don't want displayed in a speedbar buffer. | |
636 It is generated from the variable `completion-ignored-extensions'") | |
637 | |
638 ;; this is dangerous to customize, because the defaults will probably | |
639 ;; change in the future. | |
640 (defcustom speedbar-supported-extension-expressions | |
641 (append '(".[CcHh]\\(\\+\\+\\|pp\\|c\\|h\\)?" ".tex\\(i\\(nfo\\)?\\)?" | |
642 ".el" ".emacs" ".l" ".lsp" ".p" ".java") | |
643 (if speedbar-use-imenu-flag | |
644 '(".f90" ".ada" ".pl" ".tcl" ".m" | |
645 "Makefile\\(\\.in\\)?"))) | |
646 "*List of regular expressions which will match files supported by tagging. | |
647 Do not prefix the `.' char with a double \\ to quote it, as the period | |
648 will be stripped by a simplified optimizer when compiled into a | |
649 singular expression. This variable will be turned into | |
650 `speedbar-file-regexp' for use with speedbar. You should use the | |
651 function `speedbar-add-supported-extension' to add a new extension at | |
652 runtime, or use the configuration dialog to set it in your .emacs | |
653 file." | |
654 :group 'speedbar | |
655 :type '(repeat (regexp :tag "Extension Regexp")) | |
656 :set (lambda (sym val) | |
657 (setq speedbar-supported-extension-expressions val | |
658 speedbar-file-regexp (speedbar-extension-list-to-regex val))) | |
659 ) | |
660 | |
661 (defvar speedbar-file-regexp | |
662 (speedbar-extension-list-to-regex speedbar-supported-extension-expressions) | |
663 "Regular expression matching files we know how to expand. | |
664 Created from `speedbar-supported-extension-expression' with the | |
665 function `speedbar-extension-list-to-regex'") | |
666 | |
667 (defun speedbar-add-supported-extension (extension) | |
668 "Add EXTENSION as a new supported extension for speedbar tagging. | |
669 This should start with a `.' if it is not a complete file name, and | |
670 the dot should NOT be quoted in with \\. Other regular expression | |
671 matchers are allowed however. EXTENSION may be a single string or a | |
672 list of strings." | |
673 (if (not (listp extension)) (setq extension (list extension))) | |
674 (while extension | |
675 (if (member (car extension) speedbar-supported-extension-expressions) | |
676 nil | |
677 (setq speedbar-supported-extension-expressions | |
678 (cons (car extension) speedbar-supported-extension-expressions))) | |
679 (setq extension (cdr extension))) | |
680 (setq speedbar-file-regexp (speedbar-extension-list-to-regex | |
681 speedbar-supported-extension-expressions))) | |
682 | |
683 (defun speedbar-add-ignored-path-regexp (path-expression) | |
684 "Add PATH-EXPRESSION as a new ignored path for speedbar tracking. | |
685 This function will modify `speedbar-ignored-path-regexp' and add | |
686 PATH-EXPRESSION to `speedbar-ignored-path-expressions'." | |
687 (if (not (listp path-expression)) | |
688 (setq path-expression (list path-expression))) | |
689 (while path-expression | |
690 (if (member (car path-expression) speedbar-ignored-path-expressions) | |
691 nil | |
692 (setq speedbar-ignored-path-expressions | |
693 (cons (car path-expression) speedbar-ignored-path-expressions))) | |
694 (setq path-expression (cdr path-expression))) | |
695 (setq speedbar-ignored-path-regexp (speedbar-extension-list-to-regex | |
696 speedbar-ignored-path-expressions))) | |
697 | |
698 ;; If we don't have custom, then we set it here by hand. | |
699 (if (not (fboundp 'custom-declare-variable)) | |
700 (setq speedbar-file-regexp (speedbar-extension-list-to-regex | |
701 speedbar-supported-extension-expressions) | |
702 speedbar-ignored-path-regexp (speedbar-extension-list-to-regex | |
703 speedbar-ignored-path-expressions))) | |
704 | |
705 (defvar speedbar-update-flag (or (fboundp 'run-with-idle-timer) | |
706 (fboundp 'start-itimer) | |
707 (boundp 'post-command-idle-hook)) | |
708 "*Non-nil means to automatically update the display. | |
709 When this is nil then speedbar will not follow the attached frame's path. | |
710 When speedbar is active, use: | |
711 | |
712 \\<speedbar-key-map> `\\[speedbar-toggle-updates]' | |
713 | |
714 to toggle this value.") | |
715 | |
716 (defvar speedbar-syntax-table nil | |
717 "Syntax-table used on the speedbar.") | |
718 | |
719 (if speedbar-syntax-table | |
720 nil | |
721 (setq speedbar-syntax-table (make-syntax-table)) | |
722 ;; turn off paren matching around here. | |
723 (modify-syntax-entry ?\' " " speedbar-syntax-table) | |
724 (modify-syntax-entry ?\" " " speedbar-syntax-table) | |
725 (modify-syntax-entry ?( " " speedbar-syntax-table) | |
726 (modify-syntax-entry ?) " " speedbar-syntax-table) | |
727 (modify-syntax-entry ?[ " " speedbar-syntax-table) | |
728 (modify-syntax-entry ?] " " speedbar-syntax-table)) | |
729 | |
730 | |
731 (defvar speedbar-key-map nil | |
732 "Keymap used in speedbar buffer.") | |
733 | |
734 (if speedbar-key-map | |
735 nil | |
736 (setq speedbar-key-map (make-keymap)) | |
737 (suppress-keymap speedbar-key-map t) | |
738 | |
739 ;; control | |
740 (define-key speedbar-key-map "e" 'speedbar-edit-line) | |
741 (define-key speedbar-key-map "\C-m" 'speedbar-edit-line) | |
742 (define-key speedbar-key-map "+" 'speedbar-expand-line) | |
743 (define-key speedbar-key-map "-" 'speedbar-contract-line) | |
744 (define-key speedbar-key-map "g" 'speedbar-refresh) | |
745 (define-key speedbar-key-map "t" 'speedbar-toggle-updates) | |
746 (define-key speedbar-key-map "q" 'speedbar-close-frame) | |
747 (define-key speedbar-key-map "U" 'speedbar-up-directory) | |
748 | |
749 ;; navigation | |
750 (define-key speedbar-key-map "n" 'speedbar-next) | |
751 (define-key speedbar-key-map "p" 'speedbar-prev) | |
752 (define-key speedbar-key-map " " 'speedbar-scroll-up) | |
753 (define-key speedbar-key-map [delete] 'speedbar-scroll-down) | |
754 | |
755 ;; After much use, I suddenly desired in my heart to perform dired | |
756 ;; style operations since the directory was RIGHT THERE! | |
757 (define-key speedbar-key-map "I" 'speedbar-item-info) | |
758 (define-key speedbar-key-map "B" 'speedbar-item-byte-compile) | |
759 (define-key speedbar-key-map "L" 'speedbar-item-load) | |
760 (define-key speedbar-key-map "C" 'speedbar-item-copy) | |
761 (define-key speedbar-key-map "D" 'speedbar-item-delete) | |
762 (define-key speedbar-key-map "R" 'speedbar-item-rename) | |
763 | |
764 (if speedbar-xemacsp | |
765 (progn | |
766 ;; mouse bindings so we can manipulate the items on each line | |
767 (define-key speedbar-key-map 'button2 'speedbar-click) | |
768 (define-key speedbar-key-map '(shift button2) 'speedbar-power-click) | |
769 (define-key speedbar-key-map 'button3 'speedbar-xemacs-popup-kludge) | |
770 (define-key speedbar-key-map '(meta button3) 'speedbar-mouse-item-info)) | |
771 ;; mouse bindings so we can manipulate the items on each line | |
772 (define-key speedbar-key-map [down-mouse-1] 'speedbar-double-click) | |
773 (define-key speedbar-key-map [mouse-2] 'speedbar-click) | |
774 ;; This is the power click for new frames, or refreshing a cache | |
775 (define-key speedbar-key-map [S-mouse-2] 'speedbar-power-click) | |
776 ;; This adds a small unecessary visual effect | |
777 ;;(define-key speedbar-key-map [down-mouse-2] 'speedbar-quick-mouse) | |
778 (define-key speedbar-key-map [M-mouse-2] 'speedbar-mouse-item-info) | |
779 | |
780 (define-key speedbar-key-map [down-mouse-3] 'speedbar-emacs-popup-kludge) | |
781 | |
782 ;;***** Disable disabling: Remove menubar completely. | |
783 ;; disable all menus - we don't have a lot of space to play with | |
784 ;; in such a skinny frame. This will cleverly find and nuke some | |
785 ;; user-defined menus as well if they are there. Too bad it | |
786 ;; rely's on the structure of a keymap to work. | |
787 ; (let ((k (lookup-key global-map [menu-bar]))) | |
788 ; (while k | |
789 ; (if (and (listp (car k)) (listp (cdr (car k)))) | |
790 ; (define-key speedbar-key-map (vector 'menu-bar (car (car k))) | |
791 ; 'undefined)) | |
792 ; (setq k (cdr k)))) | |
793 | |
794 ;; This lets the user scroll as if we had a scrollbar... well maybe not | |
795 (define-key speedbar-key-map [mode-line mouse-2] 'speedbar-mouse-hscroll) | |
796 )) | |
797 | |
798 (defvar speedbar-easymenu-definition-base | |
799 '("Speedbar" | |
800 ["Update" speedbar-refresh t] | |
801 ["Auto Update" speedbar-toggle-updates | |
802 :style toggle :selected speedbar-update-flag] | |
803 ) | |
804 "Base part of the speedbar menu.") | |
805 | |
806 (defvar speedbar-easymenu-definition-special | |
807 '(["Edit Item On Line" speedbar-edit-line t] | |
808 ["Show All Files" speedbar-toggle-show-all-files | |
809 :style toggle :selected speedbar-show-unknown-files] | |
810 ["Expand Item" speedbar-expand-line | |
811 (save-excursion (beginning-of-line) | |
812 (looking-at "[0-9]+: *.\\+. "))] | |
813 ["Contract Item" speedbar-contract-line | |
814 (save-excursion (beginning-of-line) | |
815 (looking-at "[0-9]+: *.-. "))] | |
816 ["Sort Tags" speedbar-toggle-sorting | |
817 :style toggle :selected speedbar-sort-tags] | |
818 "----" | |
819 ["Item Information" speedbar-item-info t] | |
820 ["Load Lisp File" speedbar-item-load | |
821 (save-excursion | |
822 (beginning-of-line) | |
823 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\*\\)?$"))] | |
824 ["Byte Compile File" speedbar-item-byte-compile | |
825 (save-excursion | |
826 (beginning-of-line) | |
827 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\*\\)?$"))] | |
828 ["Copy Item" speedbar-item-copy | |
829 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *\\["))] | |
830 ["Rename Item" speedbar-item-rename | |
831 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))] | |
832 ["Delete Item" speedbar-item-delete | |
833 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))]) | |
834 "Additional menu items while in file-mode.") | |
835 | |
836 (defvar speedbar-easymenu-definition-trailer | |
837 (if (and (featurep 'custom) (fboundp 'custom-declare-variable)) | |
838 '("----" | |
839 ["Customize..." speedbar-customize t] | |
840 ["Close" speedbar-close-frame t]) | |
841 '("----" | |
842 ["Close" speedbar-close-frame t])) | |
843 "Menu items appearing at the end of the speedbar menu.") | |
844 | |
845 (defvar speedbar-desired-buffer nil | |
846 "Non-nil when speedbar is showing buttons specific a special mode. | |
847 In this case it is the originating buffer.") | |
848 (defvar speedbar-buffer nil | |
849 "The buffer displaying the speedbar.") | |
850 (defvar speedbar-frame nil | |
851 "The frame displaying speedbar.") | |
852 (defvar speedbar-cached-frame nil | |
853 "The frame that was last created, then removed from the display.") | |
854 (defvar speedbar-full-text-cache nil | |
855 "The last open directory is saved in its entirety for ultra-fast switching.") | |
856 (defvar speedbar-timer nil | |
857 "The speedbar timer used for updating the buffer.") | |
858 (defvar speedbar-attached-frame nil | |
859 "The frame which started speedbar mode. | |
860 This is the frame from which all data displayed in the speedbar is | |
861 gathered, and in which files and such are displayed.") | |
862 | |
863 (defvar speedbar-last-selected-file nil | |
864 "The last file which was selected in speedbar buffer.") | |
865 | |
866 (defvar speedbar-shown-directories nil | |
867 "Maintain list of directories simultaneously open in the current speedbar.") | |
868 | |
869 (defvar speedbar-directory-contents-alist nil | |
870 "An association list of directories and their contents. | |
871 Each sublist was returned by `speedbar-file-lists'. This list is | |
872 maintained to speed up the refresh rate when switching between | |
873 directories.") | |
874 | |
875 (defvar speedbar-power-click nil | |
876 "Never set this by hand. Value is t when S-mouse activity occurs.") | |
877 | |
878 | |
879 ;;; Mode definitions/ user commands | |
880 ;; | |
881 | |
882 ;;;###autoload | |
883 (defalias 'speedbar 'speedbar-frame-mode) | |
884 ;;;###autoload | |
885 (defun speedbar-frame-mode (&optional arg) | |
886 "Enable or disable speedbar. Positive ARG means turn on, negative turn off. | |
887 nil means toggle. Once the speedbar frame is activated, a buffer in | |
888 `speedbar-mode' will be displayed. Currently, only one speedbar is | |
889 supported at a time. | |
890 `speedbar-before-popup-hook' is called before popping up the speedbar frame. | |
891 `speedbar-before-delete-hook' is called before the frame is deleted." | |
892 (interactive "P") | |
893 (if (if (and speedbar-xemacsp (fboundp 'console-on-window-system-p)) | |
894 (not (console-on-window-system-p)) | |
895 (not (symbol-value 'window-system))) | |
896 (error "Speedbar is not useful outside of a windowing environment")) | |
897 ;;; RMS says this should not modify the menu. | |
898 ; (if speedbar-xemacsp | |
899 ; (add-menu-button '("Tools") | |
900 ; ["Speedbar" speedbar-frame-mode | |
901 ; :style toggle | |
902 ; :selected (and (boundp 'speedbar-frame) | |
903 ; (frame-live-p speedbar-frame) | |
904 ; (frame-visible-p speedbar-frame))] | |
905 ; "--") | |
906 ; (define-key-after (lookup-key global-map [menu-bar tools]) | |
907 ; [speedbar] '("Speedbar" . speedbar-frame-mode) [calendar])) | |
908 ;; toggle frame on and off. | |
909 (if (not arg) (if (and (frame-live-p speedbar-frame) | |
910 (frame-visible-p speedbar-frame)) | |
911 (setq arg -1) (setq arg 1))) | |
912 ;; turn the frame off on neg number | |
913 (if (and (numberp arg) (< arg 0)) | |
914 (progn | |
915 (run-hooks 'speedbar-before-delete-hook) | |
916 (if (and speedbar-frame (frame-live-p speedbar-frame)) | |
917 (progn | |
918 (setq speedbar-cached-frame speedbar-frame) | |
919 (make-frame-invisible speedbar-frame))) | |
920 (setq speedbar-frame nil) | |
921 (speedbar-set-timer nil) | |
922 ;; Used to delete the buffer. This has the annoying affect of | |
923 ;; preventing whatever took its place from ever appearing | |
924 ;; as the default after a C-x b was typed | |
925 ;;(if (bufferp speedbar-buffer) | |
926 ;; (kill-buffer speedbar-buffer)) | |
927 ) | |
928 ;; Set this as our currently attached frame | |
929 (setq speedbar-attached-frame (selected-frame)) | |
930 (run-hooks 'speedbar-before-popup-hook) | |
931 ;; Get the frame to work in | |
932 (if (frame-live-p speedbar-cached-frame) | |
933 (progn | |
934 (setq speedbar-frame speedbar-cached-frame) | |
935 (make-frame-visible speedbar-frame) | |
936 ;; Get the buffer to play with | |
937 (speedbar-mode) | |
938 (select-frame speedbar-frame) | |
939 (if (not (eq (current-buffer) speedbar-buffer)) | |
940 (switch-to-buffer speedbar-buffer)) | |
941 (set-window-dedicated-p (selected-window) t) | |
942 (raise-frame speedbar-frame) | |
943 (speedbar-set-timer speedbar-update-speed) | |
944 ) | |
945 (if (frame-live-p speedbar-frame) | |
946 (raise-frame speedbar-frame) | |
947 (setq speedbar-frame | |
948 (if speedbar-xemacsp | |
949 (make-frame (nconc (list 'height | |
950 (speedbar-needed-height)) | |
951 speedbar-frame-plist)) | |
952 (let* ((mh (cdr (assoc 'menu-bar-lines (frame-parameters)))) | |
953 (params (append speedbar-frame-parameters | |
954 (list (cons | |
955 'height | |
956 (if speedbar-xemacsp | |
957 (speedbar-needed-height) | |
958 (+ mh (frame-height)))))))) | |
959 (if (< emacs-major-version 20);;a bug is fixed in v20 & later | |
960 (make-frame params) | |
961 (let ((x-pointer-shape x-pointer-top-left-arrow) | |
962 (x-sensitive-text-pointer-shape x-pointer-hand2)) | |
963 (make-frame params)))))) | |
964 ;; reset the selection variable | |
965 (setq speedbar-last-selected-file nil) | |
966 ;; Put the buffer into the frame | |
967 (save-window-excursion | |
968 ;; Get the buffer to play with | |
969 (speedbar-mode) | |
970 (select-frame speedbar-frame) | |
971 (switch-to-buffer speedbar-buffer) | |
972 (set-window-dedicated-p (selected-window) t)) | |
973 (speedbar-set-timer speedbar-update-speed))))) | |
974 | |
975 ;;;###autoload | |
976 (defun speedbar-get-focus () | |
977 "Change frame focus to or from the speedbar frame. | |
978 If the selected frame is not speedbar, then speedbar frame is | |
979 selected. If the speedbar frame is active, then select the attached frame." | |
980 (interactive) | |
981 (if (eq (selected-frame) speedbar-frame) | |
982 (if (frame-live-p speedbar-attached-frame) | |
983 (select-frame speedbar-attached-frame)) | |
984 ;; make sure we have a frame | |
985 (if (not (frame-live-p speedbar-frame)) (speedbar-frame-mode 1)) | |
986 ;; go there | |
987 (select-frame speedbar-frame)) | |
988 (other-frame 0)) | |
989 | |
990 (defun speedbar-close-frame () | |
991 "Turn off a currently active speedbar." | |
992 (interactive) | |
993 (speedbar-frame-mode -1) | |
994 (select-frame speedbar-attached-frame) | |
995 (other-frame 0)) | |
996 | |
997 (defmacro speedbar-frame-width () | |
998 "Return the width of the speedbar frame in characters. | |
999 nil if it doesn't exist." | |
1000 '(frame-width speedbar-frame)) | |
1001 | |
1002 ;; XEmacs function only. | |
1003 (defun speedbar-needed-height (&optional frame) | |
1004 "The needed height for the tool bar FRAME (in characters)." | |
1005 (or frame (setq frame (selected-frame))) | |
1006 ;; The 1 is the missing modeline/minibuffer | |
1007 (+ 1 (/ (frame-pixel-height frame) | |
1008 (face-height 'default frame)))) | |
1009 | |
1010 (defun speedbar-mode () | |
1011 "Major mode for managing a display of directories and tags. | |
1012 \\<speedbar-key-map> | |
1013 The first line represents the default path of the speedbar frame. | |
1014 Each directory segment is a button which jumps speedbar's default | |
1015 directory to that path. Buttons are activated by clicking `\\[speedbar-click]'. | |
1016 In some situations using `\\[speedbar-power-click]' is a `power click' which will | |
1017 rescan cached items, or pop up new frames. | |
1018 | |
1019 Each line starting with <+> represents a directory. Click on the <+> | |
1020 to insert the directory listing into the current tree. Click on the | |
1021 <-> to retract that list. Click on the directory name to go to that | |
1022 directory as the default. | |
1023 | |
1024 Each line starting with [+] is a file. If the variable | |
1025 `speedbar-show-unknown-files' is t, the lines starting with [?] are | |
1026 files which don't have imenu support, but are not expressly ignored. | |
1027 Files are completely ignored if they match `speedbar-file-unshown-regexp' | |
1028 which is generated from `completion-ignored-extensions'. | |
1029 | |
1030 Files with a `*' character after their name are files checked out of a | |
1031 version control system. (currently only RCS is supported.) New | |
1032 version control systems can be added by examining the documentation | |
1033 for `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p' | |
1034 | |
1035 Click on the [+] to display a list of tags from that file. Click on | |
1036 the [-] to retract the list. Click on the file name to edit the file | |
1037 in the attached frame. | |
1038 | |
1039 If you open tags, you might find a node starting with {+}, which is a | |
1040 category of tags. Click the {+} to expand the category. Jump-able | |
1041 tags start with >. Click the name of the tag to go to that position | |
1042 in the selected file. | |
1043 | |
1044 \\{speedbar-key-map}" | |
1045 ;; NOT interactive | |
1046 (save-excursion | |
1047 (setq speedbar-buffer (set-buffer (get-buffer-create " SPEEDBAR"))) | |
1048 (kill-all-local-variables) | |
1049 (setq major-mode 'speedbar-mode) | |
1050 (setq mode-name "Speedbar") | |
1051 (use-local-map speedbar-key-map) | |
1052 (set-syntax-table speedbar-syntax-table) | |
1053 (setq font-lock-keywords nil) ;; no font-locking please | |
1054 (setq truncate-lines t) | |
1055 (make-local-variable 'frame-title-format) | |
1056 (setq frame-title-format "Speedbar") | |
1057 ;; Set this up special just for the speedbar buffer | |
1058 (if (null default-minibuffer-frame) | |
1059 (progn | |
1060 (make-local-variable 'default-minibuffer-frame) | |
1061 (setq default-minibuffer-frame speedbar-attached-frame))) | |
1062 (make-local-variable 'temp-buffer-show-function) | |
1063 (setq temp-buffer-show-function 'speedbar-temp-buffer-show-function) | |
1064 (if speedbar-xemacsp | |
1065 (progn | |
1066 ;; Argh! mouse-track-click-hook doesn't understand the | |
1067 ;; make-local-hook conventions. | |
1068 (make-local-variable 'mouse-track-click-hook) | |
1069 (add-hook 'mouse-track-click-hook | |
1070 (lambda (event count) | |
1071 (if (/= (event-button event) 1) | |
1072 nil ; Do normal operations. | |
1073 (cond ((eq count 1) | |
1074 (speedbar-quick-mouse event)) | |
1075 ((or (eq count 2) | |
1076 (eq count 3)) | |
1077 (mouse-set-point event) | |
1078 (speedbar-do-function-pointer) | |
1079 (speedbar-quick-mouse event))) | |
1080 ;; Don't do normal operations. | |
1081 t))))) | |
1082 (make-local-hook 'kill-buffer-hook) | |
1083 (add-hook 'kill-buffer-hook (lambda () (let ((skilling (boundp 'skilling))) | |
1084 (if skilling | |
1085 nil | |
1086 (if (eq (current-buffer) | |
1087 speedbar-buffer) | |
1088 (speedbar-frame-mode -1))))) | |
1089 t t) | |
1090 (speedbar-set-mode-line-format) | |
1091 (if (not speedbar-xemacsp) | |
1092 (setq auto-show-mode nil)) ;no auto-show for Emacs | |
1093 (run-hooks 'speedbar-mode-hook)) | |
1094 (speedbar-update-contents) | |
1095 speedbar-buffer) | |
1096 | |
1097 (defun speedbar-set-mode-line-format () | |
1098 "Set the format of the mode line based on the current speedbar environment. | |
1099 This gives visual indications of what is up. It EXPECTS the speedbar | |
1100 frame and window to be the currently active frame and window." | |
1101 (if (and (frame-live-p speedbar-frame) | |
1102 (or (not speedbar-xemacsp) | |
1103 (specifier-instance has-modeline-p))) | |
1104 (save-excursion | |
1105 (set-buffer speedbar-buffer) | |
1106 (let* ((w (or (speedbar-frame-width) 20)) | |
1107 (p1 "<<") | |
1108 (p5 ">>") | |
1109 (p3 (if speedbar-update-flag "SPEEDBAR" "SLOWBAR")) | |
1110 (blank (- w (length p1) (length p3) (length p5) | |
1111 (if line-number-mode 4 0))) | |
1112 (p2 (if (> blank 0) | |
1113 (make-string (/ blank 2) ? ) | |
1114 "")) | |
1115 (p4 (if (> blank 0) | |
1116 (make-string (+ (/ blank 2) (% blank 2)) ? ) | |
1117 "")) | |
1118 (tf | |
1119 (if line-number-mode | |
1120 (list (concat p1 p2 p3) '(line-number-mode " %3l") | |
1121 (concat p4 p5)) | |
1122 (list (concat p1 p2 p3 p4 p5))))) | |
1123 (if (not (equal mode-line-format tf)) | |
1124 (progn | |
1125 (setq mode-line-format tf) | |
1126 (force-mode-line-update))))))) | |
1127 | |
1128 (defun speedbar-temp-buffer-show-function (buffer) | |
1129 "Placed in the variable `temp-buffer-show-function' in `speedbar-mode'. | |
1130 If a user requests help using \\[help-command] <Key> the temp BUFFER will be | |
1131 redirected into a window on the attached frame." | |
1132 (if speedbar-attached-frame (select-frame speedbar-attached-frame)) | |
1133 (pop-to-buffer buffer nil) | |
1134 (other-window -1) | |
1135 (run-hooks 'temp-buffer-show-hook)) | |
1136 | |
1137 (defun speedbar-reconfigure-menubar () | |
1138 "Reconfigure the menu-bar in a speedbar frame. | |
1139 Different menu items are displayed depending on the current display mode | |
1140 and the existence of packages." | |
1141 (let ((md (append speedbar-easymenu-definition-base | |
1142 (if speedbar-shown-directories | |
1143 ;; file display mode version | |
1144 speedbar-easymenu-definition-special | |
1145 (save-excursion | |
1146 (select-frame speedbar-attached-frame) | |
1147 (if (local-variable-p | |
1148 'speedbar-easymenu-definition-special | |
1149 (current-buffer)) | |
1150 ;; If bound locally, we can use it | |
1151 speedbar-easymenu-definition-special))) | |
1152 ;; The trailer | |
1153 speedbar-easymenu-definition-trailer))) | |
1154 (easy-menu-define speedbar-menu-map speedbar-key-map "Speedbar menu" md) | |
1155 (if speedbar-xemacsp | |
1156 (save-excursion | |
1157 (set-buffer speedbar-buffer) | |
1158 ;; For the benefit of button3 | |
1159 (if (and (not (assoc "Speedbar" mode-popup-menu))) | |
1160 (easy-menu-add md)) | |
1161 (set-buffer-menubar (list md))) | |
1162 (easy-menu-add md)))) | |
1163 | |
1164 | |
1165 ;;; User Input stuff | |
1166 ;; | |
1167 | |
1168 ;; XEmacs: this can be implemented using modeline keymaps, but there | |
1169 ;; is no use, as we have horizontal scrollbar (as the docstring | |
1170 ;; hints.) | |
1171 (defun speedbar-mouse-hscroll (e) | |
1172 "Read a mouse event E from the mode line, and horizontally scroll. | |
1173 If the mouse is being clicked on the far left, or far right of the | |
1174 mode-line. This is only useful for non-XEmacs" | |
1175 (interactive "e") | |
1176 (let* ((xp (car (nth 2 (car (cdr e))))) | |
1177 (cpw (/ (frame-pixel-width) | |
1178 (frame-width))) | |
1179 (oc (1+ (/ xp cpw))) | |
1180 ) | |
1181 (cond ((< oc 3) | |
1182 (scroll-left 2)) | |
1183 ((> oc (- (window-width) 3)) | |
1184 (scroll-right 2)) | |
1185 (t (message "Click on the edge of the modeline to scroll left/right"))) | |
1186 ;;(message "X: Pixel %d Char Pixels %d On char %d" xp cpw oc) | |
1187 )) | |
1188 | |
1189 (defun speedbar-customize () | |
1190 "Customize speedbar using the Custom package." | |
1191 (interactive) | |
1192 (let ((sf (selected-frame))) | |
1193 (select-frame speedbar-attached-frame) | |
1194 (customize-group 'speedbar) | |
1195 (select-frame sf)) | |
1196 (speedbar-maybee-jump-to-attached-frame)) | |
1197 | |
1198 ;; In XEmacs, we make popup menus work on the item over mouse (as | |
1199 ;; opposed to where the point happens to be.) We attain this by | |
1200 ;; temporarily moving the point to that place. | |
1201 ;; Hrvoje Niksic <hniksic@srce.hr> | |
1202 (defun speedbar-xemacs-popup-kludge (event) | |
1203 "Pop up a menu related to the clicked on item. | |
1204 Must be bound to EVENT." | |
1205 (interactive "e") | |
1206 (save-excursion | |
1207 (goto-char (event-closest-point event)) | |
1208 (beginning-of-line) | |
1209 (forward-char (min 5 (- (save-excursion (end-of-line) (point)) | |
1210 (save-excursion (beginning-of-line) (point))))) | |
1211 (popup-mode-menu) | |
1212 ;; Wait for menu to bail out. `popup-mode-menu' (and other popup | |
1213 ;; menu functions) return immediately. | |
1214 (let (new) | |
1215 (while (not (misc-user-event-p (setq new (next-event)))) | |
1216 (dispatch-event new)) | |
1217 (dispatch-event new)))) | |
1218 | |
1219 (defun speedbar-emacs-popup-kludge (e) | |
1220 "Pop up a menu related to the clicked on item. | |
1221 Must be bound to event E." | |
1222 (interactive "e") | |
1223 (save-excursion | |
1224 (mouse-set-point e) | |
1225 ;; This gets the cursor where the user can see it. | |
1226 (if (not (bolp)) (forward-char -1)) | |
1227 (sit-for 0) | |
1228 (if (< emacs-major-version 20) | |
1229 (mouse-major-mode-menu e) | |
1230 (mouse-major-mode-menu e nil)))) | |
1231 | |
1232 (defun speedbar-next (arg) | |
1233 "Move to the next ARGth line in a speedbar buffer." | |
1234 (interactive "p") | |
1235 (forward-line (or arg 1)) | |
1236 (speedbar-item-info) | |
1237 (speedbar-position-cursor-on-line)) | |
1238 | |
1239 (defun speedbar-prev (arg) | |
1240 "Move to the previous ARGth line in a speedbar buffer." | |
1241 (interactive "p") | |
1242 (speedbar-next (if arg (- arg) -1))) | |
1243 | |
1244 (defun speedbar-scroll-up (&optional arg) | |
1245 "Page down one screen-full of the speedbar, or ARG lines." | |
1246 (interactive "P") | |
1247 (scroll-up arg) | |
1248 (speedbar-position-cursor-on-line)) | |
1249 | |
1250 (defun speedbar-scroll-down (&optional arg) | |
1251 "Page up one screen-full of the speedbar, or ARG lines." | |
1252 (interactive "P") | |
1253 (scroll-down arg) | |
1254 (speedbar-position-cursor-on-line)) | |
1255 | |
1256 (defun speedbar-up-directory () | |
1257 "Keyboard accelerator for moving the default directory up one. | |
1258 Assumes that the current buffer is the speedbar buffer" | |
1259 (interactive) | |
1260 (setq default-directory (expand-file-name (concat default-directory "../"))) | |
1261 (speedbar-update-contents)) | |
1262 | |
1263 ;;; Speedbar file activity (aka creeping featurism) | |
1264 ;; | |
1265 (defun speedbar-refresh () | |
1266 "Refresh the current speedbar display, disposing of any cached data." | |
1267 (interactive) | |
1268 (let ((dl speedbar-shown-directories)) | |
1269 (while dl | |
1270 (adelete 'speedbar-directory-contents-alist (car dl)) | |
1271 (setq dl (cdr dl)))) | |
1272 (if (<= 1 speedbar-verbosity-level) (message "Refreshing speedbar...")) | |
1273 (speedbar-update-contents) | |
1274 (speedbar-stealthy-updates) | |
1275 ;; Reset the timer in case it got really hosed for some reason... | |
1276 (speedbar-set-timer speedbar-update-speed) | |
1277 (if (<= 1 speedbar-verbosity-level) (message "Refreshing speedbar...done"))) | |
1278 | |
1279 (defun speedbar-item-load () | |
1280 "Load the item under the cursor or mouse if it is a lisp file." | |
1281 (interactive) | |
1282 (let ((f (speedbar-line-file))) | |
1283 (if (and (file-exists-p f) (string-match "\\.el\\'" f)) | |
1284 (if (and (file-exists-p (concat f "c")) | |
1285 (y-or-n-p (format "Load %sc? " f))) | |
1286 ;; If the compiled version exists, load that instead... | |
1287 (load-file (concat f "c")) | |
1288 (load-file f)) | |
1289 (error "Not a loadable file...")))) | |
1290 | |
1291 (defun speedbar-item-byte-compile () | |
1292 "Byte compile the item under the cursor or mouse if it is a lisp file." | |
1293 (interactive) | |
1294 (let ((f (speedbar-line-file)) | |
1295 (sf (selected-frame))) | |
1296 (if (and (file-exists-p f) (string-match "\\.el\\'" f)) | |
1297 (progn | |
1298 (select-frame speedbar-attached-frame) | |
1299 (byte-compile-file f nil) | |
1300 (select-frame sf))) | |
1301 )) | |
1302 | |
1303 (defun speedbar-mouse-item-info (event) | |
1304 "Provide information about what the user clicked on. | |
1305 This should be bound to a mouse EVENT." | |
1306 (interactive "e") | |
1307 (mouse-set-point event) | |
1308 (speedbar-item-info)) | |
1309 | |
1310 (defun speedbar-item-info () | |
1311 "Display info in the mini-buffer about the button the mouse is over." | |
1312 (interactive) | |
1313 (if (not speedbar-shown-directories) | |
1314 nil | |
1315 (let* ((item (speedbar-line-file)) | |
1316 (attr (if item (file-attributes item) nil))) | |
1317 (if item (message "%s %d %s" (nth 8 attr) (nth 7 attr) item) | |
1318 (save-excursion | |
1319 (beginning-of-line) | |
1320 (looking-at "\\([0-9]+\\):") | |
1321 (setq item (speedbar-line-path (string-to-int (match-string 1)))) | |
1322 (if (re-search-forward "> \\([^ ]+\\)$" | |
1323 (save-excursion(end-of-line)(point)) t) | |
1324 (progn | |
1325 (setq attr (get-text-property (match-beginning 1) | |
1326 'speedbar-token)) | |
1327 (message "Tag %s in %s at position %s" | |
1328 (match-string 1) item (if attr attr 0))) | |
1329 (message "No special info for this line."))) | |
1330 )))) | |
1331 | |
1332 (defun speedbar-item-copy () | |
1333 "Copy the item under the cursor. | |
1334 Files can be copied to new names or places." | |
1335 (interactive) | |
1336 (let ((f (speedbar-line-file))) | |
1337 (if (not f) (error "Not a file.")) | |
1338 (if (file-directory-p f) | |
1339 (error "Cannot copy directory.") | |
1340 (let* ((rt (read-file-name (format "Copy %s to: " | |
1341 (file-name-nondirectory f)) | |
1342 (file-name-directory f))) | |
1343 (refresh (member (expand-file-name (file-name-directory rt)) | |
1344 speedbar-shown-directories))) | |
1345 ;; Create the right file name part | |
1346 (if (file-directory-p rt) | |
1347 (setq rt | |
1348 (concat (expand-file-name rt) | |
1349 (if (string-match "/$" rt) "" "/") | |
1350 (file-name-nondirectory f)))) | |
1351 (if (or (not (file-exists-p rt)) | |
1352 (y-or-n-p (format "Overwrite %s with %s? " rt f))) | |
1353 (progn | |
1354 (copy-file f rt t t) | |
1355 ;; refresh display if the new place is currently displayed. | |
1356 (if refresh | |
1357 (progn | |
1358 (speedbar-refresh) | |
1359 (if (not (speedbar-goto-this-file rt)) | |
1360 (speedbar-goto-this-file f)))) | |
1361 )))))) | |
1362 | |
1363 (defun speedbar-item-rename () | |
1364 "Rename the item under the cursor or mouse. | |
1365 Files can be renamed to new names or moved to new directories." | |
1366 (interactive) | |
1367 (let ((f (speedbar-line-file))) | |
1368 (if f | |
1369 (let* ((rt (read-file-name (format "Rename %s to: " | |
1370 (file-name-nondirectory f)) | |
1371 (file-name-directory f))) | |
1372 (refresh (member (expand-file-name (file-name-directory rt)) | |
1373 speedbar-shown-directories))) | |
1374 ;; Create the right file name part | |
1375 (if (file-directory-p rt) | |
1376 (setq rt | |
1377 (concat (expand-file-name rt) | |
1378 (if (string-match "/\\'" rt) "" "/") | |
1379 (file-name-nondirectory f)))) | |
1380 (if (or (not (file-exists-p rt)) | |
1381 (y-or-n-p (format "Overwrite %s with %s? " rt f))) | |
1382 (progn | |
1383 (rename-file f rt t) | |
1384 ;; refresh display if the new place is currently displayed. | |
1385 (if refresh | |
1386 (progn | |
1387 (speedbar-refresh) | |
1388 (speedbar-goto-this-file rt) | |
1389 ))))) | |
1390 (error "Not a file.")))) | |
1391 | |
1392 (defun speedbar-item-delete () | |
1393 "Delete the item under the cursor. Files are removed from disk." | |
1394 (interactive) | |
1395 (let ((f (speedbar-line-file))) | |
1396 (if (not f) (error "Not a file.")) | |
1397 (if (y-or-n-p (format "Delete %s? " f)) | |
1398 (progn | |
1399 (if (file-directory-p f) | |
1400 (delete-directory f) | |
1401 (delete-file f)) | |
1402 (message "Okie dokie..") | |
1403 (let ((p (point))) | |
1404 (speedbar-refresh) | |
1405 (goto-char p)) | |
1406 )) | |
1407 )) | |
1408 | |
1409 (defun speedbar-enable-update () | |
1410 "Enable automatic updating in speedbar via timers." | |
1411 (interactive) | |
1412 (setq speedbar-update-flag t) | |
1413 (speedbar-set-mode-line-format) | |
1414 (speedbar-set-timer speedbar-update-speed)) | |
1415 | |
1416 (defun speedbar-disable-update () | |
1417 "Disable automatic updating and stop consuming resources." | |
1418 (interactive) | |
1419 (setq speedbar-update-flag nil) | |
1420 (speedbar-set-mode-line-format) | |
1421 (speedbar-set-timer nil)) | |
1422 | |
1423 (defun speedbar-toggle-updates () | |
1424 "Toggle automatic update for the speedbar frame." | |
1425 (interactive) | |
1426 (if speedbar-update-flag | |
1427 (speedbar-disable-update) | |
1428 (speedbar-enable-update))) | |
1429 | |
1430 (defun speedbar-toggle-sorting () | |
1431 "Toggle automatic update for the speedbar frame." | |
1432 (interactive) | |
1433 (setq speedbar-sort-tags (not speedbar-sort-tags))) | |
1434 | |
1435 (defun speedbar-toggle-show-all-files () | |
1436 "Toggle display of files speedbar can not tag." | |
1437 (interactive) | |
1438 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files)) | |
1439 (speedbar-refresh)) | |
1440 | |
1441 ;;; Utility functions | |
1442 ;; | |
1443 (defun speedbar-set-timer (timeout) | |
1444 "Apply a timer with TIMEOUT, or remove a timer if TIMOUT is nil. | |
1445 TIMEOUT is the number of seconds until the speedbar timer is called | |
1446 again. When TIMEOUT is nil, turn off all timeouts. | |
1447 This function will also enable or disable the `vc-checkin-hook' used | |
1448 to track file check ins, and will change the mode line to match | |
1449 `speedbar-update-flag'." | |
1450 (cond | |
1451 ;; XEmacs | |
1452 (speedbar-xemacsp | |
1453 (if speedbar-timer | |
1454 (progn (delete-itimer speedbar-timer) | |
1455 (setq speedbar-timer nil))) | |
1456 (if timeout | |
1457 (if (and speedbar-xemacsp | |
1458 (or (>= emacs-major-version 20) | |
1459 (>= emacs-minor-version 15))) | |
1460 (setq speedbar-timer (start-itimer "speedbar" | |
1461 'speedbar-timer-fn | |
1462 timeout | |
1463 timeout | |
1464 t)) | |
1465 (setq speedbar-timer (start-itimer "speedbar" | |
1466 'speedbar-timer-fn | |
1467 timeout | |
1468 nil))))) | |
1469 ;; Post 19.31 Emacs | |
1470 ((fboundp 'run-with-idle-timer) | |
1471 (if speedbar-timer | |
1472 (progn (cancel-timer speedbar-timer) | |
1473 (setq speedbar-timer nil))) | |
1474 (if timeout | |
1475 (setq speedbar-timer | |
1476 (run-with-idle-timer timeout t 'speedbar-timer-fn)))) | |
1477 ;; Emacs 19.30 (Thanks twice: ptype@dra.hmg.gb) | |
1478 ((fboundp 'post-command-idle-hook) | |
1479 (if timeout | |
1480 (add-hook 'post-command-idle-hook 'speedbar-timer-fn) | |
1481 (remove-hook 'post-command-idle-hook 'speedbar-timer-fn))) | |
1482 ;; Older or other Emacsen with no timers. Set up so that its | |
1483 ;; obvious this emacs can't handle the updates | |
1484 (t | |
1485 (setq speedbar-update-flag nil))) | |
1486 ;; Apply a revert hook that will reset the scanners. We attach to revert | |
1487 ;; because most reverts occur during VC state change, and this lets our | |
1488 ;; VC scanner fix itself. | |
1489 (if timeout | |
1490 (add-hook 'after-revert-hook 'speedbar-reset-scanners) | |
1491 (remove-hook 'after-revert-hook 'speedbar-reset-scanners) | |
1492 ) | |
1493 ;; change this if it changed for some reason | |
1494 (speedbar-set-mode-line-format)) | |
1495 | |
1496 (defmacro speedbar-with-writable (&rest forms) | |
1497 "Allow the buffer to be writable and evaluate FORMS." | |
1498 (list 'let '((inhibit-read-only t)) | |
1499 '(toggle-read-only -1) | |
1500 (cons 'progn forms))) | |
1501 (put 'speedbar-with-writable 'lisp-indent-function 0) | |
1502 | |
1503 (defun speedbar-select-window (buffer) | |
1504 "Select a window in which BUFFER is show. | |
1505 If it is not shown, force it to appear in the default window." | |
1506 (let ((win (get-buffer-window buffer speedbar-attached-frame))) | |
1507 (if win | |
1508 (select-window win) | |
1509 (show-buffer (selected-window) buffer)))) | |
1510 | |
1511 (defmacro speedbar-with-attached-buffer (&rest forms) | |
1512 "Execute FORMS in the attached frame's special buffer. | |
1513 Optionally select that frame if necessary." | |
1514 ;; Reset the timer with a new timeout when cliking a file | |
1515 ;; in case the user was navigating directories, we can cancel | |
1516 ;; that other timer. | |
1517 (list | |
1518 'progn | |
1519 '(speedbar-set-timer speedbar-update-speed) | |
1520 (list | |
1521 'let '((cf (selected-frame))) | |
1522 '(select-frame speedbar-attached-frame) | |
1523 '(speedbar-select-window speedbar-desired-buffer) | |
1524 (cons 'progn forms) | |
1525 '(select-frame cf) | |
1526 '(speedbar-maybee-jump-to-attached-frame) | |
1527 ))) | |
1528 | |
1529 (defun speedbar-insert-button (text face mouse function | |
1530 &optional token prevline) | |
1531 "Insert TEXT as the next logical speedbar button. | |
1532 FACE is the face to put on the button, MOUSE is the highlight face to use. | |
1533 When the user clicks on TEXT, FUNCTION is called with the TOKEN parameter. | |
1534 This function assumes that the current buffer is the speedbar buffer. | |
1535 If PREVLINE, then put this button on the previous line. | |
1536 | |
1537 This is a convenience function for special mode that create their own | |
1538 specialized speedbar displays." | |
1539 (goto-char (point-max)) | |
1540 (if (/= (current-column) 0) (insert "\n")) | |
1541 (if prevline (progn (delete-char -1) (insert " "))) ;back up if desired... | |
1542 (let ((start (point))) | |
1543 (insert text) | |
1544 (speedbar-make-button start (point) face mouse function token)) | |
1545 (let ((start (point))) | |
1546 (insert "\n") | |
1547 (put-text-property start (point) 'face nil) | |
1548 (put-text-property start (point) 'mouse-face nil))) | |
1549 | |
1550 (defun speedbar-make-button (start end face mouse function &optional token) | |
1551 "Create a button from START to END, with FACE as the display face. | |
1552 MOUSE is the mouse face. When this button is clicked on FUNCTION | |
1553 will be run with the TOKEN parameter (any lisp object)" | |
1554 (put-text-property start end 'face face) | |
1555 (put-text-property start end 'mouse-face mouse) | |
1556 (put-text-property start end 'invisible nil) | |
1557 (if function (put-text-property start end 'speedbar-function function)) | |
1558 (if token (put-text-property start end 'speedbar-token token)) | |
1559 ) | |
1560 | |
1561 ;;; File button management | |
1562 ;; | |
1563 (defun speedbar-file-lists (directory) | |
1564 "Create file lists for DIRECTORY. | |
1565 The car is the list of directories, the cdr is list of files not | |
1566 matching ignored headers. Cache any directory files found in | |
1567 `speedbar-directory-contents-alist' and use that cache before scanning | |
1568 the file-system" | |
1569 (setq directory (expand-file-name directory)) | |
1570 ;; If in powerclick mode, then the directory we are getting | |
1571 ;; should be rescanned. | |
1572 (if speedbar-power-click | |
1573 (adelete 'speedbar-directory-contents-alist directory)) | |
1574 ;; find the directory, either in the cache, or build it. | |
1575 (or (cdr-safe (assoc directory speedbar-directory-contents-alist)) | |
1576 (let ((default-directory directory) | |
1577 (dir (directory-files directory nil)) | |
1578 (dirs nil) | |
1579 (files nil)) | |
1580 (while dir | |
1581 (if (not (string-match speedbar-file-unshown-regexp (car dir))) | |
1582 (if (file-directory-p (car dir)) | |
1583 (setq dirs (cons (car dir) dirs)) | |
1584 (setq files (cons (car dir) files)))) | |
1585 (setq dir (cdr dir))) | |
1586 (let ((nl (cons (nreverse dirs) (list (nreverse files))))) | |
1587 (aput 'speedbar-directory-contents-alist directory nl) | |
1588 nl)) | |
1589 )) | |
1590 | |
1591 (defun speedbar-directory-buttons (directory index) | |
1592 "Insert a single button group at point for DIRECTORY. | |
1593 Each directory path part is a different button. If part of the path | |
1594 matches the user directory ~, then it is replaced with a ~. | |
1595 INDEX is not used, but is required by the caller." | |
1596 (let* ((tilde (expand-file-name "~")) | |
1597 (dd (expand-file-name directory)) | |
1598 (junk (string-match (regexp-quote tilde) dd)) | |
1599 (displayme (if junk | |
1600 (concat "~" (substring dd (match-end 0))) | |
1601 dd)) | |
1602 (p (point))) | |
1603 (if (string-match "^~/?\\'" displayme) (setq displayme (concat tilde "/"))) | |
1604 (insert displayme) | |
1605 (save-excursion | |
1606 (goto-char p) | |
1607 (while (re-search-forward "\\([^/]+\\)/" nil t) | |
1608 (speedbar-make-button (match-beginning 1) (match-end 1) | |
1609 'speedbar-directory-face | |
1610 'speedbar-highlight-face | |
1611 'speedbar-directory-buttons-follow | |
1612 (if (= (match-beginning 1) p) | |
1613 (expand-file-name "~/") ;the tilde | |
1614 (buffer-substring-no-properties | |
1615 p (match-end 0))))) | |
1616 ;; Nuke the beginning of the directory if it's too long... | |
1617 (cond ((eq speedbar-directory-button-trim-method 'span) | |
1618 (beginning-of-line) | |
1619 (let ((ww (or (speedbar-frame-width) 20))) | |
1620 (move-to-column ww nil) | |
1621 (while (>= (current-column) ww) | |
1622 (re-search-backward "/" nil t) | |
1623 (if (<= (current-column) 2) | |
1624 (progn | |
1625 (re-search-forward "/" nil t) | |
1626 (if (< (current-column) 4) | |
1627 (re-search-forward "/" nil t)) | |
1628 (forward-char -1))) | |
1629 (if (looking-at "/?$") | |
1630 (beginning-of-line) | |
1631 (insert "/...\n ") | |
1632 (move-to-column ww nil))))) | |
1633 ((eq speedbar-directory-button-trim-method 'trim) | |
1634 (end-of-line) | |
1635 (let ((ww (or (speedbar-frame-width) 20)) | |
1636 (tl (current-column))) | |
1637 (if (< ww tl) | |
1638 (progn | |
1639 (move-to-column (- tl ww)) | |
1640 (if (re-search-backward "/" nil t) | |
1641 (progn | |
1642 (delete-region (point-min) (point)) | |
1643 (insert "$") | |
1644 ))))))) | |
1645 ) | |
1646 (if (string-match "\\`/[^/]+/\\'" displayme) | |
1647 (progn | |
1648 (insert " ") | |
1649 (let ((p (point))) | |
1650 (insert "<root>") | |
1651 (speedbar-make-button p (point) | |
1652 'speedbar-directory-face | |
1653 'speedbar-highlight-face | |
1654 'speedbar-directory-buttons-follow | |
1655 "/")))) | |
1656 (end-of-line) | |
1657 (insert-char ?\n 1 nil))) | |
1658 | |
1659 (defun speedbar-make-tag-line (exp-button-type | |
1660 exp-button-char exp-button-function | |
1661 exp-button-data | |
1662 tag-button tag-button-function tag-button-data | |
1663 tag-button-face depth) | |
1664 "Create a tag line with EXP-BUTTON-TYPE for the small expansion button. | |
1665 This is the button that expands or contracts a node (if applicable), | |
1666 and EXP-BUTTON-CHAR the character in it (+, -, ?, etc). EXP-BUTTON-FUNCTION | |
1667 is the function to call if it's clicked on. Button types are | |
1668 'bracket, 'angle, 'curly, or nil. EXP-BUTTON-DATA is extra data | |
1669 attached to the text forming the expansion button. | |
1670 | |
1671 Next, TAG-BUTTON is the text of the tag. TAG-BUTTON-FUNCTION is the | |
1672 function to call if clicked on, and TAG-BUTTON-DATA is the data to | |
1673 attach to the text field (such a tag positioning, etc). | |
1674 TAG-BUTTON-FACE is a face used for this type of tag. | |
1675 | |
1676 Lastly, DEPTH shows the depth of expansion. | |
1677 | |
1678 This function assumes that the cursor is in the speedbar window at the | |
1679 position to insert a new item, and that the new item will end with a CR" | |
1680 (let ((start (point)) | |
1681 (end (progn | |
1682 (insert (int-to-string depth) ":") | |
1683 (point)))) | |
1684 (put-text-property start end 'invisible t) | |
1685 ) | |
1686 (insert-char ? depth nil) | |
1687 (put-text-property (- (point) depth) (point) 'invisible nil) | |
1688 (let* ((exp-button (cond ((eq exp-button-type 'bracket) "[%c]") | |
1689 ((eq exp-button-type 'angle) "<%c>") | |
1690 ((eq exp-button-type 'curly) "{%c}") | |
1691 (t ">"))) | |
1692 (buttxt (format exp-button exp-button-char)) | |
1693 (start (point)) | |
1694 (end (progn (insert buttxt) (point))) | |
1695 (bf (if exp-button-type 'speedbar-button-face nil)) | |
1696 (mf (if exp-button-function 'speedbar-highlight-face nil)) | |
1697 ) | |
1698 (speedbar-make-button start end bf mf exp-button-function exp-button-data) | |
1699 ) | |
1700 (insert-char ? 1 nil) | |
1701 (put-text-property (1- (point)) (point) 'invisible nil) | |
1702 (let ((start (point)) | |
1703 (end (progn (insert tag-button) (point)))) | |
1704 (insert-char ?\n 1 nil) | |
1705 (put-text-property (1- (point)) (point) 'invisible nil) | |
1706 (speedbar-make-button start end tag-button-face | |
1707 (if tag-button-function 'speedbar-highlight-face nil) | |
1708 tag-button-function tag-button-data)) | |
1709 ) | |
1710 | |
1711 (defun speedbar-change-expand-button-char (char) | |
1712 "Change the expansion button character to CHAR for the current line." | |
1713 (save-excursion | |
1714 (beginning-of-line) | |
1715 (if (re-search-forward ":\\s-*.\\([-+?]\\)" (save-excursion (end-of-line) | |
1716 (point)) t) | |
1717 (speedbar-with-writable | |
1718 (goto-char (match-beginning 1)) | |
1719 (delete-char 1) | |
1720 (insert-char char 1 t))))) | |
1721 | |
1722 | |
1723 ;;; Build button lists | |
1724 ;; | |
1725 (defun speedbar-insert-files-at-point (files level) | |
1726 "Insert list of FILES starting at point, and indenting all files to LEVEL. | |
1727 Tag expandable items with a +, otherwise a ?. Don't highlight ? as we | |
1728 don't know how to manage them. The input parameter FILES is a cons | |
1729 cell of the form ( 'DIRLIST . 'FILELIST )" | |
1730 ;; Start inserting all the directories | |
1731 (let ((dirs (car files))) | |
1732 (while dirs | |
1733 (speedbar-make-tag-line 'angle ?+ 'speedbar-dired (car dirs) | |
1734 (car dirs) 'speedbar-dir-follow nil | |
1735 'speedbar-directory-face level) | |
1736 (setq dirs (cdr dirs)))) | |
1737 (let ((lst (car (cdr files)))) | |
1738 (while lst | |
1739 (let* ((known (string-match speedbar-file-regexp (car lst))) | |
1740 (expchar (if known ?+ ??)) | |
1741 (fn (if known 'speedbar-tag-file nil))) | |
1742 (if (or speedbar-show-unknown-files (/= expchar ??)) | |
1743 (speedbar-make-tag-line 'bracket expchar fn (car lst) | |
1744 (car lst) 'speedbar-find-file nil | |
1745 'speedbar-file-face level))) | |
1746 (setq lst (cdr lst))))) | |
1747 | |
1748 (defun speedbar-default-directory-list (directory index) | |
1749 "Insert files for DIRECTORY with level INDEX at point." | |
1750 (speedbar-insert-files-at-point | |
1751 (speedbar-file-lists directory) index) | |
1752 (speedbar-reset-scanners) | |
1753 (if (= index 0) | |
1754 ;; If the shown files variable has extra directories, then | |
1755 ;; it is our responsibility to redraw them all | |
1756 ;; Luckilly, the nature of inserting items into this list means | |
1757 ;; that by reversing it, we can easilly go in the right order | |
1758 (let ((sf (cdr (reverse speedbar-shown-directories)))) | |
1759 (setq speedbar-shown-directories | |
1760 (list (expand-file-name default-directory))) | |
1761 ;; exand them all as we find them | |
1762 (while sf | |
1763 (if (speedbar-goto-this-file (car sf)) | |
1764 (progn | |
1765 (beginning-of-line) | |
1766 (if (looking-at "[0-9]+:[ ]*<") | |
1767 (progn | |
1768 (goto-char (match-end 0)) | |
1769 (speedbar-do-function-pointer))) | |
1770 (setq sf (cdr sf))))) | |
1771 ))) | |
1772 | |
1773 (defun speedbar-insert-generic-list (level lst expand-fun find-fun) | |
1774 "At LEVEL, insert a generic multi-level alist LST. | |
1775 Associations with lists get {+} tags (to expand into more nodes) and | |
1776 those with positions just get a > as the indicator. {+} buttons will | |
1777 have the function EXPAND-FUN and the token is the CDR list. The token | |
1778 name will have the function FIND-FUN and not token." | |
1779 ;; Remove imenu rescan button | |
1780 (if (string= (car (car lst)) "*Rescan*") | |
1781 (setq lst (cdr lst))) | |
1782 ;; insert the parts | |
1783 (while lst | |
1784 (cond ((null (car-safe lst)) nil) ;this would be a separator | |
1785 ((or (numberp (cdr-safe (car-safe lst))) | |
1786 (markerp (cdr-safe (car-safe lst)))) | |
1787 (speedbar-make-tag-line nil nil nil nil ;no expand button data | |
1788 (car (car lst)) ;button name | |
1789 find-fun ;function | |
1790 (cdr (car lst)) ;token is position | |
1791 'speedbar-tag-face | |
1792 (1+ level))) | |
1793 ((listp (cdr-safe (car-safe lst))) | |
1794 (speedbar-make-tag-line 'curly ?+ expand-fun (cdr (car lst)) | |
1795 (car (car lst)) ;button name | |
1796 nil nil 'speedbar-tag-face | |
1797 (1+ level))) | |
1798 (t (message "Ooops!"))) | |
1799 (setq lst (cdr lst)))) | |
1800 | |
1801 ;;; Timed functions | |
1802 ;; | |
1803 (defun speedbar-update-contents () | |
1804 "Generically update the contents of the speedbar buffer." | |
1805 (interactive) | |
1806 ;; Set the current special buffer | |
1807 (setq speedbar-desired-buffer nil) | |
1808 (if (and speedbar-mode-specific-contents-flag | |
1809 speedbar-special-mode-expansion-list | |
1810 (local-variable-p | |
1811 'speedbar-special-mode-expansion-list | |
1812 (current-buffer))) | |
1813 ;;(eq (get major-mode 'mode-class 'special))) | |
1814 (speedbar-update-special-contents) | |
1815 (speedbar-update-directory-contents))) | |
1816 | |
1817 (defun speedbar-update-directory-contents () | |
1818 "Update the contents of the speedbar buffer based on the current directory." | |
1819 (let ((cbd (expand-file-name default-directory)) | |
1820 cbd-parent | |
1821 (funclst speedbar-initial-expansion-list) | |
1822 (cache speedbar-full-text-cache) | |
1823 ;; disable stealth during update | |
1824 (speedbar-stealthy-function-list nil) | |
1825 (use-cache nil) | |
1826 (expand-local nil) | |
1827 ;; Because there is a bug I can't find just yet | |
1828 (inhibit-quit nil)) | |
1829 (save-excursion | |
1830 (set-buffer speedbar-buffer) | |
1831 ;; If we are updating contents to where we are, then this is | |
1832 ;; really a request to update existing contents, so we must be | |
1833 ;; careful with our text cache! | |
1834 (if (member cbd speedbar-shown-directories) | |
1835 (setq cache nil) | |
1836 | |
1837 ;; Build cbd-parent, and see if THAT is in the current shown | |
1838 ;; directories. First, go through pains to get the parent directory | |
1839 (if (and speedbar-smart-directory-expand-flag | |
1840 (save-match-data | |
1841 (setq cbd-parent cbd) | |
1842 (if (string-match "/$" cbd-parent) | |
1843 (setq cbd-parent (substring cbd-parent 0 (match-beginning 0)))) | |
1844 (setq cbd-parent (file-name-directory cbd-parent))) | |
1845 (member cbd-parent speedbar-shown-directories)) | |
1846 (setq expand-local t) | |
1847 | |
1848 ;; If this directory is NOT in the current list of available | |
1849 ;; paths, then use the cache, and set the cache to our new | |
1850 ;; value. Make sure to unhighlight the current file, or if we | |
1851 ;; come back to this directory, it might be a different file | |
1852 ;; and then we get a mess! | |
1853 (if (> (point-max) 1) | |
1854 (progn | |
1855 (speedbar-clear-current-file) | |
1856 (setq speedbar-full-text-cache | |
1857 (cons speedbar-shown-directories (buffer-string))))) | |
1858 | |
1859 ;; Check if our new directory is in the list of directories | |
1860 ;; shown in the text-cache | |
1861 (if (member cbd (car cache)) | |
1862 (setq speedbar-shown-directories (car cache) | |
1863 use-cache t) | |
1864 ;; default the shown directories to this list... | |
1865 (setq speedbar-shown-directories (list cbd))) | |
1866 )) | |
1867 (setq speedbar-last-selected-file nil) | |
1868 (speedbar-with-writable | |
1869 (if (and expand-local | |
1870 ;; Find this directory as a speedbar node. | |
1871 (speedbar-path-line cbd)) | |
1872 ;; Open it. | |
1873 (speedbar-expand-line) | |
1874 (erase-buffer) | |
1875 (cond (use-cache | |
1876 (setq default-directory | |
1877 (nth (1- (length speedbar-shown-directories)) | |
1878 speedbar-shown-directories)) | |
1879 (insert (cdr cache))) | |
1880 (t | |
1881 (while funclst | |
1882 (setq default-directory cbd) | |
1883 (funcall (car funclst) cbd 0) | |
1884 (setq funclst (cdr funclst)))))) | |
1885 (goto-char (point-min))))) | |
1886 (speedbar-reconfigure-menubar)) | |
1887 | |
1888 (defun speedbar-update-special-contents () | |
1889 "Used the mode-specific variable to fill in the speedbar buffer. | |
1890 This should only be used by modes classified as special." | |
1891 (let ((funclst speedbar-special-mode-expansion-list) | |
1892 (specialbuff (current-buffer))) | |
1893 (save-excursion | |
1894 (setq speedbar-desired-buffer specialbuff) | |
1895 (set-buffer speedbar-buffer) | |
1896 ;; If we are leaving a directory, cache it. | |
1897 (if (not speedbar-shown-directories) | |
1898 ;; Do nothing | |
1899 nil | |
1900 ;; Clean up directory maintenance stuff | |
1901 (speedbar-clear-current-file) | |
1902 (setq speedbar-full-text-cache | |
1903 (cons speedbar-shown-directories (buffer-string)) | |
1904 speedbar-shown-directories nil)) | |
1905 ;; Now fill in the buffer with our newly found specialized list. | |
1906 (speedbar-with-writable | |
1907 (while funclst | |
1908 ;; We do not erase the buffer because these functions may | |
1909 ;; decide NOT to update themselves. | |
1910 (funcall (car funclst) specialbuff) | |
1911 (setq funclst (cdr funclst)))) | |
1912 (goto-char (point-min)))) | |
1913 (speedbar-reconfigure-menubar)) | |
1914 | |
1915 (defun speedbar-timer-fn () | |
1916 "Run whenever emacs is idle to update the speedbar item." | |
1917 (if (not (and (frame-live-p speedbar-frame) | |
1918 (frame-live-p speedbar-attached-frame))) | |
1919 (speedbar-set-timer nil) | |
1920 ;; Save all the match data so that we don't mess up executing fns | |
1921 (save-match-data | |
1922 (if (and (frame-visible-p speedbar-frame) speedbar-update-flag) | |
1923 (let ((af (selected-frame))) | |
1924 (save-window-excursion | |
1925 (select-frame speedbar-attached-frame) | |
1926 ;; make sure we at least choose a window to | |
1927 ;; get a good directory from | |
1928 (if (string-match "\\*Minibuf-[0-9]+\\*" (buffer-name)) | |
1929 (other-window 1)) | |
1930 ;; Update for special mode all the time! | |
1931 (if (and speedbar-mode-specific-contents-flag | |
1932 speedbar-special-mode-expansion-list | |
1933 (local-variable-p | |
1934 'speedbar-special-mode-expansion-list | |
1935 (current-buffer))) | |
1936 ;;(eq (get major-mode 'mode-class 'special))) | |
1937 (progn | |
1938 (if (<= 2 speedbar-verbosity-level) | |
1939 (message "Updating speedbar to special mode: %s..." | |
1940 major-mode)) | |
1941 (speedbar-update-special-contents) | |
1942 (if (<= 2 speedbar-verbosity-level) | |
1943 (message "Updating speedbar to special mode: %s...done" | |
1944 major-mode))) | |
1945 ;; Update all the contents if directories change! | |
1946 (if (or (member (expand-file-name default-directory) | |
1947 speedbar-shown-directories) | |
1948 (and speedbar-ignored-path-regexp | |
1949 (string-match | |
1950 speedbar-ignored-path-regexp | |
1951 (expand-file-name default-directory))) | |
1952 (member major-mode speedbar-ignored-modes) | |
1953 (eq af speedbar-frame) | |
1954 (not (buffer-file-name))) | |
1955 nil | |
1956 (if (<= 1 speedbar-verbosity-level) | |
1957 (message "Updating speedbar to: %s..." | |
1958 default-directory)) | |
1959 (speedbar-update-directory-contents) | |
1960 (if (<= 1 speedbar-verbosity-level) | |
1961 (message "Updating speedbar to: %s...done" | |
1962 default-directory)))) | |
1963 (select-frame af)) | |
1964 ;; Now run stealthy updates of time-consuming items | |
1965 (speedbar-stealthy-updates))))) | |
1966 (run-hooks 'speedbar-timer-hook)) | |
1967 | |
1968 | |
1969 ;;; Stealthy activities | |
1970 ;; | |
1971 (defun speedbar-stealthy-updates () | |
1972 "For a given speedbar, run all items in the stealthy function list. | |
1973 Each item returns t if it completes successfully, or nil if | |
1974 interrupted by the user." | |
1975 (let ((l speedbar-stealthy-function-list)) | |
1976 (unwind-protect | |
1977 (while (and l (funcall (car l))) | |
1978 (sit-for 0) | |
1979 (setq l (cdr l))) | |
1980 ;(message "Exit with %S" (car l)) | |
1981 ))) | |
1982 | |
1983 (defun speedbar-reset-scanners () | |
1984 "Reset any variables used by functions in the stealthy list as state. | |
1985 If new functions are added, their state needs to be updated here." | |
1986 (setq speedbar-vc-to-do-point t) | |
1987 (run-hooks 'speedbar-scanner-reset-hook) | |
1988 ) | |
1989 | |
1990 (defun speedbar-clear-current-file () | |
1991 "Locate the file thought to be current, and remove its highlighting." | |
1992 (save-excursion | |
1993 (set-buffer speedbar-buffer) | |
1994 (if speedbar-last-selected-file | |
1995 (speedbar-with-writable | |
1996 (goto-char (point-min)) | |
1997 (if (and | |
1998 speedbar-last-selected-file | |
1999 (re-search-forward | |
2000 (concat " \\(" (regexp-quote speedbar-last-selected-file) | |
2001 "\\)\\(" (regexp-quote speedbar-vc-indicator) | |
2002 "\\)?\n") | |
2003 nil t)) | |
2004 (put-text-property (match-beginning 1) | |
2005 (match-end 1) | |
2006 'face | |
2007 'speedbar-file-face)))))) | |
2008 | |
2009 (defun speedbar-update-current-file () | |
2010 "Find the current file, and update our visuals to indicate its name. | |
2011 This is specific to file names. If the file name doesn't show up, but | |
2012 it should be in the list, then the directory cache needs to be | |
2013 updated." | |
2014 (let* ((lastf (selected-frame)) | |
2015 (newcfd (save-excursion | |
2016 (select-frame speedbar-attached-frame) | |
2017 (let ((rf (if (buffer-file-name) | |
2018 (buffer-file-name) | |
2019 nil))) | |
2020 (select-frame lastf) | |
2021 rf))) | |
2022 (newcf (if newcfd (file-name-nondirectory newcfd))) | |
2023 (lastb (current-buffer)) | |
2024 (sucf-recursive (boundp 'sucf-recursive))) | |
2025 (if (and newcf | |
2026 ;; check here, that way we won't refresh to newcf until | |
2027 ;; its been written, thus saving ourselves some time | |
2028 (file-exists-p newcf) | |
2029 (not (string= newcf speedbar-last-selected-file))) | |
2030 (progn | |
2031 ;; It is important to select the frame, otherwise the window | |
2032 ;; we want the cursor to move in will not be updated by the | |
2033 ;; search-forward command. | |
2034 (select-frame speedbar-frame) | |
2035 ;; Remove the old file... | |
2036 (speedbar-clear-current-file) | |
2037 ;; now highlight the new one. | |
2038 (set-buffer speedbar-buffer) | |
2039 (speedbar-with-writable | |
2040 (goto-char (point-min)) | |
2041 (if (re-search-forward | |
2042 (concat " \\(" (regexp-quote newcf) "\\)\\(" | |
2043 (regexp-quote speedbar-vc-indicator) | |
2044 "\\)?\n") nil t) | |
2045 ;; put the property on it | |
2046 (put-text-property (match-beginning 1) | |
2047 (match-end 1) | |
2048 'face | |
2049 'speedbar-selected-face) | |
2050 ;; Oops, it's not in the list. Should it be? | |
2051 (if (and (string-match speedbar-file-regexp newcf) | |
2052 (string= (file-name-directory newcfd) | |
2053 (expand-file-name default-directory))) | |
2054 ;; yes, it is (we will ignore unknowns for now...) | |
2055 (progn | |
2056 (speedbar-refresh) | |
2057 (if (re-search-forward | |
2058 (concat " \\(" (regexp-quote newcf) "\\)\n") nil t) | |
2059 ;; put the property on it | |
2060 (put-text-property (match-beginning 1) | |
2061 (match-end 1) | |
2062 'face | |
2063 'speedbar-selected-face))) | |
2064 ;; if it's not in there now, whatever... | |
2065 )) | |
2066 (setq speedbar-last-selected-file newcf)) | |
2067 (if (not sucf-recursive) | |
2068 (progn | |
2069 (forward-line -1) | |
2070 (speedbar-position-cursor-on-line))) | |
2071 (set-buffer lastb) | |
2072 (select-frame lastf) | |
2073 ))) | |
2074 ;; return that we are done with this activity. | |
2075 t) | |
2076 | |
2077 ;; Load ange-ftp only if compiling to remove errors. | |
2078 ;; Steven L Baur <steve@xemacs.org> said this was important: | |
2079 (eval-when-compile (or (featurep 'xemacs) (require 'ange-ftp))) | |
2080 | |
2081 (defun speedbar-check-vc () | |
2082 "Scan all files in a directory, and for each see if it's checked out. | |
2083 See `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p' for how | |
2084 to add more types of version control systems." | |
2085 ;; Check for to-do to be reset. If reset but no RCS is available | |
2086 ;; then set to nil (do nothing) otherwise, start at the beginning | |
2087 (save-excursion | |
2088 (set-buffer speedbar-buffer) | |
2089 (if (and speedbar-vc-do-check (eq speedbar-vc-to-do-point t) | |
2090 (speedbar-vc-check-dir-p default-directory) | |
2091 (not (and (featurep 'ange-ftp) | |
2092 (string-match (car | |
2093 (if speedbar-xemacsp | |
2094 ange-ftp-path-format | |
2095 ange-ftp-name-format)) | |
2096 (expand-file-name default-directory))))) | |
2097 (setq speedbar-vc-to-do-point 0)) | |
2098 (if (numberp speedbar-vc-to-do-point) | |
2099 (progn | |
2100 (goto-char speedbar-vc-to-do-point) | |
2101 (while (and (not (input-pending-p)) | |
2102 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] " | |
2103 nil t)) | |
2104 (setq speedbar-vc-to-do-point (point)) | |
2105 (if (speedbar-check-vc-this-line (match-string 1)) | |
2106 (if (not (looking-at (regexp-quote speedbar-vc-indicator))) | |
2107 (speedbar-with-writable (insert speedbar-vc-indicator))) | |
2108 (if (looking-at (regexp-quote speedbar-vc-indicator)) | |
2109 (speedbar-with-writable | |
2110 (delete-region (match-beginning 0) (match-end 0)))))) | |
2111 (if (input-pending-p) | |
2112 ;; return that we are incomplete | |
2113 nil | |
2114 ;; we are done, set to-do to nil | |
2115 (setq speedbar-vc-to-do-point nil) | |
2116 ;; and return t | |
2117 t)) | |
2118 t))) | |
2119 | |
2120 (defun speedbar-check-vc-this-line (depth) | |
2121 "Return t if the file on this line is check of of a version control system. | |
2122 Parameter DEPTH is a string with the current depth of indentation of | |
2123 the file being checked." | |
2124 (let* ((d (string-to-int depth)) | |
2125 (f (speedbar-line-path d)) | |
2126 (fn (buffer-substring-no-properties | |
2127 ;; Skip-chars: thanks ptype@dra.hmg.gb | |
2128 (point) (progn | |
2129 (skip-chars-forward "^ " | |
2130 (save-excursion (end-of-line) | |
2131 (point))) | |
2132 (point)))) | |
2133 (fulln (concat f fn))) | |
2134 (if (<= 2 speedbar-verbosity-level) | |
2135 (message "Speedbar vc check...%s" fulln)) | |
2136 (and (file-writable-p fulln) | |
2137 (speedbar-this-file-in-vc f fn)))) | |
2138 | |
2139 (defun speedbar-vc-check-dir-p (path) | |
2140 "Return t if we should bother checking PATH for version control files. | |
2141 This can be overloaded to add new types of version control systems." | |
2142 (or | |
2143 ;; Local RCS | |
2144 (file-exists-p (concat path "RCS/")) | |
2145 ;; Local SCCS | |
2146 (file-exists-p (concat path "SCCS/")) | |
2147 ;; Remote SCCS project | |
2148 (let ((proj-dir (getenv "PROJECTDIR"))) | |
2149 (if proj-dir | |
2150 (file-exists-p (concat proj-dir "/SCCS")) | |
2151 nil)) | |
2152 ;; User extension | |
2153 (run-hook-with-args 'speedbar-vc-path-enable-hook path) | |
2154 )) | |
2155 | |
2156 (defun speedbar-this-file-in-vc (path name) | |
2157 "Check to see if the file in PATH with NAME is in a version control system. | |
2158 You can add new VC systems by overriding this function. You can | |
2159 optimize this function by overriding it and only doing those checks | |
2160 that will occur on your system." | |
2161 (or | |
2162 ;; RCS file name | |
2163 (file-exists-p (concat path "RCS/" name ",v")) | |
2164 ;; Local SCCS file name | |
2165 (file-exists-p (concat path "SCCS/p." name)) | |
2166 ;; Remote SCCS file name | |
2167 (let ((proj-dir (getenv "PROJECTDIR"))) | |
2168 (if proj-dir | |
2169 (file-exists-p (concat proj-dir "/SCCS/p." name)) | |
2170 nil)) | |
2171 ;; User extension | |
2172 (run-hook-with-args 'speedbar-vc-in-control-hook path name) | |
2173 )) | |
2174 | |
2175 ;;; Clicking Activity | |
2176 ;; | |
2177 (defun speedbar-quick-mouse (e) | |
2178 "Since mouse events are strange, this will keep the mouse nicely positioned. | |
2179 This should be bound to mouse event E." | |
2180 (interactive "e") | |
2181 (mouse-set-point e) | |
2182 (speedbar-position-cursor-on-line) | |
2183 ) | |
2184 | |
2185 (defun speedbar-position-cursor-on-line () | |
2186 "Position the cursor on a line." | |
2187 (let ((oldpos (point))) | |
2188 (beginning-of-line) | |
2189 (if (looking-at "[0-9]+:\\s-*..?.? ") | |
2190 (goto-char (1- (match-end 0))) | |
2191 (goto-char oldpos)))) | |
2192 | |
2193 (defun speedbar-power-click (e) | |
2194 "Activate any speedbar button as a power click. | |
2195 This should be bound to mouse event E." | |
2196 (interactive "e") | |
2197 (let ((speedbar-power-click t)) | |
2198 (speedbar-click e))) | |
2199 | |
2200 (defun speedbar-click (e) | |
2201 "Activate any speedbar buttons where the mouse is clicked. | |
2202 This must be bound to a mouse event. A button is any location of text | |
2203 with a mouse face that has a text property called `speedbar-function'. | |
2204 This should be bound to mouse event E." | |
2205 (interactive "e") | |
2206 (mouse-set-point e) | |
2207 (speedbar-do-function-pointer) | |
2208 (speedbar-quick-mouse e)) | |
2209 | |
2210 (defun speedbar-double-click (e) | |
2211 "Activate any speedbar buttons where the mouse is clicked. | |
2212 This must be bound to a mouse event. A button is any location of text | |
2213 with a mouse face that has a text property called `speedbar-function'. | |
2214 This should be bound to mouse event E." | |
2215 (interactive "e") | |
2216 ;; Emacs only. XEmacs handles this via `mouse-track-click-hook'. | |
2217 (cond ((eq (car e) 'down-mouse-1) | |
2218 (mouse-set-point e)) | |
2219 ((eq (car e) 'mouse-1) | |
2220 (speedbar-quick-mouse e)) | |
2221 ((or (eq (car e) 'double-down-mouse-1) | |
2222 (eq (car e) 'tripple-down-mouse-1)) | |
2223 (mouse-set-point e) | |
2224 (speedbar-do-function-pointer) | |
2225 (speedbar-quick-mouse e)))) | |
2226 | |
2227 (defun speedbar-do-function-pointer () | |
2228 "Look under the cursor and examine the text properties. | |
2229 From this extract the file/tag name, token, indentation level and call | |
2230 a function if appropriate" | |
2231 (let* ((fn (get-text-property (point) 'speedbar-function)) | |
2232 (tok (get-text-property (point) 'speedbar-token)) | |
2233 ;; The 1-,+ is safe because scaning starts AFTER the point | |
2234 ;; specified. This lets the search include the character the | |
2235 ;; cursor is on. | |
2236 (tp (previous-single-property-change | |
2237 (1+ (point)) 'speedbar-function)) | |
2238 (np (next-single-property-change | |
2239 (point) 'speedbar-function)) | |
2240 (txt (buffer-substring-no-properties (or tp (point-min)) | |
2241 (or np (point-max)))) | |
2242 (dent (save-excursion (beginning-of-line) | |
2243 (string-to-number | |
2244 (if (looking-at "[0-9]+") | |
2245 (buffer-substring-no-properties | |
2246 (match-beginning 0) (match-end 0)) | |
2247 "0"))))) | |
2248 ;;(message "%S:%S:%S:%s" fn tok txt dent) | |
2249 (and fn (funcall fn txt tok dent))) | |
2250 (speedbar-position-cursor-on-line)) | |
2251 | |
2252 ;;; Reading info from the speedbar buffer | |
2253 ;; | |
2254 (defun speedbar-line-file (&optional p) | |
2255 "Retrieve the file or whatever from the line at P point. | |
2256 The return value is a string representing the file. If it is a | |
2257 directory, then it is the directory name." | |
2258 (save-excursion | |
2259 (save-match-data | |
2260 (beginning-of-line) | |
2261 (if (looking-at (concat | |
2262 "\\([0-9]+\\): *[[<][-+?][]>] \\([^ \n]+\\)\\(" | |
2263 (regexp-quote speedbar-vc-indicator) | |
2264 "\\)?")) | |
2265 (let* ((depth (string-to-int (match-string 1))) | |
2266 (path (speedbar-line-path depth)) | |
2267 (f (match-string 2))) | |
2268 (concat path f)) | |
2269 nil)))) | |
2270 | |
2271 (defun speedbar-goto-this-file (file) | |
2272 "If FILE is displayed, goto this line and return t. | |
2273 Otherwise do not move and return nil." | |
2274 (let ((path (substring (file-name-directory (expand-file-name file)) | |
2275 (length (expand-file-name default-directory)))) | |
2276 (dest (point))) | |
2277 (save-match-data | |
2278 (goto-char (point-min)) | |
2279 ;; scan all the directories | |
2280 (while (and path (not (eq path t))) | |
2281 (if (string-match "^/?\\([^/]+\\)" path) | |
2282 (let ((pp (match-string 1 path))) | |
2283 (if (save-match-data | |
2284 (re-search-forward (concat "> " (regexp-quote pp) "$") | |
2285 nil t)) | |
2286 (setq path (substring path (match-end 1))) | |
2287 (setq path nil))) | |
2288 (setq path t))) | |
2289 ;; find the file part | |
2290 (if (or (not path) (string= (file-name-nondirectory file) "")) | |
2291 ;; only had a dir part | |
2292 (if path | |
2293 (progn | |
2294 (speedbar-position-cursor-on-line) | |
2295 t) | |
2296 (goto-char dest) nil) | |
2297 ;; find the file part | |
2298 (let ((nd (file-name-nondirectory file))) | |
2299 (if (re-search-forward | |
2300 (concat "] \\(" (regexp-quote nd) | |
2301 "\\)\\(" (regexp-quote speedbar-vc-indicator) "\\)?$") | |
2302 nil t) | |
2303 (progn | |
2304 (speedbar-position-cursor-on-line) | |
2305 t) | |
2306 (goto-char dest) | |
2307 nil)))))) | |
2308 | |
2309 (defun speedbar-line-path (depth) | |
2310 "Retrieve the pathname associated with the current line. | |
2311 This may require traversing backwards from DEPTH and combining the default | |
2312 directory with these items." | |
2313 (save-excursion | |
2314 (save-match-data | |
2315 (let ((path nil)) | |
2316 (setq depth (1- depth)) | |
2317 (while (/= depth -1) | |
2318 (if (not (re-search-backward (format "^%d:" depth) nil t)) | |
2319 (error "Error building path of tag") | |
2320 (cond ((looking-at "[0-9]+:\\s-*<->\\s-+\\([^\n]+\\)$") | |
2321 (setq path (concat (buffer-substring-no-properties | |
2322 (match-beginning 1) (match-end 1)) | |
2323 "/" | |
2324 path))) | |
2325 ((looking-at "[0-9]+:\\s-*[-]\\s-+\\([^\n]+\\)$") | |
2326 ;; This is the start of our path. | |
2327 (setq path (buffer-substring-no-properties | |
2328 (match-beginning 1) (match-end 1)))))) | |
2329 (setq depth (1- depth))) | |
2330 (if (and path | |
2331 (string-match (concat (regexp-quote speedbar-vc-indicator) "$") | |
2332 path)) | |
2333 (setq path (substring path 0 (match-beginning 0)))) | |
2334 (concat default-directory path))))) | |
2335 | |
2336 (defun speedbar-path-line (path) | |
2337 "Position the cursor on the line specified by PATH." | |
2338 (save-match-data | |
2339 (if (string-match "/$" path) | |
2340 (setq path (substring path 0 (match-beginning 0)))) | |
2341 (let ((nomatch t) (depth 0) | |
2342 (fname (file-name-nondirectory path)) | |
2343 (pname (file-name-directory path))) | |
2344 (if (not (member pname speedbar-shown-directories)) | |
2345 (error "Internal Error: File %s not shown in speedbar." path)) | |
2346 (goto-char (point-min)) | |
2347 (while (and nomatch | |
2348 (re-search-forward | |
2349 (concat "[]>] \\(" (regexp-quote fname) | |
2350 "\\)\\(" (regexp-quote speedbar-vc-indicator) "\\)?$") | |
2351 nil t)) | |
2352 (beginning-of-line) | |
2353 (looking-at "\\([0-9]+\\):") | |
2354 (setq depth (string-to-int (match-string 0)) | |
2355 nomatch (not (string= pname (speedbar-line-path depth)))) | |
2356 (end-of-line)) | |
2357 (beginning-of-line) | |
2358 (not nomatch)))) | |
2359 | |
2360 (defun speedbar-edit-line () | |
2361 "Edit whatever tag or file is on the current speedbar line." | |
2362 (interactive) | |
2363 (or (save-excursion | |
2364 (beginning-of-line) | |
2365 ;; If this fails, then it is a non-standard click, and as such, | |
2366 ;; perfectly allowed. | |
2367 (if (re-search-forward "[]>}] [a-zA-Z0-9]" | |
2368 (save-excursion (end-of-line) (point)) | |
2369 t) | |
2370 (speedbar-do-function-pointer) | |
2371 nil)) | |
2372 (speedbar-do-function-pointer))) | |
2373 | |
2374 (defun speedbar-expand-line () | |
2375 "Expand the line under the cursor." | |
2376 (interactive) | |
2377 (beginning-of-line) | |
2378 (re-search-forward ":\\s-*.\\+. " (save-excursion (end-of-line) (point))) | |
2379 (forward-char -2) | |
2380 (speedbar-do-function-pointer)) | |
2381 | |
2382 (defun speedbar-contract-line () | |
2383 "Contract the line under the cursor." | |
2384 (interactive) | |
2385 (beginning-of-line) | |
2386 (re-search-forward ":\\s-*.-. " (save-excursion (end-of-line) (point))) | |
2387 (forward-char -2) | |
2388 (speedbar-do-function-pointer)) | |
2389 | |
2390 (if speedbar-xemacsp | |
2391 (defalias 'speedbar-mouse-event-p 'button-press-event-p) | |
2392 (defun speedbar-mouse-event-p (event) | |
2393 "Return t if the event is a mouse related event" | |
2394 ;; And Emacs does it this way | |
2395 (if (and (listp event) | |
2396 (member (event-basic-type event) | |
2397 '(mouse-1 mouse-2 mouse-3))) | |
2398 t | |
2399 nil))) | |
2400 | |
2401 (defun speedbar-maybee-jump-to-attached-frame () | |
2402 "Jump to the attached frame ONLY if this was not a mouse event." | |
2403 (if (or (not (speedbar-mouse-event-p last-input-event)) | |
2404 speedbar-activity-change-focus-flag) | |
2405 (progn | |
2406 (select-frame speedbar-attached-frame) | |
2407 (other-frame 0)))) | |
2408 | |
2409 (defun speedbar-find-file (text token indent) | |
2410 "Speedbar click handler for filenames. | |
2411 TEXT, the file will be displayed in the attached frame. | |
2412 TOKEN is unused, but required by the click handler. INDENT is the | |
2413 current indentation level." | |
2414 (let ((cdd (speedbar-line-path indent))) | |
2415 (speedbar-find-file-in-frame (concat cdd text)) | |
2416 (speedbar-stealthy-updates) | |
2417 (run-hooks 'speedbar-visiting-file-hook) | |
2418 ;; Reset the timer with a new timeout when cliking a file | |
2419 ;; in case the user was navigating directories, we can cancel | |
2420 ;; that other timer. | |
2421 (speedbar-set-timer speedbar-update-speed)) | |
2422 (speedbar-maybee-jump-to-attached-frame)) | |
2423 | |
2424 (defun speedbar-dir-follow (text token indent) | |
2425 "Speedbar click handler for directory names. | |
2426 Clicking a directory will cause the speedbar to list files in the | |
2427 the subdirectory TEXT. TOKEN is an unused requirement. The | |
2428 subdirectory chosen will be at INDENT level." | |
2429 (setq default-directory | |
2430 (concat (expand-file-name (concat (speedbar-line-path indent) text)) | |
2431 "/")) | |
2432 ;; Because we leave speedbar as the current buffer, | |
2433 ;; update contents will change directory without | |
2434 ;; having to touch the attached frame. | |
2435 (speedbar-update-contents) | |
2436 (speedbar-set-timer speedbar-navigating-speed) | |
2437 (setq speedbar-last-selected-file nil) | |
2438 (speedbar-stealthy-updates)) | |
2439 | |
2440 (defun speedbar-delete-subblock (indent) | |
2441 "Delete text from point to indentation level INDENT or greater. | |
2442 Handles end-of-sublist smartly." | |
2443 (speedbar-with-writable | |
2444 (save-excursion | |
2445 (end-of-line) (forward-char 1) | |
2446 (while (and (not (save-excursion | |
2447 (re-search-forward (format "^%d:" indent) | |
2448 nil t))) | |
2449 (>= indent 0)) | |
2450 (setq indent (1- indent))) | |
2451 (delete-region (point) (if (>= indent 0) | |
2452 (match-beginning 0) | |
2453 (point-max)))))) | |
2454 | |
2455 (defun speedbar-dired (text token indent) | |
2456 "Speedbar click handler for directory expand button. | |
2457 Clicking this button expands or contracts a directory. TEXT is the | |
2458 button clicked which has either a + or -. TOKEN is the directory to be | |
2459 expanded. INDENT is the current indentation level." | |
2460 (cond ((string-match "+" text) ;we have to expand this dir | |
2461 (setq speedbar-shown-directories | |
2462 (cons (expand-file-name | |
2463 (concat (speedbar-line-path indent) token "/")) | |
2464 speedbar-shown-directories)) | |
2465 (speedbar-change-expand-button-char ?-) | |
2466 (speedbar-reset-scanners) | |
2467 (save-excursion | |
2468 (end-of-line) (forward-char 1) | |
2469 (speedbar-with-writable | |
2470 (speedbar-default-directory-list | |
2471 (concat (speedbar-line-path indent) token "/") | |
2472 (1+ indent))))) | |
2473 ((string-match "-" text) ;we have to contract this node | |
2474 (speedbar-reset-scanners) | |
2475 (let ((oldl speedbar-shown-directories) | |
2476 (newl nil) | |
2477 (td (expand-file-name | |
2478 (concat (speedbar-line-path indent) token)))) | |
2479 (while oldl | |
2480 (if (not (string-match (concat "^" (regexp-quote td)) (car oldl))) | |
2481 (setq newl (cons (car oldl) newl))) | |
2482 (setq oldl (cdr oldl))) | |
2483 (setq speedbar-shown-directories newl)) | |
2484 (speedbar-change-expand-button-char ?+) | |
2485 (speedbar-delete-subblock indent) | |
2486 ) | |
2487 (t (error "Ooops... not sure what to do."))) | |
2488 (speedbar-center-buffer-smartly) | |
2489 (setq speedbar-last-selected-file nil) | |
2490 (save-excursion (speedbar-stealthy-updates))) | |
2491 | |
2492 (defun speedbar-directory-buttons-follow (text token indent) | |
2493 "Speedbar click handler for default directory buttons. | |
2494 TEXT is the button clicked on. TOKEN is the directory to follow. | |
2495 INDENT is the current indentation level and is unused." | |
2496 (setq default-directory token) | |
2497 ;; Because we leave speedbar as the current buffer, | |
2498 ;; update contents will change directory without | |
2499 ;; having to touch the attached frame. | |
2500 (speedbar-update-contents) | |
2501 (speedbar-set-timer speedbar-navigating-speed)) | |
2502 | |
2503 (defun speedbar-tag-file (text token indent) | |
2504 "The cursor is on a selected line. Expand the tags in the specified file. | |
2505 The parameter TEXT and TOKEN are required, where TEXT is the button | |
2506 clicked, and TOKEN is the file to expand. INDENT is the current | |
2507 indentation level." | |
2508 (cond ((string-match "+" text) ;we have to expand this file | |
2509 (let* ((fn (expand-file-name (concat (speedbar-line-path indent) | |
2510 token))) | |
2511 (lst (if speedbar-use-imenu-flag | |
2512 (let ((tim (speedbar-fetch-dynamic-imenu fn))) | |
2513 (if (eq tim t) | |
2514 (speedbar-fetch-dynamic-etags fn) | |
2515 tim)) | |
2516 (speedbar-fetch-dynamic-etags fn)))) | |
2517 ;; if no list, then remove expando button | |
2518 (if (not lst) | |
2519 (speedbar-change-expand-button-char ??) | |
2520 (speedbar-change-expand-button-char ?-) | |
2521 (speedbar-with-writable | |
2522 (save-excursion | |
2523 (end-of-line) (forward-char 1) | |
2524 (speedbar-insert-generic-list indent | |
2525 lst 'speedbar-tag-expand | |
2526 'speedbar-tag-find)))))) | |
2527 ((string-match "-" text) ;we have to contract this node | |
2528 (speedbar-change-expand-button-char ?+) | |
2529 (speedbar-delete-subblock indent)) | |
2530 (t (error "Ooops... not sure what to do."))) | |
2531 (speedbar-center-buffer-smartly)) | |
2532 | |
2533 (defun speedbar-tag-find (text token indent) | |
2534 "For the tag TEXT in a file TOKEN, goto that position. | |
2535 INDENT is the current indentation level." | |
2536 (let ((file (speedbar-line-path indent))) | |
2537 (speedbar-find-file-in-frame file) | |
2538 (save-excursion (speedbar-stealthy-updates)) | |
2539 ;; Reset the timer with a new timeout when cliking a file | |
2540 ;; in case the user was navigating directories, we can cancel | |
2541 ;; that other timer. | |
2542 (speedbar-set-timer speedbar-update-speed) | |
2543 (goto-char token) | |
2544 (run-hooks 'speedbar-visiting-tag-hook) | |
2545 ;;(recenter) | |
2546 (speedbar-maybee-jump-to-attached-frame) | |
2547 )) | |
2548 | |
2549 (defun speedbar-tag-expand (text token indent) | |
2550 "Expand a tag sublist. Imenu will return sub-lists of specialized tag types. | |
2551 Etags does not support this feature. TEXT will be the button | |
2552 string. TOKEN will be the list, and INDENT is the current indentation | |
2553 level." | |
2554 (cond ((string-match "+" text) ;we have to expand this file | |
2555 (speedbar-change-expand-button-char ?-) | |
2556 (speedbar-with-writable | |
2557 (save-excursion | |
2558 (end-of-line) (forward-char 1) | |
2559 (speedbar-insert-generic-list indent | |
2560 token 'speedbar-tag-expand | |
2561 'speedbar-tag-find)))) | |
2562 ((string-match "-" text) ;we have to contract this node | |
2563 (speedbar-change-expand-button-char ?+) | |
2564 (speedbar-delete-subblock indent)) | |
2565 (t (error "Ooops... not sure what to do."))) | |
2566 (speedbar-center-buffer-smartly)) | |
2567 | |
2568 ;;; Loading files into the attached frame. | |
2569 ;; | |
2570 (defun speedbar-find-file-in-frame (file) | |
2571 "This will load FILE into the speedbar attached frame. | |
2572 If the file is being displayed in a different frame already, then raise that | |
2573 frame instead." | |
2574 (let* ((buff (find-file-noselect file)) | |
2575 (bwin (get-buffer-window buff 0))) | |
2576 (if bwin | |
2577 (progn | |
2578 (select-window bwin) | |
2579 (raise-frame (window-frame bwin))) | |
2580 (if speedbar-power-click | |
2581 (let ((pop-up-frames t)) (select-window (display-buffer buff))) | |
2582 (select-frame speedbar-attached-frame) | |
2583 (switch-to-buffer buff)))) | |
2584 ) | |
2585 | |
2586 ;;; Centering Utility | |
2587 ;; | |
2588 (defun speedbar-center-buffer-smartly () | |
2589 "Recenter a speedbar buffer so the current indentation level is all visible. | |
2590 This assumes that the cursor is on a file, or tag of a file which the user is | |
2591 interested in." | |
2592 (if (<= (count-lines (point-min) (point-max)) | |
2593 (window-height (selected-window))) | |
2594 ;; whole buffer fits | |
2595 (let ((cp (point))) | |
2596 (goto-char (point-min)) | |
2597 (recenter 0) | |
2598 (goto-char cp)) | |
2599 ;; too big | |
2600 (let (depth start end exp p) | |
2601 (save-excursion | |
2602 (beginning-of-line) | |
2603 (setq depth (if (looking-at "[0-9]+") | |
2604 (string-to-int (buffer-substring-no-properties | |
2605 (match-beginning 0) (match-end 0))) | |
2606 0)) | |
2607 (setq exp (format "^%d:\\s-*[[{<]\\([?+-]\\)[]>}]" depth))) | |
2608 (save-excursion | |
2609 (end-of-line) | |
2610 (if (re-search-backward exp nil t) | |
2611 (setq start (point)) | |
2612 (error "Center error")) | |
2613 (save-excursion ;Not sure about this part. | |
2614 (end-of-line) | |
2615 (setq p (point)) | |
2616 (while (and (not (re-search-forward exp nil t)) | |
2617 (>= depth 0)) | |
2618 (setq depth (1- depth)) | |
2619 (setq exp (format "^%d:\\s-*[[{<]\\([?+-]\\)[]>}]" depth))) | |
2620 (if (/= (point) p) | |
2621 (setq end (point)) | |
2622 (setq end (point-max))))) | |
2623 ;; Now work out the details of centering | |
2624 (let ((nl (count-lines start end)) | |
2625 (cp (point))) | |
2626 (if (> nl (window-height (selected-window))) | |
2627 ;; We can't fit it all, so just center on cursor | |
2628 (progn (goto-char start) | |
2629 (recenter 1)) | |
2630 ;; we can fit everything on the screen, but... | |
2631 (if (and (pos-visible-in-window-p start (selected-window)) | |
2632 (pos-visible-in-window-p end (selected-window))) | |
2633 ;; we are all set! | |
2634 nil | |
2635 ;; we need to do something... | |
2636 (goto-char start) | |
2637 (let ((newcent (/ (- (window-height (selected-window)) nl) 2)) | |
2638 (lte (count-lines start (point-max)))) | |
2639 (if (and (< (+ newcent lte) (window-height (selected-window))) | |
2640 (> (- (window-height (selected-window)) lte 1) | |
2641 newcent)) | |
2642 (setq newcent (- (window-height (selected-window)) | |
2643 lte 1))) | |
2644 (recenter newcent)))) | |
2645 (goto-char cp))))) | |
2646 | |
2647 | |
2648 ;;; Tag Management -- Imenu | |
2649 ;; | |
2650 (if (not speedbar-use-imenu-flag) | |
2651 | |
2652 nil | |
2653 | |
2654 (eval-when-compile (if (locate-library "imenu") (require 'imenu))) | |
2655 | |
2656 (defun speedbar-fetch-dynamic-imenu (file) | |
2657 "Load FILE into a buffer, and generate tags using Imenu. | |
2658 Returns the tag list, or t for an error." | |
2659 ;; Load this AND compile it in | |
2660 (require 'imenu) | |
2661 (save-excursion | |
2662 (set-buffer (find-file-noselect file)) | |
2663 (if speedbar-power-click (setq imenu--index-alist nil)) | |
2664 (condition-case nil | |
2665 (let ((index-alist (imenu--make-index-alist t))) | |
2666 (if speedbar-sort-tags | |
2667 (sort (copy-alist index-alist) | |
2668 (lambda (a b) (string< (car a) (car b)))) | |
2669 index-alist)) | |
2670 (error t)))) | |
2671 ) | |
2672 | |
2673 ;;; Tag Management -- etags (old XEmacs compatibility part) | |
2674 ;; | |
2675 (defvar speedbar-fetch-etags-parse-list | |
2676 '(;; Note that java has the same parse-group as c | |
2677 ("\\.\\([cChH]\\|c\\+\\+\\|cpp\\|cc\\|hh\\|java\\)\\'" . | |
2678 speedbar-parse-c-or-c++tag) | |
2679 ("^\\.emacs$\\|.\\(el\\|l\\|lsp\\)\\'" . | |
2680 "def[^i]+\\s-+\\(\\(\\w\\|[-_]\\)+\\)\\s-*\C-?") | |
2681 ("\\.tex\\'" . speedbar-parse-tex-string) | |
2682 ("\\.p\\'" . | |
2683 "\\(\\(FUNCTION\\|function\\|PROCEDURE\\|procedure\\)\\s-+\\([a-zA-Z0-9_.:]+\\)\\)\\s-*(?^?") | |
2684 ) | |
2685 "Associations of file extensions and expressions for extracting tags. | |
2686 To add a new file type, you would want to add a new association to the | |
2687 list, where the car is the file match, and the cdr is the way to | |
2688 extract an element from the tags output. If the output is complex, | |
2689 use a function symbol instead of regexp. The function should expect | |
2690 to be at the beginning of a line in the etags buffer. | |
2691 | |
2692 This variable is ignored if `speedbar-use-imenu-flag' is non-nil.") | |
2693 | |
2694 (defvar speedbar-fetch-etags-command "etags" | |
2695 "*Command used to create an etags file. | |
2696 | |
2697 This variable is ignored if `speedbar-use-imenu-flag' is t") | |
2698 | |
2699 (defvar speedbar-fetch-etags-arguments '("-D" "-I" "-o" "-") | |
2700 "*List of arguments to use with `speedbar-fetch-etags-command'. | |
2701 This creates an etags output buffer. Use `speedbar-toggle-etags' to | |
2702 modify this list conveniently. | |
2703 | |
2704 This variable is ignored if `speedbar-use-imenu-flag' is t") | |
2705 | |
2706 (defun speedbar-toggle-etags (flag) | |
2707 "Toggle FLAG in `speedbar-fetch-etags-arguments'. | |
2708 FLAG then becomes a member of etags command line arguments. If flag | |
2709 is \"sort\", then toggle the value of `speedbar-sort-tags'. If its | |
2710 value is \"show\" then toggle the value of | |
2711 `speedbar-show-unknown-files'. | |
2712 | |
2713 This function is a convenience function for XEmacs menu created by | |
2714 Farzin Guilak <farzin@protocol.com>" | |
2715 (interactive) | |
2716 (cond | |
2717 ((equal flag "sort") | |
2718 (setq speedbar-sort-tags (not speedbar-sort-tags))) | |
2719 ((equal flag "show") | |
2720 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files))) | |
2721 ((or (equal flag "-C") | |
2722 (equal flag "-S") | |
2723 (equal flag "-D")) | |
2724 (if (member flag speedbar-fetch-etags-arguments) | |
2725 (setq speedbar-fetch-etags-arguments | |
2726 (delete flag speedbar-fetch-etags-arguments)) | |
2727 (add-to-list 'speedbar-fetch-etags-arguments flag))) | |
2728 (t nil))) | |
2729 | |
2730 (defun speedbar-fetch-dynamic-etags (file) | |
2731 "For FILE, run etags and create a list of symbols extracted. | |
2732 Each symbol will be associated with its line position in FILE." | |
2733 (let ((newlist nil)) | |
2734 (unwind-protect | |
2735 (save-excursion | |
2736 (if (get-buffer "*etags tmp*") | |
2737 (kill-buffer "*etags tmp*")) ;kill to clean it up | |
2738 (if (<= 1 speedbar-verbosity-level) (message "Fetching etags...")) | |
2739 (set-buffer (get-buffer-create "*etags tmp*")) | |
2740 (apply 'call-process speedbar-fetch-etags-command nil | |
2741 (current-buffer) nil | |
2742 (append speedbar-fetch-etags-arguments (list file))) | |
2743 (goto-char (point-min)) | |
2744 (if (<= 1 speedbar-verbosity-level) (message "Fetching etags...")) | |
2745 (let ((expr | |
2746 (let ((exprlst speedbar-fetch-etags-parse-list) | |
2747 (ans nil)) | |
2748 (while (and (not ans) exprlst) | |
2749 (if (string-match (car (car exprlst)) file) | |
2750 (setq ans (car exprlst))) | |
2751 (setq exprlst (cdr exprlst))) | |
2752 (cdr ans)))) | |
2753 (if expr | |
2754 (let (tnl) | |
2755 (while (not (save-excursion (end-of-line) (eobp))) | |
2756 (save-excursion | |
2757 (setq tnl (speedbar-extract-one-symbol expr))) | |
2758 (if tnl (setq newlist (cons tnl newlist))) | |
2759 (forward-line 1))) | |
2760 (message "Sorry, no support for a file of that extension")))) | |
2761 ) | |
2762 (if speedbar-sort-tags | |
2763 (sort newlist (lambda (a b) (string< (car a) (car b)))) | |
2764 (reverse newlist)))) | |
2765 | |
2766 ;; This bit donated by Farzin Guilak <farzin@protocol.com> but I'm not | |
2767 ;; sure it's needed with the different sorting method. | |
2768 ;; | |
2769 ;(defun speedbar-clean-etags() | |
2770 ; "Removes spaces before the ^? character, and removes `#define', | |
2771 ;return types, etc. preceding tags. This ensures that the sort operation | |
2772 ;works on the tags, not the return types." | |
2773 ; (save-excursion | |
2774 ; (goto-char (point-min)) | |
2775 ; (while | |
2776 ; (re-search-forward "(?[ \t](?\C-?" nil t) | |
2777 ; (replace-match "\C-?" nil nil)) | |
2778 ; (goto-char (point-min)) | |
2779 ; (while | |
2780 ; (re-search-forward "\\(.*[ \t]+\\)\\([^ \t\n]+.*\C-?\\)" nil t) | |
2781 ; (delete-region (match-beginning 1) (match-end 1))))) | |
2782 | |
2783 (defun speedbar-extract-one-symbol (expr) | |
2784 "At point, return nil, or one alist in the form: ( symbol . position ) | |
2785 The line should contain output from etags. Parse the output using the | |
2786 regular expression EXPR" | |
2787 (let* ((sym (if (stringp expr) | |
2788 (if (save-excursion | |
2789 (re-search-forward expr (save-excursion | |
2790 (end-of-line) | |
2791 (point)) t)) | |
2792 (buffer-substring-no-properties (match-beginning 1) | |
2793 (match-end 1))) | |
2794 (funcall expr))) | |
2795 (pos (let ((j (re-search-forward "[\C-?\C-a]\\([0-9]+\\),\\([0-9]+\\)" | |
2796 (save-excursion | |
2797 (end-of-line) | |
2798 (point)) | |
2799 t))) | |
2800 (if (and j sym) | |
2801 (1+ (string-to-int (buffer-substring-no-properties | |
2802 (match-beginning 2) | |
2803 (match-end 2)))) | |
2804 0)))) | |
2805 (if (/= pos 0) | |
2806 (cons sym pos) | |
2807 nil))) | |
2808 | |
2809 (defun speedbar-parse-c-or-c++tag () | |
2810 "Parse a c or c++ tag, which tends to be a little complex." | |
2811 (save-excursion | |
2812 (let ((bound (save-excursion (end-of-line) (point)))) | |
2813 (cond ((re-search-forward "\C-?\\([^\C-a]+\\)\C-a" bound t) | |
2814 (buffer-substring-no-properties (match-beginning 1) | |
2815 (match-end 1))) | |
2816 ((re-search-forward "\\<\\([^ \t]+\\)\\s-+new(" bound t) | |
2817 (buffer-substring-no-properties (match-beginning 1) | |
2818 (match-end 1))) | |
2819 ((re-search-forward "\\<\\([^ \t(]+\\)\\s-*(\C-?" bound t) | |
2820 (buffer-substring-no-properties (match-beginning 1) | |
2821 (match-end 1))) | |
2822 (t nil)) | |
2823 ))) | |
2824 | |
2825 (defun speedbar-parse-tex-string () | |
2826 "Parse a Tex string. Only find data which is relevant." | |
2827 (save-excursion | |
2828 (let ((bound (save-excursion (end-of-line) (point)))) | |
2829 (cond ((re-search-forward "\\(\\(sub\\)*section\\|chapter\\|cite\\)\\s-*{[^\C-?}]*}?" bound t) | |
2830 (buffer-substring-no-properties (match-beginning 0) | |
2831 (match-end 0))) | |
2832 (t nil))))) | |
2833 | |
2834 | |
2835 ;;; Color loading section This is messy *Blech!* | |
2836 ;; | |
2837 (defface speedbar-button-face '((((class color) (background light)) | |
2838 (:foreground "green4")) | |
2839 (((class color) (background dark)) | |
2840 (:foreground "green3"))) | |
2841 "Face used for +/- buttons." | |
2842 :group 'speedbar-faces) | |
2843 | |
2844 (defface speedbar-file-face '((((class color) (background light)) | |
2845 (:foreground "cyan4")) | |
2846 (((class color) (background dark)) | |
2847 (:foreground "cyan")) | |
2848 (t (:bold t))) | |
2849 "Face used for file names." | |
2850 :group 'speedbar-faces) | |
2851 | |
2852 (defface speedbar-directory-face '((((class color) (background light)) | |
2853 (:foreground "blue4")) | |
2854 (((class color) (background dark)) | |
2855 (:foreground "light blue"))) | |
2856 "Faced used for directory names." | |
2857 :group 'speedbar-faces) | |
2858 (defface speedbar-tag-face '((((class color) (background light)) | |
2859 (:foreground "brown")) | |
2860 (((class color) (background dark)) | |
2861 (:foreground "yellow"))) | |
2862 "Face used for displaying tags." | |
2863 :group 'speedbar-faces) | |
2864 | |
2865 (defface speedbar-selected-face '((((class color) (background light)) | |
2866 (:foreground "red" :underline t)) | |
2867 (((class color) (background dark)) | |
2868 (:foreground "red" :underline t)) | |
2869 (t (:underline t))) | |
2870 "Face used to underline the file in the active window." | |
2871 :group 'speedbar-faces) | |
2872 | |
2873 (defface speedbar-highlight-face '((((class color) (background light)) | |
2874 (:background "green")) | |
2875 (((class color) (background dark)) | |
2876 (:background "sea green")) | |
2877 (((class grayscale monochrome) | |
2878 (background light)) | |
2879 (:background "black")) | |
2880 (((class grayscale monochrome) | |
2881 (background dark)) | |
2882 (:background "white"))) | |
2883 "Face used for highlighting buttons with the mouse." | |
2884 :group 'speedbar-faces) | |
2885 | |
2886 ;; some edebug hooks | |
2887 (add-hook 'edebug-setup-hook | |
2888 (lambda () | |
2889 (def-edebug-spec speedbar-with-writable def-body))) | |
2890 | |
2891 (provide 'speedbar) | |
2892 ;;; speedbar ends here | |
2893 | |
2894 ;; run load-time hooks | |
2895 (run-hooks 'speedbar-load-hook) |