2008-07-01 22:57:50 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
2005-07-12 05:09:13 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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/>.
|
2005-07-12 05:09:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2008-05-28 14:01:57 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
2005-07-12 05:09:13 +00:00
|
|
|
*/
|
|
|
|
|
2012-12-28 14:57:34 +00:00
|
|
|
#ifndef __GDK_CURSOR_H__
|
|
|
|
#define __GDK_CURSOR_H__
|
|
|
|
|
2009-10-21 18:30:04 +00:00
|
|
|
#if !defined (__GDK_H_INSIDE__) && !defined (GDK_COMPILATION)
|
2008-05-28 14:01:57 +00:00
|
|
|
#error "Only <gdk/gdk.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2012-02-27 12:07:48 +00:00
|
|
|
#include <gdk/gdkversionmacros.h>
|
1999-10-01 23:18:30 +00:00
|
|
|
#include <gdk/gdktypes.h>
|
2003-06-30 22:30:54 +00:00
|
|
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
1999-10-01 23:18:30 +00:00
|
|
|
|
2005-05-08 05:47:52 +00:00
|
|
|
G_BEGIN_DECLS
|
1999-10-01 23:18:30 +00:00
|
|
|
|
2010-12-20 02:09:31 +00:00
|
|
|
#define GDK_TYPE_CURSOR (gdk_cursor_get_type ())
|
|
|
|
#define GDK_CURSOR(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_CURSOR, GdkCursor))
|
|
|
|
#define GDK_IS_CURSOR(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_CURSOR))
|
|
|
|
|
1999-10-01 23:18:30 +00:00
|
|
|
/* Cursors
|
|
|
|
*/
|
2001-06-28 16:35:38 +00:00
|
|
|
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2004-11-28 06:45:52 +00:00
|
|
|
GType gdk_cursor_get_type (void) G_GNUC_CONST;
|
2001-06-28 16:35:38 +00:00
|
|
|
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2003-06-30 22:30:54 +00:00
|
|
|
GdkCursor* gdk_cursor_new_from_pixbuf (GdkDisplay *display,
|
|
|
|
GdkPixbuf *pixbuf,
|
|
|
|
gint x,
|
|
|
|
gint y);
|
2013-08-07 10:18:38 +00:00
|
|
|
GDK_AVAILABLE_IN_3_10
|
|
|
|
GdkCursor* gdk_cursor_new_from_surface (GdkDisplay *display,
|
|
|
|
cairo_surface_t *surface,
|
|
|
|
gdouble x,
|
|
|
|
gdouble y);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2010-12-20 02:27:05 +00:00
|
|
|
GdkCursor* gdk_cursor_new_from_name (GdkDisplay *display,
|
|
|
|
const gchar *name);
|
2013-03-15 09:58:39 +00:00
|
|
|
GDK_AVAILABLE_IN_ALL
|
2002-06-18 20:59:44 +00:00
|
|
|
GdkDisplay* gdk_cursor_get_display (GdkCursor *cursor);
|
2017-11-02 19:38:07 +00:00
|
|
|
GDK_AVAILABLE_IN_3_94
|
|
|
|
const char *gdk_cursor_get_name (GdkCursor *cursor);
|
1999-10-01 23:18:30 +00:00
|
|
|
|
2001-08-23 15:26:49 +00:00
|
|
|
|
2005-05-08 05:47:52 +00:00
|
|
|
G_END_DECLS
|
1999-10-01 23:18:30 +00:00
|
|
|
|
|
|
|
#endif /* __GDK_CURSOR_H__ */
|