]> Pileus Git - ~andy/gtk/blob - gdk/gdkcursor.c
Fix a reference to window_private->destroyed.
[~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
30 #include "gdkx.h"
31 #include "gdkcursor.h"
32 #include "gdkprivate.h"
33
34
35 GdkCursor*
36 gdk_cursor_new (GdkCursorType cursor_type)
37 {
38   GdkCursorPrivate *private;
39   GdkCursor *cursor;
40   Cursor xcursor;
41
42   xcursor = XCreateFontCursor (gdk_display, cursor_type);
43   private = g_new (GdkCursorPrivate, 1);
44   private->xdisplay = gdk_display;
45   private->xcursor = xcursor;
46   cursor = (GdkCursor*) private;
47   cursor->type = cursor_type;
48
49   return cursor;
50 }
51
52 GdkCursor*
53 gdk_cursor_new_from_pixmap (GdkPixmap *source, GdkPixmap *mask, GdkColor *fg, GdkColor *bg, gint x, gint y)
54 {
55   GdkCursorPrivate *private;
56   GdkCursor *cursor;
57   Pixmap source_pixmap, mask_pixmap;
58   Cursor xcursor;
59   XColor xfg, xbg;
60   
61   source_pixmap = GDK_DRAWABLE_XID (source);
62   mask_pixmap   = GDK_DRAWABLE_XID (mask);
63
64   xfg.pixel = fg->pixel;
65   xfg.red = fg->red;
66   xfg.blue = fg->blue;
67   xfg.green = fg->green;
68   xbg.pixel = bg->pixel;
69   xbg.red = bg->red;
70   xbg.blue = bg->blue;
71   xbg.green = bg->green;
72   
73   xcursor = XCreatePixmapCursor (gdk_display, source_pixmap, mask_pixmap, &xfg, &xbg, x, y);
74   private = g_new (GdkCursorPrivate, 1);
75   private->xdisplay = gdk_display;
76   private->xcursor = xcursor;
77   cursor = (GdkCursor *) private;
78   cursor->type = GDK_CURSOR_IS_PIXMAP;
79
80   return cursor;
81 }
82
83 void
84 gdk_cursor_destroy (GdkCursor *cursor)
85 {
86   GdkCursorPrivate *private;
87
88   g_return_if_fail (cursor != NULL);
89
90   private = (GdkCursorPrivate *) cursor;
91   XFreeCursor (private->xdisplay, private->xcursor);
92
93   g_free (private);
94 }