(mail-fetch-field): Doc fix.
[bpt/emacs.git] / lisp / speedbar.el
CommitLineData
59588cd4 1;;; speedbar --- quick access to files and tags in a frame
6b3eac8d
DN
2
3;;; Copyright (C) 1996, 97, 98 Free Software Foundation
59588cd4
KH
4
5;; Author: Eric M. Ludlam <zappo@gnu.org>
0e596101 6;; Version: 0.7.1
59588cd4 7;; Keywords: file, tags, tools
61d7e1dc 8;; X-RCS: $Id: speedbar.el,v 1.5 1998/08/03 17:47:39 zappo Exp zappo $
59588cd4 9
6b3eac8d 10;; This file is part of GNU Emacs.
59588cd4 11
6b3eac8d
DN
12;; GNU Emacs is free software; you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 2, or (at your option)
15;; any later version.
59588cd4 16
6b3eac8d
DN
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
59588cd4 21
6b3eac8d
DN
22;; You should have received a copy of the GNU General Public License
23;; along with GNU Emacs; see the file COPYING. If not, write to the
24;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
25;; Boston, MA 02111-1307, USA.
26
27;;; Commentary:
28;;
29;; The speedbar provides a frame in which files, and locations in
30;; files are displayed. These items can be clicked on with mouse-2
31;; in order to make the last active frame display that file location.
32;;
33;; Starting Speedbar:
34;;
35;; If speedbar came to you as a part of Emacs, simply type
59588cd4 36;; `M-x speedbar', and it will be autoloaded for you.
6b3eac8d
DN
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;;
59588cd4 44;; If you want to choose it from a menu, such as "Tools", you can do this:
6b3eac8d
DN
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
59588cd4 91;; file imenu.el that comes with Emacs. To add new file types which
6b3eac8d
DN
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;;
59588cd4
KH
104;; To enable mouse tracking with information in the minibuffer of
105;; the attached frame, use the variable `speedbar-track-mouse-flag'.
106;;
107;; Tag layout can be modified through `speedbar-tag-hierarchy-method',
108;; which controls how tags are layed out. It is actually a list of
109;; functions that filter the data. The default groups large tag lists
110;; into sub-lists. A long flat list can be used instead if needed.
111;; Other filters could be easily added.
112;;
113;; Users of XEmacs previous to 20 may want to change the default
6b3eac8d
DN
114;; timeouts for `speedbar-update-speed' to something longer as XEmacs
115;; doesn't have idle timers, the speedbar timer keeps going off
116;; arbitrarily while you're typing. It's quite pesky.
117;;
118;; Users of really old emacsen without the needed timers will not
119;; have speedbar updating automatically. Use "r" to refresh the
120;; display after changing directories. Remember, do not interrupt the
121;; stealthy updates or your display may not be completely refreshed.
122;;
6b3eac8d
DN
123;; AUC-TEX users: The imenu tags for AUC-TEX mode don't work very
124;; well. Use the imenu keywords from tex-mode.el for better results.
125;;
126;; This file requires the library package assoc (association lists)
127;; and the package custom (for easy configuration of speedbar)
128;; http://www.dina.kvl.dk/~abraham/custom/
129;;
59588cd4 130;;; Developing for speedbar
6b3eac8d 131;;
59588cd4 132;; Adding a speedbar specialized display mode:
6b3eac8d 133;;
59588cd4
KH
134;; Speedbar can be configured to create a special display for certain
135;; modes that do not display tradition file/tag data. Rmail, Info,
136;; and the debugger are examples. These modes can, however, benefit
137;; from a speedbar style display in their own way.
138;;
139;; If your `major-mode' is `foo-mode', the only requirement is to
140;; create a function called `foo-speedbar-buttons' which takes one
141;; argument, BUFFER. BUFFER will be the buffer speedbar wants filled.
142;; In `foo-speedbar-buttons' there are several functions that make
143;; building a speedbar display easy. See the documentation for
144;; `speedbar-with-writable' (needed because the buffer is usually
145;; read-only) `speedbar-make-tag-line', `speedbar-insert-button', and
146;; `speedbar-insert-generic-list'. If you use
147;; `speedbar-insert-generic-list', also read the doc for
148;; `speedbar-tag-hierarchy-method' in case you wish to override it.
149;; The function `speedbar-with-attached-buffer' brings you back to the
150;; buffer speedbar is displaying for.
151;;
152;; For those functions that make buttons, the "function" should be a
153;; symbol that is the function to call when clicked on. The "token"
154;; is extra data you can pass along. The "function" must take three
155;; parameters. They are (TEXT TOKEN INDENT). TEXT is the text of the
156;; button clicked on. TOKEN is the data passed in when you create the
157;; button. INDENT is an indentation level, or 0. You can store
158;; indentation levels with `speedbar-make-tag-line' which creates a
159;; line with an expander (eg. [+]) and a text button.
160;;
161;; Some useful functions when writing expand functions, and click
162;; functions are `speedbar-change-expand-button-char',
163;; `speedbar-delete-subblock', and `speedbar-center-buffer-smartly'.
164;; The variable `speedbar-power-click' is set to t in your functions
165;; when the user shift-clicks. This indications anything from
166;; refreshing cached data to making a buffer appear in a new frame.
167;;
168;; If you wish to add to the default speedbar menu for the case of
169;; `foo-mode', create a variable `foo-speedbar-menu-items'. This
170;; should be a list compatible with the `easymenu' package. It will
171;; be spliced into the main menu. (Available with click-mouse-3). If
172;; you wish to have extra key bindings in your special mode, create a
173;; variable `foo-speedbar-key-map'. Instead of using `make-keymap',
174;; or `make-sparse-keymap', use the function
175;; `speedbar-make-specialized-keymap'. This lets you inherit all of
176;; speedbar's default bindings with low overhead.
177;;
178;; Adding a speedbar top-level display mode:
179;;
180;; Unlike the specialized modes, there are no name requirements,
181;; however the methods for writing a button display, menu, and keymap
182;; are the same. Once you create these items, you can call the
183;; function `speedbar-add-expansion-list'. It takes one parameter
184;; which is a list element of the form (NAME MENU KEYMAP &rest
185;; BUTTON-FUNCTIONS). NAME is a string that will show up in the
186;; Displays menu item. MENU is a symbol containing the menu items to
187;; splice in. KEYMAP is a symbol holding the keymap to use, and
188;; BUTTON-FUNCTIONS are the function names to call, in order, to create
189;; the display.
6b3eac8d
DN
190
191;;; TODO:
192;; - More functions to create buttons and options
6b3eac8d
DN
193;; - Timeout directories we haven't visited in a while.
194;; - Remeber tags when refreshing the display. (Refresh tags too?)
195;; - More 'special mode support.
6b3eac8d
DN
196
197(require 'assoc)
198(require 'easymenu)
199
59588cd4
KH
200(defvar speedbar-xemacsp (string-match "XEmacs" emacs-version)
201 "Non-nil if we are running in the XEmacs environment.")
202(defvar speedbar-xemacs20p (and speedbar-xemacsp
203 (= emacs-major-version 20)))
204
6b3eac8d
DN
205;; From custom web page for compatibility between versions of custom:
206(eval-and-compile
207 (condition-case ()
208 (require 'custom)
209 (error nil))
59588cd4
KH
210 (if (and (featurep 'custom) (fboundp 'custom-declare-variable)
211 ;; Some XEmacsen w/ custom don't have :set keyword.
212 ;; This protects them against custom.
213 (fboundp 'custom-initialize-set))
6b3eac8d
DN
214 nil ;; We've got what we needed
215 ;; We have the old custom-library, hack around it!
216 (defmacro defgroup (&rest args)
217 nil)
218 (defmacro defface (var values doc &rest args)
219 (` (progn
220 (defvar (, var) (quote (, var)))
221 ;; To make colors for your faces you need to set your .Xdefaults
222 ;; or set them up ahead of time in your .emacs file.
223 (make-face (, var))
224 )))
225 (defmacro defcustom (var value doc &rest args)
226 (` (defvar (, var) (, value) (, doc))))))
227
228;; customization stuff
229(defgroup speedbar nil
230 "File and tag browser frame."
231 :group 'tags
25709c0d 232 :group 'tools
f5f727f8 233 :group 'convenience
25709c0d 234 :version "20.3")
6b3eac8d
DN
235
236(defgroup speedbar-faces nil
237 "Faces used in speedbar."
238 :prefix "speedbar-"
239 :group 'speedbar
240 :group 'faces)
241
242(defgroup speedbar-vc nil
243 "Version control display in speedbar."
244 :prefix "speedbar-"
245 :group 'speedbar)
246
247;;; Code:
59588cd4
KH
248(defvar speedbar-initial-expansion-mode-alist
249 '(("buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map
250 speedbar-buffer-buttons)
251 ("quick buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map
252 speedbar-buffer-buttons-temp)
253 ;; Files last, means first in the Displays menu
254 ("files" speedbar-easymenu-definition-special speedbar-file-key-map
255 speedbar-directory-buttons speedbar-default-directory-list)
256 )
257 "List of named expansion elements for filling the speedbar frame.
258These expansion lists are only valid for regular files. Special modes
259still get to override this list on a mode-by-mode basis. This list of
260lists is of the form (NAME MENU KEYMAP FN1 FN2 ...). NAME is a string
261representing the types of things to be displayed. MENU is an easymenu
262structure used when in this mode. KEYMAP is a local keymap to install
263over the regular speedbar keymap. FN1 ... are functions that will be
264called in order. These functions will always get the default
265directory to use passed in as the first parameter, and a 0 as the
266second parameter. The 0 indicates the uppermost indentation level.
267They must assume that the cursor is at the position where they start
268inserting buttons.")
269
270(defcustom speedbar-initial-expansion-list-name "files"
271 "A symbol name representing the expansion list to use.
272The expansion list `speedbar-initial-expansion-mode-alist' contains
273the names and associated functions to use for buttons in speedbar."
274 :group 'speedbar
275 :type '(radio (const :tag "File Directorys" file)
276 ))
277
278(defvar speedbar-previously-used-expansion-list-name "files"
279 "Save the last expansion list method.
280This is used for returning to a previous expansion list method when
281the user is done with the current expansion list.")
6b3eac8d
DN
282
283(defvar speedbar-stealthy-function-list
59588cd4
KH
284 '(("files"
285 speedbar-update-current-file speedbar-check-vc speedbar-check-objects)
286 )
6b3eac8d 287 "List of functions to periodically call stealthily.
59588cd4
KH
288This list is of the form:
289 '( (\"NAME\" FUNCTION ...)
290 ...)
291where NAME is the name of the major display mode these functions are
292for, and the remaining elements FUNCTION are functions to call in order.
6b3eac8d
DN
293Each function must return nil if interrupted, or t if completed.
294Stealthy functions which have a single operation should always return
295t. Functions which take a long time should maintain a state (where
296they are in their speedbar related calculations) and permit
297interruption. See `speedbar-check-vc' as a good example.")
298
299(defcustom speedbar-mode-specific-contents-flag t
300 "*Non-nil means speedbar will show special mode contents.
301This permits some modes to create customized contents for the speedbar
302frame."
303 :group 'speedbar
304 :type 'boolean)
305
306(defvar speedbar-special-mode-expansion-list nil
59588cd4
KH
307 "Default function list for creating specialized button lists.
308This list is set by modes that wish to have special speedbar displays.
309The list is of function names. Each function is called with one
310parameter BUFFER, the originating buffer. The current buffer is the
311speedbar buffer.")
6b3eac8d 312
59588cd4
KH
313(defvar speedbar-special-mode-key-map nil
314 "Default keymap used when identifying a specialized display mode.
315This keymap is local to each buffer that wants to define special keybindings
316effective when it's display is shown.")
6b3eac8d
DN
317
318(defcustom speedbar-visiting-file-hook nil
319 "Hooks run when speedbar visits a file in the selected frame."
320 :group 'speedbar
321 :type 'hook)
322
323(defcustom speedbar-visiting-tag-hook nil
324 "Hooks run when speedbar visits a tag in the selected frame."
325 :group 'speedbar
326 :type 'hook)
327
328(defcustom speedbar-load-hook nil
329 "Hooks run when speedbar is loaded."
330 :group 'speedbar
331 :type 'hook)
332
333(defcustom speedbar-show-unknown-files nil
334 "*Non-nil show files we can't expand with a ? in the expand button.
335nil means don't show the file in the list."
336 :group 'speedbar
337 :type 'boolean)
338
339(defcustom speedbar-update-speed
340 (if speedbar-xemacsp
341 (if speedbar-xemacs20p
342 2 ; 1 is too obrusive in XEmacs
343 5) ; when no idleness, need long delay
344 1)
345 "*Idle time in seconds needed before speedbar will update itself.
346Updates occur to allow speedbar to display directory information
347relevant to the buffer you are currently editing."
348 :group 'speedbar
349 :type 'integer)
350
59588cd4
KH
351;; When I moved to a repeating timer, I had the horrible missfortune
352;; of loosing the ability for adaptive speed choice. This update
353;; speed currently causes long delays when it should have been turned off.
354(defcustom speedbar-navigating-speed speedbar-update-speed
6b3eac8d
DN
355 "*Idle time to wait after navigation commands in speedbar are executed.
356Navigation commands included expanding/contracting nodes, and moving
357between different directories."
358 :group 'speedbar
359 :type 'integer)
360
361(defcustom speedbar-frame-parameters '((minibuffer . nil)
362 (width . 20)
363 (scroll-bar-width . 10)
364 (border-width . 0)
365 (menu-bar-lines . 0)
366 (unsplittable . t))
367 "*Parameters to use when creating the speedbar frame in Emacs.
368Parameters not listed here which will be added automatically are
369`height' which will be initialized to the height of the frame speedbar
370is attached to."
371 :group 'speedbar
372 :type '(repeat (sexp :tag "Parameter:")))
373
374;; These values by Hrvoje Niksic <hniksic@srce.hr>
375(defcustom speedbar-frame-plist
376 '(minibuffer nil width 20 border-width 0
377 internal-border-width 0 unsplittable t
378 default-toolbar-visible-p nil has-modeline-p nil
379 menubar-visible-p nil
380 ;; I don't see the particular value of these three, but...
381 text-pointer-glyph [cursor-font :data "top_left_arrow"]
382 nontext-pointer-glyph [cursor-font :data "top_left_arrow"]
383 selection-pointer-glyph [cursor-font :data "hand2"])
384 "*Parameters to use when creating the speedbar frame in XEmacs.
385Parameters not listed here which will be added automatically are
386`height' which will be initialized to the height of the frame speedbar
387is attached to."
388 :group 'speedbar
389 :type '(repeat (group :inline t
390 (symbol :tag "Property")
391 (sexp :tag "Value"))))
392
393(defcustom speedbar-use-imenu-flag (stringp (locate-library "imenu"))
394 "*Non-nil means use imenu for file parsing. nil to use etags.
395XEmacs prior to 20.4 doesn't support imenu, therefore the default is to
396use etags instead. Etags support is not as robust as imenu support."
397 :tag "User Imenu"
398 :group 'speedbar
399 :type 'boolean)
400
59588cd4
KH
401(defcustom speedbar-track-mouse-flag t
402 "*Non-nil means to display info about the line under the mouse."
403 :group 'speedbar
404 :type 'boolean)
405
6b3eac8d 406(defcustom speedbar-sort-tags nil
59588cd4 407 "*If Non-nil, sort tags in the speedbar display. *Obsolete*."
6b3eac8d
DN
408 :group 'speedbar
409 :type 'boolean)
410
59588cd4
KH
411(defcustom speedbar-tag-hierarchy-method
412 '(prefix-group trim-words)
413 "*List of methods which speedbar will use to organize tags into groups.
414Groups are defined as expandable meta-tags. Imenu supports such
415things in some languages, such as separating variables from functions.
416Available methods are:
417 sort - Sort tags. (sometimes unnecessary)
418 trim-words - Trim all tags by a common prefix, broken @ word sections.
419 prefix-group - Try to guess groups by prefix.
420 simple-group - If imenu already returned some meta groups, stick all
421 tags that are not in a group into a sub-group."
422 :group 'speedbar
423 :type '(repeat
424 (radio
425 (const :tag "Sort the tags." sort)
426 (const :tag "Trim words to common prefix." trim-words)
427 (const :tag "Create groups from common prefixes." prefix-group)
428 (const :tag "Group loose tags into their own group." simple-group))
429 ))
430
431(defcustom speedbar-tag-split-minimum-length 20
432 "*Minimum length before we stop trying to create sub-lists in tags.
433This is used by all tag-hierarchy methods that break large lists into
434sub-lists."
435 :group 'speedbar
436 :type 'integer)
437
438(defcustom speedbar-tag-regroup-maximum-length 10
439 "*Maximum length of submenus that are regrouped.
440If the regrouping option is used, then if two or more short subgroups
441are next to each other, then they are combined until this number of
442items is reached."
443 :group 'speedbar
444 :type 'integer)
445
6b3eac8d
DN
446(defcustom speedbar-activity-change-focus-flag nil
447 "*Non-nil means the selected frame will change based on activity.
448Thus, if a file is selected for edit, the buffer will appear in the
449selected frame and the focus will change to that frame."
450 :group 'speedbar
451 :type 'boolean)
452
453(defcustom speedbar-directory-button-trim-method 'span
454 "*Indicates how the directory button will be displayed.
455Possible values are:
456 'span - span large directories over multiple lines.
457 'trim - trim large directories to only show the last few.
458 nil - no trimming."
459 :group 'speedbar
460 :type '(radio (const :tag "Span large directories over mutiple lines."
461 span)
462 (const :tag "Trim large directories to only show the last few."
463 trim)
464 (const :tag "No trimming." nil)))
465
466(defcustom speedbar-smart-directory-expand-flag t
467 "*Non-nil means speedbar should use smart expansion.
468Smart expansion only affects when speedbar wants to display a
469directory for a file in the attached frame. When smart expansion is
470enabled, new directories which are children of a displayed directory
471are expanded in the current framework. If nil, then the current
472hierarchy would be replaced with the new directory."
473 :group 'speedbar
474 :type 'boolean)
475
59588cd4
KH
476(defvar speedbar-hide-button-brackets-flag nil
477 "*Non-nil means speedbar will hide the brackets around the + or -.")
478
6b3eac8d
DN
479(defcustom speedbar-before-popup-hook nil
480 "*Hooks called before popping up the speedbar frame."
481 :group 'speedbar
482 :type 'hook)
483
484(defcustom speedbar-before-delete-hook nil
485 "*Hooks called before deleting the speedbar frame."
486 :group 'speedbar
487 :type 'hook)
488
489(defcustom speedbar-mode-hook nil
490 "*Hooks called after creating a speedbar buffer."
491 :group 'speedbar
492 :type 'hook)
493
494(defcustom speedbar-timer-hook nil
495 "*Hooks called after running the speedbar timer function."
496 :group 'speedbar
497 :type 'hook)
498
499(defcustom speedbar-verbosity-level 1
500 "*Verbosity level of the speedbar. 0 means say nothing.
5011 means medium level verbosity. 2 and higher are higher levels of
502verbosity."
503 :group 'speedbar
504 :type 'integer)
505
59588cd4
KH
506(defvar speedbar-indicator-separator " "
507 "String separating file text from indicator characters.")
508
6b3eac8d
DN
509(defcustom speedbar-vc-do-check t
510 "*Non-nil check all files in speedbar to see if they have been checked out.
511Any file checked out is marked with `speedbar-vc-indicator'"
512 :group 'speedbar-vc
513 :type 'boolean)
514
59588cd4 515(defvar speedbar-vc-indicator "*"
6b3eac8d
DN
516 "Text used to mark files which are currently checked out.
517Currently only RCS is supported. Other version control systems can be
518added by examining the function `speedbar-this-file-in-vc' and
519`speedbar-vc-check-dir-p'")
520
6b3eac8d
DN
521(defcustom speedbar-vc-path-enable-hook nil
522 "*Return non-nil if the current path should be checked for Version Control.
523Functions in this hook must accept one parameter which is the path
524being checked."
525 :group 'speedbar-vc
526 :type 'hook)
527
528(defcustom speedbar-vc-in-control-hook nil
529 "*Return non-nil if the specified file is under Version Control.
530Functions in this hook must accept two parameters. The PATH of the
531current file, and the FILENAME of the file being checked."
532 :group 'speedbar-vc
533 :type 'hook)
534
535(defvar speedbar-vc-to-do-point nil
536 "Local variable maintaining the current version control check position.")
537
59588cd4
KH
538(defcustom speedbar-obj-do-check t
539 "*Non-nil check all files in speedbar to see if they have an object file.
540Any file checked out is marked with `speedbar-obj-indicator', and the
541marking is based on `speedbar-obj-alist'"
542 :group 'speedbar-vc
543 :type 'boolean)
544
545(defvar speedbar-obj-to-do-point nil
546 "Local variable maintaining the current version control check position.")
547
548(defvar speedbar-obj-indicator '("#" . "!")
549 "Text used to mark files that have a corresponding hidden object file.
550The car is for an up-to-date object. The cdr is for an out of date object.
551The expression `speedbar-obj-alist' defines who gets tagged.")
552
553(defvar speedbar-obj-alist
554 '(("\\.\\([cpC]\\|cpp\\|cc\\)$" . ".o")
555 ("\\.el$" . ".elc")
556 ("\\.java$" . ".class")
557 ("\\.f\\(or\\|90\\|77\\)?$" . ".o")
558 ("\\.tex$" . ".dvi")
559 ("\\.texi$" . ".info"))
560 "Alist of file extensions, and their corresponding object file type.")
561
562(defvar speedbar-indicator-regex
563 (concat (regexp-quote speedbar-indicator-separator)
564 "\\("
565 (regexp-quote speedbar-vc-indicator)
566 "\\|"
567 (regexp-quote (car speedbar-obj-indicator))
568 "\\|"
569 (regexp-quote (cdr speedbar-obj-indicator))
570 "\\)*")
571 "Regular expression used when identifying files.
572Permits stripping of indicator characters from a line.")
573
574(defcustom speedbar-scanner-reset-hook nil
575 "*Hook called whenever generic scanners are reset.
576Set this to implement your own scanning / rescan safe functions with
577state data."
578 :group 'speedbar
579 :type 'hook)
580
6b3eac8d
DN
581(defvar speedbar-ignored-modes nil
582 "*List of major modes which speedbar will not switch directories for.")
583
584(defun speedbar-extension-list-to-regex (extlist)
585 "Takes EXTLIST, a list of extensions and transforms it into regexp.
59588cd4
KH
586All the preceding `.' are stripped for an optimized expression starting
587with `.' followed by extensions, followed by full-filenames."
6b3eac8d
DN
588 (let ((regex1 nil) (regex2 nil))
589 (while extlist
590 (if (= (string-to-char (car extlist)) ?.)
591 (setq regex1 (concat regex1 (if regex1 "\\|" "")
592 (substring (car extlist) 1)))
593 (setq regex2 (concat regex2 (if regex2 "\\|" "") (car extlist))))
594 (setq extlist (cdr extlist)))
595 ;; concat all the sub-exressions together, making sure all types
596 ;; of parts exist during concatination.
597 (concat "\\("
598 (if regex1 (concat "\\(\\.\\(" regex1 "\\)\\)") "")
599 (if (and regex1 regex2) "\\|" "")
600 (if regex2 (concat "\\(" regex2 "\\)") "")
601 "\\)$")))
602
603(defvar speedbar-ignored-path-regexp nil
604 "Regular expression matching paths speedbar will not switch to.
605Created from `speedbar-ignored-path-expressions' with the function
606`speedbar-extension-list-to-regex' (A misnamed function in this case.)
607Use the function `speedbar-add-ignored-path-regexp', or customize the
608variable `speedbar-ignored-path-expressions' to modify this variable.")
609
610(defcustom speedbar-ignored-path-expressions
611 '("/logs?/\\'")
612 "*List of regular expressions matching directories speedbar will ignore.
613They should included paths to directories which are notoriously very
614large and take a long time to load in. Use the function
615`speedbar-add-ignored-path-regexp' to add new items to this list after
616speedbar is loaded. You may place anything you like in this list
617before speedbar has been loaded."
618 :group 'speedbar
619 :type '(repeat (regexp :tag "Path Regexp"))
620 :set (lambda (sym val)
621 (setq speedbar-ignored-path-expressions val
622 speedbar-ignored-path-regexp
623 (speedbar-extension-list-to-regex val))))
624
59588cd4
KH
625(defcustom speedbar-directory-unshown-regexp "^\\(CVS\\|RCS\\|SCCS\\)\\'"
626 "*Regular expression matching directories not to show in speedbar.
627They should include commonly existing directories which are not
628useful, such as version control."
629 :group 'speedbar
630 :type 'string)
631
6b3eac8d
DN
632(defvar speedbar-file-unshown-regexp
633 (let ((nstr "") (noext completion-ignored-extensions))
634 (while noext
635 (setq nstr (concat nstr (regexp-quote (car noext)) "\\'"
636 (if (cdr noext) "\\|" ""))
637 noext (cdr noext)))
638 (concat nstr "\\|#[^#]+#$\\|\\.\\.?\\'"))
639 "*Regexp matching files we don't want displayed in a speedbar buffer.
640It is generated from the variable `completion-ignored-extensions'")
641
642;; this is dangerous to customize, because the defaults will probably
643;; change in the future.
644(defcustom speedbar-supported-extension-expressions
59588cd4
KH
645 (append '(".[ch]\\(\\+\\+\\|pp\\|c\\|h\\|xx\\)?" ".tex\\(i\\(nfo\\)?\\)?"
646 ".el" ".emacs" ".l" ".lsp" ".p" ".java" ".f\\(90\\|77\\|or\\)?")
6b3eac8d 647 (if speedbar-use-imenu-flag
59588cd4
KH
648 '(".ada" ".pl" ".tcl" ".m" ".scm" ".pm" ".py"
649 ;; html is not supported by default, but an imenu tags package
650 ;; is available. Also, html files are nice to be able to see.
651 ".s?html"
6b3eac8d
DN
652 "Makefile\\(\\.in\\)?")))
653 "*List of regular expressions which will match files supported by tagging.
654Do not prefix the `.' char with a double \\ to quote it, as the period
655will be stripped by a simplified optimizer when compiled into a
656singular expression. This variable will be turned into
657`speedbar-file-regexp' for use with speedbar. You should use the
658function `speedbar-add-supported-extension' to add a new extension at
659runtime, or use the configuration dialog to set it in your .emacs
660file."
661 :group 'speedbar
662 :type '(repeat (regexp :tag "Extension Regexp"))
663 :set (lambda (sym val)
664 (setq speedbar-supported-extension-expressions val
665 speedbar-file-regexp (speedbar-extension-list-to-regex val)))
666 )
667
668(defvar speedbar-file-regexp
669 (speedbar-extension-list-to-regex speedbar-supported-extension-expressions)
670 "Regular expression matching files we know how to expand.
671Created from `speedbar-supported-extension-expression' with the
672function `speedbar-extension-list-to-regex'")
673
674(defun speedbar-add-supported-extension (extension)
675 "Add EXTENSION as a new supported extension for speedbar tagging.
676This should start with a `.' if it is not a complete file name, and
677the dot should NOT be quoted in with \\. Other regular expression
678matchers are allowed however. EXTENSION may be a single string or a
679list of strings."
59588cd4 680 (interactive "sExtionsion: ")
6b3eac8d
DN
681 (if (not (listp extension)) (setq extension (list extension)))
682 (while extension
683 (if (member (car extension) speedbar-supported-extension-expressions)
684 nil
685 (setq speedbar-supported-extension-expressions
686 (cons (car extension) speedbar-supported-extension-expressions)))
687 (setq extension (cdr extension)))
688 (setq speedbar-file-regexp (speedbar-extension-list-to-regex
689 speedbar-supported-extension-expressions)))
690
691(defun speedbar-add-ignored-path-regexp (path-expression)
692 "Add PATH-EXPRESSION as a new ignored path for speedbar tracking.
693This function will modify `speedbar-ignored-path-regexp' and add
694PATH-EXPRESSION to `speedbar-ignored-path-expressions'."
59588cd4 695 (interactive "sPath regex: ")
6b3eac8d
DN
696 (if (not (listp path-expression))
697 (setq path-expression (list path-expression)))
698 (while path-expression
699 (if (member (car path-expression) speedbar-ignored-path-expressions)
700 nil
701 (setq speedbar-ignored-path-expressions
702 (cons (car path-expression) speedbar-ignored-path-expressions)))
703 (setq path-expression (cdr path-expression)))
704 (setq speedbar-ignored-path-regexp (speedbar-extension-list-to-regex
705 speedbar-ignored-path-expressions)))
706
707;; If we don't have custom, then we set it here by hand.
708(if (not (fboundp 'custom-declare-variable))
709 (setq speedbar-file-regexp (speedbar-extension-list-to-regex
710 speedbar-supported-extension-expressions)
711 speedbar-ignored-path-regexp (speedbar-extension-list-to-regex
712 speedbar-ignored-path-expressions)))
713
59588cd4
KH
714(defvar speedbar-update-flag (and
715 (or (fboundp 'run-with-idle-timer)
716 (fboundp 'start-itimer)
717 (boundp 'post-command-idle-hook))
718 window-system)
6b3eac8d
DN
719 "*Non-nil means to automatically update the display.
720When this is nil then speedbar will not follow the attached frame's path.
721When speedbar is active, use:
722
723\\<speedbar-key-map> `\\[speedbar-toggle-updates]'
724
725to toggle this value.")
726
727(defvar speedbar-syntax-table nil
728 "Syntax-table used on the speedbar.")
729
730(if speedbar-syntax-table
731 nil
732 (setq speedbar-syntax-table (make-syntax-table))
733 ;; turn off paren matching around here.
734 (modify-syntax-entry ?\' " " speedbar-syntax-table)
735 (modify-syntax-entry ?\" " " speedbar-syntax-table)
736 (modify-syntax-entry ?( " " speedbar-syntax-table)
737 (modify-syntax-entry ?) " " speedbar-syntax-table)
738 (modify-syntax-entry ?[ " " speedbar-syntax-table)
739 (modify-syntax-entry ?] " " speedbar-syntax-table))
740
6b3eac8d
DN
741(defvar speedbar-key-map nil
742 "Keymap used in speedbar buffer.")
743
744(if speedbar-key-map
745 nil
746 (setq speedbar-key-map (make-keymap))
747 (suppress-keymap speedbar-key-map t)
748
749 ;; control
6b3eac8d
DN
750 (define-key speedbar-key-map "g" 'speedbar-refresh)
751 (define-key speedbar-key-map "t" 'speedbar-toggle-updates)
752 (define-key speedbar-key-map "q" 'speedbar-close-frame)
6b3eac8d
DN
753
754 ;; navigation
755 (define-key speedbar-key-map "n" 'speedbar-next)
756 (define-key speedbar-key-map "p" 'speedbar-prev)
59588cd4
KH
757 (define-key speedbar-key-map "\M-n" 'speedbar-restricted-next)
758 (define-key speedbar-key-map "\M-p" 'speedbar-restricted-prev)
759 (define-key speedbar-key-map "\C-\M-n" 'speedbar-forward-list)
760 (define-key speedbar-key-map "\C-\M-p" 'speedbar-backward-list)
6b3eac8d
DN
761 (define-key speedbar-key-map " " 'speedbar-scroll-up)
762 (define-key speedbar-key-map [delete] 'speedbar-scroll-down)
763
59588cd4
KH
764 ;; Short cuts I happen to find useful
765 (define-key speedbar-key-map "r"
766 (lambda () (interactive)
767 (speedbar-change-initial-expansion-list
768 speedbar-previously-used-expansion-list-name)))
769 (define-key speedbar-key-map "b"
770 (lambda () (interactive)
771 (speedbar-change-initial-expansion-list "quick buffers")))
772 (define-key speedbar-key-map "f"
773 (lambda () (interactive)
774 (speedbar-change-initial-expansion-list "files")))
775
776 ;; Overrides
777 (substitute-key-definition 'switch-to-buffer
778 'speedbar-switch-buffer-attached-frame
779 speedbar-key-map global-map)
6b3eac8d
DN
780
781 (if speedbar-xemacsp
782 (progn
783 ;; mouse bindings so we can manipulate the items on each line
784 (define-key speedbar-key-map 'button2 'speedbar-click)
785 (define-key speedbar-key-map '(shift button2) 'speedbar-power-click)
59588cd4
KH
786 ;; Info doc fix from Bob Weiner
787 (if (featurep 'infodoc)
788 nil
789 (define-key speedbar-key-map 'button3 'speedbar-xemacs-popup-kludge))
790 (define-key speedbar-key-map '(meta button3) 'speedbar-mouse-item-info)
791 )
792
6b3eac8d
DN
793 ;; mouse bindings so we can manipulate the items on each line
794 (define-key speedbar-key-map [down-mouse-1] 'speedbar-double-click)
795 (define-key speedbar-key-map [mouse-2] 'speedbar-click)
796 ;; This is the power click for new frames, or refreshing a cache
797 (define-key speedbar-key-map [S-mouse-2] 'speedbar-power-click)
798 ;; This adds a small unecessary visual effect
799 ;;(define-key speedbar-key-map [down-mouse-2] 'speedbar-quick-mouse)
800 (define-key speedbar-key-map [M-mouse-2] 'speedbar-mouse-item-info)
801
802 (define-key speedbar-key-map [down-mouse-3] 'speedbar-emacs-popup-kludge)
803
6b3eac8d
DN
804 ;; This lets the user scroll as if we had a scrollbar... well maybe not
805 (define-key speedbar-key-map [mode-line mouse-2] 'speedbar-mouse-hscroll)
59588cd4
KH
806 ;; another handy place users might click to get our menu.
807 (define-key speedbar-key-map [mode-line down-mouse-1]
808 'speedbar-emacs-popup-kludge)
809
0e596101
EL
810 ;; We can't switch buffers with the buffer mouse menu. Lets hack it.
811 (define-key speedbar-key-map [C-down-mouse-1] 'speedbar-hack-buffer-menu)
812
59588cd4
KH
813 ;; Lastly, we want to track the mouse. Play here
814 (define-key speedbar-key-map [mouse-movement] 'speedbar-track-mouse)
815 ))
816
817(defun speedbar-make-specialized-keymap ()
818 "Create a keymap for use w/ a speedbar major or minor display mode.
819This basically creates a sparse keymap, and makes it's parent be
820`speedbar-key-map'."
821 (let ((k (make-sparse-keymap)))
822 (set-keymap-parent k speedbar-key-map)
823 k))
824
825(defvar speedbar-file-key-map nil
826 "Keymap used in speedbar buffer while files are displayed.")
827
828(if speedbar-file-key-map
829 nil
830 (setq speedbar-file-key-map (speedbar-make-specialized-keymap))
831
832 ;; Basic tree features
833 (define-key speedbar-file-key-map "e" 'speedbar-edit-line)
834 (define-key speedbar-file-key-map "\C-m" 'speedbar-edit-line)
835 (define-key speedbar-file-key-map "+" 'speedbar-expand-line)
836 (define-key speedbar-file-key-map "-" 'speedbar-contract-line)
837
838 ;; file based commands
839 (define-key speedbar-file-key-map "U" 'speedbar-up-directory)
840 (define-key speedbar-file-key-map "I" 'speedbar-item-info)
841 (define-key speedbar-file-key-map "B" 'speedbar-item-byte-compile)
842 (define-key speedbar-file-key-map "L" 'speedbar-item-load)
843 (define-key speedbar-file-key-map "C" 'speedbar-item-copy)
844 (define-key speedbar-file-key-map "D" 'speedbar-item-delete)
845 (define-key speedbar-file-key-map "O" 'speedbar-item-object-delete)
846 (define-key speedbar-file-key-map "R" 'speedbar-item-rename)
847 )
6b3eac8d
DN
848
849(defvar speedbar-easymenu-definition-base
850 '("Speedbar"
851 ["Update" speedbar-refresh t]
852 ["Auto Update" speedbar-toggle-updates
853 :style toggle :selected speedbar-update-flag]
854 )
855 "Base part of the speedbar menu.")
856
857(defvar speedbar-easymenu-definition-special
858 '(["Edit Item On Line" speedbar-edit-line t]
859 ["Show All Files" speedbar-toggle-show-all-files
860 :style toggle :selected speedbar-show-unknown-files]
59588cd4 861 ["Expand File Tags" speedbar-expand-line
6b3eac8d
DN
862 (save-excursion (beginning-of-line)
863 (looking-at "[0-9]+: *.\\+. "))]
59588cd4 864 ["Contract File Tags" speedbar-contract-line
6b3eac8d
DN
865 (save-excursion (beginning-of-line)
866 (looking-at "[0-9]+: *.-. "))]
59588cd4
KH
867; ["Sort Tags" speedbar-toggle-sorting
868; :style toggle :selected speedbar-sort-tags]
6b3eac8d 869 "----"
59588cd4 870 ["File/Tag Information" speedbar-item-info t]
6b3eac8d
DN
871 ["Load Lisp File" speedbar-item-load
872 (save-excursion
873 (beginning-of-line)
59588cd4 874 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))]
6b3eac8d
DN
875 ["Byte Compile File" speedbar-item-byte-compile
876 (save-excursion
877 (beginning-of-line)
59588cd4
KH
878 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))]
879 ["Copy File" speedbar-item-copy
6b3eac8d 880 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *\\["))]
59588cd4 881 ["Rename File" speedbar-item-rename
6b3eac8d 882 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))]
59588cd4
KH
883 ["Delete File" speedbar-item-delete
884 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))]
885 ["Delete Object" speedbar-item-object-delete
886 (save-excursion (beginning-of-line)
887 (looking-at "[0-9]+: *\\[[+-]\\] [^ \n]+ \\*?[!#]$"))]
888 )
6b3eac8d
DN
889 "Additional menu items while in file-mode.")
890
891(defvar speedbar-easymenu-definition-trailer
59588cd4
KH
892 (list
893 (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
894 ["Customize..." speedbar-customize t])
895 ["Close" speedbar-close-frame t])
6b3eac8d
DN
896 "Menu items appearing at the end of the speedbar menu.")
897
898(defvar speedbar-desired-buffer nil
899 "Non-nil when speedbar is showing buttons specific a special mode.
900In this case it is the originating buffer.")
901(defvar speedbar-buffer nil
902 "The buffer displaying the speedbar.")
903(defvar speedbar-frame nil
904 "The frame displaying speedbar.")
905(defvar speedbar-cached-frame nil
906 "The frame that was last created, then removed from the display.")
907(defvar speedbar-full-text-cache nil
908 "The last open directory is saved in its entirety for ultra-fast switching.")
909(defvar speedbar-timer nil
910 "The speedbar timer used for updating the buffer.")
911(defvar speedbar-attached-frame nil
912 "The frame which started speedbar mode.
913This is the frame from which all data displayed in the speedbar is
914gathered, and in which files and such are displayed.")
915
916(defvar speedbar-last-selected-file nil
917 "The last file which was selected in speedbar buffer.")
918
919(defvar speedbar-shown-directories nil
920 "Maintain list of directories simultaneously open in the current speedbar.")
921
922(defvar speedbar-directory-contents-alist nil
923 "An association list of directories and their contents.
924Each sublist was returned by `speedbar-file-lists'. This list is
925maintained to speed up the refresh rate when switching between
926directories.")
927
928(defvar speedbar-power-click nil
929 "Never set this by hand. Value is t when S-mouse activity occurs.")
930
931\f
932;;; Mode definitions/ user commands
933;;
934
935;;;###autoload
936(defalias 'speedbar 'speedbar-frame-mode)
937;;;###autoload
938(defun speedbar-frame-mode (&optional arg)
939 "Enable or disable speedbar. Positive ARG means turn on, negative turn off.
940nil means toggle. Once the speedbar frame is activated, a buffer in
941`speedbar-mode' will be displayed. Currently, only one speedbar is
942supported at a time.
943`speedbar-before-popup-hook' is called before popping up the speedbar frame.
944`speedbar-before-delete-hook' is called before the frame is deleted."
945 (interactive "P")
6b3eac8d
DN
946 ;; toggle frame on and off.
947 (if (not arg) (if (and (frame-live-p speedbar-frame)
948 (frame-visible-p speedbar-frame))
949 (setq arg -1) (setq arg 1)))
950 ;; turn the frame off on neg number
951 (if (and (numberp arg) (< arg 0))
952 (progn
953 (run-hooks 'speedbar-before-delete-hook)
954 (if (and speedbar-frame (frame-live-p speedbar-frame))
955 (progn
956 (setq speedbar-cached-frame speedbar-frame)
957 (make-frame-invisible speedbar-frame)))
958 (setq speedbar-frame nil)
959 (speedbar-set-timer nil)
960 ;; Used to delete the buffer. This has the annoying affect of
961 ;; preventing whatever took its place from ever appearing
962 ;; as the default after a C-x b was typed
963 ;;(if (bufferp speedbar-buffer)
964 ;; (kill-buffer speedbar-buffer))
965 )
966 ;; Set this as our currently attached frame
967 (setq speedbar-attached-frame (selected-frame))
968 (run-hooks 'speedbar-before-popup-hook)
969 ;; Get the frame to work in
970 (if (frame-live-p speedbar-cached-frame)
971 (progn
972 (setq speedbar-frame speedbar-cached-frame)
973 (make-frame-visible speedbar-frame)
974 ;; Get the buffer to play with
975 (speedbar-mode)
976 (select-frame speedbar-frame)
977 (if (not (eq (current-buffer) speedbar-buffer))
978 (switch-to-buffer speedbar-buffer))
979 (set-window-dedicated-p (selected-window) t)
980 (raise-frame speedbar-frame)
981 (speedbar-set-timer speedbar-update-speed)
982 )
983 (if (frame-live-p speedbar-frame)
984 (raise-frame speedbar-frame)
985 (setq speedbar-frame
986 (if speedbar-xemacsp
987 (make-frame (nconc (list 'height
988 (speedbar-needed-height))
989 speedbar-frame-plist))
990 (let* ((mh (cdr (assoc 'menu-bar-lines (frame-parameters))))
991 (params (append speedbar-frame-parameters
992 (list (cons
993 'height
994 (if speedbar-xemacsp
995 (speedbar-needed-height)
996 (+ mh (frame-height))))))))
59588cd4
KH
997 (if (or (< emacs-major-version 20);;a bug is fixed in v20
998 (not (eq window-system 'x)))
6b3eac8d
DN
999 (make-frame params)
1000 (let ((x-pointer-shape x-pointer-top-left-arrow)
1001 (x-sensitive-text-pointer-shape x-pointer-hand2))
1002 (make-frame params))))))
1003 ;; reset the selection variable
1004 (setq speedbar-last-selected-file nil)
1005 ;; Put the buffer into the frame
1006 (save-window-excursion
1007 ;; Get the buffer to play with
1008 (speedbar-mode)
1009 (select-frame speedbar-frame)
1010 (switch-to-buffer speedbar-buffer)
1011 (set-window-dedicated-p (selected-window) t))
0e596101
EL
1012 (if (or (null window-system) (eq window-system 'pc))
1013 (progn
1014 (select-frame speedbar-frame)
1015 (set-frame-name "Speedbar")))
6b3eac8d
DN
1016 (speedbar-set-timer speedbar-update-speed)))))
1017
1018;;;###autoload
1019(defun speedbar-get-focus ()
1020 "Change frame focus to or from the speedbar frame.
1021If the selected frame is not speedbar, then speedbar frame is
1022selected. If the speedbar frame is active, then select the attached frame."
1023 (interactive)
1024 (if (eq (selected-frame) speedbar-frame)
1025 (if (frame-live-p speedbar-attached-frame)
1026 (select-frame speedbar-attached-frame))
59588cd4
KH
1027 ;; If updates are off, then refresh the frame (they want it now...)
1028 (if (not speedbar-update-flag)
1029 (let ((speedbar-update-flag t))
1030 (speedbar-timer-fn)))
6b3eac8d
DN
1031 ;; make sure we have a frame
1032 (if (not (frame-live-p speedbar-frame)) (speedbar-frame-mode 1))
1033 ;; go there
59588cd4
KH
1034 (select-frame speedbar-frame)
1035 )
6b3eac8d
DN
1036 (other-frame 0))
1037
1038(defun speedbar-close-frame ()
1039 "Turn off a currently active speedbar."
1040 (interactive)
1041 (speedbar-frame-mode -1)
1042 (select-frame speedbar-attached-frame)
1043 (other-frame 0))
1044
59588cd4
KH
1045(defun speedbar-switch-buffer-attached-frame (&optional buffer)
1046 "Switch to BUFFER in speedbar's attached frame, and raise that frame.
1047This overrides the default behavior of `switch-to-buffer' which is
1048broken because of the dedicated speedbar frame."
1049 (interactive)
1050 ;; Assume we are in the speedbar frame.
1051 (speedbar-get-focus)
1052 ;; Now switch buffers
1053 (if buffer
1054 (switch-to-buffer buffer)
1055 (call-interactively 'switch-to-buffer nil nil)))
1056
6b3eac8d
DN
1057(defmacro speedbar-frame-width ()
1058 "Return the width of the speedbar frame in characters.
1059nil if it doesn't exist."
1060 '(frame-width speedbar-frame))
1061
1062;; XEmacs function only.
1063(defun speedbar-needed-height (&optional frame)
1064 "The needed height for the tool bar FRAME (in characters)."
1065 (or frame (setq frame (selected-frame)))
1066 ;; The 1 is the missing modeline/minibuffer
1067 (+ 1 (/ (frame-pixel-height frame)
1068 (face-height 'default frame))))
1069
1070(defun speedbar-mode ()
1071 "Major mode for managing a display of directories and tags.
1072\\<speedbar-key-map>
1073The first line represents the default path of the speedbar frame.
1074Each directory segment is a button which jumps speedbar's default
1075directory to that path. Buttons are activated by clicking `\\[speedbar-click]'.
1076In some situations using `\\[speedbar-power-click]' is a `power click' which will
1077rescan cached items, or pop up new frames.
1078
1079Each line starting with <+> represents a directory. Click on the <+>
1080to insert the directory listing into the current tree. Click on the
1081<-> to retract that list. Click on the directory name to go to that
1082directory as the default.
1083
1084Each line starting with [+] is a file. If the variable
1085`speedbar-show-unknown-files' is t, the lines starting with [?] are
1086files which don't have imenu support, but are not expressly ignored.
1087Files are completely ignored if they match `speedbar-file-unshown-regexp'
1088which is generated from `completion-ignored-extensions'.
1089
1090Files with a `*' character after their name are files checked out of a
1091version control system. (currently only RCS is supported.) New
1092version control systems can be added by examining the documentation
1093for `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p'
1094
59588cd4
KH
1095Files with a `#' or `!' character after them are source files that
1096have an object file associated with them. The `!' indicates that the
1097files is out of date. You can control what source/object associations
1098exist through the variable `speedbar-obj-alist'.
1099
6b3eac8d
DN
1100Click on the [+] to display a list of tags from that file. Click on
1101the [-] to retract the list. Click on the file name to edit the file
1102in the attached frame.
1103
1104If you open tags, you might find a node starting with {+}, which is a
1105category of tags. Click the {+} to expand the category. Jump-able
1106tags start with >. Click the name of the tag to go to that position
1107in the selected file.
1108
1109\\{speedbar-key-map}"
1110 ;; NOT interactive
1111 (save-excursion
1112 (setq speedbar-buffer (set-buffer (get-buffer-create " SPEEDBAR")))
1113 (kill-all-local-variables)
1114 (setq major-mode 'speedbar-mode)
1115 (setq mode-name "Speedbar")
6b3eac8d
DN
1116 (set-syntax-table speedbar-syntax-table)
1117 (setq font-lock-keywords nil) ;; no font-locking please
1118 (setq truncate-lines t)
1119 (make-local-variable 'frame-title-format)
1120 (setq frame-title-format "Speedbar")
1121 ;; Set this up special just for the speedbar buffer
59588cd4 1122 ;; Terminal minibuffer stuff does not require this.
0e596101
EL
1123 (if (and window-system (not (eq window-system 'pc))
1124 (null default-minibuffer-frame))
6b3eac8d
DN
1125 (progn
1126 (make-local-variable 'default-minibuffer-frame)
1127 (setq default-minibuffer-frame speedbar-attached-frame)))
59588cd4
KH
1128 ;; Correct use of `temp-buffer-show-function': Bob Weiner
1129 (if (and (boundp 'temp-buffer-show-hook)
1130 (boundp 'temp-buffer-show-function))
1131 (progn (make-local-variable 'temp-buffer-show-hook)
1132 (setq temp-buffer-show-hook temp-buffer-show-function)))
6b3eac8d
DN
1133 (make-local-variable 'temp-buffer-show-function)
1134 (setq temp-buffer-show-function 'speedbar-temp-buffer-show-function)
1135 (if speedbar-xemacsp
1136 (progn
1137 ;; Argh! mouse-track-click-hook doesn't understand the
1138 ;; make-local-hook conventions.
1139 (make-local-variable 'mouse-track-click-hook)
1140 (add-hook 'mouse-track-click-hook
1141 (lambda (event count)
1142 (if (/= (event-button event) 1)
1143 nil ; Do normal operations.
1144 (cond ((eq count 1)
1145 (speedbar-quick-mouse event))
1146 ((or (eq count 2)
1147 (eq count 3))
1148 (mouse-set-point event)
1149 (speedbar-do-function-pointer)
1150 (speedbar-quick-mouse event)))
1151 ;; Don't do normal operations.
1152 t)))))
1153 (make-local-hook 'kill-buffer-hook)
1154 (add-hook 'kill-buffer-hook (lambda () (let ((skilling (boundp 'skilling)))
1155 (if skilling
1156 nil
1157 (if (eq (current-buffer)
1158 speedbar-buffer)
1159 (speedbar-frame-mode -1)))))
1160 t t)
1161 (speedbar-set-mode-line-format)
59588cd4
KH
1162 (if speedbar-xemacsp
1163 (progn
1164 (make-local-variable 'mouse-motion-handler)
1165 (setq mouse-motion-handler 'speedbar-track-mouse-xemacs))
1166 (if speedbar-track-mouse-flag
1167 (progn
1168 (make-local-variable 'track-mouse)
1169 (setq track-mouse t))) ;this could be messy.
1170 (setq auto-show-mode nil)) ;no auto-show for Emacs
6b3eac8d
DN
1171 (run-hooks 'speedbar-mode-hook))
1172 (speedbar-update-contents)
1173 speedbar-buffer)
1174
59588cd4
KH
1175(defun speedbar-show-info-under-mouse (&optional event)
1176 "Call the info function for the line under the mouse.
1177Optional EVENT is currently not used."
1178 (let ((pos (mouse-position))) ; we ignore event until I use it later.
1179 (if (equal (car pos) speedbar-frame)
1180 (save-excursion
1181 (save-window-excursion
1182 (apply 'set-mouse-position pos)
1183 (speedbar-item-info))))))
1184
6b3eac8d
DN
1185(defun speedbar-set-mode-line-format ()
1186 "Set the format of the mode line based on the current speedbar environment.
1187This gives visual indications of what is up. It EXPECTS the speedbar
1188frame and window to be the currently active frame and window."
1189 (if (and (frame-live-p speedbar-frame)
1190 (or (not speedbar-xemacsp)
1191 (specifier-instance has-modeline-p)))
1192 (save-excursion
1193 (set-buffer speedbar-buffer)
1194 (let* ((w (or (speedbar-frame-width) 20))
1195 (p1 "<<")
1196 (p5 ">>")
1197 (p3 (if speedbar-update-flag "SPEEDBAR" "SLOWBAR"))
1198 (blank (- w (length p1) (length p3) (length p5)
1199 (if line-number-mode 4 0)))
1200 (p2 (if (> blank 0)
1201 (make-string (/ blank 2) ? )
1202 ""))
1203 (p4 (if (> blank 0)
1204 (make-string (+ (/ blank 2) (% blank 2)) ? )
1205 ""))
1206 (tf
1207 (if line-number-mode
1208 (list (concat p1 p2 p3) '(line-number-mode " %3l")
1209 (concat p4 p5))
1210 (list (concat p1 p2 p3 p4 p5)))))
1211 (if (not (equal mode-line-format tf))
1212 (progn
1213 (setq mode-line-format tf)
1214 (force-mode-line-update)))))))
1215
1216(defun speedbar-temp-buffer-show-function (buffer)
1217 "Placed in the variable `temp-buffer-show-function' in `speedbar-mode'.
1218If a user requests help using \\[help-command] <Key> the temp BUFFER will be
1219redirected into a window on the attached frame."
1220 (if speedbar-attached-frame (select-frame speedbar-attached-frame))
1221 (pop-to-buffer buffer nil)
1222 (other-window -1)
59588cd4
KH
1223 ;; Fix for using this hook: Bob Weiner
1224 (cond ((fboundp 'run-hook-with-args)
1225 (run-hook-with-args 'temp-buffer-show-hook buffer))
1226 ((and (boundp 'temp-buffer-show-hook)
1227 (listp temp-buffer-show-hook))
1228 (mapcar (function (lambda (hook) (funcall hook buffer)))
1229 temp-buffer-show-hook))))
1230
0e596101
EL
1231(defvar speedbar-previous-menu nil
1232 "The menu before the last `speedbar-reconfigure-keymaps' was called.")
1233
59588cd4 1234(defun speedbar-reconfigure-keymaps ()
6b3eac8d
DN
1235 "Reconfigure the menu-bar in a speedbar frame.
1236Different menu items are displayed depending on the current display mode
1237and the existence of packages."
59588cd4
KH
1238 (let ((md (append
1239 speedbar-easymenu-definition-base
1240 (if speedbar-shown-directories
1241 ;; file display mode version
1242 (speedbar-initial-menu)
1243 (save-excursion
1244 (select-frame speedbar-attached-frame)
1245 (if (local-variable-p
1246 'speedbar-easymenu-definition-special
1247 (current-buffer))
1248 ;; If bound locally, we can use it
1249 speedbar-easymenu-definition-special)))
1250 ;; Dynamic menu stuff
1251 '("-")
1252 (list (cons "Displays"
1253 (let ((displays nil)
1254 (alist speedbar-initial-expansion-mode-alist))
1255 (while alist
1256 (setq displays
1257 (cons
1258 (vector
1259 (capitalize (car (car alist)))
1260 (list
1261 'speedbar-change-initial-expansion-list
1262 (car (car alist)))
1263 t)
1264 displays))
1265 (setq alist (cdr alist)))
1266 displays)))
1267 ;; The trailer
1268 speedbar-easymenu-definition-trailer))
1269 (localmap (save-excursion
1270 (let ((cf (selected-frame)))
1271 (prog2
1272 (select-frame speedbar-attached-frame)
1273 (if (local-variable-p
1274 'speedbar-special-mode-key-map
1275 (current-buffer))
1276 speedbar-special-mode-key-map)
1277 (select-frame cf))))))
1278 (save-excursion
1279 (set-buffer speedbar-buffer)
1280 (use-local-map (or localmap
1281 (speedbar-initial-keymap)
1282 ;; This creates a small keymap we can glom the
1283 ;; menu adjustments into.
1284 (speedbar-make-specialized-keymap)))
0e596101
EL
1285 ;; Delete the old menu if applicable.
1286 (if speedbar-previous-menu (easy-menu-remove speedbar-previous-menu))
1287 (setq speedbar-previous-menu md)
1288 ;; Now add the new menu
59588cd4
KH
1289 (if (not speedbar-xemacsp)
1290 (easy-menu-define speedbar-menu-map (current-local-map)
1291 "Speedbar menu" md)
0e596101 1292 (easy-menu-add md (current-local-map))
59588cd4 1293 (set-buffer-menubar (list md))))))
6b3eac8d
DN
1294
1295\f
1296;;; User Input stuff
1297;;
1298
1299;; XEmacs: this can be implemented using modeline keymaps, but there
1300;; is no use, as we have horizontal scrollbar (as the docstring
1301;; hints.)
1302(defun speedbar-mouse-hscroll (e)
1303 "Read a mouse event E from the mode line, and horizontally scroll.
1304If the mouse is being clicked on the far left, or far right of the
1305mode-line. This is only useful for non-XEmacs"
1306 (interactive "e")
1307 (let* ((xp (car (nth 2 (car (cdr e)))))
1308 (cpw (/ (frame-pixel-width)
1309 (frame-width)))
1310 (oc (1+ (/ xp cpw)))
1311 )
1312 (cond ((< oc 3)
1313 (scroll-left 2))
1314 ((> oc (- (window-width) 3))
1315 (scroll-right 2))
1316 (t (message "Click on the edge of the modeline to scroll left/right")))
1317 ;;(message "X: Pixel %d Char Pixels %d On char %d" xp cpw oc)
1318 ))
1319
1320(defun speedbar-customize ()
1321 "Customize speedbar using the Custom package."
1322 (interactive)
1323 (let ((sf (selected-frame)))
1324 (select-frame speedbar-attached-frame)
1325 (customize-group 'speedbar)
1326 (select-frame sf))
1327 (speedbar-maybee-jump-to-attached-frame))
1328
59588cd4
KH
1329(defun speedbar-track-mouse (event)
1330 "For motion EVENT, display info about the current line."
1331 (interactive "e")
1332 (if (not speedbar-track-mouse-flag)
1333 nil
1334 (save-excursion
1335 (let ((char (nth 1 (car (cdr event)))))
1336 (if (not (numberp char))
1337 (message nil)
1338 (goto-char char)
1339 ;; (message "%S" event)
1340 (speedbar-item-info)
1341 )))))
1342
1343(defun speedbar-track-mouse-xemacs (event)
1344 "For motion EVENT, display info about the current line."
1345 (if (functionp (default-value 'mouse-motion-handler))
1346 (funcall (default-value 'mouse-motion-handler) event))
1347 (if speedbar-track-mouse-flag
1348 (save-excursion
1349 (save-window-excursion
1350 (condition-case ()
1351 (progn (mouse-set-point event)
1352 ;; Prevent focus-related bugs.
1353 (if (eq major-mode 'speedbar-mode)
1354 (speedbar-item-info)))
1355 (error nil))))))
1356
6b3eac8d
DN
1357;; In XEmacs, we make popup menus work on the item over mouse (as
1358;; opposed to where the point happens to be.) We attain this by
1359;; temporarily moving the point to that place.
1360;; Hrvoje Niksic <hniksic@srce.hr>
1361(defun speedbar-xemacs-popup-kludge (event)
1362 "Pop up a menu related to the clicked on item.
1363Must be bound to EVENT."
1364 (interactive "e")
59588cd4 1365 (select-frame speedbar-frame)
6b3eac8d
DN
1366 (save-excursion
1367 (goto-char (event-closest-point event))
1368 (beginning-of-line)
1369 (forward-char (min 5 (- (save-excursion (end-of-line) (point))
1370 (save-excursion (beginning-of-line) (point)))))
1371 (popup-mode-menu)
1372 ;; Wait for menu to bail out. `popup-mode-menu' (and other popup
1373 ;; menu functions) return immediately.
1374 (let (new)
1375 (while (not (misc-user-event-p (setq new (next-event))))
1376 (dispatch-event new))
1377 (dispatch-event new))))
1378
1379(defun speedbar-emacs-popup-kludge (e)
1380 "Pop up a menu related to the clicked on item.
1381Must be bound to event E."
1382 (interactive "e")
1383 (save-excursion
1384 (mouse-set-point e)
1385 ;; This gets the cursor where the user can see it.
1386 (if (not (bolp)) (forward-char -1))
1387 (sit-for 0)
1388 (if (< emacs-major-version 20)
1389 (mouse-major-mode-menu e)
1390 (mouse-major-mode-menu e nil))))
1391
0e596101
EL
1392(defun speedbar-hack-buffer-menu (e)
1393 "Control mouse 1 is buffer menu.
1394This hack overrides it so that the right thing happens in the main
1395Emacs frame, not in the speedbar frame.
1396Argument E is the event causing this activity."
1397 (interactive "e")
1398 (let ((fn (lookup-key global-map (if speedbar-xemacsp
1399 '(control button1)
1400 [C-down-mouse-1])))
1401 (newbuff nil))
1402 (unwind-protect
1403 (save-excursion
1404 (set-window-dedicated-p (selected-window) nil)
1405 (call-interactively fn)
1406 (setq newbuff (current-buffer)))
1407 (switch-to-buffer " SPEEDBAR")
1408 (set-window-dedicated-p (selected-window) t))
1409 (speedbar-with-attached-buffer
1410 (switch-to-buffer newbuff))))
1411
6b3eac8d
DN
1412(defun speedbar-next (arg)
1413 "Move to the next ARGth line in a speedbar buffer."
1414 (interactive "p")
1415 (forward-line (or arg 1))
1416 (speedbar-item-info)
1417 (speedbar-position-cursor-on-line))
1418
1419(defun speedbar-prev (arg)
1420 "Move to the previous ARGth line in a speedbar buffer."
1421 (interactive "p")
1422 (speedbar-next (if arg (- arg) -1)))
1423
59588cd4
KH
1424(defun speedbar-restricted-move (arg)
1425 "Move to the next ARGth line in a speedbar buffer at the same depth.
1426This means that movement is restricted to a subnode, and that siblings
1427of intermediate nodes are skipped."
1428 (if (not (numberp arg)) (signal 'wrong-type-argument (list arg 'numberp)))
1429 ;; First find the extent for which we are allowed to move.
1430 (let ((depth (save-excursion (beginning-of-line)
1431 (if (looking-at "[0-9]+:")
1432 (string-to-int (match-string 0))
1433 0)))
1434 (crement (if (< arg 0) 1 -1)) ; decrement or increment
1435 (lastmatch (point)))
1436 (while (/= arg 0)
1437 (forward-line (- crement))
1438 (let ((subdepth (save-excursion (beginning-of-line)
1439 (if (looking-at "[0-9]+:")
1440 (string-to-int (match-string 0))
1441 0))))
1442 (cond ((or (< subdepth depth)
1443 (progn (end-of-line) (eobp))
1444 (progn (beginning-of-line) (bobp)))
1445 ;; We have reached the end of this block.
1446 (goto-char lastmatch)
1447 (setq arg 0)
1448 (error "End of sub-list"))
1449 ((= subdepth depth)
1450 (setq lastmatch (point)
1451 arg (+ arg crement))))))
1452 (speedbar-position-cursor-on-line)))
1453
1454(defun speedbar-restricted-next (arg)
1455 "Move to the next ARGth line in a speedbar buffer at the same depth.
1456This means that movement is restricted to a subnode, and that siblings
1457of intermediate nodes are skipped."
1458 (interactive "p")
1459 (speedbar-restricted-move (or arg 1))
1460 (speedbar-item-info))
1461
1462
1463(defun speedbar-restricted-prev (arg)
1464 "Move to the previous ARGth line in a speedbar buffer at the same depth.
1465This means that movement is restricted to a subnode, and that siblings
1466of intermediate nodes are skipped."
1467 (interactive "p")
1468 (speedbar-restricted-move (if arg (- arg) -1))
1469 (speedbar-item-info))
1470
1471(defun speedbar-navigate-list (arg)
1472 "Move across ARG groups of similarly typed items in speedbar.
1473Stop on the first line of the next type of item, or on the last or first item
1474if we reach a buffer boundary."
1475 (interactive "p")
1476 (beginning-of-line)
1477 (if (looking-at "[0-9]+: *[[<{][-+?][]>}] ")
1478 (let ((str (regexp-quote (match-string 0))))
1479 (while (looking-at str)
1480 (speedbar-restricted-move arg)
1481 (beginning-of-line))))
1482 (speedbar-position-cursor-on-line))
1483
1484(defun speedbar-forward-list ()
1485 "Move forward over the current list.
1486A LIST in speedbar is a group of similarly typed items, such as directories,
1487files, or the directory button."
1488 (interactive)
1489 (speedbar-navigate-list 1)
1490 (speedbar-item-info))
1491
1492(defun speedbar-backward-list ()
1493 "Move backward over the current list.
1494A LIST in speedbar is a group of similarly typed items, such as directories,
1495files, or the directory button."
1496 (interactive)
1497 (speedbar-navigate-list -1)
1498 (speedbar-item-info))
1499
6b3eac8d
DN
1500(defun speedbar-scroll-up (&optional arg)
1501 "Page down one screen-full of the speedbar, or ARG lines."
1502 (interactive "P")
1503 (scroll-up arg)
1504 (speedbar-position-cursor-on-line))
1505
1506(defun speedbar-scroll-down (&optional arg)
1507 "Page up one screen-full of the speedbar, or ARG lines."
1508 (interactive "P")
1509 (scroll-down arg)
1510 (speedbar-position-cursor-on-line))
1511
1512(defun speedbar-up-directory ()
1513 "Keyboard accelerator for moving the default directory up one.
1514Assumes that the current buffer is the speedbar buffer"
1515 (interactive)
1516 (setq default-directory (expand-file-name (concat default-directory "../")))
1517 (speedbar-update-contents))
1518\f
1519;;; Speedbar file activity (aka creeping featurism)
1520;;
1521(defun speedbar-refresh ()
1522 "Refresh the current speedbar display, disposing of any cached data."
1523 (interactive)
0e596101
EL
1524 (let ((dl speedbar-shown-directories)
1525 (dm (and (boundp 'deactivate-mark) deactivate-mark)))
6b3eac8d
DN
1526 (while dl
1527 (adelete 'speedbar-directory-contents-alist (car dl))
0e596101 1528 (setq dl (cdr dl)))
61d7e1dc
EL
1529 (if (<= 1 speedbar-verbosity-level)
1530 (message "Refreshing speedbar..."))
0e596101
EL
1531 (speedbar-update-contents)
1532 (speedbar-stealthy-updates)
1533 ;; Reset the timer in case it got really hosed for some reason...
1534 (speedbar-set-timer speedbar-update-speed)
1535 (if (<= 1 speedbar-verbosity-level)
61d7e1dc 1536 (message "Refreshing speedbar...done"))
0e596101 1537 (if (boundp 'deactivate-mark) (setq deactivate-mark dm))))
6b3eac8d
DN
1538
1539(defun speedbar-item-load ()
59588cd4 1540 "Load the item under the cursor or mouse if it is a Lisp file."
6b3eac8d
DN
1541 (interactive)
1542 (let ((f (speedbar-line-file)))
1543 (if (and (file-exists-p f) (string-match "\\.el\\'" f))
1544 (if (and (file-exists-p (concat f "c"))
1545 (y-or-n-p (format "Load %sc? " f)))
1546 ;; If the compiled version exists, load that instead...
1547 (load-file (concat f "c"))
1548 (load-file f))
59588cd4 1549 (error "Not a loadable file"))))
6b3eac8d
DN
1550
1551(defun speedbar-item-byte-compile ()
59588cd4 1552 "Byte compile the item under the cursor or mouse if it is a Lisp file."
6b3eac8d
DN
1553 (interactive)
1554 (let ((f (speedbar-line-file))
1555 (sf (selected-frame)))
1556 (if (and (file-exists-p f) (string-match "\\.el\\'" f))
1557 (progn
1558 (select-frame speedbar-attached-frame)
1559 (byte-compile-file f nil)
59588cd4
KH
1560 (select-frame sf)
1561 (speedbar-reset-scanners)))
6b3eac8d
DN
1562 ))
1563
1564(defun speedbar-mouse-item-info (event)
1565 "Provide information about what the user clicked on.
1566This should be bound to a mouse EVENT."
1567 (interactive "e")
1568 (mouse-set-point event)
1569 (speedbar-item-info))
1570
59588cd4
KH
1571(defun speedbar-generic-item-info ()
1572 "Attempt to derive, and then display information about thils line item.
1573File style information is displayed with `speedbar-item-info'."
1574 (save-excursion
1575 (beginning-of-line)
1576 ;; Skip invisible number info.
1577 (if (looking-at "\\([0-9]+\\):") (goto-char (match-end 0)))
1578 ;; Skip items in "folder" type text characters.
1579 (if (looking-at "\\s-*[[<({].[]>)}] ") (goto-char (match-end 0)))
1580 ;; Get the text
1581 (message "Text: %s" (buffer-substring-no-properties
1582 (point) (progn (end-of-line) (point))))))
1583
6b3eac8d
DN
1584(defun speedbar-item-info ()
1585 "Display info in the mini-buffer about the button the mouse is over."
1586 (interactive)
1587 (if (not speedbar-shown-directories)
59588cd4 1588 (speedbar-generic-item-info)
6b3eac8d
DN
1589 (let* ((item (speedbar-line-file))
1590 (attr (if item (file-attributes item) nil)))
59588cd4 1591 (if (and item attr) (message "%s %-6d %s" (nth 8 attr) (nth 7 attr) item)
6b3eac8d
DN
1592 (save-excursion
1593 (beginning-of-line)
59588cd4
KH
1594 (if (not (looking-at "\\([0-9]+\\):"))
1595 (speedbar-generic-item-info)
1596 (setq item (speedbar-line-path (string-to-int (match-string 1))))
1597 (if (re-search-forward "> \\([^ ]+\\)$"
1598 (save-excursion(end-of-line)(point)) t)
1599 (progn
1600 (setq attr (get-text-property (match-beginning 1)
1601 'speedbar-token))
1602 (message "Tag: %s in %s @ %s"
1603 (match-string 1) item
1604 (if attr
1605 (if (markerp attr) (marker-position attr) attr)
1606 0)))
1607 (if (re-search-forward "{[+-]} \\([^\n]+\\)$"
1608 (save-excursion(end-of-line)(point)) t)
1609 (message "Group of tags \"%s\"" (match-string 1))
1610 (speedbar-generic-item-info)))))))))
6b3eac8d
DN
1611
1612(defun speedbar-item-copy ()
1613 "Copy the item under the cursor.
1614Files can be copied to new names or places."
1615 (interactive)
1616 (let ((f (speedbar-line-file)))
59588cd4 1617 (if (not f) (error "Not a file"))
6b3eac8d 1618 (if (file-directory-p f)
59588cd4 1619 (error "Cannot copy directory")
6b3eac8d
DN
1620 (let* ((rt (read-file-name (format "Copy %s to: "
1621 (file-name-nondirectory f))
1622 (file-name-directory f)))
1623 (refresh (member (expand-file-name (file-name-directory rt))
1624 speedbar-shown-directories)))
1625 ;; Create the right file name part
1626 (if (file-directory-p rt)
1627 (setq rt
1628 (concat (expand-file-name rt)
1629 (if (string-match "/$" rt) "" "/")
1630 (file-name-nondirectory f))))
1631 (if (or (not (file-exists-p rt))
1632 (y-or-n-p (format "Overwrite %s with %s? " rt f)))
1633 (progn
1634 (copy-file f rt t t)
1635 ;; refresh display if the new place is currently displayed.
1636 (if refresh
1637 (progn
1638 (speedbar-refresh)
1639 (if (not (speedbar-goto-this-file rt))
1640 (speedbar-goto-this-file f))))
1641 ))))))
1642
1643(defun speedbar-item-rename ()
1644 "Rename the item under the cursor or mouse.
1645Files can be renamed to new names or moved to new directories."
1646 (interactive)
1647 (let ((f (speedbar-line-file)))
1648 (if f
1649 (let* ((rt (read-file-name (format "Rename %s to: "
1650 (file-name-nondirectory f))
1651 (file-name-directory f)))
1652 (refresh (member (expand-file-name (file-name-directory rt))
1653 speedbar-shown-directories)))
1654 ;; Create the right file name part
1655 (if (file-directory-p rt)
1656 (setq rt
1657 (concat (expand-file-name rt)
1658 (if (string-match "/\\'" rt) "" "/")
1659 (file-name-nondirectory f))))
1660 (if (or (not (file-exists-p rt))
1661 (y-or-n-p (format "Overwrite %s with %s? " rt f)))
1662 (progn
1663 (rename-file f rt t)
1664 ;; refresh display if the new place is currently displayed.
1665 (if refresh
1666 (progn
1667 (speedbar-refresh)
1668 (speedbar-goto-this-file rt)
1669 )))))
59588cd4 1670 (error "Not a file"))))
6b3eac8d
DN
1671
1672(defun speedbar-item-delete ()
1673 "Delete the item under the cursor. Files are removed from disk."
1674 (interactive)
1675 (let ((f (speedbar-line-file)))
59588cd4 1676 (if (not f) (error "Not a file"))
6b3eac8d
DN
1677 (if (y-or-n-p (format "Delete %s? " f))
1678 (progn
1679 (if (file-directory-p f)
1680 (delete-directory f)
1681 (delete-file f))
1682 (message "Okie dokie..")
1683 (let ((p (point)))
1684 (speedbar-refresh)
1685 (goto-char p))
1686 ))
1687 ))
1688
59588cd4
KH
1689(defun speedbar-item-object-delete ()
1690 "Delete the object associated from the item under the cursor.
1691The file is removed from disk. The object is determined from the
1692variable `speedbar-obj-alist'."
1693 (interactive)
1694 (let* ((f (speedbar-line-file))
1695 (obj nil)
1696 (oa speedbar-obj-alist))
1697 (if (not f) (error "Not a file"))
1698 (while (and oa (not (string-match (car (car oa)) f)))
1699 (setq oa (cdr oa)))
1700 (setq obj (concat (file-name-sans-extension f) (cdr (car oa))))
1701 (if (and oa (file-exists-p obj)
1702 (y-or-n-p (format "Delete %s? " obj)))
1703 (progn
1704 (delete-file obj)
1705 (speedbar-reset-scanners)))))
1706
6b3eac8d
DN
1707(defun speedbar-enable-update ()
1708 "Enable automatic updating in speedbar via timers."
1709 (interactive)
1710 (setq speedbar-update-flag t)
1711 (speedbar-set-mode-line-format)
1712 (speedbar-set-timer speedbar-update-speed))
1713
1714(defun speedbar-disable-update ()
1715 "Disable automatic updating and stop consuming resources."
1716 (interactive)
1717 (setq speedbar-update-flag nil)
1718 (speedbar-set-mode-line-format)
1719 (speedbar-set-timer nil))
1720
1721(defun speedbar-toggle-updates ()
1722 "Toggle automatic update for the speedbar frame."
1723 (interactive)
1724 (if speedbar-update-flag
1725 (speedbar-disable-update)
1726 (speedbar-enable-update)))
1727
1728(defun speedbar-toggle-sorting ()
1729 "Toggle automatic update for the speedbar frame."
1730 (interactive)
1731 (setq speedbar-sort-tags (not speedbar-sort-tags)))
1732
1733(defun speedbar-toggle-show-all-files ()
1734 "Toggle display of files speedbar can not tag."
1735 (interactive)
1736 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files))
1737 (speedbar-refresh))
1738\f
1739;;; Utility functions
1740;;
1741(defun speedbar-set-timer (timeout)
1742 "Apply a timer with TIMEOUT, or remove a timer if TIMOUT is nil.
1743TIMEOUT is the number of seconds until the speedbar timer is called
1744again. When TIMEOUT is nil, turn off all timeouts.
1745This function will also enable or disable the `vc-checkin-hook' used
1746to track file check ins, and will change the mode line to match
1747`speedbar-update-flag'."
1748 (cond
1749 ;; XEmacs
1750 (speedbar-xemacsp
1751 (if speedbar-timer
1752 (progn (delete-itimer speedbar-timer)
1753 (setq speedbar-timer nil)))
1754 (if timeout
1755 (if (and speedbar-xemacsp
1756 (or (>= emacs-major-version 20)
1757 (>= emacs-minor-version 15)))
1758 (setq speedbar-timer (start-itimer "speedbar"
1759 'speedbar-timer-fn
1760 timeout
1761 timeout
1762 t))
1763 (setq speedbar-timer (start-itimer "speedbar"
1764 'speedbar-timer-fn
1765 timeout
1766 nil)))))
1767 ;; Post 19.31 Emacs
1768 ((fboundp 'run-with-idle-timer)
1769 (if speedbar-timer
1770 (progn (cancel-timer speedbar-timer)
1771 (setq speedbar-timer nil)))
1772 (if timeout
1773 (setq speedbar-timer
1774 (run-with-idle-timer timeout t 'speedbar-timer-fn))))
1775 ;; Emacs 19.30 (Thanks twice: ptype@dra.hmg.gb)
1776 ((fboundp 'post-command-idle-hook)
1777 (if timeout
1778 (add-hook 'post-command-idle-hook 'speedbar-timer-fn)
1779 (remove-hook 'post-command-idle-hook 'speedbar-timer-fn)))
1780 ;; Older or other Emacsen with no timers. Set up so that its
1781 ;; obvious this emacs can't handle the updates
1782 (t
1783 (setq speedbar-update-flag nil)))
1784 ;; Apply a revert hook that will reset the scanners. We attach to revert
1785 ;; because most reverts occur during VC state change, and this lets our
1786 ;; VC scanner fix itself.
1787 (if timeout
1788 (add-hook 'after-revert-hook 'speedbar-reset-scanners)
1789 (remove-hook 'after-revert-hook 'speedbar-reset-scanners)
1790 )
1791 ;; change this if it changed for some reason
1792 (speedbar-set-mode-line-format))
1793
1794(defmacro speedbar-with-writable (&rest forms)
1795 "Allow the buffer to be writable and evaluate FORMS."
1796 (list 'let '((inhibit-read-only t))
1797 '(toggle-read-only -1)
1798 (cons 'progn forms)))
1799(put 'speedbar-with-writable 'lisp-indent-function 0)
1800
1801(defun speedbar-select-window (buffer)
59588cd4 1802 "Select a window in which BUFFER is shown.
6b3eac8d
DN
1803If it is not shown, force it to appear in the default window."
1804 (let ((win (get-buffer-window buffer speedbar-attached-frame)))
1805 (if win
1806 (select-window win)
59588cd4 1807 (set-window-buffer (selected-window) buffer))))
6b3eac8d
DN
1808
1809(defmacro speedbar-with-attached-buffer (&rest forms)
1810 "Execute FORMS in the attached frame's special buffer.
1811Optionally select that frame if necessary."
1812 ;; Reset the timer with a new timeout when cliking a file
1813 ;; in case the user was navigating directories, we can cancel
1814 ;; that other timer.
1815 (list
1816 'progn
1817 '(speedbar-set-timer speedbar-update-speed)
1818 (list
1819 'let '((cf (selected-frame)))
1820 '(select-frame speedbar-attached-frame)
1821 '(speedbar-select-window speedbar-desired-buffer)
1822 (cons 'progn forms)
1823 '(select-frame cf)
1824 '(speedbar-maybee-jump-to-attached-frame)
1825 )))
1826
1827(defun speedbar-insert-button (text face mouse function
1828 &optional token prevline)
1829 "Insert TEXT as the next logical speedbar button.
1830FACE is the face to put on the button, MOUSE is the highlight face to use.
1831When the user clicks on TEXT, FUNCTION is called with the TOKEN parameter.
1832This function assumes that the current buffer is the speedbar buffer.
1833If PREVLINE, then put this button on the previous line.
1834
1835This is a convenience function for special mode that create their own
1836specialized speedbar displays."
1837 (goto-char (point-max))
1838 (if (/= (current-column) 0) (insert "\n"))
1839 (if prevline (progn (delete-char -1) (insert " "))) ;back up if desired...
1840 (let ((start (point)))
1841 (insert text)
1842 (speedbar-make-button start (point) face mouse function token))
1843 (let ((start (point)))
1844 (insert "\n")
1845 (put-text-property start (point) 'face nil)
1846 (put-text-property start (point) 'mouse-face nil)))
1847
1848(defun speedbar-make-button (start end face mouse function &optional token)
1849 "Create a button from START to END, with FACE as the display face.
1850MOUSE is the mouse face. When this button is clicked on FUNCTION
59588cd4 1851will be run with the TOKEN parameter (any Lisp object)"
6b3eac8d
DN
1852 (put-text-property start end 'face face)
1853 (put-text-property start end 'mouse-face mouse)
1854 (put-text-property start end 'invisible nil)
1855 (if function (put-text-property start end 'speedbar-function function))
1856 (if token (put-text-property start end 'speedbar-token token))
1857 )
1858\f
59588cd4
KH
1859;;; Initial Expansion list management
1860;;
1861(defun speedbar-initial-expansion-list ()
1862 "Return the current default expansion list.
1863This is based on `speedbar-initial-expansion-list-name' referencing
1864`speedbar-initial-expansion-mode-alist'."
1865 ;; cdr1 - name, cdr2 - menu
1866 (cdr (cdr (cdr (assoc speedbar-initial-expansion-list-name
1867 speedbar-initial-expansion-mode-alist)))))
1868
1869(defun speedbar-initial-menu ()
1870 "Return the current default menu data.
1871This is based on `speedbar-initial-expansion-list-name' referencing
1872`speedbar-initial-expansion-mode-alist'."
1873 (symbol-value
1874 (car (cdr (assoc speedbar-initial-expansion-list-name
1875 speedbar-initial-expansion-mode-alist)))))
1876
1877(defun speedbar-initial-keymap ()
1878 "Return the current default menu data.
1879This is based on `speedbar-initial-expansion-list-name' referencing
1880`speedbar-initial-expansion-mode-alist'."
1881 (symbol-value
1882 (car (cdr (cdr (assoc speedbar-initial-expansion-list-name
1883 speedbar-initial-expansion-mode-alist))))))
1884
1885(defun speedbar-initial-stealthy-functions ()
1886 "Return a list of functions to call stealthily.
1887This is based on `speedbar-initial-expansion-list-name' referencing
1888`speedbar-stealthy-function-list'."
1889 (cdr (assoc speedbar-initial-expansion-list-name
1890 speedbar-stealthy-function-list)))
1891
1892(defun speedbar-add-expansion-list (new-list)
1893 "Add NEW-LIST to the list of expansion lists."
1894 (add-to-list 'speedbar-initial-expansion-mode-alist new-list))
1895
1896(defun speedbar-change-initial-expansion-list (new-default)
1897 "Change speedbar's default expansion list to NEW-DEFAULT."
1898 (interactive
1899 (list
1900 (completing-read (format "Speedbar Mode (default %s): "
1901 speedbar-previously-used-expansion-list-name)
1902 speedbar-initial-expansion-mode-alist
1903 nil t "" nil
1904 speedbar-previously-used-expansion-list-name)))
1905 (setq speedbar-previously-used-expansion-list-name
1906 speedbar-initial-expansion-list-name
1907 speedbar-initial-expansion-list-name new-default)
1908 (speedbar-refresh)
1909 (speedbar-reconfigure-keymaps))
1910
1911\f
1912;;; Special speedbar display management
1913;;
1914(defun speedbar-maybe-add-localized-support (buffer)
1915 "Quick check function called on BUFFERs by the speedbar timer function.
1916Maintains the value of local variables which control speedbars use
1917of the special mode functions."
1918 (or speedbar-special-mode-expansion-list
1919 (speedbar-add-localized-speedbar-support buffer)))
1920
1921(defun speedbar-add-localized-speedbar-support (buffer)
1922 "Add localized speedbar support to BUFFER's mode if it is available."
1923 (interactive "bBuffer: ")
1924 (if (stringp buffer) (setq buffer (get-buffer buffer)))
1925 (if (not (buffer-live-p buffer))
1926 nil
1927 (save-excursion
1928 (set-buffer buffer)
1929 (save-match-data
1930 (let ((ms (symbol-name major-mode)) v)
1931 (if (not (string-match "-mode$" ms))
1932 nil ;; do nothing to broken mode
1933 (setq ms (substring ms 0 (match-beginning 0)))
1934 (setq v (intern-soft (concat ms "-speedbar-buttons")))
1935 (make-local-variable 'speedbar-special-mode-expansion-list)
1936 (if (not v)
1937 (setq speedbar-special-mode-expansion-list t)
1938 ;; If it is autoloaded, we need to load it now so that
1939 ;; we have access to the varialbe -speedbar-menu-items.
1940 ;; Is this XEmacs safe?
1941 (let ((sf (symbol-function v)))
1942 (if (and (listp sf) (eq (car sf) 'autoload))
1943 (load-library (car (cdr sf)))))
1944 (setq speedbar-special-mode-expansion-list (list v))
1945 (setq v (intern-soft (concat ms "-speedbar-key-map")))
1946 (if (not v)
1947 nil ;; don't add special keymap
1948 (make-local-variable 'speedbar-special-mode-key-map)
1949 (setq speedbar-special-mode-key-map
1950 (symbol-value v)))
1951 (setq v (intern-soft (concat ms "-speedbar-menu-items")))
1952 (if (not v)
1953 nil ;; don't add special menus
1954 (make-local-variable 'speedbar-easymenu-definition-special)
1955 (setq speedbar-easymenu-definition-special
1956 (symbol-value v)))
1957 )))))))
1958
1959(defun speedbar-remove-localized-speedbar-support (buffer)
1960 "Remove any traces that BUFFER supports speedbar in a specialized way."
1961 (save-excursion
1962 (set-buffer buffer)
1963 (kill-local-variable 'speedbar-special-mode-expansion-list)
1964 (kill-local-variable 'speedbar-special-mode-key-map)
1965 (kill-local-variable 'speedbar-easymenu-definition-special)))
1966\f
6b3eac8d
DN
1967;;; File button management
1968;;
1969(defun speedbar-file-lists (directory)
1970 "Create file lists for DIRECTORY.
1971The car is the list of directories, the cdr is list of files not
1972matching ignored headers. Cache any directory files found in
1973`speedbar-directory-contents-alist' and use that cache before scanning
1974the file-system"
1975 (setq directory (expand-file-name directory))
1976 ;; If in powerclick mode, then the directory we are getting
1977 ;; should be rescanned.
1978 (if speedbar-power-click
1979 (adelete 'speedbar-directory-contents-alist directory))
1980 ;; find the directory, either in the cache, or build it.
1981 (or (cdr-safe (assoc directory speedbar-directory-contents-alist))
1982 (let ((default-directory directory)
1983 (dir (directory-files directory nil))
1984 (dirs nil)
1985 (files nil))
1986 (while dir
59588cd4
KH
1987 (if (not
1988 (or (string-match speedbar-file-unshown-regexp (car dir))
1989 (string-match speedbar-directory-unshown-regexp (car dir))))
6b3eac8d
DN
1990 (if (file-directory-p (car dir))
1991 (setq dirs (cons (car dir) dirs))
1992 (setq files (cons (car dir) files))))
1993 (setq dir (cdr dir)))
1994 (let ((nl (cons (nreverse dirs) (list (nreverse files)))))
1995 (aput 'speedbar-directory-contents-alist directory nl)
1996 nl))
1997 ))
1998
1999(defun speedbar-directory-buttons (directory index)
2000 "Insert a single button group at point for DIRECTORY.
2001Each directory path part is a different button. If part of the path
2002matches the user directory ~, then it is replaced with a ~.
2003INDEX is not used, but is required by the caller."
2004 (let* ((tilde (expand-file-name "~"))
2005 (dd (expand-file-name directory))
2006 (junk (string-match (regexp-quote tilde) dd))
2007 (displayme (if junk
2008 (concat "~" (substring dd (match-end 0)))
2009 dd))
2010 (p (point)))
2011 (if (string-match "^~/?\\'" displayme) (setq displayme (concat tilde "/")))
2012 (insert displayme)
2013 (save-excursion
2014 (goto-char p)
2015 (while (re-search-forward "\\([^/]+\\)/" nil t)
2016 (speedbar-make-button (match-beginning 1) (match-end 1)
2017 'speedbar-directory-face
2018 'speedbar-highlight-face
2019 'speedbar-directory-buttons-follow
2020 (if (= (match-beginning 1) p)
2021 (expand-file-name "~/") ;the tilde
2022 (buffer-substring-no-properties
2023 p (match-end 0)))))
2024 ;; Nuke the beginning of the directory if it's too long...
2025 (cond ((eq speedbar-directory-button-trim-method 'span)
2026 (beginning-of-line)
2027 (let ((ww (or (speedbar-frame-width) 20)))
2028 (move-to-column ww nil)
2029 (while (>= (current-column) ww)
2030 (re-search-backward "/" nil t)
2031 (if (<= (current-column) 2)
2032 (progn
2033 (re-search-forward "/" nil t)
2034 (if (< (current-column) 4)
2035 (re-search-forward "/" nil t))
2036 (forward-char -1)))
2037 (if (looking-at "/?$")
2038 (beginning-of-line)
2039 (insert "/...\n ")
2040 (move-to-column ww nil)))))
2041 ((eq speedbar-directory-button-trim-method 'trim)
2042 (end-of-line)
2043 (let ((ww (or (speedbar-frame-width) 20))
2044 (tl (current-column)))
2045 (if (< ww tl)
2046 (progn
2047 (move-to-column (- tl ww))
2048 (if (re-search-backward "/" nil t)
2049 (progn
2050 (delete-region (point-min) (point))
2051 (insert "$")
2052 )))))))
2053 )
2054 (if (string-match "\\`/[^/]+/\\'" displayme)
2055 (progn
2056 (insert " ")
2057 (let ((p (point)))
2058 (insert "<root>")
2059 (speedbar-make-button p (point)
2060 'speedbar-directory-face
2061 'speedbar-highlight-face
2062 'speedbar-directory-buttons-follow
2063 "/"))))
2064 (end-of-line)
2065 (insert-char ?\n 1 nil)))
2066
2067(defun speedbar-make-tag-line (exp-button-type
2068 exp-button-char exp-button-function
2069 exp-button-data
2070 tag-button tag-button-function tag-button-data
2071 tag-button-face depth)
2072 "Create a tag line with EXP-BUTTON-TYPE for the small expansion button.
2073This is the button that expands or contracts a node (if applicable),
2074and EXP-BUTTON-CHAR the character in it (+, -, ?, etc). EXP-BUTTON-FUNCTION
2075is the function to call if it's clicked on. Button types are
2076'bracket, 'angle, 'curly, or nil. EXP-BUTTON-DATA is extra data
2077attached to the text forming the expansion button.
2078
2079Next, TAG-BUTTON is the text of the tag. TAG-BUTTON-FUNCTION is the
2080function to call if clicked on, and TAG-BUTTON-DATA is the data to
2081attach to the text field (such a tag positioning, etc).
2082TAG-BUTTON-FACE is a face used for this type of tag.
2083
2084Lastly, DEPTH shows the depth of expansion.
2085
2086This function assumes that the cursor is in the speedbar window at the
2087position to insert a new item, and that the new item will end with a CR"
2088 (let ((start (point))
2089 (end (progn
2090 (insert (int-to-string depth) ":")
2091 (point))))
2092 (put-text-property start end 'invisible t)
2093 )
2094 (insert-char ? depth nil)
2095 (put-text-property (- (point) depth) (point) 'invisible nil)
2096 (let* ((exp-button (cond ((eq exp-button-type 'bracket) "[%c]")
2097 ((eq exp-button-type 'angle) "<%c>")
2098 ((eq exp-button-type 'curly) "{%c}")
2099 (t ">")))
2100 (buttxt (format exp-button exp-button-char))
2101 (start (point))
2102 (end (progn (insert buttxt) (point)))
2103 (bf (if exp-button-type 'speedbar-button-face nil))
2104 (mf (if exp-button-function 'speedbar-highlight-face nil))
2105 )
2106 (speedbar-make-button start end bf mf exp-button-function exp-button-data)
59588cd4
KH
2107 (if speedbar-hide-button-brackets-flag
2108 (progn
2109 (put-text-property start (1+ start) 'invisible t)
2110 (put-text-property end (1- end) 'invisible t)))
6b3eac8d
DN
2111 )
2112 (insert-char ? 1 nil)
2113 (put-text-property (1- (point)) (point) 'invisible nil)
2114 (let ((start (point))
2115 (end (progn (insert tag-button) (point))))
2116 (insert-char ?\n 1 nil)
2117 (put-text-property (1- (point)) (point) 'invisible nil)
2118 (speedbar-make-button start end tag-button-face
2119 (if tag-button-function 'speedbar-highlight-face nil)
2120 tag-button-function tag-button-data))
2121)
2122
2123(defun speedbar-change-expand-button-char (char)
2124 "Change the expansion button character to CHAR for the current line."
2125 (save-excursion
2126 (beginning-of-line)
2127 (if (re-search-forward ":\\s-*.\\([-+?]\\)" (save-excursion (end-of-line)
2128 (point)) t)
2129 (speedbar-with-writable
2130 (goto-char (match-beginning 1))
2131 (delete-char 1)
59588cd4
KH
2132 (insert-char char 1 t)
2133 (put-text-property (point) (1- (point)) 'invisible nil)))))
6b3eac8d
DN
2134
2135\f
2136;;; Build button lists
2137;;
2138(defun speedbar-insert-files-at-point (files level)
2139 "Insert list of FILES starting at point, and indenting all files to LEVEL.
2140Tag expandable items with a +, otherwise a ?. Don't highlight ? as we
2141don't know how to manage them. The input parameter FILES is a cons
59588cd4 2142cell of the form ( 'DIRLIST . 'FILELIST )"
6b3eac8d
DN
2143 ;; Start inserting all the directories
2144 (let ((dirs (car files)))
2145 (while dirs
2146 (speedbar-make-tag-line 'angle ?+ 'speedbar-dired (car dirs)
2147 (car dirs) 'speedbar-dir-follow nil
2148 'speedbar-directory-face level)
2149 (setq dirs (cdr dirs))))
59588cd4
KH
2150 (let ((lst (car (cdr files)))
2151 (case-fold-search t))
6b3eac8d
DN
2152 (while lst
2153 (let* ((known (string-match speedbar-file-regexp (car lst)))
2154 (expchar (if known ?+ ??))
2155 (fn (if known 'speedbar-tag-file nil)))
2156 (if (or speedbar-show-unknown-files (/= expchar ??))
2157 (speedbar-make-tag-line 'bracket expchar fn (car lst)
2158 (car lst) 'speedbar-find-file nil
2159 'speedbar-file-face level)))
2160 (setq lst (cdr lst)))))
2161
2162(defun speedbar-default-directory-list (directory index)
2163 "Insert files for DIRECTORY with level INDEX at point."
2164 (speedbar-insert-files-at-point
2165 (speedbar-file-lists directory) index)
2166 (speedbar-reset-scanners)
2167 (if (= index 0)
2168 ;; If the shown files variable has extra directories, then
2169 ;; it is our responsibility to redraw them all
2170 ;; Luckilly, the nature of inserting items into this list means
2171 ;; that by reversing it, we can easilly go in the right order
2172 (let ((sf (cdr (reverse speedbar-shown-directories))))
2173 (setq speedbar-shown-directories
2174 (list (expand-file-name default-directory)))
2175 ;; exand them all as we find them
2176 (while sf
2177 (if (speedbar-goto-this-file (car sf))
2178 (progn
2179 (beginning-of-line)
2180 (if (looking-at "[0-9]+:[ ]*<")
2181 (progn
2182 (goto-char (match-end 0))
2183 (speedbar-do-function-pointer)))
2184 (setq sf (cdr sf)))))
2185 )))
2186
59588cd4
KH
2187(defun speedbar-apply-one-tag-hierarchy-method (lst method)
2188 "Adjust the tag hierarchy LST by METHOD."
2189 (cond
2190 ((eq method 'sort)
2191 (sort (copy-alist lst)
2192 (lambda (a b) (string< (car a) (car b)))))
2193 ((eq method 'prefix-group)
2194 (let ((newlst nil)
2195 (sublst nil)
2196 (work-list nil)
2197 (junk-list nil)
2198 (short-group-list nil)
2199 (short-start-name nil)
2200 (short-end-name nil)
2201 (num-shorts-grouped 0)
2202 (bins (make-vector 256 nil))
2203 (diff-idx 0))
2204 ;; Break out sub-lists
2205 (while lst
2206 (if (listp (cdr-safe (car-safe lst)))
2207 (setq newlst (cons (car lst) newlst))
2208 (setq sublst (cons (car lst) sublst)))
2209 (setq lst (cdr lst)))
2210 ;; Now, first find out how long our list is. Never let a
2211 ;; list get-shorter than our minimum.
2212 (if (<= (length sublst) speedbar-tag-split-minimum-length)
2213 (setq work-list (nreverse sublst))
2214 (setq diff-idx (length (try-completion "" sublst)))
2215 ;; Sort the whole list into bins.
2216 (while sublst
2217 (let ((e (car sublst))
2218 (s (car (car sublst))))
2219 (cond ((<= (length s) diff-idx)
2220 ;; 0 storage bin for shorty.
2221 (aset bins 0 (cons e (aref bins 0))))
2222 (t
2223 ;; stuff into a bin based on ascii value at diff
2224 (aset bins (aref s diff-idx)
2225 (cons e (aref bins (aref s diff-idx)))))))
2226 (setq sublst (cdr sublst)))
2227 ;; Go through all our bins Stick singles into our
2228 ;; junk-list, everything else as sublsts in work-list.
2229 ;; If two neighboring lists are both small, make a grouped
2230 ;; group combinding those two sub-lists.
2231 (setq diff-idx 0)
2232 (while (> 256 diff-idx)
2233 (let ((l (aref bins diff-idx)))
2234 (if l
2235 (let ((tmp (cons (try-completion "" l) l)))
2236 (if (or (> (length l) speedbar-tag-regroup-maximum-length)
2237 (> (+ (length l) (length short-group-list))
2238 speedbar-tag-split-minimum-length))
2239 (progn
2240 ;; We have reached a longer list, so we
2241 ;; must finish off a grouped group.
2242 (cond
2243 ((and short-group-list
2244 (= (length short-group-list)
2245 num-shorts-grouped))
2246 ;; All singles? Junk list
2247 (setq junk-list (append short-group-list
2248 junk-list)))
2249 ((= num-shorts-grouped 1)
2250 ;; Only one short group? Just stick it in
2251 ;; there by itself.
2252 (setq work-list
2253 (cons (cons (try-completion
2254 "" short-group-list)
2255 (nreverse short-group-list))
2256 work-list)))
2257 (short-group-list
2258 ;; Multiple groups to be named in a special
2259 ;; way by displaying the range over which we
2260 ;; have grouped them.
2261 (setq work-list
2262 (cons (cons (concat short-start-name
2263 " to "
2264 short-end-name)
2265 (nreverse short-group-list))
2266 work-list))))
2267 ;; Reset short group list information every time.
2268 (setq short-group-list nil
2269 short-start-name nil
2270 short-end-name nil
2271 num-shorts-grouped 0)))
2272 ;; Ok, now that we cleaned up the short-group-list,
2273 ;; we can deal with this new list, to decide if it
2274 ;; should go on one of these sub-lists or not.
2275 (if (< (length l) speedbar-tag-regroup-maximum-length)
2276 (setq short-group-list (append short-group-list l)
2277 num-shorts-grouped (1+ num-shorts-grouped)
2278 short-end-name (car tmp)
2279 short-start-name (if short-start-name
2280 short-start-name
2281 (car tmp)))
2282 (setq work-list (cons tmp work-list))))))
2283 (setq diff-idx (1+ diff-idx))))
2284 ;; Did we run out of things? Drop our new list onto the end.
2285 (cond
2286 ((and short-group-list (= (length short-group-list) num-shorts-grouped))
2287 ;; All singles? Junk list
2288 (setq junk-list (append short-group-list junk-list)))
2289 ((= num-shorts-grouped 1)
2290 ;; Only one short group? Just stick it in
2291 ;; there by itself.
2292 (setq work-list
2293 (cons (cons (try-completion "" short-group-list)
2294 (nreverse short-group-list))
2295 work-list)))
2296 (short-group-list
2297 ;; Multiple groups to be named in a special
2298 ;; way by displaying the range over which we
2299 ;; have grouped them.
2300 (setq work-list
2301 (cons (cons (concat short-start-name " to " short-end-name)
2302 (nreverse short-group-list))
2303 work-list))))
2304 ;; Now, stick our new list onto the end of
2305 (if work-list
2306 (if junk-list
2307 (append (nreverse newlst)
2308 (nreverse work-list)
2309 junk-list)
2310 (append (nreverse newlst)
2311 (nreverse work-list)))
2312 (append (nreverse newlst) junk-list))))
2313 ((eq method 'trim-words)
2314 (let ((newlst nil)
2315 (sublst nil)
2316 (trim-prefix nil)
2317 (trim-chars 0)
2318 (trimlst nil))
2319 (while lst
2320 (if (listp (cdr-safe (car-safe lst)))
2321 (setq newlst (cons (car lst) newlst))
2322 (setq sublst (cons (car lst) sublst)))
2323 (setq lst (cdr lst)))
2324 ;; Get the prefix to trim by. Make sure that we don't trim
2325 ;; off silly pieces, only complete understandable words.
2326 (setq trim-prefix (try-completion "" sublst))
2327 (if (or (= (length sublst) 1)
2328 (not trim-prefix)
2329 (not (string-match "\\(\\w+\\W+\\)+" trim-prefix)))
2330 (append (nreverse newlst) (nreverse sublst))
2331 (setq trim-prefix (substring trim-prefix (match-beginning 0)
2332 (match-end 0)))
2333 (setq trim-chars (length trim-prefix))
2334 (while sublst
2335 (setq trimlst (cons
2336 (cons (substring (car (car sublst)) trim-chars)
2337 (cdr (car sublst)))
2338 trimlst)
2339 sublst (cdr sublst)))
2340 ;; Put the lists together
2341 (append (nreverse newlst) trimlst))))
2342 ((eq method 'simple-group)
2343 (let ((newlst nil)
2344 (sublst nil))
2345 (while lst
2346 (if (listp (cdr-safe (car-safe lst)))
2347 (setq newlst (cons (car lst) newlst))
2348 (setq sublst (cons (car lst) sublst)))
2349 (setq lst (cdr lst)))
2350 (if (not newlst)
2351 (nreverse sublst)
2352 (setq newlst (cons (cons "Tags" (nreverse sublst)) newlst))
2353 (nreverse newlst))))
2354 (t lst)))
2355
2356(defun speedbar-create-tag-hierarchy (lst)
2357 "Adjust the tag hierarchy in LST, and return it.
2358This uses `speedbar-tag-hierarchy-method' to determine how to adjust
2359the list. See it's value for details."
2360 (let ((methods speedbar-tag-hierarchy-method))
2361 (while methods
2362 (setq lst (speedbar-apply-one-tag-hierarchy-method lst (car methods))
2363 methods (cdr methods)))
2364 lst))
2365
6b3eac8d
DN
2366(defun speedbar-insert-generic-list (level lst expand-fun find-fun)
2367 "At LEVEL, insert a generic multi-level alist LST.
2368Associations with lists get {+} tags (to expand into more nodes) and
2369those with positions just get a > as the indicator. {+} buttons will
2370have the function EXPAND-FUN and the token is the CDR list. The token
2371name will have the function FIND-FUN and not token."
2372 ;; Remove imenu rescan button
2373 (if (string= (car (car lst)) "*Rescan*")
2374 (setq lst (cdr lst)))
59588cd4
KH
2375 ;; Adjust the list.
2376 (setq lst (speedbar-create-tag-hierarchy lst))
6b3eac8d
DN
2377 ;; insert the parts
2378 (while lst
2379 (cond ((null (car-safe lst)) nil) ;this would be a separator
2380 ((or (numberp (cdr-safe (car-safe lst)))
2381 (markerp (cdr-safe (car-safe lst))))
2382 (speedbar-make-tag-line nil nil nil nil ;no expand button data
2383 (car (car lst)) ;button name
2384 find-fun ;function
2385 (cdr (car lst)) ;token is position
2386 'speedbar-tag-face
2387 (1+ level)))
2388 ((listp (cdr-safe (car-safe lst)))
2389 (speedbar-make-tag-line 'curly ?+ expand-fun (cdr (car lst))
2390 (car (car lst)) ;button name
2391 nil nil 'speedbar-tag-face
2392 (1+ level)))
2393 (t (message "Ooops!")))
2394 (setq lst (cdr lst))))
2395\f
2396;;; Timed functions
2397;;
2398(defun speedbar-update-contents ()
2399 "Generically update the contents of the speedbar buffer."
2400 (interactive)
2401 ;; Set the current special buffer
2402 (setq speedbar-desired-buffer nil)
59588cd4
KH
2403 ;; Check for special modes
2404 (speedbar-maybe-add-localized-support (current-buffer))
2405 ;; Choose the correct method of doodling.
6b3eac8d 2406 (if (and speedbar-mode-specific-contents-flag
59588cd4 2407 (listp speedbar-special-mode-expansion-list)
6b3eac8d
DN
2408 speedbar-special-mode-expansion-list
2409 (local-variable-p
2410 'speedbar-special-mode-expansion-list
2411 (current-buffer)))
2412 ;;(eq (get major-mode 'mode-class 'special)))
2413 (speedbar-update-special-contents)
2414 (speedbar-update-directory-contents)))
2415
2416(defun speedbar-update-directory-contents ()
2417 "Update the contents of the speedbar buffer based on the current directory."
2418 (let ((cbd (expand-file-name default-directory))
2419 cbd-parent
59588cd4 2420 (funclst (speedbar-initial-expansion-list))
6b3eac8d
DN
2421 (cache speedbar-full-text-cache)
2422 ;; disable stealth during update
2423 (speedbar-stealthy-function-list nil)
2424 (use-cache nil)
2425 (expand-local nil)
2426 ;; Because there is a bug I can't find just yet
2427 (inhibit-quit nil))
2428 (save-excursion
2429 (set-buffer speedbar-buffer)
2430 ;; If we are updating contents to where we are, then this is
2431 ;; really a request to update existing contents, so we must be
2432 ;; careful with our text cache!
2433 (if (member cbd speedbar-shown-directories)
59588cd4
KH
2434 (progn
2435 (setq cache nil)
2436 ;; If the current directory is not the last element in the dir
2437 ;; list, then we ALSO need to zap the list of expanded directories
2438 (if (/= (length (member cbd speedbar-shown-directories)) 1)
2439 (setq speedbar-shown-directories (list cbd))))
6b3eac8d
DN
2440
2441 ;; Build cbd-parent, and see if THAT is in the current shown
2442 ;; directories. First, go through pains to get the parent directory
2443 (if (and speedbar-smart-directory-expand-flag
2444 (save-match-data
2445 (setq cbd-parent cbd)
2446 (if (string-match "/$" cbd-parent)
59588cd4
KH
2447 (setq cbd-parent (substring cbd-parent 0
2448 (match-beginning 0))))
6b3eac8d
DN
2449 (setq cbd-parent (file-name-directory cbd-parent)))
2450 (member cbd-parent speedbar-shown-directories))
2451 (setq expand-local t)
2452
2453 ;; If this directory is NOT in the current list of available
2454 ;; paths, then use the cache, and set the cache to our new
2455 ;; value. Make sure to unhighlight the current file, or if we
2456 ;; come back to this directory, it might be a different file
2457 ;; and then we get a mess!
2458 (if (> (point-max) 1)
2459 (progn
2460 (speedbar-clear-current-file)
2461 (setq speedbar-full-text-cache
2462 (cons speedbar-shown-directories (buffer-string)))))
2463
2464 ;; Check if our new directory is in the list of directories
2465 ;; shown in the text-cache
2466 (if (member cbd (car cache))
2467 (setq speedbar-shown-directories (car cache)
2468 use-cache t)
2469 ;; default the shown directories to this list...
2470 (setq speedbar-shown-directories (list cbd)))
2471 ))
2472 (setq speedbar-last-selected-file nil)
2473 (speedbar-with-writable
2474 (if (and expand-local
2475 ;; Find this directory as a speedbar node.
2476 (speedbar-path-line cbd))
2477 ;; Open it.
2478 (speedbar-expand-line)
2479 (erase-buffer)
2480 (cond (use-cache
2481 (setq default-directory
2482 (nth (1- (length speedbar-shown-directories))
2483 speedbar-shown-directories))
2484 (insert (cdr cache)))
2485 (t
2486 (while funclst
2487 (setq default-directory cbd)
2488 (funcall (car funclst) cbd 0)
2489 (setq funclst (cdr funclst))))))
2490 (goto-char (point-min)))))
59588cd4 2491 (speedbar-reconfigure-keymaps))
6b3eac8d
DN
2492
2493(defun speedbar-update-special-contents ()
2494 "Used the mode-specific variable to fill in the speedbar buffer.
2495This should only be used by modes classified as special."
2496 (let ((funclst speedbar-special-mode-expansion-list)
2497 (specialbuff (current-buffer)))
2498 (save-excursion
2499 (setq speedbar-desired-buffer specialbuff)
2500 (set-buffer speedbar-buffer)
2501 ;; If we are leaving a directory, cache it.
2502 (if (not speedbar-shown-directories)
2503 ;; Do nothing
2504 nil
2505 ;; Clean up directory maintenance stuff
2506 (speedbar-clear-current-file)
2507 (setq speedbar-full-text-cache
2508 (cons speedbar-shown-directories (buffer-string))
2509 speedbar-shown-directories nil))
2510 ;; Now fill in the buffer with our newly found specialized list.
2511 (speedbar-with-writable
2512 (while funclst
2513 ;; We do not erase the buffer because these functions may
2514 ;; decide NOT to update themselves.
2515 (funcall (car funclst) specialbuff)
2516 (setq funclst (cdr funclst))))
2517 (goto-char (point-min))))
59588cd4 2518 (speedbar-reconfigure-keymaps))
6b3eac8d
DN
2519
2520(defun speedbar-timer-fn ()
59588cd4 2521 "Run whenever Emacs is idle to update the speedbar item."
6b3eac8d
DN
2522 (if (not (and (frame-live-p speedbar-frame)
2523 (frame-live-p speedbar-attached-frame)))
2524 (speedbar-set-timer nil)
2525 ;; Save all the match data so that we don't mess up executing fns
2526 (save-match-data
2527 (if (and (frame-visible-p speedbar-frame) speedbar-update-flag)
2528 (let ((af (selected-frame)))
2529 (save-window-excursion
2530 (select-frame speedbar-attached-frame)
2531 ;; make sure we at least choose a window to
2532 ;; get a good directory from
2533 (if (string-match "\\*Minibuf-[0-9]+\\*" (buffer-name))
2534 (other-window 1))
59588cd4
KH
2535 ;; Check for special modes
2536 (speedbar-maybe-add-localized-support (current-buffer))
6b3eac8d
DN
2537 ;; Update for special mode all the time!
2538 (if (and speedbar-mode-specific-contents-flag
59588cd4 2539 (listp speedbar-special-mode-expansion-list)
6b3eac8d
DN
2540 speedbar-special-mode-expansion-list
2541 (local-variable-p
2542 'speedbar-special-mode-expansion-list
2543 (current-buffer)))
2544 ;;(eq (get major-mode 'mode-class 'special)))
2545 (progn
2546 (if (<= 2 speedbar-verbosity-level)
2547 (message "Updating speedbar to special mode: %s..."
2548 major-mode))
2549 (speedbar-update-special-contents)
2550 (if (<= 2 speedbar-verbosity-level)
61d7e1dc
EL
2551 (progn
2552 (message "Updating speedbar to special mode: %s...done"
2553 major-mode)
2554 (sit-for 1)
2555 (message nil))))
6b3eac8d
DN
2556 ;; Update all the contents if directories change!
2557 (if (or (member (expand-file-name default-directory)
2558 speedbar-shown-directories)
2559 (and speedbar-ignored-path-regexp
2560 (string-match
2561 speedbar-ignored-path-regexp
2562 (expand-file-name default-directory)))
2563 (member major-mode speedbar-ignored-modes)
2564 (eq af speedbar-frame)
2565 (not (buffer-file-name)))
2566 nil
2567 (if (<= 1 speedbar-verbosity-level)
2568 (message "Updating speedbar to: %s..."
2569 default-directory))
2570 (speedbar-update-directory-contents)
2571 (if (<= 1 speedbar-verbosity-level)
61d7e1dc
EL
2572 (progn
2573 (message "Updating speedbar to: %s...done"
2574 default-directory)
2575 (sit-for 1)
2576 (message nil)))))
6b3eac8d
DN
2577 (select-frame af))
2578 ;; Now run stealthy updates of time-consuming items
59588cd4
KH
2579 (speedbar-stealthy-updates)))
2580 ;; Now run the mouse tracking system
2581 (speedbar-show-info-under-mouse)))
6b3eac8d
DN
2582 (run-hooks 'speedbar-timer-hook))
2583
2584\f
2585;;; Stealthy activities
2586;;
59588cd4
KH
2587(defvar speedbar-stealthy-update-recurse nil
2588 "Recursion avoidance variable for stealthy update.")
2589
6b3eac8d
DN
2590(defun speedbar-stealthy-updates ()
2591 "For a given speedbar, run all items in the stealthy function list.
2592Each item returns t if it completes successfully, or nil if
2593interrupted by the user."
59588cd4
KH
2594 (if (not speedbar-stealthy-update-recurse)
2595 (let ((l (speedbar-initial-stealthy-functions))
2596 (speedbar-stealthy-update-recurse t))
2597 (unwind-protect
2598 (while (and l (funcall (car l)))
2599 ;(sit-for 0)
2600 (setq l (cdr l)))
2601 ;;(message "Exit with %S" (car l))
2602 ))))
6b3eac8d
DN
2603
2604(defun speedbar-reset-scanners ()
2605 "Reset any variables used by functions in the stealthy list as state.
2606If new functions are added, their state needs to be updated here."
59588cd4
KH
2607 (setq speedbar-vc-to-do-point t
2608 speedbar-obj-to-do-point t)
6b3eac8d
DN
2609 (run-hooks 'speedbar-scanner-reset-hook)
2610 )
2611
2612(defun speedbar-clear-current-file ()
2613 "Locate the file thought to be current, and remove its highlighting."
2614 (save-excursion
2615 (set-buffer speedbar-buffer)
2616 (if speedbar-last-selected-file
2617 (speedbar-with-writable
2618 (goto-char (point-min))
2619 (if (and
2620 speedbar-last-selected-file
2621 (re-search-forward
2622 (concat " \\(" (regexp-quote speedbar-last-selected-file)
59588cd4 2623 "\\)\\(" speedbar-indicator-regex "\\)?\n")
6b3eac8d
DN
2624 nil t))
2625 (put-text-property (match-beginning 1)
2626 (match-end 1)
2627 'face
2628 'speedbar-file-face))))))
2629
2630(defun speedbar-update-current-file ()
2631 "Find the current file, and update our visuals to indicate its name.
2632This is specific to file names. If the file name doesn't show up, but
2633it should be in the list, then the directory cache needs to be
2634updated."
2635 (let* ((lastf (selected-frame))
2636 (newcfd (save-excursion
2637 (select-frame speedbar-attached-frame)
2638 (let ((rf (if (buffer-file-name)
2639 (buffer-file-name)
2640 nil)))
2641 (select-frame lastf)
2642 rf)))
2643 (newcf (if newcfd (file-name-nondirectory newcfd)))
2644 (lastb (current-buffer))
59588cd4
KH
2645 (sucf-recursive (boundp 'sucf-recursive))
2646 (case-fold-search t))
6b3eac8d
DN
2647 (if (and newcf
2648 ;; check here, that way we won't refresh to newcf until
2649 ;; its been written, thus saving ourselves some time
2650 (file-exists-p newcf)
2651 (not (string= newcf speedbar-last-selected-file)))
2652 (progn
2653 ;; It is important to select the frame, otherwise the window
2654 ;; we want the cursor to move in will not be updated by the
2655 ;; search-forward command.
2656 (select-frame speedbar-frame)
2657 ;; Remove the old file...
2658 (speedbar-clear-current-file)
2659 ;; now highlight the new one.
2660 (set-buffer speedbar-buffer)
2661 (speedbar-with-writable
2662 (goto-char (point-min))
2663 (if (re-search-forward
2664 (concat " \\(" (regexp-quote newcf) "\\)\\("
59588cd4 2665 speedbar-indicator-regex "\\)?$") nil t)
6b3eac8d
DN
2666 ;; put the property on it
2667 (put-text-property (match-beginning 1)
2668 (match-end 1)
2669 'face
2670 'speedbar-selected-face)
2671 ;; Oops, it's not in the list. Should it be?
2672 (if (and (string-match speedbar-file-regexp newcf)
2673 (string= (file-name-directory newcfd)
2674 (expand-file-name default-directory)))
2675 ;; yes, it is (we will ignore unknowns for now...)
2676 (progn
2677 (speedbar-refresh)
2678 (if (re-search-forward
2679 (concat " \\(" (regexp-quote newcf) "\\)\n") nil t)
2680 ;; put the property on it
2681 (put-text-property (match-beginning 1)
2682 (match-end 1)
2683 'face
2684 'speedbar-selected-face)))
2685 ;; if it's not in there now, whatever...
2686 ))
2687 (setq speedbar-last-selected-file newcf))
2688 (if (not sucf-recursive)
0e596101
EL
2689 (progn
2690 (speedbar-center-buffer-smartly)
2691 (speedbar-position-cursor-on-line)
2692 ))
6b3eac8d
DN
2693 (set-buffer lastb)
2694 (select-frame lastf)
2695 )))
2696 ;; return that we are done with this activity.
2697 t)
2698
59588cd4
KH
2699(defun speedbar-add-indicator (indicator-string &optional replace-this)
2700 "Add INDICATOR-STRING to the end of this speedbar line.
2701If INDICATOR-STRING is space, and REPLACE-THIS is a character, then
2702an the existing indicator is removed. If there is already an
2703indicator, then do not add a space."
2704 (beginning-of-line)
2705 ;; The nature of the beast: Assume we are in "the right place"
2706 (end-of-line)
2707 (skip-chars-backward (concat " " speedbar-vc-indicator
2708 (car speedbar-obj-indicator)
2709 (cdr speedbar-obj-indicator)))
2710 (if (and (not (looking-at speedbar-indicator-regex))
2711 (not (string= indicator-string " ")))
2712 (insert speedbar-indicator-separator))
2713 (speedbar-with-writable
2714 (save-excursion
2715 (if (and replace-this
2716 (re-search-forward replace-this (save-excursion (end-of-line)
2717 (point))
2718 t))
2719 (delete-region (match-beginning 0) (match-end 0))))
2720 (end-of-line)
2721 (if (not (string= " " indicator-string))
2722 (insert indicator-string))))
2723
2724;; Load efs/ange-ftp only if compiling to remove byte-compiler warnings.
6b3eac8d 2725;; Steven L Baur <steve@xemacs.org> said this was important:
59588cd4
KH
2726(eval-when-compile (or (featurep 'xemacs)
2727 (condition-case () (require 'efs)
2728 (error (require 'ange-ftp)))))
6b3eac8d
DN
2729
2730(defun speedbar-check-vc ()
2731 "Scan all files in a directory, and for each see if it's checked out.
2732See `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p' for how
2733to add more types of version control systems."
2734 ;; Check for to-do to be reset. If reset but no RCS is available
2735 ;; then set to nil (do nothing) otherwise, start at the beginning
2736 (save-excursion
2737 (set-buffer speedbar-buffer)
2738 (if (and speedbar-vc-do-check (eq speedbar-vc-to-do-point t)
2739 (speedbar-vc-check-dir-p default-directory)
59588cd4
KH
2740 (not (or (and (featurep 'ange-ftp)
2741 (string-match
2742 (car (if speedbar-xemacsp
2743 ange-ftp-path-format
2744 ange-ftp-name-format))
2745 (expand-file-name default-directory)))
2746 ;; efs support: Bob Weiner
2747 (and (featurep 'efs)
2748 (string-match
2749 (car efs-path-regexp)
2750 (expand-file-name default-directory))))))
6b3eac8d
DN
2751 (setq speedbar-vc-to-do-point 0))
2752 (if (numberp speedbar-vc-to-do-point)
2753 (progn
2754 (goto-char speedbar-vc-to-do-point)
2755 (while (and (not (input-pending-p))
2756 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] "
2757 nil t))
2758 (setq speedbar-vc-to-do-point (point))
2759 (if (speedbar-check-vc-this-line (match-string 1))
59588cd4
KH
2760 (speedbar-add-indicator speedbar-vc-indicator
2761 (regexp-quote speedbar-vc-indicator))
2762 (speedbar-add-indicator " "
2763 (regexp-quote speedbar-vc-indicator))))
6b3eac8d
DN
2764 (if (input-pending-p)
2765 ;; return that we are incomplete
2766 nil
2767 ;; we are done, set to-do to nil
2768 (setq speedbar-vc-to-do-point nil)
2769 ;; and return t
2770 t))
2771 t)))
2772
2773(defun speedbar-check-vc-this-line (depth)
2774 "Return t if the file on this line is check of of a version control system.
2775Parameter DEPTH is a string with the current depth of indentation of
2776the file being checked."
2777 (let* ((d (string-to-int depth))
2778 (f (speedbar-line-path d))
2779 (fn (buffer-substring-no-properties
2780 ;; Skip-chars: thanks ptype@dra.hmg.gb
2781 (point) (progn
2782 (skip-chars-forward "^ "
2783 (save-excursion (end-of-line)
2784 (point)))
2785 (point))))
2786 (fulln (concat f fn)))
2787 (if (<= 2 speedbar-verbosity-level)
2788 (message "Speedbar vc check...%s" fulln))
2789 (and (file-writable-p fulln)
2790 (speedbar-this-file-in-vc f fn))))
2791
2792(defun speedbar-vc-check-dir-p (path)
2793 "Return t if we should bother checking PATH for version control files.
2794This can be overloaded to add new types of version control systems."
2795 (or
2796 ;; Local RCS
2797 (file-exists-p (concat path "RCS/"))
2798 ;; Local SCCS
2799 (file-exists-p (concat path "SCCS/"))
2800 ;; Remote SCCS project
2801 (let ((proj-dir (getenv "PROJECTDIR")))
2802 (if proj-dir
2803 (file-exists-p (concat proj-dir "/SCCS"))
2804 nil))
2805 ;; User extension
2806 (run-hook-with-args 'speedbar-vc-path-enable-hook path)
2807 ))
2808
2809(defun speedbar-this-file-in-vc (path name)
2810 "Check to see if the file in PATH with NAME is in a version control system.
2811You can add new VC systems by overriding this function. You can
2812optimize this function by overriding it and only doing those checks
2813that will occur on your system."
2814 (or
2815 ;; RCS file name
2816 (file-exists-p (concat path "RCS/" name ",v"))
0e596101 2817 (file-exists-p (concat path "RCS/" name))
6b3eac8d
DN
2818 ;; Local SCCS file name
2819 (file-exists-p (concat path "SCCS/p." name))
2820 ;; Remote SCCS file name
2821 (let ((proj-dir (getenv "PROJECTDIR")))
2822 (if proj-dir
2823 (file-exists-p (concat proj-dir "/SCCS/p." name))
2824 nil))
2825 ;; User extension
2826 (run-hook-with-args 'speedbar-vc-in-control-hook path name)
2827 ))
59588cd4
KH
2828
2829;; Objet File scanning
2830(defun speedbar-check-objects ()
2831 "Scan all files in a directory, and for each see if there is an object.
2832See `speedbar-check-obj-this-line' and `speedbar-obj-alist' for how
2833to add more object types."
2834 ;; Check for to-do to be reset. If reset but no RCS is available
2835 ;; then set to nil (do nothing) otherwise, start at the beginning
2836 (save-excursion
2837 (set-buffer speedbar-buffer)
2838 (if (and speedbar-obj-do-check (eq speedbar-obj-to-do-point t))
2839 (setq speedbar-obj-to-do-point 0))
2840 (if (numberp speedbar-obj-to-do-point)
2841 (progn
2842 (goto-char speedbar-obj-to-do-point)
2843 (while (and (not (input-pending-p))
2844 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] "
2845 nil t))
2846 (setq speedbar-obj-to-do-point (point))
2847 (let ((ind (speedbar-check-obj-this-line (match-string 1))))
2848 (if (not ind) (setq ind " "))
2849 (speedbar-add-indicator ind (concat
2850 (car speedbar-obj-indicator)
2851 "\\|"
2852 (cdr speedbar-obj-indicator)))))
2853 (if (input-pending-p)
2854 ;; return that we are incomplete
2855 nil
2856 ;; we are done, set to-do to nil
2857 (setq speedbar-obj-to-do-point nil)
2858 ;; and return t
2859 t))
2860 t)))
2861
2862(defun speedbar-check-obj-this-line (depth)
2863 "Return t if the file on this line has an associated object.
2864Parameter DEPTH is a string with the current depth of indentation of
2865the file being checked."
2866 (let* ((d (string-to-int depth))
2867 (f (speedbar-line-path d))
2868 (fn (buffer-substring-no-properties
2869 ;; Skip-chars: thanks ptype@dra.hmg.gb
2870 (point) (progn
2871 (skip-chars-forward "^ "
2872 (save-excursion (end-of-line)
2873 (point)))
2874 (point))))
2875 (fulln (concat f fn)))
2876 (if (<= 2 speedbar-verbosity-level)
2877 (message "Speedbar obj check...%s" fulln))
2878 (let ((oa speedbar-obj-alist))
2879 (while (and oa (not (string-match (car (car oa)) fulln)))
2880 (setq oa (cdr oa)))
2881 (if (not (and oa (file-exists-p (concat (file-name-sans-extension fulln)
2882 (cdr (car oa))))))
2883 nil
2884 ;; Find out if the object is out of date or not.
2885 (let ((date1 (nth 5 (file-attributes fulln)))
2886 (date2 (nth 5 (file-attributes (concat
2887 (file-name-sans-extension fulln)
2888 (cdr (car oa)))))))
2889 (if (or (< (car date1) (car date2))
2890 (and (= (car date1) (car date2))
2891 (< (nth 1 date1) (nth 1 date2))))
2892 (car speedbar-obj-indicator)
2893 (cdr speedbar-obj-indicator)))))))
6b3eac8d
DN
2894\f
2895;;; Clicking Activity
2896;;
2897(defun speedbar-quick-mouse (e)
2898 "Since mouse events are strange, this will keep the mouse nicely positioned.
2899This should be bound to mouse event E."
2900 (interactive "e")
2901 (mouse-set-point e)
2902 (speedbar-position-cursor-on-line)
2903 )
2904
2905(defun speedbar-position-cursor-on-line ()
2906 "Position the cursor on a line."
2907 (let ((oldpos (point)))
2908 (beginning-of-line)
2909 (if (looking-at "[0-9]+:\\s-*..?.? ")
2910 (goto-char (1- (match-end 0)))
2911 (goto-char oldpos))))
2912
2913(defun speedbar-power-click (e)
2914 "Activate any speedbar button as a power click.
2915This should be bound to mouse event E."
2916 (interactive "e")
2917 (let ((speedbar-power-click t))
2918 (speedbar-click e)))
2919
2920(defun speedbar-click (e)
2921 "Activate any speedbar buttons where the mouse is clicked.
2922This must be bound to a mouse event. A button is any location of text
2923with a mouse face that has a text property called `speedbar-function'.
2924This should be bound to mouse event E."
2925 (interactive "e")
2926 (mouse-set-point e)
2927 (speedbar-do-function-pointer)
2928 (speedbar-quick-mouse e))
2929
2930(defun speedbar-double-click (e)
2931 "Activate any speedbar buttons where the mouse is clicked.
2932This must be bound to a mouse event. A button is any location of text
2933with a mouse face that has a text property called `speedbar-function'.
2934This should be bound to mouse event E."
2935 (interactive "e")
2936 ;; Emacs only. XEmacs handles this via `mouse-track-click-hook'.
2937 (cond ((eq (car e) 'down-mouse-1)
2938 (mouse-set-point e))
2939 ((eq (car e) 'mouse-1)
2940 (speedbar-quick-mouse e))
2941 ((or (eq (car e) 'double-down-mouse-1)
59588cd4 2942 (eq (car e) 'triple-down-mouse-1))
6b3eac8d
DN
2943 (mouse-set-point e)
2944 (speedbar-do-function-pointer)
2945 (speedbar-quick-mouse e))))
2946
2947(defun speedbar-do-function-pointer ()
2948 "Look under the cursor and examine the text properties.
2949From this extract the file/tag name, token, indentation level and call
2950a function if appropriate"
2951 (let* ((fn (get-text-property (point) 'speedbar-function))
2952 (tok (get-text-property (point) 'speedbar-token))
2953 ;; The 1-,+ is safe because scaning starts AFTER the point
2954 ;; specified. This lets the search include the character the
2955 ;; cursor is on.
2956 (tp (previous-single-property-change
2957 (1+ (point)) 'speedbar-function))
2958 (np (next-single-property-change
2959 (point) 'speedbar-function))
2960 (txt (buffer-substring-no-properties (or tp (point-min))
2961 (or np (point-max))))
2962 (dent (save-excursion (beginning-of-line)
2963 (string-to-number
2964 (if (looking-at "[0-9]+")
2965 (buffer-substring-no-properties
2966 (match-beginning 0) (match-end 0))
2967 "0")))))
2968 ;;(message "%S:%S:%S:%s" fn tok txt dent)
2969 (and fn (funcall fn txt tok dent)))
2970 (speedbar-position-cursor-on-line))
2971\f
2972;;; Reading info from the speedbar buffer
2973;;
2974(defun speedbar-line-file (&optional p)
2975 "Retrieve the file or whatever from the line at P point.
2976The return value is a string representing the file. If it is a
2977directory, then it is the directory name."
2978 (save-excursion
2979 (save-match-data
2980 (beginning-of-line)
2981 (if (looking-at (concat
2982 "\\([0-9]+\\): *[[<][-+?][]>] \\([^ \n]+\\)\\("
59588cd4 2983 speedbar-indicator-regex "\\)?"))
6b3eac8d
DN
2984 (let* ((depth (string-to-int (match-string 1)))
2985 (path (speedbar-line-path depth))
2986 (f (match-string 2)))
2987 (concat path f))
2988 nil))))
2989
2990(defun speedbar-goto-this-file (file)
2991 "If FILE is displayed, goto this line and return t.
2992Otherwise do not move and return nil."
2993 (let ((path (substring (file-name-directory (expand-file-name file))
2994 (length (expand-file-name default-directory))))
2995 (dest (point)))
2996 (save-match-data
2997 (goto-char (point-min))
2998 ;; scan all the directories
2999 (while (and path (not (eq path t)))
3000 (if (string-match "^/?\\([^/]+\\)" path)
3001 (let ((pp (match-string 1 path)))
3002 (if (save-match-data
3003 (re-search-forward (concat "> " (regexp-quote pp) "$")
3004 nil t))
3005 (setq path (substring path (match-end 1)))
3006 (setq path nil)))
3007 (setq path t)))
3008 ;; find the file part
3009 (if (or (not path) (string= (file-name-nondirectory file) ""))
3010 ;; only had a dir part
3011 (if path
3012 (progn
3013 (speedbar-position-cursor-on-line)
3014 t)
3015 (goto-char dest) nil)
3016 ;; find the file part
3017 (let ((nd (file-name-nondirectory file)))
3018 (if (re-search-forward
3019 (concat "] \\(" (regexp-quote nd)
59588cd4 3020 "\\)\\(" speedbar-indicator-regex "\\)$")
6b3eac8d
DN
3021 nil t)
3022 (progn
3023 (speedbar-position-cursor-on-line)
3024 t)
3025 (goto-char dest)
3026 nil))))))
3027
3028(defun speedbar-line-path (depth)
3029 "Retrieve the pathname associated with the current line.
3030This may require traversing backwards from DEPTH and combining the default
3031directory with these items."
59588cd4
KH
3032 (cond
3033 ((string= speedbar-initial-expansion-list-name "files")
3034 (save-excursion
3035 (save-match-data
3036 (let ((path nil))
3037 (setq depth (1- depth))
3038 (while (/= depth -1)
3039 (if (not (re-search-backward (format "^%d:" depth) nil t))
3040 (error "Error building path of tag")
3041 (cond ((looking-at "[0-9]+:\\s-*<->\\s-+\\([^\n]+\\)$")
3042 (setq path (concat (buffer-substring-no-properties
3043 (match-beginning 1) (match-end 1))
3044 "/"
3045 path)))
3046 ((looking-at "[0-9]+:\\s-*[-]\\s-+\\([^\n]+\\)$")
3047 ;; This is the start of our path.
3048 (setq path (buffer-substring-no-properties
3049 (match-beginning 1) (match-end 1))))))
3050 (setq depth (1- depth)))
3051 (if (and path
3052 (string-match (concat speedbar-indicator-regex "$")
3053 path))
3054 (setq path (substring path 0 (match-beginning 0))))
3055 (concat default-directory path)))))
3056 (t
3057 ;; If we aren't in file mode, then return an empty string to make
3058 ;; sure that we can still get some stuff done.
3059 "")))
6b3eac8d
DN
3060
3061(defun speedbar-path-line (path)
3062 "Position the cursor on the line specified by PATH."
3063 (save-match-data
3064 (if (string-match "/$" path)
3065 (setq path (substring path 0 (match-beginning 0))))
3066 (let ((nomatch t) (depth 0)
3067 (fname (file-name-nondirectory path))
3068 (pname (file-name-directory path)))
3069 (if (not (member pname speedbar-shown-directories))
59588cd4 3070 (error "Internal Error: File %s not shown in speedbar" path))
6b3eac8d
DN
3071 (goto-char (point-min))
3072 (while (and nomatch
3073 (re-search-forward
3074 (concat "[]>] \\(" (regexp-quote fname)
59588cd4 3075 "\\)\\(" speedbar-indicator-regex "\\)?$")
6b3eac8d
DN
3076 nil t))
3077 (beginning-of-line)
3078 (looking-at "\\([0-9]+\\):")
3079 (setq depth (string-to-int (match-string 0))
3080 nomatch (not (string= pname (speedbar-line-path depth))))
3081 (end-of-line))
3082 (beginning-of-line)
3083 (not nomatch))))
3084
3085(defun speedbar-edit-line ()
3086 "Edit whatever tag or file is on the current speedbar line."
3087 (interactive)
3088 (or (save-excursion
3089 (beginning-of-line)
3090 ;; If this fails, then it is a non-standard click, and as such,
3091 ;; perfectly allowed.
3092 (if (re-search-forward "[]>}] [a-zA-Z0-9]"
3093 (save-excursion (end-of-line) (point))
3094 t)
3095 (speedbar-do-function-pointer)
3096 nil))
3097 (speedbar-do-function-pointer)))
3098
3099(defun speedbar-expand-line ()
3100 "Expand the line under the cursor."
3101 (interactive)
3102 (beginning-of-line)
3103 (re-search-forward ":\\s-*.\\+. " (save-excursion (end-of-line) (point)))
3104 (forward-char -2)
3105 (speedbar-do-function-pointer))
3106
3107(defun speedbar-contract-line ()
3108 "Contract the line under the cursor."
3109 (interactive)
3110 (beginning-of-line)
3111 (re-search-forward ":\\s-*.-. " (save-excursion (end-of-line) (point)))
3112 (forward-char -2)
3113 (speedbar-do-function-pointer))
3114
3115(if speedbar-xemacsp
3116 (defalias 'speedbar-mouse-event-p 'button-press-event-p)
3117 (defun speedbar-mouse-event-p (event)
3118 "Return t if the event is a mouse related event"
3119 ;; And Emacs does it this way
3120 (if (and (listp event)
3121 (member (event-basic-type event)
3122 '(mouse-1 mouse-2 mouse-3)))
3123 t
3124 nil)))
3125
3126(defun speedbar-maybee-jump-to-attached-frame ()
3127 "Jump to the attached frame ONLY if this was not a mouse event."
3128 (if (or (not (speedbar-mouse-event-p last-input-event))
3129 speedbar-activity-change-focus-flag)
3130 (progn
3131 (select-frame speedbar-attached-frame)
3132 (other-frame 0))))
3133
3134(defun speedbar-find-file (text token indent)
3135 "Speedbar click handler for filenames.
3136TEXT, the file will be displayed in the attached frame.
3137TOKEN is unused, but required by the click handler. INDENT is the
3138current indentation level."
3139 (let ((cdd (speedbar-line-path indent)))
3140 (speedbar-find-file-in-frame (concat cdd text))
3141 (speedbar-stealthy-updates)
3142 (run-hooks 'speedbar-visiting-file-hook)
3143 ;; Reset the timer with a new timeout when cliking a file
3144 ;; in case the user was navigating directories, we can cancel
3145 ;; that other timer.
3146 (speedbar-set-timer speedbar-update-speed))
3147 (speedbar-maybee-jump-to-attached-frame))
3148
3149(defun speedbar-dir-follow (text token indent)
3150 "Speedbar click handler for directory names.
3151Clicking a directory will cause the speedbar to list files in the
3152the subdirectory TEXT. TOKEN is an unused requirement. The
3153subdirectory chosen will be at INDENT level."
3154 (setq default-directory
3155 (concat (expand-file-name (concat (speedbar-line-path indent) text))
3156 "/"))
3157 ;; Because we leave speedbar as the current buffer,
3158 ;; update contents will change directory without
59588cd4
KH
3159 ;; having to touch the attached frame. Turn off smart expand just
3160 ;; in case.
3161 (let ((speedbar-smart-directory-expand-flag nil))
3162 (speedbar-update-contents))
6b3eac8d
DN
3163 (speedbar-set-timer speedbar-navigating-speed)
3164 (setq speedbar-last-selected-file nil)
3165 (speedbar-stealthy-updates))
3166
3167(defun speedbar-delete-subblock (indent)
3168 "Delete text from point to indentation level INDENT or greater.
3169Handles end-of-sublist smartly."
3170 (speedbar-with-writable
3171 (save-excursion
3172 (end-of-line) (forward-char 1)
3173 (while (and (not (save-excursion
3174 (re-search-forward (format "^%d:" indent)
3175 nil t)))
3176 (>= indent 0))
3177 (setq indent (1- indent)))
3178 (delete-region (point) (if (>= indent 0)
3179 (match-beginning 0)
3180 (point-max))))))
3181
3182(defun speedbar-dired (text token indent)
3183 "Speedbar click handler for directory expand button.
3184Clicking this button expands or contracts a directory. TEXT is the
3185button clicked which has either a + or -. TOKEN is the directory to be
3186expanded. INDENT is the current indentation level."
3187 (cond ((string-match "+" text) ;we have to expand this dir
3188 (setq speedbar-shown-directories
3189 (cons (expand-file-name
3190 (concat (speedbar-line-path indent) token "/"))
3191 speedbar-shown-directories))
3192 (speedbar-change-expand-button-char ?-)
3193 (speedbar-reset-scanners)
3194 (save-excursion
3195 (end-of-line) (forward-char 1)
3196 (speedbar-with-writable
3197 (speedbar-default-directory-list
3198 (concat (speedbar-line-path indent) token "/")
3199 (1+ indent)))))
3200 ((string-match "-" text) ;we have to contract this node
3201 (speedbar-reset-scanners)
3202 (let ((oldl speedbar-shown-directories)
3203 (newl nil)
3204 (td (expand-file-name
3205 (concat (speedbar-line-path indent) token))))
3206 (while oldl
3207 (if (not (string-match (concat "^" (regexp-quote td)) (car oldl)))
3208 (setq newl (cons (car oldl) newl)))
3209 (setq oldl (cdr oldl)))
3210 (setq speedbar-shown-directories newl))
3211 (speedbar-change-expand-button-char ?+)
3212 (speedbar-delete-subblock indent)
3213 )
59588cd4 3214 (t (error "Ooops... not sure what to do")))
6b3eac8d
DN
3215 (speedbar-center-buffer-smartly)
3216 (setq speedbar-last-selected-file nil)
3217 (save-excursion (speedbar-stealthy-updates)))
3218
3219(defun speedbar-directory-buttons-follow (text token indent)
3220 "Speedbar click handler for default directory buttons.
3221TEXT is the button clicked on. TOKEN is the directory to follow.
3222INDENT is the current indentation level and is unused."
0e596101
EL
3223 (if (string-match "^[A-z]:$" token)
3224 (setq default-directory (concat token (char-to-string directory-sep-char)))
59588cd4 3225 (setq default-directory token))
6b3eac8d
DN
3226 ;; Because we leave speedbar as the current buffer,
3227 ;; update contents will change directory without
3228 ;; having to touch the attached frame.
3229 (speedbar-update-contents)
3230 (speedbar-set-timer speedbar-navigating-speed))
3231
3232(defun speedbar-tag-file (text token indent)
3233 "The cursor is on a selected line. Expand the tags in the specified file.
3234The parameter TEXT and TOKEN are required, where TEXT is the button
3235clicked, and TOKEN is the file to expand. INDENT is the current
3236indentation level."
3237 (cond ((string-match "+" text) ;we have to expand this file
3238 (let* ((fn (expand-file-name (concat (speedbar-line-path indent)
3239 token)))
3240 (lst (if speedbar-use-imenu-flag
3241 (let ((tim (speedbar-fetch-dynamic-imenu fn)))
3242 (if (eq tim t)
3243 (speedbar-fetch-dynamic-etags fn)
3244 tim))
3245 (speedbar-fetch-dynamic-etags fn))))
3246 ;; if no list, then remove expando button
3247 (if (not lst)
3248 (speedbar-change-expand-button-char ??)
3249 (speedbar-change-expand-button-char ?-)
3250 (speedbar-with-writable
3251 (save-excursion
3252 (end-of-line) (forward-char 1)
3253 (speedbar-insert-generic-list indent
3254 lst 'speedbar-tag-expand
3255 'speedbar-tag-find))))))
3256 ((string-match "-" text) ;we have to contract this node
3257 (speedbar-change-expand-button-char ?+)
3258 (speedbar-delete-subblock indent))
59588cd4 3259 (t (error "Ooops... not sure what to do")))
6b3eac8d
DN
3260 (speedbar-center-buffer-smartly))
3261
3262(defun speedbar-tag-find (text token indent)
3263 "For the tag TEXT in a file TOKEN, goto that position.
3264INDENT is the current indentation level."
3265 (let ((file (speedbar-line-path indent)))
3266 (speedbar-find-file-in-frame file)
3267 (save-excursion (speedbar-stealthy-updates))
3268 ;; Reset the timer with a new timeout when cliking a file
3269 ;; in case the user was navigating directories, we can cancel
3270 ;; that other timer.
3271 (speedbar-set-timer speedbar-update-speed)
3272 (goto-char token)
3273 (run-hooks 'speedbar-visiting-tag-hook)
3274 ;;(recenter)
3275 (speedbar-maybee-jump-to-attached-frame)
3276 ))
3277
3278(defun speedbar-tag-expand (text token indent)
3279 "Expand a tag sublist. Imenu will return sub-lists of specialized tag types.
3280Etags does not support this feature. TEXT will be the button
3281string. TOKEN will be the list, and INDENT is the current indentation
3282level."
3283 (cond ((string-match "+" text) ;we have to expand this file
3284 (speedbar-change-expand-button-char ?-)
3285 (speedbar-with-writable
3286 (save-excursion
3287 (end-of-line) (forward-char 1)
59588cd4 3288 (speedbar-insert-generic-list indent token 'speedbar-tag-expand
6b3eac8d
DN
3289 'speedbar-tag-find))))
3290 ((string-match "-" text) ;we have to contract this node
3291 (speedbar-change-expand-button-char ?+)
3292 (speedbar-delete-subblock indent))
59588cd4 3293 (t (error "Ooops... not sure what to do")))
6b3eac8d
DN
3294 (speedbar-center-buffer-smartly))
3295\f
3296;;; Loading files into the attached frame.
3297;;
3298(defun speedbar-find-file-in-frame (file)
3299 "This will load FILE into the speedbar attached frame.
3300If the file is being displayed in a different frame already, then raise that
3301frame instead."
3302 (let* ((buff (find-file-noselect file))
3303 (bwin (get-buffer-window buff 0)))
3304 (if bwin
3305 (progn
3306 (select-window bwin)
3307 (raise-frame (window-frame bwin)))
3308 (if speedbar-power-click
3309 (let ((pop-up-frames t)) (select-window (display-buffer buff)))
3310 (select-frame speedbar-attached-frame)
3311 (switch-to-buffer buff))))
59588cd4 3312 )
6b3eac8d
DN
3313
3314;;; Centering Utility
3315;;
3316(defun speedbar-center-buffer-smartly ()
3317 "Recenter a speedbar buffer so the current indentation level is all visible.
3318This assumes that the cursor is on a file, or tag of a file which the user is
3319interested in."
3320 (if (<= (count-lines (point-min) (point-max))
0e596101 3321 (1- (window-height (selected-window))))
6b3eac8d
DN
3322 ;; whole buffer fits
3323 (let ((cp (point)))
3324 (goto-char (point-min))
3325 (recenter 0)
3326 (goto-char cp))
3327 ;; too big
3328 (let (depth start end exp p)
3329 (save-excursion
3330 (beginning-of-line)
3331 (setq depth (if (looking-at "[0-9]+")
3332 (string-to-int (buffer-substring-no-properties
3333 (match-beginning 0) (match-end 0)))
3334 0))
3335 (setq exp (format "^%d:\\s-*[[{<]\\([?+-]\\)[]>}]" depth)))
3336 (save-excursion
3337 (end-of-line)
3338 (if (re-search-backward exp nil t)
3339 (setq start (point))
3340 (error "Center error"))
3341 (save-excursion ;Not sure about this part.
3342 (end-of-line)
3343 (setq p (point))
3344 (while (and (not (re-search-forward exp nil t))
3345 (>= depth 0))
3346 (setq depth (1- depth))
3347 (setq exp (format "^%d:\\s-*[[{<]\\([?+-]\\)[]>}]" depth)))
3348 (if (/= (point) p)
3349 (setq end (point))
3350 (setq end (point-max)))))
3351 ;; Now work out the details of centering
3352 (let ((nl (count-lines start end))
3353 (cp (point)))
3354 (if (> nl (window-height (selected-window)))
3355 ;; We can't fit it all, so just center on cursor
3356 (progn (goto-char start)
3357 (recenter 1))
3358 ;; we can fit everything on the screen, but...
3359 (if (and (pos-visible-in-window-p start (selected-window))
3360 (pos-visible-in-window-p end (selected-window)))
3361 ;; we are all set!
3362 nil
3363 ;; we need to do something...
3364 (goto-char start)
3365 (let ((newcent (/ (- (window-height (selected-window)) nl) 2))
3366 (lte (count-lines start (point-max))))
3367 (if (and (< (+ newcent lte) (window-height (selected-window)))
3368 (> (- (window-height (selected-window)) lte 1)
3369 newcent))
3370 (setq newcent (- (window-height (selected-window))
3371 lte 1)))
3372 (recenter newcent))))
3373 (goto-char cp)))))
3374
3375\f
3376;;; Tag Management -- Imenu
3377;;
3378(if (not speedbar-use-imenu-flag)
3379
3380 nil
3381
3382(eval-when-compile (if (locate-library "imenu") (require 'imenu)))
3383
3384(defun speedbar-fetch-dynamic-imenu (file)
3385 "Load FILE into a buffer, and generate tags using Imenu.
3386Returns the tag list, or t for an error."
3387 ;; Load this AND compile it in
3388 (require 'imenu)
3389 (save-excursion
3390 (set-buffer (find-file-noselect file))
3391 (if speedbar-power-click (setq imenu--index-alist nil))
3392 (condition-case nil
3393 (let ((index-alist (imenu--make-index-alist t)))
3394 (if speedbar-sort-tags
3395 (sort (copy-alist index-alist)
3396 (lambda (a b) (string< (car a) (car b))))
3397 index-alist))
3398 (error t))))
3399)
3400\f
3401;;; Tag Management -- etags (old XEmacs compatibility part)
3402;;
3403(defvar speedbar-fetch-etags-parse-list
3404 '(;; Note that java has the same parse-group as c
3405 ("\\.\\([cChH]\\|c\\+\\+\\|cpp\\|cc\\|hh\\|java\\)\\'" .
3406 speedbar-parse-c-or-c++tag)
3407 ("^\\.emacs$\\|.\\(el\\|l\\|lsp\\)\\'" .
3408 "def[^i]+\\s-+\\(\\(\\w\\|[-_]\\)+\\)\\s-*\C-?")
59588cd4
KH
3409; ("\\.\\([fF]\\|for\\|FOR\\|77\\|90\\)\\'" .
3410; speedbar-parse-fortran77-tag)
6b3eac8d
DN
3411 ("\\.tex\\'" . speedbar-parse-tex-string)
3412 ("\\.p\\'" .
3413 "\\(\\(FUNCTION\\|function\\|PROCEDURE\\|procedure\\)\\s-+\\([a-zA-Z0-9_.:]+\\)\\)\\s-*(?^?")
3414 )
3415 "Associations of file extensions and expressions for extracting tags.
3416To add a new file type, you would want to add a new association to the
3417list, where the car is the file match, and the cdr is the way to
3418extract an element from the tags output. If the output is complex,
3419use a function symbol instead of regexp. The function should expect
3420to be at the beginning of a line in the etags buffer.
3421
3422This variable is ignored if `speedbar-use-imenu-flag' is non-nil.")
3423
3424(defvar speedbar-fetch-etags-command "etags"
3425 "*Command used to create an etags file.
3426
3427This variable is ignored if `speedbar-use-imenu-flag' is t")
3428
3429(defvar speedbar-fetch-etags-arguments '("-D" "-I" "-o" "-")
3430 "*List of arguments to use with `speedbar-fetch-etags-command'.
3431This creates an etags output buffer. Use `speedbar-toggle-etags' to
3432modify this list conveniently.
3433
3434This variable is ignored if `speedbar-use-imenu-flag' is t")
3435
3436(defun speedbar-toggle-etags (flag)
3437 "Toggle FLAG in `speedbar-fetch-etags-arguments'.
3438FLAG then becomes a member of etags command line arguments. If flag
3439is \"sort\", then toggle the value of `speedbar-sort-tags'. If its
3440value is \"show\" then toggle the value of
3441`speedbar-show-unknown-files'.
3442
3443 This function is a convenience function for XEmacs menu created by
3444Farzin Guilak <farzin@protocol.com>"
3445 (interactive)
3446 (cond
3447 ((equal flag "sort")
3448 (setq speedbar-sort-tags (not speedbar-sort-tags)))
3449 ((equal flag "show")
3450 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files)))
3451 ((or (equal flag "-C")
3452 (equal flag "-S")
3453 (equal flag "-D"))
3454 (if (member flag speedbar-fetch-etags-arguments)
3455 (setq speedbar-fetch-etags-arguments
3456 (delete flag speedbar-fetch-etags-arguments))
3457 (add-to-list 'speedbar-fetch-etags-arguments flag)))
3458 (t nil)))
3459
3460(defun speedbar-fetch-dynamic-etags (file)
3461 "For FILE, run etags and create a list of symbols extracted.
3462Each symbol will be associated with its line position in FILE."
3463 (let ((newlist nil))
3464 (unwind-protect
3465 (save-excursion
3466 (if (get-buffer "*etags tmp*")
3467 (kill-buffer "*etags tmp*")) ;kill to clean it up
3468 (if (<= 1 speedbar-verbosity-level) (message "Fetching etags..."))
3469 (set-buffer (get-buffer-create "*etags tmp*"))
3470 (apply 'call-process speedbar-fetch-etags-command nil
3471 (current-buffer) nil
3472 (append speedbar-fetch-etags-arguments (list file)))
3473 (goto-char (point-min))
3474 (if (<= 1 speedbar-verbosity-level) (message "Fetching etags..."))
3475 (let ((expr
3476 (let ((exprlst speedbar-fetch-etags-parse-list)
3477 (ans nil))
3478 (while (and (not ans) exprlst)
3479 (if (string-match (car (car exprlst)) file)
3480 (setq ans (car exprlst)))
3481 (setq exprlst (cdr exprlst)))
3482 (cdr ans))))
3483 (if expr
3484 (let (tnl)
3485 (while (not (save-excursion (end-of-line) (eobp)))
3486 (save-excursion
3487 (setq tnl (speedbar-extract-one-symbol expr)))
3488 (if tnl (setq newlist (cons tnl newlist)))
3489 (forward-line 1)))
3490 (message "Sorry, no support for a file of that extension"))))
3491 )
3492 (if speedbar-sort-tags
3493 (sort newlist (lambda (a b) (string< (car a) (car b))))
3494 (reverse newlist))))
3495
3496;; This bit donated by Farzin Guilak <farzin@protocol.com> but I'm not
3497;; sure it's needed with the different sorting method.
3498;;
3499;(defun speedbar-clean-etags()
3500; "Removes spaces before the ^? character, and removes `#define',
3501;return types, etc. preceding tags. This ensures that the sort operation
3502;works on the tags, not the return types."
3503; (save-excursion
3504; (goto-char (point-min))
3505; (while
3506; (re-search-forward "(?[ \t](?\C-?" nil t)
3507; (replace-match "\C-?" nil nil))
3508; (goto-char (point-min))
3509; (while
3510; (re-search-forward "\\(.*[ \t]+\\)\\([^ \t\n]+.*\C-?\\)" nil t)
3511; (delete-region (match-beginning 1) (match-end 1)))))
3512
3513(defun speedbar-extract-one-symbol (expr)
59588cd4 3514 "At point, return nil, or one alist in the form: (SYMBOL . POSITION)
6b3eac8d
DN
3515The line should contain output from etags. Parse the output using the
3516regular expression EXPR"
3517 (let* ((sym (if (stringp expr)
3518 (if (save-excursion
3519 (re-search-forward expr (save-excursion
3520 (end-of-line)
3521 (point)) t))
3522 (buffer-substring-no-properties (match-beginning 1)
3523 (match-end 1)))
3524 (funcall expr)))
3525 (pos (let ((j (re-search-forward "[\C-?\C-a]\\([0-9]+\\),\\([0-9]+\\)"
3526 (save-excursion
3527 (end-of-line)
3528 (point))
3529 t)))
3530 (if (and j sym)
3531 (1+ (string-to-int (buffer-substring-no-properties
3532 (match-beginning 2)
3533 (match-end 2))))
3534 0))))
3535 (if (/= pos 0)
3536 (cons sym pos)
3537 nil)))
3538
3539(defun speedbar-parse-c-or-c++tag ()
3540 "Parse a c or c++ tag, which tends to be a little complex."
3541 (save-excursion
3542 (let ((bound (save-excursion (end-of-line) (point))))
3543 (cond ((re-search-forward "\C-?\\([^\C-a]+\\)\C-a" bound t)
3544 (buffer-substring-no-properties (match-beginning 1)
3545 (match-end 1)))
3546 ((re-search-forward "\\<\\([^ \t]+\\)\\s-+new(" bound t)
3547 (buffer-substring-no-properties (match-beginning 1)
3548 (match-end 1)))
3549 ((re-search-forward "\\<\\([^ \t(]+\\)\\s-*(\C-?" bound t)
3550 (buffer-substring-no-properties (match-beginning 1)
3551 (match-end 1)))
3552 (t nil))
3553 )))
3554
3555(defun speedbar-parse-tex-string ()
3556 "Parse a Tex string. Only find data which is relevant."
3557 (save-excursion
3558 (let ((bound (save-excursion (end-of-line) (point))))
3559 (cond ((re-search-forward "\\(\\(sub\\)*section\\|chapter\\|cite\\)\\s-*{[^\C-?}]*}?" bound t)
3560 (buffer-substring-no-properties (match-beginning 0)
3561 (match-end 0)))
3562 (t nil)))))
3563
3564\f
59588cd4
KH
3565;;; BUFFER DISPLAY mode.
3566;;
3567(defvar speedbar-buffers-key-map nil
3568 "Keymap used when in the buffers display mode.")
3569
3570(if speedbar-buffers-key-map
3571 nil
3572 (setq speedbar-buffers-key-map (speedbar-make-specialized-keymap))
3573
3574 ;; Basic tree features
3575 (define-key speedbar-buffers-key-map "e" 'speedbar-edit-line)
3576 (define-key speedbar-buffers-key-map "\C-m" 'speedbar-edit-line)
3577 (define-key speedbar-buffers-key-map "+" 'speedbar-expand-line)
3578 (define-key speedbar-buffers-key-map "-" 'speedbar-contract-line)
3579
3580 ;; Buffer specific keybindings
3581 (define-key speedbar-buffers-key-map "k" 'speedbar-buffer-kill-buffer)
3582 (define-key speedbar-buffers-key-map "r" 'speedbar-buffer-revert-buffer)
3583
3584 )
3585
3586(defvar speedbar-buffer-easymenu-definition
3587 '(["Jump to buffer" speedbar-edit-line t]
3588 ["Expand File Tags" speedbar-expand-line
3589 (save-excursion (beginning-of-line)
3590 (looking-at "[0-9]+: *.\\+. "))]
3591 ["Contract File Tags" speedbar-contract-line
3592 (save-excursion (beginning-of-line)
3593 (looking-at "[0-9]+: *.-. "))]
3594 )
3595 "Menu item elements shown when displaying a buffer list.")
3596
3597(defun speedbar-buffer-buttons (directory zero)
3598 "Create speedbar buttons based on the buffers currently loaded.
3599DIRECTORY is the path to the currently active buffer, and ZERO is 0."
3600 (speedbar-buffer-buttons-engine nil))
3601
3602(defun speedbar-buffer-buttons-temp (directory zero)
3603 "Create speedbar buttons based on the buffers currently loaded.
3604DIRECTORY is the path to the currently active buffer, and ZERO is 0."
3605 (speedbar-buffer-buttons-engine t))
3606
3607(defun speedbar-buffer-buttons-engine (temp)
3608 "Create speedbar buffer buttons.
3609If TEMP is non-nil, then clicking on a buffer restores the previous display."
3610 (insert "Active Buffers:\n")
3611 (let ((bl (buffer-list)))
3612 (while bl
3613 (if (string-match "^[ *]" (buffer-name (car bl)))
3614 nil
3615 (let* ((known (string-match speedbar-file-regexp
3616 (buffer-name (car bl))))
3617 (expchar (if known ?+ ??))
3618 (fn (if known 'speedbar-tag-file nil))
3619 (fname (save-excursion (set-buffer (car bl))
3620 (buffer-file-name))))
3621 (speedbar-make-tag-line 'bracket expchar fn fname
3622 (buffer-name (car bl))
3623 'speedbar-buffer-click temp
3624 'speedbar-file-face 0)))
3625 (setq bl (cdr bl)))
3626 (setq bl (buffer-list))
3627 (insert "Scratch Buffers:\n")
3628 (while bl
3629 (if (not (string-match "^\\*" (buffer-name (car bl))))
3630 nil
3631 (if (eq (car bl) speedbar-buffer)
3632 nil
3633 (speedbar-make-tag-line 'bracket ?? nil nil
3634 (buffer-name (car bl))
3635 'speedbar-buffer-click temp
3636 'speedbar-file-face 0)))
3637 (setq bl (cdr bl)))
3638 (setq bl (buffer-list))
3639 (insert "Hidden Buffers:\n")
3640 (while bl
3641 (if (not (string-match "^ " (buffer-name (car bl))))
3642 nil
3643 (if (eq (car bl) speedbar-buffer)
3644 nil
3645 (speedbar-make-tag-line 'bracket ?? nil nil
3646 (buffer-name (car bl))
3647 'speedbar-buffer-click temp
3648 'speedbar-file-face 0)))
3649 (setq bl (cdr bl)))))
3650
3651(defun speedbar-buffer-click (text token indent)
3652 "When the users clicks on a buffer-button in speedbar.
3653TEXT is the buffer's name, TOKEN and INDENT are unused."
3654 (if speedbar-power-click
3655 (let ((pop-up-frames t)) (select-window (display-buffer text)))
3656 (select-frame speedbar-attached-frame)
3657 (switch-to-buffer text)
3658 (if token (speedbar-change-initial-expansion-list
3659 speedbar-previously-used-expansion-list-name))))
3660
3661(defun speedbar-buffer-kill-buffer ()
3662 "Kill the buffer the cursor is on in the speedbar buffer."
3663 (interactive)
3664 (or (save-excursion
3665 (beginning-of-line)
3666 ;; If this fails, then it is a non-standard click, and as such,
3667 ;; perfectly allowed.
3668 (if (re-search-forward "[]>}] [a-zA-Z0-9]"
3669 (save-excursion (end-of-line) (point))
3670 t)
3671 (let ((text (progn
3672 (forward-char -1)
3673 (buffer-substring (point) (save-excursion
3674 (end-of-line)
3675 (point))))))
3676 (if (and (get-buffer text)
3677 (y-or-n-p (format "Kill buffer %s? " text)))
0e596101
EL
3678 (kill-buffer text))
3679 (speedbar-refresh))))))
59588cd4
KH
3680
3681(defun speedbar-buffer-revert-buffer ()
3682 "Revert the buffer the cursor is on in the speedbar buffer."
3683 (interactive)
3684 (save-excursion
3685 (beginning-of-line)
3686 ;; If this fails, then it is a non-standard click, and as such,
3687 ;; perfectly allowed
3688 (if (re-search-forward "[]>}] [a-zA-Z0-9]"
3689 (save-excursion (end-of-line) (point))
3690 t)
3691 (let ((text (progn
3692 (forward-char -1)
3693 (buffer-substring (point) (save-excursion
3694 (end-of-line)
3695 (point))))))
3696 (if (get-buffer text)
3697 (progn
3698 (set-buffer text)
3699 (revert-buffer t)))))))
3700
3701
3702\f
6b3eac8d
DN
3703;;; Color loading section This is messy *Blech!*
3704;;
3705(defface speedbar-button-face '((((class color) (background light))
3706 (:foreground "green4"))
3707 (((class color) (background dark))
3708 (:foreground "green3")))
3709 "Face used for +/- buttons."
3710 :group 'speedbar-faces)
3711
3712(defface speedbar-file-face '((((class color) (background light))
3713 (:foreground "cyan4"))
3714 (((class color) (background dark))
3715 (:foreground "cyan"))
3716 (t (:bold t)))
3717 "Face used for file names."
3718 :group 'speedbar-faces)
3719
3720(defface speedbar-directory-face '((((class color) (background light))
3721 (:foreground "blue4"))
3722 (((class color) (background dark))
3723 (:foreground "light blue")))
3724 "Faced used for directory names."
3725 :group 'speedbar-faces)
3726(defface speedbar-tag-face '((((class color) (background light))
3727 (:foreground "brown"))
3728 (((class color) (background dark))
3729 (:foreground "yellow")))
3730 "Face used for displaying tags."
3731 :group 'speedbar-faces)
3732
3733(defface speedbar-selected-face '((((class color) (background light))
3734 (:foreground "red" :underline t))
3735 (((class color) (background dark))
3736 (:foreground "red" :underline t))
3737 (t (:underline t)))
3738 "Face used to underline the file in the active window."
3739 :group 'speedbar-faces)
3740
3741(defface speedbar-highlight-face '((((class color) (background light))
3742 (:background "green"))
3743 (((class color) (background dark))
3744 (:background "sea green"))
3745 (((class grayscale monochrome)
3746 (background light))
3747 (:background "black"))
3748 (((class grayscale monochrome)
3749 (background dark))
3750 (:background "white")))
3751 "Face used for highlighting buttons with the mouse."
3752 :group 'speedbar-faces)
3753
3754;; some edebug hooks
3755(add-hook 'edebug-setup-hook
3756 (lambda ()
3757 (def-edebug-spec speedbar-with-writable def-body)))
3758
3759(provide 'speedbar)
3760;;; speedbar ends here
3761
3762;; run load-time hooks
3763(run-hooks 'speedbar-load-hook)