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>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef META_CURSOR_H
|
|
|
|
#define META_CURSOR_H
|
|
|
|
|
2015-03-10 02:35:49 -04:00
|
|
|
#include <meta/common.h>
|
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
typedef struct _MetaCursorSprite MetaCursorSprite;
|
2014-03-31 14:08:14 -04:00
|
|
|
|
2015-03-10 02:35:49 -04:00
|
|
|
#define META_TYPE_CURSOR_SPRITE (meta_cursor_sprite_get_type ())
|
|
|
|
G_DECLARE_FINAL_TYPE (MetaCursorSprite,
|
|
|
|
meta_cursor_sprite,
|
|
|
|
META, CURSOR_SPRITE,
|
|
|
|
GObject);
|
2014-03-31 15:21:19 -04:00
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
MetaCursorSprite * meta_cursor_sprite_from_theme (MetaCursor cursor);
|
2014-03-31 15:21:19 -04:00
|
|
|
|
2014-08-13 20:19:35 -04:00
|
|
|
#ifdef HAVE_WAYLAND
|
|
|
|
#include <wayland-server.h>
|
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-08-13 20:19:35 -04:00
|
|
|
#endif
|
2014-03-31 15:21:19 -04:00
|
|
|
|
2015-03-09 23:23:00 -04:00
|
|
|
MetaCursor meta_cursor_sprite_get_meta_cursor (MetaCursorSprite *self);
|
2014-04-23 11:04:08 -04:00
|
|
|
|
2015-03-10 02:35:49 -04:00
|
|
|
MetaCursorSprite * meta_cursor_sprite_from_texture (CoglTexture2D *texture,
|
|
|
|
int hot_x,
|
|
|
|
int hot_y);
|
|
|
|
|
2014-04-23 10:41:09 -04:00
|
|
|
Cursor meta_cursor_create_x_cursor (Display *xdisplay,
|
|
|
|
MetaCursor cursor);
|
|
|
|
|
2015-03-10 02:41:12 -04:00
|
|
|
CoglTexture *meta_cursor_sprite_get_cogl_texture (MetaCursorSprite *self,
|
|
|
|
int *hot_x,
|
|
|
|
int *hot_y);
|
|
|
|
|
2015-03-10 23:16:58 -04:00
|
|
|
void meta_cursor_sprite_get_hotspot (MetaCursorSprite *self,
|
|
|
|
int *hot_x,
|
|
|
|
int *hot_y);
|
|
|
|
|
|
|
|
guint meta_cursor_sprite_get_width (MetaCursorSprite *self);
|
|
|
|
|
|
|
|
guint meta_cursor_sprite_get_height (MetaCursorSprite *self);
|
2015-03-10 02:41:12 -04:00
|
|
|
|
|
|
|
gboolean meta_cursor_sprite_is_animated (MetaCursorSprite *self);
|
|
|
|
void meta_cursor_sprite_tick_frame (MetaCursorSprite *self);
|
|
|
|
guint meta_cursor_sprite_get_current_frame_time (MetaCursorSprite *self);
|
|
|
|
|
2014-03-31 14:08:14 -04:00
|
|
|
#endif /* META_CURSOR_H */
|