1 ;;; speedbar --- quick access to files and tags in a frame
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
6 ;; Author: Eric M. Ludlam <zappo@gnu.org>
7 ;; Keywords: file, tags, tools
9 (defvar speedbar-version
"1.0"
10 "The current version of speedbar.")
11 (defvar speedbar-incompatible-version
"0.14beta4"
12 "This version of speedbar is incompatible with this version.
13 Due to massive API changes (removing the use of the word PATH)
14 this version is not backward compatible to 0.14 or earlier.")
16 ;; This file is part of GNU Emacs.
18 ;; GNU Emacs is free software; you can redistribute it and/or modify
19 ;; it under the terms of the GNU General Public License as published by
20 ;; the Free Software Foundation; either version 3, or (at your option)
23 ;; GNU Emacs is distributed in the hope that it will be useful,
24 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 ;; GNU General Public License for more details.
28 ;; You should have received a copy of the GNU General Public License
29 ;; along with GNU Emacs; see the file COPYING. If not, write to the
30 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
31 ;; Boston, MA 02110-1301, USA.
35 ;; The speedbar provides a frame in which files, and locations in
36 ;; files are displayed. These items can be clicked on with mouse-2 in
37 ;; to display that file location.
39 ;;; Customizing and Developing for speedbar
41 ;; Please see the speedbar manual for informaion.
45 ;; Users of really old emacsen without the need timer functions
46 ;; will not have speedbar updating automatically. Use "g" to refresh
47 ;; the display after changing directories. Remember, do not interrupt
48 ;; the stealthy updates or your display may not be completely
51 ;; AUC-TEX users: The imenu tags for AUC-TEX mode don't work very
52 ;; well. Use the imenu keywords from tex-mode.el for better results.
54 ;; This file requires the library package assoc (association lists)
55 ;; assoc should be available in all modern versions of Emacs.
56 ;; The custom package is optional (for easy configuration of speedbar)
57 ;; http://www.dina.kvl.dk/~abraham/custom/
58 ;; custom is available in all versions of Emacs version 20 or better.
60 ;;; Developing for speedbar
62 ;; Adding a speedbar specialized display mode:
64 ;; Speedbar can be configured to create a special display for certain
65 ;; modes that do not display traditional file/tag data. Rmail, Info,
66 ;; and the debugger are examples. These modes can, however, benefit
67 ;; from a speedbar style display in their own way.
69 ;; If your `major-mode' is `foo-mode', the only requirement is to
70 ;; create a function called `foo-speedbar-buttons' which takes one
71 ;; argument, BUFFER. BUFFER will be the buffer speedbar wants filled.
72 ;; In `foo-speedbar-buttons' there are several functions that make
73 ;; building a speedbar display easy. See the documentation for
74 ;; `speedbar-with-writable' (needed because the buffer is usually
75 ;; read-only) `speedbar-make-tag-line', `speedbar-insert-button', and
76 ;; `speedbar-insert-generic-list'. If you use
77 ;; `speedbar-insert-generic-list', also read the doc for
78 ;; `speedbar-tag-hierarchy-method' in case you wish to override it.
79 ;; The macro `speedbar-with-attached-buffer' brings you back to the
80 ;; buffer speedbar is displaying for.
82 ;; For those functions that make buttons, the "function" should be a
83 ;; symbol that is the function to call when clicked on. The "token"
84 ;; is extra data you can pass along. The "function" must take three
85 ;; parameters. They are (TEXT TOKEN INDENT). TEXT is the text of the
86 ;; button clicked on. TOKEN is the data passed in when you create the
87 ;; button. INDENT is an indentation level, or 0. You can store
88 ;; indentation levels with `speedbar-make-tag-line' which creates a
89 ;; line with an expander (eg. [+]) and a text button.
91 ;; Some useful functions when writing expand functions, and click
92 ;; functions are `speedbar-change-expand-button-char',
93 ;; `speedbar-delete-subblock', and `speedbar-center-buffer-smartly'.
94 ;; The variable `speedbar-power-click' is set to t in your functions
95 ;; when the user shift-clicks. This is an indication of anything from
96 ;; refreshing cached data to making a buffer appear in a new frame.
98 ;; If you wish to add to the default speedbar menu for the case of
99 ;; `foo-mode', create a variable `foo-speedbar-menu-items'. This
100 ;; should be a list compatible with the `easymenu' package. It will
101 ;; be spliced into the main menu. (Available with click-mouse-3). If
102 ;; you wish to have extra key bindings in your special mode, create a
103 ;; variable `foo-speedbar-key-map'. Instead of using `make-keymap',
104 ;; or `make-sparse-keymap', use the function
105 ;; `speedbar-make-specialized-keymap'. This lets you inherit all of
106 ;; speedbar's default bindings with low overhead.
108 ;; Adding a speedbar top-level display mode:
110 ;; Unlike the specialized modes, there are no name requirements,
111 ;; however the methods for writing a button display, menu, and keymap
112 ;; are the same. Once you create these items, you can call the
113 ;; function `speedbar-add-expansion-list'. It takes one parameter
114 ;; which is a list element of the form (NAME MENU KEYMAP &rest
115 ;; BUTTON-FUNCTIONS). NAME is a string that will show up in the
116 ;; Displays menu item. MENU is a symbol containing the menu items to
117 ;; splice in. KEYMAP is a symbol holding the keymap to use, and
118 ;; BUTTON-FUNCTIONS are the function names to call, in order, to create
120 ;; Another tweakable variable is `speedbar-stealthy-function-list'
121 ;; which is of the form (NAME &rest FUNCTION ...). NAME is the string
122 ;; name matching `speedbar-add-expansion-list'. (It does not need to
123 ;; exist.). This provides additional display info which might be
124 ;; time-consuming to calculate.
125 ;; Lastly, `speedbar-mode-functions-list' allows you to set special
126 ;; function overrides.
129 ;; - Timeout directories we haven't visited in a while.
136 ;; customization stuff
137 (defgroup speedbar nil
138 "File and tag browser frame."
145 (defgroup speedbar-faces nil
146 "Faces used in speedbar."
151 (defgroup speedbar-vc nil
152 "Version control display in speedbar."
158 ;; Note: `inversion-test' requires parts of the CEDET package that are
159 ;; not included with Emacs.
161 ;; (defun speedbar-require-version (major minor &optional beta)
162 ;; "Non-nil if this version of SPEEDBAR does not satisfy a specific version.
165 ;; (MAJOR MINOR &optional BETA)
167 ;; Values MAJOR and MINOR must be integers. BETA can be an integer, or
168 ;; excluded if a released version is required.
170 ;; It is assumed that if the current version is newer than that specified,
171 ;; everything passes. Exceptions occur when known incompatibilities are
173 ;; (inversion-test 'speedbar
174 ;; (concat major "." minor
175 ;; (when beta (concat "beta" beta)))))
177 (defvar speedbar-initial-expansion-mode-alist
178 '(("buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map
179 speedbar-buffer-buttons
)
180 ("quick buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map
181 speedbar-buffer-buttons-temp
)
182 ;; Files last, means first in the Displays menu
183 ("files" speedbar-easymenu-definition-special speedbar-file-key-map
184 speedbar-directory-buttons speedbar-default-directory-list
)
186 "List of named expansion elements for filling the speedbar frame.
187 These expansion lists are only valid for regular files. Special modes
188 still get to override this list on a mode-by-mode basis. This list of
189 lists is of the form (NAME MENU KEYMAP FN1 FN2 ...). NAME is a string
190 representing the types of things to be displayed. MENU is an easymenu
191 structure used when in this mode. KEYMAP is a local keymap to install
192 over the regular speedbar keymap. FN1 ... are functions that will be
193 called in order. These functions will always get the default
194 directory to use passed in as the first parameter, and a 0 as the
195 second parameter. The 0 indicates the uppermost indentation level.
196 They must assume that the cursor is at the position where they start
199 (defvar speedbar-initial-expansion-list-name
"files"
200 "A symbol name representing the expansion list to use.
201 The expansion list `speedbar-initial-expansion-mode-alist' contains
202 the names and associated functions to use for buttons in speedbar.")
204 (defvar speedbar-previously-used-expansion-list-name
"files"
205 "Save the last expansion list method.
206 This is used for returning to a previous expansion list method when
207 the user is done with the current expansion list.")
209 (defvar speedbar-stealthy-function-list
211 speedbar-update-current-file
212 speedbar-check-read-only
214 speedbar-check-objects
)
216 "List of functions to periodically call stealthily.
217 This list is of the form:
218 '( (\"NAME\" FUNCTION ...)
220 where NAME is the name of the major display mode these functions are
221 for, and the remaining elements FUNCTION are functions to call in order.
222 Each function must return nil if interrupted, or t if completed.
223 Stealthy functions which have a single operation should always return
224 t. Functions which take a long time should maintain a state (where
225 they are in their speedbar related calculations) and permit
226 interruption. See `speedbar-check-vc' as a good example.")
228 (defvar speedbar-mode-functions-list
229 '(("files" (speedbar-item-info . speedbar-files-item-info
)
230 (speedbar-line-directory . speedbar-files-line-directory
))
231 ("buffers" (speedbar-item-info . speedbar-buffers-item-info
)
232 (speedbar-line-directory . speedbar-buffers-line-directory
))
233 ("quick buffers" (speedbar-item-info . speedbar-buffers-item-info
)
234 (speedbar-line-directory . speedbar-buffers-line-directory
))
236 "List of function tables to use for different major display modes.
237 It is not necessary to define any functions for a specialized mode.
238 This just provides a simple way of adding lots of customizations.
239 Each sublist is of the form:
240 (\"NAME\" (FUNCTIONSYMBOL . REPLACEMENTFUNCTION) ...)
241 Where NAME is the name of the specialized mode. The rest of the list
242 is a set of dotted pairs of the form FUNCTIONSYMBOL, which is the name
243 of a function you would like to replace, and REPLACEMENTFUNCTION,
244 which is a function you can call instead. Not all functions can be
245 replaced this way. Replaceable functions must provide that
246 functionality individually.")
248 (defcustom speedbar-mode-specific-contents-flag t
249 "*Non-nil means speedbar will show special mode contents.
250 This permits some modes to create customized contents for the speedbar
255 (defcustom speedbar-query-confirmation-method
'all
256 "*Query control for file operations.
257 The 'always flag means to always query before file operations.
258 The 'none-but-delete flag means to not query before any file
259 operations, except before a file deletion."
261 :type
'(radio (const :tag
"Always Query before some file operations."
263 (const :tag
"Never Query before file operations, except for deletions."
265 ;;;; (const :tag "Never Every Query."
269 (defvar speedbar-special-mode-expansion-list nil
270 "Default function list for creating specialized button lists.
271 This list is set by modes that wish to have special speedbar displays.
272 The list is of function names. Each function is called with one
273 parameter BUFFER, the originating buffer. The current buffer is the
276 (defvar speedbar-special-mode-key-map nil
277 "Default keymap used when identifying a specialized display mode.
278 This keymap is local to each buffer that wants to define special keybindings
279 effective when its display is shown.")
281 (defcustom speedbar-before-visiting-file-hook
'(push-mark)
282 "*Hooks run before speedbar visits a file in the selected frame.
283 The default buffer is the buffer in the selected window in the attached frame."
287 (defcustom speedbar-visiting-file-hook nil
288 "*Hooks run when speedbar visits a file in the selected frame."
292 (defcustom speedbar-before-visiting-tag-hook
'(push-mark)
293 "*Hooks run before speedbar visits a tag in the selected frame.
294 The default buffer is the buffer in the selected window in the attached frame."
298 (defcustom speedbar-visiting-tag-hook
'(speedbar-highlight-one-tag-line)
299 "*Hooks run when speedbar visits a tag in the selected frame."
302 :options
'(speedbar-highlight-one-tag-line
303 speedbar-recenter-to-top
307 (defcustom speedbar-load-hook nil
308 "*Hooks run when speedbar is loaded."
312 (defcustom speedbar-reconfigure-keymaps-hook nil
313 "*Hooks run when the keymaps are regenerated."
317 (defcustom speedbar-show-unknown-files nil
318 "*Non-nil show files we can't expand with a ? in the expand button.
319 A nil value means don't show the file in the list."
323 ;;; EVENTUALLY REMOVE THESE
325 ;; When I moved to a repeating timer, I had the horrible missfortune
326 ;; of loosing the ability for adaptive speed choice. This update
327 ;; speed currently causes long delays when it should have been turned off.
328 (defvar speedbar-update-speed dframe-update-speed
329 "*Obsoleted variable. Use `dframe-update-speed'.")
331 (defvar speedbar-navigating-speed dframe-update-speed
332 "*Obsoleted variable. Use `dframe-update-speed'.")
335 (defcustom speedbar-frame-parameters
'((minibuffer . nil
)
343 "*Parameters to use when creating the speedbar frame in Emacs.
344 Any parameter supported by a frame may be added. The parameter `height'
345 will be initialized to the height of the frame speedbar is
346 attached to and added to this list before the new frame is initialized."
348 :type
'(repeat (cons :format
"%v"
349 (symbol :tag
"Parameter")
350 (sexp :tag
"Value"))))
352 ;; These values by Hrvoje Niksic <hniksic@srce.hr>
353 (defcustom speedbar-frame-plist
354 '(minibuffer nil width
20 border-width
0
355 internal-border-width
0 unsplittable t
356 default-toolbar-visible-p nil has-modeline-p nil
357 menubar-visible-p nil
358 default-gutter-visible-p nil
360 "*Parameters to use when creating the speedbar frame in XEmacs.
361 Parameters not listed here which will be added automatically are
362 `height' which will be initialized to the height of the frame speedbar
365 :type
'(repeat (group :inline t
366 (symbol :tag
"Property")
367 (sexp :tag
"Value"))))
369 (defcustom speedbar-use-imenu-flag
(fboundp 'imenu
)
370 "*Non-nil means use imenu for file parsing. nil to use etags.
371 XEmacs prior to 20.4 doesn't support imenu, therefore the default is to
372 use etags instead. Etags support is not as robust as imenu support."
373 :tag
"Use Imenu for tags"
377 (defvar speedbar-dynamic-tags-function-list
378 '((speedbar-fetch-dynamic-imenu . speedbar-insert-imenu-list
)
379 (speedbar-fetch-dynamic-etags . speedbar-insert-etags-list
))
380 "Set to a list of functions which will return and insert a list of tags.
381 Each element is of the form ( FETCH . INSERT ) where FETCH
382 is a function which takes one parameter (the file to tag) and returns a
383 list of tags. The tag list can be of any form as long as the
384 corresponding insert method can handle it. If it returns t, then an
385 error occurred, and the next fetch routine is tried.
386 INSERT is a function which takes an INDENTation level, and a LIST of
387 tags to insert. It will then create the speedbar buttons.")
389 (defcustom speedbar-use-tool-tips-flag
(and (not (featurep 'xemacs
))
390 (>= emacs-major-version
21))
391 "*Non-nil means to use tool tips if they are avaialble.
392 When tooltips are not available, mouse-tracking and minibuffer
393 display is used instead."
397 (defcustom speedbar-track-mouse-flag
(not speedbar-use-tool-tips-flag
)
398 "*Non-nil means to display info about the line under the mouse."
402 (defcustom speedbar-default-position
'left-right
403 "*Default position of the speedbar frame.
404 Possible values are 'left, 'right or 'left-right.
405 If value is 'left-right, the most suitable location is
406 determined automatically."
408 :type
'(radio (const :tag
"Automatic" left-right
)
409 (const :tag
"Left" left
)
410 (const :tag
"Right" right
)))
412 (defcustom speedbar-sort-tags nil
413 "*If non-nil, sort tags in the speedbar display. *Obsolete*.
414 Use `semantic-tag-hierarchy-method' instead."
418 (defcustom speedbar-tag-hierarchy-method
419 '(speedbar-prefix-group-tag-hierarchy
420 speedbar-trim-words-tag-hierarchy
)
421 "*List of hooks which speedbar will use to organize tags into groups.
422 Groups are defined as expandable meta-tags. Imenu supports
423 such things in some languages, such as separating variables from
424 functions. Each hook takes one argument LST, and may destructively
425 create a new list of the same form. LST is a list of elements of the
428 where each ELT is of the form
429 (TAG-NAME-STRING . NUMBER-OR-MARKER)
431 (GROUP-NAME-STRING ELT1 ELT2... ELTn)"
434 :options
'(speedbar-prefix-group-tag-hierarchy
435 speedbar-trim-words-tag-hierarchy
436 speedbar-simple-group-tag-hierarchy
437 speedbar-sort-tag-hierarchy
)
440 (defcustom speedbar-tag-group-name-minimum-length
4
441 "*The minimum length of a prefix group name before expanding.
442 Thus, if the `speedbar-tag-hierarchy-method' includes `prefix-group'
443 and one such groups common characters is less than this number of
444 characters, then the group name will be changed to the form of:
448 This way we won't get silly looking listings."
452 (defcustom speedbar-tag-split-minimum-length
20
453 "*Minimum length before we stop trying to create sub-lists in tags.
454 This is used by all tag-hierarchy methods that break large lists into
459 (defcustom speedbar-tag-regroup-maximum-length
10
460 "*Maximum length of submenus that are regrouped.
461 If the regrouping option is used, then if two or more short subgroups
462 are next to each other, then they are combined until this number of
467 (defcustom speedbar-directory-button-trim-method
'span
468 "*Indicates how the directory button will be displayed.
470 'span - span large directories over multiple lines.
471 'trim - trim large directories to only show the last few.
474 :type
'(radio (const :tag
"Span large directories over mutiple lines."
476 (const :tag
"Trim large directories to only show the last few."
478 (const :tag
"No trimming." nil
)))
480 (defcustom speedbar-smart-directory-expand-flag t
481 "*Non-nil means speedbar should use smart expansion.
482 Smart expansion only affects when speedbar wants to display a
483 directory for a file in the attached frame. When smart expansion is
484 enabled, new directories which are children of a displayed directory
485 are expanded in the current framework. If nil, then the current
486 hierarchy would be replaced with the new directory."
490 (defcustom speedbar-indentation-width
1
491 "*When sub-nodes are expanded, the number of spaces used for indentation."
495 (defcustom speedbar-hide-button-brackets-flag nil
496 "*Non-nil means speedbar will hide the brackets around the + or -."
500 (defcustom speedbar-before-popup-hook nil
501 "*Hooks called before popping up the speedbar frame."
505 (defcustom speedbar-after-create-hook
'(speedbar-frame-reposition-smartly)
506 "*Hooks called after popping up the speedbar frame."
510 (defcustom speedbar-before-delete-hook nil
511 "*Hooks called before deleting the speedbar frame."
515 (defcustom speedbar-mode-hook nil
516 "*Hooks called after creating a speedbar buffer."
520 (defcustom speedbar-timer-hook nil
521 "*Hooks called after running the speedbar timer function."
525 (defcustom speedbar-verbosity-level
1
526 "*Verbosity level of the speedbar. 0 means say nothing.
527 1 means medium level verbosity. 2 and higher are higher levels of
532 (defvar speedbar-indicator-separator
" "
533 "String separating file text from indicator characters.")
535 (defcustom speedbar-vc-do-check t
536 "*Non-nil check all files in speedbar to see if they have been checked out.
537 Any file checked out is marked with `speedbar-vc-indicator'."
541 (defvar speedbar-vc-indicator
"*"
542 "Text used to mark files which are currently checked out.
543 Other version control systems can be added by examining the function
544 `speedbar-vc-directory-enable-hook' and `speedbar-vc-in-control-hook'.")
546 (defcustom speedbar-vc-directory-enable-hook nil
547 "*Return non-nil if the current directory should be checked for Version Control.
548 Functions in this hook must accept one parameter which is the directory
553 (defcustom speedbar-vc-in-control-hook nil
554 "*Return non-nil if the specified file is under Version Control.
555 Functions in this hook must accept two parameters. The DIRECTORY of the
556 current file, and the FILENAME of the file being checked."
560 (defvar speedbar-vc-to-do-point nil
561 "Local variable maintaining the current version control check position.")
563 (defcustom speedbar-obj-do-check t
564 "*Non-nil check all files in speedbar to see if they have an object file.
565 Any file checked out is marked with `speedbar-obj-indicator', and the
566 marking is based on `speedbar-obj-alist'"
570 (defvar speedbar-obj-to-do-point nil
571 "Local variable maintaining the current version control check position.")
573 (defvar speedbar-obj-indicator
'("#" .
"!")
574 "Text used to mark files that have a corresponding hidden object file.
575 The car is for an up-to-date object. The cdr is for an out of date object.
576 The expression `speedbar-obj-alist' defines who gets tagged.")
578 (defvar speedbar-obj-alist
579 '(("\\.\\([cpC]\\|cpp\\|cc\\|cxx\\)$" .
".o")
581 ("\\.java$" .
".class")
582 ("\\.f\\(or\\|90\\|77\\)?$" .
".o")
584 ("\\.texi$" .
".info"))
585 "Alist of file extensions, and their corresponding object file type.")
587 (defvar speedbar-ro-to-do-point nil
588 "Local variable maintaining the current read only check position.")
590 (defvar speedbar-object-read-only-indicator
"%"
591 "Indicator to append onto a line if that item is Read Only.")
593 ;; Note: Look for addition place to add indicator lists that
594 ;; use skip-chars instead of a regular expression.
595 (defvar speedbar-indicator-regex
596 (concat (regexp-quote speedbar-indicator-separator
)
598 (regexp-quote speedbar-vc-indicator
)
600 (regexp-quote (car speedbar-obj-indicator
))
602 (regexp-quote (cdr speedbar-obj-indicator
))
604 (regexp-quote speedbar-object-read-only-indicator
)
606 "Regular expression used when identifying files.
607 Permits stripping of indicator characters from a line.")
609 (defcustom speedbar-scanner-reset-hook nil
610 "*Hook called whenever generic scanners are reset.
611 Set this to implement your own scanning / rescan safe functions with
616 (defvar speedbar-ignored-modes
'(fundamental-mode)
617 "*List of major modes which speedbar will not switch directories for.")
619 (defun speedbar-extension-list-to-regex (extlist)
620 "Takes EXTLIST, a list of extensions and transforms it into regexp.
621 All the preceding `.' are stripped for an optimized expression starting
622 with `.' followed by extensions, followed by full-filenames."
623 (let ((regex1 nil
) (regex2 nil
))
625 (if (= (string-to-char (car extlist
)) ?.
)
626 (setq regex1
(concat regex1
(if regex1
"\\|" "")
627 (substring (car extlist
) 1)))
628 (setq regex2
(concat regex2
(if regex2
"\\|" "") (car extlist
))))
629 (setq extlist
(cdr extlist
)))
630 ;; concat all the sub-exressions together, making sure all types
631 ;; of parts exist during concatination.
633 (if regex1
(concat "\\(\\.\\(" regex1
"\\)\\)") "")
634 (if (and regex1 regex2
) "\\|" "")
635 (if regex2
(concat "\\(" regex2
"\\)") "")
638 (defvar speedbar-ignored-directory-regexp nil
639 "Regular expression matching directorys speedbar will not switch to.
640 Created from `speedbar-ignored-directory-expressions' with the function
641 `speedbar-extension-list-to-regex' (A misnamed function in this case.)
642 Use the function `speedbar-add-ignored-directory-regexp', or customize the
643 variable `speedbar-ignored-directory-expressions' to modify this variable.")
645 (defcustom speedbar-ignored-directory-expressions
646 '("[/\\]logs?[/\\]\\'")
647 "*List of regular expressions matching directories speedbar will ignore.
648 They should included directorys to directories which are notoriously very
649 large and take a long time to load in. Use the function
650 `speedbar-add-ignored-directory-regexp' to add new items to this list after
651 speedbar is loaded. You may place anything you like in this list
652 before speedbar has been loaded."
654 :type
'(repeat (regexp :tag
"Directory Regexp"))
655 :set
(lambda (sym val
)
656 (setq speedbar-ignored-directory-expressions val
657 speedbar-ignored-directory-regexp
658 (speedbar-extension-list-to-regex val
))))
660 (defcustom speedbar-directory-unshown-regexp
"^\\(CVS\\|RCS\\|SCCS\\|\\..*\\)\\'"
661 "*Regular expression matching directories not to show in speedbar.
662 They should include commonly existing directories which are not
663 useful, such as version control."
667 (defvar speedbar-file-unshown-regexp
668 (let ((nstr "") (noext completion-ignored-extensions
))
670 (setq nstr
(concat nstr
(regexp-quote (car noext
)) "\\'"
671 (if (cdr noext
) "\\|" ""))
673 ;; backup refdir lockfile
674 (concat nstr
"\\|#[^#]+#$\\|\\.\\.?\\'\\|\\.#"))
675 "*Regexp matching files we don't want displayed in a speedbar buffer.
676 It is generated from the variable `completion-ignored-extensions'")
678 (defvar speedbar-file-regexp nil
679 "Regular expression matching files we know how to expand.
680 Created from `speedbar-supported-extension-expressions' with the
681 function `speedbar-extension-list-to-regex'")
683 ;; this is dangerous to customize, because the defaults will probably
684 ;; change in the future.
685 (defcustom speedbar-supported-extension-expressions
686 (append '(".[ch]\\(\\+\\+\\|pp\\|c\\|h\\|xx\\)?" ".tex\\(i\\(nfo\\)?\\)?"
687 ".el" ".emacs" ".l" ".lsp" ".p" ".java" ".f\\(90\\|77\\|or\\)?")
688 (if speedbar-use-imenu-flag
689 '(".ada" ".p[lm]" ".tcl" ".m" ".scm" ".pm" ".py" ".g"
690 ;; html is not supported by default, but an imenu tags package
691 ;; is available. Also, html files are nice to be able to see.
693 ".ma?k" "[Mm]akefile\\(\\.in\\)?")))
694 "*List of regular expressions which will match files supported by tagging.
695 Do not prefix the `.' char with a double \\ to quote it, as the period
696 will be stripped by a simplified optimizer when compiled into a
697 singular expression. This variable will be turned into
698 `speedbar-file-regexp' for use with speedbar. You should use the
699 function `speedbar-add-supported-extension' to add a new extension at
700 runtime, or use the configuration dialog to set it in your .emacs
702 If you add an extension to this list, and it does not appear, you may
703 need to also modify `completion-ignored-extension' which will also help
706 :type
'(repeat (regexp :tag
"Extension Regexp"))
707 :set
(lambda (sym val
)
708 (set 'speedbar-supported-extension-expressions val
)
709 (set 'speedbar-file-regexp
(speedbar-extension-list-to-regex val
))))
711 (setq speedbar-file-regexp
712 (speedbar-extension-list-to-regex speedbar-supported-extension-expressions
))
714 (defun speedbar-add-supported-extension (extension)
715 "Add EXTENSION as a new supported extension for speedbar tagging.
716 This should start with a `.' if it is not a complete file name, and
717 the dot should NOT be quoted in with \\. Other regular expression
718 matchers are allowed however. EXTENSION may be a single string or a
720 (interactive "sExtension: ")
721 (if (not (listp extension
)) (setq extension
(list extension
)))
723 (if (member (car extension
) speedbar-supported-extension-expressions
)
725 (setq speedbar-supported-extension-expressions
726 (cons (car extension
) speedbar-supported-extension-expressions
)))
727 (setq extension
(cdr extension
)))
728 (setq speedbar-file-regexp
(speedbar-extension-list-to-regex
729 speedbar-supported-extension-expressions
)))
731 (defun speedbar-add-ignored-directory-regexp (directory-expression)
732 "Add DIRECTORY-EXPRESSION as a new ignored directory for speedbar tracking.
733 This function will modify `speedbar-ignored-directory-regexp' and add
734 DIRECTORY-EXPRESSION to `speedbar-ignored-directory-expressions'."
735 (interactive "sDirectory regex: ")
736 (if (not (listp directory-expression
))
737 (setq directory-expression
(list directory-expression
)))
738 (while directory-expression
739 (if (member (car directory-expression
) speedbar-ignored-directory-expressions
)
741 (setq speedbar-ignored-directory-expressions
742 (cons (car directory-expression
) speedbar-ignored-directory-expressions
)))
743 (setq directory-expression
(cdr directory-expression
)))
744 (setq speedbar-ignored-directory-regexp
(speedbar-extension-list-to-regex
745 speedbar-ignored-directory-expressions
)))
747 ;; If we don't have custom, then we set it here by hand.
748 (if (not (fboundp 'custom-declare-variable
))
749 (setq speedbar-file-regexp
(speedbar-extension-list-to-regex
750 speedbar-supported-extension-expressions
)
751 speedbar-ignored-directory-regexp
(speedbar-extension-list-to-regex
752 speedbar-ignored-directory-expressions
)))
754 (defvar speedbar-update-flag dframe-have-timer-flag
755 "*Non-nil means to automatically update the display.
756 When this is nil then speedbar will not follow the attached frame's directory.
757 When speedbar is active, use:
759 \\<speedbar-key-map> `\\[speedbar-toggle-updates]'
761 to toggle this value.")
763 (defvar speedbar-update-flag-disable nil
764 "Permanently disable changing of the update flag.")
766 (defvar speedbar-syntax-table nil
767 "Syntax-table used on the speedbar.")
769 (if speedbar-syntax-table
771 (setq speedbar-syntax-table
(make-syntax-table))
772 ;; turn off paren matching around here.
773 (modify-syntax-entry ?
\' " " speedbar-syntax-table
)
774 (modify-syntax-entry ?
\" " " speedbar-syntax-table
)
775 (modify-syntax-entry ?
( " " speedbar-syntax-table
)
776 (modify-syntax-entry ?
) " " speedbar-syntax-table
)
777 (modify-syntax-entry ?
{ " " speedbar-syntax-table
)
778 (modify-syntax-entry ?
} " " speedbar-syntax-table
)
779 (modify-syntax-entry ?
[ " " speedbar-syntax-table
)
780 (modify-syntax-entry ?
] " " speedbar-syntax-table
))
782 (defvar speedbar-key-map nil
783 "Keymap used in speedbar buffer.")
787 (setq speedbar-key-map
(make-keymap))
788 (suppress-keymap speedbar-key-map t
)
791 (define-key speedbar-key-map
"t" 'speedbar-toggle-updates
)
792 (define-key speedbar-key-map
"g" 'speedbar-refresh
)
795 (define-key speedbar-key-map
"n" 'speedbar-next
)
796 (define-key speedbar-key-map
"p" 'speedbar-prev
)
797 (define-key speedbar-key-map
"\M-n" 'speedbar-restricted-next
)
798 (define-key speedbar-key-map
"\M-p" 'speedbar-restricted-prev
)
799 (define-key speedbar-key-map
"\C-\M-n" 'speedbar-forward-list
)
800 (define-key speedbar-key-map
"\C-\M-p" 'speedbar-backward-list
)
801 ;; These commands never seemed useful.
802 ;; (define-key speedbar-key-map " " 'speedbar-scroll-up)
803 ;; (define-key speedbar-key-map [delete] 'speedbar-scroll-down)
805 ;; Short cuts I happen to find useful
806 (define-key speedbar-key-map
"r"
807 (lambda () (interactive)
808 (speedbar-change-initial-expansion-list
809 speedbar-previously-used-expansion-list-name
)))
810 (define-key speedbar-key-map
"b"
811 (lambda () (interactive)
812 (speedbar-change-initial-expansion-list "quick buffers")))
813 (define-key speedbar-key-map
"f"
814 (lambda () (interactive)
815 (speedbar-change-initial-expansion-list "files")))
817 (dframe-update-keymap speedbar-key-map
)
820 (defun speedbar-make-specialized-keymap ()
821 "Create a keymap for use with a speedbar major or minor display mode.
822 This basically creates a sparse keymap, and makes its parent be
824 (let ((k (make-sparse-keymap)))
825 (set-keymap-parent k speedbar-key-map
)
828 (defvar speedbar-file-key-map nil
829 "Keymap used in speedbar buffer while files are displayed.")
831 (if speedbar-file-key-map
833 (setq speedbar-file-key-map
(speedbar-make-specialized-keymap))
835 ;; Basic tree features
836 (define-key speedbar-file-key-map
"e" 'speedbar-edit-line
)
837 (define-key speedbar-file-key-map
"\C-m" 'speedbar-edit-line
)
838 (define-key speedbar-file-key-map
"+" 'speedbar-expand-line
)
839 (define-key speedbar-file-key-map
"=" 'speedbar-expand-line
)
840 (define-key speedbar-file-key-map
"-" 'speedbar-contract-line
)
842 (define-key speedbar-file-key-map
"[" 'speedbar-expand-line-descendants
)
843 (define-key speedbar-file-key-map
"]" 'speedbar-contract-line-descendants
)
845 (define-key speedbar-file-key-map
" " 'speedbar-toggle-line-expansion
)
847 ;; file based commands
848 (define-key speedbar-file-key-map
"U" 'speedbar-up-directory
)
849 (define-key speedbar-file-key-map
"I" 'speedbar-item-info
)
850 (define-key speedbar-file-key-map
"B" 'speedbar-item-byte-compile
)
851 (define-key speedbar-file-key-map
"L" 'speedbar-item-load
)
852 (define-key speedbar-file-key-map
"C" 'speedbar-item-copy
)
853 (define-key speedbar-file-key-map
"D" 'speedbar-item-delete
)
854 (define-key speedbar-file-key-map
"O" 'speedbar-item-object-delete
)
855 (define-key speedbar-file-key-map
"R" 'speedbar-item-rename
)
856 (define-key speedbar-file-key-map
"M" 'speedbar-create-directory
)
859 (defvar speedbar-easymenu-definition-base
862 ["Update" speedbar-refresh t
]
863 ["Auto Update" speedbar-toggle-updates
864 :active
(not speedbar-update-flag-disable
)
865 :style toggle
:selected speedbar-update-flag
])
866 (if (and (or (fboundp 'defimage
)
867 (fboundp 'make-image-specifier
))
868 (if (fboundp 'display-graphic-p
)
872 ["Use Images" speedbar-toggle-images
873 :style toggle
:selected speedbar-use-images
]))
875 "Base part of the speedbar menu.")
877 (defvar speedbar-easymenu-definition-special
878 '(["Edit Item On Line" speedbar-edit-line t
]
879 ["Show All Files" speedbar-toggle-show-all-files
880 :style toggle
:selected speedbar-show-unknown-files
]
881 ["Expand File Tags" speedbar-expand-line
882 (save-excursion (beginning-of-line)
883 (looking-at "[0-9]+: *.\\+. "))]
884 ["Flush Cache & Expand" speedbar-flush-expand-line
885 (save-excursion (beginning-of-line)
886 (looking-at "[0-9]+: *.\\+. "))]
887 ["Expand All Descendants" speedbar-expand-line-descendants
888 (save-excursion (beginning-of-line)
889 (looking-at "[0-9]+: *.\\+. ")) ]
890 ["Contract File Tags" speedbar-contract-line
891 (save-excursion (beginning-of-line)
892 (looking-at "[0-9]+: *.-. "))]
893 ; ["Sort Tags" speedbar-toggle-sorting
894 ; :style toggle :selected speedbar-sort-tags]
896 ["File/Tag Information" speedbar-item-info t
]
897 ["Load Lisp File" speedbar-item-load
900 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))]
901 ["Byte Compile File" speedbar-item-byte-compile
904 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))]
905 ["Copy File" speedbar-item-copy
906 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *\\["))]
907 ["Rename File" speedbar-item-rename
908 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))]
909 ["Create Directory" speedbar-create-directory
910 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))]
911 ["Delete File" speedbar-item-delete
912 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))]
913 ["Delete Object" speedbar-item-object-delete
914 (save-excursion (beginning-of-line)
915 (looking-at "[0-9]+: *\\[[+-]\\] [^ \n]+ \\*?[!#]$"))]
917 "Additional menu items while in file-mode.")
919 (defvar speedbar-easymenu-definition-trailer
921 (if (and (featurep 'custom
) (fboundp 'custom-declare-variable
))
922 (list ["Customize..." speedbar-customize t
]))
924 ["Close" dframe-close-frame t
]
925 ["Quit" delete-frame t
] ))
926 "Menu items appearing at the end of the speedbar menu.")
928 (defvar speedbar-desired-buffer nil
929 "Non-nil when speedbar is showing buttons specific to a special mode.
930 In this case it is the originating buffer.")
931 (defvar speedbar-buffer nil
932 "The buffer displaying the speedbar.")
933 (defvar speedbar-frame nil
934 "The frame displaying speedbar.")
935 (defvar speedbar-cached-frame nil
936 "The frame that was last created, then removed from the display.")
937 (defvar speedbar-full-text-cache nil
938 "The last open directory is saved in its entirety for ultra-fast switching.")
940 (defvar speedbar-last-selected-file nil
941 "The last file which was selected in speedbar buffer.")
943 (defvar speedbar-shown-directories nil
944 "Maintain list of directories simultaneously open in the current speedbar.")
946 (defvar speedbar-directory-contents-alist nil
947 "An association list of directories and their contents.
948 Each sublist was returned by `speedbar-file-lists'. This list is
949 maintained to speed up the refresh rate when switching between
952 (defvar speedbar-power-click nil
953 "Never set this by hand. Value is t when S-mouse activity occurs.")
958 (defalias 'speedbar-make-overlay
959 (if (featurep 'xemacs
) 'make-extent
'make-overlay
))
961 (defalias 'speedbar-overlay-put
962 (if (featurep 'xemacs
) 'set-extent-property
'overlay-put
))
964 (defalias 'speedbar-delete-overlay
965 (if (featurep 'xemacs
) 'delete-extent
'delete-overlay
))
967 (defalias 'speedbar-mode-line-update
968 (if (featurep 'xemacs
) 'redraw-modeline
'force-mode-line-update
))
970 ;;; Mode definitions/ user commands
974 (defalias 'speedbar
'speedbar-frame-mode
)
976 (defun speedbar-frame-mode (&optional arg
)
977 "Enable or disable speedbar. Positive ARG means turn on, negative turn off.
978 A nil ARG means toggle. Once the speedbar frame is activated, a buffer in
979 `speedbar-mode' will be displayed. Currently, only one speedbar is
981 `speedbar-before-popup-hook' is called before popping up the speedbar frame.
982 `speedbar-before-delete-hook' is called before the frame is deleted."
984 ;; Get the buffer to play with
985 (if (not (buffer-live-p speedbar-buffer
))
987 (setq speedbar-buffer
(get-buffer-create " SPEEDBAR"))
988 (set-buffer speedbar-buffer
)
990 ;; Do the frame thing
991 (dframe-frame-mode arg
993 'speedbar-cached-frame
996 #'speedbar-frame-mode
997 (if (featurep 'xemacs
)
998 (append speedbar-frame-plist
999 ;; This is a hack to get speedbar to iconfiy
1000 ;; with the selected frame.
1001 (list 'parent
(selected-frame)))
1002 speedbar-frame-parameters
)
1003 speedbar-before-delete-hook
1004 speedbar-before-popup-hook
1005 speedbar-after-create-hook
)
1006 ;; Start up the timer
1007 (if (not speedbar-frame
)
1008 (speedbar-set-timer nil
)
1009 (speedbar-reconfigure-keymaps)
1010 (speedbar-update-contents)
1011 (speedbar-set-timer dframe-update-speed
)
1013 ;; Frame modifications
1014 (set (make-local-variable 'dframe-delete-frame-function
)
1015 'speedbar-handle-delete-frame
)
1017 (set (make-local-variable 'automatic-hscrolling
) nil
) ; Emacs 21
1018 ;; reset the selection variable
1019 (setq speedbar-last-selected-file nil
))
1021 (defun speedbar-frame-reposition-smartly ()
1022 "Reposition the speedbar frame to be next to the attached frame."
1023 (cond ((and (featurep 'xemacs
)
1024 (or (member 'left speedbar-frame-plist
)
1025 (member 'top speedbar-frame-plist
)))
1026 (dframe-reposition-frame
1028 (dframe-attached-frame speedbar-frame
)
1029 (cons (car (cdr (member 'left speedbar-frame-plist
)))
1030 (car (cdr (member 'top speedbar-frame-plist
)))))
1032 ((and (not (featurep 'xemacs
))
1033 (or (assoc 'left speedbar-frame-parameters
)
1034 (assoc 'top speedbar-frame-parameters
)))
1035 ;; if left/top were specified in the parameters, pass them
1036 ;; down to the reposition function
1037 (dframe-reposition-frame
1039 (dframe-attached-frame speedbar-frame
)
1040 (cons (cdr (assoc 'left speedbar-frame-parameters
))
1041 (cdr (assoc 'top speedbar-frame-parameters
))))
1044 (dframe-reposition-frame speedbar-frame
1045 (dframe-attached-frame speedbar-frame
)
1046 speedbar-default-position
))))
1048 (defsubst speedbar-current-frame
()
1049 "Return the frame to use for speedbar based on current context."
1050 (dframe-current-frame 'speedbar-frame
'speedbar-mode
))
1052 (defun speedbar-handle-delete-frame (e)
1053 "Handle a delete frame event E.
1054 If the deleted frame is the frame SPEEDBAR is attached to,
1055 we need to delete speedbar also."
1056 (when (and speedbar-frame
1057 (eq (car (car (cdr e
))) ;; frame to be deleted
1058 dframe-attached-frame
))
1059 (delete-frame speedbar-frame
)))
1062 (defun speedbar-get-focus ()
1063 "Change frame focus to or from the speedbar frame.
1064 If the selected frame is not speedbar, then speedbar frame is
1065 selected. If the speedbar frame is active, then select the attached frame."
1067 (speedbar-reset-scanners)
1068 (dframe-get-focus 'speedbar-frame
'speedbar-frame-mode
1069 (lambda () (let ((speedbar-update-flag t
))
1070 (speedbar-timer-fn)))))
1072 (defsubst speedbar-frame-width
()
1073 "Return the width of the speedbar frame in characters.
1074 Return nil if it doesn't exist."
1075 (frame-width speedbar-frame
))
1077 (defun speedbar-mode ()
1078 "Major mode for managing a display of directories and tags.
1079 \\<speedbar-key-map>
1080 The first line represents the default directory of the speedbar frame.
1081 Each directory segment is a button which jumps speedbar's default
1082 directory to that directory. Buttons are activated by clicking `\\[speedbar-click]'.
1083 In some situations using `\\[dframe-power-click]' is a `power click' which will
1084 rescan cached items, or pop up new frames.
1086 Each line starting with <+> represents a directory. Click on the <+>
1087 to insert the directory listing into the current tree. Click on the
1088 <-> to retract that list. Click on the directory name to go to that
1089 directory as the default.
1091 Each line starting with [+] is a file. If the variable
1092 `speedbar-show-unknown-files' is t, the lines starting with [?] are
1093 files which don't have imenu support, but are not expressly ignored.
1094 Files are completely ignored if they match `speedbar-file-unshown-regexp'
1095 which is generated from `completion-ignored-extensions'.
1097 Files with a `*' character after their name are files checked out of a
1098 version control system. (Currently only RCS is supported.) New
1099 version control systems can be added by examining the documentation
1100 for `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p'.
1102 Files with a `#' or `!' character after them are source files that
1103 have an object file associated with them. The `!' indicates that the
1104 files is out of date. You can control what source/object associations
1105 exist through the variable `speedbar-obj-alist'.
1107 Click on the [+] to display a list of tags from that file. Click on
1108 the [-] to retract the list. Click on the file name to edit the file
1109 in the attached frame.
1111 If you open tags, you might find a node starting with {+}, which is a
1112 category of tags. Click the {+} to expand the category. Jump-able
1113 tags start with >. Click the name of the tag to go to that position
1114 in the selected file.
1116 \\{speedbar-key-map}"
1119 (kill-all-local-variables)
1120 (setq major-mode
'speedbar-mode
)
1121 (setq mode-name
"Speedbar")
1122 (set-syntax-table speedbar-syntax-table
)
1123 (setq font-lock-keywords nil
) ;; no font-locking please
1124 (setq truncate-lines t
)
1125 (make-local-variable 'frame-title-format
)
1126 (setq frame-title-format
(concat "Speedbar " speedbar-version
))
1127 (setq case-fold-search nil
)
1128 (toggle-read-only 1)
1129 (speedbar-set-mode-line-format)
1130 ;; Add in our dframe hooks.
1131 (if speedbar-track-mouse-flag
1132 (setq dframe-track-mouse-function
#'speedbar-track-mouse
))
1133 (setq dframe-help-echo-function
#'speedbar-item-info
1134 dframe-mouse-click-function
#'speedbar-click
1135 dframe-mouse-position-function
#'speedbar-position-cursor-on-line
)
1136 (run-hooks 'speedbar-mode-hook
))
1139 (defmacro speedbar-message
(fmt &rest args
)
1140 "Like message, but for use in the speedbar frame.
1141 Argument FMT is the format string, and ARGS are the arguments for message."
1142 `(dframe-message ,fmt
,@args
))
1144 (defsubst speedbar-y-or-n-p
(prompt &optional deleting
)
1145 "Like `y-or-n-p', but for use in the speedbar frame.
1146 Argument PROMPT is the prompt to use.
1147 Optional argument DELETING means this is a query that will delete something.
1148 The variable `speedbar-query-confirmation-method' can cause this to
1149 return true without a query."
1150 (or (and (not deleting
)
1151 (eq speedbar-query-confirmation-method
'none-but-delete
))
1152 (dframe-y-or-n-p prompt
)))
1154 (defsubst speedbar-select-attached-frame
()
1155 "Select the frame attached to this speedbar."
1156 (dframe-select-attached-frame (speedbar-current-frame)))
1158 ;; Backwards compatibility
1159 (defalias 'speedbar-with-attached-buffer
'dframe-with-attached-buffer
)
1160 (defalias 'speedbar-maybee-jump-to-attached-frame
'dframe-maybee-jump-to-attached-frame
)
1162 (defun speedbar-set-mode-line-format ()
1163 "Set the format of the mode line based on the current speedbar environment.
1164 This gives visual indications of what is up. It EXPECTS the speedbar
1165 frame and window to be the currently active frame and window."
1166 (if (and (frame-live-p (speedbar-current-frame))
1167 (or (not (featurep 'xemacs
))
1169 (specifier-instance has-modeline-p
)))
1172 (set-buffer speedbar-buffer
)
1173 (let* ((w (or (speedbar-frame-width) 20))
1176 (p3 (if speedbar-update-flag
"#" "!"))
1177 (p35 (capitalize speedbar-initial-expansion-list-name
))
1178 (blank (- w
(length p1
) (length p3
) (length p5
) (length p35
)
1179 (if line-number-mode
5 1)))
1181 (make-string (/ blank
2) ?
)
1184 (make-string (+ (/ blank
2) (% blank
2)) ?
)
1187 (if line-number-mode
1188 (list (concat p1 p2 p3
" " p35
) '(line-number-mode " %3l")
1190 (list (concat p1 p2 p3 p4 p5
)))))
1191 (if (not (equal mode-line-format tf
))
1193 (setq mode-line-format tf
)
1194 (speedbar-mode-line-update)))))))
1196 (defvar speedbar-previous-menu nil
1197 "The menu before the last `speedbar-reconfigure-keymaps' was called.")
1199 (defun speedbar-reconfigure-keymaps ()
1200 "Reconfigure the menu-bar in a speedbar frame.
1201 Different menu items are displayed depending on the current display mode
1202 and the existence of packages."
1204 speedbar-easymenu-definition-base
1205 (if speedbar-shown-directories
1206 ;; file display mode version
1207 (speedbar-initial-menu)
1209 (dframe-select-attached-frame speedbar-frame
)
1210 (eval (nth 1 (assoc speedbar-initial-expansion-list-name
1211 speedbar-initial-expansion-mode-alist
)))))
1212 ;; Dynamic menu stuff
1214 (list (cons "Displays"
1215 (let ((displays nil
)
1216 (alist speedbar-initial-expansion-mode-alist
))
1221 (capitalize (car (car alist
)))
1223 'speedbar-change-initial-expansion-list
1227 `(string= ,(car (car alist
))
1228 speedbar-initial-expansion-list-name
)
1231 (setq alist
(cdr alist
)))
1234 speedbar-easymenu-definition-trailer
))
1235 (localmap (save-excursion
1236 (let ((cf (selected-frame)))
1238 (dframe-select-attached-frame speedbar-frame
)
1239 (if (local-variable-p
1240 'speedbar-special-mode-key-map
1242 speedbar-special-mode-key-map
)
1243 (select-frame cf
))))))
1245 (set-buffer speedbar-buffer
)
1246 (use-local-map (or localmap
1247 (speedbar-initial-keymap)
1248 ;; This creates a small keymap we can glom the
1249 ;; menu adjustments into.
1250 (speedbar-make-specialized-keymap)))
1251 ;; Delete the old menu if applicable.
1252 (if speedbar-previous-menu
(easy-menu-remove speedbar-previous-menu
))
1253 (setq speedbar-previous-menu md
)
1254 ;; Now add the new menu
1255 (if (not (featurep 'xemacs
))
1256 (easy-menu-define speedbar-menu-map
(current-local-map)
1258 (easy-menu-add md
(current-local-map))
1260 (if (fboundp 'set-buffer-menubar
)
1261 (set-buffer-menubar (list md
)))))
1263 (run-hooks 'speedbar-reconfigure-keymaps-hook
)))
1266 ;;; User Input stuff
1268 (defun speedbar-customize ()
1269 "Customize speedbar using the Custom package."
1271 (let ((sf (selected-frame)))
1272 (dframe-select-attached-frame speedbar-frame
)
1273 (customize-group 'speedbar
)
1275 (dframe-maybee-jump-to-attached-frame))
1277 (defun speedbar-track-mouse (event)
1278 "For motion EVENT, display info about the current line."
1279 (if (not speedbar-track-mouse-flag
)
1282 (save-window-excursion
1285 (mouse-set-point event
)
1286 (if (eq major-mode
'speedbar-mode
)
1287 ;; XEmacs may let us get in here in other mode buffers.
1288 (speedbar-item-info)))
1289 (t (speedbar-message nil
)))))))
1291 (defun speedbar-show-info-under-mouse ()
1292 "Call the info function for the line under the mouse.
1293 Optional EVENT is currently not used."
1294 (let ((pos (mouse-position))) ; we ignore event until I use it later.
1295 (if (equal (car pos
) speedbar-frame
)
1297 (save-window-excursion
1298 (apply 'set-mouse-position pos
)
1299 (speedbar-item-info))))))
1301 (defun speedbar-next (arg)
1302 "Move to the next ARGth line in a speedbar buffer."
1304 (forward-line (or arg
1))
1305 (speedbar-item-info)
1306 (speedbar-position-cursor-on-line))
1308 (defun speedbar-prev (arg)
1309 "Move to the previous ARGth line in a speedbar buffer."
1311 (speedbar-next (if arg
(- arg
) -
1)))
1313 (defun speedbar-restricted-move (arg)
1314 "Move to the next ARGth line in a speedbar buffer at the same depth.
1315 This means that movement is restricted to a subnode, and that siblings
1316 of intermediate nodes are skipped."
1317 (if (not (numberp arg
)) (signal 'wrong-type-argument
(list arg
'numberp
)))
1318 ;; First find the extent for which we are allowed to move.
1319 (let ((depth (save-excursion (beginning-of-line)
1320 (if (looking-at "[0-9]+:")
1321 (string-to-number (match-string 0))
1323 (crement (if (< arg
0) 1 -
1)) ; decrement or increment
1324 (lastmatch (point)))
1326 (forward-line (- crement
))
1327 (let ((subdepth (save-excursion (beginning-of-line)
1328 (if (looking-at "[0-9]+:")
1329 (string-to-number (match-string 0))
1331 (cond ((or (< subdepth depth
)
1332 (progn (end-of-line) (eobp))
1333 (progn (beginning-of-line) (bobp)))
1334 ;; We have reached the end of this block.
1335 (goto-char lastmatch
)
1337 (error "End of sub-list"))
1339 (setq lastmatch
(point)
1340 arg
(+ arg crement
))))))
1341 (speedbar-position-cursor-on-line)))
1343 (defun speedbar-restricted-next (arg)
1344 "Move to the next ARGth line in a speedbar buffer at the same depth.
1345 This means that movement is restricted to a subnode, and that siblings
1346 of intermediate nodes are skipped."
1348 (speedbar-restricted-move (or arg
1))
1349 (speedbar-item-info))
1351 (defun speedbar-restricted-prev (arg)
1352 "Move to the previous ARGth line in a speedbar buffer at the same depth.
1353 This means that movement is restricted to a subnode, and that siblings
1354 of intermediate nodes are skipped."
1356 (speedbar-restricted-move (if arg
(- arg
) -
1))
1357 (speedbar-item-info))
1359 (defun speedbar-navigate-list (arg)
1360 "Move across ARG groups of similarly typed items in speedbar.
1361 Stop on the first line of the next type of item, or on the last or first item
1362 if we reach a buffer boundary."
1365 (if (looking-at "[0-9]+: *[[<{][-+?][]>}] ")
1366 (let ((str (regexp-quote (match-string 0))))
1367 (while (looking-at str
)
1368 (speedbar-restricted-move arg
)
1369 (beginning-of-line))))
1370 (speedbar-position-cursor-on-line))
1372 (defun speedbar-forward-list ()
1373 "Move forward over the current list.
1374 A LIST in speedbar is a group of similarly typed items, such as directories,
1375 files, or the directory button."
1377 (speedbar-navigate-list 1)
1378 (speedbar-item-info))
1380 (defun speedbar-backward-list ()
1381 "Move backward over the current list.
1382 A LIST in speedbar is a group of similarly typed items, such as directories,
1383 files, or the directory button."
1385 (speedbar-navigate-list -
1)
1386 (speedbar-item-info))
1388 (defun speedbar-scroll-up (&optional arg
)
1389 "Page down one screen-full of the speedbar, or ARG lines."
1392 (speedbar-position-cursor-on-line))
1394 (defun speedbar-scroll-down (&optional arg
)
1395 "Page up one screen-full of the speedbar, or ARG lines."
1398 (speedbar-position-cursor-on-line))
1400 (defun speedbar-up-directory ()
1401 "Keyboard accelerator for moving the default directory up one.
1402 Assumes that the current buffer is the speedbar buffer."
1404 (setq default-directory
(expand-file-name (concat default-directory
"../")))
1405 (speedbar-update-contents))
1407 ;;; Speedbar file activity (aka creeping featurism)
1409 (defun speedbar-refresh (&optional arg
)
1410 "Refresh the current speedbar display, disposing of any cached data.
1411 Argument ARG represents to force a refresh past any caches that may exist."
1413 (let ((dl speedbar-shown-directories
)
1414 (dframe-power-click arg
)
1416 ;; We need to hack something so this works in detached frames.
1418 (adelete 'speedbar-directory-contents-alist
(car dl
))
1420 (if (<= 1 speedbar-verbosity-level
)
1421 (speedbar-message "Refreshing speedbar..."))
1422 (speedbar-update-contents)
1423 (speedbar-stealthy-updates)
1424 ;; Reset the timer in case it got really hosed for some reason...
1425 (speedbar-set-timer dframe-update-speed
)
1426 (if (<= 1 speedbar-verbosity-level
)
1427 (speedbar-message "Refreshing speedbar...done"))))
1429 (defun speedbar-item-load ()
1430 "Load the item under the cursor or mouse if it is a Lisp file."
1432 (let ((f (speedbar-line-file)))
1433 (if (and (file-exists-p f
) (string-match "\\.el\\'" f
))
1434 (if (and (file-exists-p (concat f
"c"))
1435 (speedbar-y-or-n-p (format "Load %sc? " f
)))
1436 ;; If the compiled version exists, load that instead...
1437 (load-file (concat f
"c"))
1439 (error "Not a loadable file"))))
1441 (defun speedbar-item-byte-compile ()
1442 "Byte compile the item under the cursor or mouse if it is a Lisp file."
1444 (let ((f (speedbar-line-file))
1445 (sf (selected-frame)))
1446 (if (and (file-exists-p f
) (string-match "\\.el\\'" f
))
1448 (dframe-select-attached-frame speedbar-frame
)
1449 (byte-compile-file f nil
)
1451 (speedbar-reset-scanners)))
1454 (defun speedbar-mouse-item-info (event)
1455 "Provide information about what the user clicked on.
1456 This should be bound to a mouse EVENT."
1458 (mouse-set-point event
)
1459 (speedbar-item-info))
1461 (defun speedbar-generic-item-info ()
1462 "Attempt to derive, and then display information about this line item.
1463 File style information is displayed with `speedbar-item-info'."
1466 ;; Skip invisible number info.
1467 (if (looking-at "\\([0-9]+\\):") (goto-char (match-end 0)))
1468 ;; Skip items in "folder" type text characters.
1469 (if (looking-at "\\s-*[[<({].[]>)}] ") (goto-char (match-end 0)))
1471 (speedbar-message "Text: %s" (buffer-substring-no-properties
1472 (point) (progn (end-of-line) (point))))))
1474 (defun speedbar-item-info ()
1475 "Display info in the mini-buffer about the button the mouse is over.
1476 This function can be replaced in `speedbar-mode-functions-list' as
1477 `speedbar-item-info'."
1479 (let (message-log-max)
1480 (funcall (or (speedbar-fetch-replacement-function 'speedbar-item-info
)
1481 'speedbar-generic-item-info
))))
1483 (defun speedbar-item-info-file-helper (&optional filename
)
1484 "Display info about a file that is on the current line.
1485 Return nil if not applicable. If FILENAME, then use that
1486 instead of reading it from the speedbar buffer."
1487 (let* ((item (or filename
(speedbar-line-file)))
1488 (attr (if item
(file-attributes item
) nil
)))
1489 (if (and item attr
) (speedbar-message "%s %-6d %s" (nth 8 attr
)
1493 (defun speedbar-item-info-tag-helper ()
1494 "Display info about a tag that is on the current line.
1495 Return nil if not applicable."
1498 (if (re-search-forward " [-+=]?> \\([^\n]+\\)"
1499 (save-excursion(end-of-line)(point)) t
)
1500 (let* ((tag (match-string 1))
1501 (attr (speedbar-line-token))
1503 (semantic-tagged (if (fboundp 'semantic-tag-p
)
1504 (semantic-tag-p attr
))))
1508 (when (and (semantic-tag-overlay attr
)
1509 (semantic-tag-buffer attr
))
1510 (set-buffer (semantic-tag-buffer attr
)))
1512 (funcall semantic-sb-info-format-tag-function attr
)
1514 (looking-at "\\([0-9]+\\):")
1515 (setq item
(file-name-nondirectory (speedbar-line-directory)))
1516 (speedbar-message "Tag: %s in %s" tag item
)))
1517 (if (re-search-forward "{[+-]} \\([^\n]+\\)$"
1518 (save-excursion(end-of-line)(point)) t
)
1519 (speedbar-message "Group of tags \"%s\"" (match-string 1))
1520 (if (re-search-forward " [+-]?[()|@] \\([^\n]+\\)$" nil t
)
1521 (let* ((detailtext (match-string 1))
1522 (detail (or (speedbar-line-token) detailtext
))
1523 (parent (save-excursion
1525 (let ((dep (if (looking-at "[0-9]+:")
1526 (1- (string-to-number (match-string 0)))
1528 (re-search-backward (concat "^"
1532 (if (looking-at "[0-9]+: +[-+=>]> \\([^\n]+\\)$")
1533 (speedbar-line-token)
1535 (if (featurep 'semantic
)
1537 (if (semantic-tag-p detail
)
1539 (funcall semantic-sb-info-format-tag-function detail parent
))
1541 (speedbar-message "Detail: %s of tag %s" detail
1542 (if (semantic-tag-p parent
)
1543 (semantic-format-tag-name parent nil t
)
1545 (speedbar-message "Detail: %s" detail
))))
1546 ;; Not using `semantic':
1548 (speedbar-message "Detail: %s of tag %s" detail parent
)
1549 (speedbar-message "Detail: %s" detail
))))
1552 (defun speedbar-files-item-info ()
1553 "Display info in the mini-buffer about the button the mouse is over."
1554 (if (not speedbar-shown-directories
)
1555 (speedbar-generic-item-info)
1556 (or (speedbar-item-info-file-helper)
1557 (speedbar-item-info-tag-helper)
1558 (speedbar-generic-item-info))))
1560 (defun speedbar-item-copy ()
1561 "Copy the item under the cursor.
1562 Files can be copied to new names or places."
1564 (let ((f (speedbar-line-file)))
1565 (if (not f
) (error "Not a file"))
1566 (if (file-directory-p f
)
1567 (error "Cannot copy directory")
1568 (let* ((rt (read-file-name (format "Copy %s to: "
1569 (file-name-nondirectory f
))
1570 (file-name-directory f
)))
1571 (refresh (member (expand-file-name (file-name-directory rt
))
1572 speedbar-shown-directories
)))
1573 ;; Create the right file name part
1574 (if (file-directory-p rt
)
1576 (concat (expand-file-name rt
)
1577 (if (string-match "[/\\]$" rt
) "" "/")
1578 (file-name-nondirectory f
))))
1579 (if (or (not (file-exists-p rt
))
1580 (speedbar-y-or-n-p (format "Overwrite %s with %s? " rt f
)
1583 (copy-file f rt t t
)
1584 ;; refresh display if the new place is currently displayed.
1588 (if (not (speedbar-goto-this-file rt
))
1589 (speedbar-goto-this-file f
))))
1592 (defun speedbar-item-rename ()
1593 "Rename the item under the cursor or mouse.
1594 Files can be renamed to new names or moved to new directories."
1596 (let ((f (speedbar-line-file)))
1598 (let* ((rt (read-file-name (format "Rename %s to: "
1599 (file-name-nondirectory f
))
1600 (file-name-directory f
)))
1601 (refresh (member (expand-file-name (file-name-directory rt
))
1602 speedbar-shown-directories
)))
1603 ;; Create the right file name part
1604 (if (file-directory-p rt
)
1606 (concat (expand-file-name rt
)
1607 (if (string-match "[/\\]\\'" rt
) "" "/")
1608 (file-name-nondirectory f
))))
1609 (if (or (not (file-exists-p rt
))
1610 (speedbar-y-or-n-p (format "Overwrite %s with %s? " rt f
)
1613 (rename-file f rt t
)
1614 ;; refresh display if the new place is currently displayed.
1618 (speedbar-goto-this-file rt
)
1620 (error "Not a file"))))
1622 (defun speedbar-create-directory ()
1623 "Create a directory in speedbar."
1625 (let ((f (speedbar-line-file)))
1627 (let* ((basedir (file-name-directory f
))
1628 (nd (read-file-name "Create directory: "
1630 ;; Make the directory
1631 (make-directory nd t
)
1633 (speedbar-goto-this-file nd
)
1635 (error "Not a file"))))
1637 (defun speedbar-item-delete ()
1638 "Delete the item under the cursor. Files are removed from disk."
1640 (let ((f (speedbar-line-file)))
1641 (if (not f
) (error "Not a file"))
1642 (if (speedbar-y-or-n-p (format "Delete %s? " f
) t
)
1644 (if (file-directory-p f
)
1645 (delete-directory f
)
1647 (speedbar-message "Okie dokie..")
1654 (defun speedbar-item-object-delete ()
1655 "Delete the object associated from the item under the cursor.
1656 The file is removed from disk. The object is determined from the
1657 variable `speedbar-obj-alist'."
1659 (let* ((f (speedbar-line-file))
1661 (oa speedbar-obj-alist
))
1662 (if (not f
) (error "Not a file"))
1663 (while (and oa
(not (string-match (car (car oa
)) f
)))
1665 (setq obj
(concat (file-name-sans-extension f
) (cdr (car oa
))))
1666 (if (and oa
(file-exists-p obj
)
1667 (speedbar-y-or-n-p (format "Delete %s? " obj
) t
))
1670 (speedbar-reset-scanners)))))
1672 (defun speedbar-enable-update ()
1673 "Enable automatic updating in speedbar via timers."
1675 (setq speedbar-update-flag t
)
1676 (speedbar-set-mode-line-format)
1677 (speedbar-set-timer dframe-update-speed
))
1679 (defun speedbar-disable-update ()
1680 "Disable automatic updating and stop consuming resources."
1682 (setq speedbar-update-flag nil
)
1683 (speedbar-set-mode-line-format)
1684 (speedbar-set-timer nil
))
1686 (defun speedbar-toggle-updates ()
1687 "Toggle automatic update for the speedbar frame."
1689 (if speedbar-update-flag
1690 (speedbar-disable-update)
1691 (speedbar-enable-update)))
1693 (defun speedbar-toggle-images ()
1694 "Toggle use of images in the speedbar frame.
1695 Images are not available in Emacs 20 or earlier."
1697 (setq speedbar-use-images
(not speedbar-use-images
))
1700 (defun speedbar-toggle-sorting ()
1701 "Toggle tag sorting."
1703 (setq speedbar-sort-tags
(not speedbar-sort-tags
)))
1705 (defun speedbar-toggle-show-all-files ()
1706 "Toggle display of files speedbar can not tag."
1708 (setq speedbar-show-unknown-files
(not speedbar-show-unknown-files
))
1711 (defmacro speedbar-with-writable
(&rest forms
)
1712 "Allow the buffer to be writable and evaluate FORMS."
1713 (list 'let
'((inhibit-read-only t
))
1714 (cons 'progn forms
)))
1715 (put 'speedbar-with-writable
'lisp-indent-function
0)
1717 (defun speedbar-insert-button (text face mouse function
1718 &optional token prevline
)
1719 "Insert TEXT as the next logical speedbar button.
1720 FACE is the face to put on the button, MOUSE is the highlight face to use.
1721 When the user clicks on TEXT, FUNCTION is called with the TOKEN parameter.
1722 This function assumes that the current buffer is the speedbar buffer.
1723 If PREVLINE, then put this button on the previous line.
1725 This is a convenience function for special modes that create their own
1726 specialized speedbar displays."
1727 (goto-char (point-max))
1728 (let ((start (point)))
1729 (if (/= (current-column) 0) (insert "\n"))
1730 (put-text-property start
(point) 'invisible nil
))
1731 (if prevline
(progn (delete-char -
1)
1732 (insert " ") ;back up if desired...
1733 (put-text-property (1- (point)) (point) 'invisible nil
)))
1734 (let ((start (point)))
1736 (speedbar-make-button start
(point) face mouse function token
))
1737 (let ((start (point)))
1739 (add-text-properties
1740 start
(point) '(face nil invisible nil mouse-face nil
))))
1742 (defun speedbar-insert-separator (text)
1743 "Insert a separation label of TEXT.
1744 Separators are not active, have no labels, depth, or actions."
1745 (if speedbar-use-images
1746 (let ((start (point)))
1748 (speedbar-insert-image-button-maybe start
2)))
1749 (let ((start (point)))
1751 (speedbar-make-button start
(point)
1752 'speedbar-separator-face
1755 (defun speedbar-make-button (start end face mouse function
&optional token
)
1756 "Create a button from START to END, with FACE as the display face.
1757 MOUSE is the mouse face. When this button is clicked on FUNCTION
1758 will be run with the TOKEN parameter (any Lisp object). If FACE
1759 is t use the text properties of the string that is passed as an
1762 (put-text-property start end
'face face
))
1763 (add-text-properties
1764 start end
`(mouse-face ,mouse invisible nil
1765 speedbar-text
,(buffer-substring-no-properties start end
)))
1766 (if speedbar-use-tool-tips-flag
1767 (put-text-property start end
'help-echo
#'dframe-help-echo
))
1768 (if function
(put-text-property start end
'speedbar-function function
))
1769 (if token
(put-text-property start end
'speedbar-token token
))
1770 ;; So far the only text we have is less that 3 chars.
1771 (if (<= (- end start
) 3)
1772 (speedbar-insert-image-button-maybe start
(- end start
)))
1775 ;;; Initial Expansion list management
1777 (defun speedbar-initial-expansion-list ()
1778 "Return the current default expansion list.
1779 This is based on `speedbar-initial-expansion-list-name' referencing
1780 `speedbar-initial-expansion-mode-alist'."
1781 ;; cdr1 - name, cdr2 - menu
1782 (cdr (cdr (cdr (assoc speedbar-initial-expansion-list-name
1783 speedbar-initial-expansion-mode-alist
)))))
1785 (defun speedbar-initial-menu ()
1786 "Return the current default menu data.
1787 This is based on `speedbar-initial-expansion-list-name' referencing
1788 `speedbar-initial-expansion-mode-alist'."
1790 (car (cdr (assoc speedbar-initial-expansion-list-name
1791 speedbar-initial-expansion-mode-alist
)))))
1793 (defun speedbar-initial-keymap ()
1794 "Return the current default menu data.
1795 This is based on `speedbar-initial-expansion-list-name' referencing
1796 `speedbar-initial-expansion-mode-alist'."
1798 (car (cdr (cdr (assoc speedbar-initial-expansion-list-name
1799 speedbar-initial-expansion-mode-alist
))))))
1801 (defun speedbar-initial-stealthy-functions ()
1802 "Return a list of functions to call stealthily.
1803 This is based on `speedbar-initial-expansion-list-name' referencing
1804 `speedbar-stealthy-function-list'."
1805 (cdr (assoc speedbar-initial-expansion-list-name
1806 speedbar-stealthy-function-list
)))
1808 (defun speedbar-add-expansion-list (new-list)
1809 "Add NEW-LIST to the list of expansion lists."
1810 (add-to-list 'speedbar-initial-expansion-mode-alist new-list
))
1812 (defun speedbar-change-initial-expansion-list (new-default)
1813 "Change speedbar's default expansion list to NEW-DEFAULT."
1816 (completing-read (format "Speedbar Mode (default %s): "
1817 speedbar-previously-used-expansion-list-name
)
1818 speedbar-initial-expansion-mode-alist
1820 speedbar-previously-used-expansion-list-name
)))
1821 (setq speedbar-previously-used-expansion-list-name
1822 speedbar-initial-expansion-list-name
1823 speedbar-initial-expansion-list-name new-default
)
1824 (if (and (speedbar-current-frame) (frame-live-p (speedbar-current-frame)))
1827 (speedbar-reconfigure-keymaps))))
1829 (defun speedbar-fetch-replacement-function (function)
1830 "Return a current mode specific replacement for function, or nil.
1831 Scans `speedbar-mode-functions-list' first for the current mode, then
1833 (cdr (assoc function
1834 (cdr (assoc speedbar-initial-expansion-list-name
1835 speedbar-mode-functions-list
)))))
1837 (defun speedbar-add-mode-functions-list (new-list)
1838 "Add NEW-LIST to the list of mode functions.
1839 See `speedbar-mode-functions-list' for details."
1840 (add-to-list 'speedbar-mode-functions-list new-list
))
1843 ;;; Special speedbar display management
1845 (defun speedbar-maybe-add-localized-support (buffer)
1846 "Quick check function called on BUFFERs by the speedbar timer function.
1847 Maintains the value of local variables which control speedbars use
1848 of the special mode functions."
1849 (or speedbar-special-mode-expansion-list
1850 (speedbar-add-localized-speedbar-support buffer
)))
1852 (defun speedbar-add-localized-speedbar-support (buffer)
1853 "Add localized speedbar support to BUFFER's mode if it is available."
1854 (interactive "bBuffer: ")
1855 (if (stringp buffer
) (setq buffer
(get-buffer buffer
)))
1856 (if (not (buffer-live-p buffer
))
1861 (let ((ms (symbol-name major-mode
)) v
)
1862 (if (not (string-match "-mode$" ms
))
1863 nil
;; do nothing to broken mode
1864 (setq ms
(substring ms
0 (match-beginning 0)))
1865 (setq v
(intern-soft (concat ms
"-speedbar-buttons")))
1866 (make-local-variable 'speedbar-special-mode-expansion-list
)
1868 (setq speedbar-special-mode-expansion-list t
)
1869 ;; If it is autoloaded, we need to load it now so that
1870 ;; we have access to the varialbe -speedbar-menu-items.
1871 ;; Is this XEmacs safe?
1872 (let ((sf (symbol-function v
)))
1873 (if (and (listp sf
) (eq (car sf
) 'autoload
))
1874 (load-library (car (cdr sf
)))))
1875 (setq speedbar-special-mode-expansion-list
(list v
))
1876 (setq v
(intern-soft (concat ms
"-speedbar-key-map")))
1878 nil
;; don't add special keymap
1879 (make-local-variable 'speedbar-special-mode-key-map
)
1880 (setq speedbar-special-mode-key-map
1882 (setq v
(intern-soft (concat ms
"-speedbar-menu-items")))
1884 nil
;; don't add special menus
1885 (make-local-variable 'speedbar-easymenu-definition-special
)
1886 (setq speedbar-easymenu-definition-special
1890 (defun speedbar-remove-localized-speedbar-support (buffer)
1891 "Remove any traces that BUFFER supports speedbar in a specialized way."
1894 (kill-local-variable 'speedbar-special-mode-expansion-list
)
1895 (kill-local-variable 'speedbar-special-mode-key-map
)
1896 (kill-local-variable 'speedbar-easymenu-definition-special
)))
1898 ;;; File button management
1900 (defun speedbar-file-lists (directory)
1901 "Create file lists for DIRECTORY.
1902 The car is the list of directories, the cdr is list of files not
1903 matching ignored headers. Cache any directory files found in
1904 `speedbar-directory-contents-alist' and use that cache before scanning
1906 (setq directory
(expand-file-name directory
))
1907 ;; If in powerclick mode, then the directory we are getting
1908 ;; should be rescanned.
1909 (if dframe-power-click
1910 (adelete 'speedbar-directory-contents-alist directory
))
1911 ;; find the directory, either in the cache, or build it.
1912 (or (cdr-safe (assoc directory speedbar-directory-contents-alist
))
1913 (let ((default-directory directory
)
1914 (dir (directory-files directory nil
))
1919 (or (string-match speedbar-file-unshown-regexp
(car dir
))
1920 (string-match speedbar-directory-unshown-regexp
(car dir
))))
1921 (if (file-directory-p (car dir
))
1922 (setq dirs
(cons (car dir
) dirs
))
1923 (setq files
(cons (car dir
) files
))))
1924 (setq dir
(cdr dir
)))
1925 (let ((nl (cons (nreverse dirs
) (list (nreverse files
)))))
1926 (aput 'speedbar-directory-contents-alist directory nl
)
1930 (defun speedbar-directory-buttons (directory index
)
1931 "Insert a single button group at point for DIRECTORY.
1932 Each directory directory part is a different button. If part of the directory
1933 matches the user directory ~, then it is replaced with a ~.
1934 INDEX is not used, but is required by the caller."
1935 (let* ((tilde (expand-file-name "~/"))
1936 (dd (expand-file-name directory
))
1937 (junk (string-match (regexp-quote tilde
) dd
))
1939 (concat "~/" (substring dd
(match-end 0)))
1942 (if (string-match "^~[/\\]?\\'" displayme
) (setq displayme tilde
))
1946 (while (re-search-forward "\\([^/\\]+\\)[/\\]" nil t
)
1947 (speedbar-make-button (match-beginning 1) (match-end 1)
1948 'speedbar-directory-face
1949 'speedbar-highlight-face
1950 'speedbar-directory-buttons-follow
1951 (if (and (= (match-beginning 1) p
)
1952 (not (char-equal (char-after (+ p
1)) ?
:)))
1953 (expand-file-name "~/") ;the tilde
1954 (buffer-substring-no-properties
1956 ;; Nuke the beginning of the directory if it's too long...
1957 (cond ((eq speedbar-directory-button-trim-method
'span
)
1959 (let ((ww (or (speedbar-frame-width) 20)))
1960 (move-to-column ww nil
)
1961 (while (>= (current-column) ww
)
1962 (re-search-backward "[/\\]" nil t
)
1963 (if (<= (current-column) 2)
1965 (re-search-forward "[/\\]" nil t
)
1966 (if (< (current-column) 4)
1967 (re-search-forward "[/\\]" nil t
))
1969 (if (looking-at "[/\\]?$")
1972 (move-to-column ww nil
)))))
1973 ((eq speedbar-directory-button-trim-method
'trim
)
1975 (let ((ww (or (speedbar-frame-width) 20))
1976 (tl (current-column)))
1979 (move-to-column (- tl ww
))
1980 (if (re-search-backward "[/\\]" nil t
)
1982 (delete-region (point-min) (point))
1986 (if (string-match "\\`[/\\][^/\\]+[/\\]\\'" displayme
)
1991 (speedbar-make-button p
(point)
1992 'speedbar-directory-face
1993 'speedbar-highlight-face
1994 'speedbar-directory-buttons-follow
1997 (insert-char ?
\n 1 nil
)))
1999 (defun speedbar-make-tag-line (exp-button-type
2000 exp-button-char exp-button-function
2002 tag-button tag-button-function tag-button-data
2003 tag-button-face depth
)
2004 "Create a tag line with EXP-BUTTON-TYPE for the small expansion button.
2005 This is the button that expands or contracts a node (if applicable),
2006 and EXP-BUTTON-CHAR the character in it (+, -, ?, etc). EXP-BUTTON-FUNCTION
2007 is the function to call if it's clicked on. Button types are
2008 'bracket, 'angle, 'curly, 'expandtag, 'statictag, t, or nil.
2009 EXP-BUTTON-DATA is extra data attached to the text forming the expansion
2012 Next, TAG-BUTTON is the text of the tag. TAG-BUTTON-FUNCTION is the
2013 function to call if clicked on, and TAG-BUTTON-DATA is the data to
2014 attach to the text field (such a tag positioning, etc).
2015 TAG-BUTTON-FACE is a face used for this type of tag.
2017 Lastly, DEPTH shows the depth of expansion.
2019 This function assumes that the cursor is in the speedbar window at the
2020 position to insert a new item, and that the new item will end with a CR."
2021 (let ((start (point))
2023 (insert (int-to-string depth
) ":")
2025 (depthspacesize (* depth speedbar-indentation-width
)))
2026 (put-text-property start end
'invisible t
)
2027 (insert-char ? depthspacesize nil
)
2028 (put-text-property (- (point) depthspacesize
) (point) 'invisible nil
)
2029 (let* ((exp-button (cond ((eq exp-button-type
'bracket
) "[%c]")
2030 ((eq exp-button-type
'angle
) "<%c>")
2031 ((eq exp-button-type
'curly
) "{%c}")
2032 ((eq exp-button-type
'expandtag
) " %c>")
2033 ((eq exp-button-type
'statictag
) " =>")
2035 (buttxt (format exp-button exp-button-char
))
2037 (end (progn (insert buttxt
) (point)))
2038 (bf (if (and exp-button-type
(not (eq exp-button-type
'statictag
)))
2039 'speedbar-button-face nil
))
2040 (mf (if exp-button-function
'speedbar-highlight-face nil
))
2042 (speedbar-make-button start end bf mf exp-button-function exp-button-data
)
2043 (if speedbar-hide-button-brackets-flag
2045 (put-text-property start
(1+ start
) 'invisible t
)
2046 (put-text-property end
(1- end
) 'invisible t
)))
2048 (insert-char ?
1 nil
)
2049 (put-text-property (1- (point)) (point) 'invisible nil
)
2050 (let ((start (point))
2051 (end (progn (insert tag-button
) (point))))
2052 (insert-char ?
\n 1 nil
)
2053 (put-text-property (1- (point)) (point) 'invisible nil
)
2054 (speedbar-make-button start end tag-button-face
2055 (if tag-button-function
'speedbar-highlight-face nil
)
2056 tag-button-function tag-button-data
))
2059 (defun speedbar-change-expand-button-char (char)
2060 "Change the expansion button character to CHAR for the current line."
2063 (if (re-search-forward ":\\s-*.\\([-+?]\\)" (save-excursion (end-of-line)
2065 (speedbar-with-writable
2066 (goto-char (match-end 1))
2067 (insert-char char
1 t
)
2070 ;;(put-text-property (point) (1- (point)) 'invisible nil)
2071 ;; make sure we fix the image on the text here.
2072 (speedbar-insert-image-button-maybe (- (point) 1) 3)))))
2075 ;;; Build button lists
2077 (defun speedbar-insert-files-at-point (files level
)
2078 "Insert list of FILES starting at point, and indenting all files to LEVEL.
2079 Tag expandable items with a +, otherwise a ?. Don't highlight ? as we
2080 don't know how to manage them. The input parameter FILES is a cons
2081 cell of the form ( 'DIRLIST . 'FILELIST )."
2082 ;; Start inserting all the directories
2083 (let ((dirs (car files
)))
2085 (speedbar-make-tag-line 'angle ?
+ 'speedbar-dired
(car dirs
)
2086 (car dirs
) 'speedbar-dir-follow nil
2087 'speedbar-directory-face level
)
2088 (setq dirs
(cdr dirs
))))
2089 (let ((lst (car (cdr files
)))
2090 (case-fold-search t
))
2092 (let* ((known (string-match speedbar-file-regexp
(car lst
)))
2093 (expchar (if known ?
+ ??
))
2094 (fn (if known
'speedbar-tag-file nil
)))
2095 (if (or speedbar-show-unknown-files
(/= expchar ??
))
2096 (speedbar-make-tag-line 'bracket expchar fn
(car lst
)
2097 (car lst
) 'speedbar-find-file nil
2098 'speedbar-file-face level
)))
2099 (setq lst
(cdr lst
)))))
2101 (defun speedbar-default-directory-list (directory index
)
2102 "Insert files for DIRECTORY with level INDEX at point."
2103 (speedbar-insert-files-at-point
2104 (speedbar-file-lists directory
) index
)
2105 (speedbar-reset-scanners)
2107 ;; If the shown files variable has extra directories, then
2108 ;; it is our responsibility to redraw them all
2109 ;; Luckilly, the nature of inserting items into this list means
2110 ;; that by reversing it, we can easilly go in the right order
2111 (let ((sf (cdr (reverse speedbar-shown-directories
))))
2112 (setq speedbar-shown-directories
2113 (list (expand-file-name default-directory
)))
2114 ;; exand them all as we find them
2116 (if (speedbar-goto-this-file (car sf
))
2119 (if (looking-at "[0-9]+:[ ]*<")
2121 (goto-char (match-end 0))
2122 (speedbar-do-function-pointer)))))
2125 ;;; Generic List support
2127 ;; Generic lists are hierarchies of tags which we may need to permute
2128 ;; in order to make it look nice.
2130 ;; A generic list is of the form:
2131 ;; ( ("name" . marker-or-number) <-- one tag at this level
2132 ;; ("name" ("name" . mon) ("name" . mon) ) <-- one group of tags
2133 ;; ("name" mon ("name" . mon) ) <-- group w/ a position and tags
2134 (defun speedbar-generic-list-group-p (sublst)
2135 "Non-nil if SUBLST is a group.
2136 Groups may optionally contain a position."
2137 (and (stringp (car-safe sublst
))
2138 (or (and (listp (cdr-safe sublst
))
2139 (or (speedbar-generic-list-tag-p (car-safe (cdr-safe sublst
)))
2140 (speedbar-generic-list-group-p (car-safe (cdr-safe sublst
))
2142 (and (number-or-marker-p (car-safe (cdr-safe sublst
)))
2143 (listp (cdr-safe (cdr-safe sublst
)))
2144 (speedbar-generic-list-tag-p
2145 (car-safe (cdr-safe (cdr-safe sublst
)))))
2148 (defun speedbar-generic-list-positioned-group-p (sublst)
2149 "Non-nil of SUBLST is a group with a position."
2150 (and (stringp (car-safe sublst
))
2151 (number-or-marker-p (car-safe (cdr-safe sublst
)))
2152 (listp (cdr-safe (cdr-safe sublst
)))
2153 (let ((rest (car-safe (cdr-safe (cdr-safe sublst
)))))
2154 (or (speedbar-generic-list-tag-p rest
)
2155 (speedbar-generic-list-group-p rest
)
2156 (speedbar-generic-list-positioned-group-p rest
)
2159 (defun speedbar-generic-list-tag-p (sublst)
2160 "Non-nil if SUBLST is a tag."
2161 (and (stringp (car-safe sublst
))
2162 (or (and (number-or-marker-p (cdr-safe sublst
))
2163 (not (cdr-safe (cdr-safe sublst
))))
2164 ;; For semantic/bovine items, this is needed
2165 (symbolp (car-safe (cdr-safe sublst
))))
2168 (defun speedbar-sort-tag-hierarchy (lst)
2169 "Sort all elements of tag hierarchy LST."
2170 (sort (copy-alist lst
)
2171 (lambda (a b
) (string< (car a
) (car b
)))))
2173 (defun speedbar-try-completion (string alist
)
2174 "A wrapper for `try-completion'.
2175 Passes STRING and ALIST to `try-completion' if ALIST
2177 (if (and (consp alist
)
2178 (listp (car alist
)) (stringp (car (car alist
))))
2179 (try-completion string alist
)
2182 (defun speedbar-prefix-group-tag-hierarchy (lst)
2183 "Prefix group names for tag hierarchy LST."
2188 (short-group-list nil
)
2189 (short-start-name nil
)
2190 (short-end-name nil
)
2191 (num-shorts-grouped 0)
2192 (bins (make-vector 256 nil
))
2194 (if (<= (length lst
) speedbar-tag-regroup-maximum-length
)
2195 ;; Do nothing. Too short to bother with.
2197 ;; Break out sub-lists
2199 (if (speedbar-generic-list-group-p (car-safe lst
))
2200 (setq newlst
(cons (car lst
) newlst
))
2201 (setq sublst
(cons (car lst
) sublst
)))
2202 (setq lst
(cdr lst
)))
2203 ;; Reverse newlst because it was made backwards.
2204 ;; Sublist doesn't need reversing because the act
2205 ;; of binning things will reverse it for us.
2206 (setq newlst
(nreverse newlst
)
2208 ;; Now, first find out how long our list is. Never let a
2209 ;; list get-shorter than our minimum.
2210 (if (<= (length sublst
) speedbar-tag-split-minimum-length
)
2211 (setq work-list sublst
)
2212 (setq diff-idx
(length (speedbar-try-completion "" sublst
)))
2213 ;; Sort the whole list into bins.
2215 (let ((e (car sublst
))
2216 (s (car (car sublst
))))
2217 (cond ((<= (length s
) diff-idx
)
2218 ;; 0 storage bin for shorty.
2219 (aset bins
0 (cons e
(aref bins
0))))
2221 ;; stuff into a bin based on ascii value at diff
2222 (aset bins
(aref s diff-idx
)
2223 (cons e
(aref bins
(aref s diff-idx
)))))))
2224 (setq sublst
(cdr sublst
)))
2225 ;; Go through all our bins Stick singles into our
2226 ;; junk-list, everything else as sublsts in work-list.
2227 ;; If two neighboring lists are both small, make a grouped
2228 ;; group combinding those two sub-lists.
2230 (while (> 256 diff-idx
)
2231 ;; The bins contents are currently in forward order.
2232 (let ((l (aref bins diff-idx
)))
2234 (let ((tmp (cons (speedbar-try-completion "" l
) l
)))
2235 (if (or (> (length l
) speedbar-tag-regroup-maximum-length
)
2236 (> (+ (length l
) (length short-group-list
))
2237 speedbar-tag-split-minimum-length
))
2239 ;; We have reached a longer list, so we
2240 ;; must finish off a grouped group.
2242 ((and short-group-list
2243 (= (length short-group-list
)
2244 num-shorts-grouped
))
2245 ;; All singles? Junk list
2246 (setq junk-list
(append (nreverse short-group-list
)
2248 ((= num-shorts-grouped
1)
2249 ;; Only one short group? Just stick it in
2250 ;; there by itself. Make a group, and find
2252 (let ((subexpression (speedbar-try-completion
2253 "" short-group-list
)))
2254 (if (< (length subexpression
)
2255 speedbar-tag-group-name-minimum-length
)
2257 (concat short-start-name
2260 (car (car short-group-list
))
2261 (length short-start-name
))
2264 (cons (cons subexpression
2268 ;; Multiple groups to be named in a special
2269 ;; way by displaying the range over which we
2270 ;; have grouped them.
2272 (cons (cons (concat short-start-name
2277 ;; Reset short group list information every time.
2278 (setq short-group-list nil
2279 short-start-name nil
2281 num-shorts-grouped
0)))
2282 ;; Ok, now that we cleaned up the short-group-list,
2283 ;; we can deal with this new list, to decide if it
2284 ;; should go on one of these sub-lists or not.
2285 (if (< (length l
) speedbar-tag-regroup-maximum-length
)
2286 (setq short-group-list
(append l short-group-list
)
2287 num-shorts-grouped
(1+ num-shorts-grouped
)
2288 short-end-name
(car tmp
)
2289 short-start-name
(if short-start-name
2292 (setq work-list
(cons tmp work-list
))))))
2293 (setq diff-idx
(1+ diff-idx
))))
2294 ;; Did we run out of things? Drop our new list onto the end.
2296 ((and short-group-list
(= (length short-group-list
) num-shorts-grouped
))
2297 ;; All singles? Junk list
2298 (setq junk-list
(append short-group-list junk-list
)))
2299 ((= num-shorts-grouped
1)
2300 ;; Only one short group? Just stick it in
2303 (cons (cons (speedbar-try-completion "" short-group-list
)
2307 ;; Multiple groups to be named in a special
2308 ;; way by displaying the range over which we
2309 ;; have grouped them.
2311 (cons (cons (concat short-start-name
" to " short-end-name
)
2314 ;; Reverse the work list nreversed when consing.
2315 (setq work-list
(nreverse work-list
))
2316 ;; Now, stick our new list onto the end of
2319 (append newlst work-list junk-list
)
2320 (append newlst work-list
))
2321 (append newlst junk-list
)))))
2323 (defun speedbar-trim-words-tag-hierarchy (lst)
2324 "Trim all words in a tag hierarchy.
2325 Base trimming information on word separators, and group names.
2326 Argument LST is the list of tags to trim."
2333 (if (speedbar-generic-list-group-p (car-safe lst
))
2334 (setq newlst
(cons (car lst
) newlst
))
2335 (setq sublst
(cons (car lst
) sublst
)))
2336 (setq lst
(cdr lst
)))
2337 ;; Get the prefix to trim by. Make sure that we don't trim
2338 ;; off silly pieces, only complete understandable words.
2339 (setq trim-prefix
(speedbar-try-completion "" sublst
)
2340 newlst
(nreverse newlst
))
2341 (if (or (= (length sublst
) 1)
2343 (not (string-match "\\(\\w+\\W+\\)+" trim-prefix
)))
2344 (append newlst
(nreverse sublst
))
2345 (setq trim-prefix
(substring trim-prefix
(match-beginning 0)
2347 (setq trim-chars
(length trim-prefix
))
2350 (cons (substring (car (car sublst
)) trim-chars
)
2353 sublst
(cdr sublst
)))
2354 ;; Put the lists together
2355 (append newlst trimlst
))))
2357 (defun speedbar-simple-group-tag-hierarchy (lst)
2358 "Create a simple 'Tags' group with orphaned tags.
2359 Argument LST is the list of tags to sort into groups."
2363 (if (speedbar-generic-list-group-p (car-safe lst
))
2364 (setq newlst
(cons (car lst
) newlst
))
2365 (setq sublst
(cons (car lst
) sublst
)))
2366 (setq lst
(cdr lst
)))
2369 (setq newlst
(cons (cons "Tags" (nreverse sublst
)) newlst
))
2370 (nreverse newlst
))))
2372 (defun speedbar-create-tag-hierarchy (lst)
2373 "Adjust the tag hierarchy in LST, and return it.
2374 This uses `speedbar-tag-hierarchy-method' to determine how to adjust
2376 (let* ((f (save-excursion
2378 (or (speedbar-line-file)
2379 (speedbar-line-directory))))
2380 (methods (if (get-file-buffer f
)
2381 (save-excursion (set-buffer (get-file-buffer f
))
2382 speedbar-tag-hierarchy-method
)
2383 speedbar-tag-hierarchy-method
))
2384 (lst (if (fboundp 'copy-tree
)
2388 (setq lst
(funcall (car methods
) lst
)
2389 methods
(cdr methods
)))
2392 (defvar speedbar-generic-list-group-expand-button-type
'curly
2393 "The type of button created for groups of tags.
2394 Good values for this are `curly' and `expandtag'.
2395 Make buffer local for your mode.")
2397 (defvar speedbar-generic-list-tag-button-type nil
2398 "The type of button created for tags in generic lists.
2399 Good values for this are nil and `statictag'.
2400 Make buffer local for your mode.")
2402 (defun speedbar-insert-generic-list (level lst expand-fun find-fun
)
2403 "At LEVEL, insert a generic multi-level alist LST.
2404 Associations with lists get {+} tags (to expand into more nodes) and
2405 those with positions just get a > as the indicator. {+} buttons will
2406 have the function EXPAND-FUN and the token is the CDR list. The token
2407 name will have the function FIND-FUN and not token."
2408 ;; Remove imenu rescan button
2409 (if (string= (car (car lst
)) "*Rescan*")
2410 (setq lst
(cdr lst
)))
2411 ;; Get, and set up variables that define how we treat these tags.
2412 (let ((f (save-excursion (forward-line -
1)
2413 (or (speedbar-line-file)
2414 (speedbar-line-directory))))
2415 expand-button tag-button
)
2417 (if (get-file-buffer f
)
2418 (set-buffer (get-file-buffer f
)))
2419 (setq expand-button speedbar-generic-list-group-expand-button-type
2420 tag-button speedbar-generic-list-tag-button-type
))
2422 (setq lst
(speedbar-create-tag-hierarchy lst
))
2425 (cond ((null (car-safe lst
)) nil
) ;this would be a separator
2426 ((speedbar-generic-list-tag-p (car lst
))
2427 (speedbar-make-tag-line tag-button
2428 nil nil nil
;no expand button data
2429 (car (car lst
)) ;button name
2431 (cdr (car lst
)) ;token is position
2434 ((speedbar-generic-list-positioned-group-p (car lst
))
2435 (speedbar-make-tag-line expand-button
2436 ?
+ expand-fun
(cdr (cdr (car lst
)))
2437 (car (car lst
)) ;button name
2439 (car (cdr (car lst
))) ;token is posn
2442 ((speedbar-generic-list-group-p (car lst
))
2443 (speedbar-make-tag-line expand-button
2444 ?
+ expand-fun
(cdr (car lst
))
2445 (car (car lst
)) ;button name
2446 nil nil
'speedbar-tag-face
2448 (t (speedbar-message "speedbar-insert-generic-list: malformed list!")
2450 (setq lst
(cdr lst
)))))
2452 (defun speedbar-insert-imenu-list (indent lst
)
2453 "At level INDENT, insert the imenu generated LST."
2454 (speedbar-insert-generic-list indent lst
2455 'speedbar-tag-expand
2456 'speedbar-tag-find
))
2458 (defun speedbar-insert-etags-list (indent lst
)
2459 "At level INDENT, insert the etags generated LST."
2460 (speedbar-insert-generic-list indent lst
2461 'speedbar-tag-expand
2462 'speedbar-tag-find
))
2466 (defun speedbar-update-contents ()
2467 "Generically update the contents of the speedbar buffer."
2469 ;; Set the current special buffer
2470 (setq speedbar-desired-buffer nil
)
2472 ;; Check for special modes
2473 (speedbar-maybe-add-localized-support (current-buffer))
2475 ;; Choose the correct method of doodling.
2476 (if (and speedbar-mode-specific-contents-flag
2477 (consp speedbar-special-mode-expansion-list
)
2479 'speedbar-special-mode-expansion-list
2481 ;;(eq (get major-mode 'mode-class 'special)))
2482 (speedbar-update-special-contents)
2483 (speedbar-update-directory-contents)))
2485 (defun speedbar-update-localized-contents ()
2486 "Update the contents of the speedbar buffer for the current situation."
2487 ;; Due to the historical growth of speedbar, we need to do something
2488 ;; special for "files" mode. Too bad.
2489 (let ((name speedbar-initial-expansion-list-name
)
2490 (funclst (speedbar-initial-expansion-list))
2492 (if (string= name
"files")
2493 ;; Do all the files type work. It still goes through the
2494 ;; expansion list stuff. :(
2495 (if (or (member (expand-file-name default-directory
)
2496 speedbar-shown-directories
)
2497 (and speedbar-ignored-directory-regexp
2499 speedbar-ignored-directory-regexp
2500 (expand-file-name default-directory
))))
2502 (if (<= 1 speedbar-verbosity-level
)
2503 (speedbar-message "Updating speedbar to: %s..."
2505 (speedbar-update-directory-contents)
2506 (if (<= 1 speedbar-verbosity-level
)
2508 (speedbar-message "Updating speedbar to: %s...done"
2510 (speedbar-message nil
))))
2511 ;; Else, we can do a short cut. No text cache.
2512 (let ((cbd (expand-file-name default-directory
)))
2513 (set-buffer speedbar-buffer
)
2514 (speedbar-with-writable
2515 (let* ((window (get-buffer-window speedbar-buffer
0))
2516 (p (window-point window
))
2517 (start (window-start window
)))
2519 (dolist (func funclst
)
2520 (setq default-directory cbd
)
2521 (funcall func cbd
0))
2522 (speedbar-reconfigure-keymaps)
2523 (set-window-point window p
)
2524 (set-window-start window start
)))))))
2526 (defun speedbar-update-directory-contents ()
2527 "Update the contents of the speedbar buffer based on the current directory."
2528 (let ((cbd (expand-file-name default-directory
))
2530 (funclst (speedbar-initial-expansion-list))
2531 (cache speedbar-full-text-cache
)
2532 ;; disable stealth during update
2533 (speedbar-stealthy-function-list nil
)
2536 ;; Because there is a bug I can't find just yet
2538 (set-buffer speedbar-buffer
)
2539 ;; If we are updating contents to where we are, then this is
2540 ;; really a request to update existing contents, so we must be
2541 ;; careful with our text cache!
2542 (if (member cbd speedbar-shown-directories
)
2545 ;; If the current directory is not the last element in the dir
2546 ;; list, then we ALSO need to zap the list of expanded directories
2547 (if (/= (length (member cbd speedbar-shown-directories
)) 1)
2548 (setq speedbar-shown-directories
(list cbd
))))
2550 ;; Build cbd-parent, and see if THAT is in the current shown
2551 ;; directories. First, go through pains to get the parent directory
2552 (if (and speedbar-smart-directory-expand-flag
2554 (setq cbd-parent cbd
)
2555 (if (string-match "[/\\]$" cbd-parent
)
2556 (setq cbd-parent
(substring cbd-parent
0
2557 (match-beginning 0))))
2558 (setq cbd-parent
(file-name-directory cbd-parent
)))
2559 (member cbd-parent speedbar-shown-directories
))
2560 (setq expand-local t
)
2562 ;; If this directory is NOT in the current list of available
2563 ;; directorys, then use the cache, and set the cache to our new
2564 ;; value. Make sure to unhighlight the current file, or if we
2565 ;; come back to this directory, it might be a different file
2566 ;; and then we get a mess!
2567 (if (> (point-max) 1)
2569 (speedbar-clear-current-file)
2570 (setq speedbar-full-text-cache
2571 (cons speedbar-shown-directories
(buffer-string)))))
2573 ;; Check if our new directory is in the list of directories
2574 ;; shown in the text-cache
2575 (if (member cbd
(car cache
))
2576 (setq speedbar-shown-directories
(car cache
)
2578 ;; default the shown directories to this list...
2579 (setq speedbar-shown-directories
(list cbd
)))
2581 (if (not expand-local
) (setq speedbar-last-selected-file nil
))
2582 (speedbar-with-writable
2583 (if (and expand-local
2584 ;; Find this directory as a speedbar node.
2585 (speedbar-directory-line cbd
))
2587 (speedbar-expand-line)
2588 (let* ((window (get-buffer-window speedbar-buffer
0))
2589 (p (window-point window
))
2590 (start (window-start window
)))
2593 (setq default-directory
2594 (nth (1- (length speedbar-shown-directories
))
2595 speedbar-shown-directories
))
2596 (insert (cdr cache
)))
2598 (dolist (func funclst
)
2599 (setq default-directory cbd
)
2600 (funcall func cbd
0))))
2601 (set-window-point window p
)
2602 (set-window-start window start
)))))
2603 (speedbar-reconfigure-keymaps))
2605 (defun speedbar-update-special-contents ()
2606 "Use the mode-specific variable to fill in the speedbar buffer.
2607 This should only be used by modes classified as special."
2608 (let ((funclst speedbar-special-mode-expansion-list
)
2609 (specialbuff (current-buffer)))
2611 (setq speedbar-desired-buffer specialbuff
)
2612 (set-buffer speedbar-buffer
)
2613 ;; If we are leaving a directory, cache it.
2614 (if (not speedbar-shown-directories
)
2617 ;; Clean up directory maintenance stuff
2618 (speedbar-clear-current-file)
2619 (setq speedbar-full-text-cache
2620 (cons speedbar-shown-directories
(buffer-string))
2621 speedbar-shown-directories nil
))
2622 ;; Now fill in the buffer with our newly found specialized list.
2623 (speedbar-with-writable
2624 (dolist (func funclst
)
2625 ;; We do not erase the buffer because these functions may
2626 ;; decide NOT to update themselves.
2627 (funcall func specialbuff
)))))
2628 (speedbar-reconfigure-keymaps))
2630 (defun speedbar-set-timer (timeout)
2631 "Set up the speedbar timer with TIMEOUT.
2632 Uses `dframe-set-timer'.
2633 Also resets scanner functions."
2634 (dframe-set-timer timeout
'speedbar-timer-fn
'speedbar-update-flag
)
2635 ;; Apply a revert hook that will reset the scanners. We attach to revert
2636 ;; because most reverts occur during VC state change, and this lets our
2637 ;; VC scanner fix itself.
2639 (add-hook 'after-revert-hook
'speedbar-reset-scanners
)
2640 (remove-hook 'after-revert-hook
'speedbar-reset-scanners
))
2641 ;; change this if it changed for some reason
2642 (speedbar-set-mode-line-format))
2644 (defun speedbar-timer-fn ()
2645 "Run whenever Emacs is idle to update the speedbar item."
2646 (if (or (not (speedbar-current-frame))
2647 (not (frame-live-p (speedbar-current-frame))))
2648 (speedbar-set-timer nil
)
2649 ;; Save all the match data so that we don't mess up executing fns
2651 ;; Only do stuff if the frame is visible, not an icon, and if
2652 ;; it is currently flagged to do something.
2653 (if (and speedbar-update-flag
2654 (speedbar-current-frame)
2655 (frame-visible-p (speedbar-current-frame))
2656 (not (eq (frame-visible-p (speedbar-current-frame)) 'icon
)))
2657 (let ((af (selected-frame)))
2658 (dframe-select-attached-frame speedbar-frame
)
2659 ;; make sure we at least choose a window to
2660 ;; get a good directory from
2661 (if (window-minibuffer-p (selected-window))
2663 ;; Check for special modes
2664 (speedbar-maybe-add-localized-support (current-buffer))
2665 ;; Update for special mode all the time!
2666 (if (and speedbar-mode-specific-contents-flag
2667 (consp speedbar-special-mode-expansion-list
)
2669 'speedbar-special-mode-expansion-list
2671 ;;(eq (get major-mode 'mode-class 'special)))
2673 (if (<= 2 speedbar-verbosity-level
)
2675 "Updating speedbar to special mode: %s..."
2677 (speedbar-update-special-contents)
2678 (if (<= 2 speedbar-verbosity-level
)
2681 "Updating speedbar to special mode: %s...done"
2683 (speedbar-message nil
))))
2685 ;; Update all the contents if directories change!
2686 (unless (and (or (member major-mode speedbar-ignored-modes
)
2687 (eq af
(speedbar-current-frame))
2688 (not (buffer-file-name)))
2689 ;; Always update for GUD.
2690 (not (string-equal "GUD"
2691 speedbar-initial-expansion-list-name
)))
2692 (speedbar-update-localized-contents)))
2694 ;; Now run stealthy updates of time-consuming items
2695 (speedbar-stealthy-updates)))))
2696 (run-hooks 'speedbar-timer-hook
))
2699 ;;; Stealthy activities
2701 (defvar speedbar-stealthy-update-recurse nil
2702 "Recursion avoidance variable for stealthy update.")
2704 (defun speedbar-stealthy-updates ()
2705 "For a given speedbar, run all items in the stealthy function list.
2706 Each item returns t if it completes successfully, or nil if
2707 interrupted by the user."
2708 (if (not speedbar-stealthy-update-recurse
)
2709 (let ((l (speedbar-initial-stealthy-functions))
2710 (speedbar-stealthy-update-recurse t
))
2712 (speedbar-with-writable
2713 (while (and l
(funcall (car l
)))
2716 ;;(speedbar-message "Exit with %S" (car l))
2719 (defun speedbar-reset-scanners ()
2720 "Reset any variables used by functions in the stealthy list as state.
2721 If new functions are added, their state needs to be updated here."
2722 (setq speedbar-vc-to-do-point t
2723 speedbar-obj-to-do-point t
2724 speedbar-ro-to-do-point t
)
2725 (run-hooks 'speedbar-scanner-reset-hook
)
2728 (defun speedbar-find-selected-file (file)
2729 "Go to the line where FILE is."
2731 (set-buffer speedbar-buffer
)
2733 (goto-char (point-min))
2735 (while (and (setq m
(re-search-forward
2736 (concat " \\(" (regexp-quote (file-name-nondirectory file
))
2737 "\\)\\(" speedbar-indicator-regex
"\\)?\n")
2741 (speedbar-line-directory
2743 (goto-char (match-beginning 0))
2746 (looking-at "[0-9]+:")
2747 (string-to-number (match-string 0)))))
2748 (match-string 1))))))
2751 (goto-char (match-beginning 1))
2752 (match-string 1)))))
2754 (defun speedbar-clear-current-file ()
2755 "Locate the file thought to be current, and remove its highlighting."
2757 ;;(set-buffer speedbar-buffer)
2758 (if speedbar-last-selected-file
2759 (speedbar-with-writable
2760 (if (speedbar-find-selected-file speedbar-last-selected-file
)
2761 (put-text-property (match-beginning 1)
2764 'speedbar-file-face
))))))
2766 (defun speedbar-update-current-file ()
2767 "Find the current file, and update our visuals to indicate its name.
2768 This is specific to file names. If the file name doesn't show up, but
2769 it should be in the list, then the directory cache needs to be
2771 (let* ((lastf (selected-frame))
2772 (newcfd (save-excursion
2773 (dframe-select-attached-frame speedbar-frame
)
2774 (let ((rf (if (buffer-file-name)
2777 (select-frame lastf
)
2779 (newcf (if newcfd newcfd
))
2780 (lastb (current-buffer))
2781 (sucf-recursive (boundp 'sucf-recursive
))
2782 (case-fold-search t
))
2784 ;; check here, that way we won't refresh to newcf until
2785 ;; its been written, thus saving ourselves some time
2786 (file-exists-p newcf
)
2787 (not (string= newcf speedbar-last-selected-file
)))
2789 ;; It is important to select the frame, otherwise the window
2790 ;; we want the cursor to move in will not be updated by the
2791 ;; search-forward command.
2792 (select-frame (speedbar-current-frame))
2793 ;; Remove the old file...
2794 (speedbar-clear-current-file)
2795 ;; now highlight the new one.
2796 ;; (set-buffer speedbar-buffer)
2797 (speedbar-with-writable
2798 (if (speedbar-find-selected-file newcf
)
2799 ;; put the property on it
2800 (put-text-property (match-beginning 1)
2803 'speedbar-selected-face
)
2804 ;; Oops, it's not in the list. Should it be?
2805 (if (and (string-match speedbar-file-regexp newcf
)
2806 (string= (file-name-directory newcfd
)
2807 (expand-file-name default-directory
)))
2808 ;; yes, it is (we will ignore unknowns for now...)
2811 (if (speedbar-find-selected-file newcf
)
2812 ;; put the property on it
2813 (put-text-property (match-beginning 1)
2816 'speedbar-selected-face
)))
2817 ;; if it's not in there now, whatever...
2819 (setq speedbar-last-selected-file newcf
))
2820 (if (not sucf-recursive
)
2823 ;;Sat Dec 15 2001 12:40 AM (burton@openprivacy.org): this
2824 ;;doesn't need to be in. We don't want to recenter when we are
2827 ;;(speedbar-center-buffer-smartly)
2829 (speedbar-position-cursor-on-line)
2832 (select-frame lastf
)
2834 ;; return that we are done with this activity.
2837 (defun speedbar-add-indicator (indicator-string &optional replace-this
)
2838 "Add INDICATOR-STRING to the end of this speedbar line.
2839 If INDICATOR-STRING is space, and REPLACE-THIS is a character, then
2840 the existing indicator is removed. If there is already an
2841 indicator, then do not add a space."
2843 ;; The nature of the beast: Assume we are in "the right place"
2845 (skip-chars-backward (concat " " speedbar-vc-indicator
2846 speedbar-object-read-only-indicator
2847 (car speedbar-obj-indicator
)
2848 (cdr speedbar-obj-indicator
)))
2849 (if (and (not (looking-at speedbar-indicator-regex
))
2850 (not (string= indicator-string
" ")))
2851 (insert speedbar-indicator-separator
))
2852 (speedbar-with-writable
2854 (if (and replace-this
2855 (re-search-forward replace-this
(save-excursion (end-of-line)
2858 (delete-region (match-beginning 0) (match-end 0))))
2860 (if (not (string= " " indicator-string
))
2861 (let ((start (point)))
2862 (insert indicator-string
)
2863 (speedbar-insert-image-button-maybe start
(length indicator-string
))
2866 (defun speedbar-check-read-only ()
2867 "Scan all the files in a directory, and for each see if it is read only."
2868 ;; Check for to-do to be reset. If reset but no RCS is available
2869 ;; then set to nil (do nothing) otherwise, start at the beginning
2871 (if speedbar-buffer
(set-buffer speedbar-buffer
))
2872 (if (eq speedbar-ro-to-do-point t
)
2873 (setq speedbar-ro-to-do-point
0))
2874 (if (numberp speedbar-ro-to-do-point
)
2876 (goto-char speedbar-ro-to-do-point
)
2877 (while (and (not (input-pending-p))
2878 (re-search-forward "^\\([0-9]+\\):\\s-*[[<][+-\?][]>] "
2880 (setq speedbar-ro-to-do-point
(point))
2881 (let ((f (speedbar-line-file)))
2883 (if (not (file-writable-p f
))
2884 (speedbar-add-indicator
2885 speedbar-object-read-only-indicator
2886 (regexp-quote speedbar-object-read-only-indicator
))
2887 (speedbar-add-indicator
2889 speedbar-object-read-only-indicator
))))))
2890 (if (input-pending-p)
2891 ;; return that we are incomplete
2893 ;; we are done, set to-do to nil
2894 (setq speedbar-ro-to-do-point nil
)
2899 ;; Load efs/ange-ftp only if compiling to remove byte-compiler warnings.
2900 ;; Steven L Baur <steve@xemacs.org> said this was important:
2901 (eval-when-compile (or (featurep 'xemacs
)
2902 (condition-case () (require 'efs
)
2903 (error (require 'ange-ftp
)))))
2905 (defun speedbar-check-vc ()
2906 "Scan all files in a directory, and for each see if it's checked out.
2907 See `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p' for how
2908 to add more types of version control systems."
2909 ;; Check for to-do to be reset. If reset but no RCS is available
2910 ;; then set to nil (do nothing) otherwise, start at the beginning
2912 (if speedbar-buffer
(set-buffer speedbar-buffer
))
2913 (if (and speedbar-vc-do-check
(eq speedbar-vc-to-do-point t
)
2914 (speedbar-vc-check-dir-p default-directory
)
2915 (not (or (and (featurep 'ange-ftp
)
2918 (if (featurep 'xemacs
)
2919 'ange-ftp-directory-format
2920 'ange-ftp-name-format
)))
2921 (expand-file-name default-directory
)))
2922 ;; efs support: Bob Weiner
2923 (and (featurep 'efs
)
2925 (let ((reg (symbol-value 'efs-directory-regexp
)))
2929 (expand-file-name default-directory
))))))
2930 (setq speedbar-vc-to-do-point
0))
2931 (if (numberp speedbar-vc-to-do-point
)
2933 (goto-char speedbar-vc-to-do-point
)
2934 (while (and (not (input-pending-p))
2935 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-?]\\] "
2937 (setq speedbar-vc-to-do-point
(point))
2938 (if (speedbar-check-vc-this-line (match-string 1))
2939 (speedbar-add-indicator speedbar-vc-indicator
2940 (regexp-quote speedbar-vc-indicator
))
2941 (speedbar-add-indicator " "
2942 (regexp-quote speedbar-vc-indicator
))))
2943 (if (input-pending-p)
2944 ;; return that we are incomplete
2946 ;; we are done, set to-do to nil
2947 (setq speedbar-vc-to-do-point nil
)
2952 (defun speedbar-check-vc-this-line (depth)
2953 "Return t if the file on this line is check of of a version control system.
2954 Parameter DEPTH is a string with the current depth of indentation of
2955 the file being checked."
2956 (let* ((d (string-to-number depth
))
2957 (f (speedbar-line-directory d
))
2958 (fn (buffer-substring-no-properties
2959 ;; Skip-chars: thanks ptype@dra.hmg.gb
2961 (skip-chars-forward "^ "
2962 (save-excursion (end-of-line)
2965 (fulln (concat f fn
)))
2966 (if (<= 2 speedbar-verbosity-level
)
2967 (speedbar-message "Speedbar vc check...%s" fulln
))
2968 (and (file-writable-p fulln
)
2969 (speedbar-this-file-in-vc f fn
))))
2971 (defun speedbar-vc-check-dir-p (directory)
2972 "Return t if we should bother checking DIRECTORY for version control files.
2973 This can be overloaded to add new types of version control systems."
2975 ;; Local CVS available in Emacs 21
2976 (and (fboundp 'vc-state
)
2977 (file-exists-p (concat directory
"CVS/")))
2979 (file-exists-p (concat directory
"RCS/"))
2981 (file-exists-p (concat directory
"SCCS/"))
2982 ;; Remote SCCS project
2983 (let ((proj-dir (getenv "PROJECTDIR")))
2985 (file-exists-p (concat proj-dir
"/SCCS"))
2988 (run-hook-with-args-until-success 'speedbar-vc-directory-enable-hook
2992 (defun speedbar-this-file-in-vc (directory name
)
2993 "Check to see if the file in DIRECTORY with NAME is in a version control system.
2994 You can add new VC systems by overriding this function. You can
2995 optimize this function by overriding it and only doing those checks
2996 that will occur on your system."
2998 (if (fboundp 'vc-state
)
2999 ;; Emacs 21 handles VC state in a nice way.
3001 (let ((state (vc-state (concat directory name
))))
3002 (not (or (eq 'up-to-date state
)
3004 ;; An error means not in a VC system
3008 (file-exists-p (concat directory
"RCS/" name
",v"))
3009 (file-exists-p (concat directory
"RCS/" name
))
3010 ;; Local SCCS file name
3011 (file-exists-p (concat directory
"SCCS/s." name
))
3012 ;; Remote SCCS file name
3013 (let ((proj-dir (getenv "PROJECTDIR")))
3015 (file-exists-p (concat proj-dir
"/SCCS/s." name
))
3018 (run-hook-with-args 'speedbar-vc-in-control-hook directory name
)
3021 ;; Objet File scanning
3022 (defun speedbar-check-objects ()
3023 "Scan all files in a directory, and for each see if there is an object.
3024 See `speedbar-check-obj-this-line' and `speedbar-obj-alist' for how
3025 to add more object types."
3026 ;; Check for to-do to be reset. If reset but no RCS is available
3027 ;; then set to nil (do nothing) otherwise, start at the beginning
3029 (if speedbar-buffer
(set-buffer speedbar-buffer
))
3030 (if (and speedbar-obj-do-check
(eq speedbar-obj-to-do-point t
))
3031 (setq speedbar-obj-to-do-point
0))
3032 (if (numberp speedbar-obj-to-do-point
)
3034 (goto-char speedbar-obj-to-do-point
)
3035 (while (and (not (input-pending-p))
3036 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] "
3038 (setq speedbar-obj-to-do-point
(point))
3039 (let ((ind (speedbar-check-obj-this-line (match-string 1))))
3040 (if (not ind
) (setq ind
" "))
3041 (speedbar-add-indicator ind
(concat
3042 (car speedbar-obj-indicator
)
3044 (cdr speedbar-obj-indicator
)))))
3045 (if (input-pending-p)
3046 ;; return that we are incomplete
3048 ;; we are done, set to-do to nil
3049 (setq speedbar-obj-to-do-point nil
)
3054 (defun speedbar-check-obj-this-line (depth)
3055 "Return t if the file on this line has an associated object.
3056 Parameter DEPTH is a string with the current depth of indentation of
3057 the file being checked."
3058 (let* ((d (string-to-number depth
))
3059 (f (speedbar-line-directory d
))
3060 (fn (buffer-substring-no-properties
3061 ;; Skip-chars: thanks ptype@dra.hmg.gb
3063 (skip-chars-forward "^ "
3064 (save-excursion (end-of-line)
3067 (fulln (concat f fn
)))
3068 (if (<= 2 speedbar-verbosity-level
)
3069 (speedbar-message "Speedbar obj check...%s" fulln
))
3070 (let ((oa speedbar-obj-alist
))
3071 (while (and oa
(not (string-match (car (car oa
)) fulln
)))
3073 (if (not (and oa
(file-exists-p (concat (file-name-sans-extension fulln
)
3076 ;; Find out if the object is out of date or not.
3077 (let ((date1 (nth 5 (file-attributes fulln
)))
3078 (date2 (nth 5 (file-attributes (concat
3079 (file-name-sans-extension fulln
)
3081 (if (or (< (car date1
) (car date2
))
3082 (and (= (car date1
) (car date2
))
3083 (< (nth 1 date1
) (nth 1 date2
))))
3084 (car speedbar-obj-indicator
)
3085 (cdr speedbar-obj-indicator
)))))))
3087 ;;; Clicking Activity
3089 (defun speedbar-position-cursor-on-line ()
3090 "Position the cursor on a line."
3091 (let ((oldpos (point)))
3093 (if (looking-at "[0-9]+:\\s-*..?.? ")
3094 (goto-char (1- (match-end 0)))
3095 (goto-char oldpos
))))
3097 (defun speedbar-click (e)
3098 "Activate any speedbar buttons where the mouse is clicked.
3099 This must be bound to a mouse event. A button is any location of text
3100 with a mouse face that has a text property called `speedbar-function'.
3101 Argument E is the click event."
3102 ;; Backward compatibility let statement.
3103 (let ((speedbar-power-click dframe-power-click
))
3104 (speedbar-do-function-pointer))
3105 (dframe-quick-mouse e
))
3107 (defun speedbar-do-function-pointer ()
3108 "Look under the cursor and examine the text properties.
3109 From this extract the file/tag name, token, indentation level and call
3110 a function if appropriate."
3111 (let* ((speedbar-frame (speedbar-current-frame))
3112 (fn (get-text-property (point) 'speedbar-function
))
3113 (tok (get-text-property (point) 'speedbar-token
))
3114 ;; The 1-,+ is safe because scaning starts AFTER the point
3115 ;; specified. This lets the search include the character the
3117 (tp (previous-single-property-change
3118 (1+ (point)) 'speedbar-function
))
3119 (np (next-single-property-change
3120 (point) 'speedbar-function
))
3121 (txt (buffer-substring-no-properties (or tp
(point-min))
3122 (or np
(point-max))))
3123 (dent (save-excursion (beginning-of-line)
3125 (if (looking-at "[0-9]+")
3126 (buffer-substring-no-properties
3127 (match-beginning 0) (match-end 0))
3129 ;;(speedbar-message "%S:%S:%S:%s" fn tok txt dent)
3130 (and fn
(funcall fn txt tok dent
)))
3131 (speedbar-position-cursor-on-line))
3133 ;;; Reading info from the speedbar buffer
3135 (defun speedbar-line-text (&optional p
)
3136 "Retrieve the text after prefix junk for the current line.
3137 Optional argument P is where to start the search from."
3139 (if p
(goto-char p
))
3141 (if (looking-at (concat
3142 "\\([0-9]+\\): *[[<{]?[-+?= ][]>}@()|] \\([^ \n]+\\)"))
3143 (get-text-property (match-beginning 2) 'speedbar-text
)
3146 (defun speedbar-line-token (&optional p
)
3147 "Retrieve the token information after the prefix junk for the current line.
3148 Optional argument P is where to start the search from."
3150 (if p
(goto-char p
))
3152 (if (looking-at (concat
3153 "\\([0-9]+\\): *[[<{]?[-+?= ][]>}@()|] \\([^ \n]+\\)\\("
3154 speedbar-indicator-regex
"\\)?"))
3156 (goto-char (match-beginning 2))
3157 (get-text-property (point) 'speedbar-token
))
3160 (defun speedbar-line-file (&optional p
)
3161 "Retrieve the file or whatever from the line at point P.
3162 The return value is a string representing the file. If it is a
3163 directory, then it is the directory name."
3167 (let ((f (speedbar-line-text p
)))
3169 (let* ((depth (string-to-number (match-string 1)))
3170 (directory (speedbar-line-directory depth
)))
3171 (if (file-exists-p (concat directory f
))
3172 (concat directory f
)
3176 (defun speedbar-goto-this-file (file)
3177 "If FILE is displayed, go to this line and return t.
3178 Otherwise do not move and return nil."
3179 (let ((directory (substring (file-name-directory (expand-file-name file
))
3180 (length (expand-file-name default-directory
))))
3183 (goto-char (point-min))
3184 ;; scan all the directories
3185 (while (and directory
(not (eq directory t
)))
3186 (if (string-match "^[/\\]?\\([^/\\]+\\)" directory
)
3187 (let ((pp (match-string 1 directory
)))
3188 (if (save-match-data
3189 (re-search-forward (concat "> " (regexp-quote pp
) "$")
3191 (setq directory
(substring directory
(match-end 1)))
3192 (setq directory nil
)))
3193 (setq directory t
)))
3194 ;; find the file part
3195 (if (or (not directory
) (string= (file-name-nondirectory file
) ""))
3196 ;; only had a dir part
3199 (speedbar-position-cursor-on-line)
3201 (goto-char dest
) nil
)
3202 ;; find the file part
3203 (let ((nd (file-name-nondirectory file
)))
3204 (if (re-search-forward
3205 (concat "] \\(" (regexp-quote nd
)
3206 "\\)\\(" speedbar-indicator-regex
"\\)$")
3209 (speedbar-position-cursor-on-line)
3214 (defun speedbar-line-directory (&optional depth
)
3215 "Retrieve the directory name associated with the current line.
3216 This may require traversing backwards from DEPTH and combining the default
3217 directory with these items. This function is replaceable in
3218 `speedbar-mode-functions-list' as `speedbar-line-directory'."
3221 (let ((rf (speedbar-fetch-replacement-function 'speedbar-line-directory
)))
3222 (if rf
(funcall rf depth
) default-directory
))))
3224 (defun speedbar-files-line-directory (&optional depth
)
3225 "Retrieve the directoryname associated with the current line.
3226 This may require traversing backwards from DEPTH and combining the default
3227 directory with these items."
3233 (looking-at "^\\([0-9]+\\):")
3234 (setq depth
(string-to-number (match-string 1)))))
3235 (let ((directory nil
))
3236 (setq depth
(1- depth
))
3237 (while (/= depth -
1)
3238 (if (not (re-search-backward (format "^%d:" depth
) nil t
))
3239 (error "Error building filename of tag")
3240 (cond ((looking-at "[0-9]+:\\s-*<->\\s-+\\([^\n]+\\)")
3241 (setq directory
(concat (speedbar-line-text)
3244 ((looking-at "[0-9]+:\\s-*[-]\\s-+\\([^\n]+\\)")
3245 ;; This is the start of our directory.
3246 (setq directory
(speedbar-line-text)))))
3247 (setq depth
(1- depth
)))
3249 (string-match (concat speedbar-indicator-regex
"$")
3251 (setq directory
(substring directory
0 (match-beginning 0))))
3252 (concat default-directory directory
)))))
3254 (defun speedbar-directory-line (directory)
3255 "Position the cursor on the line specified by DIRECTORY."
3257 (if (string-match "[/\\]$" directory
)
3258 (setq directory
(substring directory
0 (match-beginning 0))))
3259 (let ((nomatch t
) (depth 0)
3260 (fname (file-name-nondirectory directory
))
3261 (pname (file-name-directory directory
)))
3262 (if (not (member pname speedbar-shown-directories
))
3263 (error "Internal Error: File %s not shown in speedbar" directory
))
3264 (goto-char (point-min))
3267 (concat "[]>] \\(" (regexp-quote fname
)
3268 "\\)\\(" speedbar-indicator-regex
"\\)?$")
3271 (looking-at "\\([0-9]+\\):")
3272 (setq depth
(string-to-number (match-string 0))
3273 nomatch
(not (string= pname
(speedbar-line-directory depth
))))
3278 (defun speedbar-edit-line ()
3279 "Edit whatever tag or file is on the current speedbar line."
3283 ;; If this fails, then it is a non-standard click, and as such,
3284 ;; perfectly allowed.
3285 (if (re-search-forward "[]>?}] [^ ]"
3286 (save-excursion (end-of-line) (point))
3290 (speedbar-do-function-pointer))
3292 (speedbar-do-function-pointer)))
3294 (defun speedbar-expand-line (&optional arg
)
3295 "Expand the line under the cursor.
3296 With universal argument ARG, flush cached data."
3299 (let* ((dframe-power-click arg
)
3300 (speedbar-power-click arg
))
3303 (re-search-forward ":\\s-*.\\+. "
3304 (save-excursion (end-of-line) (point)))
3306 (speedbar-do-function-pointer))
3307 (error (speedbar-position-cursor-on-line)))))
3309 (defun speedbar-flush-expand-line ()
3310 "Expand the line under the cursor and flush any cached information."
3312 (speedbar-expand-line 1))
3314 (defun speedbar-contract-line ()
3315 "Contract the line under the cursor."
3320 (re-search-forward ":\\s-*.-. "
3321 (save-excursion (end-of-line) (point)))
3323 (speedbar-do-function-pointer))
3324 (error (speedbar-position-cursor-on-line))))
3326 (defun speedbar-toggle-line-expansion ()
3327 "Contract or expand the line under the cursor."
3332 (re-search-forward ":\\s-*.[-+]. "
3333 (save-excursion (end-of-line) (point)))
3335 (speedbar-do-function-pointer))
3336 (error (speedbar-position-cursor-on-line))))
3338 (defun speedbar-expand-line-descendants (&optional arg
)
3339 "Expand the line under the cursor and all descendants.
3340 Optional argument ARG indicates that any cache should be flushed."
3342 (speedbar-expand-line arg
)
3343 ;; Now, inside the area expaded here, expand all subnodes of
3344 ;; the same descendant type.
3346 (speedbar-next 1) ;; Move into the list.
3351 (speedbar-expand-line-descendants arg
)
3352 (speedbar-restricted-next 1))
3353 (error (setq err t
))))))
3356 (defun speedbar-contract-line-descendants ()
3357 "Expand the line under the cursor and all descendants."
3359 (speedbar-contract-line)
3360 ;; Don't need to do anything else since all descendants are
3361 ;; hidden by default anyway. Yay! It's easy.
3364 (defun speedbar-find-file (text token indent
)
3365 "Speedbar click handler for filenames.
3366 TEXT, the file will be displayed in the attached frame.
3367 TOKEN is unused, but required by the click handler. INDENT is the
3368 current indentation level."
3369 (let ((cdd (speedbar-line-directory indent
)))
3370 ;; Run before visiting file hook here.
3371 (let ((f (selected-frame)))
3372 (dframe-select-attached-frame speedbar-frame
)
3373 (run-hooks 'speedbar-before-visiting-file-hook
)
3375 (speedbar-find-file-in-frame (concat cdd text
))
3376 (speedbar-stealthy-updates)
3377 (run-hooks 'speedbar-visiting-file-hook
)
3378 ;; Reset the timer with a new timeout when cliking a file
3379 ;; in case the user was navigating directories, we can cancel
3380 ;; that other timer.
3381 (speedbar-set-timer dframe-update-speed
))
3382 (dframe-maybee-jump-to-attached-frame))
3384 (defun speedbar-dir-follow (text token indent
)
3385 "Speedbar click handler for directory names.
3386 Clicking a directory will cause the speedbar to list files in
3387 the subdirectory TEXT. TOKEN is an unused requirement. The
3388 subdirectory chosen will be at INDENT level."
3389 (setq default-directory
3390 (concat (expand-file-name (concat (speedbar-line-directory indent
) text
))
3392 ;; Because we leave speedbar as the current buffer,
3393 ;; update contents will change directory without
3394 ;; having to touch the attached frame. Turn off smart expand just
3396 (let ((speedbar-smart-directory-expand-flag nil
))
3397 (speedbar-update-contents))
3398 (speedbar-set-timer speedbar-navigating-speed
)
3399 (setq speedbar-last-selected-file nil
)
3400 (speedbar-stealthy-updates))
3402 (defun speedbar-delete-subblock (indent)
3403 "Delete text from point to indentation level INDENT or greater.
3404 Handles end-of-sublist smartly."
3405 (speedbar-with-writable
3407 (end-of-line) (forward-char 1)
3408 (let ((start (point)))
3409 (while (and (looking-at "^\\([0-9]+\\):")
3410 (> (string-to-number (match-string 1)) indent
)
3413 (beginning-of-line))
3414 (delete-region start
(point))))))
3416 (defun speedbar-dired (text token indent
)
3417 "Speedbar click handler for directory expand button.
3418 Clicking this button expands or contracts a directory. TEXT is the
3419 button clicked which has either a + or -. TOKEN is the directory to be
3420 expanded. INDENT is the current indentation level."
3421 (cond ((string-match "+" text
) ;we have to expand this dir
3422 (setq speedbar-shown-directories
3423 (cons (expand-file-name
3424 (concat (speedbar-line-directory indent
) token
"/"))
3425 speedbar-shown-directories
))
3426 (speedbar-change-expand-button-char ?-
)
3427 (speedbar-reset-scanners)
3429 (end-of-line) (forward-char 1)
3430 (speedbar-with-writable
3431 (speedbar-default-directory-list
3432 (concat (speedbar-line-directory indent
) token
"/")
3434 ((string-match "-" text
) ;we have to contract this node
3435 (speedbar-reset-scanners)
3436 (let ((oldl speedbar-shown-directories
)
3438 (td (expand-file-name
3439 (concat (speedbar-line-directory indent
) token
))))
3441 (if (not (string-match (concat "^" (regexp-quote td
)) (car oldl
)))
3442 (setq newl
(cons (car oldl
) newl
)))
3443 (setq oldl
(cdr oldl
)))
3444 (setq speedbar-shown-directories
(nreverse newl
)))
3445 (speedbar-change-expand-button-char ?
+)
3446 (speedbar-delete-subblock indent
)
3448 (t (error "Ooops... not sure what to do")))
3449 (speedbar-center-buffer-smartly)
3450 (save-excursion (speedbar-stealthy-updates)))
3452 (defun speedbar-directory-buttons-follow (text token indent
)
3453 "Speedbar click handler for default directory buttons.
3454 TEXT is the button clicked on. TOKEN is the directory to follow.
3455 INDENT is the current indentation level and is unused."
3456 (if (string-match "^[A-z]:$" token
)
3457 (setq default-directory
(concat token
"/"))
3458 (setq default-directory token
))
3459 ;; Because we leave speedbar as the current buffer,
3460 ;; update contents will change directory without
3461 ;; having to touch the attached frame.
3462 (speedbar-update-contents)
3463 (speedbar-set-timer speedbar-navigating-speed
))
3465 (defun speedbar-tag-file (text token indent
)
3466 "The cursor is on a selected line. Expand the tags in the specified file.
3467 The parameter TEXT and TOKEN are required, where TEXT is the button
3468 clicked, and TOKEN is the file to expand. INDENT is the current
3470 (cond ((string-match "+" text
) ;we have to expand this file
3471 (let* ((fn (expand-file-name (concat (speedbar-line-directory indent
)
3474 (lst (speedbar-fetch-dynamic-tags fn
)))
3475 ;; if no list, then remove expando button
3477 (speedbar-change-expand-button-char ??
)
3478 (speedbar-change-expand-button-char ?-
)
3479 (speedbar-with-writable
3481 (end-of-line) (forward-char 1)
3482 (funcall (car lst
) indent
(cdr lst
)))))))
3483 ((string-match "-" text
) ;we have to contract this node
3484 (speedbar-change-expand-button-char ?
+)
3485 (speedbar-delete-subblock indent
))
3486 (t (error "Ooops... not sure what to do")))
3487 (speedbar-center-buffer-smartly))
3489 (defun speedbar-tag-find (text token indent
)
3490 "For the tag TEXT in a file TOKEN, go to that position.
3491 INDENT is the current indentation level."
3492 (let ((file (speedbar-line-directory indent
)))
3493 (let ((f (selected-frame)))
3494 (dframe-select-attached-frame speedbar-frame
)
3495 (run-hooks 'speedbar-before-visiting-tag-hook
)
3497 (speedbar-find-file-in-frame file
)
3498 (save-excursion (speedbar-stealthy-updates))
3499 ;; Reset the timer with a new timeout when cliking a file
3500 ;; in case the user was navigating directories, we can cancel
3501 ;; that other timer.
3502 (speedbar-set-timer dframe-update-speed
)
3504 (run-hooks 'speedbar-visiting-tag-hook
)
3505 (dframe-maybee-jump-to-attached-frame)
3508 (defun speedbar-tag-expand (text token indent
)
3509 "Expand a tag sublist. Imenu will return sub-lists of specialized tag types.
3510 Etags does not support this feature. TEXT will be the button
3511 string. TOKEN will be the list, and INDENT is the current indentation
3513 (cond ((string-match "+" text
) ;we have to expand this file
3514 (speedbar-change-expand-button-char ?-
)
3515 (speedbar-with-writable
3517 (end-of-line) (forward-char 1)
3518 (speedbar-insert-generic-list indent token
'speedbar-tag-expand
3519 'speedbar-tag-find
))))
3520 ((string-match "-" text
) ;we have to contract this node
3521 (speedbar-change-expand-button-char ?
+)
3522 (speedbar-delete-subblock indent
))
3523 (t (error "Ooops... not sure what to do")))
3524 (speedbar-center-buffer-smartly))
3526 ;;; Loading files into the attached frame.
3528 (defcustom speedbar-select-frame-method
'attached
3529 "*Specify how to select a frame for displaying a file.
3530 A value of 'attached means to use the attached frame (the frame
3531 that speedbar was started from.) A number such as 1 or -1 means to
3532 pass that number to `other-frame' while selecting a frame from speedbar."
3536 (defun speedbar-find-file-in-frame (file)
3537 "This will load FILE into the speedbar attached frame.
3538 If the file is being displayed in a different frame already, then raise that
3540 (let* ((buff (find-file-noselect file
))
3541 (bwin (get-buffer-window buff
0)))
3544 (select-window bwin
)
3545 (raise-frame (window-frame bwin
)))
3546 (if dframe-power-click
3547 (let ((pop-up-frames t
)) (select-window (display-buffer buff
)))
3548 (if (numberp speedbar-select-frame-method
)
3549 (other-frame speedbar-select-frame-method
)
3550 (dframe-select-attached-frame speedbar-frame
))
3551 (switch-to-buffer buff
))))
3554 ;;; Centering Utility
3556 (defun speedbar-center-buffer-smartly ()
3557 "Recenter a speedbar buffer so the current indentation level is all visible.
3558 This assumes that the cursor is on a file, or tag of a file which the user is
3561 (save-selected-window
3563 (select-window (get-buffer-window speedbar-buffer t
))
3565 (set-buffer speedbar-buffer
)
3567 (if (<= (count-lines (point-min) (point-max))
3568 (1- (window-height (selected-window))))
3569 ;; whole buffer fits
3572 (goto-char (point-min))
3576 (let (depth start end exp p
)
3579 (setq depth
(if (looking-at "[0-9]+")
3580 (string-to-number (buffer-substring-no-properties
3581 (match-beginning 0) (match-end 0)))
3583 (setq exp
(format "^%d:" depth
)))
3586 (if (re-search-backward exp nil t
)
3587 (setq start
(point))
3588 (setq start
(point-min)))
3589 (save-excursion ;Not sure about this part.
3592 (while (and (not (re-search-forward exp nil t
))
3594 (setq depth
(1- depth
))
3595 (setq exp
(format "^%d:" depth
)))
3598 (setq end
(point-max)))))
3599 ;; Now work out the details of centering
3600 (let ((nl (count-lines start end
))
3601 (wl (1- (window-height (selected-window))))
3604 ;; We can't fit it all, so just center on cursor
3605 (progn (goto-char start
)
3607 ;; we can fit everything on the screen, but...
3608 (if (and (pos-visible-in-window-p start
(selected-window))
3609 (pos-visible-in-window-p end
(selected-window)))
3612 ;; we need to do something...
3614 (let ((newcent (/ (- (window-height (selected-window)) nl
) 2))
3615 (lte (count-lines start
(point-max))))
3616 (if (and (< (+ newcent lte
) (window-height (selected-window)))
3617 (> (- (window-height (selected-window)) lte
1)
3619 (setq newcent
(- (window-height (selected-window))
3621 (recenter newcent
))))
3624 ;;; Tag Management -- List of expanders:
3626 (defun speedbar-fetch-dynamic-tags (file)
3627 "Return a list of tags generated dynamically from FILE.
3628 This uses the entries in `speedbar-dynamic-tags-function-list'
3629 to find the proper tags. It is up to each of those individual
3630 functions to do caching and flushing if appropriate."
3632 ;; If a file is in memory, switch to that buffer. This allows
3633 ;; us to use the local variable. If the file is on disk, we
3634 ;; can try a few of the defaults that can get tags without
3635 ;; opening the file.
3636 (if (get-file-buffer file
)
3637 (set-buffer (get-file-buffer file
)))
3638 ;; If there is a buffer-local value of
3639 ;; speedbar-dynamic-tags-function-list, it will now be available.
3640 (let ((dtf speedbar-dynamic-tags-function-list
)
3642 (while (and (eq ret t
) dtf
)
3644 (if (fboundp (car (car dtf
)))
3645 (funcall (car (car dtf
)) file
)
3648 (setq dtf
(cdr dtf
))))
3650 ;; No valid tag list, return nil
3652 ;; We have some tags. Return the list with the insert fn
3654 (cons (cdr (car dtf
)) ret
)))))
3656 ;;; Tag Management -- Imenu
3658 (if (not speedbar-use-imenu-flag
)
3662 (eval-when-compile (condition-case nil
(require 'imenu
) (error nil
)))
3664 (defun speedbar-fetch-dynamic-imenu (file)
3665 "Load FILE into a buffer, and generate tags using Imenu.
3666 Returns the tag list, or t for an error."
3667 ;; Load this AND compile it in
3669 (set-buffer (find-file-noselect file
))
3670 (if dframe-power-click
(setq imenu--index-alist nil
))
3672 (let ((index-alist (imenu--make-index-alist t
)))
3673 (if speedbar-sort-tags
3674 (sort (copy-alist index-alist
)
3675 (lambda (a b
) (string< (car a
) (car b
))))
3680 ;;; Tag Management -- etags (old XEmacs compatibility part)
3682 (defvar speedbar-fetch-etags-parse-list
3683 '(;; Note that java has the same parse-group as c
3684 ("\\.\\([cChH]\\|c\\+\\+\\|cpp\\|cc\\|hh\\|java\\|cxx\\|hxx\\)\\'" .
3685 speedbar-parse-c-or-c
++tag
)
3686 ("^\\.emacs$\\|.\\(el\\|l\\|lsp\\)\\'" .
3687 "def[^i]+\\s-+\\(\\(\\w\\|[-_]\\)+\\)\\s-*\C-?")
3688 ; ("\\.\\([fF]\\|for\\|FOR\\|77\\|90\\)\\'" .
3689 ; speedbar-parse-fortran77-tag)
3690 ("\\.tex\\'" . speedbar-parse-tex-string
)
3692 "\\(\\(FUNCTION\\|function\\|PROCEDURE\\|procedure\\)\\s-+\\([a-zA-Z0-9_.:]+\\)\\)\\s-*(?^?")
3694 "Associations of file extensions and expressions for extracting tags.
3695 To add a new file type, you would want to add a new association to the
3696 list, where the car is the file match, and the cdr is the way to
3697 extract an element from the tags output. If the output is complex,
3698 use a function symbol instead of regexp. The function should expect
3699 to be at the beginning of a line in the etags buffer.
3701 This variable is ignored if `speedbar-use-imenu-flag' is non-nil.")
3703 (defvar speedbar-fetch-etags-command
"etags"
3704 "*Command used to create an etags file.
3706 This variable is ignored if `speedbar-use-imenu-flag' is t.")
3708 (defvar speedbar-fetch-etags-arguments
'("-D" "-I" "-o" "-")
3709 "*List of arguments to use with `speedbar-fetch-etags-command'.
3710 This creates an etags output buffer. Use `speedbar-toggle-etags' to
3711 modify this list conveniently.
3713 This variable is ignored if `speedbar-use-imenu-flag' is t.")
3715 (defun speedbar-toggle-etags (flag)
3716 "Toggle FLAG in `speedbar-fetch-etags-arguments'.
3717 FLAG then becomes a member of etags command line arguments. If flag
3718 is \"sort\", then toggle the value of `speedbar-sort-tags'. If its
3719 value is \"show\" then toggle the value of
3720 `speedbar-show-unknown-files'.
3722 This function is a convenience function for XEmacs menu created by
3723 Farzin Guilak <farzin@protocol.com>."
3726 ((equal flag
"sort")
3727 (setq speedbar-sort-tags
(not speedbar-sort-tags
)))
3728 ((equal flag
"show")
3729 (setq speedbar-show-unknown-files
(not speedbar-show-unknown-files
)))
3730 ((or (equal flag
"-C")
3733 (if (member flag speedbar-fetch-etags-arguments
)
3734 (setq speedbar-fetch-etags-arguments
3735 (delete flag speedbar-fetch-etags-arguments
))
3736 (add-to-list 'speedbar-fetch-etags-arguments flag
)))
3739 (defun speedbar-fetch-dynamic-etags (file)
3740 "For FILE, run etags and create a list of symbols extracted.
3741 Each symbol will be associated with its line position in FILE."
3742 (let ((newlist nil
))
3745 (if (get-buffer "*etags tmp*")
3746 (kill-buffer "*etags tmp*")) ;kill to clean it up
3747 (if (<= 1 speedbar-verbosity-level
)
3748 (speedbar-message "Fetching etags..."))
3749 (set-buffer (get-buffer-create "*etags tmp*"))
3750 (apply 'call-process speedbar-fetch-etags-command nil
3751 (current-buffer) nil
3752 (append speedbar-fetch-etags-arguments
(list file
)))
3753 (goto-char (point-min))
3754 (if (<= 1 speedbar-verbosity-level
)
3755 (speedbar-message "Fetching etags..."))
3757 (let ((exprlst speedbar-fetch-etags-parse-list
)
3759 (while (and (not ans
) exprlst
)
3760 (if (string-match (car (car exprlst
)) file
)
3761 (setq ans
(car exprlst
)))
3762 (setq exprlst
(cdr exprlst
)))
3766 (set-buffer (get-buffer-create "*etags tmp*"))
3767 (while (not (save-excursion (end-of-line) (eobp)))
3769 (setq tnl
(speedbar-extract-one-symbol expr
)))
3770 (if tnl
(setq newlist
(cons tnl newlist
)))
3773 "Sorry, no support for a file of that extension"))))
3775 (if speedbar-sort-tags
3776 (sort newlist
(lambda (a b
) (string< (car a
) (car b
))))
3777 (reverse newlist
))))
3779 ;; This bit donated by Farzin Guilak <farzin@protocol.com> but I'm not
3780 ;; sure it's needed with the different sorting method.
3782 ;(defun speedbar-clean-etags()
3783 ; "Removes spaces before the ^? character, and removes `#define',
3784 ;return types, etc. preceding tags. This ensures that the sort operation
3785 ;works on the tags, not the return types."
3787 ; (goto-char (point-min))
3789 ; (re-search-forward "(?[ \t](?\C-?" nil t)
3790 ; (replace-match "\C-?" nil nil))
3791 ; (goto-char (point-min))
3793 ; (re-search-forward "\\(.*[ \t]+\\)\\([^ \t\n]+.*\C-?\\)" nil t)
3794 ; (delete-region (match-beginning 1) (match-end 1)))))
3796 (defun speedbar-extract-one-symbol (expr)
3797 "At point, return nil, or one alist in the form: (SYMBOL . POSITION)
3798 The line should contain output from etags. Parse the output using the
3799 regular expression EXPR."
3800 (let* ((sym (if (stringp expr
)
3802 (re-search-forward expr
(save-excursion
3805 (buffer-substring-no-properties (match-beginning 1)
3808 (pos (let ((j (re-search-forward "[\C-?\C-a]\\([0-9]+\\),\\([0-9]+\\)"
3814 (1+ (string-to-number (buffer-substring-no-properties
3822 (defun speedbar-parse-c-or-c++tag
()
3823 "Parse a C or C++ tag, which tends to be a little complex."
3825 (let ((bound (save-excursion (end-of-line) (point))))
3826 (cond ((re-search-forward "\C-?\\([^\C-a]+\\)\C-a" bound t
)
3827 (buffer-substring-no-properties (match-beginning 1)
3829 ((re-search-forward "\\<\\([^ \t]+\\)\\s-+new(" bound t
)
3830 (buffer-substring-no-properties (match-beginning 1)
3832 ((re-search-forward "\\<\\([^ \t(]+\\)\\s-*(\C-?" bound t
)
3833 (buffer-substring-no-properties (match-beginning 1)
3838 (defun speedbar-parse-tex-string ()
3839 "Parse a Tex string. Only find data which is relevant."
3841 (let ((bound (save-excursion (end-of-line) (point))))
3842 (cond ((re-search-forward "\\(\\(sub\\)*section\\|chapter\\|cite\\)\\s-*{[^\C-?}]*}?" bound t
)
3843 (buffer-substring-no-properties (match-beginning 0)
3848 ;;; BUFFER DISPLAY mode.
3850 (defvar speedbar-buffers-key-map nil
3851 "Keymap used when in the buffers display mode.")
3853 (if speedbar-buffers-key-map
3855 (setq speedbar-buffers-key-map
(speedbar-make-specialized-keymap))
3857 ;; Basic tree features
3858 (define-key speedbar-buffers-key-map
"e" 'speedbar-edit-line
)
3859 (define-key speedbar-buffers-key-map
"\C-m" 'speedbar-edit-line
)
3860 (define-key speedbar-buffers-key-map
"+" 'speedbar-expand-line
)
3861 (define-key speedbar-buffers-key-map
"=" 'speedbar-expand-line
)
3862 (define-key speedbar-buffers-key-map
"-" 'speedbar-contract-line
)
3863 (define-key speedbar-buffers-key-map
" " 'speedbar-toggle-line-expansion
)
3865 ;; Buffer specific keybindings
3866 (define-key speedbar-buffers-key-map
"k" 'speedbar-buffer-kill-buffer
)
3867 (define-key speedbar-buffers-key-map
"r" 'speedbar-buffer-revert-buffer
)
3871 (defvar speedbar-buffer-easymenu-definition
3872 '(["Jump to buffer" speedbar-edit-line t
]
3873 ["Expand File Tags" speedbar-expand-line
3874 (save-excursion (beginning-of-line)
3875 (looking-at "[0-9]+: *.\\+. "))]
3876 ["Flush Cache & Expand" speedbar-flush-expand-line
3877 (save-excursion (beginning-of-line)
3878 (looking-at "[0-9]+: *.\\+. "))]
3879 ["Contract File Tags" speedbar-contract-line
3880 (save-excursion (beginning-of-line)
3881 (looking-at "[0-9]+: *.-. "))]
3883 ["Kill Buffer" speedbar-buffer-kill-buffer
3884 (save-excursion (beginning-of-line)
3885 (looking-at "[0-9]+: *.[-+?]. "))]
3886 ["Revert Buffer" speedbar-buffer-revert-buffer
3887 (save-excursion (beginning-of-line)
3888 (looking-at "[0-9]+: *.[-+?]. "))]
3890 "Menu item elements shown when displaying a buffer list.")
3892 (defun speedbar-buffer-buttons (directory zero
)
3893 "Create speedbar buttons based on the buffers currently loaded.
3894 DIRECTORY is the directory to the currently active buffer, and ZERO is 0."
3895 (speedbar-buffer-buttons-engine nil
))
3897 (defun speedbar-buffer-buttons-temp (directory zero
)
3898 "Create speedbar buttons based on the buffers currently loaded.
3899 DIRECTORY is the directory to the currently active buffer, and ZERO is 0."
3900 (speedbar-buffer-buttons-engine t
))
3902 (defun speedbar-buffer-buttons-engine (temp)
3903 "Create speedbar buffer buttons.
3904 If TEMP is non-nil, then clicking on a buffer restores the previous display."
3905 (speedbar-insert-separator "Active Buffers:")
3906 (let ((bl (buffer-list))
3907 (case-fold-search t
))
3909 (if (string-match "^[ *]" (buffer-name (car bl
)))
3911 (let* ((known (string-match speedbar-file-regexp
3912 (buffer-name (car bl
))))
3913 (expchar (if known ?
+ ??
))
3914 (fn (if known
'speedbar-tag-file nil
))
3915 (fname (save-excursion (set-buffer (car bl
))
3916 (buffer-file-name))))
3917 (speedbar-make-tag-line 'bracket expchar fn
3918 (if fname
(file-name-nondirectory fname
))
3919 (buffer-name (car bl
))
3920 'speedbar-buffer-click temp
3921 'speedbar-file-face
0)
3922 (speedbar-buffers-tail-notes (car bl
))))
3924 (setq bl
(buffer-list))
3925 (speedbar-insert-separator "Scratch Buffers:")
3927 (if (not (string-match "^\\*" (buffer-name (car bl
))))
3929 (if (eq (car bl
) speedbar-buffer
)
3931 (speedbar-make-tag-line 'bracket ?? nil nil
3932 (buffer-name (car bl
))
3933 'speedbar-buffer-click temp
3934 'speedbar-file-face
0)
3935 (speedbar-buffers-tail-notes (car bl
))))
3937 (setq bl
(buffer-list))
3938 ;;(speedbar-insert-separator "Hidden Buffers:")
3940 ;; (if (not (string-match "^ " (buffer-name (car bl))))
3942 ;; (if (eq (car bl) speedbar-buffer)
3944 ;; (speedbar-make-tag-line 'bracket ?? nil nil
3945 ;; (buffer-name (car bl))
3946 ;; 'speedbar-buffer-click temp
3947 ;; 'speedbar-file-face 0)
3948 ;; (speedbar-buffers-tail-notes (car bl))))
3949 ;; (setq bl (cdr bl)))
3952 (defun speedbar-buffers-tail-notes (buffer)
3953 "Add a note to the end of the last tag line.
3954 Argument BUFFER is the buffer being tested."
3958 (setq mod
(buffer-modified-p)
3959 ro buffer-read-only
))
3960 (if ro
(speedbar-insert-button "%" nil nil nil nil t
))))
3962 (defun speedbar-buffers-item-info ()
3963 "Display information about the current buffer on the current line."
3964 (or (speedbar-item-info-tag-helper)
3965 (let* ((item (speedbar-line-text))
3966 (buffer (if item
(get-buffer item
) nil
)))
3968 (speedbar-message "%s%s %S %d %s"
3969 (if (buffer-modified-p buffer
) "* " "")
3971 (save-excursion (set-buffer buffer
) major-mode
)
3972 (save-excursion (set-buffer buffer
)
3974 (or (buffer-file-name buffer
) "<No file>"))))))
3976 (defun speedbar-buffers-line-directory (&optional depth
)
3977 "Fetch the full directory to the file (buffer) specified on the current line.
3978 Optional argument DEPTH specifies the current depth of the back search."
3981 (let ((start (point)))
3982 ;; Buffers are always at level 0
3983 (if (not (re-search-backward "^0:" nil t
))
3985 (let* ((bn (speedbar-line-text))
3986 (buffer (if bn
(get-buffer bn
))))
3991 (or (save-excursion (set-buffer buffer
)
3994 (buffer-file-name buffer
))))))))
3996 (defun speedbar-buffer-click (text token indent
)
3997 "When the users clicks on a buffer-button in speedbar.
3998 TEXT is the buffer's name, TOKEN and INDENT are unused."
3999 (if dframe-power-click
4000 (let ((pop-up-frames t
)) (select-window (display-buffer text
)))
4001 (dframe-select-attached-frame speedbar-frame
)
4002 (switch-to-buffer text
)
4003 (if token
(speedbar-change-initial-expansion-list
4004 speedbar-previously-used-expansion-list-name
))))
4006 (defun speedbar-buffer-kill-buffer ()
4007 "Kill the buffer the cursor is on in the speedbar buffer."
4010 (let ((text (speedbar-line-text)))
4011 (if (and (get-buffer text
)
4012 (speedbar-y-or-n-p (format "Kill buffer %s? " text
)))
4014 (speedbar-refresh)))))
4016 (defun speedbar-buffer-revert-buffer ()
4017 "Revert the buffer the cursor is on in the speedbar buffer."
4021 ;; If this fails, then it is a non-standard click, and as such,
4022 ;; perfectly allowed
4023 (if (re-search-forward "[]>?}] [^ ]"
4024 (save-excursion (end-of-line) (point))
4028 (buffer-substring (point) (save-excursion
4031 (if (get-buffer text
)
4034 (revert-buffer t
)))))))
4037 ;;; Useful hook values and such.
4039 (defvar speedbar-highlight-one-tag-line nil
4040 "Overlay used for highlighting the most recently jumped to tag line.")
4042 (defun speedbar-highlight-one-tag-line ()
4043 "Highlight the current line, unhighlighting a previously jumped to line."
4044 (speedbar-unhighlight-one-tag-line)
4045 (setq speedbar-highlight-one-tag-line
4046 (speedbar-make-overlay (save-excursion (beginning-of-line) (point))
4047 (save-excursion (end-of-line)
4050 (speedbar-overlay-put speedbar-highlight-one-tag-line
'face
4051 'speedbar-highlight-face
)
4052 (add-hook 'pre-command-hook
'speedbar-unhighlight-one-tag-line
)
4055 (defun speedbar-unhighlight-one-tag-line ()
4056 "Unhighlight the currently highlighted line."
4057 (if speedbar-highlight-one-tag-line
4059 (speedbar-delete-overlay speedbar-highlight-one-tag-line
)
4060 (setq speedbar-highlight-one-tag-line nil
)))
4061 (remove-hook 'pre-command-hook
'speedbar-unhighlight-one-tag-line
))
4063 (defun speedbar-recenter-to-top ()
4064 "Recenter the current buffer so POINT is on the top of the window."
4067 (defun speedbar-recenter ()
4068 "Recenter the current buffer so POINT is in the center of the window."
4069 (recenter (/ (window-height (selected-window)) 2)))
4072 ;;; Color loading section.
4074 (defface speedbar-button-face
'((((class color
) (background light
))
4075 (:foreground
"green4"))
4076 (((class color
) (background dark
))
4077 (:foreground
"green3")))
4078 "Face used for +/- buttons."
4079 :group
'speedbar-faces
)
4081 (defface speedbar-file-face
'((((class color
) (background light
))
4082 (:foreground
"cyan4"))
4083 (((class color
) (background dark
))
4084 (:foreground
"cyan"))
4086 "Face used for file names."
4087 :group
'speedbar-faces
)
4089 (defface speedbar-directory-face
'((((class color
) (background light
))
4090 (:foreground
"blue4"))
4091 (((class color
) (background dark
))
4092 (:foreground
"light blue")))
4093 "Face used for directory names."
4094 :group
'speedbar-faces
)
4095 (defface speedbar-tag-face
'((((class color
) (background light
))
4096 (:foreground
"brown"))
4097 (((class color
) (background dark
))
4098 (:foreground
"yellow")))
4099 "Face used for displaying tags."
4100 :group
'speedbar-faces
)
4102 (defface speedbar-selected-face
'((((class color
) (background light
))
4103 (:foreground
"red" :underline t
))
4104 (((class color
) (background dark
))
4105 (:foreground
"red" :underline t
))
4107 "Face used to underline the file in the active window."
4108 :group
'speedbar-faces
)
4110 (defface speedbar-highlight-face
'((((class color
) (background light
))
4111 (:background
"green"))
4112 (((class color
) (background dark
))
4113 (:background
"sea green"))
4114 (((class grayscale monochrome
)
4116 (:background
"black"))
4117 (((class grayscale monochrome
)
4119 (:background
"white")))
4120 "Face used for highlighting buttons with the mouse."
4121 :group
'speedbar-faces
)
4123 (defface speedbar-separator-face
'((((class color
) (background light
))
4127 (((class color
) (background dark
))
4131 (((class grayscale monochrome
)
4133 (:background
"black"
4136 (((class grayscale monochrome
)
4138 (:background
"white"
4140 :overline
"black")))
4141 "Face used for separator labes in a display."
4142 :group
'speedbar-faces
)
4144 ;; some edebug hooks
4145 (add-hook 'edebug-setup-hook
4147 (def-edebug-spec speedbar-with-writable def-body
)))
4149 ;; Fix a font lock problem for some versions of Emacs
4150 (if (boundp 'font-lock-global-modes
)
4151 (if (listp font-lock-global-modes
)
4152 (add-to-list 'font-lock-global-modes
'(not speedbar-mode
))
4157 ;;; Obsolete variables and functions
4159 (define-obsolete-variable-alias
4160 'speedbar-ignored-path-regexp
'speedbar-ignored-directory-regexp
)
4162 (define-obsolete-variable-alias 'speedbar-ignored-path-expressions
4163 'speedbar-ignored-directory-expressions
)
4165 (define-obsolete-function-alias 'speedbar-add-ignored-path-regexp
4166 'speedbar-add-ignored-directory-regexp
)
4168 (define-obsolete-function-alias 'speedbar-line-path
4169 'speedbar-line-directory
)
4171 (define-obsolete-function-alias 'speedbar-buffers-line-path
4172 'speedbar-buffers-line-directory
)
4174 (define-obsolete-function-alias 'speedbar-path-line
4175 'speedbar-directory-line
)
4177 (define-obsolete-function-alias 'speedbar-buffers-line-path
4178 'speedbar-buffers-line-directory
)
4182 ;; run load-time hooks
4183 (run-hooks 'speedbar-load-hook
)
4185 ;; arch-tag: 4477e6d1-f78c-48b9-a503-387d3c9767d5
4186 ;;; speedbar ends here