(match): Use yellow background on light-bg terminals.
[emacs.git] / lisp / speedbar.el
blob87176d0c1c89bc2d86edde3f9c8bea2ea2d2db2b
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 2, or (at your option)
21 ;; any later version.
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.
33 ;;; Commentary:
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.
43 ;;; Notes:
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
49 ;; refreshed.
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
119 ;; the display.
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.
128 ;;; TODO:
129 ;; - Timeout directories we haven't visited in a while.
131 (require 'assoc)
132 (require 'easymenu)
133 (require 'dframe)
134 (require 'sb-image)
136 ;; customization stuff
137 (defgroup speedbar nil
138 "File and tag browser frame."
139 :group 'etags
140 :group 'tools
141 :group 'convenience
142 ; :version "20.3"
145 (defgroup speedbar-faces nil
146 "Faces used in speedbar."
147 :prefix "speedbar-"
148 :group 'speedbar
149 :group 'faces)
151 (defgroup speedbar-vc nil
152 "Version control display in speedbar."
153 :prefix "speedbar-"
154 :group 'speedbar)
156 ;;; Code:
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.
163 ;; Arguments can be:
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
172 ;; introduced."
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
197 inserting buttons.")
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
210 '(("files"
211 speedbar-update-current-file
212 speedbar-check-read-only
213 speedbar-check-vc
214 speedbar-check-objects)
216 "List of functions to periodically call stealthily.
217 This list is of the form:
218 '( (\"NAME\" FUNCTION ...)
219 ...)
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
251 frame."
252 :group 'speedbar
253 :type 'boolean)
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."
260 :group 'speedbar
261 :type '(radio (const :tag "Always Query before some file operations."
262 all)
263 (const :tag "Never Query before file operations, except for deletions."
264 none-but-delete)
265 ;;;; (const :tag "Never Every Query."
266 ;;;; none)
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
274 speedbar buffer.")
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."
284 :group 'speedbar
285 :type 'hook)
287 (defcustom speedbar-visiting-file-hook nil
288 "*Hooks run when speedbar visits a file in the selected frame."
289 :group 'speedbar
290 :type 'hook)
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."
295 :group 'speedbar
296 :type 'hook)
298 (defcustom speedbar-visiting-tag-hook '(speedbar-highlight-one-tag-line)
299 "*Hooks run when speedbar visits a tag in the selected frame."
300 :group 'speedbar
301 :type 'hook
302 :options '(speedbar-highlight-one-tag-line
303 speedbar-recenter-to-top
304 speedbar-recenter
307 (defcustom speedbar-load-hook nil
308 "*Hooks run when speedbar is loaded."
309 :group 'speedbar
310 :type 'hook)
312 (defcustom speedbar-reconfigure-keymaps-hook nil
313 "*Hooks run when the keymaps are regenerated."
314 :group 'speedbar
315 :type 'hook)
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."
320 :group 'speedbar
321 :type 'boolean)
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'.")
333 ;;; END REMOVE THESE
335 (defcustom speedbar-frame-parameters '((minibuffer . nil)
336 (width . 20)
337 (border-width . 0)
338 (menu-bar-lines . 0)
339 (tool-bar-lines . 0)
340 (unsplittable . t)
341 (left-fringe . 0)
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."
347 :group 'speedbar
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
363 is attached to."
364 :group '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"
374 :group 'speedbar
375 :type 'boolean)
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."
394 :group 'speedbar
395 :type 'boolean)
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."
399 :group 'speedbar
400 :type 'boolean)
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."
407 :group 'speedbar
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."
415 :group 'speedbar
416 :type 'boolean)
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
426 form:
427 (ELT1 ELT2 ... ELTn)
428 where each ELT is of the form
429 (TAG-NAME-STRING . NUMBER-OR-MARKER)
431 (GROUP-NAME-STRING ELT1 ELT2... ELTn)"
432 :group 'speedbar
433 :type 'hook
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:
445 worda to wordb
446 instead of just
447 word
448 This way we won't get silly looking listings."
449 :group 'speedbar
450 :type 'integer)
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
455 sub-lists."
456 :group 'speedbar
457 :type 'integer)
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
463 items is reached."
464 :group 'speedbar
465 :type 'integer)
467 (defcustom speedbar-directory-button-trim-method 'span
468 "*Indicates how the directory button will be displayed.
469 Possible values are:
470 'span - span large directories over multiple lines.
471 'trim - trim large directories to only show the last few.
472 nil - no trimming."
473 :group 'speedbar
474 :type '(radio (const :tag "Span large directories over mutiple lines."
475 span)
476 (const :tag "Trim large directories to only show the last few."
477 trim)
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."
487 :group 'speedbar
488 :type 'boolean)
490 (defcustom speedbar-indentation-width 1
491 "*When sub-nodes are expanded, the number of spaces used for indentation."
492 :group 'speedbar
493 :type 'integer)
495 (defcustom speedbar-hide-button-brackets-flag nil
496 "*Non-nil means speedbar will hide the brackets around the + or -."
497 :group 'speedbar
498 :type 'boolean)
500 (defcustom speedbar-before-popup-hook nil
501 "*Hooks called before popping up the speedbar frame."
502 :group 'speedbar
503 :type 'hook)
505 (defcustom speedbar-after-create-hook '(speedbar-frame-reposition-smartly)
506 "*Hooks called after popping up the speedbar frame."
507 :group 'speedbar
508 :type 'hook)
510 (defcustom speedbar-before-delete-hook nil
511 "*Hooks called before deleting the speedbar frame."
512 :group 'speedbar
513 :type 'hook)
515 (defcustom speedbar-mode-hook nil
516 "*Hooks called after creating a speedbar buffer."
517 :group 'speedbar
518 :type 'hook)
520 (defcustom speedbar-timer-hook nil
521 "*Hooks called after running the speedbar timer function."
522 :group 'speedbar
523 :type 'hook)
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
528 verbosity."
529 :group 'speedbar
530 :type 'integer)
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'."
538 :group 'speedbar-vc
539 :type 'boolean)
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
549 being checked."
550 :group 'speedbar-vc
551 :type 'hook)
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."
557 :group 'speedbar-vc
558 :type 'hook)
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'"
567 :group 'speedbar-vc
568 :type 'boolean)
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")
580 ("\\.el$" . ".elc")
581 ("\\.java$" . ".class")
582 ("\\.f\\(or\\|90\\|77\\)?$" . ".o")
583 ("\\.tex$" . ".dvi")
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)
597 "\\("
598 (regexp-quote speedbar-vc-indicator)
599 "\\|"
600 (regexp-quote (car speedbar-obj-indicator))
601 "\\|"
602 (regexp-quote (cdr speedbar-obj-indicator))
603 "\\|"
604 (regexp-quote speedbar-object-read-only-indicator)
605 "\\)*")
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
612 state data."
613 :group 'speedbar
614 :type 'hook)
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))
624 (while extlist
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.
632 (concat "\\("
633 (if regex1 (concat "\\(\\.\\(" regex1 "\\)\\)") "")
634 (if (and regex1 regex2) "\\|" "")
635 (if regex2 (concat "\\(" regex2 "\\)") "")
636 "\\)$")))
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."
653 :group 'speedbar
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."
664 :group 'speedbar
665 :type 'string)
667 (defvar speedbar-file-unshown-regexp
668 (let ((nstr "") (noext completion-ignored-extensions))
669 (while noext
670 (setq nstr (concat nstr (regexp-quote (car noext)) "\\'"
671 (if (cdr noext) "\\|" ""))
672 noext (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.
692 ".s?html"
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
701 file.
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
704 file completion."
705 :group 'speedbar
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
719 list of strings."
720 (interactive "sExtension: ")
721 (if (not (listp extension)) (setq extension (list extension)))
722 (while 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.")
785 (if speedbar-key-map
787 (setq speedbar-key-map (make-keymap))
788 (suppress-keymap speedbar-key-map t)
790 ;; control
791 (define-key speedbar-key-map "t" 'speedbar-toggle-updates)
792 (define-key speedbar-key-map "g" 'speedbar-refresh)
794 ;; navigation
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
823 `speedbar-key-map'."
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
860 (append
861 '("Speedbar"
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)
869 (display-graphic-p)
870 window-system))
871 (list
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]
895 "----"
896 ["File/Tag Information" speedbar-item-info t]
897 ["Load Lisp File" speedbar-item-load
898 (save-excursion
899 (beginning-of-line)
900 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))]
901 ["Byte Compile File" speedbar-item-byte-compile
902 (save-excursion
903 (beginning-of-line)
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
920 (append
921 (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
922 (list ["Customize..." speedbar-customize t]))
923 (list
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
950 directories.")
952 (defvar speedbar-power-click nil
953 "Never set this by hand. Value is t when S-mouse activity occurs.")
956 ;;; Compatibility
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
973 ;;;###autoload
974 (defalias 'speedbar 'speedbar-frame-mode)
975 ;;;###autoload
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
980 supported at a time.
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."
983 (interactive "P")
984 ;; Get the buffer to play with
985 (if (not (buffer-live-p speedbar-buffer))
986 (save-excursion
987 (setq speedbar-buffer (get-buffer-create " SPEEDBAR"))
988 (set-buffer speedbar-buffer)
989 (speedbar-mode)))
990 ;; Do the frame thing
991 (dframe-frame-mode arg
992 'speedbar-frame
993 'speedbar-cached-frame
994 'speedbar-buffer
995 "Speedbar"
996 #'speedbar-frame-mode
997 (if dframe-xemacsp
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)
1016 ;; hscroll
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 dframe-xemacsp
1024 (or (member 'left speedbar-frame-plist)
1025 (member 'top speedbar-frame-plist)))
1026 (dframe-reposition-frame
1027 speedbar-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 dframe-xemacsp)
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
1038 speedbar-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 (let ((frame-to-be-deleted (car (car (cdr e)))))
1057 (if (eq frame-to-be-deleted dframe-attached-frame)
1058 (delete-frame speedbar-frame)))
1061 ;;;###autoload
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."
1066 (interactive)
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}"
1117 ;; NOT interactive
1118 (save-excursion
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))
1137 speedbar-buffer)
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 dframe-xemacsp)
1168 (with-no-warnings
1169 (specifier-instance has-modeline-p)))
1170 speedbar-buffer)
1171 (save-excursion
1172 (set-buffer speedbar-buffer)
1173 (let* ((w (or (speedbar-frame-width) 20))
1174 (p1 "<<")
1175 (p5 ">>")
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)))
1180 (p2 (if (> blank 0)
1181 (make-string (/ blank 2) ? )
1182 ""))
1183 (p4 (if (> blank 0)
1184 (make-string (+ (/ blank 2) (% blank 2)) ? )
1185 ""))
1187 (if line-number-mode
1188 (list (concat p1 p2 p3 " " p35) '(line-number-mode " %3l")
1189 (concat p4 p5))
1190 (list (concat p1 p2 p3 p4 p5)))))
1191 (if (not (equal mode-line-format tf))
1192 (progn
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."
1203 (let ((md (append
1204 speedbar-easymenu-definition-base
1205 (if speedbar-shown-directories
1206 ;; file display mode version
1207 (speedbar-initial-menu)
1208 (save-excursion
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
1213 '("-")
1214 (list (cons "Displays"
1215 (let ((displays nil)
1216 (alist speedbar-initial-expansion-mode-alist))
1217 (while alist
1218 (setq displays
1219 (cons
1220 (vector
1221 (capitalize (car (car alist)))
1222 (list
1223 'speedbar-change-initial-expansion-list
1224 (car (car alist)))
1225 :style 'radio
1226 :selected
1227 `(string= ,(car (car alist))
1228 speedbar-initial-expansion-list-name)
1230 displays))
1231 (setq alist (cdr alist)))
1232 displays)))
1233 ;; The trailer
1234 speedbar-easymenu-definition-trailer))
1235 (localmap (save-excursion
1236 (let ((cf (selected-frame)))
1237 (prog2
1238 (dframe-select-attached-frame speedbar-frame)
1239 (if (local-variable-p
1240 'speedbar-special-mode-key-map
1241 (current-buffer))
1242 speedbar-special-mode-key-map)
1243 (select-frame cf))))))
1244 (save-excursion
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 dframe-xemacsp)
1256 (easy-menu-define speedbar-menu-map (current-local-map)
1257 "Speedbar menu" md)
1258 (easy-menu-add md (current-local-map))
1259 ;; XEmacs-specific:
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."
1270 (interactive)
1271 (let ((sf (selected-frame)))
1272 (dframe-select-attached-frame speedbar-frame)
1273 (customize-group 'speedbar)
1274 (select-frame sf))
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)
1281 (save-excursion
1282 (save-window-excursion
1283 (condition-case nil
1284 (progn
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)
1296 (save-excursion
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."
1303 (interactive "p")
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."
1310 (interactive "p")
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))
1322 0)))
1323 (crement (if (< arg 0) 1 -1)) ; decrement or increment
1324 (lastmatch (point)))
1325 (while (/= arg 0)
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))
1330 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)
1336 (setq arg 0)
1337 (error "End of sub-list"))
1338 ((= subdepth depth)
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."
1347 (interactive "p")
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."
1355 (interactive "p")
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."
1363 (interactive "p")
1364 (beginning-of-line)
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."
1376 (interactive)
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."
1384 (interactive)
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."
1390 (interactive "P")
1391 (scroll-up arg)
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."
1396 (interactive "P")
1397 (scroll-down arg)
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."
1403 (interactive)
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."
1412 (interactive "P")
1413 (let ((dl speedbar-shown-directories)
1414 (dframe-power-click arg)
1415 deactivate-mark)
1416 ;; We need to hack something so this works in detached frames.
1417 (while dl
1418 (adelete 'speedbar-directory-contents-alist (car dl))
1419 (setq dl (cdr 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."
1431 (interactive)
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"))
1438 (load-file f))
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."
1443 (interactive)
1444 (let ((f (speedbar-line-file))
1445 (sf (selected-frame)))
1446 (if (and (file-exists-p f) (string-match "\\.el\\'" f))
1447 (progn
1448 (dframe-select-attached-frame speedbar-frame)
1449 (byte-compile-file f nil)
1450 (select-frame sf)
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."
1457 (interactive "e")
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'."
1464 (save-excursion
1465 (beginning-of-line)
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)))
1470 ;; Get the text
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'."
1478 (interactive)
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)
1490 (nth 7 attr) item)
1491 nil)))
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."
1496 (save-excursion
1497 (beginning-of-line)
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))
1502 (item nil)
1503 (semantic-tagged (if (fboundp 'semantic-tag-p)
1504 (semantic-tag-p attr))))
1505 (if semantic-tagged
1506 (with-no-warnings
1507 (save-excursion
1508 (when (and (semantic-tag-overlay attr)
1509 (semantic-tag-buffer attr))
1510 (set-buffer (semantic-tag-buffer attr)))
1511 (speedbar-message
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
1524 (beginning-of-line)
1525 (let ((dep (if (looking-at "[0-9]+:")
1526 (1- (string-to-number (match-string 0)))
1527 0)))
1528 (re-search-backward (concat "^"
1529 (int-to-string dep)
1530 ":")
1531 nil t))
1532 (if (looking-at "[0-9]+: +[-+=>]> \\([^\n]+\\)$")
1533 (speedbar-line-token)
1534 nil))))
1535 (if (featurep 'semantic)
1536 (with-no-warnings
1537 (if (semantic-tag-p detail)
1538 (speedbar-message
1539 (funcall semantic-sb-info-format-tag-function detail parent))
1540 (if parent
1541 (speedbar-message "Detail: %s of tag %s" detail
1542 (if (semantic-tag-p parent)
1543 (semantic-format-tag-name parent nil t)
1544 parent))
1545 (speedbar-message "Detail: %s" detail))))
1546 ;; Not using `semantic':
1547 (if parent
1548 (speedbar-message "Detail: %s of tag %s" detail parent)
1549 (speedbar-message "Detail: %s" detail))))
1550 nil)))))
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."
1563 (interactive)
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)
1575 (setq 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)
1582 (progn
1583 (copy-file f rt t t)
1584 ;; refresh display if the new place is currently displayed.
1585 (if refresh
1586 (progn
1587 (speedbar-refresh)
1588 (if (not (speedbar-goto-this-file rt))
1589 (speedbar-goto-this-file f))))
1590 ))))))
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."
1595 (interactive)
1596 (let ((f (speedbar-line-file)))
1597 (if f
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)
1605 (setq 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)
1612 (progn
1613 (rename-file f rt t)
1614 ;; refresh display if the new place is currently displayed.
1615 (if refresh
1616 (progn
1617 (speedbar-refresh)
1618 (speedbar-goto-this-file rt)
1619 )))))
1620 (error "Not a file"))))
1622 (defun speedbar-create-directory ()
1623 "Create a directory in speedbar."
1624 (interactive)
1625 (let ((f (speedbar-line-file)))
1626 (if f
1627 (let* ((basedir (file-name-directory f))
1628 (nd (read-file-name "Create directory: "
1629 basedir)))
1630 ;; Make the directory
1631 (make-directory nd t)
1632 (speedbar-refresh)
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."
1639 (interactive)
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)
1643 (progn
1644 (if (file-directory-p f)
1645 (delete-directory f)
1646 (delete-file f))
1647 (speedbar-message "Okie dokie..")
1648 (let ((p (point)))
1649 (speedbar-refresh)
1650 (goto-char p))
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'."
1658 (interactive)
1659 (let* ((f (speedbar-line-file))
1660 (obj nil)
1661 (oa speedbar-obj-alist))
1662 (if (not f) (error "Not a file"))
1663 (while (and oa (not (string-match (car (car oa)) f)))
1664 (setq oa (cdr oa)))
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))
1668 (progn
1669 (delete-file obj)
1670 (speedbar-reset-scanners)))))
1672 (defun speedbar-enable-update ()
1673 "Enable automatic updating in speedbar via timers."
1674 (interactive)
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."
1681 (interactive)
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."
1688 (interactive)
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."
1696 (interactive)
1697 (setq speedbar-use-images (not speedbar-use-images))
1698 (speedbar-refresh))
1700 (defun speedbar-toggle-sorting ()
1701 "Toggle tag sorting."
1702 (interactive)
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."
1707 (interactive)
1708 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files))
1709 (speedbar-refresh))
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)))
1735 (insert text)
1736 (speedbar-make-button start (point) face mouse function token))
1737 (let ((start (point)))
1738 (insert "\n")
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)))
1747 (insert "//")
1748 (speedbar-insert-image-button-maybe start 2)))
1749 (let ((start (point)))
1750 (insert text "\n")
1751 (speedbar-make-button start (point)
1752 'speedbar-separator-face
1753 nil nil nil)))
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
1760 argument."
1761 (unless (eq face t)
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'."
1789 (symbol-value
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'."
1797 (symbol-value
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."
1814 (interactive
1815 (list
1816 (completing-read (format "Speedbar Mode (default %s): "
1817 speedbar-previously-used-expansion-list-name)
1818 speedbar-initial-expansion-mode-alist
1819 nil t "" nil
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)))
1825 (progn
1826 (speedbar-refresh)
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
1832 for FUNCTION."
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))
1858 (save-excursion
1859 (set-buffer buffer)
1860 (save-match-data
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)
1867 (if (not v)
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")))
1877 (if (not v)
1878 nil ;; don't add special keymap
1879 (make-local-variable 'speedbar-special-mode-key-map)
1880 (setq speedbar-special-mode-key-map
1881 (symbol-value v)))
1882 (setq v (intern-soft (concat ms "-speedbar-menu-items")))
1883 (if (not v)
1884 nil ;; don't add special menus
1885 (make-local-variable 'speedbar-easymenu-definition-special)
1886 (setq speedbar-easymenu-definition-special
1887 (symbol-value v)))
1888 )))))))
1890 (defun speedbar-remove-localized-speedbar-support (buffer)
1891 "Remove any traces that BUFFER supports speedbar in a specialized way."
1892 (save-excursion
1893 (set-buffer buffer)
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
1905 the file-system."
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))
1915 (dirs nil)
1916 (files nil))
1917 (while dir
1918 (if (not
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)
1927 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))
1938 (displayme (if junk
1939 (concat "~/" (substring dd (match-end 0)))
1940 dd))
1941 (p (point)))
1942 (if (string-match "^~[/\\]?\\'" displayme) (setq displayme tilde))
1943 (insert displayme)
1944 (save-excursion
1945 (goto-char p)
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
1955 p (match-end 0)))))
1956 ;; Nuke the beginning of the directory if it's too long...
1957 (cond ((eq speedbar-directory-button-trim-method 'span)
1958 (beginning-of-line)
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)
1964 (progn
1965 (re-search-forward "[/\\]" nil t)
1966 (if (< (current-column) 4)
1967 (re-search-forward "[/\\]" nil t))
1968 (forward-char -1)))
1969 (if (looking-at "[/\\]?$")
1970 (beginning-of-line)
1971 (insert "/...\n ")
1972 (move-to-column ww nil)))))
1973 ((eq speedbar-directory-button-trim-method 'trim)
1974 (end-of-line)
1975 (let ((ww (or (speedbar-frame-width) 20))
1976 (tl (current-column)))
1977 (if (< ww tl)
1978 (progn
1979 (move-to-column (- tl ww))
1980 (if (re-search-backward "[/\\]" nil t)
1981 (progn
1982 (delete-region (point-min) (point))
1983 (insert "$")
1984 )))))))
1986 (if (string-match "\\`[/\\][^/\\]+[/\\]\\'" displayme)
1987 (progn
1988 (insert " ")
1989 (let ((p (point)))
1990 (insert "<root>")
1991 (speedbar-make-button p (point)
1992 'speedbar-directory-face
1993 'speedbar-highlight-face
1994 'speedbar-directory-buttons-follow
1995 "/"))))
1996 (end-of-line)
1997 (insert-char ?\n 1 nil)))
1999 (defun speedbar-make-tag-line (exp-button-type
2000 exp-button-char exp-button-function
2001 exp-button-data
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
2010 button.
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))
2022 (end (progn
2023 (insert (int-to-string depth) ":")
2024 (point)))
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) " =>")
2034 (t ">")))
2035 (buttxt (format exp-button exp-button-char))
2036 (start (point))
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
2044 (progn
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."
2061 (save-excursion
2062 (beginning-of-line)
2063 (if (re-search-forward ":\\s-*.\\([-+?]\\)" (save-excursion (end-of-line)
2064 (point)) t)
2065 (speedbar-with-writable
2066 (goto-char (match-end 1))
2067 (insert-char char 1 t)
2068 (forward-char -1)
2069 (delete-char -1)
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)))
2084 (while dirs
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))
2091 (while lst
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)
2106 (if (= index 0)
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
2115 (while sf
2116 (if (speedbar-goto-this-file (car sf))
2117 (progn
2118 (beginning-of-line)
2119 (if (looking-at "[0-9]+:[ ]*<")
2120 (progn
2121 (goto-char (match-end 0))
2122 (speedbar-do-function-pointer)))))
2123 (setq sf (cdr sf)))
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)
2157 ))))
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
2176 passes some tests."
2177 (if (and (consp alist)
2178 (listp (car alist)) (stringp (car (car alist))))
2179 (try-completion string alist)
2180 nil))
2182 (defun speedbar-prefix-group-tag-hierarchy (lst)
2183 "Prefix group names for tag hierarchy LST."
2184 (let ((newlst nil)
2185 (sublst nil)
2186 (work-list nil)
2187 (junk-list nil)
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))
2193 (diff-idx 0))
2194 (if (<= (length lst) speedbar-tag-regroup-maximum-length)
2195 ;; Do nothing. Too short to bother with.
2197 ;; Break out sub-lists
2198 (while lst
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)
2207 sublst sublst)
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.
2214 (while sublst
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.
2229 (setq diff-idx 0)
2230 (while (> 256 diff-idx)
2231 ;; The bins contents are currently in forward order.
2232 (let ((l (aref bins diff-idx)))
2233 (if l
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))
2238 (progn
2239 ;; We have reached a longer list, so we
2240 ;; must finish off a grouped group.
2241 (cond
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)
2247 junk-list)))
2248 ((= num-shorts-grouped 1)
2249 ;; Only one short group? Just stick it in
2250 ;; there by itself. Make a group, and find
2251 ;; a subexpression
2252 (let ((subexpression (speedbar-try-completion
2253 "" short-group-list)))
2254 (if (< (length subexpression)
2255 speedbar-tag-group-name-minimum-length)
2256 (setq subexpression
2257 (concat short-start-name
2258 " ("
2259 (substring
2260 (car (car short-group-list))
2261 (length short-start-name))
2262 ")")))
2263 (setq work-list
2264 (cons (cons subexpression
2265 short-group-list)
2266 work-list ))))
2267 (short-group-list
2268 ;; Multiple groups to be named in a special
2269 ;; way by displaying the range over which we
2270 ;; have grouped them.
2271 (setq work-list
2272 (cons (cons (concat short-start-name
2273 " to "
2274 short-end-name)
2275 short-group-list)
2276 work-list))))
2277 ;; Reset short group list information every time.
2278 (setq short-group-list nil
2279 short-start-name nil
2280 short-end-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
2290 short-start-name
2291 (car tmp)))
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.
2295 (cond
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
2301 ;; there by itself.
2302 (setq work-list
2303 (cons (cons (speedbar-try-completion "" short-group-list)
2304 short-group-list)
2305 work-list)))
2306 (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.
2310 (setq work-list
2311 (cons (cons (concat short-start-name " to " short-end-name)
2312 short-group-list)
2313 work-list))))
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
2317 (if work-list
2318 (if junk-list
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."
2327 (let ((newlst nil)
2328 (sublst nil)
2329 (trim-prefix nil)
2330 (trim-chars 0)
2331 (trimlst nil))
2332 (while lst
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)
2342 (not trim-prefix)
2343 (not (string-match "\\(\\w+\\W+\\)+" trim-prefix)))
2344 (append newlst (nreverse sublst))
2345 (setq trim-prefix (substring trim-prefix (match-beginning 0)
2346 (match-end 0)))
2347 (setq trim-chars (length trim-prefix))
2348 (while sublst
2349 (setq trimlst (cons
2350 (cons (substring (car (car sublst)) trim-chars)
2351 (cdr (car sublst)))
2352 trimlst)
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."
2360 (let ((newlst nil)
2361 (sublst nil))
2362 (while lst
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)))
2367 (if (not newlst)
2368 (nreverse sublst)
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
2375 the list."
2376 (let* ((f (save-excursion
2377 (forward-line -1)
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)
2385 (copy-tree lst)
2386 lst)))
2387 (while methods
2388 (setq lst (funcall (car methods) lst)
2389 methods (cdr methods)))
2390 lst))
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)
2416 (save-excursion
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))
2421 ;; Adjust the list.
2422 (setq lst (speedbar-create-tag-hierarchy lst))
2423 ;; insert the parts
2424 (while 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
2430 find-fun ;function
2431 (cdr (car lst)) ;token is position
2432 'speedbar-tag-face
2433 (1+ level)))
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
2438 find-fun ;function
2439 (car (cdr (car lst))) ;token is posn
2440 'speedbar-tag-face
2441 (1+ level)))
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
2447 (1+ level)))
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))
2464 ;;; Timed functions
2466 (defun speedbar-update-contents ()
2467 "Generically update the contents of the speedbar buffer."
2468 (interactive)
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)
2478 (local-variable-p
2479 'speedbar-special-mode-expansion-list
2480 (current-buffer)))
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
2498 (string-match
2499 speedbar-ignored-directory-regexp
2500 (expand-file-name default-directory))))
2502 (if (<= 1 speedbar-verbosity-level)
2503 (speedbar-message "Updating speedbar to: %s..."
2504 default-directory))
2505 (speedbar-update-directory-contents)
2506 (if (<= 1 speedbar-verbosity-level)
2507 (progn
2508 (speedbar-message "Updating speedbar to: %s...done"
2509 default-directory)
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)))
2518 (erase-buffer)
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))
2529 cbd-parent
2530 (funclst (speedbar-initial-expansion-list))
2531 (cache speedbar-full-text-cache)
2532 ;; disable stealth during update
2533 (speedbar-stealthy-function-list nil)
2534 (use-cache nil)
2535 (expand-local nil)
2536 ;; Because there is a bug I can't find just yet
2537 (inhibit-quit nil))
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)
2543 (progn
2544 (setq cache nil)
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
2553 (save-match-data
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)
2568 (progn
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)
2577 use-cache t)
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))
2586 ;; Open it.
2587 (speedbar-expand-line)
2588 (let* ((window (get-buffer-window speedbar-buffer 0))
2589 (p (window-point window))
2590 (start (window-start window)))
2591 (erase-buffer)
2592 (cond (use-cache
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)))
2610 (save-excursion
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)
2615 ;; Do nothing
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.
2638 (if timeout
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
2650 (save-match-data
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)
2668 (local-variable-p
2669 'speedbar-special-mode-expansion-list
2670 (current-buffer)))
2671 ;;(eq (get major-mode 'mode-class 'special)))
2672 (progn
2673 (if (<= 2 speedbar-verbosity-level)
2674 (speedbar-message
2675 "Updating speedbar to special mode: %s..."
2676 major-mode))
2677 (speedbar-update-special-contents)
2678 (if (<= 2 speedbar-verbosity-level)
2679 (progn
2680 (speedbar-message
2681 "Updating speedbar to special mode: %s...done"
2682 major-mode)
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)))
2693 (select-frame af))
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))
2711 (unwind-protect
2712 (speedbar-with-writable
2713 (while (and l (funcall (car l)))
2714 ;;(sit-for 0)
2715 (setq l (cdr l))))
2716 ;;(speedbar-message "Exit with %S" (car l))
2717 ))))
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))
2734 (let ((m nil))
2735 (while (and (setq m (re-search-forward
2736 (concat " \\(" (regexp-quote (file-name-nondirectory file))
2737 "\\)\\(" speedbar-indicator-regex "\\)?\n")
2738 nil t))
2739 (not (string= file
2740 (concat
2741 (speedbar-line-directory
2742 (save-excursion
2743 (goto-char (match-beginning 0))
2744 (beginning-of-line)
2745 (save-match-data
2746 (looking-at "[0-9]+:")
2747 (string-to-number (match-string 0)))))
2748 (match-string 1))))))
2749 (if m
2750 (progn
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."
2756 (save-excursion
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)
2762 (match-end 1)
2763 'face
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
2770 updated."
2771 (let* ((lastf (selected-frame))
2772 (newcfd (save-excursion
2773 (dframe-select-attached-frame speedbar-frame)
2774 (let ((rf (if (buffer-file-name)
2775 (buffer-file-name)
2776 nil)))
2777 (select-frame lastf)
2778 rf)))
2779 (newcf (if newcfd newcfd))
2780 (lastb (current-buffer))
2781 (sucf-recursive (boundp 'sucf-recursive))
2782 (case-fold-search t))
2783 (if (and newcf
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)))
2788 (progn
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)
2801 (match-end 1)
2802 'face
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...)
2809 (progn
2810 (speedbar-refresh)
2811 (if (speedbar-find-selected-file newcf)
2812 ;; put the property on it
2813 (put-text-property (match-beginning 1)
2814 (match-end 1)
2815 'face
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)
2821 (progn
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
2825 ;;updating files.
2827 ;;(speedbar-center-buffer-smartly)
2829 (speedbar-position-cursor-on-line)
2831 (set-buffer lastb)
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."
2842 (beginning-of-line)
2843 ;; The nature of the beast: Assume we are in "the right place"
2844 (end-of-line)
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
2853 (save-excursion
2854 (if (and replace-this
2855 (re-search-forward replace-this (save-excursion (end-of-line)
2856 (point))
2858 (delete-region (match-beginning 0) (match-end 0))))
2859 (end-of-line)
2860 (if (not (string= " " indicator-string))
2861 (let ((start (point)))
2862 (insert indicator-string)
2863 (speedbar-insert-image-button-maybe start (length indicator-string))
2864 ))))
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
2870 (save-excursion
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)
2875 (progn
2876 (goto-char speedbar-ro-to-do-point)
2877 (while (and (not (input-pending-p))
2878 (re-search-forward "^\\([0-9]+\\):\\s-*[[<][+-\?][]>] "
2879 nil t))
2880 (setq speedbar-ro-to-do-point (point))
2881 (let ((f (speedbar-line-file)))
2882 (if f
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
2888 " " (regexp-quote
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)
2895 ;; and return t
2897 t)))
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
2911 (save-excursion
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)
2916 (string-match
2917 (car (symbol-value
2918 (if dframe-xemacsp
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)
2924 (string-match
2925 (let ((reg (symbol-value 'efs-directory-regexp)))
2926 (if (stringp reg)
2928 (car reg)))
2929 (expand-file-name default-directory))))))
2930 (setq speedbar-vc-to-do-point 0))
2931 (if (numberp speedbar-vc-to-do-point)
2932 (progn
2933 (goto-char speedbar-vc-to-do-point)
2934 (while (and (not (input-pending-p))
2935 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-?]\\] "
2936 nil t))
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)
2948 ;; and return t
2950 t)))
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
2960 (point) (progn
2961 (skip-chars-forward "^ "
2962 (save-excursion (end-of-line)
2963 (point)))
2964 (point))))
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/")))
2978 ;; Local RCS
2979 (file-exists-p (concat directory "RCS/"))
2980 ;; Local SCCS
2981 (file-exists-p (concat directory "SCCS/"))
2982 ;; Remote SCCS project
2983 (let ((proj-dir (getenv "PROJECTDIR")))
2984 (if proj-dir
2985 (file-exists-p (concat proj-dir "/SCCS"))
2986 nil))
2987 ;; User extension
2988 (run-hook-with-args-until-success 'speedbar-vc-directory-enable-hook
2989 directory)
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.
3000 (condition-case nil
3001 (let ((state (vc-state (concat directory name))))
3002 (not (or (eq 'up-to-date state)
3003 (null state))))
3004 ;; An error means not in a VC system
3005 (error nil))
3007 ;; RCS file name
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")))
3014 (if proj-dir
3015 (file-exists-p (concat proj-dir "/SCCS/s." name))
3016 nil))))
3017 ;; User extension
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
3028 (save-excursion
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)
3033 (progn
3034 (goto-char speedbar-obj-to-do-point)
3035 (while (and (not (input-pending-p))
3036 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] "
3037 nil t))
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)
3043 "\\|"
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)
3050 ;; and return t
3052 t)))
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
3062 (point) (progn
3063 (skip-chars-forward "^ "
3064 (save-excursion (end-of-line)
3065 (point)))
3066 (point))))
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)))
3072 (setq oa (cdr oa)))
3073 (if (not (and oa (file-exists-p (concat (file-name-sans-extension fulln)
3074 (cdr (car oa))))))
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)
3080 (cdr (car oa)))))))
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)))
3092 (beginning-of-line)
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
3116 ;; cursor is on.
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)
3124 (string-to-number
3125 (if (looking-at "[0-9]+")
3126 (buffer-substring-no-properties
3127 (match-beginning 0) (match-end 0))
3128 "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."
3138 (save-excursion
3139 (if p (goto-char p))
3140 (beginning-of-line)
3141 (if (looking-at (concat
3142 "\\([0-9]+\\): *[[<{]?[-+?= ][]>}@()|] \\([^ \n]+\\)"))
3143 (get-text-property (match-beginning 2) 'speedbar-text)
3144 nil)))
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."
3149 (save-excursion
3150 (if p (goto-char p))
3151 (beginning-of-line)
3152 (if (looking-at (concat
3153 "\\([0-9]+\\): *[[<{]?[-+?= ][]>}@()|] \\([^ \n]+\\)\\("
3154 speedbar-indicator-regex "\\)?"))
3155 (progn
3156 (goto-char (match-beginning 2))
3157 (get-text-property (point) 'speedbar-token))
3158 nil)))
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."
3164 (save-match-data
3165 (save-restriction
3166 (widen)
3167 (let ((f (speedbar-line-text p)))
3168 (if f
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)
3173 nil))
3174 nil)))))
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))))
3181 (dest (point)))
3182 (save-match-data
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) "$")
3190 nil t))
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
3197 (if directory
3198 (progn
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 "\\)$")
3207 nil t)
3208 (progn
3209 (speedbar-position-cursor-on-line)
3211 (goto-char dest)
3212 nil))))))
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'."
3219 (save-restriction
3220 (widen)
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."
3228 (save-excursion
3229 (save-match-data
3230 (if (not depth)
3231 (progn
3232 (beginning-of-line)
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)
3243 directory)))
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)))
3248 (if (and directory
3249 (string-match (concat speedbar-indicator-regex "$")
3250 directory))
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."
3256 (save-match-data
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))
3265 (while (and nomatch
3266 (re-search-forward
3267 (concat "[]>] \\(" (regexp-quote fname)
3268 "\\)\\(" speedbar-indicator-regex "\\)?$")
3269 nil t))
3270 (beginning-of-line)
3271 (looking-at "\\([0-9]+\\):")
3272 (setq depth (string-to-number (match-string 0))
3273 nomatch (not (string= pname (speedbar-line-directory depth))))
3274 (end-of-line))
3275 (beginning-of-line)
3276 (not nomatch))))
3278 (defun speedbar-edit-line ()
3279 "Edit whatever tag or file is on the current speedbar line."
3280 (interactive)
3281 (or (save-excursion
3282 (beginning-of-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))
3288 (progn
3289 (forward-char -1)
3290 (speedbar-do-function-pointer))
3291 nil))
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."
3297 (interactive "P")
3298 (beginning-of-line)
3299 (let* ((dframe-power-click arg)
3300 (speedbar-power-click arg))
3301 (condition-case nil
3302 (progn
3303 (re-search-forward ":\\s-*.\\+. "
3304 (save-excursion (end-of-line) (point)))
3305 (forward-char -2)
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."
3311 (interactive)
3312 (speedbar-expand-line 1))
3314 (defun speedbar-contract-line ()
3315 "Contract the line under the cursor."
3316 (interactive)
3317 (beginning-of-line)
3318 (condition-case nil
3319 (progn
3320 (re-search-forward ":\\s-*.-. "
3321 (save-excursion (end-of-line) (point)))
3322 (forward-char -2)
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."
3328 (interactive)
3329 (beginning-of-line)
3330 (condition-case nil
3331 (progn
3332 (re-search-forward ":\\s-*.[-+]. "
3333 (save-excursion (end-of-line) (point)))
3334 (forward-char -2)
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."
3341 (interactive "P")
3342 (speedbar-expand-line arg)
3343 ;; Now, inside the area expaded here, expand all subnodes of
3344 ;; the same descendant type.
3345 (save-excursion
3346 (speedbar-next 1) ;; Move into the list.
3347 (let ((err nil))
3348 (while (not err)
3349 (condition-case nil
3350 (progn
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."
3358 (interactive)
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)
3374 (select-frame f))
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))
3391 "/"))
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
3395 ;; in case.
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
3406 (save-excursion
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)
3411 (not (eobp)))
3412 (forward-line 1)
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)
3428 (save-excursion
3429 (end-of-line) (forward-char 1)
3430 (speedbar-with-writable
3431 (speedbar-default-directory-list
3432 (concat (speedbar-line-directory indent) token "/")
3433 (1+ indent)))))
3434 ((string-match "-" text) ;we have to contract this node
3435 (speedbar-reset-scanners)
3436 (let ((oldl speedbar-shown-directories)
3437 (newl nil)
3438 (td (expand-file-name
3439 (concat (speedbar-line-directory indent) token))))
3440 (while oldl
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
3469 indentation level."
3470 (cond ((string-match "+" text) ;we have to expand this file
3471 (let* ((fn (expand-file-name (concat (speedbar-line-directory indent)
3472 token)))
3473 (mode nil)
3474 (lst (speedbar-fetch-dynamic-tags fn)))
3475 ;; if no list, then remove expando button
3476 (if (not lst)
3477 (speedbar-change-expand-button-char ??)
3478 (speedbar-change-expand-button-char ?-)
3479 (speedbar-with-writable
3480 (save-excursion
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)
3496 (select-frame f))
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)
3503 (goto-char token)
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
3512 level."
3513 (cond ((string-match "+" text) ;we have to expand this file
3514 (speedbar-change-expand-button-char ?-)
3515 (speedbar-with-writable
3516 (save-excursion
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."
3533 :group 'speedbar
3534 :type 'sexp)
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
3539 frame instead."
3540 (let* ((buff (find-file-noselect file))
3541 (bwin (get-buffer-window buff 0)))
3542 (if bwin
3543 (progn
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
3559 interested in."
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
3570 (let ((cp (point)))
3572 (goto-char (point-min))
3573 (recenter 0)
3574 (goto-char cp))
3575 ;; too big
3576 (let (depth start end exp p)
3577 (save-excursion
3578 (beginning-of-line)
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)))
3584 (save-excursion
3585 (end-of-line)
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.
3590 (end-of-line)
3591 (setq p (point))
3592 (while (and (not (re-search-forward exp nil t))
3593 (>= depth 0))
3594 (setq depth (1- depth))
3595 (setq exp (format "^%d:" depth)))
3596 (if (/= (point) p)
3597 (setq end (point))
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))))
3602 (cp (point)))
3603 (if (> nl wl)
3604 ;; We can't fit it all, so just center on cursor
3605 (progn (goto-char start)
3606 (recenter 1))
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)))
3610 ;; we are all set!
3612 ;; we need to do something...
3613 (goto-char start)
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)
3618 newcent))
3619 (setq newcent (- (window-height (selected-window))
3620 lte 1)))
3621 (recenter newcent))))
3622 (goto-char cp))))))
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."
3631 (save-excursion
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)
3641 (ret t))
3642 (while (and (eq ret t) dtf)
3643 (setq ret
3644 (if (fboundp (car (car dtf)))
3645 (funcall (car (car dtf)) file)
3647 (if (eq ret t)
3648 (setq dtf (cdr dtf))))
3649 (if (eq ret t)
3650 ;; No valid tag list, return nil
3652 ;; We have some tags. Return the list with the insert fn
3653 ;; prepended
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
3668 (require 'imenu)
3669 (set-buffer (find-file-noselect file))
3670 (if dframe-power-click (setq imenu--index-alist nil))
3671 (condition-case 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))))
3676 index-alist))
3677 (error t)))
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)
3691 ("\\.p\\'" .
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>."
3724 (interactive)
3725 (cond
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")
3731 (equal flag "-S")
3732 (equal flag "-D"))
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)))
3737 (t nil)))
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))
3743 (unwind-protect
3744 (save-excursion
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..."))
3756 (let ((expr
3757 (let ((exprlst speedbar-fetch-etags-parse-list)
3758 (ans nil))
3759 (while (and (not ans) exprlst)
3760 (if (string-match (car (car exprlst)) file)
3761 (setq ans (car exprlst)))
3762 (setq exprlst (cdr exprlst)))
3763 (cdr ans))))
3764 (if expr
3765 (let (tnl)
3766 (set-buffer (get-buffer-create "*etags tmp*"))
3767 (while (not (save-excursion (end-of-line) (eobp)))
3768 (save-excursion
3769 (setq tnl (speedbar-extract-one-symbol expr)))
3770 (if tnl (setq newlist (cons tnl newlist)))
3771 (forward-line 1)))
3772 (speedbar-message
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."
3786 ; (save-excursion
3787 ; (goto-char (point-min))
3788 ; (while
3789 ; (re-search-forward "(?[ \t](?\C-?" nil t)
3790 ; (replace-match "\C-?" nil nil))
3791 ; (goto-char (point-min))
3792 ; (while
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)
3801 (if (save-excursion
3802 (re-search-forward expr (save-excursion
3803 (end-of-line)
3804 (point)) t))
3805 (buffer-substring-no-properties (match-beginning 1)
3806 (match-end 1)))
3807 (funcall expr)))
3808 (pos (let ((j (re-search-forward "[\C-?\C-a]\\([0-9]+\\),\\([0-9]+\\)"
3809 (save-excursion
3810 (end-of-line)
3811 (point))
3812 t)))
3813 (if (and j sym)
3814 (1+ (string-to-number (buffer-substring-no-properties
3815 (match-beginning 2)
3816 (match-end 2))))
3817 0))))
3818 (if (/= pos 0)
3819 (cons sym pos)
3820 nil)))
3822 (defun speedbar-parse-c-or-c++tag ()
3823 "Parse a C or C++ tag, which tends to be a little complex."
3824 (save-excursion
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)
3828 (match-end 1)))
3829 ((re-search-forward "\\<\\([^ \t]+\\)\\s-+new(" bound t)
3830 (buffer-substring-no-properties (match-beginning 1)
3831 (match-end 1)))
3832 ((re-search-forward "\\<\\([^ \t(]+\\)\\s-*(\C-?" bound t)
3833 (buffer-substring-no-properties (match-beginning 1)
3834 (match-end 1)))
3835 (t nil))
3838 (defun speedbar-parse-tex-string ()
3839 "Parse a Tex string. Only find data which is relevant."
3840 (save-excursion
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)
3844 (match-end 0)))
3845 (t nil)))))
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]+: *.-. "))]
3882 "----"
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))
3908 (while bl
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))))
3923 (setq bl (cdr bl)))
3924 (setq bl (buffer-list))
3925 (speedbar-insert-separator "Scratch Buffers:")
3926 (while bl
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))))
3936 (setq bl (cdr bl)))
3937 (setq bl (buffer-list))
3938 ;;(speedbar-insert-separator "Hidden Buffers:")
3939 ;;(while bl
3940 ;; (if (not (string-match "^ " (buffer-name (car bl))))
3941 ;; nil
3942 ;; (if (eq (car bl) speedbar-buffer)
3943 ;; nil
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."
3955 (let (mod ro)
3956 (save-excursion
3957 (set-buffer buffer)
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)))
3967 (and buffer
3968 (speedbar-message "%s%s %S %d %s"
3969 (if (buffer-modified-p buffer) "* " "")
3970 item
3971 (save-excursion (set-buffer buffer) major-mode)
3972 (save-excursion (set-buffer buffer)
3973 (buffer-size))
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."
3979 (save-excursion
3980 (end-of-line)
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))))
3987 (if buffer
3988 (if (save-excursion
3989 (end-of-line)
3990 (eq start (point)))
3991 (or (save-excursion (set-buffer buffer)
3992 default-directory)
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."
4008 (interactive)
4009 (or (save-excursion
4010 (let ((text (speedbar-line-text)))
4011 (if (and (get-buffer text)
4012 (speedbar-y-or-n-p (format "Kill buffer %s? " text)))
4013 (kill-buffer text))
4014 (speedbar-refresh)))))
4016 (defun speedbar-buffer-revert-buffer ()
4017 "Revert the buffer the cursor is on in the speedbar buffer."
4018 (interactive)
4019 (save-excursion
4020 (beginning-of-line)
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))
4026 (let ((text (progn
4027 (forward-char -1)
4028 (buffer-substring (point) (save-excursion
4029 (end-of-line)
4030 (point))))))
4031 (if (get-buffer text)
4032 (progn
4033 (set-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)
4048 (forward-char 1)
4049 (point))))
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
4058 (progn
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."
4065 (recenter 1))
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"))
4085 (t (:bold t)))
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))
4106 (t (: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)
4115 (background light))
4116 (:background "black"))
4117 (((class grayscale monochrome)
4118 (background dark))
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))
4124 (:background "blue"
4125 :foreground "white"
4126 :overline "gray"))
4127 (((class color) (background dark))
4128 (:background "blue"
4129 :foreground "white"
4130 :overline "gray"))
4131 (((class grayscale monochrome)
4132 (background light))
4133 (:background "black"
4134 :foreground "white"
4135 :overline "white"))
4136 (((class grayscale monochrome)
4137 (background dark))
4138 (:background "white"
4139 :foreground "black"
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
4146 (lambda ()
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)
4180 (provide 'speedbar)
4182 ;; run load-time hooks
4183 (run-hooks 'speedbar-load-hook)
4185 ;; arch-tag: 4477e6d1-f78c-48b9-a503-387d3c9767d5
4186 ;;; speedbar ends here