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