]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkcursor-x11.c
85b5ee56a1df0a5f3a0d7941de763394b252402e
[~andy/gtk] / gdk / x11 / gdkcursor-x11.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
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,
52                             GdkPixmap *mask,
53                             GdkColor  *fg,
54                             GdkColor  *bg,
55                             gint       x,
56                             gint       y)
57 {
58   GdkCursorPrivate *private;
59   GdkCursor *cursor;
60   Pixmap source_pixmap, mask_pixmap;
61   Cursor xcursor;
62   XColor xfg, xbg;
63
64   g_return_val_if_fail (source != NULL, NULL);
65   g_return_val_if_fail (fg != NULL, NULL);
66   g_return_val_if_fail (bg != NULL, NULL);
67
68   source_pixmap = GDK_DRAWABLE_XID (source);
69   mask_pixmap   = GDK_DRAWABLE_XID (mask);
70
71   xfg.pixel = fg->pixel;
72   xfg.red = fg->red;
73   xfg.blue = fg->blue;
74   xfg.green = fg->green;
75   xbg.pixel = bg->pixel;
76   xbg.red = bg->red;
77   xbg.blue = bg->blue;
78   xbg.green = bg->green;
79   
80   xcursor = XCreatePixmapCursor (gdk_display, source_pixmap, mask_pixmap, &xfg, &xbg, x, y);
81   private = g_new (GdkCursorPrivate, 1);
82   private->xdisplay = gdk_display;
83   private->xcursor = xcursor;
84   cursor = (GdkCursor *) private;
85   cursor->type = GDK_CURSOR_IS_PIXMAP;
86
87   return cursor;
88 }
89
90 void
91 _gdk_cursor_destroy (GdkCursor *cursor)
92 {
93   GdkCursorPrivate *private;
94
95   g_return_if_fail (cursor != NULL);
96   g_return_if_fail (cursor->ref_count == 0);
97
98   private = (GdkCursorPrivate *) cursor;
99   XFreeCursor (private->xdisplay, private->xcursor);
100
101   g_free (private);
102 }