Undo coding change, which screwed up somehow.
[emacs.git] / lisp / speedbar.el
blob97e2a582f4808f836ce5f277465bcc7afc972fb2
1 ;;; speedbar --- quick access to files and tags in a frame
3 ;;; Copyright (C) 1996, 97, 98, 99, 2000, 01 Free Software Foundation
5 ;; Author: Eric M. Ludlam <zappo@gnu.org>
6 ;; Version: 0.11a
7 ;; Keywords: file, tags, tools
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Commentary:
28 ;; The speedbar provides a frame in which files, and locations in
29 ;; files are displayed. These items can be clicked on with mouse-2
30 ;; in order to make the last active frame display that file location.
32 ;; Starting Speedbar:
34 ;; Simply type `M-x speedbar', and it will be autoloaded for you.
36 ;; If you want to choose it from a menu, such as "Tools", you can do this:
38 ;; (define-key-after (lookup-key global-map [menu-bar tools])
39 ;; [speedbar] '("Speedbar" . speedbar-frame-mode) [calendar])
41 ;; If you want to access speedbar using only the keyboard, do this:
43 ;; (global-set-key [f4] 'speedbar-get-focus)
45 ;; This will let you hit f4 (or whatever key you choose) to jump
46 ;; focus to the speedbar frame. Pressing it again will bring you back
47 ;; to the attached frame. Pressing RET or e to jump to a file
48 ;; or tag will move you back to the attached frame. The command
49 ;; `speedbar-get-focus' will also create a speedbar frame if it does
50 ;; not exist.
52 ;; Customizing Speedbar:
54 ;; Once a speedbar frame is active, it takes advantage of idle time
55 ;; to keep its contents updated. The contents is usually a list of
56 ;; files in the directory of the currently active buffer. When
57 ;; applicable, tags in the active file can be expanded.
59 ;; To add new supported files types into speedbar, use the function
60 ;; `speedbar-add-supported-extension' If speedbar complains that the
61 ;; file type is not supported, that means there is no built in
62 ;; support from imenu, and the etags part wasn't set up correctly. You
63 ;; may add elements to `speedbar-supported-extension-expressions' as long
64 ;; as it is done before speedbar is loaded.
66 ;; To prevent speedbar from following you into certain directories
67 ;; use the function `speedbar-add-ignored-path-regexp' too add a new
68 ;; regular expression matching a type of path. You may add list
69 ;; elements to `speedbar-ignored-path-expressions' as long as it is
70 ;; done before speedbar is loaded.
72 ;; To add new file types to imenu, see the documentation in the
73 ;; file imenu.el that comes with Emacs. To add new file types which
74 ;; etags supports, you need to modify the variable
75 ;; `speedbar-fetch-etags-parse-list'.
77 ;; If the updates are going too slow for you, modify the variable
78 ;; `speedbar-update-speed' to a longer idle time before updates.
80 ;; If you navigate directories, you will probably notice that you
81 ;; will navigate to a directory which is eventually replaced after
82 ;; you go back to editing a file (unless you pull up a new file.)
83 ;; The delay time before this happens is in
84 ;; `speedbar-navigating-speed', and defaults to 10 seconds.
86 ;; To enable mouse tracking with information in the minibuffer of
87 ;; the attached frame, use the variable `speedbar-track-mouse-flag'.
89 ;; Tag layout can be modified through `speedbar-tag-hierarchy-method',
90 ;; which controls how tags are layed out. It is actually a list of
91 ;; functions that filter the data. The default groups large tag lists
92 ;; into sub-lists. A long flat list can be used instead if needed.
93 ;; Other filters could be easily added.
95 ;; AUC-TEX users: The imenu tags for AUC-TEX mode don't work very
96 ;; well. Use the imenu keywords from tex-mode.el for better results.
98 ;; This file requires the library package assoc (association lists)
100 ;;; Developing for speedbar
102 ;; Adding a speedbar specialized display mode:
104 ;; Speedbar can be configured to create a special display for certain
105 ;; modes that do not display tradition file/tag data. Rmail, Info,
106 ;; and the debugger are examples. These modes can, however, benefit
107 ;; from a speedbar style display in their own way.
109 ;; If your `major-mode' is `foo-mode', the only requirement is to
110 ;; create a function called `foo-speedbar-buttons' which takes one
111 ;; argument, BUFFER. BUFFER will be the buffer speedbar wants filled.
112 ;; In `foo-speedbar-buttons' there are several functions that make
113 ;; building a speedbar display easy. See the documentation for
114 ;; `speedbar-with-writable' (needed because the buffer is usually
115 ;; read-only) `speedbar-make-tag-line', `speedbar-insert-button', and
116 ;; `speedbar-insert-generic-list'. If you use
117 ;; `speedbar-insert-generic-list', also read the doc for
118 ;; `speedbar-tag-hierarchy-method' in case you wish to override it.
119 ;; The function `speedbar-with-attached-buffer' brings you back to the
120 ;; buffer speedbar is displaying for.
122 ;; For those functions that make buttons, the "function" should be a
123 ;; symbol that is the function to call when clicked on. The "token"
124 ;; is extra data you can pass along. The "function" must take three
125 ;; parameters. They are (TEXT TOKEN INDENT). TEXT is the text of the
126 ;; button clicked on. TOKEN is the data passed in when you create the
127 ;; button. INDENT is an indentation level, or 0. You can store
128 ;; indentation levels with `speedbar-make-tag-line' which creates a
129 ;; line with an expander (eg. [+]) and a text button.
131 ;; Some useful functions when writing expand functions, and click
132 ;; functions are `speedbar-change-expand-button-char',
133 ;; `speedbar-delete-subblock', and `speedbar-center-buffer-smartly'.
134 ;; The variable `speedbar-power-click' is set to t in your functions
135 ;; when the user shift-clicks. This indications anything from
136 ;; refreshing cached data to making a buffer appear in a new frame.
138 ;; If you wish to add to the default speedbar menu for the case of
139 ;; `foo-mode', create a variable `foo-speedbar-menu-items'. This
140 ;; should be a list compatible with the `easymenu' package. It will
141 ;; be spliced into the main menu. (Available with click-mouse-3). If
142 ;; you wish to have extra key bindings in your special mode, create a
143 ;; variable `foo-speedbar-key-map'. Instead of using `make-keymap',
144 ;; or `make-sparse-keymap', use the function
145 ;; `speedbar-make-specialized-keymap'. This lets you inherit all of
146 ;; speedbar's default bindings with low overhead.
148 ;; Adding a speedbar top-level display mode:
150 ;; Unlike the specialized modes, there are no name requirements,
151 ;; however the methods for writing a button display, menu, and keymap
152 ;; are the same. Once you create these items, you can call the
153 ;; function `speedbar-add-expansion-list'. It takes one parameter
154 ;; which is a list element of the form (NAME MENU KEYMAP &rest
155 ;; BUTTON-FUNCTIONS). NAME is a string that will show up in the
156 ;; Displays menu item. MENU is a symbol containing the menu items to
157 ;; splice in. KEYMAP is a symbol holding the keymap to use, and
158 ;; BUTTON-FUNCTIONS are the function names to call, in order, to create
159 ;; the display.
160 ;; Another tweekable variable is `speedbar-stealthy-function-list'
161 ;; which is of the form (NAME &rest FUNCTION ...). NAME is the string
162 ;; name matching `speedbar-add-expansion-list'. (It does not need to
163 ;; exist.). This provides additional display info which might be
164 ;; time-consuming to calculate.
165 ;; Lastly, `speedbar-mode-functions-list' allows you to set special
166 ;; function overrides. At the moment very few functions are
167 ;; over ridable, but more will be added as the need is discovered.
169 ;;; TODO:
170 ;; - More functions to create buttons and options
171 ;; - Timeout directories we haven't visited in a while.
173 (require 'assoc)
174 (require 'easymenu)
176 (condition-case nil
177 (require 'image)
178 (error nil))
180 (defvar speedbar-xemacsp (string-match "XEmacs" emacs-version)
181 "Non-nil if we are running in the XEmacs environment.")
182 (defvar speedbar-xemacs20p (and speedbar-xemacsp
183 (>= emacs-major-version 20)))
185 ;; customization stuff
186 (defgroup speedbar nil
187 "File and tag browser frame."
188 :group 'tags
189 :group 'tools
190 :group 'convenience
191 :version "20.3")
193 (defgroup speedbar-faces nil
194 "Faces used in speedbar."
195 :prefix "speedbar-"
196 :group 'speedbar
197 :group 'faces)
199 (defgroup speedbar-vc nil
200 "Version control display in speedbar."
201 :prefix "speedbar-"
202 :group 'speedbar)
204 ;;; Code:
205 (defvar speedbar-initial-expansion-mode-alist
206 '(("buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map
207 speedbar-buffer-buttons)
208 ("quick buffers" speedbar-buffer-easymenu-definition speedbar-buffers-key-map
209 speedbar-buffer-buttons-temp)
210 ;; Files last, means first in the Displays menu
211 ("files" speedbar-easymenu-definition-special speedbar-file-key-map
212 speedbar-directory-buttons speedbar-default-directory-list)
214 "List of named expansion elements for filling the speedbar frame.
215 These expansion lists are only valid for regular files. Special modes
216 still get to override this list on a mode-by-mode basis. This list of
217 lists is of the form (NAME MENU KEYMAP FN1 FN2 ...). NAME is a string
218 representing the types of things to be displayed. MENU is an easymenu
219 structure used when in this mode. KEYMAP is a local keymap to install
220 over the regular speedbar keymap. FN1 ... are functions that will be
221 called in order. These functions will always get the default
222 directory to use passed in as the first parameter, and a 0 as the
223 second parameter. The 0 indicates the uppermost indentation level.
224 They must assume that the cursor is at the position where they start
225 inserting buttons.")
227 (defvar speedbar-initial-expansion-list-name "files"
228 "A symbol name representing the expansion list to use.
229 The expansion list `speedbar-initial-expansion-mode-alist' contains
230 the names and associated functions to use for buttons in speedbar.")
232 (defvar speedbar-previously-used-expansion-list-name "files"
233 "Save the last expansion list method.
234 This is used for returning to a previous expansion list method when
235 the user is done with the current expansion list.")
237 (defvar speedbar-stealthy-function-list
238 '(("files"
239 speedbar-update-current-file speedbar-check-vc speedbar-check-objects)
241 "List of functions to periodically call stealthily.
242 This list is of the form:
243 '( (\"NAME\" FUNCTION ...)
244 ...)
245 where NAME is the name of the major display mode these functions are
246 for, and the remaining elements FUNCTION are functions to call in order.
247 Each function must return nil if interrupted, or t if completed.
248 Stealthy functions which have a single operation should always return
249 t. Functions which take a long time should maintain a state (where
250 they are in their speedbar related calculations) and permit
251 interruption. See `speedbar-check-vc' as a good example.")
253 (defvar speedbar-mode-functions-list
254 '(("files" (speedbar-item-info . speedbar-files-item-info)
255 (speedbar-line-path . speedbar-files-line-path))
256 ("buffers" (speedbar-item-info . speedbar-buffers-item-info)
257 (speedbar-line-path . speedbar-buffers-line-path))
258 ("quick buffers" (speedbar-item-info . speedbar-buffers-item-info)
259 (speedbar-line-path . speedbar-buffers-line-path))
261 "List of function tables to use for different major display modes.
262 It is not necessary to define any functions for a specialized mode.
263 This just provides a simple way of adding lots of customizations.
264 Each sublist is of the form:
265 (\"NAME\" (FUNCTIONSYMBOL . REPLACEMENTFUNCTION) ...)
266 Where NAME is the name of the specialized mode. The rest of the list
267 is a set of dotted pairs of the form FUNCTIONSYMBOL, which is the name
268 of a function you would like to replace, and REPLACEMENTFUNCTION,
269 which is a function you can call instead. Not all functions can be
270 replaced this way. Replaceable functions must provide that
271 functionality individually.")
273 (defcustom speedbar-mode-specific-contents-flag t
274 "*Non-nil means speedbar will show special mode contents.
275 This permits some modes to create customized contents for the speedbar
276 frame."
277 :group 'speedbar
278 :type 'boolean)
280 (defvar speedbar-special-mode-expansion-list nil
281 "Default function list for creating specialized button lists.
282 This list is set by modes that wish to have special speedbar displays.
283 The list is of function names. Each function is called with one
284 parameter BUFFER, the originating buffer. The current buffer is the
285 speedbar buffer.")
287 (defvar speedbar-special-mode-key-map nil
288 "Default keymap used when identifying a specialized display mode.
289 This keymap is local to each buffer that wants to define special keybindings
290 effective when it's display is shown.")
292 (defcustom speedbar-visiting-file-hook nil
293 "Hooks run when speedbar visits a file in the selected frame."
294 :group 'speedbar
295 :type 'hook)
297 (defcustom speedbar-visiting-tag-hook '(speedbar-highlight-one-tag-line)
298 "Hooks run when speedbar visits a tag in the selected frame."
299 :group 'speedbar
300 :type 'hook
301 :version "21.1"
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 :version "21.1"
316 :type 'hook)
318 (defcustom speedbar-show-unknown-files nil
319 "*Non-nil show files we can't expand with a ? in the expand button.
320 nil means don't show the file in the list."
321 :group 'speedbar
322 :type 'boolean)
324 (defcustom speedbar-update-speed
325 (if speedbar-xemacsp
326 (if speedbar-xemacs20p
327 2 ; 1 is too obrusive in XEmacs
328 5) ; when no idleness, need long delay
330 "*Idle time in seconds needed before speedbar will update itself.
331 Updates occur to allow speedbar to display directory information
332 relevant to the buffer you are currently editing."
333 :group 'speedbar
334 :type 'integer)
336 ;; When I moved to a repeating timer, I had the horrible missfortune
337 ;; of loosing the ability for adaptive speed choice. This update
338 ;; speed currently causes long delays when it should have been turned off.
339 (defcustom speedbar-navigating-speed speedbar-update-speed
340 "*Idle time to wait after navigation commands in speedbar are executed.
341 Navigation commands included expanding/contracting nodes, and moving
342 between different directories."
343 :group 'speedbar
344 :type 'integer)
346 (defcustom speedbar-frame-parameters '((minibuffer . nil)
347 (width . 20)
348 (border-width . 0)
349 (menu-bar-lines . 0)
350 (tool-bar-lines . 0)
351 (unsplittable . t))
352 "*Parameters to use when creating the speedbar frame in Emacs.
353 Any parameter supported by a frame may be added. The parameter `height'
354 will be initialized to the height of the frame speedbar is
355 attached to and added to this list before the new frame is initialized."
356 :group 'speedbar
357 :type '(repeat (sexp :tag "Parameter:")))
359 ;; These values by Hrvoje Niksic <hniksic@srce.hr>
360 (defcustom speedbar-frame-plist
361 '(minibuffer nil width 20 border-width 0
362 internal-border-width 0 unsplittable t
363 default-toolbar-visible-p nil has-modeline-p nil
364 menubar-visible-p nil)
365 "*Parameters to use when creating the speedbar frame in XEmacs.
366 Parameters not listed here which will be added automatically are
367 `height' which will be initialized to the height of the frame speedbar
368 is attached to."
369 :group 'speedbar
370 :type '(repeat (group :inline t
371 (symbol :tag "Property")
372 (sexp :tag "Value"))))
374 (defcustom speedbar-use-imenu-flag (stringp (locate-library "imenu"))
375 "*Non-nil means use imenu for file parsing. nil to use etags.
376 XEmacs prior to 20.4 doesn't support imenu, therefore the default is to
377 use etags instead. Etags support is not as robust as imenu support."
378 :tag "Use Imenu for tags"
379 :group 'speedbar
380 :type 'boolean)
382 (defvar speedbar-dynamic-tags-function-list
383 '((speedbar-fetch-dynamic-imenu . speedbar-insert-imenu-list)
384 (speedbar-fetch-dynamic-etags . speedbar-insert-etags-list))
385 "Set to a functions which will return and insert a list of tags.
386 Each element is of the form ( FETCH . INSERT ) where FETCH
387 is a funciotn which takes one parameter (the file to tag) and returns a
388 list of tags. The tag list can be of any form as long as the
389 corresponding insert method can handle it. If it returns t, then an
390 error occured, and the next fetch routine is tried.
391 INSERT is a function which takes an INDENTation level, and a LIST of
392 tags to insert. It will then create the speedbar buttons.")
394 (defcustom speedbar-track-mouse-flag t
395 "*Non-nil means to display info about the line under the mouse."
396 :group 'speedbar
397 :type 'boolean)
399 (defcustom speedbar-sort-tags nil
400 "*If Non-nil, sort tags in the speedbar display. *Obsolete*."
401 :group 'speedbar
402 :type 'boolean)
404 (defcustom speedbar-tag-hierarchy-method
405 '(speedbar-prefix-group-tag-hierarchy
406 speedbar-trim-words-tag-hierarchy)
407 "*List of hooks which speedbar will use to organize tags into groups.
408 Groups are defined as expandable meta-tags. Imenu supports
409 such things in some languages, such as separating variables from
410 functions. Each hook takes one argument LST, and may destructivly
411 create a new list of the same form. LST is a list of elements of the
412 form:
413 (ELT1 ELT2 ... ELTn)
414 where each ELT is of the form
415 (TAG-NAME-STRING . NUMBER-OR-MARKER)
417 (GROUP-NAME-STRING ELT1 EL2... ELTn)"
418 :group 'speedbar
419 :type 'hook
420 :options '(speedbar-sort-tag-hierarchy
421 speedbar-trim-words-tag-hierarchy
422 speedbar-prefix-group-tag-hierarchy
423 speedbar-simple-group-tag-hierarchy)
426 (defcustom speedbar-tag-group-name-minimum-length 4
427 "*The minimum length of a prefix group name before expanding.
428 Thus, if the `speedbar-tag-hierarchy-method' includes `prefix-group'
429 and one such groups common characters is less than this number of
430 characters, then the group name will be changed to the form of:
431 worda to wordb
432 instead of just
433 word
434 This way we won't get silly looking listings."
435 :group 'speedbar
436 :type 'integer)
438 (defcustom speedbar-tag-split-minimum-length 20
439 "*Minimum length before we stop trying to create sub-lists in tags.
440 This is used by all tag-hierarchy methods that break large lists into
441 sub-lists."
442 :group 'speedbar
443 :type 'integer)
445 (defcustom speedbar-tag-regroup-maximum-length 10
446 "*Maximum length of submenus that are regrouped.
447 If the regrouping option is used, then if two or more short subgroups
448 are next to each other, then they are combined until this number of
449 items is reached."
450 :group 'speedbar
451 :type 'integer)
453 (defcustom speedbar-activity-change-focus-flag nil
454 "*Non-nil means the selected frame will change based on activity.
455 Thus, if a file is selected for edit, the buffer will appear in the
456 selected frame and the focus will change to that frame."
457 :group 'speedbar
458 :type 'boolean)
460 (defcustom speedbar-directory-button-trim-method 'span
461 "*Indicates how the directory button will be displayed.
462 Possible values are:
463 'span - span large directories over multiple lines.
464 'trim - trim large directories to only show the last few.
465 nil - no trimming."
466 :group 'speedbar
467 :type '(radio (const :tag "Span large directories over mutiple lines."
468 span)
469 (const :tag "Trim large directories to only show the last few."
470 trim)
471 (const :tag "No trimming." nil)))
473 (defcustom speedbar-smart-directory-expand-flag t
474 "*Non-nil means speedbar should use smart expansion.
475 Smart expansion only affects when speedbar wants to display a
476 directory for a file in the attached frame. When smart expansion is
477 enabled, new directories which are children of a displayed directory
478 are expanded in the current framework. If nil, then the current
479 hierarchy would be replaced with the new directory."
480 :group 'speedbar
481 :type 'boolean)
483 (defcustom speedbar-indentation-width 1
484 "*When sub-nodes are expanded, the number of spaces used for indentation."
485 :group 'speedbar
486 :version "21.1"
487 :type 'integer)
489 (defcustom speedbar-hide-button-brackets-flag nil
490 "*Non-nil means speedbar will hide the brackets around the + or -."
491 :group 'speedbar
492 :version "21.1"
493 :type 'boolean)
495 (defcustom speedbar-use-images (and (or (fboundp 'defimage)
496 (fboundp 'make-image-specifier))
497 (if (fboundp 'display-graphic-p)
498 (display-graphic-p)
499 window-system))
500 "*Non nil if speedbar should display icons."
501 :group 'speedbar
502 :version "21.1"
503 :type 'boolean)
505 (defcustom speedbar-before-popup-hook nil
506 "*Hooks called before 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-path-enable-hook' and `speedbar-vc-in-control-hook'.")
546 (defcustom speedbar-vc-path-enable-hook nil
547 "*Return non-nil if the current path should be checked for Version Control.
548 Functions in this hook must accept one parameter which is the path
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 PATH 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\\)$" . ".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-indicator-regex
588 (concat (regexp-quote speedbar-indicator-separator)
589 "\\("
590 (regexp-quote speedbar-vc-indicator)
591 "\\|"
592 (regexp-quote (car speedbar-obj-indicator))
593 "\\|"
594 (regexp-quote (cdr speedbar-obj-indicator))
595 "\\)*")
596 "Regular expression used when identifying files.
597 Permits stripping of indicator characters from a line.")
599 (defcustom speedbar-scanner-reset-hook nil
600 "*Hook called whenever generic scanners are reset.
601 Set this to implement your own scanning / rescan safe functions with
602 state data."
603 :group 'speedbar
604 :type 'hook)
606 (defvar speedbar-ignored-modes nil
607 "*List of major modes which speedbar will not switch directories for.")
609 (defun speedbar-extension-list-to-regex (extlist)
610 "Takes EXTLIST, a list of extensions and transforms it into regexp.
611 All the preceding `.' are stripped for an optimized expression starting
612 with `.' followed by extensions, followed by full-filenames."
613 (let ((regex1 nil) (regex2 nil))
614 (while extlist
615 (if (= (string-to-char (car extlist)) ?.)
616 (setq regex1 (concat regex1 (if regex1 "\\|" "")
617 (substring (car extlist) 1)))
618 (setq regex2 (concat regex2 (if regex2 "\\|" "") (car extlist))))
619 (setq extlist (cdr extlist)))
620 ;; concat all the sub-exressions together, making sure all types
621 ;; of parts exist during concatination.
622 (concat "\\("
623 (if regex1 (concat "\\(\\.\\(" regex1 "\\)\\)") "")
624 (if (and regex1 regex2) "\\|" "")
625 (if regex2 (concat "\\(" regex2 "\\)") "")
626 "\\)$")))
628 (defvar speedbar-ignored-path-regexp nil
629 "Regular expression matching paths speedbar will not switch to.
630 Created from `speedbar-ignored-path-expressions' with the function
631 `speedbar-extension-list-to-regex' (A misnamed function in this case.)
632 Use the function `speedbar-add-ignored-path-regexp', or customize the
633 variable `speedbar-ignored-path-expressions' to modify this variable.")
635 (defcustom speedbar-ignored-path-expressions
636 '("[/\\]logs?[/\\]\\'")
637 "*List of regular expressions matching directories speedbar will ignore.
638 They should included paths to directories which are notoriously very
639 large and take a long time to load in. Use the function
640 `speedbar-add-ignored-path-regexp' to add new items to this list after
641 speedbar is loaded. You may place anything you like in this list
642 before speedbar has been loaded."
643 :group 'speedbar
644 :type '(repeat (regexp :tag "Path Regexp"))
645 :set (lambda (sym val)
646 (setq speedbar-ignored-path-expressions val
647 speedbar-ignored-path-regexp
648 (speedbar-extension-list-to-regex val))))
650 (defcustom speedbar-directory-unshown-regexp "^\\(CVS\\|RCS\\|SCCS\\)\\'"
651 "*Regular expression matching directories not to show in speedbar.
652 They should include commonly existing directories which are not
653 useful, such as version control."
654 :group 'speedbar
655 :type 'string)
657 (defvar speedbar-file-unshown-regexp
658 (let ((nstr "") (noext completion-ignored-extensions))
659 (while noext
660 (setq nstr (concat nstr (regexp-quote (car noext)) "\\'"
661 (if (cdr noext) "\\|" ""))
662 noext (cdr noext)))
663 ;; backup refdir lockfile
664 (concat nstr "\\|#[^#]+#$\\|\\.\\.?\\'\\|\\.#"))
665 "*Regexp matching files we don't want displayed in a speedbar buffer.
666 It is generated from the variable `completion-ignored-extensions'")
668 ;; this is dangerous to customize, because the defaults will probably
669 ;; change in the future.
670 (defcustom speedbar-supported-extension-expressions
671 (append '(".[ch]\\(\\+\\+\\|pp\\|c\\|h\\|xx\\)?" ".tex\\(i\\(nfo\\)?\\)?"
672 ".el" ".emacs" ".l" ".lsp" ".p" ".java" ".f\\(90\\|77\\|or\\)?")
673 (if speedbar-use-imenu-flag
674 '(".ada" ".p[lm]" ".tcl" ".m" ".scm" ".pm" ".py"
675 ;; html is not supported by default, but an imenu tags package
676 ;; is available. Also, html files are nice to be able to see.
677 ".s?html"
678 "[Mm]akefile\\(\\.in\\)?")))
679 "*List of regular expressions which will match files supported by tagging.
680 Do not prefix the `.' char with a double \\ to quote it, as the period
681 will be stripped by a simplified optimizer when compiled into a
682 singular expression. This variable will be turned into
683 `speedbar-file-regexp' for use with speedbar. You should use the
684 function `speedbar-add-supported-extension' to add a new extension at
685 runtime, or use the configuration dialog to set it in your .emacs
686 file."
687 :group 'speedbar
688 :version "21.1"
689 :type '(repeat (regexp :tag "Extension Regexp"))
690 :set (lambda (sym val)
691 (setq speedbar-supported-extension-expressions val
692 speedbar-file-regexp (speedbar-extension-list-to-regex val)))
695 (defvar speedbar-file-regexp
696 (speedbar-extension-list-to-regex speedbar-supported-extension-expressions)
697 "Regular expression matching files we know how to expand.
698 Created from `speedbar-supported-extension-expression' with the
699 function `speedbar-extension-list-to-regex'")
701 (defun speedbar-add-supported-extension (extension)
702 "Add EXTENSION as a new supported extension for speedbar tagging.
703 This should start with a `.' if it is not a complete file name, and
704 the dot should NOT be quoted in with \\. Other regular expression
705 matchers are allowed however. EXTENSION may be a single string or a
706 list of strings."
707 (interactive "sExtionsion: ")
708 (if (not (listp extension)) (setq extension (list extension)))
709 (while extension
710 (if (member (car extension) speedbar-supported-extension-expressions)
712 (setq speedbar-supported-extension-expressions
713 (cons (car extension) speedbar-supported-extension-expressions)))
714 (setq extension (cdr extension)))
715 (setq speedbar-file-regexp (speedbar-extension-list-to-regex
716 speedbar-supported-extension-expressions)))
718 (defun speedbar-add-ignored-path-regexp (path-expression)
719 "Add PATH-EXPRESSION as a new ignored path for speedbar tracking.
720 This function will modify `speedbar-ignored-path-regexp' and add
721 PATH-EXPRESSION to `speedbar-ignored-path-expressions'."
722 (interactive "sPath regex: ")
723 (if (not (listp path-expression))
724 (setq path-expression (list path-expression)))
725 (while path-expression
726 (if (member (car path-expression) speedbar-ignored-path-expressions)
728 (setq speedbar-ignored-path-expressions
729 (cons (car path-expression) speedbar-ignored-path-expressions)))
730 (setq path-expression (cdr path-expression)))
731 (setq speedbar-ignored-path-regexp (speedbar-extension-list-to-regex
732 speedbar-ignored-path-expressions)))
734 ;; If we don't have custom, then we set it here by hand.
735 (if (not (fboundp 'custom-declare-variable))
736 (setq speedbar-file-regexp (speedbar-extension-list-to-regex
737 speedbar-supported-extension-expressions)
738 speedbar-ignored-path-regexp (speedbar-extension-list-to-regex
739 speedbar-ignored-path-expressions)))
741 (defvar speedbar-update-flag (and
742 (or (fboundp 'run-with-idle-timer)
743 (fboundp 'start-itimer)
744 (boundp 'post-command-idle-hook))
745 (if (fboundp 'display-graphic-p)
746 (display-graphic-p)
747 window-system))
748 "*Non-nil means to automatically update the display.
749 When this is nil then speedbar will not follow the attached frame's path.
750 When speedbar is active, use:
752 \\<speedbar-key-map> `\\[speedbar-toggle-updates]'
754 to toggle this value.")
756 (defvar speedbar-syntax-table nil
757 "Syntax-table used on the speedbar.")
759 (if speedbar-syntax-table
761 (setq speedbar-syntax-table (make-syntax-table))
762 ;; turn off paren matching around here.
763 (modify-syntax-entry ?\' " " speedbar-syntax-table)
764 (modify-syntax-entry ?\" " " speedbar-syntax-table)
765 (modify-syntax-entry ?( " " speedbar-syntax-table)
766 (modify-syntax-entry ?) " " speedbar-syntax-table)
767 (modify-syntax-entry ?{ " " speedbar-syntax-table)
768 (modify-syntax-entry ?} " " speedbar-syntax-table)
769 (modify-syntax-entry ?[ " " speedbar-syntax-table)
770 (modify-syntax-entry ?] " " speedbar-syntax-table))
772 (defvar speedbar-key-map nil
773 "Keymap used in speedbar buffer.")
775 (if speedbar-key-map
777 (setq speedbar-key-map (make-keymap))
778 (suppress-keymap speedbar-key-map t)
780 ;; control
781 (define-key speedbar-key-map "g" 'speedbar-refresh)
782 (define-key speedbar-key-map "t" 'speedbar-toggle-updates)
783 (define-key speedbar-key-map "q" 'speedbar-close-frame)
784 (define-key speedbar-key-map "Q" 'delete-frame)
786 ;; navigation
787 (define-key speedbar-key-map "n" 'speedbar-next)
788 (define-key speedbar-key-map "p" 'speedbar-prev)
789 (define-key speedbar-key-map "\M-n" 'speedbar-restricted-next)
790 (define-key speedbar-key-map "\M-p" 'speedbar-restricted-prev)
791 (define-key speedbar-key-map "\C-\M-n" 'speedbar-forward-list)
792 (define-key speedbar-key-map "\C-\M-p" 'speedbar-backward-list)
793 (define-key speedbar-key-map " " 'speedbar-scroll-up)
794 (define-key speedbar-key-map [delete] 'speedbar-scroll-down)
796 ;; Short cuts I happen to find useful
797 (define-key speedbar-key-map "r"
798 (lambda () (interactive)
799 (speedbar-change-initial-expansion-list
800 speedbar-previously-used-expansion-list-name)))
801 (define-key speedbar-key-map "b"
802 (lambda () (interactive)
803 (speedbar-change-initial-expansion-list "quick buffers")))
804 (define-key speedbar-key-map "f"
805 (lambda () (interactive)
806 (speedbar-change-initial-expansion-list "files")))
808 ;; Overrides
809 (substitute-key-definition 'switch-to-buffer
810 'speedbar-switch-buffer-attached-frame
811 speedbar-key-map global-map)
813 (if speedbar-xemacsp
814 (progn
815 ;; mouse bindings so we can manipulate the items on each line
816 (define-key speedbar-key-map 'button2 'speedbar-click)
817 (define-key speedbar-key-map '(shift button2) 'speedbar-power-click)
818 ;; Info doc fix from Bob Weiner
819 (if (featurep 'infodoc)
821 (define-key speedbar-key-map 'button3 'speedbar-xemacs-popup-kludge))
822 (define-key speedbar-key-map '(meta button3) 'speedbar-mouse-item-info)
825 ;; mouse bindings so we can manipulate the items on each line
826 (define-key speedbar-key-map [down-mouse-1] 'speedbar-double-click)
827 (define-key speedbar-key-map [mouse-2] 'speedbar-click)
828 ;; This is the power click for new frames, or refreshing a cache
829 (define-key speedbar-key-map [S-mouse-2] 'speedbar-power-click)
830 ;; This adds a small unecessary visual effect
831 ;;(define-key speedbar-key-map [down-mouse-2] 'speedbar-quick-mouse)
832 (define-key speedbar-key-map [M-mouse-2] 'speedbar-mouse-item-info)
834 (define-key speedbar-key-map [down-mouse-3] 'speedbar-emacs-popup-kludge)
836 ;; This lets the user scroll as if we had a scrollbar... well maybe not
837 (define-key speedbar-key-map [mode-line mouse-2] 'speedbar-mouse-hscroll)
838 ;; another handy place users might click to get our menu.
839 (define-key speedbar-key-map [mode-line down-mouse-1]
840 'speedbar-emacs-popup-kludge)
842 ;; We can't switch buffers with the buffer mouse menu. Lets hack it.
843 (define-key speedbar-key-map [C-down-mouse-1] 'speedbar-hack-buffer-menu)
845 ;; Lastly, we want to track the mouse. Play here
846 (define-key speedbar-key-map [mouse-movement] 'speedbar-track-mouse)
849 (defun speedbar-make-specialized-keymap ()
850 "Create a keymap for use w/ a speedbar major or minor display mode.
851 This basically creates a sparse keymap, and makes it's parent be
852 `speedbar-key-map'."
853 (let ((k (make-sparse-keymap)))
854 (set-keymap-parent k speedbar-key-map)
857 (defvar speedbar-file-key-map nil
858 "Keymap used in speedbar buffer while files are displayed.")
860 (if speedbar-file-key-map
862 (setq speedbar-file-key-map (speedbar-make-specialized-keymap))
864 ;; Basic tree features
865 (define-key speedbar-file-key-map "e" 'speedbar-edit-line)
866 (define-key speedbar-file-key-map "\C-m" 'speedbar-edit-line)
867 (define-key speedbar-file-key-map "+" 'speedbar-expand-line)
868 (define-key speedbar-file-key-map "=" 'speedbar-expand-line)
869 (define-key speedbar-file-key-map "-" 'speedbar-contract-line)
871 ;; file based commands
872 (define-key speedbar-file-key-map "U" 'speedbar-up-directory)
873 (define-key speedbar-file-key-map "I" 'speedbar-item-info)
874 (define-key speedbar-file-key-map "B" 'speedbar-item-byte-compile)
875 (define-key speedbar-file-key-map "L" 'speedbar-item-load)
876 (define-key speedbar-file-key-map "C" 'speedbar-item-copy)
877 (define-key speedbar-file-key-map "D" 'speedbar-item-delete)
878 (define-key speedbar-file-key-map "O" 'speedbar-item-object-delete)
879 (define-key speedbar-file-key-map "R" 'speedbar-item-rename)
882 (defvar speedbar-easymenu-definition-base
883 (append
884 '("Speedbar"
885 ["Update" speedbar-refresh t]
886 ["Auto Update" speedbar-toggle-updates
887 :style toggle :selected speedbar-update-flag])
888 (if (and (or (fboundp 'defimage)
889 (fboundp 'make-image-specifier))
890 (if (fboundp 'display-graphic-p)
891 (display-graphic-p)
892 window-system))
893 (list
894 ["Use Images" speedbar-toggle-images
895 :style toggle :selected speedbar-use-images]))
897 "Base part of the speedbar menu.")
899 (defvar speedbar-easymenu-definition-special
900 '(["Edit Item On Line" speedbar-edit-line t]
901 ["Show All Files" speedbar-toggle-show-all-files
902 :style toggle :selected speedbar-show-unknown-files]
903 ["Expand File Tags" speedbar-expand-line
904 (save-excursion (beginning-of-line)
905 (looking-at "[0-9]+: *.\\+. "))]
906 ["Flush Cache & Expand" speedbar-flush-expand-line
907 (save-excursion (beginning-of-line)
908 (looking-at "[0-9]+: *.\\+. "))]
909 ["Contract File Tags" speedbar-contract-line
910 (save-excursion (beginning-of-line)
911 (looking-at "[0-9]+: *.-. "))]
912 ; ["Sort Tags" speedbar-toggle-sorting
913 ; :style toggle :selected speedbar-sort-tags]
914 "----"
915 ["File/Tag Information" speedbar-item-info t]
916 ["Load Lisp File" speedbar-item-load
917 (save-excursion
918 (beginning-of-line)
919 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))]
920 ["Byte Compile File" speedbar-item-byte-compile
921 (save-excursion
922 (beginning-of-line)
923 (looking-at "[0-9]+: *\\[[+-]\\] .+\\(\\.el\\)\\( \\|$\\)"))]
924 ["Copy File" speedbar-item-copy
925 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *\\["))]
926 ["Rename File" speedbar-item-rename
927 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))]
928 ["Delete File" speedbar-item-delete
929 (save-excursion (beginning-of-line) (looking-at "[0-9]+: *[[<]"))]
930 ["Delete Object" speedbar-item-object-delete
931 (save-excursion (beginning-of-line)
932 (looking-at "[0-9]+: *\\[[+-]\\] [^ \n]+ \\*?[!#]$"))]
934 "Additional menu items while in file-mode.")
936 (defvar speedbar-easymenu-definition-trailer
937 (append
938 (if (and (featurep 'custom) (fboundp 'custom-declare-variable))
939 (list ["Customize..." speedbar-customize t]))
940 (list
941 ["Close" speedbar-close-frame t]
942 ["Quit" delete-frame t] ))
943 "Menu items appearing at the end of the speedbar menu.")
945 (defvar speedbar-desired-buffer nil
946 "Non-nil when speedbar is showing buttons specific a special mode.
947 In this case it is the originating buffer.")
948 (defvar speedbar-buffer nil
949 "The buffer displaying the speedbar.")
950 (defvar speedbar-frame nil
951 "The frame displaying speedbar.")
952 (defvar speedbar-cached-frame nil
953 "The frame that was last created, then removed from the display.")
954 (defvar speedbar-full-text-cache nil
955 "The last open directory is saved in its entirety for ultra-fast switching.")
956 (defvar speedbar-timer nil
957 "The speedbar timer used for updating the buffer.")
958 (defvar speedbar-attached-frame nil
959 "The frame which started speedbar mode.
960 This is the frame from which all data displayed in the speedbar is
961 gathered, and in which files and such are displayed.")
963 (defvar speedbar-last-selected-file nil
964 "The last file which was selected in speedbar buffer.")
966 (defvar speedbar-shown-directories nil
967 "Maintain list of directories simultaneously open in the current speedbar.")
969 (defvar speedbar-directory-contents-alist nil
970 "An association list of directories and their contents.
971 Each sublist was returned by `speedbar-file-lists'. This list is
972 maintained to speed up the refresh rate when switching between
973 directories.")
975 (defvar speedbar-power-click nil
976 "Never set this by hand. Value is t when S-mouse activity occurs.")
979 ;;; Compatibility
981 (if (fboundp 'frame-parameter)
983 (defalias 'speedbar-frame-parameter 'frame-parameter)
985 (defun speedbar-frame-parameter (frame parameter)
986 "Return FRAME's PARAMETER value."
987 (cdr (assoc parameter (frame-parameters frame)))))
989 (if (fboundp 'make-overlay)
990 (progn
991 (defalias 'speedbar-make-overlay 'make-overlay)
992 (defalias 'speedbar-overlay-put 'overlay-put)
993 (defalias 'speedbar-delete-overlay 'delete-overlay)
994 (defalias 'speedbar-overlay-start 'overlay-start)
995 (defalias 'speedbar-overlay-end 'overlay-end)
996 (defalias 'speedbar-mode-line-update 'force-mode-line-update))
997 (defalias 'speedbar-make-overlay 'make-extent)
998 (defalias 'speedbar-overlay-put 'set-extent-property)
999 (defalias 'speedbar-delete-overlay 'delete-extent)
1000 (defalias 'speedbar-overlay-start 'extent-start)
1001 (defalias 'speedbar-overlay-end 'extent-end)
1002 (defalias 'speedbar-mode-line-update 'redraw-modeline))
1004 ;;; Mode definitions/ user commands
1007 ;;;###autoload
1008 (defalias 'speedbar 'speedbar-frame-mode)
1009 ;;;###autoload
1010 (defun speedbar-frame-mode (&optional arg)
1011 "Enable or disable speedbar. Positive ARG means turn on, negative turn off.
1012 nil means toggle. Once the speedbar frame is activated, a buffer in
1013 `speedbar-mode' will be displayed. Currently, only one speedbar is
1014 supported at a time.
1015 `speedbar-before-popup-hook' is called before popping up the speedbar frame.
1016 `speedbar-before-delete-hook' is called before the frame is deleted."
1017 (interactive "P")
1018 ;; toggle frame on and off.
1019 (if (not arg) (if (and (frame-live-p speedbar-frame)
1020 (frame-visible-p speedbar-frame))
1021 (setq arg -1) (setq arg 1)))
1022 ;; turn the frame off on neg number
1023 (if (and (numberp arg) (< arg 0))
1024 (progn
1025 (run-hooks 'speedbar-before-delete-hook)
1026 (if (and speedbar-frame (frame-live-p speedbar-frame))
1027 (progn
1028 (setq speedbar-cached-frame speedbar-frame)
1029 (make-frame-invisible speedbar-frame)))
1030 (setq speedbar-frame nil)
1031 (speedbar-set-timer nil)
1032 ;; Used to delete the buffer. This has the annoying affect of
1033 ;; preventing whatever took its place from ever appearing
1034 ;; as the default after a C-x b was typed
1035 ;;(if (bufferp speedbar-buffer)
1036 ;; (kill-buffer speedbar-buffer))
1038 ;; Set this as our currently attached frame
1039 (setq speedbar-attached-frame (selected-frame))
1040 (run-hooks 'speedbar-before-popup-hook)
1041 ;; Get the frame to work in
1042 (if (frame-live-p speedbar-cached-frame)
1043 (progn
1044 (setq speedbar-frame speedbar-cached-frame)
1045 (make-frame-visible speedbar-frame)
1046 ;; Get the buffer to play with
1047 (speedbar-mode)
1048 (select-frame speedbar-frame)
1049 (if (not (eq (current-buffer) speedbar-buffer))
1050 (switch-to-buffer speedbar-buffer))
1051 (set-window-dedicated-p (selected-window) t)
1052 (raise-frame speedbar-frame)
1053 (speedbar-set-timer speedbar-update-speed)
1055 (if (frame-live-p speedbar-frame)
1056 (raise-frame speedbar-frame)
1057 (setq speedbar-frame
1058 (if speedbar-xemacsp
1059 ;; Only guess height if it is not specified.
1060 (if (member 'height speedbar-frame-plist)
1061 (make-frame speedbar-frame-plist)
1062 (make-frame (nconc (list 'height
1063 (speedbar-needed-height))
1064 speedbar-frame-plist)))
1065 (let* ((mh (speedbar-frame-parameter nil 'menu-bar-lines))
1066 (cfx (speedbar-frame-parameter nil 'left))
1067 (cfy (speedbar-frame-parameter nil 'top))
1068 (cfw (frame-pixel-width))
1069 (params
1070 ;; Only add a guessed height if one is not specified
1071 ;; in the input parameters.
1072 (if (assoc 'height speedbar-frame-parameters)
1073 speedbar-frame-parameters
1074 (append
1075 speedbar-frame-parameters
1076 (list (cons 'height (+ mh (frame-height)))))))
1077 (frame
1078 (if (or (< emacs-major-version 20)
1079 (not (eq window-system 'x)))
1080 (make-frame params)
1081 (let ((x-pointer-shape x-pointer-top-left-arrow)
1082 (x-sensitive-text-pointer-shape
1083 x-pointer-hand2))
1084 (make-frame params)))))
1085 ;; Position speedbar frame.
1086 (if (or (not window-system) (eq window-system 'pc)
1087 (assoc 'left speedbar-frame-parameters)
1088 (assoc 'top speedbar-frame-parameters))
1089 ;; Do no positioning if not on a windowing system,
1090 ;; or if left/top were specified in the parameters.
1091 frame
1092 (let ((cfx
1093 (if (not (consp cfx))
1095 ;; If cfx is a list, that means we grow
1096 ;; from a specific edge of the display.
1097 ;; Convert that to the distance from the
1098 ;; left side of the display.
1099 (if (eq (car cfx) '-)
1100 ;; A - means distance from the right edge
1101 ;; of the display, or DW - cfx - framewidth
1102 (- (x-display-pixel-width) (car (cdr cfx))
1103 (frame-pixel-width))
1104 (car (cdr cfx))))))
1105 (modify-frame-parameters
1106 frame
1107 (list
1108 (cons
1109 'left
1110 ;; Decide which side to put it
1111 ;; on. 200 is just a buffer
1112 ;; for the left edge of the
1113 ;; screen. The extra 10 is just
1114 ;; dressings for window decorations.
1115 (let ((sfw (frame-pixel-width frame)))
1116 (let ((left-guess (- cfx 10 sfw))
1117 (right-guess (+ cfx cfw 5)))
1118 (let ((left-margin left-guess)
1119 (right-margin
1120 (- (x-display-pixel-width)
1121 right-guess 5 sfw)))
1122 (cond ((>= left-margin 0) left-guess)
1123 ((>= right-margin 0) right-guess)
1124 ;; otherwise choose side we overlap less
1125 ((> left-margin right-margin) 0)
1126 (t (- (x-display-pixel-width) sfw 5)))))))
1127 (cons 'top cfy)))
1128 frame)))))
1129 ;; reset the selection variable
1130 (setq speedbar-last-selected-file nil)
1131 ;; Put the buffer into the frame
1132 (save-window-excursion
1133 ;; Get the buffer to play with
1134 (speedbar-mode)
1135 (select-frame speedbar-frame)
1136 (switch-to-buffer speedbar-buffer)
1137 (set-window-dedicated-p (selected-window) t))
1138 (if (and (or (null window-system) (eq window-system 'pc))
1139 (fboundp 'set-frame-name))
1140 (progn
1141 (select-frame speedbar-frame)
1142 (set-frame-name "Speedbar")))
1143 (speedbar-set-timer speedbar-update-speed)))))
1145 ;;;###autoload
1146 (defun speedbar-get-focus ()
1147 "Change frame focus to or from the speedbar frame.
1148 If the selected frame is not speedbar, then speedbar frame is
1149 selected. If the speedbar frame is active, then select the attached frame."
1150 (interactive)
1151 (if (eq (selected-frame) speedbar-frame)
1152 (if (frame-live-p speedbar-attached-frame)
1153 (select-frame speedbar-attached-frame))
1154 ;; If updates are off, then refresh the frame (they want it now...)
1155 (if (not speedbar-update-flag)
1156 (let ((speedbar-update-flag t))
1157 (speedbar-timer-fn)))
1158 ;; make sure we have a frame
1159 (if (not (frame-live-p speedbar-frame)) (speedbar-frame-mode 1))
1160 ;; go there
1161 (select-frame speedbar-frame)
1163 (other-frame 0))
1165 (defun speedbar-close-frame ()
1166 "Turn off a currently active speedbar."
1167 (interactive)
1168 (speedbar-frame-mode -1)
1169 (select-frame speedbar-attached-frame)
1170 (other-frame 0))
1172 (defun speedbar-switch-buffer-attached-frame (&optional buffer)
1173 "Switch to BUFFER in speedbar's attached frame, and raise that frame.
1174 This overrides the default behavior of `switch-to-buffer' which is
1175 broken because of the dedicated speedbar frame."
1176 (interactive)
1177 ;; Assume we are in the speedbar frame.
1178 (speedbar-get-focus)
1179 ;; Now switch buffers
1180 (if buffer
1181 (switch-to-buffer buffer)
1182 (call-interactively 'switch-to-buffer nil nil)))
1184 (defmacro speedbar-frame-width ()
1185 "Return the width of the speedbar frame in characters.
1186 nil if it doesn't exist."
1187 '(frame-width speedbar-frame))
1189 ;; XEmacs function only.
1190 (defun speedbar-needed-height (&optional frame)
1191 "The needed height for the tool bar FRAME (in characters)."
1192 (or frame (setq frame (selected-frame)))
1193 ;; The 1 is the missing modeline/minibuffer
1194 (+ 1 (/ (frame-pixel-height frame)
1195 (face-height 'default frame))))
1197 (defun speedbar-mode ()
1198 "Major mode for managing a display of directories and tags.
1199 \\<speedbar-key-map>
1200 The first line represents the default path of the speedbar frame.
1201 Each directory segment is a button which jumps speedbar's default
1202 directory to that path. Buttons are activated by clicking `\\[speedbar-click]'.
1203 In some situations using `\\[speedbar-power-click]' is a `power click' which will
1204 rescan cached items, or pop up new frames.
1206 Each line starting with <+> represents a directory. Click on the <+>
1207 to insert the directory listing into the current tree. Click on the
1208 <-> to retract that list. Click on the directory name to go to that
1209 directory as the default.
1211 Each line starting with [+] is a file. If the variable
1212 `speedbar-show-unknown-files' is t, the lines starting with [?] are
1213 files which don't have imenu support, but are not expressly ignored.
1214 Files are completely ignored if they match `speedbar-file-unshown-regexp'
1215 which is generated from `completion-ignored-extensions'.
1217 Files with a `*' character after their name are files checked out of a
1218 version control system. (currently only RCS is supported.) New
1219 version control systems can be added by examining the documentation
1220 for `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p'
1222 Files with a `#' or `!' character after them are source files that
1223 have an object file associated with them. The `!' indicates that the
1224 files is out of date. You can control what source/object associations
1225 exist through the variable `speedbar-obj-alist'.
1227 Click on the [+] to display a list of tags from that file. Click on
1228 the [-] to retract the list. Click on the file name to edit the file
1229 in the attached frame.
1231 If you open tags, you might find a node starting with {+}, which is a
1232 category of tags. Click the {+} to expand the category. Jump-able
1233 tags start with >. Click the name of the tag to go to that position
1234 in the selected file.
1236 \\{speedbar-key-map}"
1237 ;; NOT interactive
1238 (save-excursion
1239 (setq speedbar-buffer (set-buffer (get-buffer-create " SPEEDBAR")))
1240 (kill-all-local-variables)
1241 (setq major-mode 'speedbar-mode)
1242 (setq mode-name "Speedbar")
1243 (set-syntax-table speedbar-syntax-table)
1244 (setq font-lock-keywords nil) ;; no font-locking please
1245 (setq truncate-lines t)
1246 (make-local-variable 'frame-title-format)
1247 (setq frame-title-format "Speedbar")
1248 ;; Set this up special just for the speedbar buffer
1249 ;; Terminal minibuffer stuff does not require this.
1250 (if (and window-system (not (eq window-system 'pc))
1251 (null default-minibuffer-frame))
1252 (progn
1253 (make-local-variable 'default-minibuffer-frame)
1254 (setq default-minibuffer-frame speedbar-attached-frame)))
1255 ;; Correct use of `temp-buffer-show-function': Bob Weiner
1256 (if (and (boundp 'temp-buffer-show-hook)
1257 (boundp 'temp-buffer-show-function))
1258 (progn (make-local-variable 'temp-buffer-show-hook)
1259 (setq temp-buffer-show-hook temp-buffer-show-function)))
1260 (make-local-variable 'temp-buffer-show-function)
1261 (setq temp-buffer-show-function 'speedbar-temp-buffer-show-function)
1262 (if speedbar-xemacsp
1263 (progn
1264 ;; Argh! mouse-track-click-hook doesn't understand the
1265 ;; make-local-hook conventions.
1266 (make-local-variable 'mouse-track-click-hook)
1267 (add-hook 'mouse-track-click-hook
1268 (lambda (event count)
1269 (if (/= (event-button event) 1)
1270 nil ; Do normal operations.
1271 (cond ((eq count 1)
1272 (speedbar-quick-mouse event))
1273 ((or (eq count 2)
1274 (eq count 3))
1275 (speedbar-mouse-set-point event)
1276 (speedbar-do-function-pointer)
1277 (speedbar-quick-mouse event)))
1278 ;; Don't do normal operations.
1279 t)))))
1280 (make-local-hook 'kill-buffer-hook)
1281 (add-hook 'kill-buffer-hook (lambda () (let ((skilling (boundp 'skilling)))
1282 (if skilling
1284 (if (eq (current-buffer)
1285 speedbar-buffer)
1286 (speedbar-frame-mode -1)))))
1287 t t)
1288 (toggle-read-only 1)
1289 (speedbar-set-mode-line-format)
1290 (if speedbar-xemacsp
1291 (set (make-local-variable 'mouse-motion-handler)
1292 'speedbar-track-mouse-xemacs)
1293 (if speedbar-track-mouse-flag
1294 (set (make-local-variable 'track-mouse) t)) ;this could be messy.
1295 (setq auto-show-mode nil)) ;no auto-show for Emacs
1296 (run-hooks 'speedbar-mode-hook))
1297 (speedbar-update-contents)
1298 speedbar-buffer)
1300 (defmacro speedbar-with-attached-buffer (&rest forms)
1301 "Execute FORMS in the attached frame's special buffer.
1302 Optionally select that frame if necessary."
1303 `(save-selected-window
1304 (speedbar-set-timer speedbar-update-speed)
1305 (select-frame speedbar-attached-frame)
1306 ,@forms
1307 (speedbar-maybee-jump-to-attached-frame)))
1309 (defun speedbar-message (fmt &rest args)
1310 "Like message, but for use in the speedbar frame.
1311 Argument FMT is the format string, and ARGS are the arguments for message."
1312 (save-selected-window
1313 (select-frame speedbar-attached-frame)
1314 (apply 'message fmt args)))
1316 (defun speedbar-y-or-n-p (prompt)
1317 "Like `y-or-n-p', but for use in the speedbar frame.
1318 Argument PROMPT is the prompt to use."
1319 (save-selected-window
1320 (if (and default-minibuffer-frame (not (eq default-minibuffer-frame
1321 speedbar-attached-frame)))
1322 (select-frame speedbar-attached-frame))
1323 (y-or-n-p prompt)))
1325 (defun speedbar-show-info-under-mouse (&optional event)
1326 "Call the info function for the line under the mouse.
1327 Optional EVENT is currently not used."
1328 (let ((pos (mouse-position))) ; we ignore event until I use it later.
1329 (if (equal (car pos) speedbar-frame)
1330 (save-excursion
1331 (save-window-excursion
1332 (apply 'set-mouse-position pos)
1333 (speedbar-item-info))))))
1335 (defun speedbar-set-mode-line-format ()
1336 "Set the format of the mode line based on the current speedbar environment.
1337 This gives visual indications of what is up. It EXPECTS the speedbar
1338 frame and window to be the currently active frame and window."
1339 (if (and (frame-live-p speedbar-frame)
1340 (or (not speedbar-xemacsp)
1341 (specifier-instance has-modeline-p)))
1342 (save-excursion
1343 (set-buffer speedbar-buffer)
1344 (let* ((w (or (speedbar-frame-width) 20))
1345 (p1 "<<")
1346 (p5 ">>")
1347 (p3 (if speedbar-update-flag "SPEEDBAR" "SLOWBAR"))
1348 (blank (- w (length p1) (length p3) (length p5)
1349 (if line-number-mode 4 0)))
1350 (p2 (if (> blank 0)
1351 (make-string (/ blank 2) ? )
1352 ""))
1353 (p4 (if (> blank 0)
1354 (make-string (+ (/ blank 2) (% blank 2)) ? )
1355 ""))
1357 (if line-number-mode
1358 (list (concat p1 p2 p3) '(line-number-mode " %3l")
1359 (concat p4 p5))
1360 (list (concat p1 p2 p3 p4 p5)))))
1361 (if (not (equal mode-line-format tf))
1362 (progn
1363 (setq mode-line-format tf)
1364 (speedbar-mode-line-update)))))))
1366 (defun speedbar-temp-buffer-show-function (buffer)
1367 "Placed in the variable `temp-buffer-show-function' in `speedbar-mode'.
1368 If a user requests help using \\[help-command] <Key> the temp BUFFER will be
1369 redirected into a window on the attached frame."
1370 (if speedbar-attached-frame (select-frame speedbar-attached-frame))
1371 (pop-to-buffer buffer nil)
1372 (other-window -1)
1373 ;; Fix for using this hook on some platforms: Bob Weiner
1374 (cond ((not speedbar-xemacsp)
1375 (run-hooks 'temp-buffer-show-hook))
1376 ((fboundp 'run-hook-with-args)
1377 (run-hook-with-args 'temp-buffer-show-hook buffer))
1378 ((and (boundp 'temp-buffer-show-hook)
1379 (listp temp-buffer-show-hook))
1380 (mapcar (function (lambda (hook) (funcall hook buffer)))
1381 temp-buffer-show-hook))))
1383 (defvar speedbar-previous-menu nil
1384 "The menu before the last `speedbar-reconfigure-keymaps' was called.")
1386 (defun speedbar-reconfigure-keymaps ()
1387 "Reconfigure the menu-bar in a speedbar frame.
1388 Different menu items are displayed depending on the current display mode
1389 and the existence of packages."
1390 (let ((md (append
1391 speedbar-easymenu-definition-base
1392 (if speedbar-shown-directories
1393 ;; file display mode version
1394 (speedbar-initial-menu)
1395 (save-excursion
1396 (select-frame speedbar-attached-frame)
1397 (if (local-variable-p
1398 'speedbar-easymenu-definition-special
1399 (current-buffer))
1400 ;; If bound locally, we can use it
1401 speedbar-easymenu-definition-special)))
1402 ;; Dynamic menu stuff
1403 '("-")
1404 (list (cons "Displays"
1405 (let ((displays nil)
1406 (alist speedbar-initial-expansion-mode-alist))
1407 (while alist
1408 (setq displays
1409 (cons
1410 (vector
1411 (capitalize (car (car alist)))
1412 (list
1413 'speedbar-change-initial-expansion-list
1414 (car (car alist)))
1416 displays))
1417 (setq alist (cdr alist)))
1418 displays)))
1419 ;; The trailer
1420 speedbar-easymenu-definition-trailer))
1421 (localmap (save-excursion
1422 (let ((cf (selected-frame)))
1423 (prog2
1424 (select-frame speedbar-attached-frame)
1425 (if (local-variable-p
1426 'speedbar-special-mode-key-map
1427 (current-buffer))
1428 speedbar-special-mode-key-map)
1429 (select-frame cf))))))
1430 (save-excursion
1431 (set-buffer speedbar-buffer)
1432 (use-local-map (or localmap
1433 (speedbar-initial-keymap)
1434 ;; This creates a small keymap we can glom the
1435 ;; menu adjustments into.
1436 (speedbar-make-specialized-keymap)))
1437 ;; Delete the old menu if applicable.
1438 (if speedbar-previous-menu (easy-menu-remove speedbar-previous-menu))
1439 (setq speedbar-previous-menu md)
1440 ;; Now add the new menu
1441 (if (not speedbar-xemacsp)
1442 (easy-menu-define speedbar-menu-map (current-local-map)
1443 "Speedbar menu" md)
1444 (easy-menu-add md (current-local-map))
1445 (set-buffer-menubar (list md))))
1446 (run-hooks 'speedbar-reconfigure-keymaps-hook)))
1449 ;;; User Input stuff
1452 ;; XEmacs: this can be implemented using modeline keymaps, but there
1453 ;; is no use, as we have horizontal scrollbar (as the docstring
1454 ;; hints.)
1455 (defun speedbar-mouse-hscroll (e)
1456 "Read a mouse event E from the mode line, and horizontally scroll.
1457 If the mouse is being clicked on the far left, or far right of the
1458 mode-line. This is only useful for non-XEmacs"
1459 (interactive "e")
1460 (let* ((xp (car (nth 2 (car (cdr e)))))
1461 (cpw (/ (frame-pixel-width)
1462 (frame-width)))
1463 (oc (1+ (/ xp cpw)))
1465 (cond ((< oc 3)
1466 (scroll-left 2))
1467 ((> oc (- (window-width) 3))
1468 (scroll-right 2))
1469 (t (speedbar-message
1470 "Click on the edge of the modeline to scroll left/right")))
1471 ;;(speedbar-message "X: Pixel %d Char Pixels %d On char %d" xp cpw oc)
1474 (defun speedbar-customize ()
1475 "Customize speedbar using the Custom package."
1476 (interactive)
1477 (let ((sf (selected-frame)))
1478 (select-frame speedbar-attached-frame)
1479 (customize-group 'speedbar)
1480 (select-frame sf))
1481 (speedbar-maybee-jump-to-attached-frame))
1483 (defun speedbar-track-mouse (event)
1484 "For motion EVENT, display info about the current line."
1485 (interactive "e")
1486 (if (not speedbar-track-mouse-flag)
1488 (save-excursion
1489 (let ((char (nth 1 (car (cdr event)))))
1490 (if (not (numberp char))
1491 (speedbar-message nil)
1492 (goto-char char)
1493 ;; (speedbar-message "%S" event)
1494 (speedbar-item-info)
1495 )))))
1497 (defun speedbar-track-mouse-xemacs (event)
1498 "For motion EVENT, display info about the current line."
1499 (if (functionp (default-value 'mouse-motion-handler))
1500 (funcall (default-value 'mouse-motion-handler) event))
1501 (if speedbar-track-mouse-flag
1502 (save-excursion
1503 (save-window-excursion
1504 (condition-case ()
1505 (progn (mouse-set-point event)
1506 ;; Prevent focus-related bugs.
1507 (if (eq major-mode 'speedbar-mode)
1508 (speedbar-item-info)))
1509 (error nil))))))
1511 ;; In XEmacs, we make popup menus work on the item over mouse (as
1512 ;; opposed to where the point happens to be.) We attain this by
1513 ;; temporarily moving the point to that place.
1514 ;; Hrvoje Niksic <hniksic@srce.hr>
1515 (defun speedbar-xemacs-popup-kludge (event)
1516 "Pop up a menu related to the clicked on item.
1517 Must be bound to EVENT."
1518 (interactive "e")
1519 (select-frame speedbar-frame)
1520 (save-excursion
1521 (goto-char (event-closest-point event))
1522 (beginning-of-line)
1523 (forward-char (min 5 (- (save-excursion (end-of-line) (point))
1524 (save-excursion (beginning-of-line) (point)))))
1525 (popup-mode-menu)
1526 ;; Wait for menu to bail out. `popup-mode-menu' (and other popup
1527 ;; menu functions) return immediately.
1528 (let (new)
1529 (while (not (misc-user-event-p (setq new (next-event))))
1530 (dispatch-event new))
1531 (dispatch-event new))))
1533 (defun speedbar-emacs-popup-kludge (e)
1534 "Pop up a menu related to the clicked on item.
1535 Must be bound to event E."
1536 (interactive "e")
1537 (save-excursion
1538 (mouse-set-point e)
1539 ;; This gets the cursor where the user can see it.
1540 (if (not (bolp)) (forward-char -1))
1541 (sit-for 0)
1542 (if (< emacs-major-version 20)
1543 (mouse-major-mode-menu e)
1544 (mouse-major-mode-menu e nil))))
1546 (defun speedbar-hack-buffer-menu (e)
1547 "Control mouse 1 is buffer menu.
1548 This hack overrides it so that the right thing happens in the main
1549 Emacs frame, not in the speedbar frame.
1550 Argument E is the event causing this activity."
1551 (interactive "e")
1552 (let ((fn (lookup-key global-map (if speedbar-xemacsp
1553 '(control button1)
1554 [C-down-mouse-1])))
1555 (newbuff nil))
1556 (unwind-protect
1557 (save-excursion
1558 (set-window-dedicated-p (selected-window) nil)
1559 (call-interactively fn)
1560 (setq newbuff (current-buffer)))
1561 (switch-to-buffer speedbar-buffer)
1562 (set-window-dedicated-p (selected-window) t))
1563 (if (not (eq newbuff speedbar-buffer))
1564 (speedbar-with-attached-buffer
1565 (switch-to-buffer newbuff)))))
1567 (defun speedbar-next (arg)
1568 "Move to the next ARGth line in a speedbar buffer."
1569 (interactive "p")
1570 (forward-line (or arg 1))
1571 (speedbar-item-info)
1572 (speedbar-position-cursor-on-line))
1574 (defun speedbar-prev (arg)
1575 "Move to the previous ARGth line in a speedbar buffer."
1576 (interactive "p")
1577 (speedbar-next (if arg (- arg) -1)))
1579 (defun speedbar-restricted-move (arg)
1580 "Move to the next ARGth line in a speedbar buffer at the same depth.
1581 This means that movement is restricted to a subnode, and that siblings
1582 of intermediate nodes are skipped."
1583 (if (not (numberp arg)) (signal 'wrong-type-argument (list arg 'numberp)))
1584 ;; First find the extent for which we are allowed to move.
1585 (let ((depth (save-excursion (beginning-of-line)
1586 (if (looking-at "[0-9]+:")
1587 (string-to-int (match-string 0))
1588 0)))
1589 (crement (if (< arg 0) 1 -1)) ; decrement or increment
1590 (lastmatch (point)))
1591 (while (/= arg 0)
1592 (forward-line (- crement))
1593 (let ((subdepth (save-excursion (beginning-of-line)
1594 (if (looking-at "[0-9]+:")
1595 (string-to-int (match-string 0))
1596 0))))
1597 (cond ((or (< subdepth depth)
1598 (progn (end-of-line) (eobp))
1599 (progn (beginning-of-line) (bobp)))
1600 ;; We have reached the end of this block.
1601 (goto-char lastmatch)
1602 (setq arg 0)
1603 (error "End of sub-list"))
1604 ((= subdepth depth)
1605 (setq lastmatch (point)
1606 arg (+ arg crement))))))
1607 (speedbar-position-cursor-on-line)))
1609 (defun speedbar-restricted-next (arg)
1610 "Move to the next ARGth line in a speedbar buffer at the same depth.
1611 This means that movement is restricted to a subnode, and that siblings
1612 of intermediate nodes are skipped."
1613 (interactive "p")
1614 (speedbar-restricted-move (or arg 1))
1615 (speedbar-item-info))
1618 (defun speedbar-restricted-prev (arg)
1619 "Move to the previous ARGth line in a speedbar buffer at the same depth.
1620 This means that movement is restricted to a subnode, and that siblings
1621 of intermediate nodes are skipped."
1622 (interactive "p")
1623 (speedbar-restricted-move (if arg (- arg) -1))
1624 (speedbar-item-info))
1626 (defun speedbar-navigate-list (arg)
1627 "Move across ARG groups of similarly typed items in speedbar.
1628 Stop on the first line of the next type of item, or on the last or first item
1629 if we reach a buffer boundary."
1630 (interactive "p")
1631 (beginning-of-line)
1632 (if (looking-at "[0-9]+: *[[<{][-+?][]>}] ")
1633 (let ((str (regexp-quote (match-string 0))))
1634 (while (looking-at str)
1635 (speedbar-restricted-move arg)
1636 (beginning-of-line))))
1637 (speedbar-position-cursor-on-line))
1639 (defun speedbar-forward-list ()
1640 "Move forward over the current list.
1641 A LIST in speedbar is a group of similarly typed items, such as directories,
1642 files, or the directory button."
1643 (interactive)
1644 (speedbar-navigate-list 1)
1645 (speedbar-item-info))
1647 (defun speedbar-backward-list ()
1648 "Move backward over the current list.
1649 A LIST in speedbar is a group of similarly typed items, such as directories,
1650 files, or the directory button."
1651 (interactive)
1652 (speedbar-navigate-list -1)
1653 (speedbar-item-info))
1655 (defun speedbar-scroll-up (&optional arg)
1656 "Page down one screen-full of the speedbar, or ARG lines."
1657 (interactive "P")
1658 (scroll-up arg)
1659 (speedbar-position-cursor-on-line))
1661 (defun speedbar-scroll-down (&optional arg)
1662 "Page up one screen-full of the speedbar, or ARG lines."
1663 (interactive "P")
1664 (scroll-down arg)
1665 (speedbar-position-cursor-on-line))
1667 (defun speedbar-up-directory ()
1668 "Keyboard accelerator for moving the default directory up one.
1669 Assumes that the current buffer is the speedbar buffer"
1670 (interactive)
1671 (setq default-directory (expand-file-name (concat default-directory "../")))
1672 (speedbar-update-contents))
1674 ;;; Speedbar file activity (aka creeping featurism)
1676 (defun speedbar-refresh ()
1677 "Refresh the current speedbar display, disposing of any cached data."
1678 (interactive)
1679 (let ((dl speedbar-shown-directories)
1680 (dm (and (boundp 'deactivate-mark) deactivate-mark)))
1681 (while dl
1682 (adelete 'speedbar-directory-contents-alist (car dl))
1683 (setq dl (cdr dl)))
1684 (if (<= 1 speedbar-verbosity-level)
1685 (speedbar-message "Refreshing speedbar..."))
1686 (speedbar-update-contents)
1687 (speedbar-stealthy-updates)
1688 ;; Reset the timer in case it got really hosed for some reason...
1689 (speedbar-set-timer speedbar-update-speed)
1690 (if (<= 1 speedbar-verbosity-level)
1691 (speedbar-message "Refreshing speedbar...done"))
1692 (if (boundp 'deactivate-mark) (setq deactivate-mark dm))))
1694 (defun speedbar-item-load ()
1695 "Load the item under the cursor or mouse if it is a Lisp file."
1696 (interactive)
1697 (let ((f (speedbar-line-file)))
1698 (if (and (file-exists-p f) (string-match "\\.el\\'" f))
1699 (if (and (file-exists-p (concat f "c"))
1700 (speedbar-y-or-n-p (format "Load %sc? " f)))
1701 ;; If the compiled version exists, load that instead...
1702 (load-file (concat f "c"))
1703 (load-file f))
1704 (error "Not a loadable file"))))
1706 (defun speedbar-item-byte-compile ()
1707 "Byte compile the item under the cursor or mouse if it is a Lisp file."
1708 (interactive)
1709 (let ((f (speedbar-line-file))
1710 (sf (selected-frame)))
1711 (if (and (file-exists-p f) (string-match "\\.el\\'" f))
1712 (progn
1713 (select-frame speedbar-attached-frame)
1714 (byte-compile-file f nil)
1715 (select-frame sf)
1716 (speedbar-reset-scanners)))
1719 (defun speedbar-mouse-item-info (event)
1720 "Provide information about what the user clicked on.
1721 This should be bound to a mouse EVENT."
1722 (interactive "e")
1723 (mouse-set-point event)
1724 (speedbar-item-info))
1726 (defun speedbar-generic-item-info ()
1727 "Attempt to derive, and then display information about thils line item.
1728 File style information is displayed with `speedbar-item-info'."
1729 (save-excursion
1730 (beginning-of-line)
1731 ;; Skip invisible number info.
1732 (if (looking-at "\\([0-9]+\\):") (goto-char (match-end 0)))
1733 ;; Skip items in "folder" type text characters.
1734 (if (looking-at "\\s-*[[<({].[]>)}] ") (goto-char (match-end 0)))
1735 ;; Get the text
1736 (speedbar-message "Text: %s" (buffer-substring-no-properties
1737 (point) (progn (end-of-line) (point))))))
1739 (defun speedbar-item-info ()
1740 "Display info in the mini-buffer about the button the mouse is over.
1741 This function can be replaced in `speedbar-mode-functions-list' as
1742 `speedbar-item-info'"
1743 (interactive)
1744 (let (message-log-max)
1745 (funcall (or (speedbar-fetch-replacement-function 'speedbar-item-info)
1746 'speedbar-generic-item-info))))
1748 (defun speedbar-item-info-file-helper (&optional filename)
1749 "Display info about a file that is on the current line.
1750 nil if not applicable. If FILENAME, then use that instead of reading
1751 it from the speedbar buffer."
1752 (let* ((item (or filename (speedbar-line-file)))
1753 (attr (if item (file-attributes item) nil)))
1754 (if (and item attr) (speedbar-message "%s %-6d %s" (nth 8 attr)
1755 (nth 7 attr) item)
1756 nil)))
1758 (defun speedbar-item-info-tag-helper ()
1759 "Display info about a tag that is on the current line.
1760 nil if not applicable."
1761 (save-excursion
1762 (beginning-of-line)
1763 (if (re-search-forward " [-+=]?> \\([^\n]+\\)"
1764 (save-excursion(end-of-line)(point)) t)
1765 (let ((tag (match-string 1))
1766 (attr (speedbar-line-token))
1767 (item nil))
1768 (if (and (featurep 'semantic) (semantic-token-p attr))
1769 (speedbar-message (semantic-summerize-nonterminal attr))
1770 (looking-at "\\([0-9]+\\):")
1771 (setq item (file-name-nondirectory (speedbar-line-path)))
1772 (speedbar-message "Tag: %s in %s" tag item)))
1773 (if (re-search-forward "{[+-]} \\([^\n]+\\)$"
1774 (save-excursion(end-of-line)(point)) t)
1775 (speedbar-message "Group of tags \"%s\"" (match-string 1))
1776 (if (re-search-forward " [+-]?[()|@] \\([^\n]+\\)$" nil t)
1777 (let* ((detailtext (match-string 1))
1778 (detail (or (speedbar-line-token) detailtext))
1779 (parent (save-excursion
1780 (beginning-of-line)
1781 (let ((dep (if (looking-at "[0-9]+:")
1782 (1- (string-to-int (match-string 0)))
1783 0)))
1784 (re-search-backward (concat "^"
1785 (int-to-string dep)
1786 ":")
1787 nil t))
1788 (if (looking-at "[0-9]+: +[-+=>]> \\([^\n]+\\)$")
1789 (speedbar-line-token)
1790 nil))))
1791 (if (and (featurep 'semantic) (semantic-token-p detail))
1792 (speedbar-message
1793 (semantic-summerize-nonterminal detail parent))
1794 (if parent
1795 (speedbar-message "Detail: %s of tag %s" detail
1796 (if (and (featurep 'semantic)
1797 (semantic-token-p parent))
1798 (semantic-token-name parent)
1799 parent))
1800 (speedbar-message "Detail: %s" detail))))
1801 nil)))))
1803 (defun speedbar-files-item-info ()
1804 "Display info in the mini-buffer about the button the mouse is over."
1805 (if (not speedbar-shown-directories)
1806 (speedbar-generic-item-info)
1807 (or (speedbar-item-info-file-helper)
1808 (speedbar-item-info-tag-helper)
1809 (speedbar-generic-item-info))))
1811 (defun speedbar-item-copy ()
1812 "Copy the item under the cursor.
1813 Files can be copied to new names or places."
1814 (interactive)
1815 (let ((f (speedbar-line-file)))
1816 (if (not f) (error "Not a file"))
1817 (if (file-directory-p f)
1818 (error "Cannot copy directory")
1819 (let* ((rt (read-file-name (format "Copy %s to: "
1820 (file-name-nondirectory f))
1821 (file-name-directory f)))
1822 (refresh (member (expand-file-name (file-name-directory rt))
1823 speedbar-shown-directories)))
1824 ;; Create the right file name part
1825 (if (file-directory-p rt)
1826 (setq rt
1827 (concat (expand-file-name rt)
1828 (if (string-match "[/\\]$" rt) "" "/")
1829 (file-name-nondirectory f))))
1830 (if (or (not (file-exists-p rt))
1831 (speedbar-y-or-n-p (format "Overwrite %s with %s? " rt f)))
1832 (progn
1833 (copy-file f rt t t)
1834 ;; refresh display if the new place is currently displayed.
1835 (if refresh
1836 (progn
1837 (speedbar-refresh)
1838 (if (not (speedbar-goto-this-file rt))
1839 (speedbar-goto-this-file f))))
1840 ))))))
1842 (defun speedbar-item-rename ()
1843 "Rename the item under the cursor or mouse.
1844 Files can be renamed to new names or moved to new directories."
1845 (interactive)
1846 (let ((f (speedbar-line-file)))
1847 (if f
1848 (let* ((rt (read-file-name (format "Rename %s to: "
1849 (file-name-nondirectory f))
1850 (file-name-directory f)))
1851 (refresh (member (expand-file-name (file-name-directory rt))
1852 speedbar-shown-directories)))
1853 ;; Create the right file name part
1854 (if (file-directory-p rt)
1855 (setq rt
1856 (concat (expand-file-name rt)
1857 (if (string-match "[/\\]\\'" rt) "" "/")
1858 (file-name-nondirectory f))))
1859 (if (or (not (file-exists-p rt))
1860 (speedbar-y-or-n-p (format "Overwrite %s with %s? " rt f)))
1861 (progn
1862 (rename-file f rt t)
1863 ;; refresh display if the new place is currently displayed.
1864 (if refresh
1865 (progn
1866 (speedbar-refresh)
1867 (speedbar-goto-this-file rt)
1868 )))))
1869 (error "Not a file"))))
1871 (defun speedbar-item-delete ()
1872 "Delete the item under the cursor. Files are removed from disk."
1873 (interactive)
1874 (let ((f (speedbar-line-file)))
1875 (if (not f) (error "Not a file"))
1876 (if (speedbar-y-or-n-p (format "Delete %s? " f))
1877 (progn
1878 (if (file-directory-p f)
1879 (delete-directory f)
1880 (delete-file f))
1881 (speedbar-message "Okie dokie..")
1882 (let ((p (point)))
1883 (speedbar-refresh)
1884 (goto-char p))
1888 (defun speedbar-item-object-delete ()
1889 "Delete the object associated from the item under the cursor.
1890 The file is removed from disk. The object is determined from the
1891 variable `speedbar-obj-alist'."
1892 (interactive)
1893 (let* ((f (speedbar-line-file))
1894 (obj nil)
1895 (oa speedbar-obj-alist))
1896 (if (not f) (error "Not a file"))
1897 (while (and oa (not (string-match (car (car oa)) f)))
1898 (setq oa (cdr oa)))
1899 (setq obj (concat (file-name-sans-extension f) (cdr (car oa))))
1900 (if (and oa (file-exists-p obj)
1901 (speedbar-y-or-n-p (format "Delete %s? " obj)))
1902 (progn
1903 (delete-file obj)
1904 (speedbar-reset-scanners)))))
1906 (defun speedbar-enable-update ()
1907 "Enable automatic updating in speedbar via timers."
1908 (interactive)
1909 (setq speedbar-update-flag t)
1910 (speedbar-set-mode-line-format)
1911 (speedbar-set-timer speedbar-update-speed))
1913 (defun speedbar-disable-update ()
1914 "Disable automatic updating and stop consuming resources."
1915 (interactive)
1916 (setq speedbar-update-flag nil)
1917 (speedbar-set-mode-line-format)
1918 (speedbar-set-timer nil))
1920 (defun speedbar-toggle-updates ()
1921 "Toggle automatic update for the speedbar frame."
1922 (interactive)
1923 (if speedbar-update-flag
1924 (speedbar-disable-update)
1925 (speedbar-enable-update)))
1927 (defun speedbar-toggle-images ()
1928 "Toggle automatic update for the speedbar frame."
1929 (interactive)
1930 (setq speedbar-use-images (not speedbar-use-images))
1931 (speedbar-refresh))
1933 (defun speedbar-toggle-sorting ()
1934 "Toggle automatic update for the speedbar frame."
1935 (interactive)
1936 (setq speedbar-sort-tags (not speedbar-sort-tags)))
1938 (defun speedbar-toggle-show-all-files ()
1939 "Toggle display of files speedbar can not tag."
1940 (interactive)
1941 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files))
1942 (speedbar-refresh))
1944 ;;; Utility functions
1946 (defun speedbar-set-timer (timeout)
1947 "Apply a timer with TIMEOUT, or remove a timer if TIMOUT is nil.
1948 TIMEOUT is the number of seconds until the speedbar timer is called
1949 again. When TIMEOUT is nil, turn off all timeouts.
1950 This function will also enable or disable the `vc-checkin-hook' used
1951 to track file check ins, and will change the mode line to match
1952 `speedbar-update-flag'."
1953 (cond
1954 ;; XEmacs
1955 (speedbar-xemacsp
1956 (if speedbar-timer
1957 (progn (delete-itimer speedbar-timer)
1958 (setq speedbar-timer nil)))
1959 (if timeout
1960 (if (and speedbar-xemacsp
1961 (or (>= emacs-major-version 20)
1962 (>= emacs-minor-version 15)))
1963 (setq speedbar-timer (start-itimer "speedbar"
1964 'speedbar-timer-fn
1965 timeout
1966 timeout
1968 (setq speedbar-timer (start-itimer "speedbar"
1969 'speedbar-timer-fn
1970 timeout
1971 nil)))))
1972 ;; Post 19.31 Emacs
1973 ((fboundp 'run-with-idle-timer)
1974 (if speedbar-timer
1975 (progn (cancel-timer speedbar-timer)
1976 (setq speedbar-timer nil)))
1977 (if timeout
1978 (setq speedbar-timer
1979 (run-with-idle-timer timeout t 'speedbar-timer-fn))))
1980 ;; Emacs 19.30 (Thanks twice: ptype@dra.hmg.gb)
1981 ((fboundp 'post-command-idle-hook)
1982 (if timeout
1983 (add-hook 'post-command-idle-hook 'speedbar-timer-fn)
1984 (remove-hook 'post-command-idle-hook 'speedbar-timer-fn)))
1985 ;; Older or other Emacsen with no timers. Set up so that its
1986 ;; obvious this emacs can't handle the updates
1988 (setq speedbar-update-flag nil)))
1989 ;; Apply a revert hook that will reset the scanners. We attach to revert
1990 ;; because most reverts occur during VC state change, and this lets our
1991 ;; VC scanner fix itself.
1992 (if timeout
1993 (add-hook 'after-revert-hook 'speedbar-reset-scanners)
1994 (remove-hook 'after-revert-hook 'speedbar-reset-scanners)
1996 ;; change this if it changed for some reason
1997 (speedbar-set-mode-line-format))
1999 (defmacro speedbar-with-writable (&rest forms)
2000 "Allow the buffer to be writable and evaluate FORMS."
2001 (list 'let '((inhibit-read-only t))
2002 (cons 'progn forms)))
2003 (put 'speedbar-with-writable 'lisp-indent-function 0)
2005 (defun speedbar-select-window (buffer)
2006 "Select a window in which BUFFER is shown.
2007 If it is not shown, force it to appear in the default window."
2008 (let ((win (get-buffer-window buffer speedbar-attached-frame)))
2009 (if win
2010 (select-window win)
2011 (set-window-buffer (selected-window) buffer))))
2013 (defun speedbar-insert-button (text face mouse function
2014 &optional token prevline)
2015 "Insert TEXT as the next logical speedbar button.
2016 FACE is the face to put on the button, MOUSE is the highlight face to use.
2017 When the user clicks on TEXT, FUNCTION is called with the TOKEN parameter.
2018 This function assumes that the current buffer is the speedbar buffer.
2019 If PREVLINE, then put this button on the previous line.
2021 This is a convenience function for special mode that create their own
2022 specialized speedbar displays."
2023 (goto-char (point-max))
2024 (let ((start (point)))
2025 (if (/= (current-column) 0) (insert "\n"))
2026 (put-text-property start (point) 'invisible nil))
2027 (if prevline (progn (delete-char -1)
2028 (insert " ") ;back up if desired...
2029 (put-text-property (1- (point)) (point) 'invisible nil)))
2030 (let ((start (point)))
2031 (insert text)
2032 (speedbar-make-button start (point) face mouse function token))
2033 (let ((start (point)))
2034 (insert "\n")
2035 (put-text-property start (point) 'face nil)
2036 (put-text-property start (point) 'invisible nil)
2037 (put-text-property start (point) 'mouse-face nil)))
2039 (defun speedbar-make-button (start end face mouse function &optional token)
2040 "Create a button from START to END, with FACE as the display face.
2041 MOUSE is the mouse face. When this button is clicked on FUNCTION
2042 will be run with the TOKEN parameter (any Lisp object)"
2043 (put-text-property start end 'face face)
2044 (put-text-property start end 'mouse-face mouse)
2045 (put-text-property start end 'invisible nil)
2046 (if function (put-text-property start end 'speedbar-function function))
2047 (if token (put-text-property start end 'speedbar-token token))
2048 ;; So far the only text we have is less that 3 chars.
2049 (if (<= (- end start) 3)
2050 (speedbar-insert-image-button-maybe start (- end start)))
2053 ;;; Initial Expansion list management
2055 (defun speedbar-initial-expansion-list ()
2056 "Return the current default expansion list.
2057 This is based on `speedbar-initial-expansion-list-name' referencing
2058 `speedbar-initial-expansion-mode-alist'."
2059 ;; cdr1 - name, cdr2 - menu
2060 (cdr (cdr (cdr (assoc speedbar-initial-expansion-list-name
2061 speedbar-initial-expansion-mode-alist)))))
2063 (defun speedbar-initial-menu ()
2064 "Return the current default menu data.
2065 This is based on `speedbar-initial-expansion-list-name' referencing
2066 `speedbar-initial-expansion-mode-alist'."
2067 (symbol-value
2068 (car (cdr (assoc speedbar-initial-expansion-list-name
2069 speedbar-initial-expansion-mode-alist)))))
2071 (defun speedbar-initial-keymap ()
2072 "Return the current default menu data.
2073 This is based on `speedbar-initial-expansion-list-name' referencing
2074 `speedbar-initial-expansion-mode-alist'."
2075 (symbol-value
2076 (car (cdr (cdr (assoc speedbar-initial-expansion-list-name
2077 speedbar-initial-expansion-mode-alist))))))
2079 (defun speedbar-initial-stealthy-functions ()
2080 "Return a list of functions to call stealthily.
2081 This is based on `speedbar-initial-expansion-list-name' referencing
2082 `speedbar-stealthy-function-list'."
2083 (cdr (assoc speedbar-initial-expansion-list-name
2084 speedbar-stealthy-function-list)))
2086 (defun speedbar-add-expansion-list (new-list)
2087 "Add NEW-LIST to the list of expansion lists."
2088 (add-to-list 'speedbar-initial-expansion-mode-alist new-list))
2090 (defun speedbar-change-initial-expansion-list (new-default)
2091 "Change speedbar's default expansion list to NEW-DEFAULT."
2092 (interactive
2093 (list
2094 (completing-read (format "Speedbar Mode (default %s): "
2095 speedbar-previously-used-expansion-list-name)
2096 speedbar-initial-expansion-mode-alist
2097 nil t "" nil
2098 speedbar-previously-used-expansion-list-name)))
2099 (setq speedbar-previously-used-expansion-list-name
2100 speedbar-initial-expansion-list-name
2101 speedbar-initial-expansion-list-name new-default)
2102 (speedbar-refresh)
2103 (speedbar-reconfigure-keymaps))
2105 (defun speedbar-fetch-replacement-function (function)
2106 "Return a current mode specific replacement for function, or nil.
2107 Scans `speedbar-mode-functions-list' first for the current mode, then
2108 for FUNCTION."
2109 (cdr (assoc function
2110 (cdr (assoc speedbar-initial-expansion-list-name
2111 speedbar-mode-functions-list)))))
2113 (defun speedbar-add-mode-functions-list (new-list)
2114 "Add NEW-LIST to the list of mode functions.
2115 See `speedbar-mode-functions-list' for details."
2116 (add-to-list 'speedbar-mode-functions-list new-list))
2119 ;;; Special speedbar display management
2121 (defun speedbar-maybe-add-localized-support (buffer)
2122 "Quick check function called on BUFFERs by the speedbar timer function.
2123 Maintains the value of local variables which control speedbars use
2124 of the special mode functions."
2125 (or speedbar-special-mode-expansion-list
2126 (speedbar-add-localized-speedbar-support buffer)))
2128 (defun speedbar-add-localized-speedbar-support (buffer)
2129 "Add localized speedbar support to BUFFER's mode if it is available."
2130 (interactive "bBuffer: ")
2131 (if (stringp buffer) (setq buffer (get-buffer buffer)))
2132 (if (not (buffer-live-p buffer))
2134 (save-excursion
2135 (set-buffer buffer)
2136 (save-match-data
2137 (let ((ms (symbol-name major-mode)) v)
2138 (if (not (string-match "-mode$" ms))
2139 nil ;; do nothing to broken mode
2140 (setq ms (substring ms 0 (match-beginning 0)))
2141 (setq v (intern-soft (concat ms "-speedbar-buttons")))
2142 (make-local-variable 'speedbar-special-mode-expansion-list)
2143 (if (not v)
2144 (setq speedbar-special-mode-expansion-list t)
2145 ;; If it is autoloaded, we need to load it now so that
2146 ;; we have access to the varialbe -speedbar-menu-items.
2147 ;; Is this XEmacs safe?
2148 (let ((sf (symbol-function v)))
2149 (if (and (listp sf) (eq (car sf) 'autoload))
2150 (load-library (car (cdr sf)))))
2151 (setq speedbar-special-mode-expansion-list (list v))
2152 (setq v (intern-soft (concat ms "-speedbar-key-map")))
2153 (if (not v)
2154 nil ;; don't add special keymap
2155 (make-local-variable 'speedbar-special-mode-key-map)
2156 (setq speedbar-special-mode-key-map
2157 (symbol-value v)))
2158 (setq v (intern-soft (concat ms "-speedbar-menu-items")))
2159 (if (not v)
2160 nil ;; don't add special menus
2161 (make-local-variable 'speedbar-easymenu-definition-special)
2162 (setq speedbar-easymenu-definition-special
2163 (symbol-value v)))
2164 )))))))
2166 (defun speedbar-remove-localized-speedbar-support (buffer)
2167 "Remove any traces that BUFFER supports speedbar in a specialized way."
2168 (save-excursion
2169 (set-buffer buffer)
2170 (kill-local-variable 'speedbar-special-mode-expansion-list)
2171 (kill-local-variable 'speedbar-special-mode-key-map)
2172 (kill-local-variable 'speedbar-easymenu-definition-special)))
2174 ;;; File button management
2176 (defun speedbar-file-lists (directory)
2177 "Create file lists for DIRECTORY.
2178 The car is the list of directories, the cdr is list of files not
2179 matching ignored headers. Cache any directory files found in
2180 `speedbar-directory-contents-alist' and use that cache before scanning
2181 the file-system"
2182 (setq directory (expand-file-name directory))
2183 ;; If in powerclick mode, then the directory we are getting
2184 ;; should be rescanned.
2185 (if speedbar-power-click
2186 (adelete 'speedbar-directory-contents-alist directory))
2187 ;; find the directory, either in the cache, or build it.
2188 (or (cdr-safe (assoc directory speedbar-directory-contents-alist))
2189 (let ((default-directory directory)
2190 (dir (directory-files directory nil))
2191 (dirs nil)
2192 (files nil))
2193 (while dir
2194 (if (not
2195 (or (string-match speedbar-file-unshown-regexp (car dir))
2196 (string-match speedbar-directory-unshown-regexp (car dir))))
2197 (if (file-directory-p (car dir))
2198 (setq dirs (cons (car dir) dirs))
2199 (setq files (cons (car dir) files))))
2200 (setq dir (cdr dir)))
2201 (let ((nl (cons (nreverse dirs) (list (nreverse files)))))
2202 (aput 'speedbar-directory-contents-alist directory nl)
2203 nl))
2206 (defun speedbar-directory-buttons (directory index)
2207 "Insert a single button group at point for DIRECTORY.
2208 Each directory path part is a different button. If part of the path
2209 matches the user directory ~, then it is replaced with a ~.
2210 INDEX is not used, but is required by the caller."
2211 (let* ((tilde (expand-file-name "~/"))
2212 (dd (expand-file-name directory))
2213 (junk (string-match (regexp-quote tilde) dd))
2214 (displayme (if junk
2215 (concat "~/" (substring dd (match-end 0)))
2216 dd))
2217 (p (point)))
2218 (if (string-match "^~[/\\]?\\'" displayme) (setq displayme tilde))
2219 (insert displayme)
2220 (save-excursion
2221 (goto-char p)
2222 (while (re-search-forward "\\([^/\\]+\\)[/\\]" nil t)
2223 (speedbar-make-button (match-beginning 1) (match-end 1)
2224 'speedbar-directory-face
2225 'speedbar-highlight-face
2226 'speedbar-directory-buttons-follow
2227 (if (and (= (match-beginning 1) p)
2228 (not (char-equal (char-after (+ p 1)) ?:)))
2229 (expand-file-name "~/") ;the tilde
2230 (buffer-substring-no-properties
2231 p (match-end 0)))))
2232 ;; Nuke the beginning of the directory if it's too long...
2233 (cond ((eq speedbar-directory-button-trim-method 'span)
2234 (beginning-of-line)
2235 (let ((ww (or (speedbar-frame-width) 20)))
2236 (move-to-column ww nil)
2237 (while (>= (current-column) ww)
2238 (re-search-backward "[/\\]" nil t)
2239 (if (<= (current-column) 2)
2240 (progn
2241 (re-search-forward "[/\\]" nil t)
2242 (if (< (current-column) 4)
2243 (re-search-forward "[/\\]" nil t))
2244 (forward-char -1)))
2245 (if (looking-at "[/\\]?$")
2246 (beginning-of-line)
2247 (insert "/...\n ")
2248 (move-to-column ww nil)))))
2249 ((eq speedbar-directory-button-trim-method 'trim)
2250 (end-of-line)
2251 (let ((ww (or (speedbar-frame-width) 20))
2252 (tl (current-column)))
2253 (if (< ww tl)
2254 (progn
2255 (move-to-column (- tl ww))
2256 (if (re-search-backward "[/\\]" nil t)
2257 (progn
2258 (delete-region (point-min) (point))
2259 (insert "$")
2260 )))))))
2262 (if (string-match "\\`[/\\][^/\\]+[/\\]\\'" displayme)
2263 (progn
2264 (insert " ")
2265 (let ((p (point)))
2266 (insert "<root>")
2267 (speedbar-make-button p (point)
2268 'speedbar-directory-face
2269 'speedbar-highlight-face
2270 'speedbar-directory-buttons-follow
2271 "/"))))
2272 (end-of-line)
2273 (insert-char ?\n 1 nil)))
2275 (defun speedbar-make-tag-line (exp-button-type
2276 exp-button-char exp-button-function
2277 exp-button-data
2278 tag-button tag-button-function tag-button-data
2279 tag-button-face depth)
2280 "Create a tag line with EXP-BUTTON-TYPE for the small expansion button.
2281 This is the button that expands or contracts a node (if applicable),
2282 and EXP-BUTTON-CHAR the character in it (+, -, ?, etc). EXP-BUTTON-FUNCTION
2283 is the function to call if it's clicked on. Button types are
2284 'bracket, 'angle, 'curly, or nil. EXP-BUTTON-DATA is extra data
2285 attached to the text forming the expansion button.
2287 Next, TAG-BUTTON is the text of the tag. TAG-BUTTON-FUNCTION is the
2288 function to call if clicked on, and TAG-BUTTON-DATA is the data to
2289 attach to the text field (such a tag positioning, etc).
2290 TAG-BUTTON-FACE is a face used for this type of tag.
2292 Lastly, DEPTH shows the depth of expansion.
2294 This function assumes that the cursor is in the speedbar window at the
2295 position to insert a new item, and that the new item will end with a CR"
2296 (let ((start (point))
2297 (end (progn
2298 (insert (int-to-string depth) ":")
2299 (point)))
2300 (depthspacesize (* depth speedbar-indentation-width)))
2301 (put-text-property start end 'invisible t)
2302 (insert-char ? depthspacesize nil)
2303 (put-text-property (- (point) depthspacesize) (point) 'invisible nil)
2304 (let* ((exp-button (cond ((eq exp-button-type 'bracket) "[%c]")
2305 ((eq exp-button-type 'angle) "<%c>")
2306 ((eq exp-button-type 'curly) "{%c}")
2307 (t ">")))
2308 (buttxt (format exp-button exp-button-char))
2309 (start (point))
2310 (end (progn (insert buttxt) (point)))
2311 (bf (if exp-button-type 'speedbar-button-face nil))
2312 (mf (if exp-button-function 'speedbar-highlight-face nil))
2314 (speedbar-make-button start end bf mf exp-button-function exp-button-data)
2315 (if speedbar-hide-button-brackets-flag
2316 (progn
2317 (put-text-property start (1+ start) 'invisible t)
2318 (put-text-property end (1- end) 'invisible t)))
2320 (insert-char ? 1 nil)
2321 (put-text-property (1- (point)) (point) 'invisible nil)
2322 (let ((start (point))
2323 (end (progn (insert tag-button) (point))))
2324 (insert-char ?\n 1 nil)
2325 (put-text-property (1- (point)) (point) 'invisible nil)
2326 (speedbar-make-button start end tag-button-face
2327 (if tag-button-function 'speedbar-highlight-face nil)
2328 tag-button-function tag-button-data))
2331 (defun speedbar-change-expand-button-char (char)
2332 "Change the expansion button character to CHAR for the current line."
2333 (save-excursion
2334 (beginning-of-line)
2335 (if (re-search-forward ":\\s-*.\\([-+?]\\)" (save-excursion (end-of-line)
2336 (point)) t)
2337 (speedbar-with-writable
2338 (goto-char (match-beginning 1))
2339 (delete-char 1)
2340 (insert-char char 1 t)
2341 (put-text-property (point) (1- (point)) 'invisible nil)
2342 ;; make sure we fix the image on the text here.
2343 (speedbar-insert-image-button-maybe (- (point) 2) 3)))))
2346 ;;; Build button lists
2348 (defun speedbar-insert-files-at-point (files level)
2349 "Insert list of FILES starting at point, and indenting all files to LEVEL.
2350 Tag expandable items with a +, otherwise a ?. Don't highlight ? as we
2351 don't know how to manage them. The input parameter FILES is a cons
2352 cell of the form ( 'DIRLIST . 'FILELIST )"
2353 ;; Start inserting all the directories
2354 (let ((dirs (car files)))
2355 (while dirs
2356 (speedbar-make-tag-line 'angle ?+ 'speedbar-dired (car dirs)
2357 (car dirs) 'speedbar-dir-follow nil
2358 'speedbar-directory-face level)
2359 (setq dirs (cdr dirs))))
2360 (let ((lst (car (cdr files)))
2361 (case-fold-search t))
2362 (while lst
2363 (let* ((known (string-match speedbar-file-regexp (car lst)))
2364 (expchar (if known ?+ ??))
2365 (fn (if known 'speedbar-tag-file nil)))
2366 (if (or speedbar-show-unknown-files (/= expchar ??))
2367 (speedbar-make-tag-line 'bracket expchar fn (car lst)
2368 (car lst) 'speedbar-find-file nil
2369 'speedbar-file-face level)))
2370 (setq lst (cdr lst)))))
2372 (defun speedbar-default-directory-list (directory index)
2373 "Insert files for DIRECTORY with level INDEX at point."
2374 (speedbar-insert-files-at-point
2375 (speedbar-file-lists directory) index)
2376 (speedbar-reset-scanners)
2377 (if (= index 0)
2378 ;; If the shown files variable has extra directories, then
2379 ;; it is our responsibility to redraw them all
2380 ;; Luckilly, the nature of inserting items into this list means
2381 ;; that by reversing it, we can easilly go in the right order
2382 (let ((sf (cdr (reverse speedbar-shown-directories))))
2383 (setq speedbar-shown-directories
2384 (list (expand-file-name default-directory)))
2385 ;; exand them all as we find them
2386 (while sf
2387 (if (speedbar-goto-this-file (car sf))
2388 (progn
2389 (beginning-of-line)
2390 (if (looking-at "[0-9]+:[ ]*<")
2391 (progn
2392 (goto-char (match-end 0))
2393 (speedbar-do-function-pointer)))
2394 (setq sf (cdr sf)))))
2397 (defun speedbar-sort-tag-hierarchy (lst)
2398 "Sort all elements of tag hierarchy LST."
2399 (sort (copy-alist lst)
2400 (lambda (a b) (string< (car a) (car b)))))
2402 (defun speedbar-prefix-group-tag-hierarchy (lst)
2403 "Prefix group names for tag hierarchy LST."
2404 (let ((newlst nil)
2405 (sublst nil)
2406 (work-list nil)
2407 (junk-list nil)
2408 (short-group-list nil)
2409 (short-start-name nil)
2410 (short-end-name nil)
2411 (num-shorts-grouped 0)
2412 (bins (make-vector 256 nil))
2413 (diff-idx 0))
2414 ;; Break out sub-lists
2415 (while lst
2416 (if (and (listp (cdr-safe (car-safe lst)))
2417 ;; This one is for bovine tokens
2418 (not (symbolp (car-safe (cdr-safe (car-safe lst))))))
2419 (setq newlst (cons (car lst) newlst))
2420 (setq sublst (cons (car lst) sublst)))
2421 (setq lst (cdr lst)))
2422 ;; Reverse newlst because it was made backwards.
2423 ;; Sublist doesn't need reversing because the act
2424 ;; of binning things will reverse it for us.
2425 (setq newlst (nreverse newlst))
2426 ;; Now, first find out how long our list is. Never let a
2427 ;; list get-shorter than our minimum.
2428 (if (<= (length sublst) speedbar-tag-split-minimum-length)
2429 (setq work-list (nreverse sublst))
2430 (setq diff-idx (length (try-completion "" sublst)))
2431 ;; Sort the whole list into bins.
2432 (while sublst
2433 (let ((e (car sublst))
2434 (s (car (car sublst))))
2435 (cond ((<= (length s) diff-idx)
2436 ;; 0 storage bin for shorty.
2437 (aset bins 0 (cons e (aref bins 0))))
2439 ;; stuff into a bin based on ascii value at diff
2440 (aset bins (aref s diff-idx)
2441 (cons e (aref bins (aref s diff-idx)))))))
2442 (setq sublst (cdr sublst)))
2443 ;; Go through all our bins Stick singles into our
2444 ;; junk-list, everything else as sublsts in work-list.
2445 ;; If two neighboring lists are both small, make a grouped
2446 ;; group combinding those two sub-lists.
2447 (setq diff-idx 0)
2448 (while (> 256 diff-idx)
2449 (let ((l (nreverse;; Reverse the list since they are stuck in
2450 ;; backwards.
2451 (aref bins diff-idx))))
2452 (if l
2453 (let ((tmp (cons (try-completion "" l) l)))
2454 (if (or (> (length l) speedbar-tag-regroup-maximum-length)
2455 (> (+ (length l) (length short-group-list))
2456 speedbar-tag-split-minimum-length))
2457 (progn
2458 ;; We have reached a longer list, so we
2459 ;; must finish off a grouped group.
2460 (cond
2461 ((and short-group-list
2462 (= (length short-group-list)
2463 num-shorts-grouped))
2464 ;; All singles? Junk list
2465 (setq junk-list (append short-group-list
2466 junk-list)))
2467 ((= num-shorts-grouped 1)
2468 ;; Only one short group? Just stick it in
2469 ;; there by itself. Make a group, and find
2470 ;; a subexpression
2471 (let ((subexpression (try-completion
2472 "" short-group-list)))
2473 (if (< (length subexpression)
2474 speedbar-tag-group-name-minimum-length)
2475 (setq subexpression
2476 (concat short-start-name
2477 " ("
2478 (substring
2479 (car (car short-group-list))
2480 (length short-start-name))
2481 ")")))
2482 (setq work-list
2483 (cons (cons subexpression
2484 short-group-list)
2485 work-list))))
2486 (short-group-list
2487 ;; Multiple groups to be named in a special
2488 ;; way by displaying the range over which we
2489 ;; have grouped them.
2490 (setq work-list
2491 (cons (cons (concat short-start-name
2492 " to "
2493 short-end-name)
2494 (nreverse short-group-list))
2495 work-list))))
2496 ;; Reset short group list information every time.
2497 (setq short-group-list nil
2498 short-start-name nil
2499 short-end-name nil
2500 num-shorts-grouped 0)))
2501 ;; Ok, now that we cleaned up the short-group-list,
2502 ;; we can deal with this new list, to decide if it
2503 ;; should go on one of these sub-lists or not.
2504 (if (< (length l) speedbar-tag-regroup-maximum-length)
2505 (setq short-group-list (append short-group-list l)
2506 num-shorts-grouped (1+ num-shorts-grouped)
2507 short-end-name (car tmp)
2508 short-start-name (if short-start-name
2509 short-start-name
2510 (car tmp)))
2511 (setq work-list (cons tmp work-list))))))
2512 (setq diff-idx (1+ diff-idx))))
2513 ;; Did we run out of things? Drop our new list onto the end.
2514 (cond
2515 ((and short-group-list (= (length short-group-list) num-shorts-grouped))
2516 ;; All singles? Junk list
2517 (setq junk-list (append short-group-list junk-list)))
2518 ((= num-shorts-grouped 1)
2519 ;; Only one short group? Just stick it in
2520 ;; there by itself.
2521 (setq work-list
2522 (cons (cons (try-completion "" short-group-list)
2523 short-group-list)
2524 work-list)))
2525 (short-group-list
2526 ;; Multiple groups to be named in a special
2527 ;; way by displaying the range over which we
2528 ;; have grouped them.
2529 (setq work-list
2530 (cons (cons (concat short-start-name " to " short-end-name)
2531 short-group-list)
2532 work-list))))
2533 ;; Reverse the work list nreversed when consing.
2534 (setq work-list (nreverse work-list))
2535 ;; Now, stick our new list onto the end of
2536 (if work-list
2537 (if junk-list
2538 (append newlst work-list junk-list)
2539 (append newlst work-list))
2540 (append newlst junk-list))))
2542 (defun speedbar-trim-words-tag-hierarchy (lst)
2543 "Trim all words in a tag hierarchy.
2544 Base trimming information on word separators, and group names.
2545 Argument LST is the list of tags to trim."
2546 (let ((newlst nil)
2547 (sublst nil)
2548 (trim-prefix nil)
2549 (trim-chars 0)
2550 (trimlst nil))
2551 (while lst
2552 (if (listp (cdr-safe (car-safe lst)))
2553 (setq newlst (cons (car lst) newlst))
2554 (setq sublst (cons (car lst) sublst)))
2555 (setq lst (cdr lst)))
2556 ;; Get the prefix to trim by. Make sure that we don't trim
2557 ;; off silly pieces, only complete understandable words.
2558 (setq trim-prefix (try-completion "" sublst))
2559 (if (or (= (length sublst) 1)
2560 (not trim-prefix)
2561 (not (string-match "\\(\\w+\\W+\\)+" trim-prefix)))
2562 (append (nreverse newlst) (nreverse sublst))
2563 (setq trim-prefix (substring trim-prefix (match-beginning 0)
2564 (match-end 0)))
2565 (setq trim-chars (length trim-prefix))
2566 (while sublst
2567 (setq trimlst (cons
2568 (cons (substring (car (car sublst)) trim-chars)
2569 (cdr (car sublst)))
2570 trimlst)
2571 sublst (cdr sublst)))
2572 ;; Put the lists together
2573 (append (nreverse newlst) trimlst))))
2575 (defun speedbar-simple-group-tag-hierarchy (lst)
2576 "Create a simple 'Tags' group with orphaned tags.
2577 Argument LST is the list of tags to sort into groups."
2578 (let ((newlst nil)
2579 (sublst nil))
2580 (while lst
2581 (if (listp (cdr-safe (car-safe lst)))
2582 (setq newlst (cons (car lst) newlst))
2583 (setq sublst (cons (car lst) sublst)))
2584 (setq lst (cdr lst)))
2585 (if (not newlst)
2586 (nreverse sublst)
2587 (setq newlst (cons (cons "Tags" (nreverse sublst)) newlst))
2588 (nreverse newlst))))
2590 (defun speedbar-create-tag-hierarchy (lst)
2591 "Adjust the tag hierarchy in LST, and return it.
2592 This uses `speedbar-tag-hierarchy-method' to determine how to adjust
2593 the list."
2594 (let* ((f (save-excursion
2595 (forward-line -1)
2596 (speedbar-line-path)))
2597 (methods (if (get-file-buffer f)
2598 (save-excursion (set-buffer (get-file-buffer f))
2599 speedbar-tag-hierarchy-method)
2600 speedbar-tag-hierarchy-method))
2601 (lst (if (fboundp 'copy-tree)
2602 (copy-tree lst)
2603 lst)))
2604 (while methods
2605 (setq lst (funcall (car methods) lst)
2606 methods (cdr methods)))
2607 lst))
2609 (defun speedbar-insert-generic-list (level lst expand-fun find-fun)
2610 "At LEVEL, insert a generic multi-level alist LST.
2611 Associations with lists get {+} tags (to expand into more nodes) and
2612 those with positions just get a > as the indicator. {+} buttons will
2613 have the function EXPAND-FUN and the token is the CDR list. The token
2614 name will have the function FIND-FUN and not token."
2615 ;; Remove imenu rescan button
2616 (if (string= (car (car lst)) "*Rescan*")
2617 (setq lst (cdr lst)))
2618 ;; Adjust the list.
2619 (setq lst (speedbar-create-tag-hierarchy lst))
2620 ;; insert the parts
2621 (while lst
2622 (cond ((null (car-safe lst)) nil) ;this would be a separator
2623 ((or (numberp (cdr-safe (car-safe lst)))
2624 (markerp (cdr-safe (car-safe lst))))
2625 (speedbar-make-tag-line nil nil nil nil ;no expand button data
2626 (car (car lst)) ;button name
2627 find-fun ;function
2628 (cdr (car lst)) ;token is position
2629 'speedbar-tag-face
2630 (1+ level)))
2631 ((listp (cdr-safe (car-safe lst)))
2632 (speedbar-make-tag-line 'curly ?+ expand-fun (cdr (car lst))
2633 (car (car lst)) ;button name
2634 nil nil 'speedbar-tag-face
2635 (1+ level)))
2636 (t (speedbar-message "Ooops!")))
2637 (setq lst (cdr lst))))
2639 (defun speedbar-insert-imenu-list (indent lst)
2640 "At level INDENT, insert the imenu generated LST."
2641 (speedbar-insert-generic-list indent lst
2642 'speedbar-tag-expand
2643 'speedbar-tag-find))
2645 (defun speedbar-insert-etags-list (indent lst)
2646 "At level INDENT, insert the etags generated LST."
2647 (speedbar-insert-generic-list indent lst
2648 'speedbar-tag-expand
2649 'speedbar-tag-find))
2651 ;;; Timed functions
2653 (defun speedbar-update-contents ()
2654 "Generically update the contents of the speedbar buffer."
2655 (interactive)
2656 ;; Set the current special buffer
2657 (setq speedbar-desired-buffer nil)
2658 ;; Check for special modes
2659 (speedbar-maybe-add-localized-support (current-buffer))
2660 ;; Choose the correct method of doodling.
2661 (if (and speedbar-mode-specific-contents-flag
2662 (listp speedbar-special-mode-expansion-list)
2663 speedbar-special-mode-expansion-list
2664 (local-variable-p
2665 'speedbar-special-mode-expansion-list
2666 (current-buffer)))
2667 ;;(eq (get major-mode 'mode-class 'special)))
2668 (speedbar-update-special-contents)
2669 (speedbar-update-directory-contents)))
2671 (defun speedbar-update-directory-contents ()
2672 "Update the contents of the speedbar buffer based on the current directory."
2673 (let ((cbd (expand-file-name default-directory))
2674 cbd-parent
2675 (funclst (speedbar-initial-expansion-list))
2676 (cache speedbar-full-text-cache)
2677 ;; disable stealth during update
2678 (speedbar-stealthy-function-list nil)
2679 (use-cache nil)
2680 (expand-local nil)
2681 ;; Because there is a bug I can't find just yet
2682 (inhibit-quit nil))
2683 (save-excursion
2684 (set-buffer speedbar-buffer)
2685 ;; If we are updating contents to where we are, then this is
2686 ;; really a request to update existing contents, so we must be
2687 ;; careful with our text cache!
2688 (if (member cbd speedbar-shown-directories)
2689 (progn
2690 (setq cache nil)
2691 ;; If the current directory is not the last element in the dir
2692 ;; list, then we ALSO need to zap the list of expanded directories
2693 (if (/= (length (member cbd speedbar-shown-directories)) 1)
2694 (setq speedbar-shown-directories (list cbd))))
2696 ;; Build cbd-parent, and see if THAT is in the current shown
2697 ;; directories. First, go through pains to get the parent directory
2698 (if (and speedbar-smart-directory-expand-flag
2699 (save-match-data
2700 (setq cbd-parent cbd)
2701 (if (string-match "[/\\]$" cbd-parent)
2702 (setq cbd-parent (substring cbd-parent 0
2703 (match-beginning 0))))
2704 (setq cbd-parent (file-name-directory cbd-parent)))
2705 (member cbd-parent speedbar-shown-directories))
2706 (setq expand-local t)
2708 ;; If this directory is NOT in the current list of available
2709 ;; paths, then use the cache, and set the cache to our new
2710 ;; value. Make sure to unhighlight the current file, or if we
2711 ;; come back to this directory, it might be a different file
2712 ;; and then we get a mess!
2713 (if (> (point-max) 1)
2714 (progn
2715 (speedbar-clear-current-file)
2716 (setq speedbar-full-text-cache
2717 (cons speedbar-shown-directories (buffer-string)))))
2719 ;; Check if our new directory is in the list of directories
2720 ;; shown in the text-cache
2721 (if (member cbd (car cache))
2722 (setq speedbar-shown-directories (car cache)
2723 use-cache t)
2724 ;; default the shown directories to this list...
2725 (setq speedbar-shown-directories (list cbd)))
2727 (if (not expand-local) (setq speedbar-last-selected-file nil))
2728 (speedbar-with-writable
2729 (if (and expand-local
2730 ;; Find this directory as a speedbar node.
2731 (speedbar-path-line cbd))
2732 ;; Open it.
2733 (speedbar-expand-line)
2734 (erase-buffer)
2735 (cond (use-cache
2736 (setq default-directory
2737 (nth (1- (length speedbar-shown-directories))
2738 speedbar-shown-directories))
2739 (insert (cdr cache)))
2741 (while funclst
2742 (setq default-directory cbd)
2743 (funcall (car funclst) cbd 0)
2744 (setq funclst (cdr funclst))))))
2745 (goto-char (point-min)))))
2746 (speedbar-reconfigure-keymaps))
2748 (defun speedbar-update-special-contents ()
2749 "Used the mode-specific variable to fill in the speedbar buffer.
2750 This should only be used by modes classified as special."
2751 (let ((funclst speedbar-special-mode-expansion-list)
2752 (specialbuff (current-buffer)))
2753 (save-excursion
2754 (setq speedbar-desired-buffer specialbuff)
2755 (set-buffer speedbar-buffer)
2756 ;; If we are leaving a directory, cache it.
2757 (if (not speedbar-shown-directories)
2758 ;; Do nothing
2760 ;; Clean up directory maintenance stuff
2761 (speedbar-clear-current-file)
2762 (setq speedbar-full-text-cache
2763 (cons speedbar-shown-directories (buffer-string))
2764 speedbar-shown-directories nil))
2765 ;; Now fill in the buffer with our newly found specialized list.
2766 (speedbar-with-writable
2767 (while funclst
2768 ;; We do not erase the buffer because these functions may
2769 ;; decide NOT to update themselves.
2770 (funcall (car funclst) specialbuff)
2771 (setq funclst (cdr funclst))))
2772 (goto-char (point-min))))
2773 (speedbar-reconfigure-keymaps))
2775 (defun speedbar-timer-fn ()
2776 "Run whenever Emacs is idle to update the speedbar item."
2777 (if (not (and (frame-live-p speedbar-frame)
2778 (frame-live-p speedbar-attached-frame)))
2779 (speedbar-set-timer nil)
2780 ;; Save all the match data so that we don't mess up executing fns
2781 (save-match-data
2782 ;; Only do stuff if the frame is visible, not an icon, and if
2783 ;; it is currently flagged to do something.
2784 (if (and speedbar-update-flag
2785 (frame-visible-p speedbar-frame)
2786 (not (eq (frame-visible-p speedbar-frame) 'icon)))
2787 (let ((af (selected-frame)))
2788 (save-window-excursion
2789 (select-frame speedbar-attached-frame)
2790 ;; make sure we at least choose a window to
2791 ;; get a good directory from
2792 (if (window-minibuffer-p (selected-window))
2794 ;; Check for special modes
2795 (speedbar-maybe-add-localized-support (current-buffer))
2796 ;; Update for special mode all the time!
2797 (if (and speedbar-mode-specific-contents-flag
2798 (listp speedbar-special-mode-expansion-list)
2799 speedbar-special-mode-expansion-list
2800 (local-variable-p
2801 'speedbar-special-mode-expansion-list
2802 (current-buffer)))
2803 ;;(eq (get major-mode 'mode-class 'special)))
2804 (progn
2805 (if (<= 2 speedbar-verbosity-level)
2806 (speedbar-message
2807 "Updating speedbar to special mode: %s..."
2808 major-mode))
2809 (speedbar-update-special-contents)
2810 (if (<= 2 speedbar-verbosity-level)
2811 (progn
2812 (speedbar-message
2813 "Updating speedbar to special mode: %s...done"
2814 major-mode)
2815 (speedbar-message nil))))
2816 ;; Update all the contents if directories change!
2817 (if (or (member (expand-file-name default-directory)
2818 speedbar-shown-directories)
2819 (and speedbar-ignored-path-regexp
2820 (string-match
2821 speedbar-ignored-path-regexp
2822 (expand-file-name default-directory)))
2823 (member major-mode speedbar-ignored-modes)
2824 (eq af speedbar-frame)
2825 (not (buffer-file-name)))
2827 (if (<= 1 speedbar-verbosity-level)
2828 (speedbar-message "Updating speedbar to: %s..."
2829 default-directory))
2830 (speedbar-update-directory-contents)
2831 (if (<= 1 speedbar-verbosity-level)
2832 (progn
2833 (speedbar-message "Updating speedbar to: %s...done"
2834 default-directory)
2835 (speedbar-message nil)))))
2836 (select-frame af)))
2837 ;; Now run stealthy updates of time-consuming items
2838 (speedbar-stealthy-updates)))
2839 ;; Now run the mouse tracking system
2840 (speedbar-show-info-under-mouse)))
2841 (run-hooks 'speedbar-timer-hook))
2844 ;;; Stealthy activities
2846 (defvar speedbar-stealthy-update-recurse nil
2847 "Recursion avoidance variable for stealthy update.")
2849 (defun speedbar-stealthy-updates ()
2850 "For a given speedbar, run all items in the stealthy function list.
2851 Each item returns t if it completes successfully, or nil if
2852 interrupted by the user."
2853 (if (not speedbar-stealthy-update-recurse)
2854 (let ((l (speedbar-initial-stealthy-functions))
2855 (speedbar-stealthy-update-recurse t))
2856 (unwind-protect
2857 (speedbar-with-writable
2858 (while (and l (funcall (car l)))
2859 ;;(sit-for 0)
2860 (setq l (cdr l))))
2861 ;;(speedbar-message "Exit with %S" (car l))
2862 ))))
2864 (defun speedbar-reset-scanners ()
2865 "Reset any variables used by functions in the stealthy list as state.
2866 If new functions are added, their state needs to be updated here."
2867 (setq speedbar-vc-to-do-point t
2868 speedbar-obj-to-do-point t)
2869 (run-hooks 'speedbar-scanner-reset-hook)
2872 (defun speedbar-find-selected-file (file)
2873 "Goto the line where FILE is."
2874 (goto-char (point-min))
2875 (let ((m nil))
2876 (while (and (setq m (re-search-forward
2877 (concat " \\(" (file-name-nondirectory file)
2878 "\\)\\(" speedbar-indicator-regex "\\)?\n")
2879 nil t))
2880 (not (string= file
2881 (concat
2882 (speedbar-line-path
2883 (save-excursion
2884 (goto-char (match-beginning 0))
2885 (beginning-of-line)
2886 (save-match-data
2887 (looking-at "[0-9]+:")
2888 (string-to-number (match-string 0)))))
2889 (match-string 1))))))
2890 (if m
2891 (progn
2892 (goto-char (match-beginning 1))
2893 (match-string 1)))))
2895 (defun speedbar-clear-current-file ()
2896 "Locate the file thought to be current, and remove its highlighting."
2897 (save-excursion
2898 (set-buffer speedbar-buffer)
2899 (if speedbar-last-selected-file
2900 (speedbar-with-writable
2901 (if (speedbar-find-selected-file speedbar-last-selected-file)
2902 (put-text-property (match-beginning 1)
2903 (match-end 1)
2904 'face
2905 'speedbar-file-face))))))
2907 (defun speedbar-update-current-file ()
2908 "Find the current file, and update our visuals to indicate its name.
2909 This is specific to file names. If the file name doesn't show up, but
2910 it should be in the list, then the directory cache needs to be
2911 updated."
2912 (let* ((lastf (selected-frame))
2913 (newcfd (save-excursion
2914 (select-frame speedbar-attached-frame)
2915 (let ((rf (if (buffer-file-name)
2916 (buffer-file-name)
2917 nil)))
2918 (select-frame lastf)
2919 rf)))
2920 (newcf (if newcfd newcfd))
2921 (lastb (current-buffer))
2922 (sucf-recursive (boundp 'sucf-recursive))
2923 (case-fold-search t))
2924 (if (and newcf
2925 ;; check here, that way we won't refresh to newcf until
2926 ;; its been written, thus saving ourselves some time
2927 (file-exists-p newcf)
2928 (not (string= newcf speedbar-last-selected-file)))
2929 (progn
2930 ;; It is important to select the frame, otherwise the window
2931 ;; we want the cursor to move in will not be updated by the
2932 ;; search-forward command.
2933 (select-frame speedbar-frame)
2934 ;; Remove the old file...
2935 (speedbar-clear-current-file)
2936 ;; now highlight the new one.
2937 (set-buffer speedbar-buffer)
2938 (speedbar-with-writable
2939 (if (speedbar-find-selected-file newcf)
2940 ;; put the property on it
2941 (put-text-property (match-beginning 1)
2942 (match-end 1)
2943 'face
2944 'speedbar-selected-face)
2945 ;; Oops, it's not in the list. Should it be?
2946 (if (and (string-match speedbar-file-regexp newcf)
2947 (string= (file-name-directory newcfd)
2948 (expand-file-name default-directory)))
2949 ;; yes, it is (we will ignore unknowns for now...)
2950 (progn
2951 (speedbar-refresh)
2952 (if (speedbar-find-selected-file newcf)
2953 ;; put the property on it
2954 (put-text-property (match-beginning 1)
2955 (match-end 1)
2956 'face
2957 'speedbar-selected-face)))
2958 ;; if it's not in there now, whatever...
2960 (setq speedbar-last-selected-file newcf))
2961 (if (not sucf-recursive)
2962 (progn
2963 (speedbar-center-buffer-smartly)
2964 (speedbar-position-cursor-on-line)
2966 (set-buffer lastb)
2967 (select-frame lastf)
2969 ;; return that we are done with this activity.
2972 (defun speedbar-add-indicator (indicator-string &optional replace-this)
2973 "Add INDICATOR-STRING to the end of this speedbar line.
2974 If INDICATOR-STRING is space, and REPLACE-THIS is a character, then
2975 an the existing indicator is removed. If there is already an
2976 indicator, then do not add a space."
2977 (beginning-of-line)
2978 ;; The nature of the beast: Assume we are in "the right place"
2979 (end-of-line)
2980 (skip-chars-backward (concat " " speedbar-vc-indicator
2981 (car speedbar-obj-indicator)
2982 (cdr speedbar-obj-indicator)))
2983 (if (and (not (looking-at speedbar-indicator-regex))
2984 (not (string= indicator-string " ")))
2985 (insert speedbar-indicator-separator))
2986 (speedbar-with-writable
2987 (save-excursion
2988 (if (and replace-this
2989 (re-search-forward replace-this (save-excursion (end-of-line)
2990 (point))
2992 (delete-region (match-beginning 0) (match-end 0))))
2993 (end-of-line)
2994 (if (not (string= " " indicator-string))
2995 (insert indicator-string))))
2997 ;; Load efs/ange-ftp only if compiling to remove byte-compiler warnings.
2998 ;; Steven L Baur <steve@xemacs.org> said this was important:
2999 (eval-when-compile (or (featurep 'xemacs)
3000 (condition-case () (require 'efs)
3001 (error (require 'ange-ftp)))))
3003 (defun speedbar-check-vc ()
3004 "Scan all files in a directory, and for each see if it's checked out.
3005 See `speedbar-this-file-in-vc' and `speedbar-vc-check-dir-p' for how
3006 to add more types of version control systems."
3007 ;; Check for to-do to be reset. If reset but no RCS is available
3008 ;; then set to nil (do nothing) otherwise, start at the beginning
3009 (save-excursion
3010 (set-buffer speedbar-buffer)
3011 (if (and speedbar-vc-do-check (eq speedbar-vc-to-do-point t)
3012 (speedbar-vc-check-dir-p default-directory)
3013 (not (or (and (featurep 'ange-ftp)
3014 (string-match
3015 (car (if speedbar-xemacsp
3016 ange-ftp-path-format
3017 ange-ftp-name-format))
3018 (expand-file-name default-directory)))
3019 ;; efs support: Bob Weiner
3020 (and (featurep 'efs)
3021 (string-match
3022 (car efs-path-regexp)
3023 (expand-file-name default-directory))))))
3024 (setq speedbar-vc-to-do-point 0))
3025 (if (numberp speedbar-vc-to-do-point)
3026 (progn
3027 (goto-char speedbar-vc-to-do-point)
3028 (while (and (not (input-pending-p))
3029 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] "
3030 nil t))
3031 (setq speedbar-vc-to-do-point (point))
3032 (if (speedbar-check-vc-this-line (match-string 1))
3033 (speedbar-add-indicator speedbar-vc-indicator
3034 (regexp-quote speedbar-vc-indicator))
3035 (speedbar-add-indicator " "
3036 (regexp-quote speedbar-vc-indicator))))
3037 (if (input-pending-p)
3038 ;; return that we are incomplete
3040 ;; we are done, set to-do to nil
3041 (setq speedbar-vc-to-do-point nil)
3042 ;; and return t
3044 t)))
3046 (defun speedbar-check-vc-this-line (depth)
3047 "Return t if the file on this line is check of of a version control system.
3048 Parameter DEPTH is a string with the current depth of indentation of
3049 the file being checked."
3050 (let* ((d (string-to-int depth))
3051 (f (speedbar-line-path d))
3052 (fn (buffer-substring-no-properties
3053 ;; Skip-chars: thanks ptype@dra.hmg.gb
3054 (point) (progn
3055 (skip-chars-forward "^ "
3056 (save-excursion (end-of-line)
3057 (point)))
3058 (point))))
3059 (fulln (concat f fn)))
3060 (if (<= 2 speedbar-verbosity-level)
3061 (speedbar-message "Speedbar vc check...%s" fulln))
3062 (and (file-writable-p fulln)
3063 (speedbar-this-file-in-vc f fn))))
3065 (defun speedbar-vc-check-dir-p (path)
3066 "Return t if we should bother checking PATH for version control files.
3067 This can be overloaded to add new types of version control systems."
3069 ;; Local RCS
3070 (file-exists-p (concat path "RCS/"))
3071 ;; Local SCCS
3072 (file-exists-p (concat path "SCCS/"))
3073 ;; Remote SCCS project
3074 (let ((proj-dir (getenv "PROJECTDIR")))
3075 (if proj-dir
3076 (file-exists-p (concat proj-dir "/SCCS"))
3077 nil))
3078 ;; User extension
3079 (run-hook-with-args 'speedbar-vc-path-enable-hook path)
3082 (defun speedbar-this-file-in-vc (path name)
3083 "Check to see if the file in PATH with NAME is in a version control system.
3084 You can add new VC systems by overriding this function. You can
3085 optimize this function by overriding it and only doing those checks
3086 that will occur on your system."
3088 ;; RCS file name
3089 (file-exists-p (concat path "RCS/" name ",v"))
3090 (file-exists-p (concat path "RCS/" name))
3091 ;; Local SCCS file name
3092 (file-exists-p (concat path "SCCS/s." name))
3093 ;; Remote SCCS file name
3094 (let ((proj-dir (getenv "PROJECTDIR")))
3095 (if proj-dir
3096 (file-exists-p (concat proj-dir "/SCCS/s." name))
3097 nil))
3098 ;; User extension
3099 (run-hook-with-args 'speedbar-vc-in-control-hook path name)
3102 ;; Objet File scanning
3103 (defun speedbar-check-objects ()
3104 "Scan all files in a directory, and for each see if there is an object.
3105 See `speedbar-check-obj-this-line' and `speedbar-obj-alist' for how
3106 to add more object types."
3107 ;; Check for to-do to be reset. If reset but no RCS is available
3108 ;; then set to nil (do nothing) otherwise, start at the beginning
3109 (save-excursion
3110 (set-buffer speedbar-buffer)
3111 (if (and speedbar-obj-do-check (eq speedbar-obj-to-do-point t))
3112 (setq speedbar-obj-to-do-point 0))
3113 (if (numberp speedbar-obj-to-do-point)
3114 (progn
3115 (goto-char speedbar-obj-to-do-point)
3116 (while (and (not (input-pending-p))
3117 (re-search-forward "^\\([0-9]+\\):\\s-*\\[[+-]\\] "
3118 nil t))
3119 (setq speedbar-obj-to-do-point (point))
3120 (let ((ind (speedbar-check-obj-this-line (match-string 1))))
3121 (if (not ind) (setq ind " "))
3122 (speedbar-add-indicator ind (concat
3123 (car speedbar-obj-indicator)
3124 "\\|"
3125 (cdr speedbar-obj-indicator)))))
3126 (if (input-pending-p)
3127 ;; return that we are incomplete
3129 ;; we are done, set to-do to nil
3130 (setq speedbar-obj-to-do-point nil)
3131 ;; and return t
3133 t)))
3135 (defun speedbar-check-obj-this-line (depth)
3136 "Return t if the file on this line has an associated object.
3137 Parameter DEPTH is a string with the current depth of indentation of
3138 the file being checked."
3139 (let* ((d (string-to-int depth))
3140 (f (speedbar-line-path d))
3141 (fn (buffer-substring-no-properties
3142 ;; Skip-chars: thanks ptype@dra.hmg.gb
3143 (point) (progn
3144 (skip-chars-forward "^ "
3145 (save-excursion (end-of-line)
3146 (point)))
3147 (point))))
3148 (fulln (concat f fn)))
3149 (if (<= 2 speedbar-verbosity-level)
3150 (speedbar-message "Speedbar obj check...%s" fulln))
3151 (let ((oa speedbar-obj-alist))
3152 (while (and oa (not (string-match (car (car oa)) fulln)))
3153 (setq oa (cdr oa)))
3154 (if (not (and oa (file-exists-p (concat (file-name-sans-extension fulln)
3155 (cdr (car oa))))))
3157 ;; Find out if the object is out of date or not.
3158 (let ((date1 (nth 5 (file-attributes fulln)))
3159 (date2 (nth 5 (file-attributes (concat
3160 (file-name-sans-extension fulln)
3161 (cdr (car oa)))))))
3162 (if (or (< (car date1) (car date2))
3163 (and (= (car date1) (car date2))
3164 (< (nth 1 date1) (nth 1 date2))))
3165 (car speedbar-obj-indicator)
3166 (cdr speedbar-obj-indicator)))))))
3168 ;;; Clicking Activity
3170 (defun speedbar-mouse-set-point (e)
3171 "Set POINT based on event E.
3172 Handle clicking on images in XEmacs."
3173 (if (and (fboundp 'event-over-glyph-p) (event-over-glyph-p e))
3174 ;; We are in XEmacs, and clicked on a picture
3175 (let ((ext (event-glyph-extent e)))
3176 ;; This position is back inside the extent where the
3177 ;; junk we pushed into the property list lives.
3178 (if (extent-end-position ext)
3179 (goto-char (1- (extent-end-position ext)))
3180 (mouse-set-point e)))
3181 ;; We are not in XEmacs, OR we didn't click on a picture.
3182 (mouse-set-point e)))
3184 (defun speedbar-quick-mouse (e)
3185 "Since mouse events are strange, this will keep the mouse nicely positioned.
3186 This should be bound to mouse event E."
3187 (interactive "e")
3188 (speedbar-mouse-set-point e)
3189 (speedbar-position-cursor-on-line)
3192 (defun speedbar-position-cursor-on-line ()
3193 "Position the cursor on a line."
3194 (let ((oldpos (point)))
3195 (beginning-of-line)
3196 (if (looking-at "[0-9]+:\\s-*..?.? ")
3197 (goto-char (1- (match-end 0)))
3198 (goto-char oldpos))))
3200 (defun speedbar-power-click (e)
3201 "Activate any speedbar button as a power click.
3202 A power click will dispose of cached data (if available) or bring a buffer
3203 up into a different window.
3204 This should be bound to mouse event E."
3205 (interactive "e")
3206 (let ((speedbar-power-click t))
3207 (speedbar-click e)))
3209 (defun speedbar-click (e)
3210 "Activate any speedbar buttons where the mouse is clicked.
3211 This must be bound to a mouse event. A button is any location of text
3212 with a mouse face that has a text property called `speedbar-function'.
3213 This should be bound to mouse event E."
3214 (interactive "e")
3215 (speedbar-mouse-set-point e)
3216 (speedbar-do-function-pointer)
3217 (speedbar-quick-mouse e))
3219 (defun speedbar-double-click (e)
3220 "Activate any speedbar buttons where the mouse is clicked.
3221 This must be bound to a mouse event. A button is any location of text
3222 with a mouse face that has a text property called `speedbar-function'.
3223 This should be bound to mouse event E."
3224 (interactive "e")
3225 ;; Emacs only. XEmacs handles this via `mouse-track-click-hook'.
3226 (cond ((eq (car e) 'down-mouse-1)
3227 (speedbar-mouse-set-point e))
3228 ((eq (car e) 'mouse-1)
3229 (speedbar-quick-mouse e))
3230 ((or (eq (car e) 'double-down-mouse-1)
3231 (eq (car e) 'triple-down-mouse-1))
3232 (speedbar-mouse-set-point e)
3233 (speedbar-do-function-pointer)
3234 (speedbar-quick-mouse e))))
3236 (defun speedbar-do-function-pointer ()
3237 "Look under the cursor and examine the text properties.
3238 From this extract the file/tag name, token, indentation level and call
3239 a function if appropriate"
3240 (let* ((fn (get-text-property (point) 'speedbar-function))
3241 (tok (get-text-property (point) 'speedbar-token))
3242 ;; The 1-,+ is safe because scaning starts AFTER the point
3243 ;; specified. This lets the search include the character the
3244 ;; cursor is on.
3245 (tp (previous-single-property-change
3246 (1+ (point)) 'speedbar-function))
3247 (np (next-single-property-change
3248 (point) 'speedbar-function))
3249 (txt (buffer-substring-no-properties (or tp (point-min))
3250 (or np (point-max))))
3251 (dent (save-excursion (beginning-of-line)
3252 (string-to-number
3253 (if (looking-at "[0-9]+")
3254 (buffer-substring-no-properties
3255 (match-beginning 0) (match-end 0))
3256 "0")))))
3257 ;;(speedbar-message "%S:%S:%S:%s" fn tok txt dent)
3258 (and fn (funcall fn txt tok dent)))
3259 (speedbar-position-cursor-on-line))
3261 ;;; Reading info from the speedbar buffer
3263 (defun speedbar-line-text (&optional p)
3264 "Retrieve the text after prefix junk for the current line.
3265 Optional argument P is where to start the search from."
3266 (save-excursion
3267 (if p (goto-char p))
3268 (beginning-of-line)
3269 (if (looking-at (concat
3270 "\\([0-9]+\\): *[[<{][-+?][]>}] \\([^ \n]+\\)\\("
3271 speedbar-indicator-regex "\\)?"))
3272 (match-string 2)
3273 nil)))
3275 (defun speedbar-line-token (&optional p)
3276 "Retrieve the token information after the prefix junk for the current line.
3277 Optional argument P is where to start the search from."
3278 (save-excursion
3279 (if p (goto-char p))
3280 (beginning-of-line)
3281 (if (looking-at (concat
3282 "\\([0-9]+\\): *[[<{]?[-+?=][]>}@()|] \\([^ \n]+\\)\\("
3283 speedbar-indicator-regex "\\)?"))
3284 (progn
3285 (goto-char (match-beginning 2))
3286 (get-text-property (point) 'speedbar-token))
3287 nil)))
3289 (defun speedbar-line-file (&optional p)
3290 "Retrieve the file or whatever from the line at P point.
3291 The return value is a string representing the file. If it is a
3292 directory, then it is the directory name."
3293 (save-match-data
3294 (let ((f (speedbar-line-text p)))
3295 (if f
3296 (let* ((depth (string-to-int (match-string 1)))
3297 (path (speedbar-line-path depth)))
3298 (if (file-exists-p (concat path f))
3299 (concat path f)
3300 nil))
3301 nil))))
3303 (defun speedbar-goto-this-file (file)
3304 "If FILE is displayed, goto this line and return t.
3305 Otherwise do not move and return nil."
3306 (let ((path (substring (file-name-directory (expand-file-name file))
3307 (length (expand-file-name default-directory))))
3308 (dest (point)))
3309 (save-match-data
3310 (goto-char (point-min))
3311 ;; scan all the directories
3312 (while (and path (not (eq path t)))
3313 (if (string-match "^[/\\]?\\([^/\\]+\\)" path)
3314 (let ((pp (match-string 1 path)))
3315 (if (save-match-data
3316 (re-search-forward (concat "> " (regexp-quote pp) "$")
3317 nil t))
3318 (setq path (substring path (match-end 1)))
3319 (setq path nil)))
3320 (setq path t)))
3321 ;; find the file part
3322 (if (or (not path) (string= (file-name-nondirectory file) ""))
3323 ;; only had a dir part
3324 (if path
3325 (progn
3326 (speedbar-position-cursor-on-line)
3328 (goto-char dest) nil)
3329 ;; find the file part
3330 (let ((nd (file-name-nondirectory file)))
3331 (if (re-search-forward
3332 (concat "] \\(" (regexp-quote nd)
3333 "\\)\\(" speedbar-indicator-regex "\\)$")
3334 nil t)
3335 (progn
3336 (speedbar-position-cursor-on-line)
3338 (goto-char dest)
3339 nil))))))
3341 (defun speedbar-line-path (&optional depth)
3342 "Retrieve the pathname associated with the current line.
3343 This may require traversing backwards from DEPTH and combining the default
3344 directory with these items. This function is replaceable in
3345 `speedbar-mode-functions-list' as `speedbar-line-path'"
3346 (let ((rf (speedbar-fetch-replacement-function 'speedbar-line-path)))
3347 (if rf (funcall rf depth) default-directory)))
3349 (defun speedbar-files-line-path (&optional depth)
3350 "Retrieve the pathname associated with the current line.
3351 This may require traversing backwards from DEPTH and combining the default
3352 directory with these items."
3353 (save-excursion
3354 (save-match-data
3355 (if (not depth)
3356 (progn
3357 (beginning-of-line)
3358 (looking-at "^\\([0-9]+\\):")
3359 (setq depth (string-to-int (match-string 1)))))
3360 (let ((path nil))
3361 (setq depth (1- depth))
3362 (while (/= depth -1)
3363 (if (not (re-search-backward (format "^%d:" depth) nil t))
3364 (error "Error building path of tag")
3365 (cond ((looking-at "[0-9]+:\\s-*<->\\s-+\\([^\n]+\\)$")
3366 (setq path (concat (buffer-substring-no-properties
3367 (match-beginning 1) (match-end 1))
3369 path)))
3370 ((looking-at "[0-9]+:\\s-*[-]\\s-+\\([^\n]+\\)$")
3371 ;; This is the start of our path.
3372 (setq path (buffer-substring-no-properties
3373 (match-beginning 1) (match-end 1))))))
3374 (setq depth (1- depth)))
3375 (if (and path
3376 (string-match (concat speedbar-indicator-regex "$")
3377 path))
3378 (setq path (substring path 0 (match-beginning 0))))
3379 (concat default-directory path)))))
3381 (defun speedbar-path-line (path)
3382 "Position the cursor on the line specified by PATH."
3383 (save-match-data
3384 (if (string-match "[/\\]$" path)
3385 (setq path (substring path 0 (match-beginning 0))))
3386 (let ((nomatch t) (depth 0)
3387 (fname (file-name-nondirectory path))
3388 (pname (file-name-directory path)))
3389 (if (not (member pname speedbar-shown-directories))
3390 (error "Internal Error: File %s not shown in speedbar" path))
3391 (goto-char (point-min))
3392 (while (and nomatch
3393 (re-search-forward
3394 (concat "[]>] \\(" (regexp-quote fname)
3395 "\\)\\(" speedbar-indicator-regex "\\)?$")
3396 nil t))
3397 (beginning-of-line)
3398 (looking-at "\\([0-9]+\\):")
3399 (setq depth (string-to-int (match-string 0))
3400 nomatch (not (string= pname (speedbar-line-path depth))))
3401 (end-of-line))
3402 (beginning-of-line)
3403 (not nomatch))))
3405 (defun speedbar-edit-line ()
3406 "Edit whatever tag or file is on the current speedbar line."
3407 (interactive)
3408 (or (save-excursion
3409 (beginning-of-line)
3410 ;; If this fails, then it is a non-standard click, and as such,
3411 ;; perfectly allowed.
3412 (if (re-search-forward "[]>?}] [^ ]"
3413 (save-excursion (end-of-line) (point))
3415 (speedbar-do-function-pointer)
3416 nil))
3417 (speedbar-do-function-pointer)))
3419 (defun speedbar-expand-line (&optional arg)
3420 "Expand the line under the cursor.
3421 With universal argument ARG, flush cached data."
3422 (interactive "P")
3423 (beginning-of-line)
3424 (let ((speedbar-power-click arg))
3425 (condition-case nil
3426 (progn
3427 (re-search-forward ":\\s-*.\\+. "
3428 (save-excursion (end-of-line) (point)))
3429 (forward-char -2)
3430 (speedbar-do-function-pointer))
3431 (error (speedbar-position-cursor-on-line)))))
3433 (defun speedbar-flush-expand-line ()
3434 "Expand the line under the cursor and flush any cached information."
3435 (interactive)
3436 (speedbar-expand-line 1))
3438 (defun speedbar-contract-line ()
3439 "Contract the line under the cursor."
3440 (interactive)
3441 (beginning-of-line)
3442 (condition-case nil
3443 (progn
3444 (re-search-forward ":\\s-*.-. "
3445 (save-excursion (end-of-line) (point)))
3446 (forward-char -2)
3447 (speedbar-do-function-pointer))
3448 (error (speedbar-position-cursor-on-line))))
3450 (if speedbar-xemacsp
3451 (defalias 'speedbar-mouse-event-p 'button-press-event-p)
3452 (defun speedbar-mouse-event-p (event)
3453 "Return t if the event is a mouse related event"
3454 ;; And Emacs does it this way
3455 (if (and (listp event)
3456 (member (event-basic-type event)
3457 '(mouse-1 mouse-2 mouse-3)))
3459 nil)))
3461 (defun speedbar-maybee-jump-to-attached-frame ()
3462 "Jump to the attached frame ONLY if this was not a mouse event."
3463 (if (or (not (speedbar-mouse-event-p last-input-event))
3464 speedbar-activity-change-focus-flag)
3465 (progn
3466 (select-frame speedbar-attached-frame)
3467 (other-frame 0))))
3469 (defun speedbar-find-file (text token indent)
3470 "Speedbar click handler for filenames.
3471 TEXT, the file will be displayed in the attached frame.
3472 TOKEN is unused, but required by the click handler. INDENT is the
3473 current indentation level."
3474 (let ((cdd (speedbar-line-path indent)))
3475 (speedbar-find-file-in-frame (concat cdd text))
3476 (speedbar-stealthy-updates)
3477 (run-hooks 'speedbar-visiting-file-hook)
3478 ;; Reset the timer with a new timeout when cliking a file
3479 ;; in case the user was navigating directories, we can cancel
3480 ;; that other timer.
3481 (speedbar-set-timer speedbar-update-speed))
3482 (speedbar-maybee-jump-to-attached-frame))
3484 (defun speedbar-dir-follow (text token indent)
3485 "Speedbar click handler for directory names.
3486 Clicking a directory will cause the speedbar to list files in the
3487 the subdirectory TEXT. TOKEN is an unused requirement. The
3488 subdirectory chosen will be at INDENT level."
3489 (setq default-directory
3490 (concat (expand-file-name (concat (speedbar-line-path indent) text))
3491 "/"))
3492 ;; Because we leave speedbar as the current buffer,
3493 ;; update contents will change directory without
3494 ;; having to touch the attached frame. Turn off smart expand just
3495 ;; in case.
3496 (let ((speedbar-smart-directory-expand-flag nil))
3497 (speedbar-update-contents))
3498 (speedbar-set-timer speedbar-navigating-speed)
3499 (setq speedbar-last-selected-file nil)
3500 (speedbar-stealthy-updates))
3502 (defun speedbar-delete-subblock (indent)
3503 "Delete text from point to indentation level INDENT or greater.
3504 Handles end-of-sublist smartly."
3505 (speedbar-with-writable
3506 (save-excursion
3507 (end-of-line) (forward-char 1)
3508 (let ((start (point)))
3509 (while (and (looking-at "^\\([0-9]+\\):")
3510 (> (string-to-int (match-string 1)) indent)
3511 (not (eobp)))
3512 (forward-line 1)
3513 (beginning-of-line))
3514 (delete-region start (point))))))
3516 (defun speedbar-dired (text token indent)
3517 "Speedbar click handler for directory expand button.
3518 Clicking this button expands or contracts a directory. TEXT is the
3519 button clicked which has either a + or -. TOKEN is the directory to be
3520 expanded. INDENT is the current indentation level."
3521 (cond ((string-match "+" text) ;we have to expand this dir
3522 (setq speedbar-shown-directories
3523 (cons (expand-file-name
3524 (concat (speedbar-line-path indent) token "/"))
3525 speedbar-shown-directories))
3526 (speedbar-change-expand-button-char ?-)
3527 (speedbar-reset-scanners)
3528 (save-excursion
3529 (end-of-line) (forward-char 1)
3530 (speedbar-with-writable
3531 (speedbar-default-directory-list
3532 (concat (speedbar-line-path indent) token "/")
3533 (1+ indent)))))
3534 ((string-match "-" text) ;we have to contract this node
3535 (speedbar-reset-scanners)
3536 (let ((oldl speedbar-shown-directories)
3537 (newl nil)
3538 (td (expand-file-name
3539 (concat (speedbar-line-path indent) token))))
3540 (while oldl
3541 (if (not (string-match (concat "^" (regexp-quote td)) (car oldl)))
3542 (setq newl (cons (car oldl) newl)))
3543 (setq oldl (cdr oldl)))
3544 (setq speedbar-shown-directories (nreverse newl)))
3545 (speedbar-change-expand-button-char ?+)
3546 (speedbar-delete-subblock indent)
3548 (t (error "Ooops... not sure what to do")))
3549 (speedbar-center-buffer-smartly)
3550 (setq speedbar-last-selected-file nil)
3551 (save-excursion (speedbar-stealthy-updates)))
3553 (defun speedbar-directory-buttons-follow (text token indent)
3554 "Speedbar click handler for default directory buttons.
3555 TEXT is the button clicked on. TOKEN is the directory to follow.
3556 INDENT is the current indentation level and is unused."
3557 (if (string-match "^[A-z]:$" token)
3558 (setq default-directory (concat token (char-to-string directory-sep-char)))
3559 (setq default-directory token))
3560 ;; Because we leave speedbar as the current buffer,
3561 ;; update contents will change directory without
3562 ;; having to touch the attached frame.
3563 (speedbar-update-contents)
3564 (speedbar-set-timer speedbar-navigating-speed))
3566 (defun speedbar-tag-file (text token indent)
3567 "The cursor is on a selected line. Expand the tags in the specified file.
3568 The parameter TEXT and TOKEN are required, where TEXT is the button
3569 clicked, and TOKEN is the file to expand. INDENT is the current
3570 indentation level."
3571 (cond ((string-match "+" text) ;we have to expand this file
3572 (let* ((fn (expand-file-name (concat (speedbar-line-path indent)
3573 token)))
3574 (mode nil)
3575 (lst (speedbar-fetch-dynamic-tags fn)))
3576 ;; if no list, then remove expando button
3577 (if (not lst)
3578 (speedbar-change-expand-button-char ??)
3579 (speedbar-change-expand-button-char ?-)
3580 (speedbar-with-writable
3581 (save-excursion
3582 (end-of-line) (forward-char 1)
3583 (funcall (car lst) indent (cdr lst)))))))
3584 ((string-match "-" text) ;we have to contract this node
3585 (speedbar-change-expand-button-char ?+)
3586 (speedbar-delete-subblock indent))
3587 (t (error "Ooops... not sure what to do")))
3588 (speedbar-center-buffer-smartly))
3590 (defun speedbar-tag-find (text token indent)
3591 "For the tag TEXT in a file TOKEN, goto that position.
3592 INDENT is the current indentation level."
3593 (let ((file (speedbar-line-path indent)))
3594 (speedbar-find-file-in-frame file)
3595 (save-excursion (speedbar-stealthy-updates))
3596 ;; Reset the timer with a new timeout when cliking a file
3597 ;; in case the user was navigating directories, we can cancel
3598 ;; that other timer.
3599 (speedbar-set-timer speedbar-update-speed)
3600 (goto-char token)
3601 (run-hooks 'speedbar-visiting-tag-hook)
3602 ;;(recenter)
3603 (speedbar-maybee-jump-to-attached-frame)
3606 (defun speedbar-tag-expand (text token indent)
3607 "Expand a tag sublist. Imenu will return sub-lists of specialized tag types.
3608 Etags does not support this feature. TEXT will be the button
3609 string. TOKEN will be the list, and INDENT is the current indentation
3610 level."
3611 (cond ((string-match "+" text) ;we have to expand this file
3612 (speedbar-change-expand-button-char ?-)
3613 (speedbar-with-writable
3614 (save-excursion
3615 (end-of-line) (forward-char 1)
3616 (speedbar-insert-generic-list indent token 'speedbar-tag-expand
3617 'speedbar-tag-find))))
3618 ((string-match "-" text) ;we have to contract this node
3619 (speedbar-change-expand-button-char ?+)
3620 (speedbar-delete-subblock indent))
3621 (t (error "Ooops... not sure what to do")))
3622 (speedbar-center-buffer-smartly))
3624 ;;; Loading files into the attached frame.
3626 (defun speedbar-find-file-in-frame (file)
3627 "This will load FILE into the speedbar attached frame.
3628 If the file is being displayed in a different frame already, then raise that
3629 frame instead."
3630 (let* ((buff (find-file-noselect file))
3631 (bwin (get-buffer-window buff 0)))
3632 (if bwin
3633 (progn
3634 (select-window bwin)
3635 (raise-frame (window-frame bwin)))
3636 (if speedbar-power-click
3637 (let ((pop-up-frames t)) (select-window (display-buffer buff)))
3638 (select-frame speedbar-attached-frame)
3639 (switch-to-buffer buff))))
3642 ;;; Centering Utility
3644 (defun speedbar-center-buffer-smartly ()
3645 "Recenter a speedbar buffer so the current indentation level is all visible.
3646 This assumes that the cursor is on a file, or tag of a file which the user is
3647 interested in."
3648 (if (<= (count-lines (point-min) (point-max))
3649 (1- (window-height (selected-window))))
3650 ;; whole buffer fits
3651 (let ((cp (point)))
3652 (goto-char (point-min))
3653 (recenter 0)
3654 (goto-char cp))
3655 ;; too big
3656 (let (depth start end exp p)
3657 (save-excursion
3658 (beginning-of-line)
3659 (setq depth (if (looking-at "[0-9]+")
3660 (string-to-int (buffer-substring-no-properties
3661 (match-beginning 0) (match-end 0)))
3663 (setq exp (format "^%d:\\s-*[[{<]\\([?+-]\\)[]>}]" depth)))
3664 (save-excursion
3665 (end-of-line)
3666 (if (re-search-backward exp nil t)
3667 (setq start (point))
3668 (setq start (point-min)))
3669 (save-excursion ;Not sure about this part.
3670 (end-of-line)
3671 (setq p (point))
3672 (while (and (not (re-search-forward exp nil t))
3673 (>= depth 0))
3674 (setq depth (1- depth))
3675 (setq exp (format "^%d:\\s-*[[{<]\\([?+-]\\)[]>}]" depth)))
3676 (if (/= (point) p)
3677 (setq end (point))
3678 (setq end (point-max)))))
3679 ;; Now work out the details of centering
3680 (let ((nl (count-lines start end))
3681 (cp (point)))
3682 (if (> nl (window-height (selected-window)))
3683 ;; We can't fit it all, so just center on cursor
3684 (progn (goto-char start)
3685 (recenter 1))
3686 ;; we can fit everything on the screen, but...
3687 (if (and (pos-visible-in-window-p start (selected-window))
3688 (pos-visible-in-window-p end (selected-window)))
3689 ;; we are all set!
3691 ;; we need to do something...
3692 (goto-char start)
3693 (let ((newcent (/ (- (window-height (selected-window)) nl) 2))
3694 (lte (count-lines start (point-max))))
3695 (if (and (< (+ newcent lte) (window-height (selected-window)))
3696 (> (- (window-height (selected-window)) lte 1)
3697 newcent))
3698 (setq newcent (- (window-height (selected-window))
3699 lte 1)))
3700 (recenter newcent))))
3701 (goto-char cp)))))
3704 ;;; Tag Management -- List of expanders:
3706 (defun speedbar-fetch-dynamic-tags (file)
3707 "Return a list of tags generated dynamically from FILE.
3708 This uses the entries in `speedbar-dynamic-tags-function-list'
3709 to find the proper tags. It is up to each of those individual
3710 functions to do caching and flushing if appropriate."
3711 (save-excursion
3712 (set-buffer (find-file-noselect file))
3713 ;; If there is a buffer-local value of
3714 ;; speedbar-dynamic-tags-function-list, it will now be available.
3715 (let ((dtf speedbar-dynamic-tags-function-list)
3716 (ret t))
3717 (while (and (eq ret t) dtf)
3718 (setq ret
3719 (if (fboundp (car (car dtf)))
3720 (funcall (car (car dtf)) (buffer-file-name))
3722 (if (eq ret t)
3723 (setq dtf (cdr dtf))))
3724 (if (eq ret t)
3725 ;; No valid tag list, return nil
3727 ;; We have some tags. Return the list with the insert fn
3728 ;; prepended
3729 (cons (cdr (car dtf)) ret)))))
3731 ;;; Tag Management -- Imenu
3733 (if (not speedbar-use-imenu-flag)
3737 (eval-when-compile (if (locate-library "imenu") (require 'imenu)))
3739 (defun speedbar-fetch-dynamic-imenu (file)
3740 "Load FILE into a buffer, and generate tags using Imenu.
3741 Returns the tag list, or t for an error."
3742 ;; Load this AND compile it in
3743 (require 'imenu)
3744 (if speedbar-power-click (setq imenu--index-alist nil))
3745 (condition-case nil
3746 (let ((index-alist (imenu--make-index-alist t)))
3747 (if speedbar-sort-tags
3748 (sort (copy-alist index-alist)
3749 (lambda (a b) (string< (car a) (car b))))
3750 index-alist))
3751 (error t)))
3754 ;;; Tag Management -- etags (old XEmacs compatibility part)
3756 (defvar speedbar-fetch-etags-parse-list
3757 '(;; Note that java has the same parse-group as c
3758 ("\\.\\([cChH]\\|c\\+\\+\\|cpp\\|cc\\|hh\\|java\\)\\'" .
3759 speedbar-parse-c-or-c++tag)
3760 ("^\\.emacs$\\|.\\(el\\|l\\|lsp\\)\\'" .
3761 "def[^i]+\\s-+\\(\\(\\w\\|[-_]\\)+\\)\\s-*\C-?")
3762 ; ("\\.\\([fF]\\|for\\|FOR\\|77\\|90\\)\\'" .
3763 ; speedbar-parse-fortran77-tag)
3764 ("\\.tex\\'" . speedbar-parse-tex-string)
3765 ("\\.p\\'" .
3766 "\\(\\(FUNCTION\\|function\\|PROCEDURE\\|procedure\\)\\s-+\\([a-zA-Z0-9_.:]+\\)\\)\\s-*(?^?")
3768 "Associations of file extensions and expressions for extracting tags.
3769 To add a new file type, you would want to add a new association to the
3770 list, where the car is the file match, and the cdr is the way to
3771 extract an element from the tags output. If the output is complex,
3772 use a function symbol instead of regexp. The function should expect
3773 to be at the beginning of a line in the etags buffer.
3775 This variable is ignored if `speedbar-use-imenu-flag' is non-nil.")
3777 (defvar speedbar-fetch-etags-command "etags"
3778 "*Command used to create an etags file.
3780 This variable is ignored if `speedbar-use-imenu-flag' is t")
3782 (defvar speedbar-fetch-etags-arguments '("-D" "-I" "-o" "-")
3783 "*List of arguments to use with `speedbar-fetch-etags-command'.
3784 This creates an etags output buffer. Use `speedbar-toggle-etags' to
3785 modify this list conveniently.
3787 This variable is ignored if `speedbar-use-imenu-flag' is t")
3789 (defun speedbar-toggle-etags (flag)
3790 "Toggle FLAG in `speedbar-fetch-etags-arguments'.
3791 FLAG then becomes a member of etags command line arguments. If flag
3792 is \"sort\", then toggle the value of `speedbar-sort-tags'. If its
3793 value is \"show\" then toggle the value of
3794 `speedbar-show-unknown-files'.
3796 This function is a convenience function for XEmacs menu created by
3797 Farzin Guilak <farzin@protocol.com>"
3798 (interactive)
3799 (cond
3800 ((equal flag "sort")
3801 (setq speedbar-sort-tags (not speedbar-sort-tags)))
3802 ((equal flag "show")
3803 (setq speedbar-show-unknown-files (not speedbar-show-unknown-files)))
3804 ((or (equal flag "-C")
3805 (equal flag "-S")
3806 (equal flag "-D"))
3807 (if (member flag speedbar-fetch-etags-arguments)
3808 (setq speedbar-fetch-etags-arguments
3809 (delete flag speedbar-fetch-etags-arguments))
3810 (add-to-list 'speedbar-fetch-etags-arguments flag)))
3811 (t nil)))
3813 (defun speedbar-fetch-dynamic-etags (file)
3814 "For FILE, run etags and create a list of symbols extracted.
3815 Each symbol will be associated with its line position in FILE."
3816 (let ((newlist nil))
3817 (unwind-protect
3818 (save-excursion
3819 (if (get-buffer "*etags tmp*")
3820 (kill-buffer "*etags tmp*")) ;kill to clean it up
3821 (if (<= 1 speedbar-verbosity-level)
3822 (speedbar-message "Fetching etags..."))
3823 (set-buffer (get-buffer-create "*etags tmp*"))
3824 (apply 'call-process speedbar-fetch-etags-command nil
3825 (current-buffer) nil
3826 (append speedbar-fetch-etags-arguments (list file)))
3827 (goto-char (point-min))
3828 (if (<= 1 speedbar-verbosity-level)
3829 (speedbar-message "Fetching etags..."))
3830 (let ((expr
3831 (let ((exprlst speedbar-fetch-etags-parse-list)
3832 (ans nil))
3833 (while (and (not ans) exprlst)
3834 (if (string-match (car (car exprlst)) file)
3835 (setq ans (car exprlst)))
3836 (setq exprlst (cdr exprlst)))
3837 (cdr ans))))
3838 (if expr
3839 (let (tnl)
3840 (set-buffer (get-buffer-create "*etags tmp*"))
3841 (while (not (save-excursion (end-of-line) (eobp)))
3842 (save-excursion
3843 (setq tnl (speedbar-extract-one-symbol expr)))
3844 (if tnl (setq newlist (cons tnl newlist)))
3845 (forward-line 1)))
3846 (speedbar-message
3847 "Sorry, no support for a file of that extension"))))
3849 (if speedbar-sort-tags
3850 (sort newlist (lambda (a b) (string< (car a) (car b))))
3851 (reverse newlist))))
3853 ;; This bit donated by Farzin Guilak <farzin@protocol.com> but I'm not
3854 ;; sure it's needed with the different sorting method.
3856 ;(defun speedbar-clean-etags()
3857 ; "Removes spaces before the ^? character, and removes `#define',
3858 ;return types, etc. preceding tags. This ensures that the sort operation
3859 ;works on the tags, not the return types."
3860 ; (save-excursion
3861 ; (goto-char (point-min))
3862 ; (while
3863 ; (re-search-forward "(?[ \t](?\C-?" nil t)
3864 ; (replace-match "\C-?" nil nil))
3865 ; (goto-char (point-min))
3866 ; (while
3867 ; (re-search-forward "\\(.*[ \t]+\\)\\([^ \t\n]+.*\C-?\\)" nil t)
3868 ; (delete-region (match-beginning 1) (match-end 1)))))
3870 (defun speedbar-extract-one-symbol (expr)
3871 "At point, return nil, or one alist in the form: (SYMBOL . POSITION)
3872 The line should contain output from etags. Parse the output using the
3873 regular expression EXPR"
3874 (let* ((sym (if (stringp expr)
3875 (if (save-excursion
3876 (re-search-forward expr (save-excursion
3877 (end-of-line)
3878 (point)) t))
3879 (buffer-substring-no-properties (match-beginning 1)
3880 (match-end 1)))
3881 (funcall expr)))
3882 (pos (let ((j (re-search-forward "[\C-?\C-a]\\([0-9]+\\),\\([0-9]+\\)"
3883 (save-excursion
3884 (end-of-line)
3885 (point))
3886 t)))
3887 (if (and j sym)
3888 (1+ (string-to-int (buffer-substring-no-properties
3889 (match-beginning 2)
3890 (match-end 2))))
3891 0))))
3892 (if (/= pos 0)
3893 (cons sym pos)
3894 nil)))
3896 (defun speedbar-parse-c-or-c++tag ()
3897 "Parse a c or c++ tag, which tends to be a little complex."
3898 (save-excursion
3899 (let ((bound (save-excursion (end-of-line) (point))))
3900 (cond ((re-search-forward "\C-?\\([^\C-a]+\\)\C-a" bound t)
3901 (buffer-substring-no-properties (match-beginning 1)
3902 (match-end 1)))
3903 ((re-search-forward "\\<\\([^ \t]+\\)\\s-+new(" bound t)
3904 (buffer-substring-no-properties (match-beginning 1)
3905 (match-end 1)))
3906 ((re-search-forward "\\<\\([^ \t(]+\\)\\s-*(\C-?" bound t)
3907 (buffer-substring-no-properties (match-beginning 1)
3908 (match-end 1)))
3909 (t nil))
3912 (defun speedbar-parse-tex-string ()
3913 "Parse a Tex string. Only find data which is relevant."
3914 (save-excursion
3915 (let ((bound (save-excursion (end-of-line) (point))))
3916 (cond ((re-search-forward "\\(\\(sub\\)*section\\|chapter\\|cite\\)\\s-*{[^\C-?}]*}?" bound t)
3917 (buffer-substring-no-properties (match-beginning 0)
3918 (match-end 0)))
3919 (t nil)))))
3922 ;;; BUFFER DISPLAY mode.
3924 (defvar speedbar-buffers-key-map nil
3925 "Keymap used when in the buffers display mode.")
3927 (if speedbar-buffers-key-map
3929 (setq speedbar-buffers-key-map (speedbar-make-specialized-keymap))
3931 ;; Basic tree features
3932 (define-key speedbar-buffers-key-map "e" 'speedbar-edit-line)
3933 (define-key speedbar-buffers-key-map "\C-m" 'speedbar-edit-line)
3934 (define-key speedbar-buffers-key-map "+" 'speedbar-expand-line)
3935 (define-key speedbar-buffers-key-map "=" 'speedbar-expand-line)
3936 (define-key speedbar-buffers-key-map "-" 'speedbar-contract-line)
3938 ;; Buffer specific keybindings
3939 (define-key speedbar-buffers-key-map "k" 'speedbar-buffer-kill-buffer)
3940 (define-key speedbar-buffers-key-map "r" 'speedbar-buffer-revert-buffer)
3944 (defvar speedbar-buffer-easymenu-definition
3945 '(["Jump to buffer" speedbar-edit-line t]
3946 ["Expand File Tags" speedbar-expand-line
3947 (save-excursion (beginning-of-line)
3948 (looking-at "[0-9]+: *.\\+. "))]
3949 ["Flush Cache & Expand" speedbar-flush-expand-line
3950 (save-excursion (beginning-of-line)
3951 (looking-at "[0-9]+: *.\\+. "))]
3952 ["Contract File Tags" speedbar-contract-line
3953 (save-excursion (beginning-of-line)
3954 (looking-at "[0-9]+: *.-. "))]
3955 ["Kill Buffer" speedbar-buffer-kill-buffer
3956 (save-excursion (beginning-of-line)
3957 (looking-at "[0-9]+: *.-. "))]
3958 ["Revert Buffer" speedbar-buffer-revert-buffer
3959 (save-excursion (beginning-of-line)
3960 (looking-at "[0-9]+: *.-. "))]
3962 "Menu item elements shown when displaying a buffer list.")
3964 (defun speedbar-buffer-buttons (directory zero)
3965 "Create speedbar buttons based on the buffers currently loaded.
3966 DIRECTORY is the path to the currently active buffer, and ZERO is 0."
3967 (speedbar-buffer-buttons-engine nil))
3969 (defun speedbar-buffer-buttons-temp (directory zero)
3970 "Create speedbar buttons based on the buffers currently loaded.
3971 DIRECTORY is the path to the currently active buffer, and ZERO is 0."
3972 (speedbar-buffer-buttons-engine t))
3974 (defun speedbar-buffer-buttons-engine (temp)
3975 "Create speedbar buffer buttons.
3976 If TEMP is non-nil, then clicking on a buffer restores the previous display."
3977 (insert "Active Buffers:\n")
3978 (let ((bl (buffer-list)))
3979 (while bl
3980 (if (string-match "^[ *]" (buffer-name (car bl)))
3982 (let* ((known (string-match speedbar-file-regexp
3983 (buffer-name (car bl))))
3984 (expchar (if known ?+ ??))
3985 (fn (if known 'speedbar-tag-file nil))
3986 (fname (save-excursion (set-buffer (car bl))
3987 (buffer-file-name))))
3988 (speedbar-make-tag-line 'bracket expchar fn
3989 (if fname (file-name-nondirectory fname))
3990 (buffer-name (car bl))
3991 'speedbar-buffer-click temp
3992 'speedbar-file-face 0)))
3993 (setq bl (cdr bl)))
3994 (setq bl (buffer-list))
3995 (insert "Scratch Buffers:\n")
3996 (while bl
3997 (if (not (string-match "^\\*" (buffer-name (car bl))))
3999 (if (eq (car bl) speedbar-buffer)
4001 (speedbar-make-tag-line 'bracket ?? nil nil
4002 (buffer-name (car bl))
4003 'speedbar-buffer-click temp
4004 'speedbar-file-face 0)))
4005 (setq bl (cdr bl)))
4006 (setq bl (buffer-list))
4007 (insert "Hidden Buffers:\n")
4008 (while bl
4009 (if (not (string-match "^ " (buffer-name (car bl))))
4011 (if (eq (car bl) speedbar-buffer)
4013 (speedbar-make-tag-line 'bracket ?? nil nil
4014 (buffer-name (car bl))
4015 'speedbar-buffer-click temp
4016 'speedbar-file-face 0)))
4017 (setq bl (cdr bl)))))
4019 (defun speedbar-buffers-item-info ()
4020 "Display information about the current buffer on the current line."
4021 (or (speedbar-item-info-tag-helper)
4022 (let* ((item (speedbar-line-text))
4023 (buffer (if item (get-buffer item) nil)))
4024 (and buffer
4025 (speedbar-message "%s%s %S %d %s"
4026 (if (buffer-modified-p buffer) "* " "")
4027 item
4028 (save-excursion (set-buffer buffer) major-mode)
4029 (save-excursion (set-buffer buffer)
4030 (buffer-size))
4031 (or (buffer-file-name buffer) "<No file>"))))))
4033 (defun speedbar-buffers-line-path (&optional depth)
4034 "Fetch the full path to the file (buffer) specified on the current line.
4035 Optional argument DEPTH specifies the current depth of the back search."
4036 (save-excursion
4037 (end-of-line)
4038 (let ((start (point)))
4039 ;; Buffers are always at level 0
4040 (if (not (re-search-backward "^0:" nil t))
4042 (let* ((bn (speedbar-line-text))
4043 (buffer (if bn (get-buffer bn))))
4044 (if buffer
4045 (if (save-excursion
4046 (end-of-line)
4047 (eq start (point)))
4048 (file-name-directory (buffer-file-name buffer))
4049 (buffer-file-name buffer))))))))
4051 (defun speedbar-buffer-click (text token indent)
4052 "When the users clicks on a buffer-button in speedbar.
4053 TEXT is the buffer's name, TOKEN and INDENT are unused."
4054 (if speedbar-power-click
4055 (let ((pop-up-frames t)) (select-window (display-buffer text)))
4056 (select-frame speedbar-attached-frame)
4057 (switch-to-buffer text)
4058 (if token (speedbar-change-initial-expansion-list
4059 speedbar-previously-used-expansion-list-name))))
4061 (defun speedbar-buffer-kill-buffer ()
4062 "Kill the buffer the cursor is on in the speedbar buffer."
4063 (interactive)
4064 (or (save-excursion
4065 (beginning-of-line)
4066 ;; If this fails, then it is a non-standard click, and as such,
4067 ;; perfectly allowed.
4068 (if (re-search-forward "[]>?}] [^ ]"
4069 (save-excursion (end-of-line) (point))
4071 (let ((text (progn
4072 (forward-char -1)
4073 (buffer-substring (point) (save-excursion
4074 (end-of-line)
4075 (point))))))
4076 (if (and (get-buffer text)
4077 (speedbar-y-or-n-p (format "Kill buffer %s? " text)))
4078 (kill-buffer text))
4079 (speedbar-refresh))))))
4081 (defun speedbar-buffer-revert-buffer ()
4082 "Revert the buffer the cursor is on in the speedbar buffer."
4083 (interactive)
4084 (save-excursion
4085 (beginning-of-line)
4086 ;; If this fails, then it is a non-standard click, and as such,
4087 ;; perfectly allowed
4088 (if (re-search-forward "[]>?}] [^ ]"
4089 (save-excursion (end-of-line) (point))
4091 (let ((text (progn
4092 (forward-char -1)
4093 (buffer-substring (point) (save-excursion
4094 (end-of-line)
4095 (point))))))
4096 (if (get-buffer text)
4097 (progn
4098 (set-buffer text)
4099 (revert-buffer t)))))))
4102 ;;; Useful hook values and such.
4104 (defvar speedbar-highlight-one-tag-line nil
4105 "Overlay used for highlighting the most recently jumped to tag line.")
4107 (defun speedbar-highlight-one-tag-line ()
4108 "Highlight the current line, unhighlighting a previously jumped to line."
4109 (speedbar-unhighlight-one-tag-line)
4110 (setq speedbar-highlight-one-tag-line
4111 (speedbar-make-overlay (save-excursion (beginning-of-line) (point))
4112 (save-excursion (end-of-line)
4113 (forward-char 1)
4114 (point))))
4115 (speedbar-overlay-put speedbar-highlight-one-tag-line 'face
4116 'speedbar-highlight-face)
4117 (add-hook 'pre-command-hook 'speedbar-unhighlight-one-tag-line)
4120 (defun speedbar-unhighlight-one-tag-line ()
4121 "Unhighlight the currently highlight line."
4122 (if speedbar-highlight-one-tag-line
4123 (progn
4124 (speedbar-delete-overlay speedbar-highlight-one-tag-line)
4125 (setq speedbar-highlight-one-tag-line nil)))
4126 (remove-hook 'pre-command-hook 'speedbar-unhighlight-one-tag-line))
4128 (defun speedbar-recenter-to-top ()
4129 "Recenter the current buffer so POINT is on the top of the window."
4130 (recenter 1))
4132 (defun speedbar-recenter ()
4133 "Recenter the current buffer so POINT is in the center of the window."
4134 (recenter (/ (window-height (selected-window)) 2)))
4137 ;;; Color loading section.
4139 (defface speedbar-button-face '((((class color) (background light))
4140 (:foreground "green4"))
4141 (((class color) (background dark))
4142 (:foreground "green3")))
4143 "Face used for +/- buttons."
4144 :group 'speedbar-faces)
4146 (defface speedbar-file-face '((((class color) (background light))
4147 (:foreground "cyan4"))
4148 (((class color) (background dark))
4149 (:foreground "cyan"))
4150 (t (:bold t)))
4151 "Face used for file names."
4152 :group 'speedbar-faces)
4154 (defface speedbar-directory-face '((((class color) (background light))
4155 (:foreground "blue4"))
4156 (((class color) (background dark))
4157 (:foreground "light blue")))
4158 "Faced used for directory names."
4159 :group 'speedbar-faces)
4160 (defface speedbar-tag-face '((((class color) (background light))
4161 (:foreground "brown"))
4162 (((class color) (background dark))
4163 (:foreground "yellow")))
4164 "Face used for displaying tags."
4165 :group 'speedbar-faces)
4167 (defface speedbar-selected-face '((((class color) (background light))
4168 (:foreground "red" :underline t))
4169 (((class color) (background dark))
4170 (:foreground "red" :underline t))
4171 (t (:underline t)))
4172 "Face used to underline the file in the active window."
4173 :group 'speedbar-faces)
4175 (defface speedbar-highlight-face '((((class color) (background light))
4176 (:background "green"))
4177 (((class color) (background dark))
4178 (:background "sea green"))
4179 (((class grayscale monochrome)
4180 (background light))
4181 (:background "black"))
4182 (((class grayscale monochrome)
4183 (background dark))
4184 (:background "white")))
4185 "Face used for highlighting buttons with the mouse."
4186 :group 'speedbar-faces)
4189 ;;; Image loading and inlining
4192 ;;; Some images if defimage is available:
4193 (eval-when-compile
4195 (if (fboundp 'defimage)
4196 (defalias 'defimage-speedbar 'defimage)
4198 (if (not (fboundp 'make-glyph))
4200 (defmacro defimage-speedbar (variable imagespec docstring)
4201 "Don't bother loading up an image...
4202 Argument VARIABLE is the varible to define.
4203 Argument IMAGESPEC is the list defining the image to create.
4204 Argument DOCSTRING is the documentation for VARIABLE."
4205 `(defvar ,variable nil ,docstring))
4207 ;; ELSE
4208 (defun speedbar-find-image-on-load-path (image)
4209 "Find the image file IMAGE on the load path."
4210 (let ((l load-path)
4211 (r nil))
4212 (while (and l (not r))
4213 (if (file-exists-p (concat (car l) "/" image))
4214 (setq r (concat (car l) "/" image)))
4215 (setq l (cdr l)))
4218 (defun speedbar-convert-emacs21-imagespec-to-xemacs (spec)
4219 "Convert the Emacs21 Image SPEC into an XEmacs image spec."
4220 (let* ((sl (car spec))
4221 (itype (nth 1 sl))
4222 (ifile (nth 3 sl)))
4223 (vector itype ':file (speedbar-find-image-on-load-path ifile))))
4225 (defmacro defimage-speedbar (variable imagespec docstring)
4226 "Devine VARIABLE as an image if `defimage' is not available..
4227 IMAGESPEC is the image data, and DOCSTRING is documentation for the image."
4228 `(defvar ,variable
4229 ;; The Emacs21 version of defimage looks just like the XEmacs image
4230 ;; specifier, except that it needs a :type keyword. If we line
4231 ;; stuff up right, we can use this cheat to support XEmacs specifiers.
4232 (condition-case nil
4233 (make-glyph
4234 (make-image-specifier
4235 (speedbar-convert-emacs21-imagespec-to-xemacs (quote ,imagespec)))
4236 'buffer)
4237 (error nil))
4238 ,docstring))
4242 (defimage-speedbar speedbar-directory-plus
4243 ((:type xpm :file "sb-dir-plus.xpm" :ascent center))
4244 "Image used for closed directories with stuff in them.")
4246 (defimage-speedbar speedbar-directory-minus
4247 ((:type xpm :file "sb-dir-minus.xpm" :ascent center))
4248 "Image used for open directories with stuff in them.")
4250 (defimage-speedbar speedbar-page-plus
4251 ((:type xpm :file "sb-pg-plus.xpm" :ascent center))
4252 "Image used for closed files with stuff in them.")
4254 (defimage-speedbar speedbar-page-minus
4255 ((:type xpm :file "sb-pg-minus.xpm" :ascent center))
4256 "Image used for open files with stuff in them.")
4258 (defimage-speedbar speedbar-page
4259 ((:type xpm :file "sb-pg.xpm" :ascent center))
4260 "Image used for files that can't be opened.")
4262 (defimage-speedbar speedbar-tag
4263 ((:type xpm :file "sb-tag.xpm" :ascent center))
4264 "Image used for tags.")
4266 (defimage-speedbar speedbar-tag-plus
4267 ((:type xpm :file "sb-tag-plus.xpm" :ascent center))
4268 "Image used for closed tag groups.")
4270 (defimage-speedbar speedbar-tag-minus
4271 ((:type xpm :file "sb-tag-minus.xpm" :ascent center))
4272 "Image used for open tag groups.")
4274 (defimage-speedbar speedbar-tag-gt
4275 ((:type xpm :file "sb-tag-gt.xpm" :ascent center))
4276 "Image used for open tag groups.")
4278 (defimage-speedbar speedbar-tag-v
4279 ((:type xpm :file "sb-tag-v.xpm" :ascent center))
4280 "Image used for open tag groups.")
4282 (defimage-speedbar speedbar-tag-type
4283 ((:type xpm :file "sb-tag-type.xpm" :ascent center))
4284 "Image used for open tag groups.")
4286 (defimage-speedbar speedbar-mail
4287 ((:type xpm :file "sb-mail.xpm" :ascent center))
4288 "Image used for open tag groups.")
4290 (defvar speedbar-expand-image-button-alist
4291 '(("<+>" . speedbar-directory-plus)
4292 ("<->" . speedbar-directory-minus)
4293 ("[+]" . speedbar-page-plus)
4294 ("[-]" . speedbar-page-minus)
4295 ("[?]" . speedbar-page)
4296 ("{+}" . speedbar-tag-plus)
4297 ("{-}" . speedbar-tag-minus)
4298 ("<M>" . speedbar-mail)
4299 (" =>" . speedbar-tag)
4300 (" +>" . speedbar-tag-gt)
4301 (" ->" . speedbar-tag-v)
4302 (">" . speedbar-tag)
4303 ("@" . speedbar-tag-type)
4304 (" @" . speedbar-tag-type)
4306 "List of text and image associations.")
4308 (defun speedbar-insert-image-button-maybe (start length)
4309 "Insert an image button based on text starting at START for LENGTH chars.
4310 If buttontext is unknown, just insert that text.
4311 If we have an image associated with it, use that image."
4312 (if speedbar-use-images
4313 (let* ((bt (buffer-substring start (+ length start)))
4314 (a (assoc bt speedbar-expand-image-button-alist)))
4315 ;; Regular images (created with `insert-image' are intangible
4316 ;; which (I suppose) make them more compatible with XEmacs 21.
4317 ;; Unfortunatly, there is a giant pile o code dependent on the
4318 ;; underlying text. This means if we leave it tangible, then I
4319 ;; don't have to change said giant piles o code.
4320 (if (and a (symbol-value (cdr a)))
4321 (if (fboundp 'set-extent-property)
4322 (add-text-properties (+ start (length bt)) start
4323 (list 'end-glyph (symbol-value (cdr a))
4324 'rear-nonsticky (list 'display)
4325 'invisible t
4326 'detachable t))
4327 (add-text-properties start (+ start (length bt))
4328 (list 'display (symbol-value (cdr a))
4329 'rear-nonsticky (list 'display))))
4330 ;(message "Bad text [%s]" (buffer-substring start (+ start length)))
4331 ))))
4334 ;; some edebug hooks
4335 (add-hook 'edebug-setup-hook
4336 (lambda ()
4337 (def-edebug-spec speedbar-with-writable def-body)))
4339 (provide 'speedbar)
4340 ;;; speedbar ends here
4342 ;; run load-time hooks
4343 (run-hooks 'speedbar-load-hook)