Update years in copyright notice; nfc.
[bpt/emacs.git] / lisp / tooltip.el
CommitLineData
b670783a 1;;; tooltip.el --- show tooltip windows
7840ced1 2
8bc973e9 3;; Copyright (C) 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005
f2a1c81b 4;; Free Software Foundation, Inc.
7840ced1
GM
5
6;; Author: Gerd Moellmann <gerd@acm.org>
7;; Keywords: help c mouse tools
8
9;; This file is part of GNU Emacs.
10
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.
15
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.
20
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
7840ced1
GM
28;;; Code:
29
7840ced1
GM
30;;; Customizable settings
31
32(defgroup tooltip nil
33 "Customization group for the `tooltip' package."
34 :group 'help
3e6ed970 35 :group 'gud
7840ced1
GM
36 :group 'mouse
37 :group 'tools
01b23b99 38 :version "21.1"
7840ced1
GM
39 :tag "Tool Tips")
40
88751b11 41(defcustom tooltip-delay 0.7
7840ced1
GM
42 "Seconds to wait before displaying a tooltip the first time."
43 :tag "Delay"
44 :type 'number
45 :group 'tooltip)
46
7840ced1
GM
47(defcustom tooltip-short-delay 0.1
48 "Seconds to wait between subsequent tooltips on different items."
49 :tag "Short delay"
50 :type 'number
51 :group 'tooltip)
52
7840ced1 53(defcustom tooltip-recent-seconds 1
01b23b99
DL
54 "Display tooltips if changing tip items within this many seconds.
55Do so after `tooltip-short-delay'."
7840ced1
GM
56 :tag "Recent seconds"
57 :type 'number
58 :group 'tooltip)
59
88751b11 60(defcustom tooltip-hide-delay 10
a93c8ba8
GM
61 "Hide tooltips automatically after this many seconds."
62 :tag "Hide delay"
63 :type 'number
64 :group 'tooltip)
65
e4df9b40 66(defcustom tooltip-x-offset nil
37a29d46 67 "X offset, in pixels, for the display of tooltips.
e4df9b40
GM
68The offset is relative to the position of the mouse. It must
69be chosen so that the tooltip window doesn't contain the mouse
7142670a
EZ
70when it pops up. If the value is nil, the default offset is 5
71pixels.
72
73If `tooltip-frame-parameters' includes the `left' parameter,
74the value of `tooltip-x-offset' is ignored."
e4df9b40
GM
75 :tag "X offset"
76 :type '(choice (const :tag "Default" nil)
77 (integer :tag "Offset" :value 1))
78 :group 'tooltip)
79
e4df9b40 80(defcustom tooltip-y-offset nil
37a29d46 81 "Y offset, in pixels, for the display of tooltips.
e4df9b40
GM
82The offset is relative to the position of the mouse. It must
83be chosen so that the tooltip window doesn't contain the mouse
7142670a
EZ
84when it pops up. If the value is nil, the default offset is -10
85pixels.
86
87If `tooltip-frame-parameters' includes the `top' parameter,
88the value of `tooltip-y-offset' is ignored."
e4df9b40
GM
89 :tag "Y offset"
90 :type '(choice (const :tag "Default" nil)
91 (integer :tag "Offset" :value 1))
92 :group 'tooltip)
93
7840ced1
GM
94(defcustom tooltip-frame-parameters
95 '((name . "tooltip")
7840ced1 96 (internal-border-width . 5)
7840ced1 97 (border-width . 1))
7142670a
EZ
98 "Frame parameters used for tooltips.
99
100If `left' or `top' parameters are included, they specify the absolute
101position to pop up the tooltip."
7840ced1
GM
102 :type 'sexp
103 :tag "Frame Parameters"
104 :group 'tooltip)
105
2621f5a9
GM
106(defface tooltip
107 '((((class color))
39440204
JPW
108 :background "lightyellow"
109 :foreground "black"
110 :inherit variable-pitch)
111 (t
112 :inherit variable-pitch))
2621f5a9
GM
113 "Face for tooltips."
114 :group 'tooltip)
115
7840ced1
GM
116\f
117;;; Variables that are not customizable.
118
119(defvar tooltip-hook nil
120 "Functions to call to display tooltips.
121Each function is called with one argument EVENT which is a copy of
122the last mouse movement event that occurred.")
123
7840ced1
GM
124(defvar tooltip-timeout-id nil
125 "The id of the timeout started when Emacs becomes idle.")
126
7840ced1
GM
127(defvar tooltip-last-mouse-motion-event nil
128 "A copy of the last mouse motion event seen.")
129
7840ced1
GM
130(defvar tooltip-hide-time nil
131 "Time when the last tooltip was hidden.")
132
7840ced1
GM
133;;; Event accessors
134
135(defun tooltip-event-buffer (event)
136 "Return the buffer over which event EVENT occurred.
137This might return nil if the event did not occur over a buffer."
138 (let ((window (posn-window (event-end event))))
139 (and window (window-buffer window))))
140
7840ced1
GM
141;;; Switching tooltips on/off
142
143;; We don't set track-mouse globally because this is a big redisplay
144;; problem in buffers having a pre-command-hook or such installed,
145;; which does a set-buffer, like the summary buffer of Gnus. Calling
146;; set-buffer prevents redisplay optimizations, so every mouse motion
147;; would be accompanied by a full redisplay.
148
149;;;###autoload
8bc973e9
NR
150(define-minor-mode tooltip-mode
151 "Toggle Tooltip display.
7840ced1 152With ARG, turn tooltip mode on if and only if ARG is positive."
8bc973e9 153 :global t
d5e2843d
LT
154 ;; If you change the :init-value below, you also need to change the
155 ;; corresponding code in startup.el.
156 :init-value (not (or noninteractive
8b8f03c8
YM
157 (and (boundp 'emacs-quick-startup) emacs-quick-startup)
158 (not (and (fboundp 'display-graphic-p)
159 (display-graphic-p)))
d5e2843d 160 (not (fboundp 'x-show-tip))))
8bc973e9 161 :group 'tooltip
ef75a647 162 (unless (or (null tooltip-mode) (fboundp 'x-show-tip))
c6da4eb4 163 (error "Sorry, tooltips are not yet available on this system"))
a93d8344
NR
164 (if tooltip-mode
165 (progn
166 (add-hook 'pre-command-hook 'tooltip-hide)
167 (add-hook 'tooltip-hook 'tooltip-help-tips))
168 (unless (and (boundp 'gud-tooltip-mode) gud-tooltip-mode)
169 (remove-hook 'pre-command-hook 'tooltip-hide))
170 (remove-hook 'tooltip-hook 'tooltip-help-tips))
171 (setq show-help-function
172 (if tooltip-mode 'tooltip-show-help-function nil)))
dea87733 173
7840ced1
GM
174\f
175;;; Timeout for tooltip display
176
7840ced1
GM
177(defun tooltip-delay ()
178 "Return the delay in seconds for the next tooltip."
179 (let ((delay tooltip-delay)
a1f84f6d 180 (now (float-time)))
7840ced1
GM
181 (when (and tooltip-hide-time
182 (< (- now tooltip-hide-time) tooltip-recent-seconds))
183 (setq delay tooltip-short-delay))
184 delay))
185
06f76f9f 186(defun tooltip-cancel-delayed-tip ()
7840ced1
GM
187 "Disable the tooltip timeout."
188 (when tooltip-timeout-id
189 (disable-timeout tooltip-timeout-id)
190 (setq tooltip-timeout-id nil)))
191
06f76f9f 192(defun tooltip-start-delayed-tip ()
7840ced1
GM
193 "Add a one-shot timeout to call function tooltip-timeout."
194 (setq tooltip-timeout-id
195 (add-timeout (tooltip-delay) 'tooltip-timeout nil)))
196
7840ced1
GM
197(defun tooltip-timeout (object)
198 "Function called when timer with id tooltip-timeout-id fires."
199 (run-hook-with-args-until-success 'tooltip-hook
200 tooltip-last-mouse-motion-event))
201
7840ced1 202\f
7840ced1
GM
203;;; Displaying tips
204
2621f5a9 205(defun tooltip-set-param (alist key value)
4b2bb9be 206 "Change the value of KEY in alist ALIST to VALUE.
f1180544 207If there's no association for KEY in ALIST, add one, otherwise
2621f5a9
GM
208change the existing association. Value is the resulting alist."
209 (let ((param (assq key alist)))
210 (if (consp param)
211 (setcdr param value)
212 (push (cons key value) alist))
213 alist))
214
cae07240 215(defun tooltip-show (text &optional use-echo-area)
7142670a
EZ
216 "Show a tooltip window displaying TEXT.
217
1d6197fb 218Text larger than `x-max-tooltip-size' is clipped.
7142670a
EZ
219
220If the alist in `tooltip-frame-parameters' includes `left' and `top'
221parameters, they determine the x and y position where the tooltip
222is displayed. Otherwise, the tooltip pops at offsets specified by
223`tooltip-x-offset' and `tooltip-y-offset' from the current mouse
1d6197fb
NR
224position.
225
cae07240
KS
226Optional second arg USE-ECHO-AREA non-nil means to show tooltip
227in echo area."
228 (if use-echo-area
72200f89 229 (message "%s" text)
e5603149 230 (condition-case error
2621f5a9
GM
231 (let ((params (copy-sequence tooltip-frame-parameters))
232 (fg (face-attribute 'tooltip :foreground))
233 (bg (face-attribute 'tooltip :background)))
06f76f9f
GM
234 (when (stringp fg)
235 (setq params (tooltip-set-param params 'foreground-color fg))
236 (setq params (tooltip-set-param params 'border-color fg)))
237 (when (stringp bg)
238 (setq params (tooltip-set-param params 'background-color bg)))
2621f5a9
GM
239 (x-show-tip (propertize text 'face 'tooltip)
240 (selected-frame)
f3b05e99 241 params
a93c8ba8 242 tooltip-hide-delay
2621f5a9
GM
243 tooltip-x-offset
244 tooltip-y-offset))
f1180544 245 (error
e5603149
GM
246 (message "Error while displaying tooltip: %s" error)
247 (sit-for 1)
248 (message "%s" text)))))
249
7840ced1
GM
250(defun tooltip-hide (&optional ignored-arg)
251 "Hide a tooltip, if one is displayed.
252Value is non-nil if tooltip was open."
06f76f9f 253 (tooltip-cancel-delayed-tip)
7840ced1 254 (when (x-hide-tip)
a1f84f6d 255 (setq tooltip-hide-time (float-time))))
7840ced1 256
7840ced1
GM
257\f
258;;; Debugger-related functions
259
260(defun tooltip-identifier-from-point (point)
261 "Extract the identifier at POINT, if any.
262Value is nil if no identifier exists at point. Identifier extraction
263is based on the current syntax table."
264 (save-excursion
265 (goto-char point)
266 (let ((start (progn (skip-syntax-backward "w_") (point))))
267 (unless (looking-at "[0-9]")
268 (skip-syntax-forward "w_")
269 (when (> (point) start)
270 (buffer-substring start (point)))))))
271
7840ced1
GM
272(defmacro tooltip-region-active-p ()
273 "Value is non-nil if the region is currently active."
274 (if (string-match "^GNU" (emacs-version))
275 `(and transient-mark-mode mark-active)
276 `(region-active-p)))
277
7840ced1
GM
278(defun tooltip-expr-to-print (event)
279 "Return an expression that should be printed for EVENT.
280If a region is active and the mouse is inside the region, print
281the region. Otherwise, figure out the identifier around the point
282where the mouse is."
283 (save-excursion
284 (set-buffer (tooltip-event-buffer event))
285 (let ((point (posn-point (event-end event))))
286 (if (tooltip-region-active-p)
287 (when (and (<= (region-beginning) point) (<= point (region-end)))
288 (buffer-substring (region-beginning) (region-end)))
289 (tooltip-identifier-from-point point)))))
290
7840ced1
GM
291(defun tooltip-process-prompt-regexp (process)
292 "Return regexp matching the prompt of PROCESS at the end of a string.
293The prompt is taken from the value of COMINT-PROMPT-REGEXP in the buffer
294of PROCESS."
295 (let ((prompt-regexp (save-excursion
296 (set-buffer (process-buffer process))
297 comint-prompt-regexp)))
298 ;; Most start with `^' but the one for `sdb' cannot be easily
299 ;; stripped. Code the prompt for `sdb' fixed here.
300 (if (= (aref prompt-regexp 0) ?^)
301 (setq prompt-regexp (substring prompt-regexp 1))
302 (setq prompt-regexp "\\*"))
303 (concat "\n*" prompt-regexp "$")))
304
7840ced1
GM
305(defun tooltip-strip-prompt (process output)
306 "Return OUTPUT with any prompt of PROCESS stripped from its end."
307 (let ((prompt-regexp (tooltip-process-prompt-regexp process)))
308 (save-match-data
309 (when (string-match prompt-regexp output)
310 (setq output (substring output 0 (match-beginning 0)))))
311 output))
312
7840ced1 313\f
7840ced1
GM
314;;; Tooltip help.
315
316(defvar tooltip-help-message nil
317 "The last help message received via `tooltip-show-help-function'.")
318
7840ced1
GM
319(defun tooltip-show-help-function (msg)
320 "Function installed as `show-help-function'.
321MSG is either a help string to display, or nil to cancel the display."
86f0d417 322 (let ((previous-help tooltip-help-message))
7840ced1
GM
323 (setq tooltip-help-message msg)
324 (cond ((null msg)
06f76f9f
GM
325 ;; Cancel display. This also cancels a delayed tip, if
326 ;; there is one.
7840ced1 327 (tooltip-hide))
06f76f9f
GM
328 ((equal previous-help msg)
329 ;; Same help as before (but possibly the mouse has moved).
330 ;; Keep what we have.
331 )
7840ced1 332 (t
f1180544 333 ;; A different help. Remove a previous tooltip, and
06f76f9f
GM
334 ;; display a new one, with some delay.
335 (tooltip-hide)
336 (tooltip-start-delayed-tip)))))
7840ced1 337
7840ced1
GM
338(defun tooltip-help-tips (event)
339 "Hook function to display a help tooltip.
06f76f9f 340This is installed on the hook `tooltip-hook', which is run when
110c171f 341the timer with ID `tooltip-timeout-id' fires.
7840ced1
GM
342Value is non-nil if this function handled the tip."
343 (when (stringp tooltip-help-message)
cae07240 344 (tooltip-show tooltip-help-message)
7840ced1
GM
345 t))
346
5ce0fb91 347(provide 'tooltip)
7840ced1 348
18385083 349;; arch-tag: 3d61135e-4618-4a78-af28-183f6df5636f
7840ced1 350;;; tooltip.el ends here