]> Pileus Git - ~andy/gtk/blob - gdk/gdkcursor.c
Add support for pixmap cursors -mig
[~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 Free
16  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18 #include <X11/Xlib.h>
19 #include <X11/cursorfont.h>
20 #include "gdk.h"
21 #include "gdkprivate.h"
22
23
24 GdkCursor*
25 gdk_cursor_new (GdkCursorType cursor_type)
26 {
27   GdkCursorPrivate *private;
28   GdkCursor *cursor;
29   Cursor xcursor;
30
31   xcursor = XCreateFontCursor (gdk_display, cursor_type);
32   private = g_new (GdkCursorPrivate, 1);
33   private->xdisplay = gdk_display;
34   private->xcursor = xcursor;
35   cursor = (GdkCursor*) private;
36   cursor->type = cursor_type;
37
38   return cursor;
39 }
40
41 GdkCursor*
42 gdk_cursor_new_from_pixmap (GdkPixmap *source, GdkPixmap *mask, GdkColor *fg, GdkColor *bg, int x, int y)
43 {
44   GdkCursorPrivate *private;
45   GdkCursor *cursor;
46   Pixmap source_pixmap, mask_pixmap;
47   Cursor xcursor;
48   XColor xfg, xbg;
49   
50   source_pixmap = ((GdkPixmapPrivate *) source)->xwindow;
51   mask_pixmap   = ((GdkPixmapPrivate *) mask)->xwindow;
52
53   xfg.pixel = fg->pixel;
54   xfg.red = fg->red;
55   xfg.blue = fg->blue;
56   xfg.green = fg->green;
57   xbg.pixel = bg->pixel;
58   xbg.red = bg->red;
59   xbg.blue = bg->blue;
60   xbg.green = bg->green;
61   
62   xcursor = XCreatePixmapCursor (gdk_display, source_pixmap, mask_pixmap, &xfg, &xbg, x, y);
63   private = g_new (GdkCursorPrivate, 1);
64   private->xdisplay = gdk_display;
65   private->xcursor = xcursor;
66   cursor = (GdkCursor *) private;
67   cursor->type = GDK_CURSOR_IS_PIXMAP;
68
69   return cursor;
70 }
71
72 void
73 gdk_cursor_destroy (GdkCursor *cursor)
74 {
75   GdkCursorPrivate *private;
76
77   g_return_if_fail (cursor != NULL);
78
79   private = (GdkCursorPrivate *) cursor;
80   XFreeCursor (private->xdisplay, private->xcursor);
81
82   g_free (private);
83 }