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