(calendar-location-name, calendar-latitude)
[emacs.git] / lisp / tooltip.el
blob253ce48e8ec3a1ebe246a327ac2b7bf74e72aebe
1 ;;; tooltip.el --- show tooltip windows
3 ;; Copyright (C) 1997, 1999, 2000, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: Gerd Moellmann <gerd@acm.org>
7 ;; Keywords: help c mouse tools
9 ;; This file is part of GNU Emacs.
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 3, or (at your option)
14 ;; any later version.
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.
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., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
26 ;;; Commentary:
28 ;;; Code:
30 (defvar comint-prompt-regexp)
32 (defgroup tooltip nil
33 "Customization group for the `tooltip' package."
34 :group 'help
35 :group 'gud
36 :group 'mouse
37 :group 'tools
38 :version "21.1"
39 :tag "Tool Tips")
41 ;;; Switching tooltips on/off
43 (define-minor-mode tooltip-mode
44 "Toggle Tooltip mode.
45 With ARG, turn Tooltip mode on if and only if ARG is positive.
46 When this minor mode is enabled, Emacs displays help text
47 in a pop-up window for buttons and menu items that you put the mouse on.
48 \(However, if `tooltip-use-echo-area' is non-nil, this and
49 all pop-up help appears in the echo area.)
51 When Tooltip mode is disabled, Emacs displays one line of
52 the help text in the echo area, and does not make a pop-up window."
53 :global t
54 :init-value (not (or noninteractive
55 emacs-basic-display
56 (not (display-graphic-p))
57 (not (fboundp 'x-show-tip))))
58 :initialize 'custom-initialize-safe-default
59 :group 'tooltip
60 (unless (or (null tooltip-mode) (fboundp 'x-show-tip))
61 (error "Sorry, tooltips are not yet available on this system"))
62 (if tooltip-mode
63 (progn
64 (add-hook 'pre-command-hook 'tooltip-hide)
65 (add-hook 'tooltip-hook 'tooltip-help-tips))
66 (unless (and (boundp 'gud-tooltip-mode) gud-tooltip-mode)
67 (remove-hook 'pre-command-hook 'tooltip-hide))
68 (remove-hook 'tooltip-hook 'tooltip-help-tips))
69 (setq show-help-function
70 (if tooltip-mode 'tooltip-show-help nil)))
73 ;;; Customizable settings
75 (defcustom tooltip-delay 0.7
76 "Seconds to wait before displaying a tooltip the first time."
77 :type 'number
78 :group 'tooltip)
80 (defcustom tooltip-short-delay 0.1
81 "Seconds to wait between subsequent tooltips on different items."
82 :type 'number
83 :group 'tooltip)
85 (defcustom tooltip-recent-seconds 1
86 "Display tooltips if changing tip items within this many seconds.
87 Do so after `tooltip-short-delay'."
88 :type 'number
89 :group 'tooltip)
91 (defcustom tooltip-hide-delay 10
92 "Hide tooltips automatically after this many seconds."
93 :type 'number
94 :group 'tooltip)
96 (defcustom tooltip-x-offset 5
97 "X offset, in pixels, for the display of tooltips.
98 The offset is the distance between the X position of the mouse and
99 the left border of the tooltip window. It must be chosen so that the
100 tooltip window doesn't contain the mouse when it pops up, or it may
101 interfere with clicking where you wish.
103 If `tooltip-frame-parameters' includes the `left' parameter,
104 the value of `tooltip-x-offset' is ignored."
105 :type 'integer
106 :group 'tooltip)
108 (defcustom tooltip-y-offset +20
109 "Y offset, in pixels, for the display of tooltips.
110 The offset is the distance between the Y position of the mouse and
111 the top border of the tooltip window. It must be chosen so that the
112 tooltip window doesn't contain the mouse when it pops up, or it may
113 interfere with clicking where you wish.
115 If `tooltip-frame-parameters' includes the `top' parameter,
116 the value of `tooltip-y-offset' is ignored."
117 :type 'integer
118 :group 'tooltip)
120 (defcustom tooltip-frame-parameters
121 '((name . "tooltip")
122 (internal-border-width . 2)
123 (border-width . 1))
124 "Frame parameters used for tooltips.
126 If `left' or `top' parameters are included, they specify the absolute
127 position to pop up the tooltip."
128 :type 'sexp
129 :group 'tooltip)
131 (defface tooltip
132 '((((class color))
133 :background "lightyellow"
134 :foreground "black"
135 :inherit variable-pitch)
137 :inherit variable-pitch))
138 "Face for tooltips."
139 :group 'tooltip
140 :group 'basic-faces)
142 (defcustom tooltip-use-echo-area nil
143 "Use the echo area instead of tooltip frames for help and GUD tooltips.
144 To display multi-line help text in the echo area, set this to t
145 and enable `tooltip-mode'."
146 :type 'boolean
147 :group 'tooltip)
150 ;;; Variables that are not customizable.
152 (defvar tooltip-hook nil
153 "Functions to call to display tooltips.
154 Each function is called with one argument EVENT which is a copy of
155 the last mouse movement event that occurred.")
157 (defvar tooltip-timeout-id nil
158 "The id of the timeout started when Emacs becomes idle.")
160 (defvar tooltip-last-mouse-motion-event nil
161 "A copy of the last mouse motion event seen.")
163 (defvar tooltip-hide-time nil
164 "Time when the last tooltip was hidden.")
166 (defvar gud-tooltip-mode) ;; Prevent warning.
168 ;;; Event accessors
170 (defun tooltip-event-buffer (event)
171 "Return the buffer over which event EVENT occurred.
172 This might return nil if the event did not occur over a buffer."
173 (let ((window (posn-window (event-end event))))
174 (and window (window-buffer window))))
177 ;;; Timeout for tooltip display
179 (defun tooltip-delay ()
180 "Return the delay in seconds for the next tooltip."
181 (let ((delay tooltip-delay)
182 (now (float-time)))
183 (when (and tooltip-hide-time
184 (< (- now tooltip-hide-time) tooltip-recent-seconds))
185 (setq delay tooltip-short-delay))
186 delay))
188 (defun tooltip-cancel-delayed-tip ()
189 "Disable the tooltip timeout."
190 (when tooltip-timeout-id
191 (disable-timeout tooltip-timeout-id)
192 (setq tooltip-timeout-id nil)))
194 (defun tooltip-start-delayed-tip ()
195 "Add a one-shot timeout to call function `tooltip-timeout'."
196 (setq tooltip-timeout-id
197 (add-timeout (tooltip-delay) 'tooltip-timeout nil)))
199 (defun tooltip-timeout (object)
200 "Function called when timer with id `tooltip-timeout-id' fires."
201 (run-hook-with-args-until-success 'tooltip-hook
202 tooltip-last-mouse-motion-event))
205 ;;; Displaying tips
207 (defun tooltip-set-param (alist key value)
208 "Change the value of KEY in alist ALIST to VALUE.
209 If there's no association for KEY in ALIST, add one, otherwise
210 change the existing association. Value is the resulting alist."
211 (let ((param (assq key alist)))
212 (if (consp param)
213 (setcdr param value)
214 (push (cons key value) alist))
215 alist))
217 (defun tooltip-show (text &optional use-echo-area)
218 "Show a tooltip window displaying TEXT.
220 Text larger than `x-max-tooltip-size' is clipped.
222 If the alist in `tooltip-frame-parameters' includes `left' and `top'
223 parameters, they determine the x and y position where the tooltip
224 is displayed. Otherwise, the tooltip pops at offsets specified by
225 `tooltip-x-offset' and `tooltip-y-offset' from the current mouse
226 position.
228 Optional second arg USE-ECHO-AREA non-nil means to show tooltip
229 in echo area."
230 (if use-echo-area
231 (message "%s" text)
232 (condition-case error
233 (let ((params (copy-sequence tooltip-frame-parameters))
234 (fg (face-attribute 'tooltip :foreground))
235 (bg (face-attribute 'tooltip :background)))
236 (when (stringp fg)
237 (setq params (tooltip-set-param params 'foreground-color fg))
238 (setq params (tooltip-set-param params 'border-color fg)))
239 (when (stringp bg)
240 (setq params (tooltip-set-param params 'background-color bg)))
241 (x-show-tip (propertize text 'face 'tooltip)
242 (selected-frame)
243 params
244 tooltip-hide-delay
245 tooltip-x-offset
246 tooltip-y-offset))
247 (error
248 (message "Error while displaying tooltip: %s" error)
249 (sit-for 1)
250 (message "%s" text)))))
252 (defun tooltip-hide (&optional ignored-arg)
253 "Hide a tooltip, if one is displayed.
254 Value is non-nil if tooltip was open."
255 (tooltip-cancel-delayed-tip)
256 (when (x-hide-tip)
257 (setq tooltip-hide-time (float-time))))
260 ;;; Debugger-related functions
262 (defun tooltip-identifier-from-point (point)
263 "Extract the identifier at POINT, if any.
264 Value is nil if no identifier exists at point. Identifier extraction
265 is based on the current syntax table."
266 (save-excursion
267 (goto-char point)
268 (let ((start (progn (skip-syntax-backward "w_") (point))))
269 (unless (looking-at "[0-9]")
270 (skip-syntax-forward "w_")
271 (when (> (point) start)
272 (buffer-substring start (point)))))))
274 (defmacro tooltip-region-active-p ()
275 "Value is non-nil if the region should override command actions."
276 `(use-region-p))
278 (defun tooltip-expr-to-print (event)
279 "Return an expression that should be printed for EVENT.
280 If a region is active and the mouse is inside the region, print
281 the region. Otherwise, figure out the identifier around the point
282 where 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)))))
291 (defun tooltip-process-prompt-regexp (process)
292 "Return regexp matching the prompt of PROCESS at the end of a string.
293 The prompt is taken from the value of `comint-prompt-regexp' in
294 the buffer of 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 "$")))
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))
314 ;;; Tooltip help.
316 (defvar tooltip-help-message nil
317 "The last help message received via `tooltip-show-help'.")
319 (defun tooltip-show-help (msg)
320 "Function installed as `show-help-function'.
321 MSG is either a help string to display, or nil to cancel the display."
322 (let ((previous-help tooltip-help-message))
323 (setq tooltip-help-message msg)
324 (cond ((null msg)
325 ;; Cancel display. This also cancels a delayed tip, if
326 ;; there is one.
327 (tooltip-hide))
328 ((equal previous-help msg)
329 ;; Same help as before (but possibly the mouse has moved).
330 ;; Keep what we have.
333 ;; A different help. Remove a previous tooltip, and
334 ;; display a new one, with some delay.
335 (tooltip-hide)
336 (tooltip-start-delayed-tip)))))
338 (defun tooltip-help-tips (event)
339 "Hook function to display a help tooltip.
340 This is installed on the hook `tooltip-hook', which is run when
341 the timer with id `tooltip-timeout-id' fires.
342 Value is non-nil if this function handled the tip."
343 (when (stringp tooltip-help-message)
344 (tooltip-show tooltip-help-message tooltip-use-echo-area)
347 (provide 'tooltip)
349 ;; arch-tag: 3d61135e-4618-4a78-af28-183f6df5636f
350 ;;; tooltip.el ends here