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