1999-11-11 22:01:55 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-11-11 22:01:55 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1999-11-11 22:01:55 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1999-11-11 22:01:55 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2000-07-23 01:18:34 +00:00
|
|
|
#include "gdkwin32.h"
|
1999-11-11 22:01:55 +00:00
|
|
|
#include "gdkcursor.h"
|
Large changes to the Win32 backend, partially made necessary by the
2000-05-02 Tor Lillqvist <tml@iki.fi>
Large changes to the Win32 backend, partially made necessary by
the changes to the backend-independent internal
structures. Attempts to implement similar backing store stuff as
on X11. The current (CVS) version of the Win32 backend is *not* as
stable as it was before the no-flicker branch was merged. A
zipfile with that version is available from
http://www.gimp.org/win32/. That should be use by "production"
code until this CVS version is usable. (But note, the Win32
backend has never been claimed to be "production quality".)
* README.win32: Add the above comment about versions.
* gdk/gdkwindow.c: Don't use backing store for now on Win32.
* gdk/gdk.def: Update.
* gdk/gdkfont.h: Declare temporary Win32-only functions. Will
presumably be replaced by some more better mechanism as 1.4 gets
closer to release shape.
* gdk/makefile.{cygwin,msc}: Update.
* gdk/win32/*.c: Correct inclusions of the backend-specific and
internal headers. Change code according to changes in these. Use
gdk_drawable_*, not gdk_window_* where necessary.
* gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
our old DND.
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
to interpret single characters as UTF-8. Thanks to Hans Breuer.
Use correct function name in warning messages.
* gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
GSourceFuncs gdk_event_prepare and gdk_event_check.
(gdk_event_get_graphics_expose): Do implement, use
PeekMessage. Thanks to Hans Breuer.
(event_mask_string): Debugging function to print an GdkEventMask.
(gdk_pointer_grab): Use it.
* gdk/win32/gdkfont-win32.c: The Unicode subrange that the
(old) book I used claimed was Hangul actually is CJK Unified
Ideographs Extension A. Also, Hangul Syllables were missing.
Improve logging.
* gdk/win32/gdkgc-win32.c: Largish changes.
* gdk/win32/gdkim-win32.c (gdk_set_locale): Use
g_win32_getlocale() from GLib, and not setlocale() to get current
locale name.
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
gdkwin32.h, similarily as in the X11 backend.
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
assignment was used instead of equals in if test. Thanks to Hans
Breuer.
* gdk/win32/makefile.{cygwin,msc}
* gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
path to the Win32 headers that works also with the mingw compiler.
* gtk/gtkstyle.c: Include <string.h>.
2000-05-01 22:06:49 +00:00
|
|
|
#include "gdkinternals.h"
|
2000-07-23 01:18:34 +00:00
|
|
|
#include "gdkpixmap-win32.h"
|
Large changes to the Win32 backend, partially made necessary by the
2000-05-02 Tor Lillqvist <tml@iki.fi>
Large changes to the Win32 backend, partially made necessary by
the changes to the backend-independent internal
structures. Attempts to implement similar backing store stuff as
on X11. The current (CVS) version of the Win32 backend is *not* as
stable as it was before the no-flicker branch was merged. A
zipfile with that version is available from
http://www.gimp.org/win32/. That should be use by "production"
code until this CVS version is usable. (But note, the Win32
backend has never been claimed to be "production quality".)
* README.win32: Add the above comment about versions.
* gdk/gdkwindow.c: Don't use backing store for now on Win32.
* gdk/gdk.def: Update.
* gdk/gdkfont.h: Declare temporary Win32-only functions. Will
presumably be replaced by some more better mechanism as 1.4 gets
closer to release shape.
* gdk/makefile.{cygwin,msc}: Update.
* gdk/win32/*.c: Correct inclusions of the backend-specific and
internal headers. Change code according to changes in these. Use
gdk_drawable_*, not gdk_window_* where necessary.
* gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
our old DND.
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
to interpret single characters as UTF-8. Thanks to Hans Breuer.
Use correct function name in warning messages.
* gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
GSourceFuncs gdk_event_prepare and gdk_event_check.
(gdk_event_get_graphics_expose): Do implement, use
PeekMessage. Thanks to Hans Breuer.
(event_mask_string): Debugging function to print an GdkEventMask.
(gdk_pointer_grab): Use it.
* gdk/win32/gdkfont-win32.c: The Unicode subrange that the
(old) book I used claimed was Hangul actually is CJK Unified
Ideographs Extension A. Also, Hangul Syllables were missing.
Improve logging.
* gdk/win32/gdkgc-win32.c: Largish changes.
* gdk/win32/gdkim-win32.c (gdk_set_locale): Use
g_win32_getlocale() from GLib, and not setlocale() to get current
locale name.
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
gdkwin32.h, similarily as in the X11 backend.
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
assignment was used instead of equals in if test. Thanks to Hans
Breuer.
* gdk/win32/makefile.{cygwin,msc}
* gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
path to the Win32 headers that works also with the mingw compiler.
* gtk/gtkstyle.c: Include <string.h>.
2000-05-01 22:06:49 +00:00
|
|
|
#include "gdkprivate-win32.h"
|
1999-11-11 22:01:55 +00:00
|
|
|
|
|
|
|
static const struct { const char *name; int type; } cursors[] = {
|
|
|
|
{ "x_cursor", 0 },
|
|
|
|
{ "arrow", 2 },
|
|
|
|
{ "based_arrow_down", 4 },
|
|
|
|
{ "based_arrow_up", 6 },
|
|
|
|
{ "boat", 8 },
|
|
|
|
{ "bogosity", 10 },
|
|
|
|
{ "bottom_left_corner", 12 },
|
|
|
|
{ "bottom_right_corner", 14 },
|
|
|
|
{ "bottom_side", 16 },
|
|
|
|
{ "bottom_tee", 18 },
|
|
|
|
{ "box_spiral", 20 },
|
|
|
|
{ "center_ptr", 22 },
|
|
|
|
{ "circle", 24 },
|
|
|
|
{ "clock", 26 },
|
|
|
|
{ "coffee_mug", 28 },
|
|
|
|
{ "cross", 30 },
|
|
|
|
{ "cross_reverse", 32 },
|
|
|
|
{ "crosshair", 34 },
|
|
|
|
{ "diamond_cross", 36 },
|
|
|
|
{ "dot", 38 },
|
|
|
|
{ "dotbox", 40 },
|
|
|
|
{ "double_arrow", 42 },
|
|
|
|
{ "draft_large", 44 },
|
|
|
|
{ "draft_small", 46 },
|
|
|
|
{ "draped_box", 48 },
|
|
|
|
{ "exchange", 50 },
|
|
|
|
{ "fleur", 52 },
|
|
|
|
{ "gobbler", 54 },
|
|
|
|
{ "gumby", 56 },
|
|
|
|
{ "hand1", 58 },
|
|
|
|
{ "hand2", 60 },
|
|
|
|
{ "heart", 62 },
|
|
|
|
{ "icon", 64 },
|
|
|
|
{ "iron_cross", 66 },
|
|
|
|
{ "left_ptr", 68 },
|
|
|
|
{ "left_side", 70 },
|
|
|
|
{ "left_tee", 72 },
|
|
|
|
{ "leftbutton", 74 },
|
|
|
|
{ "ll_angle", 76 },
|
|
|
|
{ "lr_angle", 78 },
|
|
|
|
{ "man", 80 },
|
|
|
|
{ "middlebutton", 82 },
|
|
|
|
{ "mouse", 84 },
|
|
|
|
{ "pencil", 86 },
|
|
|
|
{ "pirate", 88 },
|
|
|
|
{ "plus", 90 },
|
|
|
|
{ "question_arrow", 92 },
|
|
|
|
{ "right_ptr", 94 },
|
|
|
|
{ "right_side", 96 },
|
|
|
|
{ "right_tee", 98 },
|
|
|
|
{ "rightbutton", 100 },
|
|
|
|
{ "rtl_logo", 102 },
|
|
|
|
{ "sailboat", 104 },
|
|
|
|
{ "sb_down_arrow", 106 },
|
|
|
|
{ "sb_h_double_arrow", 108 },
|
|
|
|
{ "sb_left_arrow", 110 },
|
|
|
|
{ "sb_right_arrow", 112 },
|
|
|
|
{ "sb_up_arrow", 114 },
|
|
|
|
{ "sb_v_double_arrow", 116 },
|
|
|
|
{ "shuttle", 118 },
|
|
|
|
{ "sizing", 120 },
|
|
|
|
{ "spider", 122 },
|
|
|
|
{ "spraycan", 124 },
|
|
|
|
{ "star", 126 },
|
|
|
|
{ "target", 128 },
|
|
|
|
{ "tcross", 130 },
|
|
|
|
{ "top_left_arrow", 132 },
|
|
|
|
{ "top_left_corner", 134 },
|
|
|
|
{ "top_right_corner", 136 },
|
|
|
|
{ "top_side", 138 },
|
|
|
|
{ "top_tee", 140 },
|
|
|
|
{ "trek", 142 },
|
|
|
|
{ "ul_angle", 144 },
|
|
|
|
{ "umbrella", 146 },
|
|
|
|
{ "ur_angle", 148 },
|
|
|
|
{ "watch", 150 },
|
|
|
|
{ "xterm", 152 },
|
|
|
|
{ NULL, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
GdkCursor*
|
|
|
|
gdk_cursor_new (GdkCursorType cursor_type)
|
|
|
|
{
|
|
|
|
GdkCursorPrivate *private;
|
|
|
|
GdkCursor *cursor;
|
2000-07-23 01:18:34 +00:00
|
|
|
HCURSOR hcursor;
|
1999-11-11 22:01:55 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; cursors[i].name != NULL && cursors[i].type != cursor_type; i++)
|
|
|
|
;
|
|
|
|
if (cursors[i].name != NULL)
|
|
|
|
{
|
2000-07-23 01:18:34 +00:00
|
|
|
hcursor = LoadCursor (gdk_dll_hinstance, cursors[i].name);
|
|
|
|
if (hcursor == NULL)
|
2000-02-13 14:52:47 +00:00
|
|
|
WIN32_API_FAILED ("LoadCursor");
|
1999-11-11 22:01:55 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("gdk_cursor_new: %#x %d\n",
|
2000-10-09 19:49:42 +00:00
|
|
|
(guint) hcursor, cursor_type));
|
1999-11-11 22:01:55 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_warning ("gdk_cursor_new: no cursor %d found",
|
|
|
|
cursor_type);
|
2000-07-23 01:18:34 +00:00
|
|
|
hcursor = NULL;
|
1999-11-11 22:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private = g_new (GdkCursorPrivate, 1);
|
2000-07-23 01:18:34 +00:00
|
|
|
private->hcursor = hcursor;
|
1999-11-11 22:01:55 +00:00
|
|
|
cursor = (GdkCursor*) private;
|
|
|
|
cursor->type = cursor_type;
|
2000-02-13 14:52:47 +00:00
|
|
|
cursor->ref_count = 1;
|
1999-11-11 22:01:55 +00:00
|
|
|
|
|
|
|
return cursor;
|
|
|
|
}
|
|
|
|
|
2000-10-09 19:49:42 +00:00
|
|
|
static gboolean
|
|
|
|
color_is_white (GdkColor *color)
|
|
|
|
{
|
|
|
|
return (color->red == 0xFFFF
|
|
|
|
&& color->green == 0xFFFF
|
|
|
|
&& color->blue == 0xFFFF);
|
|
|
|
}
|
|
|
|
|
1999-11-11 22:01:55 +00:00
|
|
|
GdkCursor*
|
|
|
|
gdk_cursor_new_from_pixmap (GdkPixmap *source,
|
|
|
|
GdkPixmap *mask,
|
|
|
|
GdkColor *fg,
|
|
|
|
GdkColor *bg,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
|
|
|
{
|
|
|
|
GdkCursorPrivate *private;
|
|
|
|
GdkCursor *cursor;
|
2000-07-23 01:18:34 +00:00
|
|
|
GdkPixmapImplWin32 *source_impl, *mask_impl;
|
1999-11-11 22:01:55 +00:00
|
|
|
GdkImage *source_image, *mask_image;
|
2000-07-23 01:18:34 +00:00
|
|
|
HCURSOR hcursor;
|
|
|
|
guchar *p, *q, *xor_mask, *and_mask;
|
1999-11-11 22:01:55 +00:00
|
|
|
gint width, height, cursor_width, cursor_height;
|
|
|
|
guchar residue;
|
|
|
|
gint ix, iy;
|
2000-10-09 19:49:42 +00:00
|
|
|
const gboolean bg_is_white = color_is_white (bg);
|
1999-11-11 22:01:55 +00:00
|
|
|
|
2000-07-04 06:12:54 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_PIXMAP (source), NULL);
|
|
|
|
g_return_val_if_fail (GDK_IS_PIXMAP (mask), NULL);
|
|
|
|
g_return_val_if_fail (fg != NULL, NULL);
|
|
|
|
g_return_val_if_fail (bg != NULL, NULL);
|
1999-11-11 22:01:55 +00:00
|
|
|
|
2000-11-12 15:46:55 +00:00
|
|
|
source_impl = GDK_PIXMAP_IMPL_WIN32 (GDK_PIXMAP_OBJECT (source)->impl);
|
|
|
|
mask_impl = GDK_PIXMAP_IMPL_WIN32 (GDK_PIXMAP_OBJECT (mask)->impl);
|
1999-11-11 22:01:55 +00:00
|
|
|
|
2000-07-23 01:18:34 +00:00
|
|
|
g_return_val_if_fail (source_impl->width == mask_impl->width
|
|
|
|
&& source_impl->height == mask_impl->height,
|
1999-11-11 22:01:55 +00:00
|
|
|
NULL);
|
2000-07-23 01:18:34 +00:00
|
|
|
width = source_impl->width;
|
|
|
|
height = source_impl->height;
|
1999-11-11 22:01:55 +00:00
|
|
|
cursor_width = GetSystemMetrics (SM_CXCURSOR);
|
|
|
|
cursor_height = GetSystemMetrics (SM_CYCURSOR);
|
|
|
|
|
2000-07-23 01:18:34 +00:00
|
|
|
g_return_val_if_fail (width <= cursor_width && height <= cursor_height,
|
|
|
|
NULL);
|
1999-11-11 22:01:55 +00:00
|
|
|
|
|
|
|
residue = (1 << ((8-(width%8))%8)) - 1;
|
|
|
|
|
|
|
|
source_image = gdk_image_get (source, 0, 0, width, height);
|
|
|
|
mask_image = gdk_image_get (mask, 0, 0, width, height);
|
|
|
|
|
|
|
|
if (source_image->depth != 1 || mask_image->depth != 1)
|
|
|
|
{
|
2000-07-23 01:18:34 +00:00
|
|
|
gdk_image_unref (source_image);
|
|
|
|
gdk_image_unref (mask_image);
|
|
|
|
g_return_val_if_fail (source_image->depth == 1 && mask_image->depth == 1,
|
|
|
|
NULL);
|
1999-11-11 22:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Such complex bit manipulation for this simple task, sigh.
|
|
|
|
* The X cursor and Windows cursor concepts are quite different.
|
|
|
|
* We assume here that we are always called with fg == black and
|
2000-10-09 19:49:42 +00:00
|
|
|
* bg == white, *or* the other way around. Random colours won't work.
|
|
|
|
* (Well, you will get a cursor, but not in those colours.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Note: The comments below refer to the case fg==black and
|
|
|
|
* bg==white, as that was what was implemented first. The fg==white
|
|
|
|
* (the "if (fg->pixel)" branches) case was added later.
|
1999-11-11 22:01:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* First set masked-out source bits, as all source bits matter on Windoze.
|
2000-07-23 01:18:34 +00:00
|
|
|
* As we invert them below, they will be clear in the final xor_mask.
|
1999-11-11 22:01:55 +00:00
|
|
|
*/
|
|
|
|
for (iy = 0; iy < height; iy++)
|
|
|
|
{
|
|
|
|
p = (guchar *) source_image->mem + iy*source_image->bpl;
|
|
|
|
q = (guchar *) mask_image->mem + iy*mask_image->bpl;
|
|
|
|
|
|
|
|
for (ix = 0; ix < ((width-1)/8+1); ix++)
|
2000-10-09 19:49:42 +00:00
|
|
|
if (bg_is_white)
|
|
|
|
*p++ |= ~(*q++);
|
|
|
|
else
|
|
|
|
*p++ &= *q++;
|
1999-11-11 22:01:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* XOR mask is initialized to zero */
|
2000-07-23 01:18:34 +00:00
|
|
|
xor_mask = g_malloc0 (cursor_width/8 * cursor_height);
|
1999-11-11 22:01:55 +00:00
|
|
|
|
|
|
|
for (iy = 0; iy < height; iy++)
|
|
|
|
{
|
|
|
|
p = (guchar *) source_image->mem + iy*source_image->bpl;
|
2000-07-23 01:18:34 +00:00
|
|
|
q = xor_mask + iy*cursor_width/8;
|
1999-11-11 22:01:55 +00:00
|
|
|
|
|
|
|
for (ix = 0; ix < ((width-1)/8+1); ix++)
|
2000-10-09 19:49:42 +00:00
|
|
|
if (bg_is_white)
|
|
|
|
*q++ = ~(*p++);
|
|
|
|
else
|
|
|
|
*q++ = *p++;
|
|
|
|
|
1999-11-11 22:01:55 +00:00
|
|
|
q[-1] &= ~residue; /* Clear left-over bits */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* AND mask is initialized to ones */
|
2000-07-23 01:18:34 +00:00
|
|
|
and_mask = g_malloc (cursor_width/8 * cursor_height);
|
|
|
|
memset (and_mask, 0xFF, cursor_width/8 * cursor_height);
|
1999-11-11 22:01:55 +00:00
|
|
|
|
|
|
|
for (iy = 0; iy < height; iy++)
|
|
|
|
{
|
|
|
|
p = (guchar *) mask_image->mem + iy*mask_image->bpl;
|
2000-07-23 01:18:34 +00:00
|
|
|
q = and_mask + iy*cursor_width/8;
|
1999-11-11 22:01:55 +00:00
|
|
|
|
|
|
|
for (ix = 0; ix < ((width-1)/8+1); ix++)
|
|
|
|
*q++ = ~(*p++);
|
2000-10-09 19:49:42 +00:00
|
|
|
|
1999-11-11 22:01:55 +00:00
|
|
|
q[-1] |= residue; /* Set left-over bits */
|
|
|
|
}
|
|
|
|
|
2000-07-23 21:43:23 +00:00
|
|
|
hcursor = CreateCursor (gdk_app_hmodule, x, y, cursor_width, cursor_height,
|
2000-07-23 01:18:34 +00:00
|
|
|
and_mask, xor_mask);
|
1999-11-11 22:01:55 +00:00
|
|
|
|
|
|
|
GDK_NOTE (MISC, g_print ("gdk_cursor_new_from_pixmap: "
|
|
|
|
"%#x (%dx%d) %#x (%dx%d) = %#x (%dx%d)\n",
|
2000-10-09 19:49:42 +00:00
|
|
|
(guint) GDK_PIXMAP_HBITMAP (source),
|
2000-07-23 01:18:34 +00:00
|
|
|
source_impl->width, source_impl->height,
|
2000-10-09 19:49:42 +00:00
|
|
|
(guint) GDK_PIXMAP_HBITMAP (mask),
|
2000-07-23 01:18:34 +00:00
|
|
|
mask_impl->width, mask_impl->height,
|
2000-10-09 19:49:42 +00:00
|
|
|
(guint) hcursor, cursor_width, cursor_height));
|
1999-11-11 22:01:55 +00:00
|
|
|
|
2000-07-23 01:18:34 +00:00
|
|
|
g_free (xor_mask);
|
|
|
|
g_free (and_mask);
|
1999-11-11 22:01:55 +00:00
|
|
|
|
1999-11-20 01:22:57 +00:00
|
|
|
gdk_image_unref (source_image);
|
|
|
|
gdk_image_unref (mask_image);
|
1999-11-11 22:01:55 +00:00
|
|
|
|
|
|
|
private = g_new (GdkCursorPrivate, 1);
|
2000-07-23 01:18:34 +00:00
|
|
|
private->hcursor = hcursor;
|
1999-11-11 22:01:55 +00:00
|
|
|
cursor = (GdkCursor*) private;
|
|
|
|
cursor->type = GDK_CURSOR_IS_PIXMAP;
|
2000-02-13 20:22:20 +00:00
|
|
|
cursor->ref_count = 1;
|
|
|
|
|
1999-11-11 22:01:55 +00:00
|
|
|
return cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2000-01-29 22:26:41 +00:00
|
|
|
_gdk_cursor_destroy (GdkCursor *cursor)
|
1999-11-11 22:01:55 +00:00
|
|
|
{
|
|
|
|
GdkCursorPrivate *private;
|
|
|
|
|
|
|
|
g_return_if_fail (cursor != NULL);
|
|
|
|
private = (GdkCursorPrivate *) cursor;
|
|
|
|
|
2000-02-03 01:19:03 +00:00
|
|
|
GDK_NOTE (MISC, g_print ("_gdk_cursor_destroy: %#x\n",
|
2000-10-09 19:49:42 +00:00
|
|
|
(cursor->type == GDK_CURSOR_IS_PIXMAP) ? (guint) private->hcursor : 0));
|
1999-11-11 22:01:55 +00:00
|
|
|
|
|
|
|
if (cursor->type == GDK_CURSOR_IS_PIXMAP)
|
2000-07-23 01:18:34 +00:00
|
|
|
if (!DestroyCursor (private->hcursor))
|
2000-07-04 06:12:54 +00:00
|
|
|
WIN32_API_FAILED ("DestroyCursor");
|
1999-11-11 22:01:55 +00:00
|
|
|
|
|
|
|
g_free (private);
|
|
|
|
}
|