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