(custom-deps, autoloads): Fix *-hooks -> *-hook.
[bpt/emacs.git] / lisp / help-at-pt.el
CommitLineData
cc531412
LT
1;;; help-at-pt.el --- local help through the keyboard
2
3;; Copyright (C) 2003 Free Software Foundation, Inc.
4
5;; Author: Luc Teirlinck <teirllm@auburn.edu>
6;; Keywords: help
7
8;; This file is part of GNU Emacs.
9
10;; GNU Emacs is free software; you can redistribute it and/or modify
11;; it under the terms of the GNU General Public License as published by
12;; the Free Software Foundation; either version 2, or (at your option)
13;; any later version.
14
15;; GNU Emacs is distributed in the hope that it will be useful,
16;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18;; GNU General Public License for more details.
19
20;; You should have received a copy of the GNU General Public License
21;; along with GNU Emacs; see the file COPYING. If not, write to the
22;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23;; Boston, MA 02111-1307, USA.
24
25;;; Commentary:
26
27;; This file contains functionality to make the help provided by the
28;; help-echo text or overlay property available to the keyboard user.
29;; It also supports a more keyboard oriented alternative to
30;; `help-echo', namely a new text or overlay property `kbd-help'.
31;;
32;; It provides facilities to access the local help available at point
33;; either on demand, using the command `display-local-help', or
34;; automatically after a suitable idle time, through the customizable
35;; variable `help-at-pt-display-when-idle'.
36;;
37;; You can get a more global overview of the local help available in
38;; the buffer, using the commands `scan-buf-next-region' and
39;; `scan-buf-previous-region', which move to the start of the next or
40;; previous region with available local help and print the help found
41;; there.
42;;
f561ff53
JL
43;; Suggested key bindings:
44;;
45;; (global-set-key [C-tab] 'scan-buf-next-region)
46;; (global-set-key [C-M-tab] 'scan-buf-previous-region)
47;;
cc531412
LT
48;; You do not have to do anything special to use the functionality
49;; provided by this file, because all important functions autoload.
50
51;;; Code:
52
53(defgroup help-at-pt nil
54 "Features for displaying local help."
55 :group 'help
56 :version "21.4")
57
58;;;###autoload
59(defun help-at-pt-string (&optional kbd)
60 "Return the help-echo string at point.
61Normally, the string produced by the `help-echo' text or overlay
62property, or nil, is returned.
63If KBD is non-nil, `kbd-help' is used instead, and any
64`help-echo' property is ignored. In this case, the return value
65can also be t, if that is the value of the `kbd-help' property."
66 (let* ((prop (if kbd 'kbd-help 'help-echo))
67 (pair (get-char-property-and-overlay (point) prop))
68 (val (car pair))
69 (ov (cdr pair)))
70 (if (functionp val)
71 (funcall val (selected-window) (if ov ov (current-buffer)) (point))
72 (eval val))))
73
74;;;###autoload
75(defun help-at-pt-kbd-string ()
76 "Return the keyboard help string at point.
77If the `kbd-help' text or overlay property at point produces a
78string, return it. Otherwise, use the `help-echo' property. If
79this produces no string either, return nil."
80 (let ((kbd (help-at-pt-string t))
81 (echo (help-at-pt-string)))
82 (if (and kbd (not (eq kbd t))) kbd echo)))
83
84;;;###autoload
85(defun display-local-help (&optional arg)
86 "Display local help in the echo area.
87This displays a short help message, namely the string produced by
88the `kbd-help' property at point. If `kbd-help' does not produce
89a string, but the `help-echo' property does, then that string is
90printed instead.
91
92A numeric argument ARG prevents display of a message in case
93there is no help. While ARG can be used interactively, it is
94mainly meant for use from Lisp."
95 (interactive "P")
96 (let ((help (help-at-pt-kbd-string)))
97 (if help
98 (message "%s" help)
99 (if (not arg) (message "No local help at point")))))
100
101(defcustom help-at-pt-timer-delay 1
102 "*Delay before displaying local help.
103This is used if `help-at-pt-display-when-idle' is enabled.
104The value may be an integer or floating point number.
105
106If a timer is already active, there are two ways to make the new
107value take effect immediately. After setting the value, you can
108first call `help-at-pt-cancel-timer' and then set a new timer
e4ff63a2 109with `help-at-pt-set-timer'. Alternatively, you can set this
cc531412
LT
110variable through Custom. This will not set a timer if none is
111active, but if one is already active, Custom will make it use the
112new value."
113 :group 'help-at-pt
114 :type 'number
115 :set (lambda (variable value)
116 (set-default variable value)
117 (when (and (boundp 'help-at-pt-timer) help-at-pt-timer)
118 (timer-set-idle-time help-at-pt-timer value t))))
119
120(defvar help-at-pt-timer nil
121 "Non-nil means that a timer is set that checks for local help.
122If non-nil, this is the value returned by the call of
123`run-with-idle-timer' that set that timer. This variable is used
124internally to enable `help-at-pt-display-when-idle'. Do not set it
125yourself.")
126
127;;;###autoload
128(defun help-at-pt-cancel-timer ()
129 "Cancel any timer set by `help-at-pt-set-timer'.
130This disables `help-at-pt-display-when-idle'."
131 (interactive)
132 (let ((inhibit-quit t))
133 (when help-at-pt-timer
134 (cancel-timer help-at-pt-timer)
135 (setq help-at-pt-timer nil))))
136
137;;;###autoload
138(defun help-at-pt-set-timer ()
139 "Enable `help-at-pt-display-when-idle'.
140This is done by setting a timer, if none is currently active."
141 (interactive)
142 (unless help-at-pt-timer
143 (setq help-at-pt-timer
144 (run-with-idle-timer
145 help-at-pt-timer-delay t #'help-at-pt-maybe-display))))
146
147;;;###autoload
148(defcustom help-at-pt-display-when-idle 'never
149 "*Automatically show local help on point-over.
150If the value is t, the string obtained from any `kbd-help' or
151`help-echo' property at point is automatically printed in the
152echo area, if nothing else is already displayed there, or after a
153quit. If both `kbd-help' and `help-echo' produce help strings,
154`kbd-help' is used. If the value is a list, the help only gets
155printed if there is a text or overlay property at point that is
156included in this list. Suggested properties are `keymap',
157`local-map', `button' and `kbd-help'. Any value other than t or
158a non-empty list disables the feature.
159
160This variable only takes effect after a call to
161`help-at-pt-set-timer'. The help gets printed after Emacs has
162been idle for `help-at-pt-timer-delay' seconds. You can call
163`help-at-pt-cancel-timer' to cancel the timer set by, and the
164effect of, `help-at-pt-set-timer'.
165
166When this variable is set through Custom, `help-at-pt-set-timer'
167is called automatically, unless the value is `never', in which
168case `help-at-pt-cancel-timer' is called. Specifying an empty
169list of properties through Custom will set the timer, thus
170enabling buffer local values. It sets the actual value to nil.
171Thus, Custom distinguishes between a nil value and other values
172that disable the feature, which Custom identifies with `never'.
173The default is `never'."
174 :group 'help-at-pt
175 :type '(choice (const :tag "Always"
176 :format "%t\n%h"
177 :doc
178 "This choice can get noisy.
179The text printed from the `help-echo' property is often only
180relevant when using the mouse. If you mind about too many
181messages getting printed in the echo area, use \"In certain
182situations\". See the documentation there for more information."
183 t)
184 (repeat :tag "In certain situations"
185 ;; unless we specify 0 offset the doc string
186 ;; for this choice gets indented very
187 ;; differently than for the other two
188 ;; choices, when "More" is selected.
189 :offset 0
190 :format "%{%t%}:\n%v%i\n%h"
191 :doc
192 "This choice lets you specify a list of \
193text properties.
194Presence of any of these properties will trigger display of
195available local help on point-over.
196If you use this alternative through Custom without listing any
197properties, a timer will be set anyway. This will enable buffer
198local values. Use \"Never\" if you do not want a timer to be set.
199
200Suggested properties:
201The `keymap' and `local-map' properties change keybindings in
202parts of the buffer. Some of these keymaps are mode independent
203and are not mentioned in the mode documentation. Hence, the help
204text is likely to be useful.
205Specifying `button' is relevant in Custom and similar buffers.
206In these buffers, most, but not all, of the text shown this way is
207available by default when using tab, but not on regular point-over.
208The presence of a `kbd-help' property guarantees that non mouse
209specific help is available."
210 :value (keymap local-map button kbd-help)
211 symbol)
212 (other :tag "Never"
213 :format "%t\n%h"
214 :doc
215 "This choice normally disables buffer local values.
216If you choose this value through Custom and a timer checking for
217local help is currently active, it will be canceled. No new
218timer will be set. Call `help-at-pt-set-timer' after choosing
219this option, or use \"In certain situations\" and specify no text
220properties, to enable buffer local values."
221 never))
222 :initialize 'custom-initialize-default
223 :set #'(lambda (variable value)
224 (set-default variable value)
225 (if (eq value 'never)
226 (help-at-pt-cancel-timer)
227 (help-at-pt-set-timer)))
228 :set-after '(help-at-pt-timer-delay)
229 :require 'help-at-pt)
230
231;; Function for use in `help-at-pt-set-timer'.
232(defun help-at-pt-maybe-display ()
233 (and (or (eq help-at-pt-display-when-idle t)
234 (and (consp help-at-pt-display-when-idle)
235 (catch 'found
236 (dolist (prop help-at-pt-display-when-idle)
237 (if (get-char-property (point) prop)
238 (throw 'found t))))))
239 (or (not (current-message))
240 (string= (current-message) "Quit"))
241 (display-local-help t)))
242
243;;;###autoload
244(defun scan-buf-move-to-region (prop &optional arg hook)
245 "Go to the start of the next region with non-nil PROP property.
246Then run HOOK, which should be a quoted symbol that is a normal
247hook.variable, or an expression evaluating to such a symbol.
248Adjacent areas with different non-nil PROP properties are
249considered different regions.
250
251With numeric argument ARG, move to the start of the ARGth next
252such region, then run HOOK. If ARG is negative, move backward.
253If point is already in a region, then that region does not count
254toward ARG. If ARG is 0 and point is inside a region, move to
255the start of that region. If ARG is 0 and point is not in a
256region, print a message to that effect, but do not move point and
257do not run HOOK. If there are not enough regions to move over,
258an error results and the number of available regions is mentioned
259in the error message. Point is not moved and HOOK is not run."
260 (cond ((> arg 0)
261 (if (= (point) (point-max))
262 (error "No further `%s' regions" prop))
263 (let ((pos (point)))
264 (dotimes (x arg)
265 (setq pos (next-single-char-property-change pos prop))
266 (unless (get-char-property pos prop)
267 (setq pos (next-single-char-property-change pos prop))
268 (unless (get-char-property pos prop)
269 (cond ((= x 0)
270 (error "No further `%s' regions" prop))
271 ((= x 1)
272 (error "There is only one further `%s' region" prop))
273 (t
274 (error
275 "There are only %d further `%s' regions"
276 x prop))))))
277 (goto-char pos)
278 (run-hooks hook)))
279 ((= arg 0)
280 (let ((val (get-char-property (point) prop)))
281 (cond ((not val)
282 (message "Point is not in a `%s' region" prop))
283 ((eq val (get-char-property (1- (point)) prop))
284 (goto-char
285 (previous-single-char-property-change (point) prop))
286 (run-hooks hook))
287 (t (run-hooks hook)))))
288 ((< arg 0)
289 (let ((pos (point)) (val (get-char-property (point) prop)))
290 (and val
291 (eq val (get-char-property (1- pos) prop))
292 (setq pos
293 (previous-single-char-property-change pos prop)))
294 (if (= pos (point-min))
295 (error "No prior `%s' regions" prop))
296 (dotimes (x (- arg))
297 (setq pos (previous-single-char-property-change pos prop))
298 (unless (get-char-property pos prop)
299 (setq pos (previous-single-char-property-change pos prop))
300 (unless (get-char-property pos prop)
301 (cond ((= x 0)
302 (error "No prior `%s' regions" prop))
303 ((= x 1)
304 (error "There is only one prior `%s' region" prop))
305 (t
306 (error "There are only %d prior `%s' regions"
307 x prop))))))
308 (goto-char pos)
309 (run-hooks hook)))))
310
311;; To be moved to a different file and replaced by a defcustom in a
312;; future version.
313(defvar scan-buf-move-hook '(display-local-help)
314 "Normal hook run by `scan-buf-next-region'.
315Also used by `scan-buf-previous-region'. The hook is run after
316positioning point.")
317
318;;;###autoload
319(defun scan-buf-next-region (&optional arg)
320 "Go to the start of the next region with non-nil help-echo.
321Print the help found there using `display-local-help'. Adjacent
322areas with different non-nil help-echo properties are considered
323different regions.
324
325With numeric argument ARG, move to the start of the ARGth next
326help-echo region. If ARG is negative, move backward. If point
327is already in a help-echo region, then that region does not count
328toward ARG. If ARG is 0 and point is inside a help-echo region,
329move to the start of that region. If ARG is 0 and point is not
330in such a region, just print a message to that effect. If there
331are not enough regions to move over, an error results and the
332number of available regions is mentioned in the error message.
333
334A potentially confusing subtlety is that point can be in a
335help-echo region without any local help being available. This is
336because `help-echo' can be a function evaluating to nil. This
337rarely happens in practice."
338 (interactive "p")
339 (scan-buf-move-to-region 'help-echo arg 'scan-buf-move-hook))
340
341;;;###autoload
342(defun scan-buf-previous-region (&optional arg)
343 "Go to the start of the previous region with non-nil help-echo.
344Print the help found there using `display-local-help'. Adjacent
345areas with different non-nil help-echo properties are considered
346different regions. With numeric argument ARG, behaves like
347`scan-buf-next-region' with argument -ARG.."
348 (interactive "p")
349 (scan-buf-move-to-region 'help-echo (- arg) 'scan-buf-move-hook))
350
35f825bd 351(add-hook 'help-at-pt-unload-hook 'help-at-pt-cancel-timer)
cc531412 352
cc531412
LT
353(provide 'help-at-pt)
354
5074ca95 355;;; arch-tag: d0b8b86d-d23f-45d0-a82d-208d6205a583
cc531412 356;;; help-at-pt.el ends here