2007-02-06 10:25:21 +00:00
|
|
|
|
/* gtktooltip.c
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2006-2007 Imendio AB
|
|
|
|
|
* Contact: Kristian Rietveld <kris@imendio.com>
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library 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
|
|
|
|
|
* Library General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2007-02-06 10:25:21 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
|
#include "config.h"
|
2010-04-15 11:03:43 +00:00
|
|
|
|
|
2010-09-14 01:33:06 +00:00
|
|
|
|
#include "gtktooltip.h"
|
2014-10-20 02:51:21 +00:00
|
|
|
|
#include "gtktooltipprivate.h"
|
2010-09-14 01:33:06 +00:00
|
|
|
|
|
2010-04-15 11:03:43 +00:00
|
|
|
|
#include <math.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
#include "gtkintl.h"
|
|
|
|
|
#include "gtkwindow.h"
|
|
|
|
|
#include "gtkmain.h"
|
2012-03-03 18:22:22 +00:00
|
|
|
|
#include "gtksettings.h"
|
2010-09-14 01:33:06 +00:00
|
|
|
|
#include "gtksizerequest.h"
|
2012-03-03 18:22:22 +00:00
|
|
|
|
#include "gtkstylecontext.h"
|
2015-11-08 15:46:23 +00:00
|
|
|
|
#include "gtktooltipwindowprivate.h"
|
2011-04-26 22:25:48 +00:00
|
|
|
|
#include "gtkwindowprivate.h"
|
2016-05-08 13:52:56 +00:00
|
|
|
|
#include "gtkwidgetprivate.h"
|
2015-02-18 22:25:05 +00:00
|
|
|
|
#include "gtkaccessible.h"
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2013-02-07 11:27:00 +00:00
|
|
|
|
#ifdef GDK_WINDOWING_WAYLAND
|
|
|
|
|
#include "wayland/gdkwayland.h"
|
|
|
|
|
#endif
|
2014-05-19 22:03:30 +00:00
|
|
|
|
#ifdef GDK_WINDOWING_MIR
|
|
|
|
|
#include "mir/gdkmir.h"
|
|
|
|
|
#endif
|
2013-02-07 11:27:00 +00:00
|
|
|
|
|
|
|
|
|
|
2010-10-02 22:58:38 +00:00
|
|
|
|
/**
|
|
|
|
|
* SECTION:gtktooltip
|
|
|
|
|
* @Short_description: Add tips to your widgets
|
|
|
|
|
* @Title: GtkTooltip
|
|
|
|
|
*
|
|
|
|
|
* Basic tooltips can be realized simply by using gtk_widget_set_tooltip_text()
|
|
|
|
|
* or gtk_widget_set_tooltip_markup() without any explicit tooltip object.
|
|
|
|
|
*
|
|
|
|
|
* When you need a tooltip with a little more fancy contents, like adding an
|
|
|
|
|
* image, or you want the tooltip to have different contents per #GtkTreeView
|
|
|
|
|
* row or cell, you will have to do a little more work:
|
2015-10-28 15:49:00 +00:00
|
|
|
|
*
|
2014-02-02 06:07:39 +00:00
|
|
|
|
* - Set the #GtkWidget:has-tooltip property to %TRUE, this will make GTK+
|
|
|
|
|
* monitor the widget for motion and related events which are needed to
|
|
|
|
|
* determine when and where to show a tooltip.
|
|
|
|
|
*
|
|
|
|
|
* - Connect to the #GtkWidget::query-tooltip signal. This signal will be
|
|
|
|
|
* emitted when a tooltip is supposed to be shown. One of the arguments passed
|
|
|
|
|
* to the signal handler is a GtkTooltip object. This is the object that we
|
|
|
|
|
* are about to display as a tooltip, and can be manipulated in your callback
|
|
|
|
|
* using functions like gtk_tooltip_set_icon(). There are functions for setting
|
2014-02-07 18:01:26 +00:00
|
|
|
|
* the tooltip’s markup, setting an image from a named icon, or even putting in
|
2014-02-02 06:07:39 +00:00
|
|
|
|
* a custom widget.
|
|
|
|
|
*
|
|
|
|
|
* Return %TRUE from your query-tooltip handler. This causes the tooltip to be
|
|
|
|
|
* show. If you return %FALSE, it will not be shown.
|
2010-10-02 22:58:38 +00:00
|
|
|
|
*
|
|
|
|
|
* In the probably rare case where you want to have even more control over the
|
|
|
|
|
* tooltip that is about to be shown, you can set your own #GtkWindow which
|
|
|
|
|
* will be used as tooltip window. This works as follows:
|
2015-10-28 15:49:00 +00:00
|
|
|
|
*
|
2014-02-02 06:07:39 +00:00
|
|
|
|
* - Set #GtkWidget:has-tooltip and connect to #GtkWidget::query-tooltip as before.
|
|
|
|
|
* Use gtk_widget_set_tooltip_window() to set a #GtkWindow created by you as
|
|
|
|
|
* tooltip window.
|
|
|
|
|
*
|
|
|
|
|
* - In the #GtkWidget::query-tooltip callback you can access your window using
|
|
|
|
|
* gtk_widget_get_tooltip_window() and manipulate as you wish. The semantics of
|
|
|
|
|
* the return value are exactly as before, return %TRUE to show the window,
|
|
|
|
|
* %FALSE to not show it.
|
2010-10-02 22:58:38 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2013-07-08 17:13:23 +00:00
|
|
|
|
#define HOVER_TIMEOUT 500
|
|
|
|
|
#define BROWSE_TIMEOUT 60
|
|
|
|
|
#define BROWSE_DISABLE_TIMEOUT 500
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
#define GTK_TOOLTIP_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TOOLTIP, GtkTooltipClass))
|
|
|
|
|
#define GTK_IS_TOOLTIP_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TOOLTIP))
|
|
|
|
|
#define GTK_TOOLTIP_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TOOLTIP, GtkTooltipClass))
|
|
|
|
|
|
|
|
|
|
typedef struct _GtkTooltipClass GtkTooltipClass;
|
|
|
|
|
|
|
|
|
|
struct _GtkTooltip
|
|
|
|
|
{
|
|
|
|
|
GObject parent_instance;
|
|
|
|
|
|
|
|
|
|
GtkWidget *window;
|
|
|
|
|
|
|
|
|
|
GtkWindow *current_window;
|
|
|
|
|
GtkWidget *keyboard_widget;
|
|
|
|
|
|
|
|
|
|
GtkWidget *tooltip_widget;
|
|
|
|
|
|
|
|
|
|
gdouble last_x;
|
|
|
|
|
gdouble last_y;
|
|
|
|
|
GdkWindow *last_window;
|
|
|
|
|
|
|
|
|
|
guint timeout_id;
|
|
|
|
|
guint browse_mode_timeout_id;
|
|
|
|
|
|
2007-07-13 14:25:21 +00:00
|
|
|
|
GdkRectangle tip_area;
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
guint browse_mode_enabled : 1;
|
|
|
|
|
guint keyboard_mode_enabled : 1;
|
2007-07-13 14:25:21 +00:00
|
|
|
|
guint tip_area_set : 1;
|
2008-05-28 14:00:31 +00:00
|
|
|
|
guint custom_was_reset : 1;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct _GtkTooltipClass
|
|
|
|
|
{
|
|
|
|
|
GObjectClass parent_class;
|
|
|
|
|
};
|
|
|
|
|
|
2010-03-01 06:47:38 +00:00
|
|
|
|
#define GTK_TOOLTIP_VISIBLE(tooltip) ((tooltip)->current_window && gtk_widget_get_visible (GTK_WIDGET((tooltip)->current_window)))
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2009-08-03 19:39:34 +00:00
|
|
|
|
static void gtk_tooltip_dispose (GObject *object);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
static void gtk_tooltip_window_hide (GtkWidget *widget,
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
static void gtk_tooltip_display_closed (GdkDisplay *display,
|
|
|
|
|
gboolean was_error,
|
|
|
|
|
GtkTooltip *tooltip);
|
2007-12-17 15:33:45 +00:00
|
|
|
|
static void gtk_tooltip_set_last_window (GtkTooltip *tooltip,
|
|
|
|
|
GdkWindow *window);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2017-08-26 16:23:02 +00:00
|
|
|
|
static void gtk_tooltip_handle_event_internal (GdkEventType event_type,
|
|
|
|
|
GdkWindow *window,
|
|
|
|
|
gdouble dx,
|
|
|
|
|
gdouble dy);
|
2016-06-06 01:47:16 +00:00
|
|
|
|
|
2016-05-06 04:45:05 +00:00
|
|
|
|
static inline GQuark tooltip_quark (void)
|
|
|
|
|
{
|
|
|
|
|
static GQuark quark;
|
|
|
|
|
|
|
|
|
|
if G_UNLIKELY (quark == 0)
|
|
|
|
|
quark = g_quark_from_static_string ("gdk-display-current-tooltip");
|
|
|
|
|
return quark;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define quark_current_tooltip tooltip_quark()
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GtkTooltip, gtk_tooltip, G_TYPE_OBJECT);
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_tooltip_class_init (GtkTooltipClass *klass)
|
|
|
|
|
{
|
|
|
|
|
GObjectClass *object_class;
|
|
|
|
|
|
|
|
|
|
object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
2009-08-03 19:39:34 +00:00
|
|
|
|
object_class->dispose = gtk_tooltip_dispose;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_tooltip_init (GtkTooltip *tooltip)
|
|
|
|
|
{
|
|
|
|
|
tooltip->timeout_id = 0;
|
|
|
|
|
tooltip->browse_mode_timeout_id = 0;
|
|
|
|
|
|
|
|
|
|
tooltip->browse_mode_enabled = FALSE;
|
|
|
|
|
tooltip->keyboard_mode_enabled = FALSE;
|
|
|
|
|
|
|
|
|
|
tooltip->current_window = NULL;
|
|
|
|
|
tooltip->keyboard_widget = NULL;
|
|
|
|
|
|
|
|
|
|
tooltip->tooltip_widget = NULL;
|
|
|
|
|
|
|
|
|
|
tooltip->last_window = NULL;
|
|
|
|
|
|
2015-11-08 15:46:23 +00:00
|
|
|
|
tooltip->window = gtk_tooltip_window_new ();
|
|
|
|
|
g_signal_connect (tooltip->window, "hide",
|
|
|
|
|
G_CALLBACK (gtk_tooltip_window_hide),
|
|
|
|
|
tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2009-08-03 19:39:34 +00:00
|
|
|
|
gtk_tooltip_dispose (GObject *object)
|
2007-02-06 10:25:21 +00:00
|
|
|
|
{
|
|
|
|
|
GtkTooltip *tooltip = GTK_TOOLTIP (object);
|
|
|
|
|
|
|
|
|
|
if (tooltip->timeout_id)
|
|
|
|
|
{
|
|
|
|
|
g_source_remove (tooltip->timeout_id);
|
|
|
|
|
tooltip->timeout_id = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tooltip->browse_mode_timeout_id)
|
|
|
|
|
{
|
|
|
|
|
g_source_remove (tooltip->browse_mode_timeout_id);
|
|
|
|
|
tooltip->browse_mode_timeout_id = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-25 02:01:04 +00:00
|
|
|
|
gtk_tooltip_set_custom (tooltip, NULL);
|
2007-12-17 15:33:45 +00:00
|
|
|
|
gtk_tooltip_set_last_window (tooltip, NULL);
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
if (tooltip->window)
|
|
|
|
|
{
|
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
|
|
|
|
|
display = gtk_widget_get_display (tooltip->window);
|
|
|
|
|
g_signal_handlers_disconnect_by_func (display,
|
|
|
|
|
gtk_tooltip_display_closed,
|
|
|
|
|
tooltip);
|
|
|
|
|
gtk_widget_destroy (tooltip->window);
|
2009-08-03 19:39:34 +00:00
|
|
|
|
tooltip->window = NULL;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
2007-02-06 12:11:33 +00:00
|
|
|
|
|
2009-08-03 19:39:34 +00:00
|
|
|
|
G_OBJECT_CLASS (gtk_tooltip_parent_class)->dispose (object);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* public API */
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* gtk_tooltip_set_markup:
|
2007-05-26 20:29:26 +00:00
|
|
|
|
* @tooltip: a #GtkTooltip
|
2014-02-07 02:07:03 +00:00
|
|
|
|
* @markup: (allow-none): a markup string (see [Pango markup format][PangoMarkupFormat]) or %NULL
|
2007-02-06 10:25:21 +00:00
|
|
|
|
*
|
2007-05-26 20:29:26 +00:00
|
|
|
|
* Sets the text of the tooltip to be @markup, which is marked up
|
2014-02-07 02:07:03 +00:00
|
|
|
|
* with the [Pango text markup language][PangoMarkupFormat].
|
2007-02-06 10:25:21 +00:00
|
|
|
|
* If @markup is %NULL, the label will be hidden.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_tooltip_set_markup (GtkTooltip *tooltip,
|
|
|
|
|
const gchar *markup)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_TOOLTIP (tooltip));
|
|
|
|
|
|
2015-11-08 15:46:23 +00:00
|
|
|
|
gtk_tooltip_window_set_label_markup (GTK_TOOLTIP_WINDOW (tooltip->window), markup);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-06-15 18:24:55 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_tooltip_set_text:
|
|
|
|
|
* @tooltip: a #GtkTooltip
|
2010-02-19 16:53:17 +00:00
|
|
|
|
* @text: (allow-none): a text string or %NULL
|
2007-06-15 18:24:55 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the text of the tooltip to be @text. If @text is %NULL, the label
|
|
|
|
|
* will be hidden. See also gtk_tooltip_set_markup().
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_tooltip_set_text (GtkTooltip *tooltip,
|
|
|
|
|
const gchar *text)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_TOOLTIP (tooltip));
|
|
|
|
|
|
2015-11-08 15:46:23 +00:00
|
|
|
|
gtk_tooltip_window_set_label_text (GTK_TOOLTIP_WINDOW (tooltip->window), text);
|
2007-06-15 18:24:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_tooltip_set_icon:
|
|
|
|
|
* @tooltip: a #GtkTooltip
|
2017-11-30 03:17:59 +00:00
|
|
|
|
* @texture: (allow-none): a #GdkTexture, or %NULL
|
2007-02-06 10:25:21 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the icon of the tooltip (which is in front of the text) to be
|
2017-11-30 03:17:59 +00:00
|
|
|
|
* @texture. If @texure is %NULL, the image will be hidden.
|
2007-02-06 10:25:21 +00:00
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_tooltip_set_icon (GtkTooltip *tooltip,
|
2017-11-30 03:17:59 +00:00
|
|
|
|
GdkTexture *texture)
|
2007-02-06 10:25:21 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_TOOLTIP (tooltip));
|
2017-11-30 03:17:59 +00:00
|
|
|
|
g_return_if_fail (texture == NULL || GDK_IS_TEXTURE (texture));
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2017-11-30 03:17:59 +00:00
|
|
|
|
gtk_tooltip_window_set_image_icon (GTK_TOOLTIP_WINDOW (tooltip->window), texture);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-12-14 05:00:51 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_tooltip_set_icon_from_icon_name:
|
|
|
|
|
* @tooltip: a #GtkTooltip
|
2010-02-19 16:53:17 +00:00
|
|
|
|
* @icon_name: (allow-none): an icon name, or %NULL
|
2007-12-14 05:00:51 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the icon of the tooltip (which is in front of the text) to be
|
|
|
|
|
* the icon indicated by @icon_name with the size indicated
|
|
|
|
|
* by @size. If @icon_name is %NULL, the image will be hidden.
|
|
|
|
|
*/
|
|
|
|
|
void
|
2009-10-13 12:53:09 +00:00
|
|
|
|
gtk_tooltip_set_icon_from_icon_name (GtkTooltip *tooltip,
|
2017-01-20 01:02:44 +00:00
|
|
|
|
const gchar *icon_name)
|
2007-12-14 05:00:51 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_TOOLTIP (tooltip));
|
|
|
|
|
|
2015-11-08 15:46:23 +00:00
|
|
|
|
gtk_tooltip_window_set_image_icon_from_name (GTK_TOOLTIP_WINDOW (tooltip->window),
|
2017-01-20 01:02:44 +00:00
|
|
|
|
icon_name);
|
2009-10-13 12:53:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2009-11-01 21:12:43 +00:00
|
|
|
|
* gtk_tooltip_set_icon_from_gicon:
|
2009-10-13 12:53:09 +00:00
|
|
|
|
* @tooltip: a #GtkTooltip
|
2010-02-19 16:53:17 +00:00
|
|
|
|
* @gicon: (allow-none): a #GIcon representing the icon, or %NULL
|
2009-11-01 21:12:43 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the icon of the tooltip (which is in front of the text)
|
|
|
|
|
* to be the icon indicated by @gicon with the size indicated
|
|
|
|
|
* by @size. If @gicon is %NULL, the image will be hidden.
|
2009-10-13 12:53:09 +00:00
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_tooltip_set_icon_from_gicon (GtkTooltip *tooltip,
|
2017-01-20 01:02:44 +00:00
|
|
|
|
GIcon *gicon)
|
2009-10-13 12:53:09 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_TOOLTIP (tooltip));
|
|
|
|
|
|
2015-11-08 15:46:23 +00:00
|
|
|
|
gtk_tooltip_window_set_image_icon_from_gicon (GTK_TOOLTIP_WINDOW (tooltip->window),
|
2017-01-20 01:02:44 +00:00
|
|
|
|
gicon);
|
2007-12-14 05:00:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_tooltip_set_custom:
|
2007-05-26 20:29:26 +00:00
|
|
|
|
* @tooltip: a #GtkTooltip
|
2010-02-19 16:53:17 +00:00
|
|
|
|
* @custom_widget: (allow-none): a #GtkWidget, or %NULL to unset the old custom widget.
|
2007-02-06 10:25:21 +00:00
|
|
|
|
*
|
2009-05-25 02:01:04 +00:00
|
|
|
|
* Replaces the widget packed into the tooltip with
|
|
|
|
|
* @custom_widget. @custom_widget does not get destroyed when the tooltip goes
|
|
|
|
|
* away.
|
2007-05-26 20:29:26 +00:00
|
|
|
|
* By default a box with a #GtkImage and #GtkLabel is embedded in
|
|
|
|
|
* the tooltip, which can be configured using gtk_tooltip_set_markup()
|
|
|
|
|
* and gtk_tooltip_set_icon().
|
2007-02-06 10:25:21 +00:00
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_tooltip_set_custom (GtkTooltip *tooltip,
|
|
|
|
|
GtkWidget *custom_widget)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_TOOLTIP (tooltip));
|
2015-11-08 15:46:23 +00:00
|
|
|
|
g_return_if_fail (custom_widget == NULL || GTK_IS_WIDGET (custom_widget));
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2008-05-28 14:00:31 +00:00
|
|
|
|
/* The custom widget has been updated from the query-tooltip
|
|
|
|
|
* callback, so we do not want to reset the custom widget later on.
|
|
|
|
|
*/
|
|
|
|
|
tooltip->custom_was_reset = TRUE;
|
|
|
|
|
|
2015-11-08 15:46:23 +00:00
|
|
|
|
gtk_tooltip_window_set_custom_widget (GTK_TOOLTIP_WINDOW (tooltip->window), custom_widget);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-13 14:25:21 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_tooltip_set_tip_area:
|
|
|
|
|
* @tooltip: a #GtkTooltip
|
|
|
|
|
* @rect: a #GdkRectangle
|
|
|
|
|
*
|
|
|
|
|
* Sets the area of the widget, where the contents of this tooltip apply,
|
|
|
|
|
* to be @rect (in widget coordinates). This is especially useful for
|
|
|
|
|
* properly setting tooltips on #GtkTreeView rows and cells, #GtkIconViews,
|
|
|
|
|
* etc.
|
|
|
|
|
*
|
|
|
|
|
* For setting tooltips on #GtkTreeView, please refer to the convenience
|
|
|
|
|
* functions for this: gtk_tree_view_set_tooltip_row() and
|
|
|
|
|
* gtk_tree_view_set_tooltip_cell().
|
|
|
|
|
*/
|
|
|
|
|
void
|
2008-01-25 09:30:40 +00:00
|
|
|
|
gtk_tooltip_set_tip_area (GtkTooltip *tooltip,
|
|
|
|
|
const GdkRectangle *rect)
|
2007-07-13 14:25:21 +00:00
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_TOOLTIP (tooltip));
|
|
|
|
|
|
|
|
|
|
if (!rect)
|
|
|
|
|
tooltip->tip_area_set = FALSE;
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
tooltip->tip_area_set = TRUE;
|
|
|
|
|
tooltip->tip_area = *rect;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
/**
|
|
|
|
|
* gtk_tooltip_trigger_tooltip_query:
|
2007-07-09 19:29:51 +00:00
|
|
|
|
* @display: a #GdkDisplay
|
2007-02-06 10:25:21 +00:00
|
|
|
|
*
|
|
|
|
|
* Triggers a new tooltip query on @display, in order to update the current
|
|
|
|
|
* visible tooltip, or to show/hide the current tooltip. This function is
|
|
|
|
|
* useful to call when, for example, the state of the widget changed by a
|
|
|
|
|
* key press.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
gtk_tooltip_trigger_tooltip_query (GdkDisplay *display)
|
|
|
|
|
{
|
|
|
|
|
gint x, y;
|
|
|
|
|
GdkWindow *window;
|
2010-12-27 00:05:40 +00:00
|
|
|
|
GdkDevice *device;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
/* Trigger logic as if the mouse moved */
|
2015-12-15 22:17:37 +00:00
|
|
|
|
device = gdk_seat_get_pointer (gdk_display_get_default_seat (display));
|
2010-12-27 17:45:39 +00:00
|
|
|
|
window = gdk_device_get_window_at_position (device, &x, &y);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
if (!window)
|
|
|
|
|
return;
|
|
|
|
|
|
2017-08-26 16:23:02 +00:00
|
|
|
|
gtk_tooltip_handle_event_internal (GDK_MOTION_NOTIFY, window, x, y);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_tooltip_window_hide (GtkWidget *widget,
|
|
|
|
|
gpointer user_data)
|
|
|
|
|
{
|
|
|
|
|
GtkTooltip *tooltip = GTK_TOOLTIP (user_data);
|
|
|
|
|
|
2007-07-24 03:54:16 +00:00
|
|
|
|
gtk_tooltip_set_custom (tooltip, NULL);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-05-26 15:09:11 +00:00
|
|
|
|
GtkWidget *
|
|
|
|
|
_gtk_widget_find_at_coords (GdkWindow *window,
|
|
|
|
|
gint window_x,
|
|
|
|
|
gint window_y,
|
|
|
|
|
gint *widget_x,
|
|
|
|
|
gint *widget_y)
|
2007-02-06 10:25:21 +00:00
|
|
|
|
{
|
|
|
|
|
GtkWidget *event_widget;
|
2018-01-13 07:35:39 +00:00
|
|
|
|
GtkWidget *picked_widget;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2010-05-26 15:09:11 +00:00
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
|
2007-05-24 15:54:23 +00:00
|
|
|
|
gdk_window_get_user_data (window, (void **)&event_widget);
|
|
|
|
|
|
|
|
|
|
if (!event_widget)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2018-01-13 07:35:39 +00:00
|
|
|
|
picked_widget = gtk_widget_pick (event_widget, window_x, window_y);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2018-01-13 07:35:39 +00:00
|
|
|
|
if (picked_widget != NULL)
|
|
|
|
|
gtk_widget_translate_coordinates (event_widget, picked_widget, window_x, window_y, widget_x, widget_y);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2018-01-13 07:35:39 +00:00
|
|
|
|
return picked_widget;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-08-21 10:52:43 +00:00
|
|
|
|
/* Ignores (x, y) on input, translates event coordinates to
|
|
|
|
|
* allocation relative (x, y) of the returned widget.
|
|
|
|
|
*/
|
2007-02-06 10:25:21 +00:00
|
|
|
|
static GtkWidget *
|
2017-08-26 16:23:02 +00:00
|
|
|
|
find_topmost_widget_coords (GdkWindow *window,
|
|
|
|
|
gdouble dx,
|
|
|
|
|
gdouble dy,
|
|
|
|
|
gint *x,
|
|
|
|
|
gint *y)
|
2007-02-06 10:25:21 +00:00
|
|
|
|
{
|
2010-08-11 20:51:01 +00:00
|
|
|
|
GtkAllocation allocation;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
gint tx, ty;
|
|
|
|
|
GtkWidget *tmp;
|
|
|
|
|
|
2007-08-21 10:52:43 +00:00
|
|
|
|
/* Returns coordinates relative to tmp's allocation. */
|
2017-08-26 16:23:02 +00:00
|
|
|
|
tmp = _gtk_widget_find_at_coords (window, dx, dy, &tx, &ty);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2007-07-19 15:03:18 +00:00
|
|
|
|
if (!tmp)
|
2007-07-16 16:39:53 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
|
2007-08-21 10:52:43 +00:00
|
|
|
|
/* Make sure the pointer can actually be on the widget returned. */
|
2010-08-11 20:51:01 +00:00
|
|
|
|
gtk_widget_get_allocation (tmp, &allocation);
|
2014-06-11 04:01:50 +00:00
|
|
|
|
allocation.x = 0;
|
|
|
|
|
allocation.y = 0;
|
|
|
|
|
if (GTK_IS_WINDOW (tmp))
|
|
|
|
|
{
|
|
|
|
|
GtkBorder border;
|
|
|
|
|
_gtk_window_get_shadow_width (GTK_WINDOW (tmp), &border);
|
|
|
|
|
allocation.x = border.left;
|
|
|
|
|
allocation.y = border.top;
|
|
|
|
|
allocation.width -= border.left + border.right;
|
|
|
|
|
allocation.height -= border.top + border.bottom;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tx < allocation.x || tx >= allocation.width ||
|
|
|
|
|
ty < allocation.y || ty >= allocation.height)
|
2007-08-21 10:52:43 +00:00
|
|
|
|
return NULL;
|
2007-07-19 15:03:18 +00:00
|
|
|
|
|
2007-04-25 07:15:49 +00:00
|
|
|
|
if (x)
|
|
|
|
|
*x = tx;
|
|
|
|
|
if (y)
|
|
|
|
|
*y = ty;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gint
|
|
|
|
|
tooltip_browse_mode_expired (gpointer data)
|
|
|
|
|
{
|
|
|
|
|
GtkTooltip *tooltip;
|
2015-09-12 13:14:47 +00:00
|
|
|
|
GdkDisplay *display;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
tooltip = GTK_TOOLTIP (data);
|
|
|
|
|
|
|
|
|
|
tooltip->browse_mode_enabled = FALSE;
|
|
|
|
|
tooltip->browse_mode_timeout_id = 0;
|
|
|
|
|
|
2017-02-05 18:08:56 +00:00
|
|
|
|
if (tooltip->timeout_id)
|
|
|
|
|
{
|
|
|
|
|
g_source_remove (tooltip->timeout_id);
|
|
|
|
|
tooltip->timeout_id = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
/* destroy tooltip */
|
2015-09-12 13:14:47 +00:00
|
|
|
|
display = gtk_widget_get_display (tooltip->window);
|
|
|
|
|
g_object_set_qdata (G_OBJECT (display), quark_current_tooltip, NULL);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_tooltip_display_closed (GdkDisplay *display,
|
|
|
|
|
gboolean was_error,
|
|
|
|
|
GtkTooltip *tooltip)
|
|
|
|
|
{
|
2017-02-05 18:08:56 +00:00
|
|
|
|
if (tooltip->timeout_id)
|
|
|
|
|
{
|
|
|
|
|
g_source_remove (tooltip->timeout_id);
|
|
|
|
|
tooltip->timeout_id = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2015-09-12 13:14:47 +00:00
|
|
|
|
g_object_set_qdata (G_OBJECT (display), quark_current_tooltip, NULL);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-12-17 15:33:45 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_tooltip_set_last_window (GtkTooltip *tooltip,
|
|
|
|
|
GdkWindow *window)
|
|
|
|
|
{
|
2014-08-22 11:13:50 +00:00
|
|
|
|
GtkWidget *window_widget = NULL;
|
|
|
|
|
|
2009-09-30 03:45:03 +00:00
|
|
|
|
if (tooltip->last_window == window)
|
|
|
|
|
return;
|
|
|
|
|
|
2007-12-17 15:33:45 +00:00
|
|
|
|
if (tooltip->last_window)
|
|
|
|
|
g_object_remove_weak_pointer (G_OBJECT (tooltip->last_window),
|
|
|
|
|
(gpointer *) &tooltip->last_window);
|
|
|
|
|
|
|
|
|
|
tooltip->last_window = window;
|
|
|
|
|
|
2015-03-22 15:47:23 +00:00
|
|
|
|
if (tooltip->last_window)
|
2007-12-17 15:33:45 +00:00
|
|
|
|
g_object_add_weak_pointer (G_OBJECT (tooltip->last_window),
|
|
|
|
|
(gpointer *) &tooltip->last_window);
|
2014-08-22 11:13:50 +00:00
|
|
|
|
|
|
|
|
|
if (window)
|
|
|
|
|
gdk_window_get_user_data (window, (gpointer *) &window_widget);
|
|
|
|
|
|
|
|
|
|
if (window_widget)
|
|
|
|
|
window_widget = gtk_widget_get_toplevel (window_widget);
|
|
|
|
|
|
|
|
|
|
if (window_widget &&
|
|
|
|
|
window_widget != tooltip->window &&
|
2014-09-05 13:22:47 +00:00
|
|
|
|
gtk_widget_is_toplevel (window_widget) &&
|
|
|
|
|
GTK_IS_WINDOW (window_widget))
|
2014-08-22 11:13:50 +00:00
|
|
|
|
gtk_window_set_transient_for (GTK_WINDOW (tooltip->window),
|
|
|
|
|
GTK_WINDOW (window_widget));
|
|
|
|
|
else
|
|
|
|
|
gtk_window_set_transient_for (GTK_WINDOW (tooltip->window), NULL);
|
2007-12-17 15:33:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
gtk_tooltip_run_requery (GtkWidget **widget,
|
|
|
|
|
GtkTooltip *tooltip,
|
|
|
|
|
gint *x,
|
|
|
|
|
gint *y)
|
|
|
|
|
{
|
|
|
|
|
gboolean has_tooltip = FALSE;
|
|
|
|
|
gboolean return_value = FALSE;
|
|
|
|
|
|
2018-01-12 19:30:32 +00:00
|
|
|
|
/* Reset tooltip */
|
|
|
|
|
gtk_tooltip_set_markup (tooltip, NULL);
|
|
|
|
|
gtk_tooltip_set_icon (tooltip, NULL);
|
|
|
|
|
gtk_tooltip_set_tip_area (tooltip, NULL);
|
|
|
|
|
|
|
|
|
|
/* See if the custom widget is again set from the query-tooltip
|
|
|
|
|
* callback.
|
|
|
|
|
*/
|
|
|
|
|
tooltip->custom_was_reset = FALSE;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
do
|
|
|
|
|
{
|
2016-05-06 13:38:18 +00:00
|
|
|
|
has_tooltip = gtk_widget_get_has_tooltip (*widget);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
if (has_tooltip)
|
2016-05-07 00:51:25 +00:00
|
|
|
|
return_value = gtk_widget_query_tooltip (*widget, *x, *y, tooltip->keyboard_mode_enabled, tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
if (!return_value)
|
|
|
|
|
{
|
2010-08-11 20:51:01 +00:00
|
|
|
|
GtkWidget *parent = gtk_widget_get_parent (*widget);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
if (parent)
|
|
|
|
|
gtk_widget_translate_coordinates (*widget, parent, *x, *y, x, y);
|
|
|
|
|
|
|
|
|
|
*widget = parent;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
while (*widget);
|
|
|
|
|
|
2008-05-28 14:00:31 +00:00
|
|
|
|
/* If the custom widget was not reset in the query-tooltip
|
|
|
|
|
* callback, we clear it here.
|
|
|
|
|
*/
|
|
|
|
|
if (!tooltip->custom_was_reset)
|
|
|
|
|
gtk_tooltip_set_custom (tooltip, NULL);
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
return return_value;
|
|
|
|
|
}
|
|
|
|
|
|
2010-04-15 11:03:43 +00:00
|
|
|
|
static void
|
|
|
|
|
get_bounding_box (GtkWidget *widget,
|
|
|
|
|
GdkRectangle *bounds)
|
|
|
|
|
{
|
2018-01-13 09:38:13 +00:00
|
|
|
|
GtkWidget *toplevel;
|
2010-08-11 20:51:01 +00:00
|
|
|
|
GtkAllocation allocation;
|
2010-04-15 11:03:43 +00:00
|
|
|
|
GdkWindow *window;
|
|
|
|
|
gint x, y;
|
|
|
|
|
gint w, h;
|
|
|
|
|
gint x1, y1;
|
|
|
|
|
gint x2, y2;
|
|
|
|
|
gint x3, y3;
|
|
|
|
|
gint x4, y4;
|
|
|
|
|
|
|
|
|
|
window = gtk_widget_get_parent_window (widget);
|
2010-08-05 04:12:41 +00:00
|
|
|
|
if (window == NULL)
|
|
|
|
|
window = gtk_widget_get_window (widget);
|
2010-04-15 11:03:43 +00:00
|
|
|
|
|
2010-08-11 20:51:01 +00:00
|
|
|
|
gtk_widget_get_allocation (widget, &allocation);
|
2018-01-13 09:38:13 +00:00
|
|
|
|
|
|
|
|
|
x = allocation.x;
|
|
|
|
|
y = allocation.y;
|
|
|
|
|
w = allocation.width;
|
|
|
|
|
h = allocation.height;
|
|
|
|
|
|
|
|
|
|
toplevel = gtk_widget_get_toplevel (widget);
|
|
|
|
|
if (GTK_IS_WINDOW (toplevel) && !GTK_IS_WINDOW (widget))
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *parent = gtk_widget_get_parent (widget);
|
|
|
|
|
|
|
|
|
|
gtk_widget_translate_coordinates (parent, toplevel,
|
|
|
|
|
x, y,
|
|
|
|
|
&x, &y);
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-11 04:01:50 +00:00
|
|
|
|
if (GTK_IS_WINDOW (widget))
|
2018-01-13 09:38:13 +00:00
|
|
|
|
{
|
|
|
|
|
GtkBorder border = { 0, };
|
|
|
|
|
|
|
|
|
|
_gtk_window_get_shadow_width (GTK_WINDOW (widget), &border);
|
|
|
|
|
x += border.left;
|
|
|
|
|
y += border.right;
|
|
|
|
|
w -= border.left + border.right;
|
|
|
|
|
h -= border.top + border.bottom;
|
|
|
|
|
}
|
2010-04-15 11:03:43 +00:00
|
|
|
|
|
|
|
|
|
gdk_window_get_root_coords (window, x, y, &x1, &y1);
|
|
|
|
|
gdk_window_get_root_coords (window, x + w, y, &x2, &y2);
|
|
|
|
|
gdk_window_get_root_coords (window, x, y + h, &x3, &y3);
|
|
|
|
|
gdk_window_get_root_coords (window, x + w, y + h, &x4, &y4);
|
|
|
|
|
|
|
|
|
|
#define MIN4(a,b,c,d) MIN(MIN(a,b),MIN(c,d))
|
|
|
|
|
#define MAX4(a,b,c,d) MAX(MAX(a,b),MAX(c,d))
|
|
|
|
|
|
|
|
|
|
bounds->x = floor (MIN4 (x1, x2, x3, x4));
|
|
|
|
|
bounds->y = floor (MIN4 (y1, y2, y3, y4));
|
|
|
|
|
bounds->width = ceil (MAX4 (x1, x2, x3, x4)) - bounds->x;
|
|
|
|
|
bounds->height = ceil (MAX4 (y1, y2, y3, y4)) - bounds->y;
|
|
|
|
|
}
|
|
|
|
|
|
2007-07-13 14:25:21 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_tooltip_position (GtkTooltip *tooltip,
|
|
|
|
|
GdkDisplay *display,
|
|
|
|
|
GtkWidget *new_tooltip_widget)
|
|
|
|
|
{
|
2011-04-26 22:25:48 +00:00
|
|
|
|
gint x, y, width, height;
|
2016-04-11 03:01:10 +00:00
|
|
|
|
GdkMonitor *monitor;
|
|
|
|
|
GdkRectangle workarea;
|
2010-05-08 02:19:56 +00:00
|
|
|
|
guint cursor_size;
|
|
|
|
|
GdkRectangle bounds;
|
2014-06-06 21:15:18 +00:00
|
|
|
|
GtkBorder border;
|
2010-05-08 02:19:56 +00:00
|
|
|
|
|
|
|
|
|
#define MAX_DISTANCE 32
|
2007-07-13 14:25:21 +00:00
|
|
|
|
|
2011-04-26 22:25:48 +00:00
|
|
|
|
gtk_widget_realize (GTK_WIDGET (tooltip->current_window));
|
2013-10-15 13:06:26 +00:00
|
|
|
|
gtk_widget_set_visible (GTK_WIDGET (tooltip->current_window), TRUE);
|
2011-04-26 22:25:48 +00:00
|
|
|
|
|
2007-07-13 14:25:21 +00:00
|
|
|
|
tooltip->tooltip_widget = new_tooltip_widget;
|
|
|
|
|
|
2014-06-06 21:15:18 +00:00
|
|
|
|
_gtk_window_get_shadow_width (GTK_WINDOW (tooltip->current_window), &border);
|
|
|
|
|
|
|
|
|
|
width = gtk_widget_get_allocated_width (GTK_WIDGET (tooltip->current_window)) - border.left - border.right;
|
|
|
|
|
height = gtk_widget_get_allocated_height (GTK_WIDGET (tooltip->current_window)) - border.top - border.bottom;
|
2010-05-08 02:19:56 +00:00
|
|
|
|
|
2016-04-11 03:01:10 +00:00
|
|
|
|
monitor = gdk_display_get_monitor_at_point (display, tooltip->last_x, tooltip->last_y);
|
|
|
|
|
gdk_monitor_get_workarea (monitor, &workarea);
|
2010-05-08 02:19:56 +00:00
|
|
|
|
|
|
|
|
|
get_bounding_box (new_tooltip_widget, &bounds);
|
|
|
|
|
|
2007-07-13 14:25:21 +00:00
|
|
|
|
/* Position the tooltip */
|
2010-05-08 02:19:56 +00:00
|
|
|
|
|
2018-01-17 04:20:12 +00:00
|
|
|
|
g_object_get (gtk_widget_get_settings (GTK_WIDGET (tooltip->current_window)),
|
|
|
|
|
"gtk-cursor-theme-size", &cursor_size,
|
|
|
|
|
NULL);
|
2010-05-08 02:19:56 +00:00
|
|
|
|
|
|
|
|
|
/* Try below */
|
2011-04-26 22:25:48 +00:00
|
|
|
|
x = bounds.x + bounds.width / 2 - width / 2;
|
2010-05-08 02:19:56 +00:00
|
|
|
|
y = bounds.y + bounds.height + 4;
|
|
|
|
|
|
2016-04-11 03:01:10 +00:00
|
|
|
|
if (y + height <= workarea.y + workarea.height)
|
2007-07-13 14:25:21 +00:00
|
|
|
|
{
|
2010-05-08 02:19:56 +00:00
|
|
|
|
if (tooltip->keyboard_mode_enabled)
|
|
|
|
|
goto found;
|
2010-04-15 11:03:43 +00:00
|
|
|
|
|
2010-05-08 02:19:56 +00:00
|
|
|
|
if (y <= tooltip->last_y + cursor_size + MAX_DISTANCE)
|
|
|
|
|
{
|
|
|
|
|
if (tooltip->last_x + cursor_size + MAX_DISTANCE < x)
|
|
|
|
|
x = tooltip->last_x + cursor_size + MAX_DISTANCE;
|
2011-04-26 22:25:48 +00:00
|
|
|
|
else if (x + width < tooltip->last_x - MAX_DISTANCE)
|
|
|
|
|
x = tooltip->last_x - MAX_DISTANCE - width;
|
2007-07-13 14:25:21 +00:00
|
|
|
|
|
2010-05-08 02:19:56 +00:00
|
|
|
|
goto found;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Try above */
|
2011-04-26 22:25:48 +00:00
|
|
|
|
x = bounds.x + bounds.width / 2 - width / 2;
|
|
|
|
|
y = bounds.y - height - 4;
|
2010-05-08 02:19:56 +00:00
|
|
|
|
|
2016-04-11 03:01:10 +00:00
|
|
|
|
if (y >= workarea.y)
|
2010-05-08 02:19:56 +00:00
|
|
|
|
{
|
|
|
|
|
if (tooltip->keyboard_mode_enabled)
|
|
|
|
|
goto found;
|
|
|
|
|
|
2011-04-26 22:25:48 +00:00
|
|
|
|
if (y + height >= tooltip->last_y - MAX_DISTANCE)
|
2010-05-08 02:19:56 +00:00
|
|
|
|
{
|
|
|
|
|
if (tooltip->last_x + cursor_size + MAX_DISTANCE < x)
|
|
|
|
|
x = tooltip->last_x + cursor_size + MAX_DISTANCE;
|
2011-04-26 22:25:48 +00:00
|
|
|
|
else if (x + width < tooltip->last_x - MAX_DISTANCE)
|
|
|
|
|
x = tooltip->last_x - MAX_DISTANCE - width;
|
2010-05-08 02:19:56 +00:00
|
|
|
|
|
|
|
|
|
goto found;
|
|
|
|
|
}
|
2007-07-13 14:25:21 +00:00
|
|
|
|
}
|
2010-05-08 02:19:56 +00:00
|
|
|
|
|
|
|
|
|
/* Try right FIXME: flip on rtl ? */
|
|
|
|
|
x = bounds.x + bounds.width + 4;
|
2011-04-26 22:25:48 +00:00
|
|
|
|
y = bounds.y + bounds.height / 2 - height / 2;
|
2010-05-08 02:19:56 +00:00
|
|
|
|
|
2016-04-11 03:01:10 +00:00
|
|
|
|
if (x + width <= workarea.x + workarea.width)
|
2007-07-13 14:25:21 +00:00
|
|
|
|
{
|
2010-05-08 02:19:56 +00:00
|
|
|
|
if (tooltip->keyboard_mode_enabled)
|
|
|
|
|
goto found;
|
2007-07-13 14:25:21 +00:00
|
|
|
|
|
2010-05-08 02:19:56 +00:00
|
|
|
|
if (x <= tooltip->last_x + cursor_size + MAX_DISTANCE)
|
|
|
|
|
{
|
|
|
|
|
if (tooltip->last_y + cursor_size + MAX_DISTANCE < y)
|
|
|
|
|
y = tooltip->last_y + cursor_size + MAX_DISTANCE;
|
2011-04-26 22:25:48 +00:00
|
|
|
|
else if (y + height < tooltip->last_y - MAX_DISTANCE)
|
|
|
|
|
y = tooltip->last_y - MAX_DISTANCE - height;
|
2007-07-13 14:25:21 +00:00
|
|
|
|
|
2010-05-08 02:19:56 +00:00
|
|
|
|
goto found;
|
|
|
|
|
}
|
2007-07-13 14:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-05-08 02:19:56 +00:00
|
|
|
|
/* Try left FIXME: flip on rtl ? */
|
2011-04-26 22:25:48 +00:00
|
|
|
|
x = bounds.x - width - 4;
|
|
|
|
|
y = bounds.y + bounds.height / 2 - height / 2;
|
2007-07-13 14:25:21 +00:00
|
|
|
|
|
2016-04-11 03:01:10 +00:00
|
|
|
|
if (x >= workarea.x)
|
2007-07-13 14:25:21 +00:00
|
|
|
|
{
|
2010-05-08 02:19:56 +00:00
|
|
|
|
if (tooltip->keyboard_mode_enabled)
|
|
|
|
|
goto found;
|
2007-07-13 14:25:21 +00:00
|
|
|
|
|
2011-04-26 22:25:48 +00:00
|
|
|
|
if (x + width >= tooltip->last_x - MAX_DISTANCE)
|
2010-05-08 02:19:56 +00:00
|
|
|
|
{
|
|
|
|
|
if (tooltip->last_y + cursor_size + MAX_DISTANCE < y)
|
|
|
|
|
y = tooltip->last_y + cursor_size + MAX_DISTANCE;
|
2011-04-26 22:25:48 +00:00
|
|
|
|
else if (y + height < tooltip->last_y - MAX_DISTANCE)
|
|
|
|
|
y = tooltip->last_y - MAX_DISTANCE - height;
|
2007-07-13 14:25:21 +00:00
|
|
|
|
|
2010-05-08 02:19:56 +00:00
|
|
|
|
goto found;
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-07-13 14:25:21 +00:00
|
|
|
|
|
2010-05-08 02:19:56 +00:00
|
|
|
|
/* Fallback */
|
|
|
|
|
if (tooltip->keyboard_mode_enabled)
|
|
|
|
|
{
|
2011-04-26 22:25:48 +00:00
|
|
|
|
x = bounds.x + bounds.width / 2 - width / 2;
|
2010-05-08 02:19:56 +00:00
|
|
|
|
y = bounds.y + bounds.height + 4;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* At cursor */
|
|
|
|
|
x = tooltip->last_x + cursor_size * 3 / 4;
|
|
|
|
|
y = tooltip->last_y + cursor_size * 3 / 4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
found:
|
|
|
|
|
/* Show it */
|
2016-04-11 03:01:10 +00:00
|
|
|
|
if (x + width > workarea.x + workarea.width)
|
|
|
|
|
x -= x - (workarea.x + workarea.width) + width;
|
|
|
|
|
else if (x < workarea.x)
|
|
|
|
|
x = workarea.x;
|
|
|
|
|
|
|
|
|
|
if (y + height > workarea.y + workarea.height)
|
|
|
|
|
y -= y - (workarea.y + workarea.height) + height;
|
|
|
|
|
else if (y < workarea.y)
|
|
|
|
|
y = workarea.y;
|
2010-05-08 02:19:56 +00:00
|
|
|
|
|
2015-07-17 22:40:37 +00:00
|
|
|
|
if (!tooltip->keyboard_mode_enabled)
|
|
|
|
|
{
|
|
|
|
|
/* don't pop up under the pointer */
|
|
|
|
|
if (x <= tooltip->last_x && tooltip->last_x < x + width &&
|
|
|
|
|
y <= tooltip->last_y && tooltip->last_y < y + height)
|
|
|
|
|
y = tooltip->last_y - height - 2;
|
|
|
|
|
}
|
2010-05-08 02:19:56 +00:00
|
|
|
|
|
2013-02-07 11:27:00 +00:00
|
|
|
|
#ifdef GDK_WINDOWING_WAYLAND
|
2015-07-17 22:40:37 +00:00
|
|
|
|
/* set the transient parent on the tooltip when running with the Wayland
|
|
|
|
|
* backend to allow correct positioning of the tooltip windows
|
|
|
|
|
*/
|
|
|
|
|
if (GDK_IS_WAYLAND_DISPLAY (display))
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *toplevel;
|
2013-02-07 11:27:00 +00:00
|
|
|
|
|
2015-07-17 22:40:37 +00:00
|
|
|
|
toplevel = gtk_widget_get_toplevel (tooltip->tooltip_widget);
|
|
|
|
|
if (GTK_IS_WINDOW (toplevel))
|
|
|
|
|
gtk_window_set_transient_for (GTK_WINDOW (tooltip->current_window),
|
|
|
|
|
GTK_WINDOW (toplevel));
|
|
|
|
|
}
|
2013-02-07 11:27:00 +00:00
|
|
|
|
#endif
|
2014-05-19 22:03:30 +00:00
|
|
|
|
#ifdef GDK_WINDOWING_MIR
|
|
|
|
|
/* Set the transient parent on the tooltip when running with the Mir
|
|
|
|
|
* backend to allow correct positioning of the tooltip windows */
|
|
|
|
|
if (GDK_IS_MIR_DISPLAY (display))
|
|
|
|
|
{
|
|
|
|
|
GtkWidget *toplevel;
|
|
|
|
|
|
|
|
|
|
toplevel = gtk_widget_get_toplevel (tooltip->tooltip_widget);
|
|
|
|
|
if (GTK_IS_WINDOW (toplevel))
|
|
|
|
|
gtk_window_set_transient_for (GTK_WINDOW (tooltip->current_window),
|
|
|
|
|
GTK_WINDOW (toplevel));
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2013-02-07 11:27:00 +00:00
|
|
|
|
|
2015-07-17 22:40:37 +00:00
|
|
|
|
x -= border.left;
|
|
|
|
|
y -= border.top;
|
2014-06-06 21:15:18 +00:00
|
|
|
|
|
2015-07-17 22:40:37 +00:00
|
|
|
|
gtk_window_move (GTK_WINDOW (tooltip->current_window), x, y);
|
|
|
|
|
gtk_widget_show (GTK_WIDGET (tooltip->current_window));
|
2007-07-13 14:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
static void
|
|
|
|
|
gtk_tooltip_show_tooltip (GdkDisplay *display)
|
|
|
|
|
{
|
|
|
|
|
gint x, y;
|
|
|
|
|
GdkWindow *window;
|
|
|
|
|
GtkWidget *tooltip_widget;
|
|
|
|
|
GtkTooltip *tooltip;
|
|
|
|
|
gboolean return_value = FALSE;
|
|
|
|
|
|
2015-09-12 13:14:47 +00:00
|
|
|
|
tooltip = g_object_get_qdata (G_OBJECT (display), quark_current_tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
if (tooltip->keyboard_mode_enabled)
|
|
|
|
|
{
|
2008-10-07 18:06:00 +00:00
|
|
|
|
x = y = -1;
|
2011-01-24 02:50:39 +00:00
|
|
|
|
tooltip_widget = tooltip->keyboard_widget;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2011-10-28 20:12:02 +00:00
|
|
|
|
GdkDevice *device;
|
2010-04-15 11:03:43 +00:00
|
|
|
|
gint tx, ty;
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
window = tooltip->last_window;
|
|
|
|
|
|
2007-06-06 12:28:50 +00:00
|
|
|
|
if (!GDK_IS_WINDOW (window))
|
2011-01-24 02:50:39 +00:00
|
|
|
|
return;
|
2007-06-06 12:28:50 +00:00
|
|
|
|
|
2015-12-15 22:17:37 +00:00
|
|
|
|
device = gdk_seat_get_pointer (gdk_display_get_default_seat (display));
|
2011-10-28 20:12:02 +00:00
|
|
|
|
|
|
|
|
|
gdk_window_get_device_position (window, device, &x, &y, NULL);
|
2010-04-15 11:03:43 +00:00
|
|
|
|
|
|
|
|
|
gdk_window_get_root_coords (window, x, y, &tx, &ty);
|
|
|
|
|
tooltip->last_x = tx;
|
|
|
|
|
tooltip->last_y = ty;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2011-01-24 02:50:39 +00:00
|
|
|
|
tooltip_widget = _gtk_widget_find_at_coords (window, x, y, &x, &y);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!tooltip_widget)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
return_value = gtk_tooltip_run_requery (&tooltip_widget, tooltip, &x, &y);
|
|
|
|
|
if (!return_value)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!tooltip->current_window)
|
|
|
|
|
{
|
|
|
|
|
if (gtk_widget_get_tooltip_window (tooltip_widget))
|
2011-01-24 02:50:39 +00:00
|
|
|
|
tooltip->current_window = gtk_widget_get_tooltip_window (tooltip_widget);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
else
|
2011-01-24 02:50:39 +00:00
|
|
|
|
tooltip->current_window = GTK_WINDOW (GTK_TOOLTIP (tooltip)->window);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-13 14:25:21 +00:00
|
|
|
|
/* FIXME: should use tooltip->current_window iso tooltip->window */
|
2017-10-31 06:41:15 +00:00
|
|
|
|
if (display != gtk_widget_get_display (tooltip->window))
|
2007-02-06 10:25:21 +00:00
|
|
|
|
{
|
|
|
|
|
g_signal_handlers_disconnect_by_func (display,
|
2011-01-24 02:50:39 +00:00
|
|
|
|
gtk_tooltip_display_closed,
|
|
|
|
|
tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2017-10-31 06:41:15 +00:00
|
|
|
|
gtk_window_set_display (GTK_WINDOW (tooltip->window), display);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
g_signal_connect (display, "closed",
|
2011-01-24 02:50:39 +00:00
|
|
|
|
G_CALLBACK (gtk_tooltip_display_closed), tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-07-13 14:25:21 +00:00
|
|
|
|
gtk_tooltip_position (tooltip, display, tooltip_widget);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
/* Now a tooltip is visible again on the display, make sure browse
|
|
|
|
|
* mode is enabled.
|
|
|
|
|
*/
|
|
|
|
|
tooltip->browse_mode_enabled = TRUE;
|
|
|
|
|
if (tooltip->browse_mode_timeout_id)
|
|
|
|
|
{
|
|
|
|
|
g_source_remove (tooltip->browse_mode_timeout_id);
|
|
|
|
|
tooltip->browse_mode_timeout_id = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_tooltip_hide_tooltip (GtkTooltip *tooltip)
|
|
|
|
|
{
|
2007-02-13 12:41:36 +00:00
|
|
|
|
if (!tooltip)
|
2007-02-06 10:25:21 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (tooltip->timeout_id)
|
|
|
|
|
{
|
|
|
|
|
g_source_remove (tooltip->timeout_id);
|
|
|
|
|
tooltip->timeout_id = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-13 12:41:36 +00:00
|
|
|
|
if (!GTK_TOOLTIP_VISIBLE (tooltip))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
tooltip->tooltip_widget = NULL;
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
if (!tooltip->keyboard_mode_enabled)
|
|
|
|
|
{
|
2013-07-08 17:13:23 +00:00
|
|
|
|
guint timeout = BROWSE_DISABLE_TIMEOUT;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
/* The tooltip is gone, after (by default, should be configurable) 500ms
|
|
|
|
|
* we want to turn off browse mode
|
|
|
|
|
*/
|
|
|
|
|
if (!tooltip->browse_mode_timeout_id)
|
2013-10-22 13:43:43 +00:00
|
|
|
|
{
|
|
|
|
|
tooltip->browse_mode_timeout_id =
|
2018-02-02 14:51:47 +00:00
|
|
|
|
g_timeout_add_full (0, timeout,
|
|
|
|
|
tooltip_browse_mode_expired,
|
|
|
|
|
g_object_ref (tooltip),
|
|
|
|
|
g_object_unref);
|
2013-10-22 13:43:43 +00:00
|
|
|
|
g_source_set_name_by_id (tooltip->browse_mode_timeout_id, "[gtk+] tooltip_browse_mode_expired");
|
|
|
|
|
}
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (tooltip->browse_mode_timeout_id)
|
|
|
|
|
{
|
|
|
|
|
g_source_remove (tooltip->browse_mode_timeout_id);
|
|
|
|
|
tooltip->browse_mode_timeout_id = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tooltip->current_window)
|
|
|
|
|
{
|
|
|
|
|
gtk_widget_hide (GTK_WIDGET (tooltip->current_window));
|
|
|
|
|
tooltip->current_window = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gint
|
|
|
|
|
tooltip_popup_timeout (gpointer data)
|
|
|
|
|
{
|
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
GtkTooltip *tooltip;
|
|
|
|
|
|
2010-12-20 16:11:00 +00:00
|
|
|
|
display = GDK_DISPLAY (data);
|
2015-09-12 13:14:47 +00:00
|
|
|
|
tooltip = g_object_get_qdata (G_OBJECT (display), quark_current_tooltip);
|
2009-08-22 21:21:44 +00:00
|
|
|
|
|
|
|
|
|
/* This usually does not happen. However, it does occur in language
|
|
|
|
|
* bindings were reference counting of objects behaves differently.
|
|
|
|
|
*/
|
|
|
|
|
if (!tooltip)
|
|
|
|
|
return FALSE;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
gtk_tooltip_show_tooltip (display);
|
|
|
|
|
|
|
|
|
|
tooltip->timeout_id = 0;
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
gtk_tooltip_start_delay (GdkDisplay *display)
|
|
|
|
|
{
|
|
|
|
|
guint timeout;
|
|
|
|
|
GtkTooltip *tooltip;
|
|
|
|
|
|
2015-09-12 13:14:47 +00:00
|
|
|
|
tooltip = g_object_get_qdata (G_OBJECT (display), quark_current_tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2009-08-22 21:21:44 +00:00
|
|
|
|
if (!tooltip || GTK_TOOLTIP_VISIBLE (tooltip))
|
2007-02-06 10:25:21 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (tooltip->timeout_id)
|
|
|
|
|
g_source_remove (tooltip->timeout_id);
|
|
|
|
|
|
|
|
|
|
if (tooltip->browse_mode_enabled)
|
2013-07-08 17:13:23 +00:00
|
|
|
|
timeout = BROWSE_TIMEOUT;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
else
|
2013-07-08 17:13:23 +00:00
|
|
|
|
timeout = HOVER_TIMEOUT;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2018-02-02 14:51:47 +00:00
|
|
|
|
tooltip->timeout_id = g_timeout_add_full (0, timeout,
|
|
|
|
|
tooltip_popup_timeout,
|
|
|
|
|
g_object_ref (display),
|
|
|
|
|
g_object_unref);
|
2013-10-22 13:43:43 +00:00
|
|
|
|
g_source_set_name_by_id (tooltip->timeout_id, "[gtk+] tooltip_popup_timeout");
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_gtk_tooltip_focus_in (GtkWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
gint x, y;
|
|
|
|
|
gboolean return_value = FALSE;
|
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
GtkTooltip *tooltip;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
GdkDevice *device;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
/* Get current tooltip for this display */
|
|
|
|
|
display = gtk_widget_get_display (widget);
|
2015-09-12 13:14:47 +00:00
|
|
|
|
tooltip = g_object_get_qdata (G_OBJECT (display), quark_current_tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
/* Check if keyboard mode is enabled at this moment */
|
|
|
|
|
if (!tooltip || !tooltip->keyboard_mode_enabled)
|
|
|
|
|
return;
|
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
|
device = gtk_get_current_event_device ();
|
|
|
|
|
|
2010-11-23 19:25:13 +00:00
|
|
|
|
if (device && gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD)
|
2010-05-25 22:38:44 +00:00
|
|
|
|
device = gdk_device_get_associated_device (device);
|
|
|
|
|
|
|
|
|
|
/* This function should be called by either a focus in event,
|
|
|
|
|
* or a key binding. In either case there should be a device.
|
|
|
|
|
*/
|
|
|
|
|
if (!device)
|
|
|
|
|
return;
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
if (tooltip->keyboard_widget)
|
|
|
|
|
g_object_unref (tooltip->keyboard_widget);
|
|
|
|
|
|
|
|
|
|
tooltip->keyboard_widget = g_object_ref (widget);
|
|
|
|
|
|
2010-08-11 20:51:01 +00:00
|
|
|
|
gdk_window_get_device_position (gtk_widget_get_window (widget),
|
|
|
|
|
device, &x, &y, NULL);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
return_value = gtk_tooltip_run_requery (&widget, tooltip, &x, &y);
|
|
|
|
|
if (!return_value)
|
|
|
|
|
{
|
|
|
|
|
gtk_tooltip_hide_tooltip (tooltip);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!tooltip->current_window)
|
|
|
|
|
{
|
|
|
|
|
if (gtk_widget_get_tooltip_window (widget))
|
|
|
|
|
tooltip->current_window = gtk_widget_get_tooltip_window (widget);
|
|
|
|
|
else
|
|
|
|
|
tooltip->current_window = GTK_WINDOW (GTK_TOOLTIP (tooltip)->window);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gtk_tooltip_show_tooltip (display);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_gtk_tooltip_focus_out (GtkWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
GtkTooltip *tooltip;
|
|
|
|
|
|
|
|
|
|
/* Get current tooltip for this display */
|
|
|
|
|
display = gtk_widget_get_display (widget);
|
2015-09-12 13:14:47 +00:00
|
|
|
|
tooltip = g_object_get_qdata (G_OBJECT (display), quark_current_tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
if (!tooltip || !tooltip->keyboard_mode_enabled)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (tooltip->keyboard_widget)
|
|
|
|
|
{
|
|
|
|
|
g_object_unref (tooltip->keyboard_widget);
|
|
|
|
|
tooltip->keyboard_widget = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gtk_tooltip_hide_tooltip (tooltip);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_gtk_tooltip_toggle_keyboard_mode (GtkWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
GtkTooltip *tooltip;
|
|
|
|
|
|
|
|
|
|
display = gtk_widget_get_display (widget);
|
2015-09-12 13:14:47 +00:00
|
|
|
|
tooltip = g_object_get_qdata (G_OBJECT (display), quark_current_tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
if (!tooltip)
|
|
|
|
|
{
|
|
|
|
|
tooltip = g_object_new (GTK_TYPE_TOOLTIP, NULL);
|
2015-09-12 13:14:47 +00:00
|
|
|
|
g_object_set_qdata_full (G_OBJECT (display),
|
|
|
|
|
quark_current_tooltip,
|
|
|
|
|
tooltip,
|
|
|
|
|
g_object_unref);
|
2007-10-08 12:39:02 +00:00
|
|
|
|
g_signal_connect (display, "closed",
|
|
|
|
|
G_CALLBACK (gtk_tooltip_display_closed),
|
|
|
|
|
tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tooltip->keyboard_mode_enabled ^= 1;
|
|
|
|
|
|
|
|
|
|
if (tooltip->keyboard_mode_enabled)
|
|
|
|
|
{
|
|
|
|
|
tooltip->keyboard_widget = g_object_ref (widget);
|
|
|
|
|
_gtk_tooltip_focus_in (widget);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (tooltip->keyboard_widget)
|
|
|
|
|
{
|
|
|
|
|
g_object_unref (tooltip->keyboard_widget);
|
|
|
|
|
tooltip->keyboard_widget = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gtk_tooltip_hide_tooltip (tooltip);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
_gtk_tooltip_hide (GtkWidget *widget)
|
|
|
|
|
{
|
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
GtkTooltip *tooltip;
|
|
|
|
|
|
|
|
|
|
display = gtk_widget_get_display (widget);
|
2015-09-12 13:14:47 +00:00
|
|
|
|
tooltip = g_object_get_qdata (G_OBJECT (display), quark_current_tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
if (!tooltip || !GTK_TOOLTIP_VISIBLE (tooltip) || !tooltip->tooltip_widget)
|
|
|
|
|
return;
|
|
|
|
|
|
2014-07-21 16:39:10 +00:00
|
|
|
|
if (widget == tooltip->tooltip_widget)
|
2007-02-06 10:25:21 +00:00
|
|
|
|
gtk_tooltip_hide_tooltip (tooltip);
|
|
|
|
|
}
|
|
|
|
|
|
2008-07-02 09:32:14 +00:00
|
|
|
|
static gboolean
|
2011-11-26 19:28:53 +00:00
|
|
|
|
tooltips_enabled (GdkEvent *event)
|
2008-07-02 09:32:14 +00:00
|
|
|
|
{
|
2011-11-26 19:28:53 +00:00
|
|
|
|
GdkDevice *source_device;
|
|
|
|
|
GdkInputSource source;
|
2008-07-02 09:32:14 +00:00
|
|
|
|
|
2011-11-26 19:28:53 +00:00
|
|
|
|
source_device = gdk_event_get_source_device (event);
|
|
|
|
|
|
|
|
|
|
if (!source_device)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
source = gdk_device_get_source (source_device);
|
2008-07-02 09:32:14 +00:00
|
|
|
|
|
2013-06-30 18:28:02 +00:00
|
|
|
|
if (source != GDK_SOURCE_TOUCHSCREEN)
|
2011-11-26 19:28:53 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
2008-07-02 09:32:14 +00:00
|
|
|
|
}
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
void
|
|
|
|
|
_gtk_tooltip_handle_event (GdkEvent *event)
|
2016-06-06 01:47:16 +00:00
|
|
|
|
{
|
2017-08-26 16:23:02 +00:00
|
|
|
|
GdkEventType event_type;
|
|
|
|
|
GdkWindow *window;
|
|
|
|
|
gdouble dx, dy;
|
|
|
|
|
|
2016-06-06 01:47:16 +00:00
|
|
|
|
if (!tooltips_enabled (event))
|
|
|
|
|
return;
|
|
|
|
|
|
2017-08-26 16:23:02 +00:00
|
|
|
|
event_type = gdk_event_get_event_type (event);
|
|
|
|
|
window = gdk_event_get_window (event);
|
|
|
|
|
gdk_event_get_coords (event, &dx, &dy);
|
|
|
|
|
|
|
|
|
|
gtk_tooltip_handle_event_internal (event_type, window, dx, dy);
|
2016-06-06 01:47:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2017-08-26 16:23:02 +00:00
|
|
|
|
gtk_tooltip_handle_event_internal (GdkEventType event_type,
|
|
|
|
|
GdkWindow *window,
|
|
|
|
|
gdouble dx,
|
|
|
|
|
gdouble dy)
|
2007-02-06 10:25:21 +00:00
|
|
|
|
{
|
|
|
|
|
gint x, y;
|
2017-03-20 21:04:49 +00:00
|
|
|
|
GtkWidget *has_tooltip_widget;
|
2007-02-06 10:25:21 +00:00
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
GtkTooltip *current_tooltip;
|
2007-08-07 11:28:01 +00:00
|
|
|
|
|
2017-08-26 16:23:02 +00:00
|
|
|
|
has_tooltip_widget = find_topmost_widget_coords (window, dx, dy, &x, &y);
|
|
|
|
|
display = gdk_window_get_display (window);
|
2015-09-12 13:14:47 +00:00
|
|
|
|
current_tooltip = g_object_get_qdata (G_OBJECT (display), quark_current_tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
if (current_tooltip)
|
2017-08-26 16:23:02 +00:00
|
|
|
|
gtk_tooltip_set_last_window (current_tooltip, window);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
if (current_tooltip && current_tooltip->keyboard_mode_enabled)
|
|
|
|
|
{
|
2017-03-20 21:04:49 +00:00
|
|
|
|
gboolean return_value;
|
|
|
|
|
|
2007-02-06 10:25:21 +00:00
|
|
|
|
has_tooltip_widget = current_tooltip->keyboard_widget;
|
|
|
|
|
if (!has_tooltip_widget)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
return_value = gtk_tooltip_run_requery (&has_tooltip_widget,
|
|
|
|
|
current_tooltip,
|
|
|
|
|
&x, &y);
|
|
|
|
|
|
|
|
|
|
if (!return_value)
|
|
|
|
|
gtk_tooltip_hide_tooltip (current_tooltip);
|
|
|
|
|
else
|
|
|
|
|
gtk_tooltip_start_delay (display);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Hide the tooltip when there's no new tooltip widget */
|
|
|
|
|
if (!has_tooltip_widget)
|
|
|
|
|
{
|
2007-07-25 17:45:22 +00:00
|
|
|
|
if (current_tooltip)
|
2007-02-06 10:25:21 +00:00
|
|
|
|
gtk_tooltip_hide_tooltip (current_tooltip);
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2017-10-06 19:19:42 +00:00
|
|
|
|
switch ((guint) event_type)
|
2007-02-06 10:25:21 +00:00
|
|
|
|
{
|
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
|
case GDK_KEY_PRESS:
|
|
|
|
|
case GDK_DRAG_ENTER:
|
|
|
|
|
case GDK_GRAB_BROKEN:
|
2011-05-01 14:38:56 +00:00
|
|
|
|
case GDK_SCROLL:
|
2007-02-06 10:25:21 +00:00
|
|
|
|
gtk_tooltip_hide_tooltip (current_tooltip);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case GDK_MOTION_NOTIFY:
|
|
|
|
|
case GDK_ENTER_NOTIFY:
|
|
|
|
|
case GDK_LEAVE_NOTIFY:
|
|
|
|
|
if (current_tooltip)
|
|
|
|
|
{
|
2007-07-13 14:25:21 +00:00
|
|
|
|
gboolean tip_area_set;
|
|
|
|
|
GdkRectangle tip_area;
|
|
|
|
|
gboolean hide_tooltip;
|
|
|
|
|
|
|
|
|
|
tip_area_set = current_tooltip->tip_area_set;
|
|
|
|
|
tip_area = current_tooltip->tip_area;
|
|
|
|
|
|
2017-03-20 14:36:05 +00:00
|
|
|
|
gtk_tooltip_run_requery (&has_tooltip_widget,
|
|
|
|
|
current_tooltip,
|
|
|
|
|
&x, &y);
|
2007-07-13 14:25:21 +00:00
|
|
|
|
|
2007-08-21 11:09:42 +00:00
|
|
|
|
/* Leave notify should override the query function */
|
2017-08-26 16:23:02 +00:00
|
|
|
|
hide_tooltip = (event_type == GDK_LEAVE_NOTIFY);
|
2007-08-21 11:09:42 +00:00
|
|
|
|
|
2007-07-13 14:25:21 +00:00
|
|
|
|
/* Is the pointer above another widget now? */
|
|
|
|
|
if (GTK_TOOLTIP_VISIBLE (current_tooltip))
|
|
|
|
|
hide_tooltip |= has_tooltip_widget != current_tooltip->tooltip_widget;
|
|
|
|
|
|
|
|
|
|
/* Did the pointer move out of the previous "context area"? */
|
|
|
|
|
if (tip_area_set)
|
|
|
|
|
hide_tooltip |= (x <= tip_area.x
|
|
|
|
|
|| x >= tip_area.x + tip_area.width
|
|
|
|
|
|| y <= tip_area.y
|
|
|
|
|
|| y >= tip_area.y + tip_area.height);
|
|
|
|
|
|
|
|
|
|
if (hide_tooltip)
|
2007-02-06 10:25:21 +00:00
|
|
|
|
gtk_tooltip_hide_tooltip (current_tooltip);
|
|
|
|
|
else
|
|
|
|
|
gtk_tooltip_start_delay (display);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Need a new tooltip for this display */
|
|
|
|
|
current_tooltip = g_object_new (GTK_TYPE_TOOLTIP, NULL);
|
2015-09-12 13:14:47 +00:00
|
|
|
|
g_object_set_qdata_full (G_OBJECT (display),
|
|
|
|
|
quark_current_tooltip,
|
|
|
|
|
current_tooltip,
|
|
|
|
|
g_object_unref);
|
2007-10-08 12:39:02 +00:00
|
|
|
|
g_signal_connect (display, "closed",
|
|
|
|
|
G_CALLBACK (gtk_tooltip_display_closed),
|
|
|
|
|
current_tooltip);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
2017-08-26 16:23:02 +00:00
|
|
|
|
gtk_tooltip_set_last_window (current_tooltip, window);
|
2007-02-06 10:25:21 +00:00
|
|
|
|
|
|
|
|
|
gtk_tooltip_start_delay (display);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|