2014-03-31 14:08:14 -04:00
|
|
|
/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2013 Red Hat, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Author: Giovanni Campagna <gcampagn@redhat.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2015-03-10 02:41:12 -04:00
|
|
|
#include "meta-cursor.h"
|
2014-03-31 14:08:14 -04:00
|
|
|
|
2014-03-31 15:21:19 -04:00
|
|
|
#include <meta/errors.h>
|
|
|
|
|
|
|
|
#include "display-private.h"
|
|
|
|
#include "screen-private.h"
|
2014-08-05 08:11:59 -04:00
|
|
|
#include "meta-backend-private.h"
|
2014-05-29 12:11:26 -04:00
|
|
|
|
2014-03-31 15:21:19 -04:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <X11/cursorfont.h>
|
|
|
|
#include <X11/extensions/Xfixes.h>
|
|
|
|
#include <X11/Xcursor/Xcursor.h>
|
|
|
|
|
2014-08-13 20:19:35 -04:00
|
|
|
#ifdef HAVE_WAYLAND
|
2014-03-31 15:21:19 -04:00
|
|
|
#include <cogl/cogl-wayland-server.h>
|
2014-08-13 20:19:35 -04:00
|
|
|
#endif
|
2014-03-31 15:21:19 -04:00
|
|
|
|
2015-03-10 02:41:12 -04:00
|
|
|
struct _MetaCursorSprite
|
|
|
|
{
|
|
|
|
GObject parent;
|
|
|
|
|
|
|
|
MetaCursor cursor;
|
2015-07-16 23:56:42 -04:00
|
|
|
|
|
|
|
CoglTexture2D *texture;
|
|
|
|
int hot_x, hot_y;
|
2015-03-10 02:41:12 -04:00
|
|
|
|
|
|
|
int current_frame;
|
|
|
|
XcursorImages *xcursor_images;
|
|
|
|
};
|
|
|
|
|
2015-03-10 02:35:49 -04:00
|
|
|
GType meta_cursor_sprite_get_type (void) G_GNUC_CONST;
|
2014-03-31 14:08:14 -04:00
|
|
|
|
2015-03-10 02:35:49 -04:00
|
|
|
G_DEFINE_TYPE (MetaCursorSprite, meta_cursor_sprite, G_TYPE_OBJECT)
|
2014-03-31 14:08:14 -04:00
|
|
|
|
2014-04-22 11:53:31 -04:00
|
|
|
static const char *
|
|
|
|
translate_meta_cursor (MetaCursor cursor)
|
2014-03-31 15:21:19 -04:00
|
|
|
{
|
|
|
|
switch (cursor)
|
|
|
|
{
|
|
|
|
case META_CURSOR_DEFAULT:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "left_ptr";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_NORTH_RESIZE:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "top_side";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_SOUTH_RESIZE:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "bottom_side";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_WEST_RESIZE:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "left_side";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_EAST_RESIZE:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "right_side";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_SE_RESIZE:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "bottom_right_corner";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_SW_RESIZE:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "bottom_left_corner";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_NE_RESIZE:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "top_right_corner";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_NW_RESIZE:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "top_left_corner";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_MOVE_OR_RESIZE_WINDOW:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "fleur";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_BUSY:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "watch";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_DND_IN_DRAG:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "dnd-none";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_DND_MOVE:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "dnd-move";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_DND_COPY:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "dnd-copy";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_DND_UNSUPPORTED_TARGET:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "dnd-none";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_POINTING_HAND:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "hand2";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_CROSSHAIR:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "crosshair";
|
2014-03-31 15:21:19 -04:00
|
|
|
case META_CURSOR_IBEAM:
|
2014-04-22 11:53:31 -04:00
|
|
|
return "xterm";
|
2014-03-31 15:21:19 -04:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-04-22 11:53:31 -04:00
|
|
|
g_assert_not_reached ();
|
2014-03-31 15:21:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Cursor
|
2014-04-23 10:41:09 -04:00
|
|
|
meta_cursor_create_x_cursor (Display *xdisplay,
|
|
|
|
MetaCursor cursor)
|
2014-03-31 15:21:19 -04:00
|
|
|
{
|
2014-04-23 10:41:09 -04:00
|
|
|
return XcursorLibraryLoadCursor (xdisplay, translate_meta_cursor (cursor));
|
2014-03-31 15:21:19 -04:00
|
|
|
}
|
|
|
|
|
2015-07-13 14:32:42 -04:00
|
|
|
static XcursorImages *
|
2014-04-23 10:38:30 -04:00
|
|
|
load_cursor_on_client (MetaCursor cursor)
|
2014-03-31 15:21:19 -04:00
|
|
|
{
|
2015-07-13 14:32:42 -04:00
|
|
|
return XcursorLibraryLoadImages (translate_meta_cursor (cursor),
|
|
|
|
meta_prefs_get_cursor_theme (),
|
|
|
|
meta_prefs_get_cursor_size ());
|
2014-03-31 15:21:19 -04:00
|
|
|
}
|
|
|
|
|
2014-03-31 17:50:15 -04:00
|
|
|
static void
|
2015-03-10 23:16:58 -04:00
|
|
|
meta_cursor_sprite_load_from_xcursor_image (MetaCursorSprite *self,
|
|
|
|
XcursorImage *xc_image)
|
2014-04-22 15:23:45 -04:00
|
|
|
{
|
|
|
|
MetaBackend *meta_backend = meta_get_backend ();
|
|
|
|
MetaCursorRenderer *renderer = meta_backend_get_cursor_renderer (meta_backend);
|
2014-09-24 17:40:09 -04:00
|
|
|
uint width, height, rowstride;
|
2014-03-31 15:21:19 -04:00
|
|
|
CoglPixelFormat cogl_format;
|
|
|
|
ClutterBackend *clutter_backend;
|
|
|
|
CoglContext *cogl_context;
|
|
|
|
|
2015-07-16 23:56:42 -04:00
|
|
|
g_assert (self->texture == NULL);
|
|
|
|
|
2014-03-31 17:13:03 -04:00
|
|
|
width = xc_image->width;
|
|
|
|
height = xc_image->height;
|
2014-03-31 15:21:19 -04:00
|
|
|
rowstride = width * 4;
|
|
|
|
|
|
|
|
#if G_BYTE_ORDER == G_LITTLE_ENDIAN
|
|
|
|
cogl_format = COGL_PIXEL_FORMAT_BGRA_8888;
|
|
|
|
#else
|
|
|
|
cogl_format = COGL_PIXEL_FORMAT_ARGB_8888;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
clutter_backend = clutter_get_default_backend ();
|
|
|
|
cogl_context = clutter_backend_get_cogl_context (clutter_backend);
|
2015-07-16 23:56:42 -04:00
|
|
|
self->texture = cogl_texture_2d_new_from_data (cogl_context,
|
|
|
|
width, height,
|
|
|
|
cogl_format,
|
|
|
|
rowstride,
|
|
|
|
(uint8_t *) xc_image->pixels,
|
|
|
|
NULL);
|
|
|
|
self->hot_x = xc_image->xhot;
|
|
|
|
self->hot_y = xc_image->yhot;
|
2014-03-31 15:21:19 -04:00
|
|
|
|
2015-03-10 23:16:58 -04:00
|
|
|
meta_cursor_renderer_realize_cursor_from_xcursor (renderer, self, xc_image);
|
2014-03-31 16:09:32 -04:00
|
|
|
}
|
|
|
|
|
2015-07-13 14:32:42 -04:00
|
|
|
static XcursorImage *
|
2015-03-09 23:23:00 -04:00
|
|
|
meta_cursor_sprite_get_current_frame_image (MetaCursorSprite *self)
|
2015-07-13 14:32:42 -04:00
|
|
|
{
|
|
|
|
return self->xcursor_images->images[self->current_frame];
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-03-09 23:23:00 -04:00
|
|
|
meta_cursor_sprite_tick_frame (MetaCursorSprite *self)
|
2015-07-13 14:32:42 -04:00
|
|
|
{
|
|
|
|
XcursorImage *image;
|
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
if (!meta_cursor_sprite_is_animated (self))
|
2015-07-13 14:32:42 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
self->current_frame++;
|
|
|
|
|
|
|
|
if (self->current_frame >= self->xcursor_images->nimage)
|
|
|
|
self->current_frame = 0;
|
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
image = meta_cursor_sprite_get_current_frame_image (self);
|
2015-07-16 23:56:42 -04:00
|
|
|
|
|
|
|
g_clear_pointer (&self->texture, cogl_object_unref);
|
2015-03-10 23:16:58 -04:00
|
|
|
meta_cursor_sprite_load_from_xcursor_image (self, image);
|
2015-07-13 14:32:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
guint
|
2015-03-09 23:23:00 -04:00
|
|
|
meta_cursor_sprite_get_current_frame_time (MetaCursorSprite *self)
|
2015-07-13 14:32:42 -04:00
|
|
|
{
|
2015-03-09 23:23:00 -04:00
|
|
|
if (!meta_cursor_sprite_is_animated (self))
|
2015-07-13 14:32:42 -04:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return self->xcursor_images->images[self->current_frame]->delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
2015-03-09 23:23:00 -04:00
|
|
|
meta_cursor_sprite_is_animated (MetaCursorSprite *self)
|
2015-07-13 14:32:42 -04:00
|
|
|
{
|
|
|
|
return (self->xcursor_images &&
|
|
|
|
self->xcursor_images->nimage > 1);
|
|
|
|
}
|
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
MetaCursorSprite *
|
|
|
|
meta_cursor_sprite_from_theme (MetaCursor cursor)
|
2014-11-27 17:34:25 -05:00
|
|
|
{
|
2015-03-10 02:35:49 -04:00
|
|
|
MetaCursorSprite *self;
|
2015-03-10 23:16:58 -04:00
|
|
|
XcursorImage *image;
|
2015-03-10 02:35:49 -04:00
|
|
|
|
|
|
|
self = g_object_new (META_TYPE_CURSOR_SPRITE, NULL);
|
|
|
|
|
2014-04-23 11:04:08 -04:00
|
|
|
self->cursor = cursor;
|
2015-03-10 23:16:58 -04:00
|
|
|
self->current_frame = 0;
|
|
|
|
self->xcursor_images = load_cursor_on_client (self->cursor);
|
|
|
|
if (!self->xcursor_images)
|
|
|
|
meta_fatal ("Could not find cursor. Perhaps set XCURSOR_PATH?");
|
|
|
|
|
|
|
|
image = meta_cursor_sprite_get_current_frame_image (self);
|
|
|
|
meta_cursor_sprite_load_from_xcursor_image (self, image);
|
2015-03-10 02:35:49 -04:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
MetaCursorSprite *
|
|
|
|
meta_cursor_sprite_from_texture (CoglTexture2D *texture,
|
|
|
|
int hot_x,
|
|
|
|
int hot_y)
|
|
|
|
{
|
|
|
|
MetaCursorSprite *self;
|
|
|
|
|
|
|
|
self = g_object_new (META_TYPE_CURSOR_SPRITE, NULL);
|
|
|
|
|
|
|
|
cogl_object_ref (texture);
|
|
|
|
|
2015-07-16 23:56:42 -04:00
|
|
|
self->texture = texture;
|
|
|
|
self->hot_x = hot_x;
|
|
|
|
self->hot_y = hot_y;
|
2015-03-10 02:35:49 -04:00
|
|
|
|
2014-03-31 15:21:19 -04:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2014-08-13 20:19:35 -04:00
|
|
|
#ifdef HAVE_WAYLAND
|
2014-03-31 17:13:03 -04:00
|
|
|
static void
|
2015-03-10 23:16:58 -04:00
|
|
|
meta_cursor_sprite_load_from_buffer (MetaCursorSprite *self,
|
|
|
|
struct wl_resource *buffer,
|
|
|
|
int hot_x,
|
|
|
|
int hot_y)
|
2014-03-31 15:21:19 -04:00
|
|
|
{
|
2015-03-10 23:16:58 -04:00
|
|
|
MetaBackend *meta_backend = meta_get_backend ();
|
|
|
|
MetaCursorRenderer *renderer =
|
|
|
|
meta_backend_get_cursor_renderer (meta_backend);
|
2014-03-31 15:21:19 -04:00
|
|
|
ClutterBackend *backend;
|
|
|
|
CoglContext *cogl_context;
|
|
|
|
|
2015-07-16 23:56:42 -04:00
|
|
|
self->hot_x = hot_x;
|
|
|
|
self->hot_y = hot_y;
|
2014-03-31 15:21:19 -04:00
|
|
|
|
|
|
|
backend = clutter_get_default_backend ();
|
|
|
|
cogl_context = clutter_backend_get_cogl_context (backend);
|
|
|
|
|
2015-07-16 23:56:42 -04:00
|
|
|
self->texture = cogl_wayland_texture_2d_new_from_buffer (cogl_context, buffer, NULL);
|
2014-03-31 17:48:51 -04:00
|
|
|
|
2015-03-10 23:16:58 -04:00
|
|
|
meta_cursor_renderer_realize_cursor_from_wl_buffer (renderer, self, buffer);
|
2014-03-31 17:13:03 -04:00
|
|
|
}
|
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
MetaCursorSprite *
|
|
|
|
meta_cursor_sprite_from_buffer (struct wl_resource *buffer,
|
|
|
|
int hot_x,
|
|
|
|
int hot_y)
|
2014-03-31 17:13:03 -04:00
|
|
|
{
|
2015-03-09 23:23:00 -04:00
|
|
|
MetaCursorSprite *self;
|
2014-03-31 17:13:03 -04:00
|
|
|
|
2015-03-10 02:35:49 -04:00
|
|
|
self = g_object_new (META_TYPE_CURSOR_SPRITE, NULL);
|
|
|
|
|
2015-03-10 23:16:58 -04:00
|
|
|
meta_cursor_sprite_load_from_buffer (self, buffer, hot_x, hot_y);
|
2014-03-31 15:21:19 -04:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
2014-08-13 20:19:35 -04:00
|
|
|
#endif
|
2014-03-31 15:31:15 -04:00
|
|
|
|
|
|
|
CoglTexture *
|
2015-03-09 23:23:00 -04:00
|
|
|
meta_cursor_sprite_get_cogl_texture (MetaCursorSprite *self,
|
|
|
|
int *hot_x,
|
|
|
|
int *hot_y)
|
2014-03-31 15:31:15 -04:00
|
|
|
{
|
|
|
|
if (hot_x)
|
2015-07-16 23:56:42 -04:00
|
|
|
*hot_x = self->hot_x;
|
2014-03-31 15:31:15 -04:00
|
|
|
if (hot_y)
|
2015-07-16 23:56:42 -04:00
|
|
|
*hot_y = self->hot_y;
|
2014-11-27 17:34:25 -05:00
|
|
|
|
2015-07-16 23:56:42 -04:00
|
|
|
return COGL_TEXTURE (self->texture);
|
2014-03-31 15:31:15 -04:00
|
|
|
}
|
|
|
|
|
2015-03-10 23:16:58 -04:00
|
|
|
MetaCursor
|
|
|
|
meta_cursor_sprite_get_meta_cursor (MetaCursorSprite *self)
|
2014-03-31 15:31:15 -04:00
|
|
|
{
|
2015-03-10 23:16:58 -04:00
|
|
|
return self->cursor;
|
|
|
|
}
|
2014-11-27 17:34:25 -05:00
|
|
|
|
2015-03-10 23:16:58 -04:00
|
|
|
void
|
|
|
|
meta_cursor_sprite_get_hotspot (MetaCursorSprite *self,
|
|
|
|
int *hot_x,
|
|
|
|
int *hot_y)
|
|
|
|
{
|
2015-07-16 23:56:42 -04:00
|
|
|
*hot_x = self->hot_x;
|
|
|
|
*hot_y = self->hot_y;
|
2014-03-31 15:31:15 -04:00
|
|
|
}
|
2014-04-23 11:04:08 -04:00
|
|
|
|
2015-03-10 23:16:58 -04:00
|
|
|
guint
|
|
|
|
meta_cursor_sprite_get_width (MetaCursorSprite *self)
|
2014-04-23 11:04:08 -04:00
|
|
|
{
|
2015-07-16 23:56:42 -04:00
|
|
|
return cogl_texture_get_width (COGL_TEXTURE (self->texture));
|
2015-03-10 23:16:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
guint
|
|
|
|
meta_cursor_sprite_get_height (MetaCursorSprite *self)
|
|
|
|
{
|
2015-07-16 23:56:42 -04:00
|
|
|
return cogl_texture_get_height (COGL_TEXTURE (self->texture));
|
2014-04-23 11:04:08 -04:00
|
|
|
}
|
2015-03-10 02:35:49 -04:00
|
|
|
|
|
|
|
static void
|
|
|
|
meta_cursor_sprite_init (MetaCursorSprite *self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_cursor_sprite_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
MetaCursorSprite *self = META_CURSOR_SPRITE (object);
|
|
|
|
|
|
|
|
if (self->xcursor_images)
|
|
|
|
XcursorImagesDestroy (self->xcursor_images);
|
2015-07-16 23:56:42 -04:00
|
|
|
|
|
|
|
g_clear_pointer (&self->texture, cogl_object_unref);
|
2015-03-10 02:35:49 -04:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (meta_cursor_sprite_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
meta_cursor_sprite_class_init (MetaCursorSpriteClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->finalize = meta_cursor_sprite_finalize;
|
|
|
|
}
|