2020-10-11 17:35:37 +00:00
|
|
|
|
;;; tooltip.el --- show tooltip windows -*- lexical-binding:t -*-
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2023-01-01 10:31:12 +00:00
|
|
|
|
;; Copyright (C) 1997, 1999-2023 Free Software Foundation, Inc.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;; Author: Gerd Moellmann <gerd@acm.org>
|
|
|
|
|
;; Keywords: help c mouse tools
|
2010-08-29 16:17:13 +00:00
|
|
|
|
;; Package: emacs
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1999-07-21 21:43:52 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2012-08-14 18:48:39 +00:00
|
|
|
|
(require 'syntax)
|
|
|
|
|
|
2005-08-31 13:52:28 +00:00
|
|
|
|
(defvar comint-prompt-regexp)
|
|
|
|
|
|
2005-12-20 21:42:19 +00:00
|
|
|
|
(defgroup tooltip nil
|
|
|
|
|
"Customization group for the `tooltip' package."
|
|
|
|
|
:group 'help
|
|
|
|
|
:group 'gud
|
|
|
|
|
:group 'mouse
|
|
|
|
|
:group 'tools
|
|
|
|
|
:version "21.1"
|
|
|
|
|
:tag "Tool Tips")
|
|
|
|
|
|
2005-12-10 21:28:59 +00:00
|
|
|
|
;;; Switching tooltips on/off
|
|
|
|
|
|
|
|
|
|
(define-minor-mode tooltip-mode
|
2012-01-28 05:02:02 +00:00
|
|
|
|
"Toggle Tooltip mode.
|
|
|
|
|
|
|
|
|
|
When this global minor mode is enabled, Emacs displays help
|
|
|
|
|
text (e.g. for buttons and menu items that you put the mouse on)
|
|
|
|
|
in a pop-up window.
|
|
|
|
|
|
|
|
|
|
When Tooltip mode is disabled, Emacs displays help text in the
|
|
|
|
|
echo area, instead of making a pop-up window."
|
2005-12-10 21:28:59 +00:00
|
|
|
|
:global t
|
2008-09-06 21:29:40 +00:00
|
|
|
|
;; Even if we start on a text-only terminal, make this non-nil by
|
|
|
|
|
;; default because we can open a graphical frame later (multi-tty).
|
|
|
|
|
:init-value t
|
2009-09-13 00:52:55 +00:00
|
|
|
|
:initialize 'custom-initialize-delay
|
2005-12-10 21:28:59 +00:00
|
|
|
|
:group 'tooltip
|
2013-10-08 15:11:29 +00:00
|
|
|
|
(if (and tooltip-mode (fboundp 'x-show-tip))
|
2005-12-10 21:28:59 +00:00
|
|
|
|
(progn
|
|
|
|
|
(add-hook 'pre-command-hook 'tooltip-hide)
|
2022-01-29 10:53:28 +00:00
|
|
|
|
(add-hook 'tooltip-functions 'tooltip-help-tips)
|
|
|
|
|
(add-hook 'x-pre-popup-menu-hook 'tooltip-hide))
|
2005-12-10 21:28:59 +00:00
|
|
|
|
(unless (and (boundp 'gud-tooltip-mode) gud-tooltip-mode)
|
2022-01-29 10:53:28 +00:00
|
|
|
|
(remove-hook 'pre-command-hook 'tooltip-hide)
|
|
|
|
|
(remove-hook 'x-pre-popup-menu-hook 'tooltip-hide))
|
2008-10-29 12:10:20 +00:00
|
|
|
|
(remove-hook 'tooltip-functions 'tooltip-help-tips))
|
2005-12-10 21:28:59 +00:00
|
|
|
|
(setq show-help-function
|
2008-04-09 09:34:16 +00:00
|
|
|
|
(if tooltip-mode 'tooltip-show-help 'tooltip-show-help-non-mode)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2005-12-20 21:42:19 +00:00
|
|
|
|
|
|
|
|
|
;;; Customizable settings
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2001-11-03 16:59:11 +00:00
|
|
|
|
(defcustom tooltip-delay 0.7
|
1999-07-21 21:43:52 +00:00
|
|
|
|
"Seconds to wait before displaying a tooltip the first time."
|
2020-10-11 17:36:41 +00:00
|
|
|
|
:type 'number)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
(defcustom tooltip-short-delay 0.1
|
|
|
|
|
"Seconds to wait between subsequent tooltips on different items."
|
2020-10-11 17:36:41 +00:00
|
|
|
|
:type 'number)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
(defcustom tooltip-recent-seconds 1
|
1999-08-19 18:35:29 +00:00
|
|
|
|
"Display tooltips if changing tip items within this many seconds.
|
|
|
|
|
Do so after `tooltip-short-delay'."
|
2020-10-11 17:36:41 +00:00
|
|
|
|
:type 'number)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2001-11-03 16:59:11 +00:00
|
|
|
|
(defcustom tooltip-hide-delay 10
|
2001-01-18 14:38:45 +00:00
|
|
|
|
"Hide tooltips automatically after this many seconds."
|
2020-10-11 17:36:41 +00:00
|
|
|
|
:type 'number)
|
2001-01-18 14:38:45 +00:00
|
|
|
|
|
2005-10-23 18:31:25 +00:00
|
|
|
|
(defcustom tooltip-x-offset 5
|
2002-06-26 08:52:31 +00:00
|
|
|
|
"X offset, in pixels, for the display of tooltips.
|
2005-12-20 21:42:19 +00:00
|
|
|
|
The offset is the distance between the X position of the mouse and
|
|
|
|
|
the left border of the tooltip window. It must be chosen so that the
|
|
|
|
|
tooltip window doesn't contain the mouse when it pops up, or it may
|
|
|
|
|
interfere with clicking where you wish.
|
2001-10-22 08:54:13 +00:00
|
|
|
|
|
|
|
|
|
If `tooltip-frame-parameters' includes the `left' parameter,
|
|
|
|
|
the value of `tooltip-x-offset' is ignored."
|
2020-10-11 17:36:41 +00:00
|
|
|
|
:type 'integer)
|
2000-11-18 12:56:26 +00:00
|
|
|
|
|
2005-12-12 09:36:22 +00:00
|
|
|
|
(defcustom tooltip-y-offset +20
|
2002-06-26 08:52:31 +00:00
|
|
|
|
"Y offset, in pixels, for the display of tooltips.
|
2005-12-20 21:42:19 +00:00
|
|
|
|
The offset is the distance between the Y position of the mouse and
|
|
|
|
|
the top border of the tooltip window. It must be chosen so that the
|
|
|
|
|
tooltip window doesn't contain the mouse when it pops up, or it may
|
|
|
|
|
interfere with clicking where you wish.
|
2001-10-22 08:54:13 +00:00
|
|
|
|
|
|
|
|
|
If `tooltip-frame-parameters' includes the `top' parameter,
|
|
|
|
|
the value of `tooltip-y-offset' is ignored."
|
2020-10-11 17:36:41 +00:00
|
|
|
|
:type 'integer)
|
2000-11-18 12:56:26 +00:00
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(defcustom tooltip-frame-parameters
|
2009-11-12 12:37:47 +00:00
|
|
|
|
'((name . "tooltip")
|
2005-10-23 18:31:25 +00:00
|
|
|
|
(internal-border-width . 2)
|
Provide additional support for child frames
Provide mouse dragging and resizing of frames. Allow resizing
frames proportionally. Provide additional functionality for
child frames. Minor bug fixes.
* lisp/frame.el (frame-border-width, frame-pixel-width)
(frame-pixel-height): Alias to `frame-internal-border-width',
`frame-native-width' and `frame-native-height'.
(frame-inner-width, frame-inner-height, frame-outer-width)
(frame-outer-height): New functions.
* lisp/minibuffer.el (completion-auto-help): Fix typo.
* lisp/mouse.el (mouse-drag-line, mouse-drag-mode-line)
(mouse-drag-header-line): Allow moving a frame by dragging the
mode line of its bottommost window (on a minibuffer-less frame)
or the header line of its topmost window.
(mouse-drag-vertical-line): Mention argument in doc-string.
(mouse-resize-frame, mouse-drag-frame, mouse-drag-left-edge)
(mouse-drag-top-left-corner, mouse-drag-top-edge)
(mouse-drag-top-right-corner, mouse-drag-right-edge)
(mouse-drag-bottom-right-corner, mouse-drag-bottom-edge)
(mouse-drag-bottom-left-corner): New functions for resizing a
frame by dragging its internal border together with
corresponding key bindings.
* lisp/tooltip.el (tooltip-frame-parameters): Add
'no-special-glyphs' to default parameters and update version
tag.
* lisp/window.el (frame-auto-hide-function): Add choice to make
frame invisible and update version tag.
(window--delete): Handle 'auto-hide-function' frame parameter.
(window--maybe-raise-frame): Respect 'no-focus-on-map' and
'no-accept-focus' frame parameters.
(display-buffer--action-function-custom-type): Add
`display-buffer-in-child-frame'.
(display-buffer): Mention `display-buffer-in-child-frame' in
doc-string.
(display-buffer-in-child-frame): New action function for
`display-buffer'.
(window--sanitize-margin): Return zero when MARGIN cannot be
sanitized.
(fit-frame-to-buffer): Major rewrite to handle child frames and
'fit-frame-to-buffer-sizes' and 'fit-frame-to-buffer-margins'
frame parameters.
(window-largest-empty-rectangle--maximums-1)
(window-largest-empty-rectangle--maximums)
(window-largest-empty-rectangle--disjoint-maximums)
(window-largest-empty-rectangle): New functions.
* src/dispextern.h (WINDOW_WANTS_MODELINE_P)
(WINDOW_WANTS_HEADER_LINE_P): Remove. Functionality is now
provided by corresponding functions window_wants_modeline and
window_wants_header_line in window.c. Adjust users.
* src/dispnew.c (adjust_glyph_matrix)
(buffer_posn_from_coords): Use window_wants_modeline and
window_wants_header_line instead of WINDOW_WANTS_MODELINE_P and
WINDOW_WANTS_HEADER_LINE_P.
* src/frame.c (keep_ratio): New function.
(adjust_frame_size): Call keep_ratio for each of F's child
frames.
(make_frame): Initialize no_special_glyphs slot.
(frame_internal_border_part): New function.
(Fframe_pixel_width, Fframe_pixel_height, Fborder_width): Rename
to Fframe_native_width, Fframe_native_height mand
Fframe_internal_border_width.
(frame_parm_table): Add Qno_special_glyphs entry.
(frame_float_type): New enumeration type.
(frame_float): New function to handle frame size and position
ratios.
(x_set_frame_parameters): Handle size and position ratios.
(x_set_no_special_glyphs): New function
(x_figure_window_size): Handle size and position ratios.
(syms_of_frame): Add Qdisplay_monitor_attributes_list,
Qno_special_glyphs, Qframe_edges, Qkeep_ratio, Qwidth_only,
Qheight_only, Qleft_only and Qtop_only.
* src/frame.h (internal_border_part): New enumeration type.
(struct frame): New slot no_special_glyphs.
(FRAME_NO_SPECIAL_GLYPHS): New macro.
* src/gtkutil.c (xg_frame_restack): Return immediately for
GTK versions before 2.18.0.
* src/keyboard.c (internal_border_parts): New array constant.
(make_lispy_position): For frames with border dragging enabled
return internal border part.
(syms_of_keyboard): New symbols Qdrag_internal_border,
Qleft_edge, Qtop_left_corner, Qtop_edge, Qtop_right_corner,
Qright_edge, Qbottom_right_corner, Qbottom_edge and
Qbottom_left_corner.
* src/minibuf.c (read_minibuf_unwind): When exiting the
minibuffer deal with frames that have the 'minibuffer-exit'
parameter set.
(syms_of_minibuf): New symbol Qminibuffer_exit.
* src/nsfns.m (frame_parm_handler): Add entry for
x_set_no_special_glyphs.
(Fx_create_frame): Handle 'no-special-glyphs' parameter.
Intitialize new cursor types for dragging frame borders.
* src/nsterm.h (struct ns_output): Add new cursor types for
dragging frame borders.
* src/w32fns.c (w32_frame_parm_handlers): Add entry for
x_set_no_special_glyphs.
(Fx_create_frame): Handle 'no-special-glyphs' parameter.
Intitialize new cursor types for dragging frame borders.
* src/w32term.h (struct w32_output): Add new cursor types for
dragging frame borders.
* src/window.c (coordinates_in_window)
(Fwindow_line_height, window_internal_height): Use
window_wants_modeline and window_wants_header_line instead of
WINDOW_WANTS_MODELINE_P and WINDOW_WANTS_HEADER_LINE_P.
(Fwindow_lines_pixel_dimensions): New function.
(window_parameter): New function.
(Fwindow_parameter): Call window_parameter.
(window_wants_mode_line, window_wants_header_line): New
functions replacing the macros WINDOW_WANTS_MODELINE_P and
WINDOW_WANTS_HEADER_LINE_P from dispextern.h.
(syms_of_window): New symbols Qmode_line_format and
Qheader_line_format.
* src/window.h: Reorganize and re-comment macros. Use
window_wants_modeline and window_wants_header_line instead of
WINDOW_WANTS_MODELINE_P and WINDOW_WANTS_HEADER_LINE_P.
(MINI_NON_ONLY_WINDOW_P, MINI_ONLY_WINDOW_P): Minor rewrite.
(WINDOW_BUFFER): New macro.
(WINDOW_BOX_LEFT_EDGE_COL, WINDOW_BOX_RIGHT_EDGE_COL): Remove.
* src/xdisp.c (window_text_bottom_y, window_box_height)
(window_box, start_display)
(compute_window_start_on_continuation_line)
(try_cursor_movement, redisplay_window)
(try_window_reusing_current_matrix, try_window_id)
(display_line, expose_window): Use window_wants_modeline and
window_wants_header_line instead of WINDOW_WANTS_MODELINE_P and
WINDOW_WANTS_HEADER_LINE_P.
(pos_visible_p, display_mode_lines): Respect W's
'mode-line-format' and 'header-line-format' window parameters.
(init_iterator): Use window_wants_modeline and
window_wants_header_line instead of WINDOW_WANTS_MODELINE_P and
WINDOW_WANTS_HEADER_LINE_P. For tip frames respect
no_special_glyphs value.
(note_mouse_highlight): Set frame border cursors when on
internal border.
(x_draw_right_divider, x_draw_bottom_divider): Try to improve
drawing of window dividers.
* src/xfns.c (mouse_cursor): Add entries for border parts.
(mouse_cursor_types): Add entries for cursor types to drag
frame borders.
(INSTALL_CURSOR): Add entries for new cursor types to drag
frame borders.
(Fx_create_frame): Handle 'no-special-glyphs' parameter.
(x_frame_parm_handlers): Add entry for
x_set_no_special_glyphs.
(Vx_window_left_edge_shape, Vx_window_top_left_corner_shape)
(Vx_window_top_edge_shape, Vx_window_top_right_corner_shape)
(Vx_window_right_edge_shape)
(Vx_window_bottom_right_corner_shape)
(Vx_window_bottom_edge_shape)
(Vx_window_bottom_left_corner_shape): New variables.
(x_frame_restack): Call xg_frame_restack only for GTK versions
starting with 2.18.0.
* src/xterm.c (x_free_frame_resources): Remove new cursors for
dragging frame borders.
* src/xterm.h (struct x_output): Add new cursor types for
dragging frame borders.
* doc/lispref/display.texi (Size of Displayed Text): Document
`window-lines-pixel-dimensions'.
* doc/lispref/elisp.texi (Top): Add entry for "Mouse Dragging
Parameters".
* doc/lispref/frames.texi (Frame Size): Replace
frame-pixel-width/-height by frame-native-width/-height. Add
frame-inner-width/-height and frame-outer-width/-height docs.
(Position Parameters): Describe specifying position as ratios.
Clarify remark about positions relative to bottom/ridge display
edge.
(Size Parameters): Describe specifying sizes as ratios.
Describe 'fit-frame-to-buffer-margins' and
'fit-frame-to-buffer-sizes' parameters.
(Layout Parameters): Describe 'no-special-glyphs' parameter.
(Frame Interaction Parameters): Describe 'auto-hide-function',
'minibuffer-exit' and 'keep-ratio' parameters.
(Mouse Dragging Parameters): New section describing
'drag-internal-border', 'drag-with-header-line',
'drag-with-mode-line', 'snap-width', 'top-visible' and
'bottom-visible' parameters.
(Management Parameters): Mention that `override-redirect' has
no effect on MS Windows.
(Font and Color Parameters): Mention child frames for `alpha'
parameter.
(Child Frames): Rewrite section with description and cross
references to new frame parameters added.
* doc/lispref/modes.texi (Mode Line Basics): Mention
'mode-line-format' and 'header-line-format' window parameters.
* doc/lispref/windows.texi (Resizing Windows): Mention effect
of `fit-frame-to-buffer-margins' for child frames.
(Display Action Functions): New action function
`display-buffer-in-child-frame'.
(Quitting Windows): Mention `make-frame-invisible' as optional
value of `frame-auto-hide-function' and `auto-hide-function'
frame paameter.
(Coordinates and Windows): Describe new function
`window-largest-empty-rectangle'.
(Window Parameters): Describe new parameters 'mode-line-format'
and 'header-line-format'. Index all window parameters described
in this section.
2017-06-25 09:33:25 +00:00
|
|
|
|
(border-width . 1)
|
|
|
|
|
(no-special-glyphs . t))
|
2001-10-22 08:54:13 +00:00
|
|
|
|
"Frame parameters used for tooltips.
|
|
|
|
|
|
|
|
|
|
If `left' or `top' parameters are included, they specify the absolute
|
2008-10-31 15:57:31 +00:00
|
|
|
|
position to pop up the tooltip.
|
|
|
|
|
|
|
|
|
|
Note that font and color parameters are ignored, and the attributes
|
|
|
|
|
of the `tooltip' face are used instead."
|
2016-01-30 19:48:18 +00:00
|
|
|
|
:type '(repeat (cons :format "%v"
|
|
|
|
|
(symbol :tag "Parameter")
|
2020-10-11 17:36:41 +00:00
|
|
|
|
(sexp :tag "Value")))
|
Provide additional support for child frames
Provide mouse dragging and resizing of frames. Allow resizing
frames proportionally. Provide additional functionality for
child frames. Minor bug fixes.
* lisp/frame.el (frame-border-width, frame-pixel-width)
(frame-pixel-height): Alias to `frame-internal-border-width',
`frame-native-width' and `frame-native-height'.
(frame-inner-width, frame-inner-height, frame-outer-width)
(frame-outer-height): New functions.
* lisp/minibuffer.el (completion-auto-help): Fix typo.
* lisp/mouse.el (mouse-drag-line, mouse-drag-mode-line)
(mouse-drag-header-line): Allow moving a frame by dragging the
mode line of its bottommost window (on a minibuffer-less frame)
or the header line of its topmost window.
(mouse-drag-vertical-line): Mention argument in doc-string.
(mouse-resize-frame, mouse-drag-frame, mouse-drag-left-edge)
(mouse-drag-top-left-corner, mouse-drag-top-edge)
(mouse-drag-top-right-corner, mouse-drag-right-edge)
(mouse-drag-bottom-right-corner, mouse-drag-bottom-edge)
(mouse-drag-bottom-left-corner): New functions for resizing a
frame by dragging its internal border together with
corresponding key bindings.
* lisp/tooltip.el (tooltip-frame-parameters): Add
'no-special-glyphs' to default parameters and update version
tag.
* lisp/window.el (frame-auto-hide-function): Add choice to make
frame invisible and update version tag.
(window--delete): Handle 'auto-hide-function' frame parameter.
(window--maybe-raise-frame): Respect 'no-focus-on-map' and
'no-accept-focus' frame parameters.
(display-buffer--action-function-custom-type): Add
`display-buffer-in-child-frame'.
(display-buffer): Mention `display-buffer-in-child-frame' in
doc-string.
(display-buffer-in-child-frame): New action function for
`display-buffer'.
(window--sanitize-margin): Return zero when MARGIN cannot be
sanitized.
(fit-frame-to-buffer): Major rewrite to handle child frames and
'fit-frame-to-buffer-sizes' and 'fit-frame-to-buffer-margins'
frame parameters.
(window-largest-empty-rectangle--maximums-1)
(window-largest-empty-rectangle--maximums)
(window-largest-empty-rectangle--disjoint-maximums)
(window-largest-empty-rectangle): New functions.
* src/dispextern.h (WINDOW_WANTS_MODELINE_P)
(WINDOW_WANTS_HEADER_LINE_P): Remove. Functionality is now
provided by corresponding functions window_wants_modeline and
window_wants_header_line in window.c. Adjust users.
* src/dispnew.c (adjust_glyph_matrix)
(buffer_posn_from_coords): Use window_wants_modeline and
window_wants_header_line instead of WINDOW_WANTS_MODELINE_P and
WINDOW_WANTS_HEADER_LINE_P.
* src/frame.c (keep_ratio): New function.
(adjust_frame_size): Call keep_ratio for each of F's child
frames.
(make_frame): Initialize no_special_glyphs slot.
(frame_internal_border_part): New function.
(Fframe_pixel_width, Fframe_pixel_height, Fborder_width): Rename
to Fframe_native_width, Fframe_native_height mand
Fframe_internal_border_width.
(frame_parm_table): Add Qno_special_glyphs entry.
(frame_float_type): New enumeration type.
(frame_float): New function to handle frame size and position
ratios.
(x_set_frame_parameters): Handle size and position ratios.
(x_set_no_special_glyphs): New function
(x_figure_window_size): Handle size and position ratios.
(syms_of_frame): Add Qdisplay_monitor_attributes_list,
Qno_special_glyphs, Qframe_edges, Qkeep_ratio, Qwidth_only,
Qheight_only, Qleft_only and Qtop_only.
* src/frame.h (internal_border_part): New enumeration type.
(struct frame): New slot no_special_glyphs.
(FRAME_NO_SPECIAL_GLYPHS): New macro.
* src/gtkutil.c (xg_frame_restack): Return immediately for
GTK versions before 2.18.0.
* src/keyboard.c (internal_border_parts): New array constant.
(make_lispy_position): For frames with border dragging enabled
return internal border part.
(syms_of_keyboard): New symbols Qdrag_internal_border,
Qleft_edge, Qtop_left_corner, Qtop_edge, Qtop_right_corner,
Qright_edge, Qbottom_right_corner, Qbottom_edge and
Qbottom_left_corner.
* src/minibuf.c (read_minibuf_unwind): When exiting the
minibuffer deal with frames that have the 'minibuffer-exit'
parameter set.
(syms_of_minibuf): New symbol Qminibuffer_exit.
* src/nsfns.m (frame_parm_handler): Add entry for
x_set_no_special_glyphs.
(Fx_create_frame): Handle 'no-special-glyphs' parameter.
Intitialize new cursor types for dragging frame borders.
* src/nsterm.h (struct ns_output): Add new cursor types for
dragging frame borders.
* src/w32fns.c (w32_frame_parm_handlers): Add entry for
x_set_no_special_glyphs.
(Fx_create_frame): Handle 'no-special-glyphs' parameter.
Intitialize new cursor types for dragging frame borders.
* src/w32term.h (struct w32_output): Add new cursor types for
dragging frame borders.
* src/window.c (coordinates_in_window)
(Fwindow_line_height, window_internal_height): Use
window_wants_modeline and window_wants_header_line instead of
WINDOW_WANTS_MODELINE_P and WINDOW_WANTS_HEADER_LINE_P.
(Fwindow_lines_pixel_dimensions): New function.
(window_parameter): New function.
(Fwindow_parameter): Call window_parameter.
(window_wants_mode_line, window_wants_header_line): New
functions replacing the macros WINDOW_WANTS_MODELINE_P and
WINDOW_WANTS_HEADER_LINE_P from dispextern.h.
(syms_of_window): New symbols Qmode_line_format and
Qheader_line_format.
* src/window.h: Reorganize and re-comment macros. Use
window_wants_modeline and window_wants_header_line instead of
WINDOW_WANTS_MODELINE_P and WINDOW_WANTS_HEADER_LINE_P.
(MINI_NON_ONLY_WINDOW_P, MINI_ONLY_WINDOW_P): Minor rewrite.
(WINDOW_BUFFER): New macro.
(WINDOW_BOX_LEFT_EDGE_COL, WINDOW_BOX_RIGHT_EDGE_COL): Remove.
* src/xdisp.c (window_text_bottom_y, window_box_height)
(window_box, start_display)
(compute_window_start_on_continuation_line)
(try_cursor_movement, redisplay_window)
(try_window_reusing_current_matrix, try_window_id)
(display_line, expose_window): Use window_wants_modeline and
window_wants_header_line instead of WINDOW_WANTS_MODELINE_P and
WINDOW_WANTS_HEADER_LINE_P.
(pos_visible_p, display_mode_lines): Respect W's
'mode-line-format' and 'header-line-format' window parameters.
(init_iterator): Use window_wants_modeline and
window_wants_header_line instead of WINDOW_WANTS_MODELINE_P and
WINDOW_WANTS_HEADER_LINE_P. For tip frames respect
no_special_glyphs value.
(note_mouse_highlight): Set frame border cursors when on
internal border.
(x_draw_right_divider, x_draw_bottom_divider): Try to improve
drawing of window dividers.
* src/xfns.c (mouse_cursor): Add entries for border parts.
(mouse_cursor_types): Add entries for cursor types to drag
frame borders.
(INSTALL_CURSOR): Add entries for new cursor types to drag
frame borders.
(Fx_create_frame): Handle 'no-special-glyphs' parameter.
(x_frame_parm_handlers): Add entry for
x_set_no_special_glyphs.
(Vx_window_left_edge_shape, Vx_window_top_left_corner_shape)
(Vx_window_top_edge_shape, Vx_window_top_right_corner_shape)
(Vx_window_right_edge_shape)
(Vx_window_bottom_right_corner_shape)
(Vx_window_bottom_edge_shape)
(Vx_window_bottom_left_corner_shape): New variables.
(x_frame_restack): Call xg_frame_restack only for GTK versions
starting with 2.18.0.
* src/xterm.c (x_free_frame_resources): Remove new cursors for
dragging frame borders.
* src/xterm.h (struct x_output): Add new cursor types for
dragging frame borders.
* doc/lispref/display.texi (Size of Displayed Text): Document
`window-lines-pixel-dimensions'.
* doc/lispref/elisp.texi (Top): Add entry for "Mouse Dragging
Parameters".
* doc/lispref/frames.texi (Frame Size): Replace
frame-pixel-width/-height by frame-native-width/-height. Add
frame-inner-width/-height and frame-outer-width/-height docs.
(Position Parameters): Describe specifying position as ratios.
Clarify remark about positions relative to bottom/ridge display
edge.
(Size Parameters): Describe specifying sizes as ratios.
Describe 'fit-frame-to-buffer-margins' and
'fit-frame-to-buffer-sizes' parameters.
(Layout Parameters): Describe 'no-special-glyphs' parameter.
(Frame Interaction Parameters): Describe 'auto-hide-function',
'minibuffer-exit' and 'keep-ratio' parameters.
(Mouse Dragging Parameters): New section describing
'drag-internal-border', 'drag-with-header-line',
'drag-with-mode-line', 'snap-width', 'top-visible' and
'bottom-visible' parameters.
(Management Parameters): Mention that `override-redirect' has
no effect on MS Windows.
(Font and Color Parameters): Mention child frames for `alpha'
parameter.
(Child Frames): Rewrite section with description and cross
references to new frame parameters added.
* doc/lispref/modes.texi (Mode Line Basics): Mention
'mode-line-format' and 'header-line-format' window parameters.
* doc/lispref/windows.texi (Resizing Windows): Mention effect
of `fit-frame-to-buffer-margins' for child frames.
(Display Action Functions): New action function
`display-buffer-in-child-frame'.
(Quitting Windows): Mention `make-frame-invisible' as optional
value of `frame-auto-hide-function' and `auto-hide-function'
frame paameter.
(Coordinates and Windows): Describe new function
`window-largest-empty-rectangle'.
(Window Parameters): Describe new parameters 'mode-line-format'
and 'header-line-format'. Index all window parameters described
in this section.
2017-06-25 09:33:25 +00:00
|
|
|
|
:version "26.1")
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2001-01-04 14:07:37 +00:00
|
|
|
|
(defface tooltip
|
|
|
|
|
'((((class color))
|
2003-07-23 11:39:11 +00:00
|
|
|
|
:background "lightyellow"
|
|
|
|
|
:foreground "black"
|
|
|
|
|
:inherit variable-pitch)
|
|
|
|
|
(t
|
|
|
|
|
:inherit variable-pitch))
|
2021-02-26 04:46:26 +00:00
|
|
|
|
"Face for tooltips.
|
|
|
|
|
|
|
|
|
|
When using the GTK toolkit, this face will only be used if
|
|
|
|
|
`x-gtk-use-system-tooltips' is non-nil."
|
2021-03-12 16:57:26 +00:00
|
|
|
|
:group 'tooltip
|
2005-09-29 22:56:22 +00:00
|
|
|
|
:group 'basic-faces)
|
2001-01-04 14:07:37 +00:00
|
|
|
|
|
2017-10-07 12:04:37 +00:00
|
|
|
|
(defcustom tooltip-resize-echo-area nil
|
|
|
|
|
"If non-nil, using the echo area for tooltips will resize the echo area.
|
|
|
|
|
By default, when the echo area is used for displaying tooltips,
|
|
|
|
|
the tooltip text is truncated if it exceeds a single screen line.
|
|
|
|
|
When this variable is non-nil, the text is not truncated; instead,
|
|
|
|
|
the echo area is resized as needed to accommodate the full text
|
|
|
|
|
of the tooltip.
|
|
|
|
|
This variable has effect only on GUI frames."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:version "27.1")
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;; Variables that are not customizable.
|
|
|
|
|
|
2008-10-29 12:10:20 +00:00
|
|
|
|
(defvar tooltip-functions nil
|
1999-07-21 21:43:52 +00:00
|
|
|
|
"Functions to call to display tooltips.
|
2008-10-29 12:10:20 +00:00
|
|
|
|
Each function is called with one argument EVENT which is a copy
|
|
|
|
|
of the last mouse movement event that occurred. If one of these
|
|
|
|
|
functions displays the tooltip, it should return non-nil and the
|
|
|
|
|
rest are not called.")
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(defvar tooltip-timeout-id nil
|
|
|
|
|
"The id of the timeout started when Emacs becomes idle.")
|
|
|
|
|
|
|
|
|
|
(defvar tooltip-last-mouse-motion-event nil
|
|
|
|
|
"A copy of the last mouse motion event seen.")
|
|
|
|
|
|
|
|
|
|
(defvar tooltip-hide-time nil
|
|
|
|
|
"Time when the last tooltip was hidden.")
|
|
|
|
|
|
2005-07-03 16:14:02 +00:00
|
|
|
|
(defvar gud-tooltip-mode) ;; Prevent warning.
|
|
|
|
|
|
1999-07-21 21:43:52 +00:00
|
|
|
|
;;; Event accessors
|
|
|
|
|
|
|
|
|
|
(defun tooltip-event-buffer (event)
|
|
|
|
|
"Return the buffer over which event EVENT occurred.
|
|
|
|
|
This might return nil if the event did not occur over a buffer."
|
|
|
|
|
(let ((window (posn-window (event-end event))))
|
|
|
|
|
(and window (window-buffer window))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Timeout for tooltip display
|
|
|
|
|
|
|
|
|
|
(defun tooltip-delay ()
|
|
|
|
|
"Return the delay in seconds for the next tooltip."
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(if (and tooltip-hide-time
|
Avoid some double-rounding of Lisp timestamps
Also, simplify some time-related Lisp timestamp code
while we’re in the neighborhood.
* lisp/battery.el (battery-linux-proc-acpi)
(battery-linux-sysfs, battery-upower, battery-bsd-apm):
* lisp/calendar/timeclock.el (timeclock-seconds-to-string)
(timeclock-log, timeclock-last-period)
(timeclock-entry-length, timeclock-entry-list-span)
(timeclock-find-discrep, timeclock-generate-report):
* lisp/cedet/ede/detect.el (ede-detect-qtest):
* lisp/completion.el (cmpl-hours-since-origin):
* lisp/ecomplete.el (ecomplete-decay-1):
* lisp/emacs-lisp/ert.el (ert--results-update-stats-display)
(ert--results-update-stats-display-maybe):
* lisp/emacs-lisp/timer-list.el (list-timers):
* lisp/emacs-lisp/timer.el (timer-until)
(timer-event-handler):
* lisp/erc/erc-backend.el (erc-server-send-ping)
(erc-server-send-queue, erc-handle-parsed-server-response)
(erc-handle-unknown-server-response):
* lisp/erc/erc-track.el (erc-buffer-visible):
* lisp/erc/erc.el (erc-lurker-cleanup, erc-lurker-p)
(erc-cmd-PING, erc-send-current-line):
* lisp/eshell/em-pred.el (eshell-pred-file-time):
* lisp/eshell/em-unix.el (eshell-show-elapsed-time):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event:org-timestamp):
* lisp/gnus/gnus-int.el (gnus-backend-trace):
* lisp/gnus/gnus-sum.el (gnus-user-date):
* lisp/gnus/mail-source.el (mail-source-delete-crash-box):
* lisp/gnus/nnmaildir.el (nnmaildir--scan):
* lisp/ibuf-ext.el (ibuffer-mark-old-buffers):
* lisp/gnus/nnmaildir.el (nnmaildir--scan):
* lisp/mouse.el (mouse--down-1-maybe-follows-link)
(mouse--click-1-maybe-follows-link):
* lisp/mpc.el (mpc--faster-toggle):
* lisp/net/rcirc.el (rcirc-handler-ctcp-KEEPALIVE)
(rcirc-sentinel):
* lisp/net/tramp-cache.el (tramp-get-file-property):
* lisp/net/tramp-sh.el (tramp-sh-handle-file-newer-than-file-p)
(tramp-maybe-open-connection):
* lisp/net/tramp-smb.el (tramp-smb-maybe-open-connection):
* lisp/org/org-clock.el (org-clock-resolve):
(org-resolve-clocks, org-clock-in, org-clock-out, org-clock-sum):
* lisp/org/org-timer.el (org-timer-start)
(org-timer-pause-or-continue, org-timer-seconds):
* lisp/org/org.el (org-evaluate-time-range):
* lisp/org/ox-publish.el (org-publish-cache-ctime-of-src):
* lisp/pixel-scroll.el (pixel-scroll-in-rush-p):
* lisp/play/hanoi.el (hanoi-move-ring):
* lisp/proced.el (proced-format-time):
* lisp/progmodes/cpp.el (cpp-progress-message):
* lisp/progmodes/flymake.el (flymake--handle-report):
* lisp/progmodes/js.el (js--wait-for-matching-output):
* lisp/subr.el (progress-reporter-do-update):
* lisp/term/xterm.el (xterm--read-event-for-query):
* lisp/time.el (display-time-update, emacs-uptime):
* lisp/tooltip.el (tooltip-delay):
* lisp/url/url-cookie.el (url-cookie-parse-file-netscape):
* lisp/url/url-queue.el (url-queue-prune-old-entries):
* lisp/url/url.el (url-retrieve-synchronously):
* lisp/xt-mouse.el (xterm-mouse-event):
Avoid double-rounding of time-related values. Simplify.
* lisp/calendar/icalendar.el (icalendar--decode-isodatetime):
When hoping for the best (unlikely), use a better decoded time.
(icalendar--convert-sexp-to-ical): Avoid unnecessary encode-time.
* lisp/calendar/timeclock.el (timeclock-when-to-leave):
* lisp/cedet/ede/detect.el (ede-detect-qtest):
* lisp/desktop.el (desktop-create-buffer):
* lisp/emacs-lisp/benchmark.el (benchmark-elapse):
* lisp/gnus/gnus-art.el (article-lapsed-string):
* lisp/gnus/gnus-group.el (gnus-group-timestamp-delta):
* lisp/gnus/nnmail.el (nnmail-expired-article-p):
* lisp/gnus/nnmaildir.el (nnmaildir-request-expire-articles):
* lisp/nxml/rng-maint.el (rng-time-function):
* lisp/org/org-clock.el (org-clock-get-clocked-time)
(org-clock-resolve, org-resolve-clocks, org-resolve-clocks-if-idle):
* lisp/org/org-habit.el (org-habit-insert-consistency-graphs):
* lisp/progmodes/vhdl-mode.el (vhdl-update-progress-info)
(vhdl-fix-case-region-1):
Use time-since instead of open-coding most of it.
* lisp/erc/erc-dcc.el (erc-dcc-get-sentinel):
* lisp/erc/erc.el (erc-string-to-emacs-time, erc-time-gt):
Now obsolete. All uses changed.
(erc-time-diff): Accept all Lisp time values.
All uses changed.
* lisp/gnus/gnus-demon.el (gnus-demon-idle-since):
* lisp/gnus/gnus-score.el (gnus-score-headers):
* lisp/gnus/nneething.el (nneething-make-head):
* lisp/gnus/nnheader.el (nnheader-message-maybe):
* lisp/gnus/nnimap.el (nnimap-keepalive):
* lisp/image.el (image-animate-timeout):
* lisp/mail/feedmail.el (feedmail-rfc822-date):
* lisp/net/imap.el (imap-wait-for-tag):
* lisp/net/newst-backend.el (newsticker--image-get):
* lisp/net/rcirc.el (rcirc-handler-317, rcirc-handler-333):
* lisp/obsolete/xesam.el (xesam-refresh-entry):
* lisp/org/org-agenda.el (org-agenda-show-clocking-issues)
(org-agenda-check-clock-gap, org-agenda-to-appt):
* lisp/org/org-capture.el (org-capture-set-target-location):
* lisp/org/org-clock.el (org-clock-resolve-clock)
(org-clocktable-steps):
* lisp/org/org-colview.el (org-columns-edit-value)
(org-columns, org-agenda-columns):
* lisp/org/org-duration.el (org-duration-from-minutes):
* lisp/org/org-element.el (org-element-cache-sync-duration)
(org-element-cache-sync-break)
(org-element--cache-interrupt-p, org-element--cache-sync):
* lisp/org/org-habit.el (org-habit-get-faces)
* lisp/org/org-indent.el (org-indent-add-properties):
* lisp/org/org-table.el (org-table-sum):
* lisp/org/org-timer.el (org-timer-show-remaining-time)
(org-timer-set-timer):
* lisp/org/org.el (org-babel-load-file, org-today)
(org-auto-repeat-maybe, org-2ft, org-time-stamp)
(org-read-date-analyze, org-time-stamp-to-now)
(org-small-year-to-year, org-goto-calendar):
* lisp/org/ox.el (org-export-insert-default-template):
* lisp/ses.el (ses--time-check):
* lisp/type-break.el (type-break-time-warning)
(type-break-statistics, type-break-demo-boring):
* lisp/url/url-cache.el (url-cache-expired)
(url-cache-prune-cache):
* lisp/vc/vc-git.el (vc-git-stash-snapshot):
* lisp/erc/erc-match.el (erc-log-matches-come-back):
Simplify.
2019-02-23 02:32:31 +00:00
|
|
|
|
(time-less-p (time-since tooltip-hide-time)
|
|
|
|
|
tooltip-recent-seconds))
|
2008-04-19 19:30:53 +00:00
|
|
|
|
tooltip-short-delay
|
|
|
|
|
tooltip-delay))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2001-01-04 20:38:02 +00:00
|
|
|
|
(defun tooltip-cancel-delayed-tip ()
|
1999-07-21 21:43:52 +00:00
|
|
|
|
"Disable the tooltip timeout."
|
|
|
|
|
(when tooltip-timeout-id
|
|
|
|
|
(disable-timeout tooltip-timeout-id)
|
|
|
|
|
(setq tooltip-timeout-id nil)))
|
|
|
|
|
|
2001-01-04 20:38:02 +00:00
|
|
|
|
(defun tooltip-start-delayed-tip ()
|
2005-06-16 09:59:47 +00:00
|
|
|
|
"Add a one-shot timeout to call function `tooltip-timeout'."
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(setq tooltip-timeout-id
|
|
|
|
|
(add-timeout (tooltip-delay) 'tooltip-timeout nil)))
|
|
|
|
|
|
2011-04-19 13:44:55 +00:00
|
|
|
|
(defun tooltip-timeout (_object)
|
2005-06-16 09:59:47 +00:00
|
|
|
|
"Function called when timer with id `tooltip-timeout-id' fires."
|
2008-10-29 12:10:20 +00:00
|
|
|
|
(run-hook-with-args-until-success 'tooltip-functions
|
1999-07-21 21:43:52 +00:00
|
|
|
|
tooltip-last-mouse-motion-event))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Displaying tips
|
|
|
|
|
|
2001-01-04 14:07:37 +00:00
|
|
|
|
(defun tooltip-set-param (alist key value)
|
2001-10-22 10:02:41 +00:00
|
|
|
|
"Change the value of KEY in alist ALIST to VALUE.
|
2003-02-04 12:29:42 +00:00
|
|
|
|
If there's no association for KEY in ALIST, add one, otherwise
|
2001-01-04 14:07:37 +00:00
|
|
|
|
change the existing association. Value is the resulting alist."
|
2014-10-01 17:23:42 +00:00
|
|
|
|
(declare (obsolete "use (setf (alist-get ..) ..) instead" "25.1"))
|
|
|
|
|
(setf (alist-get key alist) value)
|
|
|
|
|
alist)
|
2001-01-04 14:07:37 +00:00
|
|
|
|
|
2008-06-12 03:56:20 +00:00
|
|
|
|
(declare-function x-show-tip "xfns.c"
|
|
|
|
|
(string &optional frame parms timeout dx dy))
|
|
|
|
|
|
2022-05-13 12:48:46 +00:00
|
|
|
|
(defun tooltip-show (text &optional use-echo-area text-face default-face)
|
2001-10-22 08:54:13 +00:00
|
|
|
|
"Show a tooltip window displaying TEXT.
|
|
|
|
|
|
2005-04-18 00:29:45 +00:00
|
|
|
|
Text larger than `x-max-tooltip-size' is clipped.
|
2001-10-22 08:54:13 +00:00
|
|
|
|
|
2022-05-13 12:48:46 +00:00
|
|
|
|
If the alist in `tooltip-frame-parameters' includes `left' and
|
|
|
|
|
`top' parameters, they determine the x and y position where the
|
|
|
|
|
tooltip is displayed. Otherwise, the tooltip pops at offsets
|
|
|
|
|
specified by `tooltip-x-offset' and `tooltip-y-offset' from the
|
|
|
|
|
current mouse position.
|
2005-04-18 00:29:45 +00:00
|
|
|
|
|
2022-05-13 11:46:43 +00:00
|
|
|
|
The text properties of TEXT are also modified to add the
|
|
|
|
|
appropriate faces before displaying the tooltip. If your code
|
|
|
|
|
depends on them, you should copy the tooltip string before
|
|
|
|
|
passing it to this function.
|
|
|
|
|
|
2005-04-18 10:23:41 +00:00
|
|
|
|
Optional second arg USE-ECHO-AREA non-nil means to show tooltip
|
2022-05-13 11:46:43 +00:00
|
|
|
|
in echo area.
|
|
|
|
|
|
2022-05-13 12:48:46 +00:00
|
|
|
|
The third and fourth args TEXT-FACE and DEFAULT-FACE specify
|
|
|
|
|
faces used to display the tooltip, and default to `tooltip' if
|
|
|
|
|
not specified. TEXT-FACE specifies a face used to display text
|
|
|
|
|
in the tooltip, while DEFAULT-FACE specifies a face that provides
|
|
|
|
|
the background, foreground and border colors of the tooltip
|
|
|
|
|
frame.
|
2022-05-13 11:46:43 +00:00
|
|
|
|
|
|
|
|
|
Note that the last two arguments are not respected when
|
|
|
|
|
`use-system-tooltips' is non-nil and Emacs is built with support
|
2022-05-13 12:48:46 +00:00
|
|
|
|
for system tooltips, such as on NS, Haiku, and with the GTK
|
|
|
|
|
toolkit."
|
2005-04-18 10:23:41 +00:00
|
|
|
|
(if use-echo-area
|
2008-04-09 09:34:16 +00:00
|
|
|
|
(tooltip-show-help-non-mode text)
|
2000-12-14 10:35:22 +00:00
|
|
|
|
(condition-case error
|
2001-01-04 14:07:37 +00:00
|
|
|
|
(let ((params (copy-sequence tooltip-frame-parameters))
|
2022-05-13 12:48:46 +00:00
|
|
|
|
(fg (face-attribute (or default-face 'tooltip) :foreground))
|
|
|
|
|
(bg (face-attribute (or default-face 'tooltip) :background)))
|
2001-01-04 20:38:02 +00:00
|
|
|
|
(when (stringp fg)
|
2014-10-01 17:23:42 +00:00
|
|
|
|
(setf (alist-get 'foreground-color params) fg)
|
|
|
|
|
(setf (alist-get 'border-color params) fg))
|
2001-01-04 20:38:02 +00:00
|
|
|
|
(when (stringp bg)
|
2014-10-01 17:23:42 +00:00
|
|
|
|
(setf (alist-get 'background-color params) bg))
|
2021-03-08 02:29:42 +00:00
|
|
|
|
;; Use non-nil APPEND argument below to avoid overriding any
|
|
|
|
|
;; faces used in our TEXT. Among other things, this allows
|
|
|
|
|
;; tooltips to use the `help-key-binding' face used in
|
|
|
|
|
;; `substitute-command-keys' substitutions.
|
2022-05-13 11:46:43 +00:00
|
|
|
|
(add-face-text-property 0 (length text)
|
|
|
|
|
(or text-face 'tooltip) t text)
|
2021-03-08 02:29:42 +00:00
|
|
|
|
(x-show-tip text
|
2001-01-04 14:07:37 +00:00
|
|
|
|
(selected-frame)
|
2001-01-04 14:10:01 +00:00
|
|
|
|
params
|
2001-01-18 14:38:45 +00:00
|
|
|
|
tooltip-hide-delay
|
2001-01-04 14:07:37 +00:00
|
|
|
|
tooltip-x-offset
|
|
|
|
|
tooltip-y-offset))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
(error
|
2000-12-14 10:35:22 +00:00
|
|
|
|
(message "Error while displaying tooltip: %s" error)
|
|
|
|
|
(sit-for 1)
|
|
|
|
|
(message "%s" text)))))
|
|
|
|
|
|
2008-06-12 03:56:20 +00:00
|
|
|
|
(declare-function x-hide-tip "xfns.c" ())
|
|
|
|
|
|
2011-04-19 13:44:55 +00:00
|
|
|
|
(defun tooltip-hide (&optional _ignored-arg)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
"Hide a tooltip, if one is displayed.
|
|
|
|
|
Value is non-nil if tooltip was open."
|
2001-01-04 20:38:02 +00:00
|
|
|
|
(tooltip-cancel-delayed-tip)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(when (x-hide-tip)
|
2000-07-26 18:44:36 +00:00
|
|
|
|
(setq tooltip-hide-time (float-time))))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Debugger-related functions
|
|
|
|
|
|
|
|
|
|
(defun tooltip-identifier-from-point (point)
|
|
|
|
|
"Extract the identifier at POINT, if any.
|
|
|
|
|
Value is nil if no identifier exists at point. Identifier extraction
|
|
|
|
|
is based on the current syntax table."
|
|
|
|
|
(save-excursion
|
|
|
|
|
(goto-char point)
|
2012-08-14 18:48:39 +00:00
|
|
|
|
(let* ((start (progn (skip-syntax-backward "w_") (point)))
|
|
|
|
|
(pstate (syntax-ppss)))
|
|
|
|
|
(unless (or (looking-at "[0-9]")
|
|
|
|
|
(nth 3 pstate)
|
|
|
|
|
(nth 4 pstate))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(skip-syntax-forward "w_")
|
|
|
|
|
(when (> (point) start)
|
|
|
|
|
(buffer-substring start (point)))))))
|
|
|
|
|
|
|
|
|
|
(defun tooltip-expr-to-print (event)
|
|
|
|
|
"Return an expression that should be printed for EVENT.
|
|
|
|
|
If a region is active and the mouse is inside the region, print
|
|
|
|
|
the region. Otherwise, figure out the identifier around the point
|
|
|
|
|
where the mouse is."
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(with-current-buffer (tooltip-event-buffer event)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(let ((point (posn-point (event-end event))))
|
2014-12-05 17:49:53 +00:00
|
|
|
|
(if (use-region-p)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
(when (and (<= (region-beginning) point) (<= point (region-end)))
|
|
|
|
|
(buffer-substring (region-beginning) (region-end)))
|
|
|
|
|
(tooltip-identifier-from-point point)))))
|
|
|
|
|
|
|
|
|
|
(defun tooltip-process-prompt-regexp (process)
|
|
|
|
|
"Return regexp matching the prompt of PROCESS at the end of a string.
|
2005-06-16 09:59:47 +00:00
|
|
|
|
The prompt is taken from the value of `comint-prompt-regexp' in
|
|
|
|
|
the buffer of PROCESS."
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(let ((prompt-regexp (with-current-buffer (process-buffer process)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
comint-prompt-regexp)))
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(concat "\n*"
|
|
|
|
|
;; Most start with `^' but the one for `sdb' cannot be easily
|
|
|
|
|
;; stripped. Code the prompt for `sdb' fixed here.
|
|
|
|
|
(if (= (aref prompt-regexp 0) ?^)
|
|
|
|
|
(substring prompt-regexp 1)
|
|
|
|
|
"\\*")
|
|
|
|
|
"$")))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
(defun tooltip-strip-prompt (process output)
|
|
|
|
|
"Return OUTPUT with any prompt of PROCESS stripped from its end."
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(save-match-data
|
|
|
|
|
(if (string-match (tooltip-process-prompt-regexp process) output)
|
|
|
|
|
(substring output 0 (match-beginning 0))
|
|
|
|
|
output)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; Tooltip help.
|
|
|
|
|
|
|
|
|
|
(defvar tooltip-help-message nil
|
2009-04-06 23:52:41 +00:00
|
|
|
|
"The last help message received via `show-help-function'.
|
|
|
|
|
This is used by `tooltip-show-help' and
|
|
|
|
|
`tooltip-show-help-non-mode'.")
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(defvar tooltip-previous-message nil
|
|
|
|
|
"The previous content of the echo area.")
|
|
|
|
|
|
2022-01-18 03:34:55 +00:00
|
|
|
|
(defvar haiku-use-system-tooltips)
|
|
|
|
|
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(defun tooltip-show-help-non-mode (help)
|
2009-04-28 02:16:49 +00:00
|
|
|
|
"Function installed as `show-help-function' when Tooltip mode is off.
|
|
|
|
|
It is also called if Tooltip mode is on, for text-only displays."
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(when (and (not (window-minibuffer-p)) ;Don't overwrite minibuffer contents.
|
2009-04-06 23:52:41 +00:00
|
|
|
|
(not cursor-in-echo-area)) ;Don't overwrite a prompt.
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(cond
|
|
|
|
|
((stringp help)
|
Use string-replace instead of replace-regexp-in-string
`string-replace` is easier to understand, less error-prone, much
faster, and results in shorter Lisp and byte code. Use it where
applicable and obviously safe (erring on the conservative side).
* admin/authors.el (authors-scan-change-log):
* lisp/autoinsert.el (auto-insert-alist):
* lisp/calc/calc-prog.el (calc-edit-macro-combine-alg-ent)
(calc-edit-macro-combine-ext-command)
(calc-edit-macro-combine-var-name):
* lisp/calc/calc-units.el (math-make-unit-string):
* lisp/calendar/cal-html.el (cal-html-comment):
* lisp/calendar/cal-tex.el (cal-tex-comment):
* lisp/calendar/icalendar.el (icalendar--convert-string-for-export)
(icalendar--convert-string-for-import):
* lisp/calendar/iso8601.el (iso8601--concat-regexps)
(iso8601--full-time-match, iso8601--combined-match):
* lisp/calendar/time-date.el (format-seconds):
* lisp/calendar/todo-mode.el (todo-filter-items-filename):
* lisp/cedet/cedet-files.el (cedet-directory-name-to-file-name)
(cedet-file-name-to-directory-name):
* lisp/comint.el (comint-watch-for-password-prompt):
* lisp/dired-aux.el (dired-do-chmod):
* lisp/dired-x.el (dired-man):
* lisp/dired.el (dired-insert-directory, dired-goto-file-1):
* lisp/emacs-lisp/comp.el (comp-c-func-name):
* lisp/emacs-lisp/re-builder.el (reb-copy):
* lisp/erc/erc-dcc.el (erc-dcc-unquote-filename):
* lisp/erc/erc.el (erc-quit-reason-zippy, erc-part-reason-zippy)
(erc-update-mode-line-buffer, erc-message-english-PART):
* lisp/files.el (make-backup-file-name-1, files--transform-file-name)
(read-file-modes):
* lisp/fringe.el (fringe-mode):
* lisp/gnus/gnus-art.el (gnus-button-handle-info-url):
* lisp/gnus/gnus-group.el (gnus-group-completing-read):
* lisp/gnus/gnus-icalendar.el (gnus-icalendar-event-from-ical):
* lisp/gnus/gnus-mlspl.el (gnus-group-split-fancy):
* lisp/gnus/gnus-search.el (gnus-search-query-parse-date)
(gnus-search-transform-expression, gnus-search-run-search):
* lisp/gnus/gnus-start.el (gnus-dribble-enter):
* lisp/gnus/gnus-sum.el (gnus-summary-refer-article):
* lisp/gnus/gnus-util.el (gnus-mode-string-quote):
* lisp/gnus/message.el (message-put-addresses-in-ecomplete)
(message-parse-mailto-url, message-mailto-1):
* lisp/gnus/mml-sec.el (mml-secure-epg-sign):
* lisp/gnus/mml-smime.el (mml-smime-epg-verify):
* lisp/gnus/mml2015.el (mml2015-epg-verify):
* lisp/gnus/nnmaildir.el (nnmaildir--system-name)
(nnmaildir-request-list, nnmaildir-retrieve-groups)
(nnmaildir-request-group, nnmaildir-retrieve-headers):
* lisp/gnus/nnrss.el (nnrss-node-text):
* lisp/gnus/spam-report.el (spam-report-gmane-internal)
(spam-report-user-mail-address):
* lisp/ibuffer.el (name):
* lisp/image-dired.el (image-dired-pngnq-thumb)
(image-dired-pngcrush-thumb, image-dired-optipng-thumb)
(image-dired-create-thumb-1):
* lisp/info.el (Info-set-mode-line):
* lisp/international/mule-cmds.el (describe-language-environment):
* lisp/mail/rfc2231.el (rfc2231-parse-string):
* lisp/mail/rfc2368.el (rfc2368-parse-mailto-url):
* lisp/mail/rmail.el (rmail-insert-inbox-text)
(rmail-simplified-subject-regexp):
* lisp/mail/rmailout.el (rmail-output-body-to-file):
* lisp/mail/undigest.el (rmail-digest-rfc1153):
* lisp/man.el (Man-default-man-entry):
* lisp/mouse.el (minor-mode-menu-from-indicator):
* lisp/mpc.el (mpc--debug):
* lisp/net/browse-url.el (browse-url-mail):
* lisp/net/eww.el (eww-update-header-line-format):
* lisp/net/newst-backend.el (newsticker-save-item):
* lisp/net/rcirc.el (rcirc-sentinel):
* lisp/net/soap-client.el (soap-decode-date-time):
* lisp/nxml/rng-cmpct.el (rng-c-literal-2-re):
* lisp/nxml/xmltok.el (let*):
* lisp/obsolete/nnir.el (nnir-run-swish-e, nnir-run-hyrex)
(nnir-run-find-grep):
* lisp/play/dunnet.el (dun-doassign):
* lisp/play/handwrite.el (handwrite):
* lisp/proced.el (proced-format-args):
* lisp/profiler.el (profiler-report-header-line-format):
* lisp/progmodes/gdb-mi.el (gdb-mi-quote):
* lisp/progmodes/make-mode.el (makefile-bsdmake-rule-action-regex)
(makefile-make-font-lock-keywords):
* lisp/progmodes/prolog.el (prolog-guess-fill-prefix):
* lisp/progmodes/ruby-mode.el (ruby-toggle-string-quotes):
* lisp/progmodes/sql.el (sql-remove-tabs-filter, sql-str-literal):
* lisp/progmodes/which-func.el (which-func-current):
* lisp/replace.el (query-replace-read-from)
(occur-engine, replace-quote):
* lisp/select.el (xselect--encode-string):
* lisp/ses.el (ses-export-tab):
* lisp/subr.el (shell-quote-argument):
* lisp/term/pc-win.el (msdos-show-help):
* lisp/term/w32-win.el (w32--set-selection):
* lisp/term/xterm.el (gui-backend-set-selection):
* lisp/textmodes/picture.el (picture-tab-search):
* lisp/thumbs.el (thumbs-call-setroot-command):
* lisp/tooltip.el (tooltip-show-help-non-mode):
* lisp/transient.el (transient-format-key):
* lisp/url/url-mailto.el (url-mailto):
* lisp/vc/log-edit.el (log-edit-changelog-ours-p):
* lisp/vc/vc-bzr.el (vc-bzr-status):
* lisp/vc/vc-hg.el (vc-hg--glob-to-pcre):
* lisp/vc/vc-svn.el (vc-svn-after-dir-status):
* lisp/xdg.el (xdg-desktop-strings):
* test/lisp/electric-tests.el (defun):
* test/lisp/term-tests.el (term-simple-lines):
* test/lisp/time-stamp-tests.el (formatz-mod-del-colons):
* test/lisp/wdired-tests.el (wdired-test-bug32173-01)
(wdired-test-unfinished-edit-01):
* test/src/json-tests.el (json-parse-with-custom-null-and-false-objects):
Use `string-replace` instead of `replace-regexp-in-string`.
2021-08-08 16:58:46 +00:00
|
|
|
|
(setq help (string-replace "\n" ", " help))
|
2009-03-16 02:42:45 +00:00
|
|
|
|
(unless (or tooltip-previous-message
|
2014-04-24 15:02:56 +00:00
|
|
|
|
(equal-including-properties help (current-message))
|
2009-04-06 23:52:41 +00:00
|
|
|
|
(and (stringp tooltip-help-message)
|
2014-04-24 15:02:56 +00:00
|
|
|
|
(equal-including-properties tooltip-help-message
|
|
|
|
|
(current-message))))
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(setq tooltip-previous-message (current-message)))
|
2009-04-06 23:52:41 +00:00
|
|
|
|
(setq tooltip-help-message help)
|
2017-10-07 12:04:37 +00:00
|
|
|
|
(let ((message-truncate-lines
|
|
|
|
|
(or (not (display-graphic-p)) (not tooltip-resize-echo-area)))
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(message-log-max nil))
|
2009-03-16 02:42:45 +00:00
|
|
|
|
(message "%s" help)))
|
2008-04-19 19:30:53 +00:00
|
|
|
|
((stringp tooltip-previous-message)
|
|
|
|
|
(let ((message-log-max nil))
|
|
|
|
|
(message "%s" tooltip-previous-message)
|
|
|
|
|
(setq tooltip-previous-message nil)))
|
2019-09-16 20:17:51 +00:00
|
|
|
|
;; Only stop displaying the message when the current message is our own.
|
|
|
|
|
;; This has the advantage of not clearing the echo area when
|
|
|
|
|
;; running after an error message was displayed (Bug#3192).
|
|
|
|
|
((equal-including-properties tooltip-help-message (current-message))
|
2008-04-19 19:30:53 +00:00
|
|
|
|
(message nil)))))
|
2008-04-09 09:34:16 +00:00
|
|
|
|
|
Add support for the Haiku operating system and its window system
* .gitignore: Add binaries specific to Haiku.
* Makefie.in (HAVE_BE_APP): New variable.
(install-arch-dep): Install Emacs and Emacs.pdmp when
using Haiku.
* configure.ac: Detect and configure for Haiku and
various related configurations.
(be-app, be-freetype, be-cairo): New options.
(HAVE_BE_APP, HAIKU_OBJ, HAIKU_CXX_OBJ)
(HAIKU_LIBS, HAIKU_CFLAGS): New variables.
(HAIKU, HAVE_TINY_SPEED_T): New define.
(emacs_config_features): Add BE_APP.
* doc/emacs/Makefile.in (EMACSSOURCES): Add Haiku
appendix.
* doc/emacs/emacs.texi: Add Haiku appendix to menus and
include it.
* doc/emacs/haiku.texi: New Haiku appendix.
* doc/lispref/display.texi (Defining Faces, Window Systems):
Explain meaning of `haiku' as a window system identifier.
(haiku-use-system-tooltips): Explain meaning of system
tooltips on
Haiku.
* doc/lispref/frames.texi (Multiple Terminals): Explain
meaning of haiku as a display type.
(Frame Layout): Clarify section for Haiku frames.
(Size Parameters): Explain limitations of fullwidth and
fullheight on Haiku.
(Management Parameters): Explain limitations of
inhibiting double buffering on builds with Cairo,
and the inability of frames with no-accept-focus to
receive keyboard input on Haiku.
(Font and Color Parameters): Explain the different font
backends available on Haiku.
(Raising and Lowering): Explain that lowering and
restacking frames doesn't work on Haiku.
(Child Frames): Explain oddities of child frame
visibility on Haiku.
* doc/lispref/os.texi (System Environment): Explain
meaning of haiku.
* etc/MACHINES: Add appropriate notices for Haiku.
* etc/NEWS: Document changes.
* etc/PROBLEMS: Document font spacing bug on Haiku.
* lib-src/Makefile.in: Build be-resources binary on
Haiku.
(CXX, CXXFLAGS, NON_CXX_FLAGS, ALL_CXXFLAGS)
(HAVE_BE_APP, HAIKU_LIBS, HAIKU_CFLAGS): New variables.
(DONT_INSTALL): Add be-resources binary if on Haiku.
(be-resources): New target.
* lib-src/be_resources: Add helper binary for setting
resources on the Emacs application.
* lib-src/emacsclient.c (decode_options): Set
alt_display to "be" on Haiku.
* lisp/cus-edit.el (custom-button, custom-button-mouse)
(custom-button-unraised, custom-button-pressed): Update
face definitions for Haiku.
* lisp/cus-start.el: Add haiku-debug-on-fatal-error and
haiku-use-system-tooltips.
* lisp/faces.el (face-valid-attribute-values): Clarify
attribute comment for Haiku.
(tool-bar): Add appropriate toolbar color for Haiku.
* lisp/frame.el (haiku-frame-geometry)
(haiku-mouse-absolute-pixel-position)
(haiku-set-mouse-absolute-pixel-position)
(haiku-frame-edges)
(haiku-frame-list-z-order): New function declarations.
(frame-geometry, frame-edges)
(mouse-absolute-pixel-position)
(set-mouse-absolute-pixel-position)
(frame-list-z-order): Call appropriate window system
functions on Haiku.
(display-mouse-p, display-graphic-p)
(display-images-p, display-pixel-height)
(display-pixel-width, display-mm-height)
(display-mm-width, display-backing-store)
(display-save-under, display-planes)
(display-color-cells, display-visual-class): Update type
tests for Haiku.
* lisp/international/mule-cmds.el
(set-coding-system-map): Also
prevent set-terminal-coding-system from appearing in the menu
bar on Haiku.
* lisp/loadup.el: Load Haiku-specific files when built
with Haiku, and don't rename newly built Emacs on Haiku as BFS
doesn't support hard links.
* lisp/menu-bar.el (menu-bar-open): Add for Haiku.
* lisp/mwheel.el (mouse-wheel-down-event): Expect
wheel-up on Haiku.
(mouse-wheel-up-event): Expect wheel-down on Haiku.
(mouse-wheel-left-event): Expect wheel-left on Haiku.
(mouse-wheel-right-event): Expect wheel-right on Haiku.
* lisp/net/browse-url.el
(browse-url--browser-defcustom-type):
Add option for WebPositive.
(browse-url-webpositive-program): New variable.
(browse-url-default-program): Search for WebPositive.
(browse-url-webpositive): New function.
* lisp/net/eww.el (eww-form-submit, eww-form-file)
(eww-form-checkbox, eww-form-select): Define faces
appropriately for Haiku.
* lisp/term/haiku-win.el: New file.
* lisp/tooltip.el (menu-or-popup-active-p): New function
declaration.
(tooltip-show-help): Don't use tooltips on Haiku when a
menu is active.
* lisp/version.el (haiku-get-version-string): New
function declaration.
(emacs-version): Add Haiku version string if
appropriate.
* src/Makefile.in: Also produce binary named "Emacs"
with Haiku resources set.
(CXX, HAIKU_OBJ, HAIKU_CXX_OBJ, HAIKU_LIBS)
(HAIKU_CFLAGS, HAVE_BE_APP, NON_CXX_FLAGS)
(ALL_CXX_FLAGS): New variables.
(.SUFFIXES): Add .cc.
(.cc.o): New target.
(base_obj): Add Haiku C objects.
(doc_obj, obj): Split objects that should scanned for
documentation into doc_obj.
(SOME_MACHINE_OBJECTS): Add appropriate Haiku C objects.
(all): Depend on Emacs and Emacs.pdmp on Haiku.
(LIBES): Add Haiku libraries.
(gl-stamp)
($(etc)/DOC): Scan doc_obj instead of obj
(temacs$(EXEEXT): Use C++ linker on Haiku.
(ctagsfiles3): New variable.
(TAGS): Scan C++ files.
* src/alloc.c (garbage_collect): Mark Haiku display.
* src/dispextern.h (HAVE_NATIVE_TRANSFORMS): Also enable
on Haiku.
(struct image): Add fields for Haiku transforms.
(RGB_PIXEL_COLOR): Define to unsigned long on Haiku as
well.
(sit_for): Also check USABLE_SIGPOLL.
(init_display_interactive): Set initial window system to
Haiku on Haiku builds.
* src/emacs.c (main): Define Haiku syms and init haiku
clipboard.
(shut_down_emacs): Quit BApplication on Haiku and
trigger debug
on aborts if haiku_debug_on_fatal_error.
(Vsystem_type): Update docstring.
* src/fileio.c (next-read-file-uses-dialog-p): Enable on
Haiku.
* src/filelock.c (WTMP_FILE): Only define if BOOT_TIME
is also defined.
* src/floatfns.c (double_integer_scale): Work around
Haiku libroot brain damage.
* src/font.c (syms_of_font): Define appropriate font
driver symbols for Haiku builds with various options.
* src/font.h: Also enable ftcrfont on Haiku builds with
Cairo.
(font_data_structures_may_be_ill_formed): Also enable on
Haiku builds that have Cairo.
* src/frame.c (Fframep): Update doc-string for Haiku
builds and return haiku if appropriate.
(syms_of_frame): New symbol `haiku'.
* src/frame.h (struct frame): Add output data for Haiku.
(FRAME_HAIKU_P): New macro.
(FRAME_WINDOW_P): Test for Haiku frames as well.
* src/ftcrfont.c (RED_FROM_ULONG, GREEN_FROM_ULONG)
(BLUE_FROM_ULONG): New macros.
(ftcrfont_draw): Add haiku specific code for Haiku
builds with Cairo.
* src/ftfont.c (ftfont_open): Set face.
(ftfont_has_char, ftfont_text_extents): Work around
crash.
(syms_of_ftfont): New symbol `mono'.
* src/ftfont.h (struct font_info): Enable Cairo-specific
fields for Cairo builds on Haiku.
* src/haiku_draw_support.cc:
* src/haiku_font_support.cc:
* src/haiku_io.c:
* src/haiku_select.cc:
* src/haiku_support.cc:
* src/haiku_support.h:
* src/haikufns.c:
* src/haikufont.c:
* src/haikugui.h:
* src/haikuimage.c:
* src/haikumenu.c:
* src/haikuselect.c:
* src/haikuselect.h:
* src/haikuterm.c:
* src/haikuterm.h: Add new files for Haiku windowing
support.
* src/haiku.c: Add new files for Haiku operating system
support.
* src/image.c: Implement image transforms and native XPM
support
on Haiku.
(GET_PIXEL, PUT_PIXEL, NO_PIXMAP)
(PIX_MASK_RETAIN, PIX_MASK_DRAW)
(RGB_TO_ULONG, RED_FROM_ULONG, GREEN_FROM_ULONG)
(BLUE_FROM_ULONG, RED16_FROM_ULONG, GREEN16_FROM_ULONG)
(BLUE16_FROM_ULONG): Define to appropriate values on
Haiku.
(image_create_bitmap_from_data): Add Haiku support.
(image_create_bitmap_from_file): Add TODO on Haiku.
(free_bitmap_record): Free bitmap on Haiku.
(image_size_in_bytes): Implement for Haiku bitmaps.
(image_set_transform): Implement on Haiku.
(image_create_x_image_and_pixmap_1): Implement on Haiku,
24-bit or 1-bit only.
(image_destroy_x_image, image_get_x_image): Use correct
img and pixmap values on Haiku.
(lookup_rgb_color): Use correct macro on Haiku.
(image_to_emacs_colors): Implement on Haiku.
(image_disable_image): Disable on Haiku.
(image_can_use_native_api): Test for translator presence
on Haiku.
(native_image_load): Use translator on Haiku.
(imagemagick_load_image): Add Haiku-specific quirks.
(Fimage_transforms_p): Allow rotate90 on Haiku.
(image_types): Enable native XPM support on Haiku.
(syms_of_image): Enable XPM images on Haiku.
* src/keyboard.c (kbd_buffer_get_event)
(handle_async_input, handle_input_available_signal)
(handle_user_signal, Fset_input_interrupt_mode)
(init_keyboard): Check for USABLE_SIGPOLL along with
USABLE_SIGIO.
* src/lisp.h (pD): Work around broken Haiku headers.
(HAVE_EXT_MENU_BAR): Define on Haiku.
(handle_input_available_signal): Enable if we just have
SIGPOLL as well.
* src/menu.c (have_boxes): Return true on Haiku.
(single_menu_item): Enable toolkit menus on Haiku.
(find_and_call_menu_selection): Also enable on Haiku.
* src/process.c (keyboard_bit_set): Enable with only
usable SIGPOLL.
(wait_reading_process_output): Test for SIGPOLL as well
as SIGIO availability.
* src/sound.c (sound_perror, vox_open)
(vox_configure, vox_close): Enable for usable SIGPOLL as
well.
* src/sysdep.c (sys_subshell): Enable for usable SIGPOLL.
(reset_sigio): Make conditional on F_SETOWN.
(request_sigio, unrequest_sigio)
(emacs_sigaction_init): Also handle SIGPOLLs.
(init_sys_modes): Disable TCXONC usage on Haiku, as it
doesn't have any ttys other than pseudo ttys, which don't
support C-s/C-q flow control, and causes compiler warnings.
(speeds): Disable high speeds if HAVE_TINY_SPEED_T.
* src/termhooks.h (enum output_method): Add output_haiku.
(struct terminal): Add Haiku display info.
(TERMINAL_FONT_CACHE): Enable for Haiku.
* src/terminal.c (Fterminal_live_p): Return `haiku' if
appropriate.
* src/verbose.mk.in (AM_V_CXX, AM_V_CXXLD): New logging
variables.
* src/xdisp.c (redisplay_internal)
(note_mouse_highlight): Return on Haiku if a popup is activated.
(display_menu_bar): Return on Haiku if frame is a Haiku
frame.
* src/xfaces.c (GCGraphicsExposures): Enable correctly on Haiku.
(x_create_gc): Enable dummy GC code on Haiku.
* src/xfns.c (x-server-version, x-file-dialog): Add
Haiku specifics to doc strings.
* src/xterm.c (syms_of_xterm): Add Haiku information to
doc string.
2021-11-20 13:30:08 +00:00
|
|
|
|
(declare-function menu-or-popup-active-p "xmenu.c" ())
|
|
|
|
|
|
2005-06-14 21:13:28 +00:00
|
|
|
|
(defun tooltip-show-help (msg)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
"Function installed as `show-help-function'.
|
|
|
|
|
MSG is either a help string to display, or nil to cancel the display."
|
2022-05-03 08:12:24 +00:00
|
|
|
|
(if (and (display-graphic-p)
|
|
|
|
|
;; Tooltips can't be displayed on top of the global menu
|
|
|
|
|
;; bar on NS.
|
|
|
|
|
(or (not (eq window-system 'ns))
|
2022-05-03 08:13:59 +00:00
|
|
|
|
(not (menu-or-popup-active-p))))
|
2009-04-28 02:16:49 +00:00
|
|
|
|
(let ((previous-help tooltip-help-message))
|
|
|
|
|
(setq tooltip-help-message msg)
|
|
|
|
|
(cond ((null msg)
|
|
|
|
|
;; Cancel display. This also cancels a delayed tip, if
|
|
|
|
|
;; there is one.
|
|
|
|
|
(tooltip-hide))
|
2022-01-17 13:42:31 +00:00
|
|
|
|
((equal previous-help msg)
|
|
|
|
|
;; Same help as before (but possibly the mouse has
|
|
|
|
|
;; moved or the text properties have changed). Keep
|
|
|
|
|
;; what we have. If only text properties have changed,
|
|
|
|
|
;; the tooltip won't be updated, but that shouldn't
|
|
|
|
|
;; occur.
|
2009-04-28 02:16:49 +00:00
|
|
|
|
)
|
|
|
|
|
(t
|
|
|
|
|
;; A different help. Remove a previous tooltip, and
|
|
|
|
|
;; display a new one, with some delay.
|
|
|
|
|
(tooltip-hide)
|
|
|
|
|
(tooltip-start-delayed-tip))))
|
|
|
|
|
;; On text-only displays, try `tooltip-show-help-non-mode'.
|
|
|
|
|
(tooltip-show-help-non-mode msg)))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
2011-04-19 13:44:55 +00:00
|
|
|
|
(defun tooltip-help-tips (_event)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
"Hook function to display a help tooltip.
|
2008-10-29 12:10:20 +00:00
|
|
|
|
This is installed on the hook `tooltip-functions', which
|
|
|
|
|
is run when the timer with id `tooltip-timeout-id' fires.
|
1999-07-21 21:43:52 +00:00
|
|
|
|
Value is non-nil if this function handled the tip."
|
|
|
|
|
(when (stringp tooltip-help-message)
|
2022-07-08 13:07:55 +00:00
|
|
|
|
(tooltip-show tooltip-help-message (not tooltip-mode))
|
1999-07-21 21:43:52 +00:00
|
|
|
|
t))
|
|
|
|
|
|
2002-11-30 20:58:38 +00:00
|
|
|
|
(provide 'tooltip)
|
1999-07-21 21:43:52 +00:00
|
|
|
|
|
|
|
|
|
;;; tooltip.el ends here
|