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