]> Pileus Git - ~andy/gtk/blob - gdk/gdkcursor.c
Added notice to look in AUTHORS and ChangeLog files for a list of changes.
[~andy/gtk] / gdk / gdkcursor.c
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-1999.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include <X11/Xlib.h>
28 #include <X11/cursorfont.h>
29 #include "gdk.h"
30 #include "gdkprivate.h"
31
32
33 GdkCursor*
34 gdk_cursor_new (GdkCursorType cursor_type)
35 {
36   GdkCursorPrivate *private;
37   GdkCursor *cursor;
38   Cursor xcursor;
39
40   xcursor = XCreateFontCursor (gdk_display, cursor_type);
41   private = g_new (GdkCursorPrivate, 1);
42   private->xdisplay = gdk_display;
43   private->xcursor = xcursor;
44   cursor = (GdkCursor*) private;
45   cursor->type = cursor_type;
46
47   return cursor;
48 }
49
50 GdkCursor*
51 gdk_cursor_new_from_pixmap (GdkPixmap *source, GdkPixmap *mask, GdkColor *fg, GdkColor *bg, gint x, gint y)
52 {
53   GdkCursorPrivate *private;
54   GdkCursor *cursor;
55   Pixmap source_pixmap, mask_pixmap;
56   Cursor xcursor;
57   XColor xfg, xbg;
58   
59   source_pixmap = ((GdkPixmapPrivate *) source)->xwindow;
60   mask_pixmap   = ((GdkPixmapPrivate *) mask)->xwindow;
61
62   xfg.pixel = fg->pixel;
63   xfg.red = fg->red;
64   xfg.blue = fg->blue;
65   xfg.green = fg->green;
66   xbg.pixel = bg->pixel;
67   xbg.red = bg->red;
68   xbg.blue = bg->blue;
69   xbg.green = bg->green;
70   
71   xcursor = XCreatePixmapCursor (gdk_display, source_pixmap, mask_pixmap, &xfg, &xbg, x, y);
72   private = g_new (GdkCursorPrivate, 1);
73   private->xdisplay = gdk_display;
74   private->xcursor = xcursor;
75   cursor = (GdkCursor *) private;
76   cursor->type = GDK_CURSOR_IS_PIXMAP;
77
78   return cursor;
79 }
80
81 void
82 gdk_cursor_destroy (GdkCursor *cursor)
83 {
84   GdkCursorPrivate *private;
85
86   g_return_if_fail (cursor != NULL);
87
88   private = (GdkCursorPrivate *) cursor;
89   XFreeCursor (private->xdisplay, private->xcursor);
90
91   g_free (private);
92 }