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