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