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