2008-07-01 22:57:50 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
2000-01-29 22:27:09 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
2000-01-29 22:27:09 +00:00
|
|
|
* 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
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
2000-01-29 22:27:09 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
2000-01-29 22:27:09 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
2000-01-29 22:27:09 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2010-10-15 02:05:51 +00:00
|
|
|
|
2013-08-06 14:21:05 +00:00
|
|
|
#define GDK_PIXBUF_ENABLE_BACKEND
|
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
|
|
|
|
2000-01-29 22:27:09 +00:00
|
|
|
#include "gdkcursor.h"
|
2010-12-20 01:20:48 +00:00
|
|
|
#include "gdkcursorprivate.h"
|
2017-11-17 05:34:04 +00:00
|
|
|
#include "gdktexture.h"
|
2010-12-20 12:35:39 +00:00
|
|
|
#include "gdkintl.h"
|
2000-03-28 01:40:57 +00:00
|
|
|
#include "gdkinternals.h"
|
2010-07-09 00:34:45 +00:00
|
|
|
|
2013-08-06 14:21:05 +00:00
|
|
|
#include <math.h>
|
2013-08-07 10:18:38 +00:00
|
|
|
#include <errno.h>
|
2000-01-29 22:27:09 +00:00
|
|
|
|
2010-11-15 15:41:31 +00:00
|
|
|
/**
|
2021-02-21 05:13:57 +00:00
|
|
|
* GdkCursor:
|
|
|
|
*
|
|
|
|
* `GdkCursor` is used to create and destroy cursors.
|
2010-11-15 15:41:31 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* Cursors are immutable objects, so once you created them, there is no way
|
|
|
|
* to modify them later. You should create a new cursor when you want to change
|
|
|
|
* something about it.
|
2017-11-03 02:07:33 +00:00
|
|
|
*
|
2021-02-17 17:41:56 +00:00
|
|
|
* Cursors by themselves are not very interesting: they must be bound to a
|
|
|
|
* window for users to see them. This is done with [method@Gdk.Surface.set_cursor]
|
|
|
|
* or [method@Gdk.Surface.set_device_cursor]. Applications will typically
|
2021-02-21 05:13:57 +00:00
|
|
|
* use higher-level GTK functions such as [method@Gtk.Widget.set_cursor]`
|
|
|
|
* instead.
|
2017-11-03 02:07:33 +00:00
|
|
|
*
|
2021-02-17 17:41:56 +00:00
|
|
|
* Cursors are not bound to a given [class@Gdk.Display], so they can be shared.
|
2017-11-03 02:07:33 +00:00
|
|
|
* However, the appearance of cursors may vary when used on different
|
|
|
|
* platforms.
|
|
|
|
*
|
2021-02-17 17:41:56 +00:00
|
|
|
* ## Named and texture cursors
|
|
|
|
*
|
2017-11-03 02:07:33 +00:00
|
|
|
* There are multiple ways to create cursors. The platform's own cursors
|
2021-02-17 17:41:56 +00:00
|
|
|
* can be created with [ctor@Gdk.Cursor.new_from_name]. That function lists
|
2017-11-03 02:07:33 +00:00
|
|
|
* the commonly available names that are shared with the CSS specification.
|
2020-10-29 17:41:10 +00:00
|
|
|
* Other names may be available, depending on the platform in use. On some
|
|
|
|
* platforms, what images are used for named cursors may be influenced by
|
|
|
|
* the cursor theme.
|
|
|
|
*
|
2021-02-17 17:41:56 +00:00
|
|
|
* Another option to create a cursor is to use [ctor@Gdk.Cursor.new_from_texture]
|
2018-07-13 08:06:10 +00:00
|
|
|
* and provide an image to use for the cursor.
|
2017-11-03 02:07:33 +00:00
|
|
|
*
|
|
|
|
* To ease work with unsupported cursors, a fallback cursor can be provided.
|
2021-02-21 05:13:57 +00:00
|
|
|
* If a [class@Gdk.Surface] cannot use a cursor because of the reasons mentioned
|
|
|
|
* above, it will try the fallback cursor. Fallback cursors can themselves have
|
|
|
|
* fallback cursors again, so it is possible to provide a chain of progressively
|
|
|
|
* easier to support cursors. If none of the provided cursors can be supported,
|
|
|
|
* the default cursor will be the ultimate fallback.
|
2010-12-20 01:20:48 +00:00
|
|
|
*/
|
2010-11-15 15:41:31 +00:00
|
|
|
|
2010-12-20 12:35:39 +00:00
|
|
|
enum {
|
|
|
|
PROP_0,
|
2017-11-03 02:07:33 +00:00
|
|
|
PROP_FALLBACK,
|
2017-11-03 00:59:15 +00:00
|
|
|
PROP_HOTSPOT_X,
|
|
|
|
PROP_HOTSPOT_Y,
|
|
|
|
PROP_NAME,
|
|
|
|
PROP_TEXTURE,
|
2010-12-20 12:35:39 +00:00
|
|
|
};
|
|
|
|
|
2017-11-03 05:00:56 +00:00
|
|
|
G_DEFINE_TYPE (GdkCursor, gdk_cursor, G_TYPE_OBJECT)
|
2010-12-20 02:09:31 +00:00
|
|
|
|
2010-12-20 12:35:39 +00:00
|
|
|
static void
|
|
|
|
gdk_cursor_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GdkCursor *cursor = GDK_CURSOR (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2017-11-03 02:07:33 +00:00
|
|
|
case PROP_FALLBACK:
|
|
|
|
g_value_set_object (value, cursor->fallback);
|
|
|
|
break;
|
2017-11-03 00:59:15 +00:00
|
|
|
case PROP_HOTSPOT_X:
|
|
|
|
g_value_set_int (value, cursor->hotspot_x);
|
|
|
|
break;
|
|
|
|
case PROP_HOTSPOT_Y:
|
|
|
|
g_value_set_int (value, cursor->hotspot_y);
|
|
|
|
break;
|
2017-11-02 19:38:07 +00:00
|
|
|
case PROP_NAME:
|
|
|
|
g_value_set_string (value, cursor->name);
|
|
|
|
break;
|
2017-11-03 00:59:15 +00:00
|
|
|
case PROP_TEXTURE:
|
|
|
|
g_value_set_object (value, cursor->texture);
|
|
|
|
break;
|
2010-12-20 12:35:39 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_cursor_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GdkCursor *cursor = GDK_CURSOR (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2017-11-03 02:07:33 +00:00
|
|
|
case PROP_FALLBACK:
|
|
|
|
cursor->fallback = g_value_dup_object (value);
|
|
|
|
break;
|
2017-11-03 00:59:15 +00:00
|
|
|
case PROP_HOTSPOT_X:
|
|
|
|
cursor->hotspot_x = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case PROP_HOTSPOT_Y:
|
|
|
|
cursor->hotspot_y = g_value_get_int (value);
|
|
|
|
break;
|
2017-11-02 19:38:07 +00:00
|
|
|
case PROP_NAME:
|
|
|
|
cursor->name = g_value_dup_string (value);
|
|
|
|
break;
|
2017-11-03 00:59:15 +00:00
|
|
|
case PROP_TEXTURE:
|
|
|
|
cursor->texture = g_value_dup_object (value);
|
|
|
|
break;
|
2010-12-20 12:35:39 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-02 19:38:07 +00:00
|
|
|
static void
|
|
|
|
gdk_cursor_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GdkCursor *cursor = GDK_CURSOR (object);
|
|
|
|
|
|
|
|
g_free (cursor->name);
|
2017-11-03 00:59:15 +00:00
|
|
|
g_clear_object (&cursor->texture);
|
2017-11-03 02:07:33 +00:00
|
|
|
g_clear_object (&cursor->fallback);
|
2017-11-02 19:38:07 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (gdk_cursor_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
2010-12-20 02:09:31 +00:00
|
|
|
static void
|
|
|
|
gdk_cursor_class_init (GdkCursorClass *cursor_class)
|
|
|
|
{
|
2010-12-20 12:35:39 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (cursor_class);
|
|
|
|
|
|
|
|
object_class->get_property = gdk_cursor_get_property;
|
|
|
|
object_class->set_property = gdk_cursor_set_property;
|
2017-11-02 19:38:07 +00:00
|
|
|
object_class->finalize = gdk_cursor_finalize;
|
2010-12-20 12:35:39 +00:00
|
|
|
|
2021-02-21 05:13:57 +00:00
|
|
|
/**
|
2021-02-24 23:07:11 +00:00
|
|
|
* GdkCursor:fallback: (attributes org.gtk.Property.get=gdk_cursor_get_fallback)
|
2021-02-21 05:13:57 +00:00
|
|
|
*
|
|
|
|
* Cursor to fall back to if this cursor cannot be displayed.
|
|
|
|
*/
|
2017-11-03 02:07:33 +00:00
|
|
|
g_object_class_install_property (object_class,
|
2020-10-29 17:41:10 +00:00
|
|
|
PROP_FALLBACK,
|
|
|
|
g_param_spec_object ("fallback",
|
2017-11-03 02:07:33 +00:00
|
|
|
P_("Fallback"),
|
|
|
|
P_("Cursor image to fall back to if this cursor cannot be displayed"),
|
|
|
|
GDK_TYPE_CURSOR,
|
2017-11-18 02:38:08 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2021-02-21 05:13:57 +00:00
|
|
|
|
|
|
|
/**
|
2021-02-24 23:07:11 +00:00
|
|
|
* GdkCursor:hotspot-x: (attributes org.gtk.Property.get=gdk_cursor_get_hotspot_x)
|
2021-02-21 05:13:57 +00:00
|
|
|
*
|
|
|
|
* X position of the cursor hotspot in the cursor image.
|
|
|
|
*/
|
2017-11-03 00:59:15 +00:00
|
|
|
g_object_class_install_property (object_class,
|
2020-10-29 17:41:10 +00:00
|
|
|
PROP_HOTSPOT_X,
|
|
|
|
g_param_spec_int ("hotspot-x",
|
2017-11-03 00:59:15 +00:00
|
|
|
P_("Hotspot X"),
|
|
|
|
P_("Horizontal offset of the cursor hotspot"),
|
|
|
|
0, G_MAXINT, 0,
|
2017-11-18 02:38:08 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2021-02-21 05:13:57 +00:00
|
|
|
|
|
|
|
/**
|
2021-02-24 23:07:11 +00:00
|
|
|
* GdkCursor:hotspot-y: (attributes org.gtk.Property.get=gdk_cursor_get_hotspot_y)
|
2021-02-21 05:13:57 +00:00
|
|
|
*
|
|
|
|
* Y position of the cursor hotspot in the cursor image.
|
|
|
|
*/
|
2017-11-03 00:59:15 +00:00
|
|
|
g_object_class_install_property (object_class,
|
2020-10-29 17:41:10 +00:00
|
|
|
PROP_HOTSPOT_Y,
|
|
|
|
g_param_spec_int ("hotspot-y",
|
2017-11-03 00:59:15 +00:00
|
|
|
P_("Hotspot Y"),
|
|
|
|
P_("Vertical offset of the cursor hotspot"),
|
|
|
|
0, G_MAXINT, 0,
|
2017-11-18 02:38:08 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2021-02-21 05:13:57 +00:00
|
|
|
|
|
|
|
/**
|
2021-02-24 23:07:11 +00:00
|
|
|
* GdkCursor:name: (attributes org.gtk.Property.get=gdk_cursor_get_name)
|
2021-02-21 05:13:57 +00:00
|
|
|
*
|
|
|
|
* Name of this this cursor.
|
|
|
|
*
|
|
|
|
* The name will be %NULL if the cursor was created from a texture.
|
|
|
|
*/
|
2017-11-02 19:38:07 +00:00
|
|
|
g_object_class_install_property (object_class,
|
2020-10-29 17:41:10 +00:00
|
|
|
PROP_NAME,
|
|
|
|
g_param_spec_string ("name",
|
2017-11-02 19:38:07 +00:00
|
|
|
P_("Name"),
|
|
|
|
P_("Name of this cursor"),
|
|
|
|
NULL,
|
2017-11-18 02:38:08 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2021-02-21 05:13:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GdkCursor:texture:
|
|
|
|
*
|
|
|
|
* The texture displayed by this cursor.
|
|
|
|
*
|
|
|
|
* The texture will be %NULL if the cursor was created from a name.
|
|
|
|
*/
|
2017-11-03 00:59:15 +00:00
|
|
|
g_object_class_install_property (object_class,
|
2020-10-29 17:41:10 +00:00
|
|
|
PROP_TEXTURE,
|
|
|
|
g_param_spec_object ("texture",
|
2017-11-03 00:59:15 +00:00
|
|
|
P_("Texture"),
|
|
|
|
P_("The texture displayed by this cursor"),
|
|
|
|
GDK_TYPE_TEXTURE,
|
2017-11-18 02:38:08 +00:00
|
|
|
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS));
|
2010-12-20 02:09:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_cursor_init (GdkCursor *cursor)
|
|
|
|
{
|
|
|
|
}
|
2001-06-28 16:35:38 +00:00
|
|
|
|
2017-11-03 02:08:04 +00:00
|
|
|
guint
|
|
|
|
gdk_cursor_hash (gconstpointer pointer)
|
|
|
|
{
|
|
|
|
const GdkCursor *cursor = pointer;
|
|
|
|
guint hash;
|
|
|
|
|
|
|
|
if (cursor->fallback)
|
|
|
|
hash = gdk_cursor_hash (cursor->fallback) << 16;
|
|
|
|
else
|
|
|
|
hash = 0;
|
|
|
|
|
|
|
|
if (cursor->name)
|
|
|
|
hash ^= g_str_hash (cursor->name);
|
|
|
|
else if (cursor->texture)
|
|
|
|
hash ^= g_direct_hash (cursor->texture);
|
|
|
|
|
|
|
|
hash ^= (cursor->hotspot_x << 8) | cursor->hotspot_y;
|
|
|
|
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gdk_cursor_equal (gconstpointer a,
|
|
|
|
gconstpointer b)
|
|
|
|
{
|
|
|
|
const GdkCursor *ca = a;
|
|
|
|
const GdkCursor *cb = b;
|
|
|
|
|
|
|
|
if ((ca->fallback != NULL) != (cb->fallback != NULL))
|
|
|
|
return FALSE;
|
|
|
|
if (ca->fallback != NULL && !gdk_cursor_equal (ca->fallback, cb->fallback))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (g_strcmp0 (ca->name, cb->name) != 0)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (ca->texture != cb->texture)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
if (ca->hotspot_x != cb->hotspot_x ||
|
|
|
|
ca->hotspot_y != cb->hotspot_y)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-12-13 17:36:35 +00:00
|
|
|
/**
|
|
|
|
* gdk_cursor_new_from_name:
|
2020-11-05 04:35:01 +00:00
|
|
|
* @name: the name of the cursor
|
2021-05-19 11:24:34 +00:00
|
|
|
* @fallback: (nullable): %NULL or the `GdkCursor` to fall back to when
|
2021-05-18 21:05:26 +00:00
|
|
|
* this one cannot be supported
|
2010-12-13 17:36:35 +00:00
|
|
|
*
|
|
|
|
* Creates a new cursor by looking up @name in the current cursor
|
|
|
|
* theme.
|
|
|
|
*
|
2015-05-08 13:55:28 +00:00
|
|
|
* A recommended set of cursor names that will work across different
|
|
|
|
* platforms can be found in the CSS specification:
|
2021-02-21 05:13:57 +00:00
|
|
|
*
|
2021-02-28 01:02:48 +00:00
|
|
|
* | | | | |
|
|
|
|
* | --- | --- | ---- | --- |
|
|
|
|
* | "none" | ![](default_cursor.png) "default" | ![](help_cursor.png) "help" | ![](pointer_cursor.png) "pointer" |
|
|
|
|
* | ![](context_menu_cursor.png) "context-menu" | ![](progress_cursor.png) "progress" | ![](wait_cursor.png) "wait" | ![](cell_cursor.png) "cell" |
|
|
|
|
* | ![](crosshair_cursor.png) "crosshair" | ![](text_cursor.png) "text" | ![](vertical_text_cursor.png) "vertical-text" | ![](alias_cursor.png) "alias" |
|
|
|
|
* | ![](copy_cursor.png) "copy" | ![](no_drop_cursor.png) "no-drop" | ![](move_cursor.png) "move" | ![](not_allowed_cursor.png) "not-allowed" |
|
|
|
|
* | ![](grab_cursor.png) "grab" | ![](grabbing_cursor.png) "grabbing" | ![](all_scroll_cursor.png) "all-scroll" | ![](col_resize_cursor.png) "col-resize" |
|
|
|
|
* | ![](row_resize_cursor.png) "row-resize" | ![](n_resize_cursor.png) "n-resize" | ![](e_resize_cursor.png) "e-resize" | ![](s_resize_cursor.png) "s-resize" |
|
|
|
|
* | ![](w_resize_cursor.png) "w-resize" | ![](ne_resize_cursor.png) "ne-resize" | ![](nw_resize_cursor.png) "nw-resize" | ![](sw_resize_cursor.png) "sw-resize" |
|
|
|
|
* | ![](se_resize_cursor.png) "se-resize" | ![](ew_resize_cursor.png) "ew-resize" | ![](ns_resize_cursor.png) "ns-resize" | ![](nesw_resize_cursor.png) "nesw-resize" |
|
|
|
|
* | ![](nwse_resize_cursor.png) "nwse-resize" | ![](zoom_in_cursor.png) "zoom-in" | ![](zoom_out_cursor.png) "zoom-out" | |
|
2015-05-08 13:55:28 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* Returns: (nullable): a new `GdkCursor`, or %NULL if there is no
|
2014-05-08 19:55:50 +00:00
|
|
|
* cursor with the given name
|
2010-12-13 17:36:35 +00:00
|
|
|
*/
|
2020-11-05 04:35:01 +00:00
|
|
|
GdkCursor *
|
2020-07-24 18:40:36 +00:00
|
|
|
gdk_cursor_new_from_name (const char *name,
|
2020-11-05 04:35:01 +00:00
|
|
|
GdkCursor *fallback)
|
2010-12-13 17:36:35 +00:00
|
|
|
{
|
2017-11-02 19:38:07 +00:00
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
2017-11-03 22:19:22 +00:00
|
|
|
g_return_val_if_fail (fallback == NULL || GDK_IS_CURSOR (fallback), NULL);
|
2010-12-13 17:36:35 +00:00
|
|
|
|
2017-11-03 21:49:04 +00:00
|
|
|
return g_object_new (GDK_TYPE_CURSOR,
|
|
|
|
"name", name,
|
2017-11-03 22:19:22 +00:00
|
|
|
"fallback", fallback,
|
2017-11-03 21:49:04 +00:00
|
|
|
NULL);
|
2010-12-13 17:36:35 +00:00
|
|
|
}
|
|
|
|
|
2013-08-07 10:18:38 +00:00
|
|
|
/**
|
2017-11-03 00:59:15 +00:00
|
|
|
* gdk_cursor_new_from_texture:
|
|
|
|
* @texture: the texture providing the pixel data
|
|
|
|
* @hotspot_x: the horizontal offset of the “hotspot” of the cursor
|
|
|
|
* @hotspot_y: the vertical offset of the “hotspot” of the cursor
|
2021-05-19 11:24:34 +00:00
|
|
|
* @fallback: (nullable): %NULL or the `GdkCursor` to fall back to when
|
2021-05-18 21:05:26 +00:00
|
|
|
* this one cannot be supported
|
2013-08-07 10:18:38 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* Creates a new cursor from a `GdkTexture`.
|
2013-08-07 10:18:38 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* Returns: a new `GdkCursor`
|
2013-08-07 10:18:38 +00:00
|
|
|
*/
|
|
|
|
GdkCursor *
|
2017-11-03 22:19:22 +00:00
|
|
|
gdk_cursor_new_from_texture (GdkTexture *texture,
|
2020-10-29 17:41:10 +00:00
|
|
|
int hotspot_x,
|
|
|
|
int hotspot_y,
|
2017-11-03 22:19:22 +00:00
|
|
|
GdkCursor *fallback)
|
2013-08-07 10:18:38 +00:00
|
|
|
{
|
2017-11-03 00:59:15 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_TEXTURE (texture), NULL);
|
|
|
|
g_return_val_if_fail (0 <= hotspot_x && hotspot_x < gdk_texture_get_width (texture), NULL);
|
|
|
|
g_return_val_if_fail (0 <= hotspot_y && hotspot_y < gdk_texture_get_height (texture), NULL);
|
2017-11-03 22:19:22 +00:00
|
|
|
g_return_val_if_fail (fallback == NULL || GDK_IS_CURSOR (fallback), NULL);
|
2013-08-07 10:18:38 +00:00
|
|
|
|
2020-11-05 04:35:01 +00:00
|
|
|
return g_object_new (GDK_TYPE_CURSOR,
|
2017-11-03 21:49:04 +00:00
|
|
|
"texture", texture,
|
|
|
|
"hotspot-x", hotspot_x,
|
|
|
|
"hotspot-y", hotspot_y,
|
2017-11-03 22:19:22 +00:00
|
|
|
"fallback", fallback,
|
2017-11-03 21:49:04 +00:00
|
|
|
NULL);
|
2013-08-07 10:18:38 +00:00
|
|
|
}
|
2017-11-02 19:38:07 +00:00
|
|
|
|
|
|
|
/**
|
2021-02-24 23:07:11 +00:00
|
|
|
* gdk_cursor_get_fallback: (attributes org.gtk.Method.get_property=fallback)
|
2021-02-21 05:13:57 +00:00
|
|
|
* @cursor: a `GdkCursor`
|
2017-11-02 19:38:07 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* Returns the fallback for this @cursor.
|
2017-11-02 19:38:07 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* The fallback will be used if this cursor is not available on a given
|
|
|
|
* `GdkDisplay`. For named cursors, this can happen when using nonstandard
|
|
|
|
* names or when using an incomplete cursor theme. For textured cursors,
|
|
|
|
* this can happen when the texture is too large or when the `GdkDisplay`
|
|
|
|
* it is used on does not support textured cursors.
|
2017-11-03 02:07:33 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* Returns: (transfer none) (nullable): the fallback of the cursor or %NULL
|
2021-05-21 00:45:06 +00:00
|
|
|
* to use the default cursor as fallback
|
2017-11-02 19:38:07 +00:00
|
|
|
*/
|
2017-11-03 02:07:33 +00:00
|
|
|
GdkCursor *
|
|
|
|
gdk_cursor_get_fallback (GdkCursor *cursor)
|
2017-11-02 19:38:07 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_CURSOR (cursor), NULL);
|
|
|
|
|
2017-11-03 02:07:33 +00:00
|
|
|
return cursor->fallback;
|
2017-11-02 19:38:07 +00:00
|
|
|
}
|
|
|
|
|
2017-11-03 00:59:15 +00:00
|
|
|
/**
|
2021-02-24 23:07:11 +00:00
|
|
|
* gdk_cursor_get_name: (attributes org.gtk.Method.get_property=name)
|
2021-02-21 05:13:57 +00:00
|
|
|
* @cursor: a `GdkCursor`
|
|
|
|
*
|
|
|
|
* Returns the name of the cursor.
|
2017-11-03 00:59:15 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* If the cursor is not a named cursor, %NULL will be returned.
|
2017-11-03 00:59:15 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* Returns: (transfer none) (nullable): the name of the cursor or %NULL
|
|
|
|
* if it is not a named cursor
|
2017-11-03 00:59:15 +00:00
|
|
|
*/
|
2017-11-03 02:07:33 +00:00
|
|
|
const char *
|
|
|
|
gdk_cursor_get_name (GdkCursor *cursor)
|
2017-11-03 00:59:15 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_CURSOR (cursor), NULL);
|
|
|
|
|
2017-11-03 02:07:33 +00:00
|
|
|
return cursor->name;
|
2017-11-03 00:59:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_cursor_get_texture:
|
2021-05-20 03:39:18 +00:00
|
|
|
* @cursor: a `GdkCursor`
|
2017-11-03 00:59:15 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* Returns the texture for the cursor.
|
2017-11-03 00:59:15 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* If the cursor is a named cursor, %NULL will be returned.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none) (nullable): the texture for cursor or %NULL
|
|
|
|
* if it is a named cursor
|
2017-11-03 00:59:15 +00:00
|
|
|
*/
|
|
|
|
GdkTexture *
|
|
|
|
gdk_cursor_get_texture (GdkCursor *cursor)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_CURSOR (cursor), NULL);
|
|
|
|
|
|
|
|
return cursor->texture;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-02-24 23:07:11 +00:00
|
|
|
* gdk_cursor_get_hotspot_x: (attributes org.gtk.Method.get_property=hotspot-x)
|
2021-02-21 05:13:57 +00:00
|
|
|
* @cursor: a `GdkCursor`
|
|
|
|
*
|
|
|
|
* Returns the horizontal offset of the hotspot.
|
2017-11-03 00:59:15 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* The hotspot indicates the pixel that will be directly above the cursor.
|
2017-11-03 00:59:15 +00:00
|
|
|
*
|
2020-10-29 17:41:10 +00:00
|
|
|
* Note that named cursors may have a nonzero hotspot, but this function
|
|
|
|
* will only return the hotspot position for cursors created with
|
2021-02-21 05:13:57 +00:00
|
|
|
* [ctor@Gdk.Cursor.new_from_texture].
|
2020-10-29 17:41:10 +00:00
|
|
|
*
|
2017-11-03 00:59:15 +00:00
|
|
|
* Returns: the horizontal offset of the hotspot or 0 for named cursors
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
gdk_cursor_get_hotspot_x (GdkCursor *cursor)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_CURSOR (cursor), 0);
|
|
|
|
|
|
|
|
return cursor->hotspot_x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2021-02-24 23:07:11 +00:00
|
|
|
* gdk_cursor_get_hotspot_y: (attributes org.gtk.Method.get_property=hotspot-y)
|
2021-02-21 05:13:57 +00:00
|
|
|
* @cursor: a `GdkCursor`
|
|
|
|
*
|
|
|
|
* Returns the vertical offset of the hotspot.
|
2017-11-03 00:59:15 +00:00
|
|
|
*
|
2021-02-21 05:13:57 +00:00
|
|
|
* The hotspot indicates the pixel that will be directly above the cursor.
|
2017-11-03 00:59:15 +00:00
|
|
|
*
|
2020-10-29 17:41:10 +00:00
|
|
|
* Note that named cursors may have a nonzero hotspot, but this function
|
|
|
|
* will only return the hotspot position for cursors created with
|
2021-02-21 05:13:57 +00:00
|
|
|
* [ctor@Gdk.Cursor.new_from_texture].
|
2020-10-29 17:41:10 +00:00
|
|
|
*
|
2017-11-03 00:59:15 +00:00
|
|
|
* Returns: the vertical offset of the hotspot or 0 for named cursors
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
gdk_cursor_get_hotspot_y (GdkCursor *cursor)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_CURSOR (cursor), 0);
|
|
|
|
|
|
|
|
return cursor->hotspot_y;
|
|
|
|
}
|