1 ;;; speedbar --- quick access to files and tags in a frame
3 ;;; Copyright (C) 1996, 97, 98, 99, 00 Free Software Foundation
5 ;; Author: Eric M. Ludlam <zappo@gnu.org>
7 ;; Keywords: file, tags, tools
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
28 ;; The speedbar provides a frame in which files, and locations in
29 ;; files are displayed. These items can be clicked on with mouse-2
30 ;; in order to make the last active frame display that file location.
34 ;; Simply type `M-x speedbar', and it will be autoloaded for you.
36 ;; If you want to choose it from a menu, such as "Tools", you can do this:
38 ;; (define-key-after (lookup-key global-map [menu-bar tools])
39 ;; [speedbar] '("Speedbar" . speedbar-frame-mode) [calendar])
41 ;; If you want to access speedbar using only the keyboard, do this:
43 ;; (global-set-key [f4] 'speedbar-get-focus)
45 ;; This will let you hit f4 (or whatever key you choose) to jump
46 ;; focus to the speedbar frame. Pressing it again will bring you back
47 ;; to the attached frame. Pressing RET or e to jump to a file
48 ;; or tag will move you back to the attached frame. The command
49 ;; `speedbar-get-focus' will also create a speedbar frame if it does
52 ;; Customizing Speedbar:
54 ;; Once a speedbar frame is active, it takes advantage of idle time
55 ;; to keep its contents updated. The contents is usually a list of
56 ;; files in the directory of the currently active buffer. When
57 ;; applicable, tags in the active file can be expanded.
59 ;; To add new supported files types into speedbar, use the function
60 ;; `speedbar-add-supported-extension' If speedbar complains that the
61 ;; file type is not supported, that means there is no built in
62 ;; support from imenu, and the etags part wasn't set up correctly. You
63 ;; may add elements to `speedbar-supported-extension-expressions' as long
64 ;; as it is done before speedbar is loaded.
66 ;; To prevent speedbar from following you into certain directories
67 ;; use the function `speedbar-add-ignored-path-regexp' too add a new
68 ;; regular expression matching a type of path. You may add list
69 ;; elements to `speedbar-ignored-path-expressions' as long as it is
70 ;; done before speedbar is loaded.
72 ;; To add new file types to imenu, see the documentation in the
73 ;; file imenu.el that comes with Emacs. To add new file types which
74 ;; etags supports, you need to modify the variable
75 ;; `speedbar-fetch-etags-parse-list'.
77 ;; If the updates are going too slow for you, modify the variable
78 ;; `speedbar-update-speed' to a longer idle time before updates.
80 ;; If you navigate directories, you will probably notice that you
81 ;; will navigate to a directory which is eventually replaced after
82 ;; you go back to editing a file (unless you pull up a new file.)
83 ;; The delay time before this happens is in
84 ;; `speedbar-navigating-speed', and defaults to 10 seconds.
86 ;; To enable mouse tracking with information in the minibuffer of
87 ;; the attached frame, use the variable `speedbar-track-mouse-flag'.
89 ;; Tag layout can be modified through `speedbar-tag-hierarchy-method',
90 ;; which controls how tags are layed out. It is actually a list of
91 ;; functions that filter the data. The default groups large tag lists
92 ;; into sub-lists. A long flat list can be used instead if needed.
93 ;; Other filters could be easily added.
95 ;; AUC-TEX users: The imenu tags for AUC-TEX mode don't work very
96 ;; well. Use the imenu keywords from tex-mode.el for better results.
98 ;; This file requires the library package assoc (association lists)
100 ;;; Developing for speedbar
102 ;; Adding a speedbar specialized display mode:
104 ;; Speedbar can be configured to create a special display for certain
105 ;; modes that do not display tradition file/tag data. Rmail, Info,
106 ;; and the debugger are examples. These modes can, however, benefit
107 ;; from a speedbar style display in their own way.
109 ;; If your `major-mode' is `foo-mode', the only requirement is to
110 ;; create a function called `foo-speedbar-buttons' which takes one
111 ;; argument, BUFFER. BUFFER will be the buffer speedbar wants filled.
112 ;; In `foo-speedbar-buttons' there are several functions that make
113 ;; building a speedbar display easy. See the documentation for
114 ;; `speedbar-with-writable' (needed because the buffer is usually
115 ;; read-only) `speedbar-make-tag-line', `speedbar-insert-button', and
116 ;; `speedbar-insert-generic-list'. If you use
117 ;; `speedbar-insert-generic-list', also read the doc for
118 ;; `speedbar-tag-hierarchy-method' in case you wish to override it.
119 ;; The function `speedbar-with-attached-buffer' brings you back to the
120 ;; buffer speedbar is displaying for.
122 ;; For those functions that make buttons, the "function" should be a
123 ;; symbol that is the function to call when clicked on. The "token"
124 ;; is extra data you can pass along. The "function" must take three
125 ;; parameters. They are (TEXT TOKEN INDENT). TEXT is the text of the
126 ;; button clicked on. TOKEN is the data passed in when you create the
127 ;; button. INDENT is an indentation level, or 0. You can store
128 ;; indentation levels with `speedbar-make-tag-line' which creates a
129 ;; line with an expander (eg. [+]) and a text button.
131 ;; Some useful functions when writing expand functions, and click
132 ;; functions are `speedbar-change-expand-button-char',
133 ;; `speedbar-delete-subblock', and `speedbar-center-buffer-smartly'.
134 ;; The variable `speedbar-power-click' is set to t in your functions
135 ;; when the user shift-clicks. This indications anything from
136 ;; refreshing cached data to making a buffer appear in a new frame.
138 ;; If you wish to add to the default speedbar menu for the case of
139 ;; `foo-mode', create a variable `foo-speedbar-menu-items'. This
140 ;; should be a list compatible with the `easymenu' package. It will
141 ;; be spliced into the main menu. (Available with click-mouse-3). If
142 ;; you wish to have extra key bindings in your special mode, create a
143 ;; variable `foo-speedbar-key-map'. Instead of using `make-keymap',
144 ;; or `make-sparse-keymap', use the function
145 ;; `speedbar-make-specialized-keymap'. This lets you inherit all of
146 ;; speedbar's default bindings with low overhead.
148 ;; Adding a speedbar top-level display mode:
150 ;; Unlike the specialized modes, there are no name requirements,
151 ;; however the methods for writing a button display, menu, and keymap
152 ;; are the same. Once you create these items, you can call the
153 ;; function `speedbar-add-expansion-list'. It takes one parameter
154 ;; which is a list element of the form (NAME MENU KEYMAP &rest
155 ;; BUTTON-FUNCTIONS). NAME is a string that will show up in the
156 ;; Displays menu item. MENU is a symbol containing the menu items to
157 ;; splice in. KEYMAP is a symbol holding the keymap to use, and
158 ;; BUTTON-FUNCTIONS are the function names to call, in order, to create
160 ;; Another tweekable variable is `speedbar-stealthy-function-list'
161 ;; which is of the form (NAME &rest FUNCTION ...). NAME is the string
162 ;; name matching `speedbar-add-expansion-list'. (It does not need to
163 ;; exist.). This provides additional display info which might be
164 ;; time-consuming to calculate.
165 ;; Lastly, `speedbar-mode-functions-list' allows you to set special
166 ;; function overrides. At the moment very few functions are
167 ;; over ridable, but more will be added as the need is discovered.
170 ;; - More functions to create buttons and options
171 ;; - Timeout directories we haven't visited in a while.
180 (defvar speedbar-xemacsp
(string-match "XEmacs" emacs-version
)
181 "Non-nil if we are running in the XEmacs environment.")
182 (defvar speedbar-xemacs20p
(and speedbar-xemacsp
183 (>= emacs-major-version
20)))
185 ;; customization stuff
186 (defgroup speedbar nil
187 "File and tag browser frame."
193 (defgroup speedbar-faces nil
194 "Faces used in speedbar."
199 (defgroup speedbar-vc nil
200 "Version control display in speedbar."
205 (defvar speedbar-initial-expansion-mode-alist
206 '(("buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map
207 speedbar-buffer-buttons
)
208 ("quick buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map
209 speedbar-buffer-buttons-temp
)
210 ;; Files last, means first in the Displays menu
211 ("files" speedbar-easymenu-definition-special speedbar-file-key-map
212 speedbar-directory-buttons speedbar-default-directory-list
)
214 "List of named expansion elements for filling the speedbar frame.
215 These expansion lists are only valid for regular files. Special modes
216 still get to override this list on a mode-by-mode basis. This list of
217 lists is of the form (NAME MENU KEYMAP FN1 FN2 ...). NAME is a string
218 representing the types of things to be displayed. MENU is an easymenu
219 structure used when in this mode. KEYMAP is a local keymap to install
220 over the regular speedbar keymap. FN1 ... are functions that will be
221 called in order. These functions will always get the default
222 directory to use passed in as the first parameter, and a 0 as the
223 second parameter. The 0 indicates the uppermost indentation level.
224 They must assume that the cursor is at the position where they start
227 (defvar speedbar-initial-expansion-list-name
"files"
228 "A symbol name representing the expansion list to use.
229 The expansion list `speedbar-initial-expansion-mode-alist' contains
230 the names and associated functions to use for buttons in speedbar.")
232 (defvar speedbar-previously-used-expansion-list-name
"files"
233 "Save the last expansion list method.
234 This is used for returning to a previous expansion list method when
235 the user is done with the current expansion list.")
237 (defvar speedbar-stealthy-function-list
239 speedbar-update-current-file speedbar-check-vc speedbar-check-objects
)
241 "List of functions to periodically call stealthily.
242 This list is of the form:
243 '( (\"NAME\" FUNCTION ...)
245 where NAME is the name of the major display mode these functions are
246 for, and the remaining elements FUNCTION are functions to call in order.
247 Each function must return nil if interrupted, or t if completed.
248 Stealthy functions which have a single operation should always return
249 t. Functions which take a long time should maintain a state (where
250 they are in their speedbar related calculations) and permit
251 interruption. See `speedbar-check-vc' as a good example.")
253 (defvar speedbar-mode-functions-list
254 '(("files" (speedbar-item-info . speedbar-files-item-info
)
255 (speedbar-line-path . speedbar-files-line-path
))
256 ("buffers" (speedbar-item-info . speedbar-buffers-item-info
)
257 (speedbar-line-path . speedbar-buffers-line-path
))
258 ("quick buffers" (speedbar-item-info . speedbar-buffers-item-info
)
259 (speedbar-line-path . speedbar-buffers-line-path
))
261 "List of function tables to use for different major display modes.
262 It is not necessary to define any functions for a specialized mode.
263 This just provides a simple way of adding lots of customizations.
264 Each sublist is of the form:
265 (\"NAME\" (FUNCTIONSYMBOL . REPLACEMENTFUNCTION) ...)
266 Where NAME is the name of the specialized mode. The rest of the list
267 is a set of dotted pairs of the form FUNCTIONSYMBOL, which is the name
268 of a function you would like to replace, and REPLACEMENTFUNCTION,
269 which is a function you can call instead. Not all functions can be
270 replaced this way. Replaceable functions must provide that
271 functionality individually.")
273 (defcustom speedbar-mode-specific-contents-flag t
274 "*Non-nil means speedbar will show special mode contents.
275 This permits some modes to create customized contents for the speedbar
280 (defvar speedbar-special-mode-expansion-list nil
281 "Default function list for creating specialized button lists.
282 This list is set by modes that wish to have special speedbar displays.
283 The list is of function names. Each function is called with one
284 parameter BUFFER, the originating buffer. The current buffer is the
287 (defvar speedbar-special-mode-key-map nil
288 "Default keymap used when identifying a specialized display mode.
289 This keymap is local to each buffer that wants to define special keybindings
290 effective when it's display is shown.")
292 (defcustom speedbar-visiting-file-hook nil
293 "Hooks run when speedbar visits a file in the selected frame."
297 (defcustom speedbar-visiting-tag-hook
'(speedbar-highlight-one-tag-line)
298 "Hooks run when speedbar visits a tag in the selected frame."
301 :options
'(speedbar-highlight-one-tag-line
302 speedbar-recenter-to-top
306 (defcustom speedbar-load-hook nil
307 "Hooks run when speedbar is loaded."
311 (defcustom speedbar-reconfigure-keymaps-hook nil
312 "Hooks run when the keymaps are regenerated."
316 (defcustom speedbar-show-unknown-files nil
317 "*Non-nil show files we can't expand with a ? in the expand button.
318 nil means don't show the file in the list."
322 (defcustom speedbar-update-speed
324 (if speedbar-xemacs20p
325 2 ; 1 is too obrusive in XEmacs
326 5) ; when no idleness, need long delay
328 "*Idle time in seconds needed before speedbar will update itself.
329 Updates occur to allow speedbar to display directory information
330 relevant to the buffer you are currently editing."
334 ;; When I moved to a repeating timer, I had the horrible missfortune
335 ;; of loosing the ability for adaptive speed choice. This update
336 ;; speed currently causes long delays when it should have been turned off.
337 (defcustom speedbar-navigating-speed speedbar-update-speed
338 "*Idle time to wait after navigation commands in speedbar are executed.
339 Navigation commands included expanding/contracting nodes, and moving
340 between different directories."
344 (defcustom speedbar-frame-parameters
'((minibuffer . nil
)
349 "*Parameters to use when creating the speedbar frame in Emacs.
350 Any parameter supported by a frame may be added. The parameter `height'
351 will be initialized to the height of the frame speedbar is
352 attached to and added to this list before the new frame is initialized."
354 :type
'(repeat (sexp :tag
"Parameter:")))
356 ;; These values by Hrvoje Niksic <hniksic@srce.hr>
357 (defcustom speedbar-frame-plist
358 '(minibuffer nil width
20 border-width
0
359 internal-border-width
0 unsplittable t
360 default-toolbar-visible-p nil has-modeline-p nil
361 menubar-visible-p nil
)
362 "*Parameters to use when creating the speedbar frame in XEmacs.
363 Parameters not listed here which will be added automatically are
364 `height' which will be initialized to the height of the frame speedbar
367 :type
'(repeat (group :inline t
368 (symbol :tag
"Property")
369 (sexp :tag
"Value"))))
371 (defcustom speedbar-use-imenu-flag
(stringp (locate-library "imenu"))
372 "*Non-nil means use imenu for file parsing. nil to use etags.
373 XEmacs prior to 20.4 doesn't support imenu, therefore the default is to
374 use etags instead. Etags support is not as robust as imenu support."
375 :tag
"Use Imenu for tags"
379 (defvar speedbar-dynamic-tags-function-list
380 '((speedbar-fetch-dynamic-imenu . speedbar-insert-imenu-list
)
381 (speedbar-fetch-dynamic-etags . speedbar-insert-etags-list
))
382 "Set to a functions which will return and insert a list of tags.
383 Each element is of the form ( FETCH . INSERT ) where FETCH
384 is a funciotn which takes one parameter (the file to tag) and returns a
385 list of tags. The tag list can be of any form as long as the
386 corresponding insert method can handle it. If it returns t, then an
387 error occured, and the next fetch routine is tried.
388 INSERT is a function which takes an INDENTation level, and a LIST of
389 tags to insert. It will then create the speedbar buttons.")
391 (defcustom speedbar-track-mouse-flag t
392 "*Non-nil means to display info about the line under the mouse."
396 (defcustom speedbar-sort-tags nil
397 "*If Non-nil, sort tags in the speedbar display. *Obsolete*."
401 (defcustom speedbar-tag-hierarchy-method
402 '(speedbar-prefix-group-tag-hierarchy
403 speedbar-trim-words-tag-hierarchy
)
404 "*List of hooks which speedbar will use to organize tags into groups.
405 Groups are defined as expandable meta-tags. Imenu supports
406 such things in some languages, such as separating variables from
407 functions. Each hook takes one argument LST, and may destructivly
408 create a new list of the same form. LST is a list of elements of the
411 where each ELT is of the form
412 (TAG-NAME-STRING . NUMBER-OR-MARKER)
414 (GROUP-NAME-STRING ELT1 EL2... ELTn)"
417 :options
'(speedbar-sort-tag-hierarchy
418 speedbar-trim-words-tag-hierarchy
419 speedbar-prefix-group-tag-hierarchy
420 speedbar-simple-group-tag-hierarchy
)
423 (defcustom speedbar-tag-group-name-minimum-length
4
424 "*The minimum length of a prefix group name before expanding.
425 Thus, if the `speedbar-tag-hierarchy-method' includes `prefix-group'
426 and one such groups common characters is less than this number of
427 characters, then the group name will be changed to the form of:
431 This way we won't get silly looking listings."
435 (defcustom speedbar-tag-split-minimum-length
20
436 "*Minimum length before we stop trying to create sub-lists in tags.
437 This is used by all tag-hierarchy methods that break large lists into
442 (defcustom speedbar-tag-regroup-maximum-length
10
443 "*Maximum length of submenus that are regrouped.
444 If the regrouping option is used, then if two or more short subgroups
445 are next to each other, then they are combined until this number of
450 (defcustom speedbar-activity-change-focus-flag nil
451 "*Non-nil means the selected frame will change based on activity.
452 Thus, if a file is selected for edit, the buffer will appear in the
453 selected frame and the focus will change to that frame."
457 (defcustom speedbar-directory-button-trim-method
'span
458 "*Indicates how the directory button will be displayed.
460 'span - span large directories over multiple lines.
461 'trim - trim large directories to only show the last few.
464 :type
'(radio (const :tag
"Span large directories over mutiple lines."
466 (const :tag
"Trim large directories to only show the last few."
468 (const :tag
"No trimming." nil
)))
470 (defcustom speedbar-smart-directory-expand-flag t
471 "*Non-nil means speedbar should use smart expansion.
472 Smart expansion only affects when speedbar wants to display a
473 directory for a file in the attached frame. When smart expansion is
474 enabled, new directories which are children of a displayed directory
475 are expanded in the current framework. If nil, then the current
476 hierarchy would be replaced with the new directory."
480 (defcustom speedbar-indentation-width
1
481 "*When sub-nodes are expanded, the number of spaces used for indentation."
485 (defcustom speedbar-hide-button-brackets-flag nil
486 "*Non-nil means speedbar will hide the brackets around the + or -."
490 (defcustom speedbar-use-images
(and (or (fboundp 'defimage
)
491 (fboundp 'make-image-specifier
))
493 "*Non nil if speedbar should display icons."
497 (defcustom speedbar-before-popup-hook nil
498 "*Hooks called before popping up the speedbar frame."
502 (defcustom speedbar-before-delete-hook nil
503 "*Hooks called before deleting the speedbar frame."
507 (defcustom speedbar-mode-hook nil
508 "*Hooks called after creating a speedbar buffer."
512 (defcustom speedbar-timer-hook nil
513 "*Hooks called after running the speedbar timer function."
517 (defcustom speedbar-verbosity-level
1
518 "*Verbosity level of the speedbar. 0 means say nothing.
519 1 means medium level verbosity. 2 and higher are higher levels of
524 (defvar speedbar-indicator-separator
" "
525 "String separating file text from indicator characters.")
527 (defcustom speedbar-vc-do-check t
528 "*Non-nil check all files in speedbar to see if they have been checked out.
529 Any file checked out is marked with `speedbar-vc-indicator'"
533 (defvar speedbar-vc-indicator
"*"
534 "Text used to mark files which are currently checked out.
535 Other version control systems can be added by examining the function
536 `speedbar-vc-path-enable-hook' and `speedbar-vc-in-control-hook'.")
538 (defcustom speedbar-vc-path-enable-hook nil
539 "*Return non-nil if the current path should be checked for Version Control.
540 Functions in this hook must accept one parameter which is the path
545 (defcustom speedbar-vc-in-control-hook nil
546 "*Return non-nil if the specified file is under Version Control.
547 Functions in this hook must accept two parameters. The PATH of the
548 current file, and the FILENAME of the file being checked."
552 (defvar speedbar-vc-to-do-point nil
553 "Local variable maintaining the current version control check position.")
555 (defcustom speedbar-obj-do-check t
556 "*Non-nil check all files in speedbar to see if they have an object file.
557 Any file checked out is marked with `speedbar-obj-indicator', and the
558 marking is based on `speedbar-obj-alist'"
562 (defvar speedbar-obj-to-do-point nil
563 "Local variable maintaining the current version control check position.")
565 (defvar speedbar-obj-indicator
'("#" .
"!")
566 "Text used to mark files that have a corresponding hidden object file.
567 The car is for an up-to-date object. The cdr is for an out of date object.
568 The expression `speedbar-obj-alist' defines who gets tagged.")
570 (defvar speedbar-obj-alist
571 '(("\\.\\([cpC]\\|cpp\\|cc\\)$" .
".o")
573 ("\\.java$" .
".class")
574 ("\\.f\\(or\\|90\\|77\\)?$" .
".o")
576 ("\\.texi$" .
".info"))
577 "Alist of file extensions, and their corresponding object file type.")
579 (defvar speedbar-indicator-regex
580 (concat (regexp-quote speedbar-indicator-separator
)
582 (regexp-quote speedbar-vc-indicator
)
584 (regexp-quote (car speedbar-obj-indicator
))
586 (regexp-quote (cdr speedbar-obj-indicator
))
588 "Regular expression used when identifying files.
589 Permits stripping of indicator characters from a line.")
591 (defcustom speedbar-scanner-reset-hook nil
592 "*Hook called whenever generic scanners are reset.
593 Set this to implement your own scanning / rescan safe functions with
598 (defvar speedbar-ignored-modes nil
599 "*List of major modes which speedbar will not switch directories for.")
601 (defun speedbar-extension-list-to-regex (extlist)
602 "Takes EXTLIST, a list of extensions and transforms it into regexp.
603 All the preceding `.' are stripped for an optimized expression starting
604 with `.' followed by extensions, followed by full-filenames."
605 (let ((regex1 nil
) (regex2 nil
))
607 (if (= (string-to-char (car extlist
)) ?.
)
608 (setq regex1
(concat regex1
(if regex1
"\\|" "")
609 (substring (car extlist
) 1)))
610 (setq regex2
(concat regex2
(if regex2
"\\|" "") (car extlist
))))
611 (setq extlist
(cdr extlist
)))
612 ;; concat all the sub-exressions together, making sure all types
613 ;; of parts exist during concatination.
615 (if regex1
(concat "\\(\\.\\(" regex1
"\\)\\)") "")
616 (if (and regex1 regex2
) "\\|" "")
617 (if regex2
(concat "\\(" regex2
"\\)") "")
620 (defvar speedbar-ignored-path-regexp nil
621 "Regular expression matching paths speedbar will not switch to.
622 Created from `speedbar-ignored-path-expressions' with the function
623 `speedbar-extension-list-to-regex' (A misnamed function in this case.)
624 Use the function `speedbar-add-ignored-path-regexp', or customize the
625 variable `speedbar-ignored-path-expressions' to modify this variable.")
627 (defcustom speedbar-ignored-path-expressions
628 '("[/\\]logs?[/\\]\\'")
629 "*List of regular expressions matching directories speedbar will ignore.
630 They should included paths to directories which are notoriously very
631 large and take a long time to load in. Use the function
632 `speedbar-add-ignored-path-regexp' to add new items to this list after
633 speedbar is loaded. You may place anything you like in this list
634 before speedbar has been loaded."
636 :type
'(repeat (regexp :tag
"Path Regexp"))
637 :set
(lambda (sym val
)
638 (setq speedbar-ignored-path-expressions val
639 speedbar-ignored-path-regexp
640 (speedbar-extension-list-to-regex val
))))
642 (defcustom speedbar-directory-unshown-regexp
"^\\(CVS\\|RCS\\|SCCS\\)\\'"
643 "*Regular expression matching directories not to show in speedbar.
644 They should include commonly existing directories which are not
645 useful, such as version control."
649 (defvar speedbar-file-unshown-regexp
650 (let ((nstr "") (noext completion-ignored-extensions
))
652 (setq nstr
(concat nstr
(regexp-quote (car noext
)) "\\'"
653 (if (cdr noext
) "\\|" ""))
655 ;; backup refdir lockfile
656 (concat nstr
"\\|#[^#]+#$\\|\\.\\.?\\'\\|\\.#"))
657 "*Regexp matching files we don't want displayed in a speedbar buffer.
658 It is generated from the variable `completion-ignored-extensions'")
660 ;; this is dangerous to customize, because the defaults will probably
661 ;; change in the future.
662 (defcustom speedbar-supported-extension-expressions
663 (append '(".[ch]\\(\\+\\+\\|pp\\|c\\|h\\|xx\\)?" ".tex\\(i\\(nfo\\)?\\)?"
664 ".el" ".emacs" ".l" ".lsp" ".p" ".java" ".f\\(90\\|77\\|or\\)?")
665 (if speedbar-use-imenu-flag
666 '(".ada" ".p[lm]" ".tcl" ".m" ".scm" ".pm" ".py"
667 ;; html is not supported by default, but an imenu tags package
668 ;; is available. Also, html files are nice to be able to see.
670 "[Mm]akefile\\(\\.in\\)?")))
671 "*List of regular expressions which will match files supported by tagging.
672 Do not prefix the `.' char with a double \\ to quote it, as the period
673 will be stripped by a simplified optimizer when compiled into a
674 singular expression. This variable will be turned into
675 `speedbar-file-regexp' for use with speedbar. You should use the
676 function `speedbar-add-supported-extension' to add a new extension at
677 runtime, or use the configuration dialog to set it in your .emacs
680 :type
'(repeat (regexp :tag
"Extension Regexp"))
681 :set
(lambda (sym val
)
682 (setq speedbar-supported-extension-expressions val
683 speedbar-file-regexp
(speedbar-extension-list-to-regex val
)))
686 (defvar speedbar-file-regexp
687 (speedbar-extension-list-to-regex speedbar-supported-extension-expressions
)
688 "Regular expression matching files we know how to expand.
689 Created from `speedbar-supported-extension-expression' with the
690 function `speedbar-extension-list-to-regex'")
692 (defun speedbar-add-supported-extension (extension)
693 "Add EXTENSION as a new supported extension for speedbar tagging.
694 This should start with a `.' if it is not a complete file name, and
695 the dot should NOT be quoted in with \\. Other regular expression
696 matchers are allowed however. EXTENSION may be a single string or a
698 (interactive "sExtionsion: ")
699 (if (not (listp extension
)) (setq extension
(list extension
)))
701 (if (member (car extension
) speedbar-supported-extension-expressions
)
703 (setq speedbar-supported-extension-expressions
704 (cons (car extension
) speedbar-supported-extension-expressions
)))
705 (setq extension
(cdr extension
)))
706 (setq speedbar-file-regexp
(speedbar-extension-list-to-regex
707 speedbar-supported-extension-expressions
)))
709 (defun speedbar-add-ignored-path-regexp (path-expression)
710 "Add PATH-EXPRESSION as a new ignored path for speedbar tracking.
711 This function will modify `speedbar-ignored-path-regexp' and add
712 PATH-EXPRESSION to `speedbar-ignored-path-expressions'."
713 (interactive "sPath regex: ")
714 (if (not (listp path-expression
))
715 (setq path-expression
(list path-expression
)))
716 (while path-expression
717 (if (member (car path-expression
) speedbar-ignored-path-expressions
)
719 (setq speedbar-ignored-path-expressions
720 (cons (car path-expression
) speedbar-ignored-path-expressions
)))
721 (setq path-expression
(cdr path-expression
)))
722 (setq speedbar-ignored-path-regexp
(speedbar-extension-list-to-regex
723 speedbar-ignored-path-expressions
)))
725 ;; If we don't have custom, then we set it here by hand.
726 (if (not (fboundp 'custom-declare-variable
))
727 (setq speedbar-file-regexp
(speedbar-extension-list-to-regex
728 speedbar-supported-extension-expressions
)
729 speedbar-ignored-path-regexp
(speedbar-extension-list-to-regex
730 speedbar-ignored-path-expressions
)))
732 (defvar speedbar-update-flag
(and
733 (or (fboundp 'run-with-idle-timer
)
734 (fboundp 'start-itimer
)
735 (boundp 'post-command-idle-hook
))
737 "*Non-nil means to automatically update the display.
738 When this is nil then speedbar will not follow the attached frame's path.
739 When speedbar is active, use:
741 \\<speedbar-key-map> `\\[speedbar-toggle-updates]'
743 to toggle this value.")
745 (defvar speedbar-syntax-table nil
746 "Syntax-table used on the speedbar.")
748 (if speedbar-syntax-table
750 (setq speedbar-syntax-table
(make-syntax-table))
751 ;; turn off paren matching around here.
752 (modify-syntax-entry ?
\' " " speedbar-syntax-table
)
753 (modify-syntax-entry ?
\" " " speedbar-syntax-table
)
754 (modify-syntax-entry ?
( " " speedbar-syntax-table
)
755 (modify-syntax-entry ?
) " " speedbar-syntax-table
)
756 (modify-syntax-entry ?
{ " " speedbar-syntax-table
)
757 (modify-syntax-entry ?
} " " speedbar-syntax-table
)
758 (modify-syntax-entry ?
[ " " speedbar-syntax-table
)
759 (modify-syntax-entry ?
] " " speedbar-syntax-table
))
761 (defvar speedbar-key-map nil
762 "Keymap used in speedbar buffer.")
766 (setq speedbar-key-map
(make-keymap))
767 (suppress-keymap speedbar-key-map t
)
770 (define-key speedbar-key-map
"g" 'speedbar-refresh
)
771 (define-key speedbar-key-map
"t" 'speedbar-toggle-updates
)
772 (define-key speedbar-key-map
"q" 'speedbar-close-frame
)
773 (define-key speedbar-key-map
"Q" 'delete-frame
)
776 (define-key speedbar-key-map
"n" 'speedbar-next
)
777 (define-key speedbar-key-map
"p" 'speedbar-prev
)
778 (define-key speedbar-key-map
"\M-n" 'speedbar-restricted-next
)
779 (define-key speedbar-key-map
"\M-p" 'speedbar-restricted-prev
)
780 (define-key speedbar-key-map
"\C-\M-n" 'speedbar-forward-list
)
781 (define-key speedbar-key-map
"\C-\M-p" 'speedbar-backward-list
)
782 (define-key speedbar-key-map
" " 'speedbar-scroll-up
)
783 (define-key speedbar-key-map
[delete] 'speedbar-scroll-down)
785 ;; Short cuts I happen to find useful
786 (define-key speedbar-key-map "r"
787 (lambda () (interactive)
788 (speedbar-change-initial-expansion-list
789 speedbar-previously-used-expansion-list-name)))
790 (define-key speedbar-key-map "b"
791 (lambda () (interactive)
792 (speedbar-change-initial-expansion-list "quick buffers")))
793 (define-key speedbar-key-map "f"
794 (lambda () (interactive)
795 (speedbar-change-initial-expansion-list "files")))
798 (substitute-key-definition 'switch-to-buffer
799 'speedbar-switch-buffer-attached-frame
800 speedbar-key-map global-map)
804 ;; mouse bindings so we can manipulate the items on each line
805 (define-key speedbar-key-map 'button2 'speedbar-click)
806 (define-key speedbar-key-map '(shift button2) 'speedbar-power-click)
807 ;; Info doc fix from Bob Weiner
808 (if (featurep 'infodoc)
810 (define-key speedbar-key-map 'button3 'speedbar-xemacs-popup-kludge))
811 (define-key speedbar-key-map '(meta button3) 'speedbar-mouse-item-info)
814 ;; mouse bindings so we can manipulate the items on each line
815 (define-key speedbar-key-map [down-mouse-1] 'speedbar-double-click)
816 (define-key speedbar-key-map [mouse-2] 'speedbar-click)
817 ;; This is the power click for new frames, or refreshing a cache
818 (define-key speedbar-key-map [S-mouse-2] 'speedbar-power-click)
819 ;; This adds a small unecessary visual effect
820 ;;(define-key speedbar-key-map [down-mouse-2] 'speedbar-quick-mouse)
821 (define-key speedbar-key-map [M-mouse-2] 'speedbar-mouse-item-info)
823 (define-key speedbar-key-map [down-mouse-3] 'speedbar-emacs-popup-kludge)
825 ;; This lets the user scroll as if we had a scrollbar... well maybe not
826 (define-key speedbar-key-map [mode-line mouse-2] 'speedbar-mouse-hscroll)
827 ;; another handy place users might click to get our menu.
828 (define-key speedbar-key-map [mode-line down-mouse-1]
829 'speedbar-emacs-popup-kludge)
831 ;; We can't switch buffers with the buffer mouse menu. Lets hack it.
832 (define-key speedbar-key-map [C-down-mouse-1] 'speedbar-hack-buffer-menu)
834 ;; Lastly, we want to track the mouse. Play here
835 (define-key speedbar-key-map [mouse-movement] 'speedbar-track-mouse)
838 (defun speedbar-make-specialized-keymap ()
839 "Create a keymap for use w/ a speedbar major or minor display mode.
840 This basically creates a sparse keymap, and makes it's parent be
842 (let ((k (make-sparse-keymap)))
843 (set-keymap-parent k speedbar-key-map)
846 (defvar speedbar-file-key-map nil
847 "Keymap used in speedbar buffer while files are displayed.")
849 (if speedbar-file-key-map
851 (setq speedbar-file-key-map (speedbar-make-specialized-keymap))
853 ;; Basic tree features
854 (define-key speedbar-file-key-map "e" 'speedbar-edit-line)
855 (define-key speedbar-file-key-map "\C-m" 'speedbar-edit-line)
856 (define-key speedbar-file-key-map "+" 'speedbar-expand-line)
857 (define-key speedbar-file-key-map "=" 'speedbar-expand-line)
858 (define-key speedbar-file-key-map "-" 'speedbar-contract-line)
860 ;; file based commands
861 (define-key speedbar-file-key-map "U" 'speedbar-up-directory)
862 (define-key speedbar-file-key-map "I" 'speedbar-item-info)
863 (define-key speedbar-file-key-map "B" 'speedbar-item-byte-compile)
864 (define-key speedbar-file-key-map "L" 'speedbar-item-load)
865 (define-key speedbar-file-key-map "C" 'speedbar-item-copy)
866 (define-key speedbar-file-key-map "D" 'speedbar-item-delete)
867 (define-key speedbar-file-key-map "O" 'speedbar-item-object-delete)
868 (define-key speedbar-file-key-map "R" 'speedbar-item-rename)
871 (defvar speedbar-easymenu-definition-base
874 ["Update" speedbar-refresh t]
875 ["Auto Update" speedbar-toggle-updates
876 :style toggle :selected speedbar-update-flag])
877 (if (and (or (fboundp 'defimage)
878 (fboundp 'make-image-specifier))
881 ["Use Images" speedbar-toggle-images
882 :style toggle :selected speedbar-use-images]))
884 "Base part of the speedbar menu.")
886 (defvar speedbar-easymenu-definition-special
887 '(["Edit Item On Line" speedbar-edit-line t]
888 ["Show All Files" speedbar-toggle-show-all-files
889 :style toggle :selected speedbar-show-unknown-files]
890 ["Expand File Tags" speedbar-expand-line
891 (save-excursion (beginning-of-line)
892 (looking-at "[0-9]+: *.\\+. "))]
893 ["Flush Cache & Expand" speedbar-flush-expand-line
894 (save-excursion (beginning-of-line)
895 (looking-at "[0-9]+: *.\\+. "))]
896 ["Contract File Tags" speedbar-contract-line
897 (save-excursion (beginning-of-line)
898 (looking-at "[0-9]+: *.-. "))]
899 ; ["Sort Tags" speedbar-toggle-sorting
900 ; :style toggle :selected speedbar-sort-tags]
902 ["File/Tag Information" speedbar-item-info t]
903 ["Load Lisp File" speedbar-item-load
906 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))]
907 ["Byte Compile File" speedbar-item-byte-compile
910 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))]
911 ["Copy File" speedbar-item-copy
912 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *\\["))]
913 ["Rename File" speedbar-item-rename
914 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))]
915 ["Delete File" speedbar-item-delete
916 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))]
917 ["Delete Object" speedbar-item-object-delete
918 (save-excursion (beginning-of-line)
919 (looking-at "[0-9]+: *\\[[+-]\\] [^ \n]+ \\*?[!#]$"))]
921 "Additional menu items while in file-mode.")
923 (defvar speedbar-easymenu-definition-trailer
925 (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
926 (list ["Customize..." speedbar-customize t]))
928 ["Close" speedbar-close-frame t]
929 ["Quit" delete-frame t] ))
930 "Menu items appearing at the end of the speedbar menu.")
932 (defvar speedbar-desired-buffer nil
933 "Non-nil when speedbar is showing buttons specific a special mode.
934 In this case it is the originating buffer.")
935 (defvar speedbar-buffer nil
936 "The buffer displaying the speedbar.")
937 (defvar speedbar-frame nil
938 "The frame displaying speedbar.")
939 (defvar speedbar-cached-frame nil
940 "The frame that was last created, then removed from the display.")
941 (defvar speedbar-full-text-cache nil
942 "The last open directory is saved in its entirety for ultra-fast switching.")
943 (defvar speedbar-timer nil
944 "The speedbar timer used for updating the buffer.")
945 (defvar speedbar-attached-frame nil
946 "The frame which started speedbar mode.
947 This is the frame from which all data displayed in the speedbar is
948 gathered, and in which files and such are displayed.")
950 (defvar speedbar-last-selected-file nil
951 "The last file which was selected in speedbar buffer.")
953 (defvar speedbar-shown-directories nil
954 "Maintain list of directories simultaneously open in the current speedbar.")
956 (defvar speedbar-directory-contents-alist nil
957 "An association list of directories and their contents.
958 Each sublist was returned by `speedbar-file-lists'. This list is
959 maintained to speed up the refresh rate when switching between
962 (defvar speedbar-power-click nil
963 "Never set this by hand. Value is t when S-mouse activity occurs.")
968 (if (fboundp 'frame-parameter)
970 (defalias 'speedbar-frame-parameter 'frame-parameter)
972 (defun speedbar-frame-parameter (frame parameter)
973 "Return FRAME's PARAMETER value."
974 (cdr (assoc parameter (frame-parameters frame)))))
976 (if (fboundp 'make-overlay)
978 (defalias 'speedbar-make-overlay 'make-overlay)
979 (defalias 'speedbar-overlay-put 'overlay-put)
980 (defalias 'speedbar-delete-overlay 'delete-overlay)
981 (defalias 'speedbar-overlay-start 'overlay-start)
982 (defalias 'speedbar-overlay-end 'overlay-end)
983 (defalias 'speedbar-mode-line-update 'force-mode-line-update))
984 (defalias 'speedbar-make-overlay 'make-extent)
985 (defalias 'speedbar-overlay-put 'set-extent-property)
986 (defalias 'speedbar-delete-overlay 'delete-extent)
987 (defalias 'speedbar-overlay-start 'extent-start)
988 (defalias 'speedbar-overlay-end 'extent-end)
989 (defalias 'speedbar-mode-line-update 'redraw-modeline))
991 ;;; Mode definitions/ user commands
995 (defalias 'speedbar 'speedbar-frame-mode)
997 (defun speedbar-frame-mode (&optional arg)
998 "Enable or disable speedbar. Positive ARG means turn on, negative turn off.
999 nil means toggle. Once the speedbar frame is activated, a buffer in
1000 `speedbar-mode' will be displayed. Currently, only one speedbar is
1001 supported at a time.
1002 `speedbar-before-popup-hook' is called before popping up the speedbar frame.
1003 `speedbar-before-delete-hook' is called before the frame is deleted."
1005 ;; toggle frame on and off.
1006 (if (not arg) (if (and (frame-live-p speedbar-frame)
1007 (frame-visible-p speedbar-frame))
1008 (setq arg -1) (setq arg 1)))
1009 ;; turn the frame off on neg number
1010 (if (and (numberp arg) (< arg 0))
1012 (run-hooks 'speedbar-before-delete-hook)
1013 (if (and speedbar-frame (frame-live-p speedbar-frame))
1015 (setq speedbar-cached-frame speedbar-frame)
1016 (make-frame-invisible speedbar-frame)))
1017 (setq speedbar-frame nil)
1018 (speedbar-set-timer nil)
1019 ;; Used to delete the buffer. This has the annoying affect of
1020 ;; preventing whatever took its place from ever appearing
1021 ;; as the default after a C-x b was typed
1022 ;;(if (bufferp speedbar-buffer)
1023 ;; (kill-buffer speedbar-buffer))
1025 ;; Set this as our currently attached frame
1026 (setq speedbar-attached-frame (selected-frame))
1027 (run-hooks 'speedbar-before-popup-hook)
1028 ;; Get the frame to work in
1029 (if (frame-live-p speedbar-cached-frame)
1031 (setq speedbar-frame speedbar-cached-frame)
1032 (make-frame-visible speedbar-frame)
1033 ;; Get the buffer to play with
1035 (select-frame speedbar-frame)
1036 (if (not (eq (current-buffer) speedbar-buffer))
1037 (switch-to-buffer speedbar-buffer))
1038 (set-window-dedicated-p (selected-window) t)
1039 (raise-frame speedbar-frame)
1040 (speedbar-set-timer speedbar-update-speed)
1042 (if (frame-live-p speedbar-frame)
1043 (raise-frame speedbar-frame)
1044 (setq speedbar-frame
1045 (if speedbar-xemacsp
1046 ;; Only guess height if it is not specified.
1047 (if (member 'height speedbar-frame-plist)
1048 (make-frame speedbar-frame-plist)
1049 (make-frame (nconc (list 'height
1050 (speedbar-needed-height))
1051 speedbar-frame-plist)))
1052 (let* ((mh (speedbar-frame-parameter nil 'menu-bar-lines))
1053 (cfx (speedbar-frame-parameter nil 'left))
1054 (cfy (speedbar-frame-parameter nil 'top))
1055 (cfw (frame-pixel-width))
1057 ;; Only add a guessed height if one is not specified
1058 ;; in the input parameters.
1059 (if (assoc 'height speedbar-frame-parameters)
1060 speedbar-frame-parameters
1062 speedbar-frame-parameters
1063 (list (cons 'height (+ mh (frame-height)))))))
1065 (if (or (< emacs-major-version 20)
1066 (not (eq window-system 'x)))
1068 (let ((x-pointer-shape x-pointer-top-left-arrow)
1069 (x-sensitive-text-pointer-shape
1071 (make-frame params)))))
1072 ;; Position speedbar frame.
1073 (if (or (not window-system) (eq window-system 'pc)
1074 (assoc 'left speedbar-frame-parameters)
1075 (assoc 'top speedbar-frame-parameters))
1076 ;; Do no positioning if not on a windowing system,
1077 ;; or if left/top were specified in the parameters.
1080 (if (not (consp cfx))
1082 ;; If cfx is a list, that means we grow
1083 ;; from a specific edge of the display.
1084 ;; Convert that to the distance from the
1085 ;; left side of the display.
1086 (if (eq (car cfx) '-)
1087 ;; A - means distance from the right edge
1088 ;; of the display, or DW - cfx - framewidth
1089 (- (x-display-pixel-width) (car (cdr cfx))
1090 (frame-pixel-width))
1092 (modify-frame-parameters
1097 ;; Decide which side to put it
1098 ;; on. 200 is just a buffer
1099 ;; for the left edge of the
1100 ;; screen. The extra 10 is just
1101 ;; dressings for window decorations.
1102 (let ((sfw (frame-pixel-width frame)))
1103 (let ((left-guess (- cfx 10 sfw))
1104 (right-guess (+ cfx cfw 5)))
1105 (let ((left-margin left-guess)
1107 (- (x-display-pixel-width)
1108 right-guess 5 sfw)))
1109 (cond ((>= left-margin 0) left-guess)
1110 ((>= right-margin 0) right-guess)
1111 ;; otherwise choose side we overlap less
1112 ((> left-margin right-margin) 0)
1113 (t (- (x-display-pixel-width) sfw 5)))))))
1116 ;; reset the selection variable
1117 (setq speedbar-last-selected-file nil)
1118 ;; Put the buffer into the frame
1119 (save-window-excursion
1120 ;; Get the buffer to play with
1122 (select-frame speedbar-frame)
1123 (switch-to-buffer speedbar-buffer)
1124 (set-window-dedicated-p (selected-window) t))
1125 (if (and (or (null window-system) (eq window-system 'pc))
1126 (fboundp 'set-frame-name))
1128 (select-frame speedbar-frame)
1129 (set-frame-name "Speedbar")))
1130 (speedbar-set-timer speedbar-update-speed)))))
1133 (defun speedbar-get-focus ()
1134 "Change frame focus to or from the speedbar frame.
1135 If the selected frame is not speedbar, then speedbar frame is
1136 selected. If the speedbar frame is active, then select the attached frame."
1138 (if (eq (selected-frame) speedbar-frame)
1139 (if (frame-live-p speedbar-attached-frame)
1140 (select-frame speedbar-attached-frame))
1141 ;; If updates are off, then refresh the frame (they want it now...)
1142 (if (not speedbar-update-flag)
1143 (let ((speedbar-update-flag t))
1144 (speedbar-timer-fn)))
1145 ;; make sure we have a frame
1146 (if (not (frame-live-p speedbar-frame)) (speedbar-frame-mode 1))
1148 (select-frame speedbar-frame)
1152 (defun speedbar-close-frame ()
1153 "Turn off a currently active speedbar."
1155 (speedbar-frame-mode -1)
1156 (select-frame speedbar-attached-frame)
1159 (defun speedbar-switch-buffer-attached-frame (&optional buffer)
1160 "Switch to BUFFER in speedbar's attached frame, and raise that frame.
1161 This overrides the default behavior of `switch-to-buffer' which is
1162 broken because of the dedicated speedbar frame."
1164 ;; Assume we are in the speedbar frame.
1165 (speedbar-get-focus)
1166 ;; Now switch buffers
1168 (switch-to-buffer buffer)
1169 (call-interactively 'switch-to-buffer nil nil)))
1171 (defmacro speedbar-frame-width ()
1172 "Return the width of the speedbar frame in characters.
1173 nil if it doesn't exist."
1174 '(frame-width speedbar-frame))
1176 ;; XEmacs function only.
1177 (defun speedbar-needed-height (&optional frame)
1178 "The needed height for the tool bar FRAME (in characters)."
1179 (or frame (setq frame (selected-frame)))
1180 ;; The 1 is the missing modeline/minibuffer
1181 (+ 1 (/ (frame-pixel-height frame)
1182 (face-height 'default frame))))
1184 (defun speedbar-mode ()
1185 "Major mode for managing a display of directories and tags.
1186 \\<speedbar-key-map>
1187 The first line represents the default path of the speedbar frame.
1188 Each directory segment is a button which jumps speedbar's default
1189 directory to that path. Buttons are activated by clicking `\\[speedbar-click]'.
1190 In some situations using `\\[speedbar-power-click]' is a `power click' which will
1191 rescan cached items, or pop up new frames.
1193 Each line starting with <+> represents a directory. Click on the <+>
1194 to insert the directory listing into the current tree. Click on the
1195 <-> to retract that list. Click on the directory name to go to that
1196 directory as the default.
1198 Each line starting with [+] is a file. If the variable
1199 `speedbar-show-unknown-files' is t, the lines starting with [?] are
1200 files which don't have imenu support, but are not expressly ignored.
1201 Files are completely ignored if they match `speedbar-file-unshown-regexp'
1202 which is generated from `completion-ignored-extensions'.
1204 Files with a `*' character after their name are files checked out of a
1205 version control system. (currently only RCS is supported.) New
1206 version control systems can be added by examining the documentation
1207 for `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p'
1209 Files with a `#' or `!' character after them are source files that
1210 have an object file associated with them. The `!' indicates that the
1211 files is out of date. You can control what source/object associations
1212 exist through the variable `speedbar-obj-alist'.
1214 Click on the [+] to display a list of tags from that file. Click on
1215 the [-] to retract the list. Click on the file name to edit the file
1216 in the attached frame.
1218 If you open tags, you might find a node starting with {+}, which is a
1219 category of tags. Click the {+} to expand the category. Jump-able
1220 tags start with >. Click the name of the tag to go to that position
1221 in the selected file.
1223 \\{speedbar-key-map}"
1226 (setq speedbar-buffer (set-buffer (get-buffer-create " SPEEDBAR")))
1227 (kill-all-local-variables)
1228 (setq major-mode 'speedbar-mode)
1229 (setq mode-name "Speedbar")
1230 (set-syntax-table speedbar-syntax-table)
1231 (setq font-lock-keywords nil) ;; no font-locking please
1232 (setq truncate-lines t)
1233 (make-local-variable 'frame-title-format)
1234 (setq frame-title-format "Speedbar")
1235 ;; Set this up special just for the speedbar buffer
1236 ;; Terminal minibuffer stuff does not require this.
1237 (if (and window-system (not (eq window-system 'pc))
1238 (null default-minibuffer-frame))
1240 (make-local-variable 'default-minibuffer-frame)
1241 (setq default-minibuffer-frame speedbar-attached-frame)))
1242 ;; Correct use of `temp-buffer-show-function': Bob Weiner
1243 (if (and (boundp 'temp-buffer-show-hook)
1244 (boundp 'temp-buffer-show-function))
1245 (progn (make-local-variable 'temp-buffer-show-hook)
1246 (setq temp-buffer-show-hook temp-buffer-show-function)))
1247 (make-local-variable 'temp-buffer-show-function)
1248 (setq temp-buffer-show-function 'speedbar-temp-buffer-show-function)
1249 (if speedbar-xemacsp
1251 ;; Argh! mouse-track-click-hook doesn't understand the
1252 ;; make-local-hook conventions.
1253 (make-local-variable 'mouse-track-click-hook)
1254 (add-hook 'mouse-track-click-hook
1255 (lambda (event count)
1256 (if (/= (event-button event) 1)
1257 nil ; Do normal operations.
1259 (speedbar-quick-mouse event))
1262 (speedbar-mouse-set-point event)
1263 (speedbar-do-function-pointer)
1264 (speedbar-quick-mouse event)))
1265 ;; Don't do normal operations.
1267 (make-local-hook 'kill-buffer-hook)
1268 (add-hook 'kill-buffer-hook (lambda () (let ((skilling (boundp 'skilling)))
1271 (if (eq (current-buffer)
1273 (speedbar-frame-mode -1)))))
1275 (toggle-read-only 1)
1276 (speedbar-set-mode-line-format)
1277 (if speedbar-xemacsp
1278 (set (make-local-variable 'mouse-motion-handler)
1279 'speedbar-track-mouse-xemacs)
1280 (if speedbar-track-mouse-flag
1281 (set (make-local-variable 'track-mouse) t)) ;this could be messy.
1282 (setq auto-show-mode nil)) ;no auto-show for Emacs
1283 (run-hooks 'speedbar-mode-hook))
1284 (speedbar-update-contents)
1287 (defmacro speedbar-with-attached-buffer (&rest forms)
1288 "Execute FORMS in the attached frame's special buffer.
1289 Optionally select that frame if necessary."
1290 `(save-selected-window
1291 (speedbar-set-timer speedbar-update-speed)
1292 (select-frame speedbar-attached-frame)
1294 (speedbar-maybee-jump-to-attached-frame)))
1296 (defun speedbar-message (fmt &rest args)
1297 "Like message, but for use in the speedbar frame.
1298 Argument FMT is the format string, and ARGS are the arguments for message."
1299 (save-selected-window
1300 (select-frame speedbar-attached-frame)
1301 (apply 'message fmt args)))
1303 (defun speedbar-y-or-n-p (prompt)
1304 "Like `y-or-n-p', but for use in the speedbar frame.
1305 Argument PROMPT is the prompt to use."
1306 (save-selected-window
1307 (if (and default-minibuffer-frame (not (eq default-minibuffer-frame
1308 speedbar-attached-frame)))
1309 (select-frame speedbar-attached-frame))
1312 (defun speedbar-show-info-under-mouse (&optional event)
1313 "Call the info function for the line under the mouse.
1314 Optional EVENT is currently not used."
1315 (let ((pos (mouse-position))) ; we ignore event until I use it later.
1316 (if (equal (car pos) speedbar-frame)
1318 (save-window-excursion
1319 (apply 'set-mouse-position pos)
1320 (speedbar-item-info))))))
1322 (defun speedbar-set-mode-line-format ()
1323 "Set the format of the mode line based on the current speedbar environment.
1324 This gives visual indications of what is up. It EXPECTS the speedbar
1325 frame and window to be the currently active frame and window."
1326 (if (and (frame-live-p speedbar-frame)
1327 (or (not speedbar-xemacsp)
1328 (specifier-instance has-modeline-p)))
1330 (set-buffer speedbar-buffer)
1331 (let* ((w (or (speedbar-frame-width) 20))
1334 (p3 (if speedbar-update-flag "SPEEDBAR" "SLOWBAR"))
1335 (blank (- w (length p1) (length p3) (length p5)
1336 (if line-number-mode 4 0)))
1338 (make-string (/ blank 2) ? )
1341 (make-string (+ (/ blank 2) (% blank 2)) ? )
1344 (if line-number-mode
1345 (list (concat p1 p2 p3) '(line-number-mode " %3l")
1347 (list (concat p1 p2 p3 p4 p5)))))
1348 (if (not (equal mode-line-format tf))
1350 (setq mode-line-format tf)
1351 (speedbar-mode-line-update)))))))
1353 (defun speedbar-temp-buffer-show-function (buffer)
1354 "Placed in the variable `temp-buffer-show-function' in `speedbar-mode'.
1355 If a user requests help using \\[help-command] <Key> the temp BUFFER will be
1356 redirected into a window on the attached frame."
1357 (if speedbar-attached-frame (select-frame speedbar-attached-frame))
1358 (pop-to-buffer buffer nil)
1360 ;; Fix for using this hook on some platforms: Bob Weiner
1361 (cond ((not speedbar-xemacsp)
1362 (run-hooks 'temp-buffer-show-hook))
1363 ((fboundp 'run-hook-with-args)
1364 (run-hook-with-args 'temp-buffer-show-hook buffer))
1365 ((and (boundp 'temp-buffer-show-hook)
1366 (listp temp-buffer-show-hook))
1367 (mapcar (function (lambda (hook) (funcall hook buffer)))
1368 temp-buffer-show-hook))))
1370 (defvar speedbar-previous-menu nil
1371 "The menu before the last `speedbar-reconfigure-keymaps' was called.")
1373 (defun speedbar-reconfigure-keymaps ()
1374 "Reconfigure the menu-bar in a speedbar frame.
1375 Different menu items are displayed depending on the current display mode
1376 and the existence of packages."
1378 speedbar-easymenu-definition-base
1379 (if speedbar-shown-directories
1380 ;; file display mode version
1381 (speedbar-initial-menu)
1383 (select-frame speedbar-attached-frame)
1384 (if (local-variable-p
1385 'speedbar-easymenu-definition-special
1387 ;; If bound locally, we can use it
1388 speedbar-easymenu-definition-special)))
1389 ;; Dynamic menu stuff
1391 (list (cons "Displays"
1392 (let ((displays nil)
1393 (alist speedbar-initial-expansion-mode-alist))
1398 (capitalize (car (car alist)))
1400 'speedbar-change-initial-expansion-list
1404 (setq alist (cdr alist)))
1407 speedbar-easymenu-definition-trailer))
1408 (localmap (save-excursion
1409 (let ((cf (selected-frame)))
1411 (select-frame speedbar-attached-frame)
1412 (if (local-variable-p
1413 'speedbar-special-mode-key-map
1415 speedbar-special-mode-key-map)
1416 (select-frame cf))))))
1418 (set-buffer speedbar-buffer)
1419 (use-local-map (or localmap
1420 (speedbar-initial-keymap)
1421 ;; This creates a small keymap we can glom the
1422 ;; menu adjustments into.
1423 (speedbar-make-specialized-keymap)))
1424 ;; Delete the old menu if applicable.
1425 (if speedbar-previous-menu (easy-menu-remove speedbar-previous-menu))
1426 (setq speedbar-previous-menu md)
1427 ;; Now add the new menu
1428 (if (not speedbar-xemacsp)
1429 (easy-menu-define speedbar-menu-map (current-local-map)
1431 (easy-menu-add md (current-local-map))
1432 (set-buffer-menubar (list md))))
1433 (run-hooks 'speedbar-reconfigure-keymaps-hook)))
1436 ;;; User Input stuff
1439 ;; XEmacs: this can be implemented using modeline keymaps, but there
1440 ;; is no use, as we have horizontal scrollbar (as the docstring
1442 (defun speedbar-mouse-hscroll (e)
1443 "Read a mouse event E from the mode line, and horizontally scroll.
1444 If the mouse is being clicked on the far left, or far right of the
1445 mode-line. This is only useful for non-XEmacs"
1447 (let* ((xp (car (nth 2 (car (cdr e)))))
1448 (cpw (/ (frame-pixel-width)
1450 (oc (1+ (/ xp cpw)))
1454 ((> oc (- (window-width) 3))
1456 (t (speedbar-message
1457 "Click on the edge of the modeline to scroll left/right")))
1458 ;;(speedbar-message "X: Pixel %d Char Pixels %d On char %d" xp cpw oc)
1461 (defun speedbar-customize ()
1462 "Customize speedbar using the Custom package."
1464 (let ((sf (selected-frame)))
1465 (select-frame speedbar-attached-frame)
1466 (customize-group 'speedbar)
1468 (speedbar-maybee-jump-to-attached-frame))
1470 (defun speedbar-track-mouse (event)
1471 "For motion EVENT, display info about the current line."
1473 (if (not speedbar-track-mouse-flag)
1476 (let ((char (nth 1 (car (cdr event)))))
1477 (if (not (numberp char))
1478 (speedbar-message nil)
1480 ;; (speedbar-message "%S" event)
1481 (speedbar-item-info)
1484 (defun speedbar-track-mouse-xemacs (event)
1485 "For motion EVENT, display info about the current line."
1486 (if (functionp (default-value 'mouse-motion-handler))
1487 (funcall (default-value 'mouse-motion-handler) event))
1488 (if speedbar-track-mouse-flag
1490 (save-window-excursion
1492 (progn (mouse-set-point event)
1493 ;; Prevent focus-related bugs.
1494 (if (eq major-mode 'speedbar-mode)
1495 (speedbar-item-info)))
1498 ;; In XEmacs, we make popup menus work on the item over mouse (as
1499 ;; opposed to where the point happens to be.) We attain this by
1500 ;; temporarily moving the point to that place.
1501 ;; Hrvoje Niksic <hniksic@srce.hr>
1502 (defun speedbar-xemacs-popup-kludge (event)
1503 "Pop up a menu related to the clicked on item.
1504 Must be bound to EVENT."
1506 (select-frame speedbar-frame)
1508 (goto-char (event-closest-point event))
1510 (forward-char (min 5 (- (save-excursion (end-of-line) (point))
1511 (save-excursion (beginning-of-line) (point)))))
1513 ;; Wait for menu to bail out. `popup-mode-menu' (and other popup
1514 ;; menu functions) return immediately.
1516 (while (not (misc-user-event-p (setq new (next-event))))
1517 (dispatch-event new))
1518 (dispatch-event new))))
1520 (defun speedbar-emacs-popup-kludge (e)
1521 "Pop up a menu related to the clicked on item.
1522 Must be bound to event E."
1526 ;; This gets the cursor where the user can see it.
1527 (if (not (bolp)) (forward-char -1))
1529 (if (< emacs-major-version 20)
1530 (mouse-major-mode-menu e)
1531 (mouse-major-mode-menu e nil))))
1533 (defun speedbar-hack-buffer-menu (e)
1534 "Control mouse 1 is buffer menu.
1535 This hack overrides it so that the right thing happens in the main
1536 Emacs frame, not in the speedbar frame.
1537 Argument E is the event causing this activity."
1539 (let ((fn (lookup-key global-map (if speedbar-xemacsp
1545 (set-window-dedicated-p (selected-window) nil)
1546 (call-interactively fn)
1547 (setq newbuff (current-buffer)))
1548 (switch-to-buffer speedbar-buffer)
1549 (set-window-dedicated-p (selected-window) t))
1550 (if (not (eq newbuff speedbar-buffer))
1551 (speedbar-with-attached-buffer
1552 (switch-to-buffer newbuff)))))
1554 (defun speedbar-next (arg)
1555 "Move to the next ARGth line in a speedbar buffer."
1557 (forward-line (or arg 1))
1558 (speedbar-item-info)
1559 (speedbar-position-cursor-on-line))
1561 (defun speedbar-prev (arg)
1562 "Move to the previous ARGth line in a speedbar buffer."
1564 (speedbar-next (if arg (- arg) -1)))
1566 (defun speedbar-restricted-move (arg)
1567 "Move to the next ARGth line in a speedbar buffer at the same depth.
1568 This means that movement is restricted to a subnode, and that siblings
1569 of intermediate nodes are skipped."
1570 (if (not (numberp arg)) (signal 'wrong-type-argument (list arg 'numberp)))
1571 ;; First find the extent for which we are allowed to move.
1572 (let ((depth (save-excursion (beginning-of-line)
1573 (if (looking-at "[0-9]+:")
1574 (string-to-int (match-string 0))
1576 (crement (if (< arg 0) 1 -1)) ; decrement or increment
1577 (lastmatch (point)))
1579 (forward-line (- crement))
1580 (let ((subdepth (save-excursion (beginning-of-line)
1581 (if (looking-at "[0-9]+:")
1582 (string-to-int (match-string 0))
1584 (cond ((or (< subdepth depth)
1585 (progn (end-of-line) (eobp))
1586 (progn (beginning-of-line) (bobp)))
1587 ;; We have reached the end of this block.
1588 (goto-char lastmatch)
1590 (error "End of sub-list"))
1592 (setq lastmatch (point)
1593 arg (+ arg crement))))))
1594 (speedbar-position-cursor-on-line)))
1596 (defun speedbar-restricted-next (arg)
1597 "Move to the next ARGth line in a speedbar buffer at the same depth.
1598 This means that movement is restricted to a subnode, and that siblings
1599 of intermediate nodes are skipped."
1601 (speedbar-restricted-move (or arg 1))
1602 (speedbar-item-info))
1605 (defun speedbar-restricted-prev (arg)
1606 "Move to the previous ARGth line in a speedbar buffer at the same depth.
1607 This means that movement is restricted to a subnode, and that siblings
1608 of intermediate nodes are skipped."
1610 (speedbar-restricted-move (if arg (- arg) -1))
1611 (speedbar-item-info))
1613 (defun speedbar-navigate-list (arg)
1614 "Move across ARG groups of similarly typed items in speedbar.
1615 Stop on the first line of the next type of item, or on the last or first item
1616 if we reach a buffer boundary."
1619 (if (looking-at "[0-9]+: *[[<{][-+?][]>}] ")
1620 (let ((str (regexp-quote (match-string 0))))
1621 (while (looking-at str)
1622 (speedbar-restricted-move arg)
1623 (beginning-of-line))))
1624 (speedbar-position-cursor-on-line))
1626 (defun speedbar-forward-list ()
1627 "Move forward over the current list.
1628 A LIST in speedbar is a group of similarly typed items, such as directories,
1629 files, or the directory button."
1631 (speedbar-navigate-list 1)
1632 (speedbar-item-info))
1634 (defun speedbar-backward-list ()
1635 "Move backward over the current list.
1636 A LIST in speedbar is a group of similarly typed items, such as directories,
1637 files, or the directory button."
1639 (speedbar-navigate-list -1)
1640 (speedbar-item-info))
1642 (defun speedbar-scroll-up (&optional arg)
1643 "Page down one screen-full of the speedbar, or ARG lines."
1646 (speedbar-position-cursor-on-line))
1648 (defun speedbar-scroll-down (&optional arg)
1649 "Page up one screen-full of the speedbar, or ARG lines."
1652 (speedbar-position-cursor-on-line))
1654 (defun speedbar-up-directory ()
1655 "Keyboard accelerator for moving the default directory up one.
1656 Assumes that the current buffer is the speedbar buffer"
1658 (setq default-directory (expand-file-name (concat default-directory "../")))
1659 (speedbar-update-contents))
1661 ;;; Speedbar file activity (aka creeping featurism)
1663 (defun speedbar-refresh ()
1664 "Refresh the current speedbar display, disposing of any cached data."
1666 (let ((dl speedbar-shown-directories)
1667 (dm (and (boundp 'deactivate-mark) deactivate-mark)))
1669 (adelete 'speedbar-directory-contents-alist (car dl))
1671 (if (<= 1 speedbar-verbosity-level)
1672 (speedbar-message "Refreshing speedbar..."))
1673 (speedbar-update-contents)
1674 (speedbar-stealthy-updates)
1675 ;; Reset the timer in case it got really hosed for some reason...
1676 (speedbar-set-timer speedbar-update-speed)
1677 (if (<= 1 speedbar-verbosity-level)
1678 (speedbar-message "Refreshing speedbar...done"))
1679 (if (boundp 'deactivate-mark) (setq deactivate-mark dm))))
1681 (defun speedbar-item-load ()
1682 "Load the item under the cursor or mouse if it is a Lisp file."
1684 (let ((f (speedbar-line-file)))
1685 (if (and (file-exists-p f) (string-match "\\.el\\'" f))
1686 (if (and (file-exists-p (concat f "c"))
1687 (speedbar-y-or-n-p (format "Load %sc? " f)))
1688 ;; If the compiled version exists, load that instead...
1689 (load-file (concat f "c"))
1691 (error "Not a loadable file"))))
1693 (defun speedbar-item-byte-compile ()
1694 "Byte compile the item under the cursor or mouse if it is a Lisp file."
1696 (let ((f (speedbar-line-file))
1697 (sf (selected-frame)))
1698 (if (and (file-exists-p f) (string-match "\\.el\\'" f))
1700 (select-frame speedbar-attached-frame)
1701 (byte-compile-file f nil)
1703 (speedbar-reset-scanners)))
1706 (defun speedbar-mouse-item-info (event)
1707 "Provide information about what the user clicked on.
1708 This should be bound to a mouse EVENT."
1710 (mouse-set-point event)
1711 (speedbar-item-info))
1713 (defun speedbar-generic-item-info ()
1714 "Attempt to derive, and then display information about thils line item.
1715 File style information is displayed with `speedbar-item-info'."
1718 ;; Skip invisible number info.
1719 (if (looking-at "\\([0-9]+\\):") (goto-char (match-end 0)))
1720 ;; Skip items in "folder" type text characters.
1721 (if (looking-at "\\s-*[[<({].[]>)}] ") (goto-char (match-end 0)))
1723 (speedbar-message "Text: %s" (buffer-substring-no-properties
1724 (point) (progn (end-of-line) (point))))))
1726 (defun speedbar-item-info ()
1727 "Display info in the mini-buffer about the button the mouse is over.
1728 This function can be replaced in `speedbar-mode-functions-list' as
1729 `speedbar-item-info'"
1731 (let (message-log-max)
1732 (funcall (or (speedbar-fetch-replacement-function 'speedbar-item-info)
1733 'speedbar-generic-item-info))))
1735 (defun speedbar-item-info-file-helper (&optional filename)
1736 "Display info about a file that is on the current line.
1737 nil if not applicable. If FILENAME, then use that instead of reading
1738 it from the speedbar buffer."
1739 (let* ((item (or filename (speedbar-line-file)))
1740 (attr (if item (file-attributes item) nil)))
1741 (if (and item attr) (speedbar-message "%s %-6d %s" (nth 8 attr)
1745 (defun speedbar-item-info-tag-helper ()
1746 "Display info about a tag that is on the current line.
1747 nil if not applicable."
1750 (if (re-search-forward " [-+=]?> \\([^\n]+\\)"
1751 (save-excursion(end-of-line)(point)) t)
1752 (let ((tag (match-string 1))
1753 (attr (speedbar-line-token))
1755 (if (and (featurep 'semantic) (semantic-token-p attr))
1756 (speedbar-message (semantic-summerize-nonterminal attr))
1757 (looking-at "\\([0-9]+\\):")
1758 (setq item (file-name-nondirectory (speedbar-line-path)))
1759 (speedbar-message "Tag: %s in %s" tag item)))
1760 (if (re-search-forward "{[+-]} \\([^\n]+\\)$"
1761 (save-excursion(end-of-line)(point)) t)
1762 (speedbar-message "Group of tags \"%s\"" (match-string 1))
1763 (if (re-search-forward " [+-]?[()|@] \\([^\n]+\\)$" nil t)
1764 (let* ((detailtext (match-string 1))
1765 (detail (or (speedbar-line-token) detailtext))
1766 (parent (save-excursion
1768 (let ((dep (if (looking-at "[0-9]+:")
1769 (1- (string-to-int (match-string 0)))
1771 (re-search-backward (concat "^"
1775 (if (looking-at "[0-9]+: +[-+=>]> \\([^\n]+\\)$")
1776 (speedbar-line-token)
1778 (if (and (featurep 'semantic) (semantic-token-p detail))
1780 (semantic-summerize-nonterminal detail parent))
1782 (speedbar-message "Detail: %s of tag %s" detail
1783 (if (and (featurep 'semantic)
1784 (semantic-token-p parent))
1785 (semantic-token-name parent)
1787 (speedbar-message "Detail: %s" detail))))
1790 (defun speedbar-files-item-info ()
1791 "Display info in the mini-buffer about the button the mouse is over."
1792 (if (not speedbar-shown-directories)
1793 (speedbar-generic-item-info)
1794 (or (speedbar-item-info-file-helper)
1795 (speedbar-item-info-tag-helper)
1796 (speedbar-generic-item-info))))
1798 (defun speedbar-item-copy ()
1799 "Copy the item under the cursor.
1800 Files can be copied to new names or places."
1802 (let ((f (speedbar-line-file)))
1803 (if (not f) (error "Not a file"))
1804 (if (file-directory-p f)
1805 (error "Cannot copy directory")
1806 (let* ((rt (read-file-name (format "Copy %s to: "
1807 (file-name-nondirectory f))
1808 (file-name-directory f)))
1809 (refresh (member (expand-file-name (file-name-directory rt))
1810 speedbar-shown-directories)))
1811 ;; Create the right file name part
1812 (if (file-directory-p rt)
1814 (concat (expand-file-name rt)
1815 (if (string-match "[/\\]$" rt) "" "/")
1816 (file-name-nondirectory f))))
1817 (if (or (not (file-exists-p rt))
1818 (speedbar-y-or-n-p (format "Overwrite %s with %s? " rt f)))
1820 (copy-file f rt t t)
1821 ;; refresh display if the new place is currently displayed.
1825 (if (not (speedbar-goto-this-file rt))
1826 (speedbar-goto-this-file f))))
1829 (defun speedbar-item-rename ()
1830 "Rename the item under the cursor or mouse.
1831 Files can be renamed to new names or moved to new directories."
1833 (let ((f (speedbar-line-file)))
1835 (let* ((rt (read-file-name (format "Rename %s to: "
1836 (file-name-nondirectory f))
1837 (file-name-directory f)))
1838 (refresh (member (expand-file-name (file-name-directory rt))
1839 speedbar-shown-directories)))
1840 ;; Create the right file name part
1841 (if (file-directory-p rt)
1843 (concat (expand-file-name rt)
1844 (if (string-match "[/\\]\\'" rt) "" "/")
1845 (file-name-nondirectory f))))
1846 (if (or (not (file-exists-p rt))
1847 (speedbar-y-or-n-p (format "Overwrite %s with %s? " rt f)))
1849 (rename-file f rt t)
1850 ;; refresh display if the new place is currently displayed.
1854 (speedbar-goto-this-file rt)
1856 (error "Not a file"))))
1858 (defun speedbar-item-delete ()
1859 "Delete the item under the cursor. Files are removed from disk."
1861 (let ((f (speedbar-line-file)))
1862 (if (not f) (error "Not a file"))
1863 (if (speedbar-y-or-n-p (format "Delete %s? " f))
1865 (if (file-directory-p f)
1866 (delete-directory f)
1868 (speedbar-message "Okie dokie..")
1875 (defun speedbar-item-object-delete ()
1876 "Delete the object associated from the item under the cursor.
1877 The file is removed from disk. The object is determined from the
1878 variable `speedbar-obj-alist'."
1880 (let* ((f (speedbar-line-file))
1882 (oa speedbar-obj-alist))
1883 (if (not f) (error "Not a file"))
1884 (while (and oa (not (string-match (car (car oa)) f)))
1886 (setq obj (concat (file-name-sans-extension f) (cdr (car oa))))
1887 (if (and oa (file-exists-p obj)
1888 (speedbar-y-or-n-p (format "Delete %s? " obj)))
1891 (speedbar-reset-scanners)))))
1893 (defun speedbar-enable-update ()
1894 "Enable automatic updating in speedbar via timers."
1896 (setq speedbar-update-flag t)
1897 (speedbar-set-mode-line-format)
1898 (speedbar-set-timer speedbar-update-speed))
1900 (defun speedbar-disable-update ()
1901 "Disable automatic updating and stop consuming resources."
1903 (setq speedbar-update-flag nil)
1904 (speedbar-set-mode-line-format)
1905 (speedbar-set-timer nil))
1907 (defun speedbar-toggle-updates ()
1908 "Toggle automatic update for the speedbar frame."
1910 (if speedbar-update-flag
1911 (speedbar-disable-update)
1912 (speedbar-enable-update)))
1914 (defun speedbar-toggle-images ()
1915 "Toggle automatic update for the speedbar frame."
1917 (setq speedbar-use-images (not speedbar-use-images))
1920 (defun speedbar-toggle-sorting ()
1921 "Toggle automatic update for the speedbar frame."
1923 (setq speedbar-sort-tags (not speedbar-sort-tags)))
1925 (defun speedbar-toggle-show-all-files ()
1926 "Toggle display of files speedbar can not tag."
1928 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files))
1931 ;;; Utility functions
1933 (defun speedbar-set-timer (timeout)
1934 "Apply a timer with TIMEOUT, or remove a timer if TIMOUT is nil.
1935 TIMEOUT is the number of seconds until the speedbar timer is called
1936 again. When TIMEOUT is nil, turn off all timeouts.
1937 This function will also enable or disable the `vc-checkin-hook' used
1938 to track file check ins, and will change the mode line to match
1939 `speedbar-update-flag'."
1944 (progn (delete-itimer speedbar-timer)
1945 (setq speedbar-timer nil)))
1947 (if (and speedbar-xemacsp
1948 (or (>= emacs-major-version 20)
1949 (>= emacs-minor-version 15)))
1950 (setq speedbar-timer (start-itimer "speedbar"
1955 (setq speedbar-timer (start-itimer "speedbar"
1960 ((fboundp 'run-with-idle-timer)
1962 (progn (cancel-timer speedbar-timer)
1963 (setq speedbar-timer nil)))
1965 (setq speedbar-timer
1966 (run-with-idle-timer timeout t 'speedbar-timer-fn))))
1967 ;; Emacs 19.30 (Thanks twice: ptype@dra.hmg.gb)
1968 ((fboundp 'post-command-idle-hook)
1970 (add-hook 'post-command-idle-hook 'speedbar-timer-fn)
1971 (remove-hook 'post-command-idle-hook 'speedbar-timer-fn)))
1972 ;; Older or other Emacsen with no timers. Set up so that its
1973 ;; obvious this emacs can't handle the updates
1975 (setq speedbar-update-flag nil)))
1976 ;; Apply a revert hook that will reset the scanners. We attach to revert
1977 ;; because most reverts occur during VC state change, and this lets our
1978 ;; VC scanner fix itself.
1980 (add-hook 'after-revert-hook 'speedbar-reset-scanners)
1981 (remove-hook 'after-revert-hook 'speedbar-reset-scanners)
1983 ;; change this if it changed for some reason
1984 (speedbar-set-mode-line-format))
1986 (defmacro speedbar-with-writable (&rest forms)
1987 "Allow the buffer to be writable and evaluate FORMS."
1988 (list 'let '((inhibit-read-only t))
1989 (cons 'progn forms)))
1990 (put 'speedbar-with-writable 'lisp-indent-function 0)
1992 (defun speedbar-select-window (buffer)
1993 "Select a window in which BUFFER is shown.
1994 If it is not shown, force it to appear in the default window."
1995 (let ((win (get-buffer-window buffer speedbar-attached-frame)))
1998 (set-window-buffer (selected-window) buffer))))
2000 (defun speedbar-insert-button (text face mouse function
2001 &optional token prevline)
2002 "Insert TEXT as the next logical speedbar button.
2003 FACE is the face to put on the button, MOUSE is the highlight face to use.
2004 When the user clicks on TEXT, FUNCTION is called with the TOKEN parameter.
2005 This function assumes that the current buffer is the speedbar buffer.
2006 If PREVLINE, then put this button on the previous line.
2008 This is a convenience function for special mode that create their own
2009 specialized speedbar displays."
2010 (goto-char (point-max))
2011 (let ((start (point)))
2012 (if (/= (current-column) 0) (insert "\n"))
2013 (put-text-property start (point) 'invisible nil))
2014 (if prevline (progn (delete-char -1)
2015 (insert " ") ;back up if desired...
2016 (put-text-property (1- (point)) (point) 'invisible nil)))
2017 (let ((start (point)))
2019 (speedbar-make-button start (point) face mouse function token))
2020 (let ((start (point)))
2022 (put-text-property start (point) 'face nil)
2023 (put-text-property start (point) 'invisible nil)
2024 (put-text-property start (point) 'mouse-face nil)))
2026 (defun speedbar-make-button (start end face mouse function &optional token)
2027 "Create a button from START to END, with FACE as the display face.
2028 MOUSE is the mouse face. When this button is clicked on FUNCTION
2029 will be run with the TOKEN parameter (any Lisp object)"
2030 (put-text-property start end 'face face)
2031 (put-text-property start end 'mouse-face mouse)
2032 (put-text-property start end 'invisible nil)
2033 (if function (put-text-property start end 'speedbar-function function))
2034 (if token (put-text-property start end 'speedbar-token token))
2035 ;; So far the only text we have is less that 3 chars.
2036 (if (<= (- end start) 3)
2037 (speedbar-insert-image-button-maybe start (- end start)))
2040 ;;; Initial Expansion list management
2042 (defun speedbar-initial-expansion-list ()
2043 "Return the current default expansion list.
2044 This is based on `speedbar-initial-expansion-list-name' referencing
2045 `speedbar-initial-expansion-mode-alist'."
2046 ;; cdr1 - name, cdr2 - menu
2047 (cdr (cdr (cdr (assoc speedbar-initial-expansion-list-name
2048 speedbar-initial-expansion-mode-alist)))))
2050 (defun speedbar-initial-menu ()
2051 "Return the current default menu data.
2052 This is based on `speedbar-initial-expansion-list-name' referencing
2053 `speedbar-initial-expansion-mode-alist'."
2055 (car (cdr (assoc speedbar-initial-expansion-list-name
2056 speedbar-initial-expansion-mode-alist)))))
2058 (defun speedbar-initial-keymap ()
2059 "Return the current default menu data.
2060 This is based on `speedbar-initial-expansion-list-name' referencing
2061 `speedbar-initial-expansion-mode-alist'."
2063 (car (cdr (cdr (assoc speedbar-initial-expansion-list-name
2064 speedbar-initial-expansion-mode-alist))))))
2066 (defun speedbar-initial-stealthy-functions ()
2067 "Return a list of functions to call stealthily.
2068 This is based on `speedbar-initial-expansion-list-name' referencing
2069 `speedbar-stealthy-function-list'."
2070 (cdr (assoc speedbar-initial-expansion-list-name
2071 speedbar-stealthy-function-list)))
2073 (defun speedbar-add-expansion-list (new-list)
2074 "Add NEW-LIST to the list of expansion lists."
2075 (add-to-list 'speedbar-initial-expansion-mode-alist new-list))
2077 (defun speedbar-change-initial-expansion-list (new-default)
2078 "Change speedbar's default expansion list to NEW-DEFAULT."
2081 (completing-read (format "Speedbar Mode (default %s): "
2082 speedbar-previously-used-expansion-list-name)
2083 speedbar-initial-expansion-mode-alist
2085 speedbar-previously-used-expansion-list-name)))
2086 (setq speedbar-previously-used-expansion-list-name
2087 speedbar-initial-expansion-list-name
2088 speedbar-initial-expansion-list-name new-default)
2090 (speedbar-reconfigure-keymaps))
2092 (defun speedbar-fetch-replacement-function (function)
2093 "Return a current mode specific replacement for function, or nil.
2094 Scans `speedbar-mode-functions-list' first for the current mode, then
2096 (cdr (assoc function
2097 (cdr (assoc speedbar-initial-expansion-list-name
2098 speedbar-mode-functions-list)))))
2100 (defun speedbar-add-mode-functions-list (new-list)
2101 "Add NEW-LIST to the list of mode functions.
2102 See `speedbar-mode-functions-list' for details."
2103 (add-to-list 'speedbar-mode-functions-list new-list))
2106 ;;; Special speedbar display management
2108 (defun speedbar-maybe-add-localized-support (buffer)
2109 "Quick check function called on BUFFERs by the speedbar timer function.
2110 Maintains the value of local variables which control speedbars use
2111 of the special mode functions."
2112 (or speedbar-special-mode-expansion-list
2113 (speedbar-add-localized-speedbar-support buffer)))
2115 (defun speedbar-add-localized-speedbar-support (buffer)
2116 "Add localized speedbar support to BUFFER's mode if it is available."
2117 (interactive "bBuffer: ")
2118 (if (stringp buffer) (setq buffer (get-buffer buffer)))
2119 (if (not (buffer-live-p buffer))
2124 (let ((ms (symbol-name major-mode)) v)
2125 (if (not (string-match "-mode$" ms))
2126 nil ;; do nothing to broken mode
2127 (setq ms (substring ms 0 (match-beginning 0)))
2128 (setq v (intern-soft (concat ms "-speedbar-buttons")))
2129 (make-local-variable 'speedbar-special-mode-expansion-list)
2131 (setq speedbar-special-mode-expansion-list t)
2132 ;; If it is autoloaded, we need to load it now so that
2133 ;; we have access to the varialbe -speedbar-menu-items.
2134 ;; Is this XEmacs safe?
2135 (let ((sf (symbol-function v)))
2136 (if (and (listp sf) (eq (car sf) 'autoload))
2137 (load-library (car (cdr sf)))))
2138 (setq speedbar-special-mode-expansion-list (list v))
2139 (setq v (intern-soft (concat ms "-speedbar-key-map")))
2141 nil ;; don't add special keymap
2142 (make-local-variable 'speedbar-special-mode-key-map)
2143 (setq speedbar-special-mode-key-map
2145 (setq v (intern-soft (concat ms "-speedbar-menu-items")))
2147 nil ;; don't add special menus
2148 (make-local-variable 'speedbar-easymenu-definition-special)
2149 (setq speedbar-easymenu-definition-special
2153 (defun speedbar-remove-localized-speedbar-support (buffer)
2154 "Remove any traces that BUFFER supports speedbar in a specialized way."
2157 (kill-local-variable 'speedbar-special-mode-expansion-list)
2158 (kill-local-variable 'speedbar-special-mode-key-map)
2159 (kill-local-variable 'speedbar-easymenu-definition-special)))
2161 ;;; File button management
2163 (defun speedbar-file-lists (directory)
2164 "Create file lists for DIRECTORY.
2165 The car is the list of directories, the cdr is list of files not
2166 matching ignored headers. Cache any directory files found in
2167 `speedbar-directory-contents-alist' and use that cache before scanning
2169 (setq directory (expand-file-name directory))
2170 ;; If in powerclick mode, then the directory we are getting
2171 ;; should be rescanned.
2172 (if speedbar-power-click
2173 (adelete 'speedbar-directory-contents-alist directory))
2174 ;; find the directory, either in the cache, or build it.
2175 (or (cdr-safe (assoc directory speedbar-directory-contents-alist))
2176 (let ((default-directory directory)
2177 (dir (directory-files directory nil))
2182 (or (string-match speedbar-file-unshown-regexp (car dir))
2183 (string-match speedbar-directory-unshown-regexp (car dir))))
2184 (if (file-directory-p (car dir))
2185 (setq dirs (cons (car dir) dirs))
2186 (setq files (cons (car dir) files))))
2187 (setq dir (cdr dir)))
2188 (let ((nl (cons (nreverse dirs) (list (nreverse files)))))
2189 (aput 'speedbar-directory-contents-alist directory nl)
2193 (defun speedbar-directory-buttons (directory index)
2194 "Insert a single button group at point for DIRECTORY.
2195 Each directory path part is a different button. If part of the path
2196 matches the user directory ~, then it is replaced with a ~.
2197 INDEX is not used, but is required by the caller."
2198 (let* ((tilde (expand-file-name "~/"))
2199 (dd (expand-file-name directory))
2200 (junk (string-match (regexp-quote tilde) dd))
2202 (concat "~/" (substring dd (match-end 0)))
2205 (if (string-match "^~[/\\]?\\'" displayme) (setq displayme tilde))
2209 (while (re-search-forward "\\([^/\\]+\\)[/\\]" nil t)
2210 (speedbar-make-button (match-beginning 1) (match-end 1)
2211 'speedbar-directory-face
2212 'speedbar-highlight-face
2213 'speedbar-directory-buttons-follow
2214 (if (and (= (match-beginning 1) p)
2215 (not (char-equal (char-after (+ p 1)) ?:)))
2216 (expand-file-name "~/") ;the tilde
2217 (buffer-substring-no-properties
2219 ;; Nuke the beginning of the directory if it's too long...
2220 (cond ((eq speedbar-directory-button-trim-method 'span)
2222 (let ((ww (or (speedbar-frame-width) 20)))
2223 (move-to-column ww nil)
2224 (while (>= (current-column) ww)
2225 (re-search-backward "[/\\]" nil t)
2226 (if (<= (current-column) 2)
2228 (re-search-forward "[/\\]" nil t)
2229 (if (< (current-column) 4)
2230 (re-search-forward "[/\\]" nil t))
2232 (if (looking-at "[/\\]?$")
2235 (move-to-column ww nil)))))
2236 ((eq speedbar-directory-button-trim-method 'trim)
2238 (let ((ww (or (speedbar-frame-width) 20))
2239 (tl (current-column)))
2242 (move-to-column (- tl ww))
2243 (if (re-search-backward "[/\\]" nil t)
2245 (delete-region (point-min) (point))
2249 (if (string-match "\\`[/\\][^/\\]+[/\\]\\'" displayme)
2254 (speedbar-make-button p (point)
2255 'speedbar-directory-face
2256 'speedbar-highlight-face
2257 'speedbar-directory-buttons-follow
2260 (insert-char ?\n 1 nil)))
2262 (defun speedbar-make-tag-line (exp-button-type
2263 exp-button-char exp-button-function
2265 tag-button tag-button-function tag-button-data
2266 tag-button-face depth)
2267 "Create a tag line with EXP-BUTTON-TYPE for the small expansion button.
2268 This is the button that expands or contracts a node (if applicable),
2269 and EXP-BUTTON-CHAR the character in it (+, -, ?, etc). EXP-BUTTON-FUNCTION
2270 is the function to call if it's clicked on. Button types are
2271 'bracket, 'angle, 'curly, or nil. EXP-BUTTON-DATA is extra data
2272 attached to the text forming the expansion button.
2274 Next, TAG-BUTTON is the text of the tag. TAG-BUTTON-FUNCTION is the
2275 function to call if clicked on, and TAG-BUTTON-DATA is the data to
2276 attach to the text field (such a tag positioning, etc).
2277 TAG-BUTTON-FACE is a face used for this type of tag.
2279 Lastly, DEPTH shows the depth of expansion.
2281 This function assumes that the cursor is in the speedbar window at the
2282 position to insert a new item, and that the new item will end with a CR"
2283 (let ((start (point))
2285 (insert (int-to-string depth) ":")
2287 (depthspacesize (* depth speedbar-indentation-width)))
2288 (put-text-property start end 'invisible t)
2289 (insert-char ? depthspacesize nil)
2290 (put-text-property (- (point) depthspacesize) (point) 'invisible nil)
2291 (let* ((exp-button (cond ((eq exp-button-type 'bracket) "[%c]")
2292 ((eq exp-button-type 'angle) "<%c>")
2293 ((eq exp-button-type 'curly) "{%c}")
2295 (buttxt (format exp-button exp-button-char))
2297 (end (progn (insert buttxt) (point)))
2298 (bf (if exp-button-type 'speedbar-button-face nil))
2299 (mf (if exp-button-function 'speedbar-highlight-face nil))
2301 (speedbar-make-button start end bf mf exp-button-function exp-button-data)
2302 (if speedbar-hide-button-brackets-flag
2304 (put-text-property start (1+ start) 'invisible t)
2305 (put-text-property end (1- end) 'invisible t)))
2307 (insert-char ? 1 nil)
2308 (put-text-property (1- (point)) (point) 'invisible nil)
2309 (let ((start (point))
2310 (end (progn (insert tag-button) (point))))
2311 (insert-char ?\n 1 nil)
2312 (put-text-property (1- (point)) (point) 'invisible nil)
2313 (speedbar-make-button start end tag-button-face
2314 (if tag-button-function 'speedbar-highlight-face nil)
2315 tag-button-function tag-button-data))
2318 (defun speedbar-change-expand-button-char (char)
2319 "Change the expansion button character to CHAR for the current line."
2322 (if (re-search-forward ":\\s-*.\\([-+?]\\)" (save-excursion (end-of-line)
2324 (speedbar-with-writable
2325 (goto-char (match-beginning 1))
2327 (insert-char char 1 t)
2328 (put-text-property (point) (1- (point)) 'invisible nil)
2329 ;; make sure we fix the image on the text here.
2330 (speedbar-insert-image-button-maybe (- (point) 2) 3)))))
2333 ;;; Build button lists
2335 (defun speedbar-insert-files-at-point (files level)
2336 "Insert list of FILES starting at point, and indenting all files to LEVEL.
2337 Tag expandable items with a +, otherwise a ?. Don't highlight ? as we
2338 don't know how to manage them. The input parameter FILES is a cons
2339 cell of the form ( 'DIRLIST . 'FILELIST )"
2340 ;; Start inserting all the directories
2341 (let ((dirs (car files)))
2343 (speedbar-make-tag-line 'angle ?+ 'speedbar-dired (car dirs)
2344 (car dirs) 'speedbar-dir-follow nil
2345 'speedbar-directory-face level)
2346 (setq dirs (cdr dirs))))
2347 (let ((lst (car (cdr files)))
2348 (case-fold-search t))
2350 (let* ((known (string-match speedbar-file-regexp (car lst)))
2351 (expchar (if known ?+ ??))
2352 (fn (if known 'speedbar-tag-file nil)))
2353 (if (or speedbar-show-unknown-files (/= expchar ??))
2354 (speedbar-make-tag-line 'bracket expchar fn (car lst)
2355 (car lst) 'speedbar-find-file nil
2356 'speedbar-file-face level)))
2357 (setq lst (cdr lst)))))
2359 (defun speedbar-default-directory-list (directory index)
2360 "Insert files for DIRECTORY with level INDEX at point."
2361 (speedbar-insert-files-at-point
2362 (speedbar-file-lists directory) index)
2363 (speedbar-reset-scanners)
2365 ;; If the shown files variable has extra directories, then
2366 ;; it is our responsibility to redraw them all
2367 ;; Luckilly, the nature of inserting items into this list means
2368 ;; that by reversing it, we can easilly go in the right order
2369 (let ((sf (cdr (reverse speedbar-shown-directories))))
2370 (setq speedbar-shown-directories
2371 (list (expand-file-name default-directory)))
2372 ;; exand them all as we find them
2374 (if (speedbar-goto-this-file (car sf))
2377 (if (looking-at "[0-9]+:[ ]*<")
2379 (goto-char (match-end 0))
2380 (speedbar-do-function-pointer)))
2381 (setq sf (cdr sf)))))
2384 (defun speedbar-sort-tag-hierarchy (lst)
2385 "Sort all elements of tag hierarchy LST."
2386 (sort (copy-alist lst)
2387 (lambda (a b) (string< (car a) (car b)))))
2389 (defun speedbar-prefix-group-tag-hierarchy (lst)
2390 "Prefix group names for tag hierarchy LST."
2395 (short-group-list nil)
2396 (short-start-name nil)
2397 (short-end-name nil)
2398 (num-shorts-grouped 0)
2399 (bins (make-vector 256 nil))
2401 ;; Break out sub-lists
2403 (if (and (listp (cdr-safe (car-safe lst)))
2404 ;; This one is for bovine tokens
2405 (not (symbolp (car-safe (cdr-safe (car-safe lst))))))
2406 (setq newlst (cons (car lst) newlst))
2407 (setq sublst (cons (car lst) sublst)))
2408 (setq lst (cdr lst)))
2409 ;; Reverse newlst because it was made backwards.
2410 ;; Sublist doesn't need reversing because the act
2411 ;; of binning things will reverse it for us.
2412 (setq newlst (nreverse newlst))
2413 ;; Now, first find out how long our list is. Never let a
2414 ;; list get-shorter than our minimum.
2415 (if (<= (length sublst) speedbar-tag-split-minimum-length)
2416 (setq work-list (nreverse sublst))
2417 (setq diff-idx (length (try-completion "" sublst)))
2418 ;; Sort the whole list into bins.
2420 (let ((e (car sublst))
2421 (s (car (car sublst))))
2422 (cond ((<= (length s) diff-idx)
2423 ;; 0 storage bin for shorty.
2424 (aset bins 0 (cons e (aref bins 0))))
2426 ;; stuff into a bin based on ascii value at diff
2427 (aset bins (aref s diff-idx)
2428 (cons e (aref bins (aref s diff-idx)))))))
2429 (setq sublst (cdr sublst)))
2430 ;; Go through all our bins Stick singles into our
2431 ;; junk-list, everything else as sublsts in work-list.
2432 ;; If two neighboring lists are both small, make a grouped
2433 ;; group combinding those two sub-lists.
2435 (while (> 256 diff-idx)
2436 (let ((l (nreverse;; Reverse the list since they are stuck in
2438 (aref bins diff-idx))))
2440 (let ((tmp (cons (try-completion "" l) l)))
2441 (if (or (> (length l) speedbar-tag-regroup-maximum-length)
2442 (> (+ (length l) (length short-group-list))
2443 speedbar-tag-split-minimum-length))
2445 ;; We have reached a longer list, so we
2446 ;; must finish off a grouped group.
2448 ((and short-group-list
2449 (= (length short-group-list)
2450 num-shorts-grouped))
2451 ;; All singles? Junk list
2452 (setq junk-list (append short-group-list
2454 ((= num-shorts-grouped 1)
2455 ;; Only one short group? Just stick it in
2456 ;; there by itself. Make a group, and find
2458 (let ((subexpression (try-completion
2459 "" short-group-list)))
2460 (if (< (length subexpression)
2461 speedbar-tag-group-name-minimum-length)
2463 (concat short-start-name
2466 (car (car short-group-list))
2467 (length short-start-name))
2470 (cons (cons subexpression
2474 ;; Multiple groups to be named in a special
2475 ;; way by displaying the range over which we
2476 ;; have grouped them.
2478 (cons (cons (concat short-start-name
2481 (nreverse short-group-list))
2483 ;; Reset short group list information every time.
2484 (setq short-group-list nil
2485 short-start-name nil
2487 num-shorts-grouped 0)))
2488 ;; Ok, now that we cleaned up the short-group-list,
2489 ;; we can deal with this new list, to decide if it
2490 ;; should go on one of these sub-lists or not.
2491 (if (< (length l) speedbar-tag-regroup-maximum-length)
2492 (setq short-group-list (append short-group-list l)
2493 num-shorts-grouped (1+ num-shorts-grouped)
2494 short-end-name (car tmp)
2495 short-start-name (if short-start-name
2498 (setq work-list (cons tmp work-list))))))
2499 (setq diff-idx (1+ diff-idx))))
2500 ;; Did we run out of things? Drop our new list onto the end.
2502 ((and short-group-list (= (length short-group-list) num-shorts-grouped))
2503 ;; All singles? Junk list
2504 (setq junk-list (append short-group-list junk-list)))
2505 ((= num-shorts-grouped 1)
2506 ;; Only one short group? Just stick it in
2509 (cons (cons (try-completion "" short-group-list)
2513 ;; Multiple groups to be named in a special
2514 ;; way by displaying the range over which we
2515 ;; have grouped them.
2517 (cons (cons (concat short-start-name " to " short-end-name)
2520 ;; Reverse the work list nreversed when consing.
2521 (setq work-list (nreverse work-list))
2522 ;; Now, stick our new list onto the end of
2525 (append newlst work-list junk-list)
2526 (append newlst work-list))
2527 (append newlst junk-list))))
2529 (defun speedbar-trim-words-tag-hierarchy (lst)
2530 "Trim all words in a tag hierarchy.
2531 Base trimming information on word separators, and group names.
2532 Argument LST is the list of tags to trim."
2539 (if (listp (cdr-safe (car-safe lst)))
2540 (setq newlst (cons (car lst) newlst))
2541 (setq sublst (cons (car lst) sublst)))
2542 (setq lst (cdr lst)))
2543 ;; Get the prefix to trim by. Make sure that we don't trim
2544 ;; off silly pieces, only complete understandable words.
2545 (setq trim-prefix (try-completion "" sublst))
2546 (if (or (= (length sublst) 1)
2548 (not (string-match "\\(\\w+\\W+\\)+" trim-prefix)))
2549 (append (nreverse newlst) (nreverse sublst))
2550 (setq trim-prefix (substring trim-prefix (match-beginning 0)
2552 (setq trim-chars (length trim-prefix))
2555 (cons (substring (car (car sublst)) trim-chars)
2558 sublst (cdr sublst)))
2559 ;; Put the lists together
2560 (append (nreverse newlst) trimlst))))
2562 (defun speedbar-simple-group-tag-hierarchy (lst)
2563 "Create a simple 'Tags' group with orphaned tags.
2564 Argument LST is the list of tags to sort into groups."
2568 (if (listp (cdr-safe (car-safe lst)))
2569 (setq newlst (cons (car lst) newlst))
2570 (setq sublst (cons (car lst) sublst)))
2571 (setq lst (cdr lst)))
2574 (setq newlst (cons (cons "Tags" (nreverse sublst)) newlst))
2575 (nreverse newlst))))
2577 (defun speedbar-create-tag-hierarchy (lst)
2578 "Adjust the tag hierarchy in LST, and return it.
2579 This uses `speedbar-tag-hierarchy-method' to determine how to adjust
2581 (let* ((f (save-excursion
2583 (speedbar-line-path)))
2584 (methods (if (get-file-buffer f)
2585 (save-excursion (set-buffer (get-file-buffer f))
2586 speedbar-tag-hierarchy-method)
2587 speedbar-tag-hierarchy-method))
2588 (lst (if (fboundp 'copy-tree)
2592 (setq lst (funcall (car methods) lst)
2593 methods (cdr methods)))
2596 (defun speedbar-insert-generic-list (level lst expand-fun find-fun)
2597 "At LEVEL, insert a generic multi-level alist LST.
2598 Associations with lists get {+} tags (to expand into more nodes) and
2599 those with positions just get a > as the indicator. {+} buttons will
2600 have the function EXPAND-FUN and the token is the CDR list. The token
2601 name will have the function FIND-FUN and not token."
2602 ;; Remove imenu rescan button
2603 (if (string= (car (car lst)) "*Rescan*")
2604 (setq lst (cdr lst)))
2606 (setq lst (speedbar-create-tag-hierarchy lst))
2609 (cond ((null (car-safe lst)) nil) ;this would be a separator
2610 ((or (numberp (cdr-safe (car-safe lst)))
2611 (markerp (cdr-safe (car-safe lst))))
2612 (speedbar-make-tag-line nil nil nil nil ;no expand button data
2613 (car (car lst)) ;button name
2615 (cdr (car lst)) ;token is position
2618 ((listp (cdr-safe (car-safe lst)))
2619 (speedbar-make-tag-line 'curly ?+ expand-fun (cdr (car lst))
2620 (car (car lst)) ;button name
2621 nil nil 'speedbar-tag-face
2623 (t (speedbar-message "Ooops!")))
2624 (setq lst (cdr lst))))
2626 (defun speedbar-insert-imenu-list (indent lst)
2627 "At level INDENT, insert the imenu generated LST."
2628 (speedbar-insert-generic-list indent lst
2629 'speedbar-tag-expand
2630 'speedbar-tag-find))
2632 (defun speedbar-insert-etags-list (indent lst)
2633 "At level INDENT, insert the etags generated LST."
2634 (speedbar-insert-generic-list indent lst
2635 'speedbar-tag-expand
2636 'speedbar-tag-find))
2640 (defun speedbar-update-contents ()
2641 "Generically update the contents of the speedbar buffer."
2643 ;; Set the current special buffer
2644 (setq speedbar-desired-buffer nil)
2645 ;; Check for special modes
2646 (speedbar-maybe-add-localized-support (current-buffer))
2647 ;; Choose the correct method of doodling.
2648 (if (and speedbar-mode-specific-contents-flag
2649 (listp speedbar-special-mode-expansion-list)
2650 speedbar-special-mode-expansion-list
2652 'speedbar-special-mode-expansion-list
2654 ;;(eq (get major-mode 'mode-class 'special)))
2655 (speedbar-update-special-contents)
2656 (speedbar-update-directory-contents)))
2658 (defun speedbar-update-directory-contents ()
2659 "Update the contents of the speedbar buffer based on the current directory."
2660 (let ((cbd (expand-file-name default-directory))
2662 (funclst (speedbar-initial-expansion-list))
2663 (cache speedbar-full-text-cache)
2664 ;; disable stealth during update
2665 (speedbar-stealthy-function-list nil)
2668 ;; Because there is a bug I can't find just yet
2671 (set-buffer speedbar-buffer)
2672 ;; If we are updating contents to where we are, then this is
2673 ;; really a request to update existing contents, so we must be
2674 ;; careful with our text cache!
2675 (if (member cbd speedbar-shown-directories)
2678 ;; If the current directory is not the last element in the dir
2679 ;; list, then we ALSO need to zap the list of expanded directories
2680 (if (/= (length (member cbd speedbar-shown-directories)) 1)
2681 (setq speedbar-shown-directories (list cbd))))
2683 ;; Build cbd-parent, and see if THAT is in the current shown
2684 ;; directories. First, go through pains to get the parent directory
2685 (if (and speedbar-smart-directory-expand-flag
2687 (setq cbd-parent cbd)
2688 (if (string-match "[/\\]$" cbd-parent)
2689 (setq cbd-parent (substring cbd-parent 0
2690 (match-beginning 0))))
2691 (setq cbd-parent (file-name-directory cbd-parent)))
2692 (member cbd-parent speedbar-shown-directories))
2693 (setq expand-local t)
2695 ;; If this directory is NOT in the current list of available
2696 ;; paths, then use the cache, and set the cache to our new
2697 ;; value. Make sure to unhighlight the current file, or if we
2698 ;; come back to this directory, it might be a different file
2699 ;; and then we get a mess!
2700 (if (> (point-max) 1)
2702 (speedbar-clear-current-file)
2703 (setq speedbar-full-text-cache
2704 (cons speedbar-shown-directories (buffer-string)))))
2706 ;; Check if our new directory is in the list of directories
2707 ;; shown in the text-cache
2708 (if (member cbd (car cache))
2709 (setq speedbar-shown-directories (car cache)
2711 ;; default the shown directories to this list...
2712 (setq speedbar-shown-directories (list cbd)))
2714 (if (not expand-local) (setq speedbar-last-selected-file nil))
2715 (speedbar-with-writable
2716 (if (and expand-local
2717 ;; Find this directory as a speedbar node.
2718 (speedbar-path-line cbd))
2720 (speedbar-expand-line)
2723 (setq default-directory
2724 (nth (1- (length speedbar-shown-directories))
2725 speedbar-shown-directories))
2726 (insert (cdr cache)))
2729 (setq default-directory cbd)
2730 (funcall (car funclst) cbd 0)
2731 (setq funclst (cdr funclst))))))
2732 (goto-char (point-min)))))
2733 (speedbar-reconfigure-keymaps))
2735 (defun speedbar-update-special-contents ()
2736 "Used the mode-specific variable to fill in the speedbar buffer.
2737 This should only be used by modes classified as special."
2738 (let ((funclst speedbar-special-mode-expansion-list)
2739 (specialbuff (current-buffer)))
2741 (setq speedbar-desired-buffer specialbuff)
2742 (set-buffer speedbar-buffer)
2743 ;; If we are leaving a directory, cache it.
2744 (if (not speedbar-shown-directories)
2747 ;; Clean up directory maintenance stuff
2748 (speedbar-clear-current-file)
2749 (setq speedbar-full-text-cache
2750 (cons speedbar-shown-directories (buffer-string))
2751 speedbar-shown-directories nil))
2752 ;; Now fill in the buffer with our newly found specialized list.
2753 (speedbar-with-writable
2755 ;; We do not erase the buffer because these functions may
2756 ;; decide NOT to update themselves.
2757 (funcall (car funclst) specialbuff)
2758 (setq funclst (cdr funclst))))
2759 (goto-char (point-min))))
2760 (speedbar-reconfigure-keymaps))
2762 (defun speedbar-timer-fn ()
2763 "Run whenever Emacs is idle to update the speedbar item."
2764 (if (not (and (frame-live-p speedbar-frame)
2765 (frame-live-p speedbar-attached-frame)))
2766 (speedbar-set-timer nil)
2767 ;; Save all the match data so that we don't mess up executing fns
2769 ;; Only do stuff if the frame is visible, not an icon, and if
2770 ;; it is currently flagged to do something.
2771 (if (and speedbar-update-flag
2772 (frame-visible-p speedbar-frame)
2773 (not (eq (frame-visible-p speedbar-frame) 'icon)))
2774 (let ((af (selected-frame)))
2775 (save-window-excursion
2776 (select-frame speedbar-attached-frame)
2777 ;; make sure we at least choose a window to
2778 ;; get a good directory from
2779 (if (window-minibuffer-p (selected-window))
2781 ;; Check for special modes
2782 (speedbar-maybe-add-localized-support (current-buffer))
2783 ;; Update for special mode all the time!
2784 (if (and speedbar-mode-specific-contents-flag
2785 (listp speedbar-special-mode-expansion-list)
2786 speedbar-special-mode-expansion-list
2788 'speedbar-special-mode-expansion-list
2790 ;;(eq (get major-mode 'mode-class 'special)))
2792 (if (<= 2 speedbar-verbosity-level)
2794 "Updating speedbar to special mode: %s..."
2796 (speedbar-update-special-contents)
2797 (if (<= 2 speedbar-verbosity-level)
2800 "Updating speedbar to special mode: %s...done"
2802 (speedbar-message nil))))
2803 ;; Update all the contents if directories change!
2804 (if (or (member (expand-file-name default-directory)
2805 speedbar-shown-directories)
2806 (and speedbar-ignored-path-regexp
2808 speedbar-ignored-path-regexp
2809 (expand-file-name default-directory)))
2810 (member major-mode speedbar-ignored-modes)
2811 (eq af speedbar-frame)
2812 (not (buffer-file-name)))
2814 (if (<= 1 speedbar-verbosity-level)
2815 (speedbar-message "Updating speedbar to: %s..."
2817 (speedbar-update-directory-contents)
2818 (if (<= 1 speedbar-verbosity-level)
2820 (speedbar-message "Updating speedbar to: %s...done"
2822 (speedbar-message nil)))))
2824 ;; Now run stealthy updates of time-consuming items
2825 (speedbar-stealthy-updates)))
2826 ;; Now run the mouse tracking system
2827 (speedbar-show-info-under-mouse)))
2828 (run-hooks 'speedbar-timer-hook))
2831 ;;; Stealthy activities
2833 (defvar speedbar-stealthy-update-recurse nil
2834 "Recursion avoidance variable for stealthy update.")
2836 (defun speedbar-stealthy-updates ()
2837 "For a given speedbar, run all items in the stealthy function list.
2838 Each item returns t if it completes successfully, or nil if
2839 interrupted by the user."
2840 (if (not speedbar-stealthy-update-recurse)
2841 (let ((l (speedbar-initial-stealthy-functions))
2842 (speedbar-stealthy-update-recurse t))
2844 (speedbar-with-writable
2845 (while (and l (funcall (car l)))
2848 ;;(speedbar-message "Exit with %S" (car l))
2851 (defun speedbar-reset-scanners ()
2852 "Reset any variables used by functions in the stealthy list as state.
2853 If new functions are added, their state needs to be updated here."
2854 (setq speedbar-vc-to-do-point t
2855 speedbar-obj-to-do-point t)
2856 (run-hooks 'speedbar-scanner-reset-hook)
2859 (defun speedbar-find-selected-file (file)
2860 "Goto the line where FILE is."
2861 (goto-char (point-min))
2863 (while (and (setq m (re-search-forward
2864 (concat " \\(" (file-name-nondirectory file)
2865 "\\)\\(" speedbar-indicator-regex "\\)?\n")
2871 (goto-char (match-beginning 0))
2874 (looking-at "[0-9]+:")
2875 (string-to-number (match-string 0)))))
2876 (match-string 1))))))
2879 (goto-char (match-beginning 1))
2880 (match-string 1)))))
2882 (defun speedbar-clear-current-file ()
2883 "Locate the file thought to be current, and remove its highlighting."
2885 (set-buffer speedbar-buffer)
2886 (if speedbar-last-selected-file
2887 (speedbar-with-writable
2888 (if (speedbar-find-selected-file speedbar-last-selected-file)
2889 (put-text-property (match-beginning 1)
2892 'speedbar-file-face))))))
2894 (defun speedbar-update-current-file ()
2895 "Find the current file, and update our visuals to indicate its name.
2896 This is specific to file names. If the file name doesn't show up, but
2897 it should be in the list, then the directory cache needs to be
2899 (let* ((lastf (selected-frame))
2900 (newcfd (save-excursion
2901 (select-frame speedbar-attached-frame)
2902 (let ((rf (if (buffer-file-name)
2905 (select-frame lastf)
2907 (newcf (if newcfd newcfd))
2908 (lastb (current-buffer))
2909 (sucf-recursive (boundp 'sucf-recursive))
2910 (case-fold-search t))
2912 ;; check here, that way we won't refresh to newcf until
2913 ;; its been written, thus saving ourselves some time
2914 (file-exists-p newcf)
2915 (not (string= newcf speedbar-last-selected-file)))
2917 ;; It is important to select the frame, otherwise the window
2918 ;; we want the cursor to move in will not be updated by the
2919 ;; search-forward command.
2920 (select-frame speedbar-frame)
2921 ;; Remove the old file...
2922 (speedbar-clear-current-file)
2923 ;; now highlight the new one.
2924 (set-buffer speedbar-buffer)
2925 (speedbar-with-writable
2926 (if (speedbar-find-selected-file newcf)
2927 ;; put the property on it
2928 (put-text-property (match-beginning 1)
2931 'speedbar-selected-face)
2932 ;; Oops, it's not in the list. Should it be?
2933 (if (and (string-match speedbar-file-regexp newcf)
2934 (string= (file-name-directory newcfd)
2935 (expand-file-name default-directory)))
2936 ;; yes, it is (we will ignore unknowns for now...)
2939 (if (speedbar-find-selected-file newcf)
2940 ;; put the property on it
2941 (put-text-property (match-beginning 1)
2944 'speedbar-selected-face)))
2945 ;; if it's not in there now, whatever...
2947 (setq speedbar-last-selected-file newcf))
2948 (if (not sucf-recursive)
2950 (speedbar-center-buffer-smartly)
2951 (speedbar-position-cursor-on-line)
2954 (select-frame lastf)
2956 ;; return that we are done with this activity.
2959 (defun speedbar-add-indicator (indicator-string &optional replace-this)
2960 "Add INDICATOR-STRING to the end of this speedbar line.
2961 If INDICATOR-STRING is space, and REPLACE-THIS is a character, then
2962 an the existing indicator is removed. If there is already an
2963 indicator, then do not add a space."
2965 ;; The nature of the beast: Assume we are in "the right place"
2967 (skip-chars-backward (concat " " speedbar-vc-indicator
2968 (car speedbar-obj-indicator)
2969 (cdr speedbar-obj-indicator)))
2970 (if (and (not (looking-at speedbar-indicator-regex))
2971 (not (string= indicator-string " ")))
2972 (insert speedbar-indicator-separator))
2973 (speedbar-with-writable
2975 (if (and replace-this
2976 (re-search-forward replace-this (save-excursion (end-of-line)
2979 (delete-region (match-beginning 0) (match-end 0))))
2981 (if (not (string= " " indicator-string))
2982 (insert indicator-string))))
2984 ;; Load efs/ange-ftp only if compiling to remove byte-compiler warnings.
2985 ;; Steven L Baur <steve@xemacs.org> said this was important:
2986 (eval-when-compile (or (featurep 'xemacs)
2987 (condition-case () (require 'efs)
2988 (error (require 'ange-ftp)))))
2990 (defun speedbar-check-vc ()
2991 "Scan all files in a directory, and for each see if it's checked out.
2992 See `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p' for how
2993 to add more types of version control systems."
2994 ;; Check for to-do to be reset. If reset but no RCS is available
2995 ;; then set to nil (do nothing) otherwise, start at the beginning
2997 (set-buffer speedbar-buffer)
2998 (if (and speedbar-vc-do-check (eq speedbar-vc-to-do-point t)
2999 (speedbar-vc-check-dir-p default-directory)
3000 (not (or (and (featurep 'ange-ftp)
3002 (car (if speedbar-xemacsp
3003 ange-ftp-path-format
3004 ange-ftp-name-format))
3005 (expand-file-name default-directory)))
3006 ;; efs support: Bob Weiner
3007 (and (featurep 'efs)
3009 (car efs-path-regexp)
3010 (expand-file-name default-directory))))))
3011 (setq speedbar-vc-to-do-point 0))
3012 (if (numberp speedbar-vc-to-do-point)
3014 (goto-char speedbar-vc-to-do-point)
3015 (while (and (not (input-pending-p))
3016 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] "
3018 (setq speedbar-vc-to-do-point (point))
3019 (if (speedbar-check-vc-this-line (match-string 1))
3020 (speedbar-add-indicator speedbar-vc-indicator
3021 (regexp-quote speedbar-vc-indicator))
3022 (speedbar-add-indicator " "
3023 (regexp-quote speedbar-vc-indicator))))
3024 (if (input-pending-p)
3025 ;; return that we are incomplete
3027 ;; we are done, set to-do to nil
3028 (setq speedbar-vc-to-do-point nil)
3033 (defun speedbar-check-vc-this-line (depth)
3034 "Return t if the file on this line is check of of a version control system.
3035 Parameter DEPTH is a string with the current depth of indentation of
3036 the file being checked."
3037 (let* ((d (string-to-int depth))
3038 (f (speedbar-line-path d))
3039 (fn (buffer-substring-no-properties
3040 ;; Skip-chars: thanks ptype@dra.hmg.gb
3042 (skip-chars-forward "^ "
3043 (save-excursion (end-of-line)
3046 (fulln (concat f fn)))
3047 (if (<= 2 speedbar-verbosity-level)
3048 (speedbar-message "Speedbar vc check...%s" fulln))
3049 (and (file-writable-p fulln)
3050 (speedbar-this-file-in-vc f fn))))
3052 (defun speedbar-vc-check-dir-p (path)
3053 "Return t if we should bother checking PATH for version control files.
3054 This can be overloaded to add new types of version control systems."
3057 (file-exists-p (concat path "RCS/"))
3059 (file-exists-p (concat path "SCCS/"))
3060 ;; Remote SCCS project
3061 (let ((proj-dir (getenv "PROJECTDIR")))
3063 (file-exists-p (concat proj-dir "/SCCS"))
3066 (run-hook-with-args 'speedbar-vc-path-enable-hook path)
3069 (defun speedbar-this-file-in-vc (path name)
3070 "Check to see if the file in PATH with NAME is in a version control system.
3071 You can add new VC systems by overriding this function. You can
3072 optimize this function by overriding it and only doing those checks
3073 that will occur on your system."
3076 (file-exists-p (concat path "RCS/" name ",v"))
3077 (file-exists-p (concat path "RCS/" name))
3078 ;; Local SCCS file name
3079 (file-exists-p (concat path "SCCS/s." name))
3080 ;; Remote SCCS file name
3081 (let ((proj-dir (getenv "PROJECTDIR")))
3083 (file-exists-p (concat proj-dir "/SCCS/s." name))
3086 (run-hook-with-args 'speedbar-vc-in-control-hook path name)
3089 ;; Objet File scanning
3090 (defun speedbar-check-objects ()
3091 "Scan all files in a directory, and for each see if there is an object.
3092 See `speedbar-check-obj-this-line' and `speedbar-obj-alist' for how
3093 to add more object types."
3094 ;; Check for to-do to be reset. If reset but no RCS is available
3095 ;; then set to nil (do nothing) otherwise, start at the beginning
3097 (set-buffer speedbar-buffer)
3098 (if (and speedbar-obj-do-check (eq speedbar-obj-to-do-point t))
3099 (setq speedbar-obj-to-do-point 0))
3100 (if (numberp speedbar-obj-to-do-point)
3102 (goto-char speedbar-obj-to-do-point)
3103 (while (and (not (input-pending-p))
3104 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] "
3106 (setq speedbar-obj-to-do-point (point))
3107 (let ((ind (speedbar-check-obj-this-line (match-string 1))))
3108 (if (not ind) (setq ind " "))
3109 (speedbar-add-indicator ind (concat
3110 (car speedbar-obj-indicator)
3112 (cdr speedbar-obj-indicator)))))
3113 (if (input-pending-p)
3114 ;; return that we are incomplete
3116 ;; we are done, set to-do to nil
3117 (setq speedbar-obj-to-do-point nil)
3122 (defun speedbar-check-obj-this-line (depth)
3123 "Return t if the file on this line has an associated object.
3124 Parameter DEPTH is a string with the current depth of indentation of
3125 the file being checked."
3126 (let* ((d (string-to-int depth))
3127 (f (speedbar-line-path d))
3128 (fn (buffer-substring-no-properties
3129 ;; Skip-chars: thanks ptype@dra.hmg.gb
3131 (skip-chars-forward "^ "
3132 (save-excursion (end-of-line)
3135 (fulln (concat f fn)))
3136 (if (<= 2 speedbar-verbosity-level)
3137 (speedbar-message "Speedbar obj check...%s" fulln))
3138 (let ((oa speedbar-obj-alist))
3139 (while (and oa (not (string-match (car (car oa)) fulln)))
3141 (if (not (and oa (file-exists-p (concat (file-name-sans-extension fulln)
3144 ;; Find out if the object is out of date or not.
3145 (let ((date1 (nth 5 (file-attributes fulln)))
3146 (date2 (nth 5 (file-attributes (concat
3147 (file-name-sans-extension fulln)
3149 (if (or (< (car date1) (car date2))
3150 (and (= (car date1) (car date2))
3151 (< (nth 1 date1) (nth 1 date2))))
3152 (car speedbar-obj-indicator)
3153 (cdr speedbar-obj-indicator)))))))
3155 ;;; Clicking Activity
3157 (defun speedbar-mouse-set-point (e)
3158 "Set POINT based on event E.
3159 Handle clicking on images in XEmacs."
3160 (if (and (fboundp 'event-over-glyph-p) (event-over-glyph-p e))
3161 ;; We are in XEmacs, and clicked on a picture
3162 (let ((ext (event-glyph-extent e)))
3163 ;; This position is back inside the extent where the
3164 ;; junk we pushed into the property list lives.
3165 (if (extent-end-position ext)
3166 (goto-char (1- (extent-end-position ext)))
3167 (mouse-set-point e)))
3168 ;; We are not in XEmacs, OR we didn't click on a picture.
3169 (mouse-set-point e)))
3171 (defun speedbar-quick-mouse (e)
3172 "Since mouse events are strange, this will keep the mouse nicely positioned.
3173 This should be bound to mouse event E."
3175 (speedbar-mouse-set-point e)
3176 (speedbar-position-cursor-on-line)
3179 (defun speedbar-position-cursor-on-line ()
3180 "Position the cursor on a line."
3181 (let ((oldpos (point)))
3183 (if (looking-at "[0-9]+:\\s-*..?.? ")
3184 (goto-char (1- (match-end 0)))
3185 (goto-char oldpos))))
3187 (defun speedbar-power-click (e)
3188 "Activate any speedbar button as a power click.
3189 A power click will dispose of cached data (if available) or bring a buffer
3190 up into a different window.
3191 This should be bound to mouse event E."
3193 (let ((speedbar-power-click t))
3194 (speedbar-click e)))
3196 (defun speedbar-click (e)
3197 "Activate any speedbar buttons where the mouse is clicked.
3198 This must be bound to a mouse event. A button is any location of text
3199 with a mouse face that has a text property called `speedbar-function'.
3200 This should be bound to mouse event E."
3202 (speedbar-mouse-set-point e)
3203 (speedbar-do-function-pointer)
3204 (speedbar-quick-mouse e))
3206 (defun speedbar-double-click (e)
3207 "Activate any speedbar buttons where the mouse is clicked.
3208 This must be bound to a mouse event. A button is any location of text
3209 with a mouse face that has a text property called `speedbar-function'.
3210 This should be bound to mouse event E."
3212 ;; Emacs only. XEmacs handles this via `mouse-track-click-hook'.
3213 (cond ((eq (car e) 'down-mouse-1)
3214 (speedbar-mouse-set-point e))
3215 ((eq (car e) 'mouse-1)
3216 (speedbar-quick-mouse e))
3217 ((or (eq (car e) 'double-down-mouse-1)
3218 (eq (car e) 'triple-down-mouse-1))
3219 (speedbar-mouse-set-point e)
3220 (speedbar-do-function-pointer)
3221 (speedbar-quick-mouse e))))
3223 (defun speedbar-do-function-pointer ()
3224 "Look under the cursor and examine the text properties.
3225 From this extract the file/tag name, token, indentation level and call
3226 a function if appropriate"
3227 (let* ((fn (get-text-property (point) 'speedbar-function))
3228 (tok (get-text-property (point) 'speedbar-token))
3229 ;; The 1-,+ is safe because scaning starts AFTER the point
3230 ;; specified. This lets the search include the character the
3232 (tp (previous-single-property-change
3233 (1+ (point)) 'speedbar-function))
3234 (np (next-single-property-change
3235 (point) 'speedbar-function))
3236 (txt (buffer-substring-no-properties (or tp (point-min))
3237 (or np (point-max))))
3238 (dent (save-excursion (beginning-of-line)
3240 (if (looking-at "[0-9]+")
3241 (buffer-substring-no-properties
3242 (match-beginning 0) (match-end 0))
3244 ;;(speedbar-message "%S:%S:%S:%s" fn tok txt dent)
3245 (and fn (funcall fn txt tok dent)))
3246 (speedbar-position-cursor-on-line))
3248 ;;; Reading info from the speedbar buffer
3250 (defun speedbar-line-text (&optional p)
3251 "Retrieve the text after prefix junk for the current line.
3252 Optional argument P is where to start the search from."
3254 (if p (goto-char p))
3256 (if (looking-at (concat
3257 "\\([0-9]+\\): *[[<{][-+?][]>}] \\([^ \n]+\\)\\("
3258 speedbar-indicator-regex "\\)?"))
3262 (defun speedbar-line-token (&optional p)
3263 "Retrieve the token information after the prefix junk for the current line.
3264 Optional argument P is where to start the search from."
3266 (if p (goto-char p))
3268 (if (looking-at (concat
3269 "\\([0-9]+\\): *[[<{]?[-+?=][]>}@()|] \\([^ \n]+\\)\\("
3270 speedbar-indicator-regex "\\)?"))
3272 (goto-char (match-beginning 2))
3273 (get-text-property (point) 'speedbar-token))
3276 (defun speedbar-line-file (&optional p)
3277 "Retrieve the file or whatever from the line at P point.
3278 The return value is a string representing the file. If it is a
3279 directory, then it is the directory name."
3281 (let ((f (speedbar-line-text p)))
3283 (let* ((depth (string-to-int (match-string 1)))
3284 (path (speedbar-line-path depth)))
3288 (defun speedbar-goto-this-file (file)
3289 "If FILE is displayed, goto this line and return t.
3290 Otherwise do not move and return nil."
3291 (let ((path (substring (file-name-directory (expand-file-name file))
3292 (length (expand-file-name default-directory))))
3295 (goto-char (point-min))
3296 ;; scan all the directories
3297 (while (and path (not (eq path t)))
3298 (if (string-match "^[/\\]?\\([^/\\]+\\)" path)
3299 (let ((pp (match-string 1 path)))
3300 (if (save-match-data
3301 (re-search-forward (concat "> " (regexp-quote pp) "$")
3303 (setq path (substring path (match-end 1)))
3306 ;; find the file part
3307 (if (or (not path) (string= (file-name-nondirectory file) ""))
3308 ;; only had a dir part
3311 (speedbar-position-cursor-on-line)
3313 (goto-char dest) nil)
3314 ;; find the file part
3315 (let ((nd (file-name-nondirectory file)))
3316 (if (re-search-forward
3317 (concat "] \\(" (regexp-quote nd)
3318 "\\)\\(" speedbar-indicator-regex "\\)$")
3321 (speedbar-position-cursor-on-line)
3326 (defun speedbar-line-path (&optional depth)
3327 "Retrieve the pathname associated with the current line.
3328 This may require traversing backwards from DEPTH and combining the default
3329 directory with these items. This function is replaceable in
3330 `speedbar-mode-functions-list' as `speedbar-line-path'"
3331 (let ((rf (speedbar-fetch-replacement-function 'speedbar-line-path)))
3332 (if rf (funcall rf depth) default-directory)))
3334 (defun speedbar-files-line-path (&optional depth)
3335 "Retrieve the pathname associated with the current line.
3336 This may require traversing backwards from DEPTH and combining the default
3337 directory with these items."
3343 (looking-at "^\\([0-9]+\\):")
3344 (setq depth (string-to-int (match-string 1)))))
3346 (setq depth (1- depth))
3347 (while (/= depth -1)
3348 (if (not (re-search-backward (format "^%d:" depth) nil t))
3349 (error "Error building path of tag")
3350 (cond ((looking-at "[0-9]+:\\s-*<->\\s-+\\([^\n]+\\)$")
3351 (setq path (concat (buffer-substring-no-properties
3352 (match-beginning 1) (match-end 1))
3355 ((looking-at "[0-9]+:\\s-*[-]\\s-+\\([^\n]+\\)$")
3356 ;; This is the start of our path.
3357 (setq path (buffer-substring-no-properties
3358 (match-beginning 1) (match-end 1))))))
3359 (setq depth (1- depth)))
3361 (string-match (concat speedbar-indicator-regex "$")
3363 (setq path (substring path 0 (match-beginning 0))))
3364 (concat default-directory path)))))
3366 (defun speedbar-path-line (path)
3367 "Position the cursor on the line specified by PATH."
3369 (if (string-match "[/\\]$" path)
3370 (setq path (substring path 0 (match-beginning 0))))
3371 (let ((nomatch t) (depth 0)
3372 (fname (file-name-nondirectory path))
3373 (pname (file-name-directory path)))
3374 (if (not (member pname speedbar-shown-directories))
3375 (error "Internal Error: File %s not shown in speedbar" path))
3376 (goto-char (point-min))
3379 (concat "[]>] \\(" (regexp-quote fname)
3380 "\\)\\(" speedbar-indicator-regex "\\)?$")
3383 (looking-at "\\([0-9]+\\):")
3384 (setq depth (string-to-int (match-string 0))
3385 nomatch (not (string= pname (speedbar-line-path depth))))
3390 (defun speedbar-edit-line ()
3391 "Edit whatever tag or file is on the current speedbar line."
3395 ;; If this fails, then it is a non-standard click, and as such,
3396 ;; perfectly allowed.
3397 (if (re-search-forward "[]>?}] [^ ]"
3398 (save-excursion (end-of-line) (point))
3400 (speedbar-do-function-pointer)
3402 (speedbar-do-function-pointer)))
3404 (defun speedbar-expand-line (&optional arg)
3405 "Expand the line under the cursor.
3406 With universal argument ARG, flush cached data."
3409 (let ((speedbar-power-click arg))
3412 (re-search-forward ":\\s-*.\\+. "
3413 (save-excursion (end-of-line) (point)))
3415 (speedbar-do-function-pointer))
3416 (error (speedbar-position-cursor-on-line)))))
3418 (defun speedbar-flush-expand-line ()
3419 "Expand the line under the cursor and flush any cached information."
3421 (speedbar-expand-line 1))
3423 (defun speedbar-contract-line ()
3424 "Contract the line under the cursor."
3429 (re-search-forward ":\\s-*.-. "
3430 (save-excursion (end-of-line) (point)))
3432 (speedbar-do-function-pointer))
3433 (error (speedbar-position-cursor-on-line))))
3435 (if speedbar-xemacsp
3436 (defalias 'speedbar-mouse-event-p 'button-press-event-p)
3437 (defun speedbar-mouse-event-p (event)
3438 "Return t if the event is a mouse related event"
3439 ;; And Emacs does it this way
3440 (if (and (listp event)
3441 (member (event-basic-type event)
3442 '(mouse-1 mouse-2 mouse-3)))
3446 (defun speedbar-maybee-jump-to-attached-frame ()
3447 "Jump to the attached frame ONLY if this was not a mouse event."
3448 (if (or (not (speedbar-mouse-event-p last-input-event))
3449 speedbar-activity-change-focus-flag)
3451 (select-frame speedbar-attached-frame)
3454 (defun speedbar-find-file (text token indent)
3455 "Speedbar click handler for filenames.
3456 TEXT, the file will be displayed in the attached frame.
3457 TOKEN is unused, but required by the click handler. INDENT is the
3458 current indentation level."
3459 (let ((cdd (speedbar-line-path indent)))
3460 (speedbar-find-file-in-frame (concat cdd text))
3461 (speedbar-stealthy-updates)
3462 (run-hooks 'speedbar-visiting-file-hook)
3463 ;; Reset the timer with a new timeout when cliking a file
3464 ;; in case the user was navigating directories, we can cancel
3465 ;; that other timer.
3466 (speedbar-set-timer speedbar-update-speed))
3467 (speedbar-maybee-jump-to-attached-frame))
3469 (defun speedbar-dir-follow (text token indent)
3470 "Speedbar click handler for directory names.
3471 Clicking a directory will cause the speedbar to list files in the
3472 the subdirectory TEXT. TOKEN is an unused requirement. The
3473 subdirectory chosen will be at INDENT level."
3474 (setq default-directory
3475 (concat (expand-file-name (concat (speedbar-line-path indent) text))
3477 ;; Because we leave speedbar as the current buffer,
3478 ;; update contents will change directory without
3479 ;; having to touch the attached frame. Turn off smart expand just
3481 (let ((speedbar-smart-directory-expand-flag nil))
3482 (speedbar-update-contents))
3483 (speedbar-set-timer speedbar-navigating-speed)
3484 (setq speedbar-last-selected-file nil)
3485 (speedbar-stealthy-updates))
3487 (defun speedbar-delete-subblock (indent)
3488 "Delete text from point to indentation level INDENT or greater.
3489 Handles end-of-sublist smartly."
3490 (speedbar-with-writable
3492 (end-of-line) (forward-char 1)
3493 (let ((start (point)))
3494 (while (and (looking-at "^\\([0-9]+\\):")
3495 (> (string-to-int (match-string 1)) indent)
3498 (beginning-of-line))
3499 (delete-region start (point))))))
3501 (defun speedbar-dired (text token indent)
3502 "Speedbar click handler for directory expand button.
3503 Clicking this button expands or contracts a directory. TEXT is the
3504 button clicked which has either a + or -. TOKEN is the directory to be
3505 expanded. INDENT is the current indentation level."
3506 (cond ((string-match "+" text) ;we have to expand this dir
3507 (setq speedbar-shown-directories
3508 (cons (expand-file-name
3509 (concat (speedbar-line-path indent) token "/"))
3510 speedbar-shown-directories))
3511 (speedbar-change-expand-button-char ?-)
3512 (speedbar-reset-scanners)
3514 (end-of-line) (forward-char 1)
3515 (speedbar-with-writable
3516 (speedbar-default-directory-list
3517 (concat (speedbar-line-path indent) token "/")
3519 ((string-match "-" text) ;we have to contract this node
3520 (speedbar-reset-scanners)
3521 (let ((oldl speedbar-shown-directories)
3523 (td (expand-file-name
3524 (concat (speedbar-line-path indent) token))))
3526 (if (not (string-match (concat "^" (regexp-quote td)) (car oldl)))
3527 (setq newl (cons (car oldl) newl)))
3528 (setq oldl (cdr oldl)))
3529 (setq speedbar-shown-directories (nreverse newl)))
3530 (speedbar-change-expand-button-char ?+)
3531 (speedbar-delete-subblock indent)
3533 (t (error "Ooops... not sure what to do")))
3534 (speedbar-center-buffer-smartly)
3535 (setq speedbar-last-selected-file nil)
3536 (save-excursion (speedbar-stealthy-updates)))
3538 (defun speedbar-directory-buttons-follow (text token indent)
3539 "Speedbar click handler for default directory buttons.
3540 TEXT is the button clicked on. TOKEN is the directory to follow.
3541 INDENT is the current indentation level and is unused."
3542 (if (string-match "^[A-z]:$" token)
3543 (setq default-directory (concat token (char-to-string directory-sep-char)))
3544 (setq default-directory token))
3545 ;; Because we leave speedbar as the current buffer,
3546 ;; update contents will change directory without
3547 ;; having to touch the attached frame.
3548 (speedbar-update-contents)
3549 (speedbar-set-timer speedbar-navigating-speed))
3551 (defun speedbar-tag-file (text token indent)
3552 "The cursor is on a selected line. Expand the tags in the specified file.
3553 The parameter TEXT and TOKEN are required, where TEXT is the button
3554 clicked, and TOKEN is the file to expand. INDENT is the current
3556 (cond ((string-match "+" text) ;we have to expand this file
3557 (let* ((fn (expand-file-name (concat (speedbar-line-path indent)
3560 (lst (speedbar-fetch-dynamic-tags fn)))
3561 ;; if no list, then remove expando button
3563 (speedbar-change-expand-button-char ??)
3564 (speedbar-change-expand-button-char ?-)
3565 (speedbar-with-writable
3567 (end-of-line) (forward-char 1)
3568 (funcall (car lst) indent (cdr lst)))))))
3569 ((string-match "-" text) ;we have to contract this node
3570 (speedbar-change-expand-button-char ?+)
3571 (speedbar-delete-subblock indent))
3572 (t (error "Ooops... not sure what to do")))
3573 (speedbar-center-buffer-smartly))
3575 (defun speedbar-tag-find (text token indent)
3576 "For the tag TEXT in a file TOKEN, goto that position.
3577 INDENT is the current indentation level."
3578 (let ((file (speedbar-line-path indent)))
3579 (speedbar-find-file-in-frame file)
3580 (save-excursion (speedbar-stealthy-updates))
3581 ;; Reset the timer with a new timeout when cliking a file
3582 ;; in case the user was navigating directories, we can cancel
3583 ;; that other timer.
3584 (speedbar-set-timer speedbar-update-speed)
3586 (run-hooks 'speedbar-visiting-tag-hook)
3588 (speedbar-maybee-jump-to-attached-frame)
3591 (defun speedbar-tag-expand (text token indent)
3592 "Expand a tag sublist. Imenu will return sub-lists of specialized tag types.
3593 Etags does not support this feature. TEXT will be the button
3594 string. TOKEN will be the list, and INDENT is the current indentation
3596 (cond ((string-match "+" text) ;we have to expand this file
3597 (speedbar-change-expand-button-char ?-)
3598 (speedbar-with-writable
3600 (end-of-line) (forward-char 1)
3601 (speedbar-insert-generic-list indent token 'speedbar-tag-expand
3602 'speedbar-tag-find))))
3603 ((string-match "-" text) ;we have to contract this node
3604 (speedbar-change-expand-button-char ?+)
3605 (speedbar-delete-subblock indent))
3606 (t (error "Ooops... not sure what to do")))
3607 (speedbar-center-buffer-smartly))
3609 ;;; Loading files into the attached frame.
3611 (defun speedbar-find-file-in-frame (file)
3612 "This will load FILE into the speedbar attached frame.
3613 If the file is being displayed in a different frame already, then raise that
3615 (let* ((buff (find-file-noselect file))
3616 (bwin (get-buffer-window buff 0)))
3619 (select-window bwin)
3620 (raise-frame (window-frame bwin)))
3621 (if speedbar-power-click
3622 (let ((pop-up-frames t)) (select-window (display-buffer buff)))
3623 (select-frame speedbar-attached-frame)
3624 (switch-to-buffer buff))))
3627 ;;; Centering Utility
3629 (defun speedbar-center-buffer-smartly ()
3630 "Recenter a speedbar buffer so the current indentation level is all visible.
3631 This assumes that the cursor is on a file, or tag of a file which the user is
3633 (if (<= (count-lines (point-min) (point-max))
3634 (1- (window-height (selected-window))))
3635 ;; whole buffer fits
3637 (goto-char (point-min))
3641 (let (depth start end exp p)
3644 (setq depth (if (looking-at "[0-9]+")
3645 (string-to-int (buffer-substring-no-properties
3646 (match-beginning 0) (match-end 0)))
3648 (setq exp (format "^%d:\\s-*[[{<]\\([?+-]\\)[]>}]" depth)))
3651 (if (re-search-backward exp nil t)
3652 (setq start (point))
3653 (setq start (point-min)))
3654 (save-excursion ;Not sure about this part.
3657 (while (and (not (re-search-forward exp nil t))
3659 (setq depth (1- depth))
3660 (setq exp (format "^%d:\\s-*[[{<]\\([?+-]\\)[]>}]" depth)))
3663 (setq end (point-max)))))
3664 ;; Now work out the details of centering
3665 (let ((nl (count-lines start end))
3667 (if (> nl (window-height (selected-window)))
3668 ;; We can't fit it all, so just center on cursor
3669 (progn (goto-char start)
3671 ;; we can fit everything on the screen, but...
3672 (if (and (pos-visible-in-window-p start (selected-window))
3673 (pos-visible-in-window-p end (selected-window)))
3676 ;; we need to do something...
3678 (let ((newcent (/ (- (window-height (selected-window)) nl) 2))
3679 (lte (count-lines start (point-max))))
3680 (if (and (< (+ newcent lte) (window-height (selected-window)))
3681 (> (- (window-height (selected-window)) lte 1)
3683 (setq newcent (- (window-height (selected-window))
3685 (recenter newcent))))
3689 ;;; Tag Management -- List of expanders:
3691 (defun speedbar-fetch-dynamic-tags (file)
3692 "Return a list of tags generated dynamically from FILE.
3693 This uses the entries in `speedbar-dynamic-tags-function-list'
3694 to find the proper tags. It is up to each of those individual
3695 functions to do caching and flushing if appropriate."
3697 (set-buffer (find-file-noselect file))
3698 ;; If there is a buffer-local value of
3699 ;; speedbar-dynamic-tags-function-list, it will now be available.
3700 (let ((dtf speedbar-dynamic-tags-function-list)
3702 (while (and (eq ret t) dtf)
3704 (if (fboundp (car (car dtf)))
3705 (funcall (car (car dtf)) (buffer-file-name))
3708 (setq dtf (cdr dtf))))
3710 ;; No valid tag list, return nil
3712 ;; We have some tags. Return the list with the insert fn
3714 (cons (cdr (car dtf)) ret)))))
3716 ;;; Tag Management -- Imenu
3718 (if (not speedbar-use-imenu-flag)
3722 (eval-when-compile (if (locate-library "imenu") (require 'imenu)))
3724 (defun speedbar-fetch-dynamic-imenu (file)
3725 "Load FILE into a buffer, and generate tags using Imenu.
3726 Returns the tag list, or t for an error."
3727 ;; Load this AND compile it in
3729 (if speedbar-power-click (setq imenu--index-alist nil))
3731 (let ((index-alist (imenu--make-index-alist t)))
3732 (if speedbar-sort-tags
3733 (sort (copy-alist index-alist)
3734 (lambda (a b) (string< (car a) (car b))))
3739 ;;; Tag Management -- etags (old XEmacs compatibility part)
3741 (defvar speedbar-fetch-etags-parse-list
3742 '(;; Note that java has the same parse-group as c
3743 ("\\.\\([cChH]\\|c\\+\\+\\|cpp\\|cc\\|hh\\|java\\)\\'" .
3744 speedbar-parse-c-or-c++tag)
3745 ("^\\.emacs$\\|.\\(el\\|l\\|lsp\\)\\'" .
3746 "def[^i]+\\s-+\\(\\(\\w\\|[-_]\\)+\\)\\s-*\C-?")
3747 ; ("\\.\\([fF]\\|for\\|FOR\\|77\\|90\\)\\'" .
3748 ; speedbar-parse-fortran77-tag)
3749 ("\\.tex\\'" . speedbar-parse-tex-string)
3751 "\\(\\(FUNCTION\\|function\\|PROCEDURE\\|procedure\\)\\s-+\\([a-zA-Z0-9_.:]+\\)\\)\\s-*(?^?")
3753 "Associations of file extensions and expressions for extracting tags.
3754 To add a new file type, you would want to add a new association to the
3755 list, where the car is the file match, and the cdr is the way to
3756 extract an element from the tags output. If the output is complex,
3757 use a function symbol instead of regexp. The function should expect
3758 to be at the beginning of a line in the etags buffer.
3760 This variable is ignored if `speedbar-use-imenu-flag' is non-nil.")
3762 (defvar speedbar-fetch-etags-command "etags"
3763 "*Command used to create an etags file.
3765 This variable is ignored if `speedbar-use-imenu-flag' is t")
3767 (defvar speedbar-fetch-etags-arguments '("-D" "-I" "-o" "-")
3768 "*List of arguments to use with `speedbar-fetch-etags-command'.
3769 This creates an etags output buffer. Use `speedbar-toggle-etags' to
3770 modify this list conveniently.
3772 This variable is ignored if `speedbar-use-imenu-flag' is t")
3774 (defun speedbar-toggle-etags (flag)
3775 "Toggle FLAG in `speedbar-fetch-etags-arguments'.
3776 FLAG then becomes a member of etags command line arguments. If flag
3777 is \"sort\", then toggle the value of `speedbar-sort-tags'. If its
3778 value is \"show\" then toggle the value of
3779 `speedbar-show-unknown-files'.
3781 This function is a convenience function for XEmacs menu created by
3782 Farzin Guilak <farzin@protocol.com>"
3785 ((equal flag "sort")
3786 (setq speedbar-sort-tags (not speedbar-sort-tags)))
3787 ((equal flag "show")
3788 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files)))
3789 ((or (equal flag "-C")
3792 (if (member flag speedbar-fetch-etags-arguments)
3793 (setq speedbar-fetch-etags-arguments
3794 (delete flag speedbar-fetch-etags-arguments))
3795 (add-to-list 'speedbar-fetch-etags-arguments flag)))
3798 (defun speedbar-fetch-dynamic-etags (file)
3799 "For FILE, run etags and create a list of symbols extracted.
3800 Each symbol will be associated with its line position in FILE."
3801 (let ((newlist nil))
3804 (if (get-buffer "*etags tmp*")
3805 (kill-buffer "*etags tmp*")) ;kill to clean it up
3806 (if (<= 1 speedbar-verbosity-level)
3807 (speedbar-message "Fetching etags..."))
3808 (set-buffer (get-buffer-create "*etags tmp*"))
3809 (apply 'call-process speedbar-fetch-etags-command nil
3810 (current-buffer) nil
3811 (append speedbar-fetch-etags-arguments (list file)))
3812 (goto-char (point-min))
3813 (if (<= 1 speedbar-verbosity-level)
3814 (speedbar-message "Fetching etags..."))
3816 (let ((exprlst speedbar-fetch-etags-parse-list)
3818 (while (and (not ans) exprlst)
3819 (if (string-match (car (car exprlst)) file)
3820 (setq ans (car exprlst)))
3821 (setq exprlst (cdr exprlst)))
3825 (set-buffer (get-buffer-create "*etags tmp*"))
3826 (while (not (save-excursion (end-of-line) (eobp)))
3828 (setq tnl (speedbar-extract-one-symbol expr)))
3829 (if tnl (setq newlist (cons tnl newlist)))
3832 "Sorry, no support for a file of that extension"))))
3834 (if speedbar-sort-tags
3835 (sort newlist (lambda (a b) (string< (car a) (car b))))
3836 (reverse newlist))))
3838 ;; This bit donated by Farzin Guilak <farzin@protocol.com> but I'm not
3839 ;; sure it's needed with the different sorting method.
3841 ;(defun speedbar-clean-etags()
3842 ; "Removes spaces before the ^? character, and removes `#define',
3843 ;return types, etc. preceding tags. This ensures that the sort operation
3844 ;works on the tags, not the return types."
3846 ; (goto-char (point-min))
3848 ; (re-search-forward "(?[ \t](?\C-?" nil t)
3849 ; (replace-match "\C-?" nil nil))
3850 ; (goto-char (point-min))
3852 ; (re-search-forward "\\(.*[ \t]+\\)\\([^ \t\n]+.*\C-?\\)" nil t)
3853 ; (delete-region (match-beginning 1) (match-end 1)))))
3855 (defun speedbar-extract-one-symbol (expr)
3856 "At point, return nil, or one alist in the form: (SYMBOL . POSITION)
3857 The line should contain output from etags. Parse the output using the
3858 regular expression EXPR"
3859 (let* ((sym (if (stringp expr)
3861 (re-search-forward expr (save-excursion
3864 (buffer-substring-no-properties (match-beginning 1)
3867 (pos (let ((j (re-search-forward "[\C-?\C-a]\\([0-9]+\\),\\([0-9]+\\)"
3873 (1+ (string-to-int (buffer-substring-no-properties
3881 (defun speedbar-parse-c-or-c++tag ()
3882 "Parse a c or c++ tag, which tends to be a little complex."
3884 (let ((bound (save-excursion (end-of-line) (point))))
3885 (cond ((re-search-forward "\C-?\\([^\C-a]+\\)\C-a" bound t)
3886 (buffer-substring-no-properties (match-beginning 1)
3888 ((re-search-forward "\\<\\([^ \t]+\\)\\s-+new(" bound t)
3889 (buffer-substring-no-properties (match-beginning 1)
3891 ((re-search-forward "\\<\\([^ \t(]+\\)\\s-*(\C-?" bound t)
3892 (buffer-substring-no-properties (match-beginning 1)
3897 (defun speedbar-parse-tex-string ()
3898 "Parse a Tex string. Only find data which is relevant."
3900 (let ((bound (save-excursion (end-of-line) (point))))
3901 (cond ((re-search-forward "\\(\\(sub\\)*section\\|chapter\\|cite\\)\\s-*{[^\C-?}]*}?" bound t)
3902 (buffer-substring-no-properties (match-beginning 0)
3907 ;;; BUFFER DISPLAY mode.
3909 (defvar speedbar-buffers-key-map nil
3910 "Keymap used when in the buffers display mode.")
3912 (if speedbar-buffers-key-map
3914 (setq speedbar-buffers-key-map (speedbar-make-specialized-keymap))
3916 ;; Basic tree features
3917 (define-key speedbar-buffers-key-map "e" 'speedbar-edit-line)
3918 (define-key speedbar-buffers-key-map "\C-m" 'speedbar-edit-line)
3919 (define-key speedbar-buffers-key-map "+" 'speedbar-expand-line)
3920 (define-key speedbar-buffers-key-map "=" 'speedbar-expand-line)
3921 (define-key speedbar-buffers-key-map "-" 'speedbar-contract-line)
3923 ;; Buffer specific keybindings
3924 (define-key speedbar-buffers-key-map "k" 'speedbar-buffer-kill-buffer)
3925 (define-key speedbar-buffers-key-map "r" 'speedbar-buffer-revert-buffer)
3929 (defvar speedbar-buffer-easymenu-definition
3930 '(["Jump to buffer" speedbar-edit-line t]
3931 ["Expand File Tags" speedbar-expand-line
3932 (save-excursion (beginning-of-line)
3933 (looking-at "[0-9]+: *.\\+. "))]
3934 ["Flush Cache & Expand" speedbar-flush-expand-line
3935 (save-excursion (beginning-of-line)
3936 (looking-at "[0-9]+: *.\\+. "))]
3937 ["Contract File Tags" speedbar-contract-line
3938 (save-excursion (beginning-of-line)
3939 (looking-at "[0-9]+: *.-. "))]
3940 ["Kill Buffer" speedbar-buffer-kill-buffer
3941 (save-excursion (beginning-of-line)
3942 (looking-at "[0-9]+: *.-. "))]
3943 ["Revert Buffer" speedbar-buffer-revert-buffer
3944 (save-excursion (beginning-of-line)
3945 (looking-at "[0-9]+: *.-. "))]
3947 "Menu item elements shown when displaying a buffer list.")
3949 (defun speedbar-buffer-buttons (directory zero)
3950 "Create speedbar buttons based on the buffers currently loaded.
3951 DIRECTORY is the path to the currently active buffer, and ZERO is 0."
3952 (speedbar-buffer-buttons-engine nil))
3954 (defun speedbar-buffer-buttons-temp (directory zero)
3955 "Create speedbar buttons based on the buffers currently loaded.
3956 DIRECTORY is the path to the currently active buffer, and ZERO is 0."
3957 (speedbar-buffer-buttons-engine t))
3959 (defun speedbar-buffer-buttons-engine (temp)
3960 "Create speedbar buffer buttons.
3961 If TEMP is non-nil, then clicking on a buffer restores the previous display."
3962 (insert "Active Buffers:\n")
3963 (let ((bl (buffer-list)))
3965 (if (string-match "^[ *]" (buffer-name (car bl)))
3967 (let* ((known (string-match speedbar-file-regexp
3968 (buffer-name (car bl))))
3969 (expchar (if known ?+ ??))
3970 (fn (if known 'speedbar-tag-file nil))
3971 (fname (save-excursion (set-buffer (car bl))
3972 (buffer-file-name))))
3973 (speedbar-make-tag-line 'bracket expchar fn
3974 (if fname (file-name-nondirectory fname))
3975 (buffer-name (car bl))
3976 'speedbar-buffer-click temp
3977 'speedbar-file-face 0)))
3979 (setq bl (buffer-list))
3980 (insert "Scratch Buffers:\n")
3982 (if (not (string-match "^\\*" (buffer-name (car bl))))
3984 (if (eq (car bl) speedbar-buffer)
3986 (speedbar-make-tag-line 'bracket ?? nil nil
3987 (buffer-name (car bl))
3988 'speedbar-buffer-click temp
3989 'speedbar-file-face 0)))
3991 (setq bl (buffer-list))
3992 (insert "Hidden Buffers:\n")
3994 (if (not (string-match "^ " (buffer-name (car bl))))
3996 (if (eq (car bl) speedbar-buffer)
3998 (speedbar-make-tag-line 'bracket ?? nil nil
3999 (buffer-name (car bl))
4000 'speedbar-buffer-click temp
4001 'speedbar-file-face 0)))
4002 (setq bl (cdr bl)))))
4004 (defun speedbar-buffers-item-info ()
4005 "Display information about the current buffer on the current line."
4006 (or (speedbar-item-info-tag-helper)
4007 (let* ((item (speedbar-line-text))
4008 (buffer (if item (get-buffer item) nil)))
4010 (speedbar-message "%s%s %S %d %s"
4011 (if (buffer-modified-p buffer) "* " "")
4013 (save-excursion (set-buffer buffer) major-mode)
4014 (save-excursion (set-buffer buffer)
4016 (or (buffer-file-name buffer) "<No file>"))))))
4018 (defun speedbar-buffers-line-path (&optional depth)
4019 "Fetch the full path to the file (buffer) specified on the current line.
4020 Optional argument DEPTH specifies the current depth of the back search."
4022 ;; Buffers are always at level 0
4023 (if (not (re-search-backward "^0:" nil t))
4025 (let* ((bn (speedbar-line-text))
4026 (buffer (if bn (get-buffer bn))))
4027 (if buffer (file-name-directory (buffer-file-name buffer))))))
4029 (defun speedbar-buffer-click (text token indent)
4030 "When the users clicks on a buffer-button in speedbar.
4031 TEXT is the buffer's name, TOKEN and INDENT are unused."
4032 (if speedbar-power-click
4033 (let ((pop-up-frames t)) (select-window (display-buffer text)))
4034 (select-frame speedbar-attached-frame)
4035 (switch-to-buffer text)
4036 (if token (speedbar-change-initial-expansion-list
4037 speedbar-previously-used-expansion-list-name))))
4039 (defun speedbar-buffer-kill-buffer ()
4040 "Kill the buffer the cursor is on in the speedbar buffer."
4044 ;; If this fails, then it is a non-standard click, and as such,
4045 ;; perfectly allowed.
4046 (if (re-search-forward "[]>?}] [^ ]"
4047 (save-excursion (end-of-line) (point))
4051 (buffer-substring (point) (save-excursion
4054 (if (and (get-buffer text)
4055 (speedbar-y-or-n-p (format "Kill buffer %s? " text)))
4057 (speedbar-refresh))))))
4059 (defun speedbar-buffer-revert-buffer ()
4060 "Revert the buffer the cursor is on in the speedbar buffer."
4064 ;; If this fails, then it is a non-standard click, and as such,
4065 ;; perfectly allowed
4066 (if (re-search-forward "[]>?}] [^ ]"
4067 (save-excursion (end-of-line) (point))
4071 (buffer-substring (point) (save-excursion
4074 (if (get-buffer text)
4077 (revert-buffer t)))))))
4080 ;;; Useful hook values and such.
4082 (defvar speedbar-highlight-one-tag-line nil
4083 "Overlay used for highlighting the most recently jumped to tag line.")
4085 (defun speedbar-highlight-one-tag-line ()
4086 "Highlight the current line, unhighlighting a previously jumped to line."
4087 (speedbar-unhighlight-one-tag-line)
4088 (setq speedbar-highlight-one-tag-line
4089 (speedbar-make-overlay (save-excursion (beginning-of-line) (point))
4090 (save-excursion (end-of-line)
4093 (speedbar-overlay-put speedbar-highlight-one-tag-line 'face
4094 'speedbar-highlight-face)
4095 (add-hook 'pre-command-hook 'speedbar-unhighlight-one-tag-line)
4098 (defun speedbar-unhighlight-one-tag-line ()
4099 "Unhighlight the currently highlight line."
4100 (if speedbar-highlight-one-tag-line
4102 (speedbar-delete-overlay speedbar-highlight-one-tag-line)
4103 (setq speedbar-highlight-one-tag-line nil)))
4104 (remove-hook 'pre-command-hook 'speedbar-unhighlight-one-tag-line))
4106 (defun speedbar-recenter-to-top ()
4107 "Recenter the current buffer so POINT is on the top of the window."
4110 (defun speedbar-recenter ()
4111 "Recenter the current buffer so POINT is in the center of the window."
4112 (recenter (/ (window-height (selected-window)) 2)))
4115 ;;; Color loading section.
4117 (defface speedbar-button-face '((((class color) (background light))
4118 (:foreground "green4"))
4119 (((class color) (background dark))
4120 (:foreground "green3")))
4121 "Face used for +/- buttons."
4122 :group 'speedbar-faces)
4124 (defface speedbar-file-face '((((class color) (background light))
4125 (:foreground "cyan4"))
4126 (((class color) (background dark))
4127 (:foreground "cyan"))
4129 "Face used for file names."
4130 :group 'speedbar-faces)
4132 (defface speedbar-directory-face '((((class color) (background light))
4133 (:foreground "blue4"))
4134 (((class color) (background dark))
4135 (:foreground "light blue")))
4136 "Faced used for directory names."
4137 :group 'speedbar-faces)
4138 (defface speedbar-tag-face '((((class color) (background light))
4139 (:foreground "brown"))
4140 (((class color) (background dark))
4141 (:foreground "yellow")))
4142 "Face used for displaying tags."
4143 :group 'speedbar-faces)
4145 (defface speedbar-selected-face '((((class color) (background light))
4146 (:foreground "red" :underline t))
4147 (((class color) (background dark))
4148 (:foreground "red" :underline t))
4150 "Face used to underline the file in the active window."
4151 :group 'speedbar-faces)
4153 (defface speedbar-highlight-face '((((class color) (background light))
4154 (:background "green"))
4155 (((class color) (background dark))
4156 (:background "sea green"))
4157 (((class grayscale monochrome)
4159 (:background "black"))
4160 (((class grayscale monochrome)
4162 (:background "white")))
4163 "Face used for highlighting buttons with the mouse."
4164 :group 'speedbar-faces)
4167 ;;; Image loading and inlining
4170 ;;; Some images if defimage is available:
4173 (if (fboundp 'defimage)
4174 (defalias 'defimage-speedbar 'defimage)
4176 (if (not (fboundp 'make-glyph))
4178 (defmacro defimage-speedbar (variable imagespec docstring)
4179 "Don't bother loading up an image...
4180 Argument VARIABLE is the varible to define.
4181 Argument IMAGESPEC is the list defining the image to create.
4182 Argument DOCSTRING is the documentation for VARIABLE."
4183 `(defvar ,variable nil ,docstring))
4186 (defun speedbar-find-image-on-load-path (image)
4187 "Find the image file IMAGE on the load path."
4190 (while (and l (not r))
4191 (if (file-exists-p (concat (car l) "/" image))
4192 (setq r (concat (car l) "/" image)))
4196 (defun speedbar-convert-emacs21-imagespec-to-xemacs (spec)
4197 "Convert the Emacs21 Image SPEC into an XEmacs image spec."
4198 (let* ((sl (car spec))
4201 (vector itype ':file (speedbar-find-image-on-load-path ifile))))
4203 (defmacro defimage-speedbar (variable imagespec docstring)
4204 "Devine VARIABLE as an image if `defimage' is not available..
4205 IMAGESPEC is the image data, and DOCSTRING is documentation for the image."
4207 ;; The Emacs21 version of defimage looks just like the XEmacs image
4208 ;; specifier, except that it needs a :type keyword. If we line
4209 ;; stuff up right, we can use this cheat to support XEmacs specifiers.
4212 (make-image-specifier
4213 (speedbar-convert-emacs21-imagespec-to-xemacs (quote ,imagespec)))
4220 (defimage-speedbar speedbar-directory-plus
4221 ((:type xpm :file "sb-dir-plus.xpm" :ascent center))
4222 "Image used for closed directories with stuff in them.")
4224 (defimage-speedbar speedbar-directory-minus
4225 ((:type xpm :file "sb-dir-minus.xpm" :ascent center))
4226 "Image used for open directories with stuff in them.")
4228 (defimage-speedbar speedbar-page-plus
4229 ((:type xpm :file "sb-pg-plus.xpm" :ascent center))
4230 "Image used for closed files with stuff in them.")
4232 (defimage-speedbar speedbar-page-minus
4233 ((:type xpm :file "sb-pg-minus.xpm" :ascent center))
4234 "Image used for open files with stuff in them.")
4236 (defimage-speedbar speedbar-page
4237 ((:type xpm :file "sb-pg.xpm" :ascent center))
4238 "Image used for files that can't be opened.")
4240 (defimage-speedbar speedbar-tag
4241 ((:type xpm :file "sb-tag.xpm" :ascent center))
4242 "Image used for tags.")
4244 (defimage-speedbar speedbar-tag-plus
4245 ((:type xpm :file "sb-tag-plus.xpm" :ascent center))
4246 "Image used for closed tag groups.")
4248 (defimage-speedbar speedbar-tag-minus
4249 ((:type xpm :file "sb-tag-minus.xpm" :ascent center))
4250 "Image used for open tag groups.")
4252 (defimage-speedbar speedbar-tag-gt
4253 ((:type xpm :file "sb-tag-gt.xpm" :ascent center))
4254 "Image used for open tag groups.")
4256 (defimage-speedbar speedbar-tag-v
4257 ((:type xpm :file "sb-tag-v.xpm" :ascent center))
4258 "Image used for open tag groups.")
4260 (defimage-speedbar speedbar-tag-type
4261 ((:type xpm :file "sb-tag-type.xpm" :ascent center))
4262 "Image used for open tag groups.")
4264 (defimage-speedbar speedbar-mail
4265 ((:type xpm :file "sb-mail.xpm" :ascent center))
4266 "Image used for open tag groups.")
4268 (defvar speedbar-expand-image-button-alist
4269 '(("<+>" . speedbar-directory-plus)
4270 ("<->" . speedbar-directory-minus)
4271 ("[+]" . speedbar-page-plus)
4272 ("[-]" . speedbar-page-minus)
4273 ("[?]" . speedbar-page)
4274 ("{+}" . speedbar-tag-plus)
4275 ("{-}" . speedbar-tag-minus)
4276 ("<M>" . speedbar-mail)
4277 (" =>" . speedbar-tag)
4278 (" +>" . speedbar-tag-gt)
4279 (" ->" . speedbar-tag-v)
4280 (">" . speedbar-tag)
4281 ("@" . speedbar-tag-type)
4282 (" @" . speedbar-tag-type)
4284 "List of text and image associations.")
4286 (defun speedbar-insert-image-button-maybe (start length)
4287 "Insert an image button based on text starting at START for LENGTH chars.
4288 If buttontext is unknown, just insert that text.
4289 If we have an image associated with it, use that image."
4290 (if speedbar-use-images
4291 (let* ((bt (buffer-substring start (+ length start)))
4292 (a (assoc bt speedbar-expand-image-button-alist)))
4293 ;; Regular images (created with `insert-image' are intangible
4294 ;; which (I suppose) make them more compatible with XEmacs 21.
4295 ;; Unfortunatly, there is a giant pile o code dependent on the
4296 ;; underlying text. This means if we leave it tangible, then I
4297 ;; don't have to change said giant piles o code.
4298 (if (and a (symbol-value (cdr a)))
4299 (if (fboundp 'set-extent-property)
4300 (add-text-properties (+ start (length bt)) start
4301 (list 'end-glyph (symbol-value (cdr a))
4302 'rear-nonsticky (list 'display)
4305 (add-text-properties start (+ start (length bt))
4306 (list 'display (symbol-value (cdr a))
4307 'rear-nonsticky (list 'display))))
4308 ;(message "Bad text [%s]" (buffer-substring start (+ start length)))
4312 ;; some edebug hooks
4313 (add-hook 'edebug-setup-hook
4315 (def-edebug-spec speedbar-with-writable def-body)))
4318 ;;; speedbar ends here
4320 ;; run load-time hooks
4321 (run-hooks 'speedbar-load-hook)