1 ;;; tooltip.el --- Show tooltip windows
3 ;; Copyright (C) 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
5 ;; Author: Gerd Moellmann <gerd@acm.org>
6 ;; Keywords: help c mouse tools
8 ;; This file is part of GNU Emacs.
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)
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.
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.
37 ;;; Customizable settings
40 "Customization group for the `tooltip' package."
50 (defcustom tooltip-delay
0.7
51 "Seconds to wait before displaying a tooltip the first time."
57 (defcustom tooltip-short-delay
0.1
58 "Seconds to wait between subsequent tooltips on different items."
64 (defcustom tooltip-recent-seconds
1
65 "Display tooltips if changing tip items within this many seconds.
66 Do so after `tooltip-short-delay'."
72 (defcustom tooltip-hide-delay
10
73 "Hide tooltips automatically after this many seconds."
79 (defcustom tooltip-x-offset nil
80 "Specify an X offset, in pixels, for the display of tooltips.
81 The offset is relative to the position of the mouse. It must
82 be chosen so that the tooltip window doesn't contain the mouse
83 when it pops up. If the value is nil, the default offset is 5
86 If `tooltip-frame-parameters' includes the `left' parameter,
87 the value of `tooltip-x-offset' is ignored."
89 :type
'(choice (const :tag
"Default" nil
)
90 (integer :tag
"Offset" :value
1))
94 (defcustom tooltip-y-offset nil
95 "Specify a Y offset, in pixels, for the display of tooltips.
96 The offset is relative to the position of the mouse. It must
97 be chosen so that the tooltip window doesn't contain the mouse
98 when it pops up. If the value is nil, the default offset is -10
101 If `tooltip-frame-parameters' includes the `top' parameter,
102 the value of `tooltip-y-offset' is ignored."
104 :type
'(choice (const :tag
"Default" nil
)
105 (integer :tag
"Offset" :value
1))
109 (defcustom tooltip-frame-parameters
111 (internal-border-width .
5)
113 "Frame parameters used for tooltips.
115 If `left' or `top' parameters are included, they specify the absolute
116 position to pop up the tooltip."
118 :tag
"Frame Parameters"
124 (:background
"lightyellow" :foreground
"black"))
130 (defcustom tooltip-gud-tips-p nil
131 "*Non-nil means show tooltips in GUD sessions."
134 :set
#'(lambda (symbol on
)
135 (setq tooltip-gud-tips-p on
)
136 (if on
(tooltip-gud-tips-setup)))
140 (defcustom tooltip-gud-modes
'(gud-mode c-mode c
++-mode
)
141 "List of modes for which to enable GUD tips."
147 (defcustom tooltip-gud-display
148 '((eq (tooltip-event-buffer tooltip-gud-event
)
149 (marker-buffer overlay-arrow-position
)))
150 "List of forms determining where GUD tooltips are displayed.
152 Forms in the list are combined with AND. The default is to display
153 only tooltips in the buffer containing the overlay arrow."
155 :tag
"GUD buffers predicate"
159 (defcustom tooltip-use-echo-area nil
160 "Use the echo area instead of tooltip frames.
161 This is only relevant GUD display, since otherwise it is equivalent to
162 turning off Tooltip mode."
168 ;;; Variables that are not customizable.
170 (defvar tooltip-hook nil
171 "Functions to call to display tooltips.
172 Each function is called with one argument EVENT which is a copy of
173 the last mouse movement event that occurred.")
176 (defvar tooltip-timeout-id nil
177 "The id of the timeout started when Emacs becomes idle.")
180 (defvar tooltip-last-mouse-motion-event nil
181 "A copy of the last mouse motion event seen.")
184 (defvar tooltip-hide-time nil
185 "Time when the last tooltip was hidden.")
188 (defvar tooltip-gud-debugger nil
189 "The debugger for which we show tooltips.")
195 (defun tooltip-event-buffer (event)
196 "Return the buffer over which event EVENT occurred.
197 This might return nil if the event did not occur over a buffer."
198 (let ((window (posn-window (event-end event
))))
199 (and window
(window-buffer window
))))
203 ;;; Switching tooltips on/off
205 ;; We don't set track-mouse globally because this is a big redisplay
206 ;; problem in buffers having a pre-command-hook or such installed,
207 ;; which does a set-buffer, like the summary buffer of Gnus. Calling
208 ;; set-buffer prevents redisplay optimizations, so every mouse motion
209 ;; would be accompanied by a full redisplay.
212 (defun tooltip-mode (&optional arg
)
213 "Mode for tooltip display.
214 With ARG, turn tooltip mode on if and only if ARG is positive."
216 (unless (fboundp 'x-show-tip
)
217 (error "Sorry, tooltips are not yet available on this system"))
219 (> (prefix-numeric-value arg
) 0)
221 (hook-fn (if on
'add-hook
'remove-hook
)))
222 (setq tooltip-mode on
)
223 (funcall hook-fn
'change-major-mode-hook
'tooltip-change-major-mode
)
224 (tooltip-activate-mouse-motions-if-enabled)
225 (funcall hook-fn
'pre-command-hook
'tooltip-hide
)
226 (funcall hook-fn
'tooltip-hook
'tooltip-gud-tips
)
227 (funcall hook-fn
'tooltip-hook
'tooltip-help-tips
)
228 (setq show-help-function
(if on
'tooltip-show-help-function nil
))
229 ;; `ignore' is the default binding for mouse movements.
230 (define-key global-map
[mouse-movement
]
231 (if on
'tooltip-mouse-motion
'ignore
))
232 (tooltip-gud-tips-setup)))
234 (defun tooltip-gud-tips-setup ()
235 "Setup debugger mode-hooks for tooltips."
236 (when (and tooltip-mode tooltip-gud-tips-p
)
237 (global-set-key [S-mouse-3
] 'tooltip-gud-toggle-dereference
)
238 (add-hook 'gdb-mode-hook
239 #'(lambda () (setq tooltip-gud-debugger
'gdb
)))
240 (add-hook 'sdb-mode-hook
241 #'(lambda () (setq tooltip-gud-debugger
'sdb
)))
242 (add-hook 'dbx-mode-hook
243 #'(lambda () (setq tooltip-gud-debugger
'dbx
)))
244 (add-hook 'xdb-mode-hook
245 #'(lambda () (setq tooltip-gud-debugger
'xdb
)))
246 (add-hook 'perldb-mode-hook
247 #'(lambda () (setq tooltip-gud-debugger
'perldb
)))))
249 ;;; Timeout for tooltip display
251 (defun tooltip-delay ()
252 "Return the delay in seconds for the next tooltip."
253 (let ((delay tooltip-delay
)
255 (when (and tooltip-hide-time
256 (< (- now tooltip-hide-time
) tooltip-recent-seconds
))
257 (setq delay tooltip-short-delay
))
261 (defun tooltip-cancel-delayed-tip ()
262 "Disable the tooltip timeout."
263 (when tooltip-timeout-id
264 (disable-timeout tooltip-timeout-id
)
265 (setq tooltip-timeout-id nil
)))
268 (defun tooltip-start-delayed-tip ()
269 "Add a one-shot timeout to call function tooltip-timeout."
270 (setq tooltip-timeout-id
271 (add-timeout (tooltip-delay) 'tooltip-timeout nil
)))
274 (defun tooltip-timeout (object)
275 "Function called when timer with id tooltip-timeout-id fires."
276 (run-hook-with-args-until-success 'tooltip-hook
277 tooltip-last-mouse-motion-event
))
281 ;;; Reacting on mouse movements
283 (defun tooltip-change-major-mode ()
284 "Function added to `change-major-mode-hook' when tooltip mode is on."
285 (add-hook 'post-command-hook
'tooltip-activate-mouse-motions-if-enabled
))
288 (defun tooltip-activate-mouse-motions-if-enabled ()
289 "Reconsider for all buffers whether mouse motion events are desired."
290 (remove-hook 'post-command-hook
'tooltip-activate-mouse-motions-if-enabled
)
291 (let ((buffers (buffer-list)))
294 (set-buffer (car buffers
))
295 (if (and tooltip-mode
297 (memq major-mode tooltip-gud-modes
))
298 (tooltip-activate-mouse-motions t
)
299 (tooltip-activate-mouse-motions nil
))
300 (setq buffers
(cdr buffers
))))))
303 (defun tooltip-activate-mouse-motions (activatep)
304 "Activate/deactivate mouse motion events for the current buffer.
305 ACTIVATEP non-nil means activate mouse motion events."
308 (make-local-variable 'track-mouse
)
309 (setq track-mouse t
))
310 (kill-local-variable 'track-mouse
)))
313 (defun tooltip-mouse-motion (event)
314 "Command handler for mouse movement events in `global-map'."
317 (when (car (mouse-pixel-position))
318 (setq tooltip-last-mouse-motion-event
(copy-sequence event
))
319 (tooltip-start-delayed-tip)))
325 (defun tooltip-set-param (alist key value
)
326 "Change the value of KEY in alist ALIST to VALUE.
327 If there's no association for KEY in ALIST, add one, otherwise
328 change the existing association. Value is the resulting alist."
329 (let ((param (assq key alist
)))
332 (push (cons key value
) alist
))
336 (defun tooltip-show (text)
337 "Show a tooltip window displaying TEXT.
339 Text larger than `x-max-tooltip-size' (which see) is clipped.
341 If the alist in `tooltip-frame-parameters' includes `left' and `top'
342 parameters, they determine the x and y position where the tooltip
343 is displayed. Otherwise, the tooltip pops at offsets specified by
344 `tooltip-x-offset' and `tooltip-y-offset' from the current mouse
346 (if tooltip-use-echo-area
348 (condition-case error
349 (let ((params (copy-sequence tooltip-frame-parameters
))
350 (fg (face-attribute 'tooltip
:foreground
))
351 (bg (face-attribute 'tooltip
:background
)))
353 (setq params
(tooltip-set-param params
'foreground-color fg
))
354 (setq params
(tooltip-set-param params
'border-color fg
)))
356 (setq params
(tooltip-set-param params
'background-color bg
)))
357 (x-show-tip (propertize text
'face
'tooltip
)
364 (message "Error while displaying tooltip: %s" error
)
366 (message "%s" text
)))))
369 (defun tooltip-hide (&optional ignored-arg
)
370 "Hide a tooltip, if one is displayed.
371 Value is non-nil if tooltip was open."
372 (tooltip-cancel-delayed-tip)
374 (setq tooltip-hide-time
(float-time))))
378 ;;; Debugger-related functions
380 (defun tooltip-identifier-from-point (point)
381 "Extract the identifier at POINT, if any.
382 Value is nil if no identifier exists at point. Identifier extraction
383 is based on the current syntax table."
386 (let ((start (progn (skip-syntax-backward "w_") (point))))
387 (unless (looking-at "[0-9]")
388 (skip-syntax-forward "w_")
389 (when (> (point) start
)
390 (buffer-substring start
(point)))))))
393 (defmacro tooltip-region-active-p
()
394 "Value is non-nil if the region is currently active."
395 (if (string-match "^GNU" (emacs-version))
396 `(and transient-mark-mode mark-active
)
400 (defun tooltip-expr-to-print (event)
401 "Return an expression that should be printed for EVENT.
402 If a region is active and the mouse is inside the region, print
403 the region. Otherwise, figure out the identifier around the point
406 (set-buffer (tooltip-event-buffer event
))
407 (let ((point (posn-point (event-end event
))))
408 (if (tooltip-region-active-p)
409 (when (and (<= (region-beginning) point
) (<= point
(region-end)))
410 (buffer-substring (region-beginning) (region-end)))
411 (tooltip-identifier-from-point point
)))))
414 (defun tooltip-process-prompt-regexp (process)
415 "Return regexp matching the prompt of PROCESS at the end of a string.
416 The prompt is taken from the value of COMINT-PROMPT-REGEXP in the buffer
418 (let ((prompt-regexp (save-excursion
419 (set-buffer (process-buffer process
))
420 comint-prompt-regexp
)))
421 ;; Most start with `^' but the one for `sdb' cannot be easily
422 ;; stripped. Code the prompt for `sdb' fixed here.
423 (if (= (aref prompt-regexp
0) ?^
)
424 (setq prompt-regexp
(substring prompt-regexp
1))
425 (setq prompt-regexp
"\\*"))
426 (concat "\n*" prompt-regexp
"$")))
429 (defun tooltip-strip-prompt (process output
)
430 "Return OUTPUT with any prompt of PROCESS stripped from its end."
431 (let ((prompt-regexp (tooltip-process-prompt-regexp process
)))
433 (when (string-match prompt-regexp output
)
434 (setq output
(substring output
0 (match-beginning 0)))))
441 (defvar tooltip-gud-original-filter nil
442 "Process filter to restore after GUD output has been received.")
445 (defvar tooltip-gud-dereference nil
446 "Non-nil means print expressions with a `*' in front of them.
447 For C this would dereference a pointer expression.")
450 (defvar tooltip-gud-event nil
451 "The mouse movement event that led to a tooltip display.
452 This event can be examined by forms in TOOLTIP-GUD-DISPLAY.")
455 (defvar tooltip-gud-debugger nil
456 "A symbol describing the debugger running under GUD.")
459 (defun tooltip-gud-toggle-dereference ()
460 "Toggle whether tooltips should show `* expr' or `expr'."
462 (setq tooltip-gud-dereference
(not tooltip-gud-dereference
))
463 (when (interactive-p)
464 (message "Dereferencing is now %s."
465 (if tooltip-gud-dereference
"on" "off"))))
468 (defun tooltip-gud-process-output (process output
)
469 "Process debugger output and show it in a tooltip window."
470 (set-process-filter process tooltip-gud-original-filter
)
471 (tooltip-show (tooltip-strip-prompt process output
)))
474 (defun tooltip-gud-print-command (expr)
475 "Return a suitable command to print the expression EXPR.
476 If TOOLTIP-GUD-DEREFERENCE is t, also prepend a `*' to EXPR."
477 (when tooltip-gud-dereference
478 (setq expr
(concat "*" expr
)))
479 (case tooltip-gud-debugger
480 ((gdb dbx
) (concat "print " expr
))
481 (xdb (concat "p " expr
))
482 (sdb (concat expr
"/"))
486 (defun tooltip-gud-tips (event)
487 "Show tip for identifier or selection under the mouse.
488 The mouse must either point at an identifier or inside a selected
489 region for the tip window to be shown. If tooltip-gud-dereference is t,
490 add a `*' in front of the printed expression.
492 This function must return nil if it doesn't handle EVENT."
493 (let (gud-buffer process
)
494 (when (and (eventp event
)
496 (boundp 'gud-comint-buffer
)
497 (setq gud-buffer gud-comint-buffer
)
498 (setq process
(get-buffer-process gud-buffer
))
499 (posn-point (event-end event
))
500 (progn (setq tooltip-gud-event event
)
501 (eval (cons 'and tooltip-gud-display
))))
502 (let ((expr (tooltip-expr-to-print event
)))
504 (let ((cmd (tooltip-gud-print-command expr
)))
505 (unless (null cmd
) ; CMD can be nil if unknown debugger
506 (setq tooltip-gud-original-filter
(process-filter process
))
507 (set-process-filter process
'tooltip-gud-process-output
)
514 (defvar tooltip-help-message nil
515 "The last help message received via `tooltip-show-help-function'.")
518 (defun tooltip-show-help-function (msg)
519 "Function installed as `show-help-function'.
520 MSG is either a help string to display, or nil to cancel the display."
521 (let ((previous-help tooltip-help-message
))
522 (setq tooltip-help-message msg
)
524 ;; Cancel display. This also cancels a delayed tip, if
527 ((equal previous-help msg
)
528 ;; Same help as before (but possibly the mouse has moved).
529 ;; Keep what we have.
532 ;; A different help. Remove a previous tooltip, and
533 ;; display a new one, with some delay.
535 (tooltip-start-delayed-tip)))))
538 (defun tooltip-help-tips (event)
539 "Hook function to display a help tooltip.
540 This is installed on the hook `tooltip-hook', which is run when
541 the timer with ID `tooltip-timeout-id' fires.
542 Value is non-nil if this function handled the tip."
543 (when (stringp tooltip-help-message
)
544 (tooltip-show tooltip-help-message
)
549 ;;; Do this after all functions have been defined that are called from
550 ;;; `tooltip-mode'. The actual default value of `tooltip-mode' is set
554 (defcustom tooltip-mode nil
555 "Toggle tooltip-mode.
556 Setting this variable directly does not take effect;
557 use either \\[customize] or the function `tooltip-mode'."
558 :set
(lambda (symbol value
)
559 (tooltip-mode (or value
0)))
560 :initialize
'custom-initialize-default
566 ;;; tooltip.el ends here