diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-06-14 15:10:13 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-06-14 15:10:13 +0000 |
commit | 6b5b26984418b2c28e4a04499970e1e759605a9b (patch) | |
tree | bc9fe64b5f49419794e64b6b7ad4cbb29eff2e40 /gdk/gdkcursor.h | |
parent | e5dab4ac8f7c5a31dbd271ae0db75f189f7d7cc3 (diff) | |
download | gdk-pixbuf-6b5b26984418b2c28e4a04499970e1e759605a9b.tar.gz |
New functions to construct named cursors and to get the image used for a
2005-06-14 Matthias Clasen <mclasen@redhat.com>
* gdk/gdk.symbols:
* gdk/gdkcursor.h:
* gdk/x11/gdkcursor-x11.c (gdk_cursor_get_image)
(gdk_cursor_new_from_name): New functions to construct named
cursors and to get the image used for a cursor.
Diffstat (limited to 'gdk/gdkcursor.h')
-rw-r--r-- | gdk/gdkcursor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gdk/gdkcursor.h b/gdk/gdkcursor.h index c91c3d30d..ed93ccb98 100644 --- a/gdk/gdkcursor.h +++ b/gdk/gdkcursor.h @@ -123,6 +123,9 @@ GdkCursor* gdk_cursor_new_from_pixbuf (GdkDisplay *display, GdkDisplay* gdk_cursor_get_display (GdkCursor *cursor); GdkCursor* gdk_cursor_ref (GdkCursor *cursor); void gdk_cursor_unref (GdkCursor *cursor); +GdkCursor* gdk_cursor_new_from_name (GdkDisplay *display, + const gchar *name); +GdkPixbuf* gdk_cursor_get_image (GdkCursor *cursor); #ifndef GDK_DISABLE_DEPRECATED #define gdk_cursor_destroy gdk_cursor_unref |