2013-08-13 06:57:41 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
2014-05-02 09:34:02 -04:00
|
|
|
/*
|
2013-08-13 06:57:41 -04:00
|
|
|
* Copyright 2013 Red Hat, Inc.
|
2014-05-02 09:34:02 -04:00
|
|
|
*
|
2013-08-13 06:57:41 -04:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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.
|
2014-05-02 09:34:02 -04:00
|
|
|
*
|
2013-08-13 06:57:41 -04:00
|
|
|
* You should have received a copy of the GNU General Public License
|
2014-01-11 20:42:06 -05:00
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
2013-08-13 06:57:41 -04:00
|
|
|
*
|
|
|
|
* Author: Giovanni Campagna <gcampagn@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:cursor-tracker
|
|
|
|
* @title: MetaCursorTracker
|
2013-09-04 10:50:19 -04:00
|
|
|
* @short_description: Mutter cursor tracking helper. Originally only
|
|
|
|
* tracking the cursor image, now more of a "core
|
|
|
|
* pointer abstraction"
|
2013-08-13 06:57:41 -04:00
|
|
|
*/
|
|
|
|
|
2014-11-03 13:31:25 -05:00
|
|
|
#include "config.h"
|
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "backends/meta-cursor-tracker-private.h"
|
2013-08-13 06:57:41 -04:00
|
|
|
|
2013-09-04 10:50:19 -04:00
|
|
|
#include <gdk/gdk.h>
|
2014-03-06 13:08:01 -05:00
|
|
|
#include <gdk/gdkx.h>
|
2018-07-10 04:36:24 -04:00
|
|
|
#include <string.h>
|
2013-09-04 10:50:19 -04:00
|
|
|
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "backends/meta-backend-private.h"
|
2018-04-30 04:21:51 -04:00
|
|
|
#include "backends/x11/cm/meta-cursor-sprite-xfixes.h"
|
2018-07-10 04:36:24 -04:00
|
|
|
#include "cogl/cogl.h"
|
|
|
|
#include "clutter/clutter.h"
|
|
|
|
#include "meta/main.h"
|
|
|
|
#include "meta/meta-x11-errors.h"
|
|
|
|
#include "meta/util.h"
|
2017-08-26 12:28:53 -04:00
|
|
|
#include "x11/meta-x11-display-private.h"
|
2014-03-18 22:01:31 -04:00
|
|
|
|
2013-08-13 06:57:41 -04:00
|
|
|
G_DEFINE_TYPE (MetaCursorTracker, meta_cursor_tracker, G_TYPE_OBJECT);
|
|
|
|
|
|
|
|
enum {
|
2014-07-26 10:20:58 -04:00
|
|
|
CURSOR_CHANGED,
|
|
|
|
LAST_SIGNAL
|
2013-08-13 06:57:41 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
static guint signals[LAST_SIGNAL];
|
|
|
|
|
2017-11-16 13:26:41 -05:00
|
|
|
static void
|
|
|
|
cursor_texture_updated (MetaCursorSprite *cursor,
|
|
|
|
MetaCursorTracker *tracker)
|
|
|
|
{
|
|
|
|
g_signal_emit (tracker, signals[CURSOR_CHANGED], 0);
|
|
|
|
}
|
|
|
|
|
2017-11-16 13:23:09 -05:00
|
|
|
static gboolean
|
|
|
|
update_displayed_cursor (MetaCursorTracker *tracker)
|
2014-04-21 18:05:59 -04:00
|
|
|
{
|
2014-07-22 11:09:12 -04:00
|
|
|
MetaDisplay *display = meta_get_display ();
|
2017-11-16 13:23:09 -05:00
|
|
|
MetaCursorSprite *cursor = NULL;
|
2014-07-22 11:09:12 -04:00
|
|
|
|
2017-11-20 07:08:06 -05:00
|
|
|
if (display && meta_display_windows_are_interactable (display) &&
|
|
|
|
tracker->has_window_cursor)
|
|
|
|
cursor = tracker->window_cursor;
|
|
|
|
else
|
2017-11-16 13:23:09 -05:00
|
|
|
cursor = tracker->root_cursor;
|
|
|
|
|
|
|
|
if (tracker->displayed_cursor == cursor)
|
|
|
|
return FALSE;
|
|
|
|
|
2017-11-20 07:20:36 -05:00
|
|
|
if (tracker->displayed_cursor)
|
|
|
|
{
|
|
|
|
g_signal_handlers_disconnect_by_func (tracker->displayed_cursor,
|
|
|
|
cursor_texture_updated,
|
|
|
|
tracker);
|
|
|
|
}
|
|
|
|
|
2017-11-16 13:23:09 -05:00
|
|
|
g_set_object (&tracker->displayed_cursor, cursor);
|
2017-11-20 07:20:36 -05:00
|
|
|
|
|
|
|
if (cursor)
|
|
|
|
{
|
|
|
|
g_signal_connect (cursor, "texture-changed",
|
|
|
|
G_CALLBACK (cursor_texture_updated), tracker);
|
|
|
|
}
|
|
|
|
|
2017-11-16 13:23:09 -05:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
update_effective_cursor (MetaCursorTracker *tracker)
|
|
|
|
{
|
|
|
|
MetaCursorSprite *cursor = NULL;
|
|
|
|
|
|
|
|
if (tracker->is_showing)
|
|
|
|
cursor = tracker->displayed_cursor;
|
|
|
|
|
|
|
|
return g_set_object (&tracker->effective_cursor, cursor);
|
2014-04-21 18:05:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-11-16 13:23:09 -05:00
|
|
|
change_cursor_renderer (MetaCursorTracker *tracker)
|
2014-04-21 18:05:59 -04:00
|
|
|
{
|
2016-12-01 03:54:04 -05:00
|
|
|
MetaBackend *backend = meta_get_backend ();
|
|
|
|
MetaCursorRenderer *cursor_renderer =
|
|
|
|
meta_backend_get_cursor_renderer (backend);
|
|
|
|
|
2017-11-16 13:23:09 -05:00
|
|
|
meta_cursor_renderer_set_cursor (cursor_renderer, tracker->effective_cursor);
|
2014-04-21 18:05:59 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
sync_cursor (MetaCursorTracker *tracker)
|
|
|
|
{
|
2017-11-16 13:23:09 -05:00
|
|
|
if (update_displayed_cursor (tracker))
|
|
|
|
g_signal_emit (tracker, signals[CURSOR_CHANGED], 0);
|
2014-04-21 18:05:59 -04:00
|
|
|
|
2017-11-16 13:23:09 -05:00
|
|
|
if (update_effective_cursor (tracker))
|
|
|
|
change_cursor_renderer (tracker);
|
2014-04-21 18:05:59 -04:00
|
|
|
}
|
2013-09-05 10:45:41 -04:00
|
|
|
|
2013-08-13 06:57:41 -04:00
|
|
|
static void
|
|
|
|
meta_cursor_tracker_init (MetaCursorTracker *self)
|
|
|
|
{
|
|
|
|
self->is_showing = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_cursor_tracker_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
MetaCursorTracker *self = META_CURSOR_TRACKER (object);
|
|
|
|
|
2017-11-16 13:23:09 -05:00
|
|
|
if (self->effective_cursor)
|
|
|
|
g_object_unref (self->effective_cursor);
|
2013-11-18 19:19:42 -05:00
|
|
|
if (self->displayed_cursor)
|
2015-03-10 02:35:49 -04:00
|
|
|
g_object_unref (self->displayed_cursor);
|
2013-08-13 06:57:41 -04:00
|
|
|
if (self->root_cursor)
|
2015-03-10 02:35:49 -04:00
|
|
|
g_object_unref (self->root_cursor);
|
2013-09-06 04:37:03 -04:00
|
|
|
|
2013-08-13 06:57:41 -04:00
|
|
|
G_OBJECT_CLASS (meta_cursor_tracker_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_cursor_tracker_class_init (MetaCursorTrackerClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->finalize = meta_cursor_tracker_finalize;
|
|
|
|
|
|
|
|
signals[CURSOR_CHANGED] = g_signal_new ("cursor-changed",
|
|
|
|
G_TYPE_FROM_CLASS (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
0,
|
|
|
|
NULL, NULL, NULL,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-08-26 15:43:17 -04:00
|
|
|
* meta_cursor_tracker_get_for_display:
|
|
|
|
* @display: the #MetaDisplay
|
2013-08-13 06:57:41 -04:00
|
|
|
*
|
2017-08-26 15:43:17 -04:00
|
|
|
* Retrieves the cursor tracker object for @display.
|
2013-08-13 06:57:41 -04:00
|
|
|
*
|
|
|
|
* Returns: (transfer none):
|
|
|
|
*/
|
|
|
|
MetaCursorTracker *
|
2017-08-26 15:43:17 -04:00
|
|
|
meta_cursor_tracker_get_for_display (MetaDisplay *display)
|
2013-08-13 06:57:41 -04:00
|
|
|
{
|
2016-11-29 07:30:22 -05:00
|
|
|
MetaBackend *backend = meta_get_backend ();
|
|
|
|
MetaCursorTracker *tracker = meta_backend_get_cursor_tracker (backend);
|
|
|
|
|
|
|
|
g_assert (tracker);
|
2013-08-13 06:57:41 -04:00
|
|
|
|
2016-11-29 07:30:22 -05:00
|
|
|
return tracker;
|
2013-08-13 06:57:41 -04:00
|
|
|
}
|
|
|
|
|
2013-11-18 19:19:42 -05:00
|
|
|
static void
|
2015-03-09 23:23:00 -04:00
|
|
|
set_window_cursor (MetaCursorTracker *tracker,
|
|
|
|
gboolean has_cursor,
|
|
|
|
MetaCursorSprite *cursor_sprite)
|
2013-11-18 19:19:42 -05:00
|
|
|
{
|
2015-03-10 02:35:49 -04:00
|
|
|
g_clear_object (&tracker->window_cursor);
|
2015-03-09 23:23:00 -04:00
|
|
|
if (cursor_sprite)
|
2015-03-10 02:35:49 -04:00
|
|
|
tracker->window_cursor = g_object_ref (cursor_sprite);
|
2013-11-18 19:19:42 -05:00
|
|
|
tracker->has_window_cursor = has_cursor;
|
2013-11-19 15:43:46 -05:00
|
|
|
sync_cursor (tracker);
|
2013-11-18 19:19:42 -05:00
|
|
|
}
|
|
|
|
|
2013-08-13 06:57:41 -04:00
|
|
|
gboolean
|
|
|
|
meta_cursor_tracker_handle_xevent (MetaCursorTracker *tracker,
|
|
|
|
XEvent *xevent)
|
|
|
|
{
|
2017-08-26 12:28:53 -04:00
|
|
|
MetaX11Display *x11_display = meta_get_display ()->x11_display;
|
2013-08-13 06:57:41 -04:00
|
|
|
XFixesCursorNotifyEvent *notify_event;
|
|
|
|
|
|
|
|
if (meta_is_wayland_compositor ())
|
|
|
|
return FALSE;
|
|
|
|
|
2017-08-26 12:28:53 -04:00
|
|
|
if (xevent->xany.type != x11_display->xfixes_event_base + XFixesCursorNotify)
|
2013-08-13 06:57:41 -04:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
notify_event = (XFixesCursorNotifyEvent *)xevent;
|
|
|
|
if (notify_event->subtype != XFixesDisplayCursorNotify)
|
|
|
|
return FALSE;
|
|
|
|
|
2015-03-10 02:35:49 -04:00
|
|
|
g_clear_object (&tracker->xfixes_cursor);
|
2015-04-13 19:57:08 -04:00
|
|
|
g_signal_emit (tracker, signals[CURSOR_CHANGED], 0);
|
2013-08-13 06:57:41 -04:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ensure_xfixes_cursor (MetaCursorTracker *tracker)
|
|
|
|
{
|
2014-07-22 11:09:12 -04:00
|
|
|
MetaDisplay *display = meta_get_display ();
|
2018-04-30 04:21:51 -04:00
|
|
|
g_autoptr (GError) error = NULL;
|
2013-08-13 06:57:41 -04:00
|
|
|
|
2014-05-13 15:44:02 -04:00
|
|
|
if (tracker->xfixes_cursor)
|
2013-08-13 06:57:41 -04:00
|
|
|
return;
|
|
|
|
|
2018-04-30 04:21:51 -04:00
|
|
|
tracker->xfixes_cursor = meta_cursor_sprite_xfixes_new (display, &error);
|
|
|
|
if (!tracker->xfixes_cursor)
|
|
|
|
g_warning ("Failed to create XFIXES cursor: %s", error->message);
|
2013-08-13 06:57:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* meta_cursor_tracker_get_sprite:
|
|
|
|
*
|
|
|
|
* Returns: (transfer none):
|
|
|
|
*/
|
|
|
|
CoglTexture *
|
|
|
|
meta_cursor_tracker_get_sprite (MetaCursorTracker *tracker)
|
|
|
|
{
|
2015-03-09 23:23:00 -04:00
|
|
|
MetaCursorSprite *cursor_sprite;
|
2014-05-13 15:44:02 -04:00
|
|
|
|
2013-08-13 06:57:41 -04:00
|
|
|
g_return_val_if_fail (META_IS_CURSOR_TRACKER (tracker), NULL);
|
|
|
|
|
2014-05-13 15:44:02 -04:00
|
|
|
if (meta_is_wayland_compositor ())
|
|
|
|
{
|
2015-03-09 23:23:00 -04:00
|
|
|
cursor_sprite = tracker->displayed_cursor;
|
2014-05-13 15:44:02 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ensure_xfixes_cursor (tracker);
|
2018-04-30 04:21:51 -04:00
|
|
|
cursor_sprite = META_CURSOR_SPRITE (tracker->xfixes_cursor);
|
2014-05-13 15:44:02 -04:00
|
|
|
}
|
2013-08-13 06:57:41 -04:00
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
if (cursor_sprite)
|
2017-11-16 13:23:09 -05:00
|
|
|
{
|
|
|
|
meta_cursor_sprite_realize_texture (cursor_sprite);
|
|
|
|
return meta_cursor_sprite_get_cogl_texture (cursor_sprite);
|
|
|
|
}
|
2013-09-05 10:45:41 -04:00
|
|
|
else
|
2017-11-16 13:23:09 -05:00
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2013-08-13 06:57:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* meta_cursor_tracker_get_hot:
|
|
|
|
* @tracker:
|
|
|
|
* @x: (out):
|
|
|
|
* @y: (out):
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
meta_cursor_tracker_get_hot (MetaCursorTracker *tracker,
|
|
|
|
int *x,
|
|
|
|
int *y)
|
|
|
|
{
|
2015-03-09 23:23:00 -04:00
|
|
|
MetaCursorSprite *cursor_sprite;
|
2014-05-13 15:44:02 -04:00
|
|
|
|
2013-08-13 06:57:41 -04:00
|
|
|
g_return_if_fail (META_IS_CURSOR_TRACKER (tracker));
|
|
|
|
|
2014-05-13 15:44:02 -04:00
|
|
|
if (meta_is_wayland_compositor ())
|
|
|
|
{
|
2015-03-09 23:23:00 -04:00
|
|
|
cursor_sprite = tracker->displayed_cursor;
|
2014-05-13 15:44:02 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ensure_xfixes_cursor (tracker);
|
2018-04-30 04:21:51 -04:00
|
|
|
cursor_sprite = META_CURSOR_SPRITE (tracker->xfixes_cursor);
|
2014-05-13 15:44:02 -04:00
|
|
|
}
|
2013-08-13 06:57:41 -04:00
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
if (cursor_sprite)
|
2015-07-17 11:16:39 -04:00
|
|
|
meta_cursor_sprite_get_hotspot (cursor_sprite, x, y);
|
2013-09-05 10:45:41 -04:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (x)
|
|
|
|
*x = 0;
|
|
|
|
if (y)
|
|
|
|
*y = 0;
|
|
|
|
}
|
2013-08-13 06:57:41 -04:00
|
|
|
}
|
|
|
|
|
2013-11-18 19:19:42 -05:00
|
|
|
void
|
2015-03-09 23:23:00 -04:00
|
|
|
meta_cursor_tracker_set_window_cursor (MetaCursorTracker *tracker,
|
|
|
|
MetaCursorSprite *cursor_sprite)
|
2013-11-18 19:19:42 -05:00
|
|
|
{
|
2015-03-09 23:23:00 -04:00
|
|
|
set_window_cursor (tracker, TRUE, cursor_sprite);
|
2013-11-18 19:19:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_cursor_tracker_unset_window_cursor (MetaCursorTracker *tracker)
|
|
|
|
{
|
|
|
|
set_window_cursor (tracker, FALSE, NULL);
|
|
|
|
}
|
|
|
|
|
2013-08-13 06:57:41 -04:00
|
|
|
void
|
2015-03-09 23:23:00 -04:00
|
|
|
meta_cursor_tracker_set_root_cursor (MetaCursorTracker *tracker,
|
|
|
|
MetaCursorSprite *cursor_sprite)
|
2013-08-13 06:57:41 -04:00
|
|
|
{
|
2015-03-10 02:35:49 -04:00
|
|
|
g_clear_object (&tracker->root_cursor);
|
2015-03-09 23:23:00 -04:00
|
|
|
if (cursor_sprite)
|
2015-03-10 02:35:49 -04:00
|
|
|
tracker->root_cursor = g_object_ref (cursor_sprite);
|
2013-08-13 06:57:41 -04:00
|
|
|
|
2014-03-31 17:22:23 -04:00
|
|
|
sync_cursor (tracker);
|
2013-08-13 06:57:41 -04:00
|
|
|
}
|
|
|
|
|
2013-11-18 19:19:42 -05:00
|
|
|
void
|
|
|
|
meta_cursor_tracker_update_position (MetaCursorTracker *tracker,
|
2017-06-08 10:13:16 -04:00
|
|
|
float new_x,
|
|
|
|
float new_y)
|
2013-11-18 19:19:42 -05:00
|
|
|
{
|
2016-12-01 03:54:04 -05:00
|
|
|
MetaBackend *backend = meta_get_backend ();
|
|
|
|
MetaCursorRenderer *cursor_renderer =
|
|
|
|
meta_backend_get_cursor_renderer (backend);
|
|
|
|
|
2013-11-18 19:19:42 -05:00
|
|
|
g_assert (meta_is_wayland_compositor ());
|
|
|
|
|
2016-12-01 03:54:04 -05:00
|
|
|
meta_cursor_renderer_set_position (cursor_renderer, new_x, new_y);
|
2013-08-13 06:57:41 -04:00
|
|
|
}
|
2013-09-04 10:50:19 -04:00
|
|
|
|
|
|
|
static void
|
|
|
|
get_pointer_position_gdk (int *x,
|
|
|
|
int *y,
|
|
|
|
int *mods)
|
|
|
|
{
|
2016-01-11 08:47:21 -05:00
|
|
|
GdkSeat *gseat;
|
2013-09-04 10:50:19 -04:00
|
|
|
GdkDevice *gdevice;
|
|
|
|
GdkScreen *gscreen;
|
|
|
|
|
2016-01-11 08:47:21 -05:00
|
|
|
gseat = gdk_display_get_default_seat (gdk_display_get_default ());
|
|
|
|
gdevice = gdk_seat_get_pointer (gseat);
|
2013-09-04 10:50:19 -04:00
|
|
|
|
2014-03-06 11:20:20 -05:00
|
|
|
gdk_device_get_position (gdevice, &gscreen, x, y);
|
2014-03-02 17:27:50 -05:00
|
|
|
if (mods)
|
|
|
|
gdk_device_get_state (gdevice,
|
|
|
|
gdk_screen_get_root_window (gscreen),
|
|
|
|
NULL, (GdkModifierType*)mods);
|
2013-09-04 10:50:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
get_pointer_position_clutter (int *x,
|
|
|
|
int *y,
|
|
|
|
int *mods)
|
|
|
|
{
|
|
|
|
ClutterDeviceManager *cmanager;
|
|
|
|
ClutterInputDevice *cdevice;
|
|
|
|
ClutterPoint point;
|
|
|
|
|
|
|
|
cmanager = clutter_device_manager_get_default ();
|
|
|
|
cdevice = clutter_device_manager_get_core_device (cmanager, CLUTTER_POINTER_DEVICE);
|
|
|
|
|
|
|
|
clutter_input_device_get_coords (cdevice, NULL, &point);
|
2014-03-02 17:27:50 -05:00
|
|
|
if (x)
|
|
|
|
*x = point.x;
|
|
|
|
if (y)
|
|
|
|
*y = point.y;
|
|
|
|
if (mods)
|
|
|
|
*mods = clutter_input_device_get_modifier_state (cdevice);
|
2013-09-04 10:50:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
meta_cursor_tracker_get_pointer (MetaCursorTracker *tracker,
|
|
|
|
int *x,
|
|
|
|
int *y,
|
|
|
|
ClutterModifierType *mods)
|
|
|
|
{
|
|
|
|
/* We can't use the clutter interface when not running as a wayland compositor,
|
|
|
|
because we need to query the server, rather than using the last cached value.
|
|
|
|
OTOH, on wayland we can't use GDK, because that only sees the events
|
|
|
|
we forward to xwayland.
|
|
|
|
*/
|
|
|
|
if (meta_is_wayland_compositor ())
|
|
|
|
get_pointer_position_clutter (x, y, (int*)mods);
|
|
|
|
else
|
|
|
|
get_pointer_position_gdk (x, y, (int*)mods);
|
|
|
|
}
|
2013-09-04 10:56:00 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
meta_cursor_tracker_set_pointer_visible (MetaCursorTracker *tracker,
|
|
|
|
gboolean visible)
|
|
|
|
{
|
|
|
|
if (visible == tracker->is_showing)
|
|
|
|
return;
|
|
|
|
tracker->is_showing = visible;
|
|
|
|
|
2014-04-27 10:49:29 -04:00
|
|
|
sync_cursor (tracker);
|
2013-09-04 10:56:00 -04:00
|
|
|
}
|
2014-04-23 11:12:04 -04:00
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
MetaCursorSprite *
|
2014-04-23 11:12:04 -04:00
|
|
|
meta_cursor_tracker_get_displayed_cursor (MetaCursorTracker *tracker)
|
|
|
|
{
|
|
|
|
return tracker->displayed_cursor;
|
|
|
|
}
|