(YACC): Remove, not used.
[bpt/emacs.git] / lisp / tooltip.el
CommitLineData
b670783a 1;;; tooltip.el --- show tooltip windows
7840ced1 2
06f76f9f 3;; Copyright (C) 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
7840ced1
GM
4
5;; Author: Gerd Moellmann <gerd@acm.org>
6;; Keywords: help c mouse tools
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
7840ced1
GM
27;;; Code:
28
29(eval-when-compile
30 (require 'cl)
31 (require 'comint)
58e10469
NR
32 (require 'gud)
33 (require 'gdb-ui))
7840ced1 34
7840ced1
GM
35\f
36;;; Customizable settings
37
38(defgroup tooltip nil
39 "Customization group for the `tooltip' package."
40 :group 'help
3e6ed970 41 :group 'gud
7840ced1
GM
42 :group 'mouse
43 :group 'tools
01b23b99 44 :version "21.1"
7840ced1
GM
45 :tag "Tool Tips")
46
01b23b99 47(defvar tooltip-mode)
7840ced1 48
88751b11 49(defcustom tooltip-delay 0.7
7840ced1
GM
50 "Seconds to wait before displaying a tooltip the first time."
51 :tag "Delay"
52 :type 'number
53 :group 'tooltip)
54
7840ced1
GM
55(defcustom tooltip-short-delay 0.1
56 "Seconds to wait between subsequent tooltips on different items."
57 :tag "Short delay"
58 :type 'number
59 :group 'tooltip)
60
7840ced1 61(defcustom tooltip-recent-seconds 1
01b23b99
DL
62 "Display tooltips if changing tip items within this many seconds.
63Do so after `tooltip-short-delay'."
7840ced1
GM
64 :tag "Recent seconds"
65 :type 'number
66 :group 'tooltip)
67
88751b11 68(defcustom tooltip-hide-delay 10
a93c8ba8
GM
69 "Hide tooltips automatically after this many seconds."
70 :tag "Hide delay"
71 :type 'number
72 :group 'tooltip)
73
e4df9b40 74(defcustom tooltip-x-offset nil
37a29d46 75 "X offset, in pixels, for the display of tooltips.
e4df9b40
GM
76The offset is relative to the position of the mouse. It must
77be chosen so that the tooltip window doesn't contain the mouse
7142670a
EZ
78when it pops up. If the value is nil, the default offset is 5
79pixels.
80
81If `tooltip-frame-parameters' includes the `left' parameter,
82the value of `tooltip-x-offset' is ignored."
e4df9b40
GM
83 :tag "X offset"
84 :type '(choice (const :tag "Default" nil)
85 (integer :tag "Offset" :value 1))
86 :group 'tooltip)
87
e4df9b40 88(defcustom tooltip-y-offset nil
37a29d46 89 "Y offset, in pixels, for the display of tooltips.
e4df9b40
GM
90The offset is relative to the position of the mouse. It must
91be chosen so that the tooltip window doesn't contain the mouse
7142670a
EZ
92when it pops up. If the value is nil, the default offset is -10
93pixels.
94
95If `tooltip-frame-parameters' includes the `top' parameter,
96the value of `tooltip-y-offset' is ignored."
e4df9b40
GM
97 :tag "Y offset"
98 :type '(choice (const :tag "Default" nil)
99 (integer :tag "Offset" :value 1))
100 :group 'tooltip)
101
7840ced1
GM
102(defcustom tooltip-frame-parameters
103 '((name . "tooltip")
7840ced1 104 (internal-border-width . 5)
7840ced1 105 (border-width . 1))
7142670a
EZ
106 "Frame parameters used for tooltips.
107
108If `left' or `top' parameters are included, they specify the absolute
109position to pop up the tooltip."
7840ced1
GM
110 :type 'sexp
111 :tag "Frame Parameters"
112 :group 'tooltip)
113
2621f5a9
GM
114(defface tooltip
115 '((((class color))
116 (:background "lightyellow" :foreground "black"))
117 (t ()))
118 "Face for tooltips."
119 :group 'tooltip)
120
7840ced1 121(defcustom tooltip-gud-tips-p nil
321ce330 122 "*Non-nil means show tooltips in GUD sessions."
7840ced1
GM
123 :type 'boolean
124 :tag "GUD"
c39e8983 125 :set #'(lambda (symbol on)
dea87733 126 (setq tooltip-gud-tips-p on))
7840ced1
GM
127 :group 'tooltip)
128
7840ced1
GM
129(defcustom tooltip-gud-modes '(gud-mode c-mode c++-mode)
130 "List of modes for which to enable GUD tips."
131 :type 'sexp
132 :tag "GUD modes"
133 :group 'tooltip)
134
7840ced1
GM
135(defcustom tooltip-gud-display
136 '((eq (tooltip-event-buffer tooltip-gud-event)
137 (marker-buffer overlay-arrow-position)))
138 "List of forms determining where GUD tooltips are displayed.
139
140Forms in the list are combined with AND. The default is to display
141only tooltips in the buffer containing the overlay arrow."
142 :type 'sexp
143 :tag "GUD buffers predicate"
144 :group 'tooltip)
145
72200f89 146(defcustom tooltip-use-echo-area nil
8be44f9d
DL
147 "Use the echo area instead of tooltip frames.
148This is only relevant GUD display, since otherwise it is equivalent to
149turning off Tooltip mode."
72200f89 150 :type 'boolean
e775fcc4 151 :tag "Use echo area"
72200f89
SS
152 :group 'tooltip)
153
7840ced1
GM
154\f
155;;; Variables that are not customizable.
156
157(defvar tooltip-hook nil
158 "Functions to call to display tooltips.
159Each function is called with one argument EVENT which is a copy of
160the last mouse movement event that occurred.")
161
7840ced1
GM
162(defvar tooltip-timeout-id nil
163 "The id of the timeout started when Emacs becomes idle.")
164
7840ced1
GM
165(defvar tooltip-last-mouse-motion-event nil
166 "A copy of the last mouse motion event seen.")
167
7840ced1
GM
168(defvar tooltip-hide-time nil
169 "Time when the last tooltip was hidden.")
170
7840ced1
GM
171\f
172;;; Event accessors
173
174(defun tooltip-event-buffer (event)
175 "Return the buffer over which event EVENT occurred.
176This might return nil if the event did not occur over a buffer."
177 (let ((window (posn-window (event-end event))))
178 (and window (window-buffer window))))
179
7840ced1
GM
180\f
181;;; Switching tooltips on/off
182
183;; We don't set track-mouse globally because this is a big redisplay
184;; problem in buffers having a pre-command-hook or such installed,
185;; which does a set-buffer, like the summary buffer of Gnus. Calling
186;; set-buffer prevents redisplay optimizations, so every mouse motion
187;; would be accompanied by a full redisplay.
188
189;;;###autoload
190(defun tooltip-mode (&optional arg)
191 "Mode for tooltip display.
192With ARG, turn tooltip mode on if and only if ARG is positive."
193 (interactive "P")
c6da4eb4
GM
194 (unless (fboundp 'x-show-tip)
195 (error "Sorry, tooltips are not yet available on this system"))
7840ced1
GM
196 (let* ((on (if arg
197 (> (prefix-numeric-value arg) 0)
198 (not tooltip-mode)))
199 (hook-fn (if on 'add-hook 'remove-hook)))
200 (setq tooltip-mode on)
201 (funcall hook-fn 'change-major-mode-hook 'tooltip-change-major-mode)
202 (tooltip-activate-mouse-motions-if-enabled)
203 (funcall hook-fn 'pre-command-hook 'tooltip-hide)
204 (funcall hook-fn 'tooltip-hook 'tooltip-gud-tips)
205 (funcall hook-fn 'tooltip-hook 'tooltip-help-tips)
206 (setq show-help-function (if on 'tooltip-show-help-function nil))
207 ;; `ignore' is the default binding for mouse movements.
208 (define-key global-map [mouse-movement]
dea87733
NR
209 (if on 'tooltip-mouse-motion 'ignore))))
210
7840ced1
GM
211\f
212;;; Timeout for tooltip display
213
7840ced1
GM
214(defun tooltip-delay ()
215 "Return the delay in seconds for the next tooltip."
216 (let ((delay tooltip-delay)
a1f84f6d 217 (now (float-time)))
7840ced1
GM
218 (when (and tooltip-hide-time
219 (< (- now tooltip-hide-time) tooltip-recent-seconds))
220 (setq delay tooltip-short-delay))
221 delay))
222
06f76f9f 223(defun tooltip-cancel-delayed-tip ()
7840ced1
GM
224 "Disable the tooltip timeout."
225 (when tooltip-timeout-id
226 (disable-timeout tooltip-timeout-id)
227 (setq tooltip-timeout-id nil)))
228
06f76f9f 229(defun tooltip-start-delayed-tip ()
7840ced1
GM
230 "Add a one-shot timeout to call function tooltip-timeout."
231 (setq tooltip-timeout-id
232 (add-timeout (tooltip-delay) 'tooltip-timeout nil)))
233
7840ced1
GM
234(defun tooltip-timeout (object)
235 "Function called when timer with id tooltip-timeout-id fires."
236 (run-hook-with-args-until-success 'tooltip-hook
237 tooltip-last-mouse-motion-event))
238
7840ced1
GM
239\f
240;;; Reacting on mouse movements
241
242(defun tooltip-change-major-mode ()
243 "Function added to `change-major-mode-hook' when tooltip mode is on."
244 (add-hook 'post-command-hook 'tooltip-activate-mouse-motions-if-enabled))
245
7840ced1
GM
246(defun tooltip-activate-mouse-motions-if-enabled ()
247 "Reconsider for all buffers whether mouse motion events are desired."
248 (remove-hook 'post-command-hook 'tooltip-activate-mouse-motions-if-enabled)
249 (let ((buffers (buffer-list)))
250 (save-excursion
251 (while buffers
252 (set-buffer (car buffers))
253 (if (and tooltip-mode
254 tooltip-gud-tips-p
255 (memq major-mode tooltip-gud-modes))
256 (tooltip-activate-mouse-motions t)
257 (tooltip-activate-mouse-motions nil))
258 (setq buffers (cdr buffers))))))
259
ba81b532
RS
260(defvar tooltip-mouse-motions-active nil
261 "Locally t in a buffer if tooltip processing of mouse motion is enabled.")
7840ced1
GM
262
263(defun tooltip-activate-mouse-motions (activatep)
264 "Activate/deactivate mouse motion events for the current buffer.
265ACTIVATEP non-nil means activate mouse motion events."
266 (if activatep
267 (progn
ba81b532
RS
268 (make-local-variable 'tooltip-mouse-motions-active)
269 (setq tooltip-mouse-motions-active t)
7840ced1
GM
270 (make-local-variable 'track-mouse)
271 (setq track-mouse t))
ba81b532
RS
272 (when tooltip-mouse-motions-active
273 (kill-local-variable 'tooltip-mouse-motions-active)
274 (kill-local-variable 'track-mouse))))
7840ced1
GM
275
276(defun tooltip-mouse-motion (event)
277 "Command handler for mouse movement events in `global-map'."
278 (interactive "e")
279 (tooltip-hide)
280 (when (car (mouse-pixel-position))
281 (setq tooltip-last-mouse-motion-event (copy-sequence event))
06f76f9f 282 (tooltip-start-delayed-tip)))
7840ced1 283
7840ced1
GM
284\f
285;;; Displaying tips
286
2621f5a9 287(defun tooltip-set-param (alist key value)
4b2bb9be 288 "Change the value of KEY in alist ALIST to VALUE.
f1180544 289If there's no association for KEY in ALIST, add one, otherwise
2621f5a9
GM
290change the existing association. Value is the resulting alist."
291 (let ((param (assq key alist)))
292 (if (consp param)
293 (setcdr param value)
294 (push (cons key value) alist))
295 alist))
296
7840ced1 297(defun tooltip-show (text)
7142670a
EZ
298 "Show a tooltip window displaying TEXT.
299
300Text larger than `x-max-tooltip-size' (which see) is clipped.
301
302If the alist in `tooltip-frame-parameters' includes `left' and `top'
303parameters, they determine the x and y position where the tooltip
304is displayed. Otherwise, the tooltip pops at offsets specified by
305`tooltip-x-offset' and `tooltip-y-offset' from the current mouse
306position."
72200f89
SS
307 (if tooltip-use-echo-area
308 (message "%s" text)
e5603149 309 (condition-case error
2621f5a9
GM
310 (let ((params (copy-sequence tooltip-frame-parameters))
311 (fg (face-attribute 'tooltip :foreground))
312 (bg (face-attribute 'tooltip :background)))
06f76f9f
GM
313 (when (stringp fg)
314 (setq params (tooltip-set-param params 'foreground-color fg))
315 (setq params (tooltip-set-param params 'border-color fg)))
316 (when (stringp bg)
317 (setq params (tooltip-set-param params 'background-color bg)))
2621f5a9
GM
318 (x-show-tip (propertize text 'face 'tooltip)
319 (selected-frame)
f3b05e99 320 params
a93c8ba8 321 tooltip-hide-delay
2621f5a9
GM
322 tooltip-x-offset
323 tooltip-y-offset))
f1180544 324 (error
e5603149
GM
325 (message "Error while displaying tooltip: %s" error)
326 (sit-for 1)
327 (message "%s" text)))))
328
7840ced1
GM
329(defun tooltip-hide (&optional ignored-arg)
330 "Hide a tooltip, if one is displayed.
331Value is non-nil if tooltip was open."
06f76f9f 332 (tooltip-cancel-delayed-tip)
7840ced1 333 (when (x-hide-tip)
a1f84f6d 334 (setq tooltip-hide-time (float-time))))
7840ced1 335
7840ced1
GM
336\f
337;;; Debugger-related functions
338
339(defun tooltip-identifier-from-point (point)
340 "Extract the identifier at POINT, if any.
341Value is nil if no identifier exists at point. Identifier extraction
342is based on the current syntax table."
343 (save-excursion
344 (goto-char point)
345 (let ((start (progn (skip-syntax-backward "w_") (point))))
346 (unless (looking-at "[0-9]")
347 (skip-syntax-forward "w_")
348 (when (> (point) start)
349 (buffer-substring start (point)))))))
350
7840ced1
GM
351(defmacro tooltip-region-active-p ()
352 "Value is non-nil if the region is currently active."
353 (if (string-match "^GNU" (emacs-version))
354 `(and transient-mark-mode mark-active)
355 `(region-active-p)))
356
7840ced1
GM
357(defun tooltip-expr-to-print (event)
358 "Return an expression that should be printed for EVENT.
359If a region is active and the mouse is inside the region, print
360the region. Otherwise, figure out the identifier around the point
361where the mouse is."
362 (save-excursion
363 (set-buffer (tooltip-event-buffer event))
364 (let ((point (posn-point (event-end event))))
365 (if (tooltip-region-active-p)
366 (when (and (<= (region-beginning) point) (<= point (region-end)))
367 (buffer-substring (region-beginning) (region-end)))
368 (tooltip-identifier-from-point point)))))
369
7840ced1
GM
370(defun tooltip-process-prompt-regexp (process)
371 "Return regexp matching the prompt of PROCESS at the end of a string.
372The prompt is taken from the value of COMINT-PROMPT-REGEXP in the buffer
373of PROCESS."
374 (let ((prompt-regexp (save-excursion
375 (set-buffer (process-buffer process))
376 comint-prompt-regexp)))
377 ;; Most start with `^' but the one for `sdb' cannot be easily
378 ;; stripped. Code the prompt for `sdb' fixed here.
379 (if (= (aref prompt-regexp 0) ?^)
380 (setq prompt-regexp (substring prompt-regexp 1))
381 (setq prompt-regexp "\\*"))
382 (concat "\n*" prompt-regexp "$")))
383
7840ced1
GM
384(defun tooltip-strip-prompt (process output)
385 "Return OUTPUT with any prompt of PROCESS stripped from its end."
386 (let ((prompt-regexp (tooltip-process-prompt-regexp process)))
387 (save-match-data
388 (when (string-match prompt-regexp output)
389 (setq output (substring output 0 (match-beginning 0)))))
390 output))
391
7840ced1
GM
392\f
393;;; Tips for `gud'
394
395(defvar tooltip-gud-original-filter nil
396 "Process filter to restore after GUD output has been received.")
397
7840ced1
GM
398(defvar tooltip-gud-dereference nil
399 "Non-nil means print expressions with a `*' in front of them.
400For C this would dereference a pointer expression.")
401
7840ced1
GM
402(defvar tooltip-gud-event nil
403 "The mouse movement event that led to a tooltip display.
404This event can be examined by forms in TOOLTIP-GUD-DISPLAY.")
405
7840ced1 406(defun tooltip-gud-toggle-dereference ()
024e5da6 407 "Toggle whether tooltips should show `* expr' or `expr'."
7840ced1
GM
408 (interactive)
409 (setq tooltip-gud-dereference (not tooltip-gud-dereference))
410 (when (interactive-p)
411 (message "Dereferencing is now %s."
412 (if tooltip-gud-dereference "on" "off"))))
413
f1180544 414; This will only display data that comes in one chunk.
5ce0fb91 415; Larger arrays (say 400 elements) are displayed in
58e10469 416; the tootip incompletely and spill over into the gud buffer.
5ce0fb91 417; Switching the process-filter creates timing problems and
58e10469
NR
418; it may be difficult to do better. gdba in gdb-ui.el
419; gets round this problem.
7840ced1
GM
420(defun tooltip-gud-process-output (process output)
421 "Process debugger output and show it in a tooltip window."
422 (set-process-filter process tooltip-gud-original-filter)
58e10469 423 (tooltip-show (tooltip-strip-prompt process output)))
7840ced1
GM
424
425(defun tooltip-gud-print-command (expr)
426 "Return a suitable command to print the expression EXPR.
427If TOOLTIP-GUD-DEREFERENCE is t, also prepend a `*' to EXPR."
428 (when tooltip-gud-dereference
429 (setq expr (concat "*" expr)))
dea87733
NR
430 (case gud-minor-mode
431 ((gdb gdba) (concat "server print " expr))
9e06a930 432 (dbx (concat "print " expr))
7840ced1
GM
433 (xdb (concat "p " expr))
434 (sdb (concat expr "/"))
435 (perldb expr)))
a1f84f6d 436
7840ced1 437(defun tooltip-gud-tips (event)
01b23b99
DL
438 "Show tip for identifier or selection under the mouse.
439The mouse must either point at an identifier or inside a selected
440region for the tip window to be shown. If tooltip-gud-dereference is t,
441add a `*' in front of the printed expression.
7840ced1
GM
442
443This function must return nil if it doesn't handle EVENT."
444 (let (gud-buffer process)
445 (when (and (eventp event)
446 tooltip-gud-tips-p
447 (boundp 'gud-comint-buffer)
448 (setq gud-buffer gud-comint-buffer)
449 (setq process (get-buffer-process gud-buffer))
450 (posn-point (event-end event))
451 (progn (setq tooltip-gud-event event)
452 (eval (cons 'and tooltip-gud-display))))
453 (let ((expr (tooltip-expr-to-print event)))
454 (when expr
c39e8983
MB
455 (let ((cmd (tooltip-gud-print-command expr)))
456 (unless (null cmd) ; CMD can be nil if unknown debugger
58e10469 457 (case gud-minor-mode
f1180544 458 (gdba (gdb-enqueue-input
58e10469 459 (list (concat cmd "\n") 'gdb-tooltip-print)))
f1180544 460 (t
58e10469
NR
461 (setq tooltip-gud-original-filter (process-filter process))
462 (set-process-filter process 'tooltip-gud-process-output)
463 (gud-basic-call cmd)))
464 expr)))))))
465
466(defun gdb-tooltip-print ()
f1180544 467 (tooltip-show
58e10469
NR
468 (with-current-buffer (gdb-get-buffer 'gdb-partial-output-buffer)
469 (buffer-string))))
7840ced1
GM
470
471\f
472;;; Tooltip help.
473
474(defvar tooltip-help-message nil
475 "The last help message received via `tooltip-show-help-function'.")
476
7840ced1
GM
477(defun tooltip-show-help-function (msg)
478 "Function installed as `show-help-function'.
479MSG is either a help string to display, or nil to cancel the display."
480 (let ((previous-help tooltip-help-message))
481 (setq tooltip-help-message msg)
482 (cond ((null msg)
06f76f9f
GM
483 ;; Cancel display. This also cancels a delayed tip, if
484 ;; there is one.
7840ced1 485 (tooltip-hide))
06f76f9f
GM
486 ((equal previous-help msg)
487 ;; Same help as before (but possibly the mouse has moved).
488 ;; Keep what we have.
489 )
7840ced1 490 (t
f1180544 491 ;; A different help. Remove a previous tooltip, and
06f76f9f
GM
492 ;; display a new one, with some delay.
493 (tooltip-hide)
494 (tooltip-start-delayed-tip)))))
7840ced1 495
7840ced1
GM
496(defun tooltip-help-tips (event)
497 "Hook function to display a help tooltip.
06f76f9f 498This is installed on the hook `tooltip-hook', which is run when
110c171f 499the timer with ID `tooltip-timeout-id' fires.
7840ced1
GM
500Value is non-nil if this function handled the tip."
501 (when (stringp tooltip-help-message)
502 (tooltip-show tooltip-help-message)
7840ced1
GM
503 t))
504
7840ced1 505\f
90e69ae5
GM
506;;; Do this after all functions have been defined that are called from
507;;; `tooltip-mode'. The actual default value of `tooltip-mode' is set
508;;; in startup.el.
01b23b99
DL
509
510;;;###autoload
511(defcustom tooltip-mode nil
512 "Toggle tooltip-mode.
513Setting this variable directly does not take effect;
514use either \\[customize] or the function `tooltip-mode'."
515 :set (lambda (symbol value)
516 (tooltip-mode (or value 0)))
517 :initialize 'custom-initialize-default
7840ced1 518 :type 'boolean
7840ced1
GM
519 :require 'tooltip
520 :group 'tooltip)
521
5ce0fb91 522(provide 'tooltip)
7840ced1
GM
523
524;;; tooltip.el ends here