From a51d944e25a2d5aa2ed6cc1ce371f652591bceaf Mon Sep 17 00:00:00 2001 From: Arturo Espinosa Date: Sat, 6 Dec 1997 20:53:46 +0000 Subject: [PATCH] Add support for pixmap cursors -mig --- gdk/gdk.h | 10 ++++++++-- gdk/gdkcursor.c | 31 +++++++++++++++++++++++++++++++ gdk/gdktypes.h | 3 ++- gdk/x11/gdkcursor-x11.c | 31 +++++++++++++++++++++++++++++++ 4 files changed, 72 insertions(+), 3 deletions(-) diff --git a/gdk/gdk.h b/gdk/gdk.h index cb15f5ecf..610f81ca9 100644 --- a/gdk/gdk.h +++ b/gdk/gdk.h @@ -268,8 +268,14 @@ void gdk_window_set_events (GdkWindow *window, /* Cursors */ -GdkCursor* gdk_cursor_new (GdkCursorType cursor_type); -void gdk_cursor_destroy (GdkCursor *cursor); +GdkCursor* gdk_cursor_new (GdkCursorType cursor_type); +GdkCursor* gdk_cursor_new_from_pixmap (GdkPixmap *source, + GdkPixmap *mask, + GdkColor *fg, + GdkColor *bg, + int x, + int y); +void gdk_cursor_destroy (GdkCursor *cursor); /* GCs diff --git a/gdk/gdkcursor.c b/gdk/gdkcursor.c index 22bfd250b..b9b33ee51 100644 --- a/gdk/gdkcursor.c +++ b/gdk/gdkcursor.c @@ -38,6 +38,37 @@ gdk_cursor_new (GdkCursorType cursor_type) return cursor; } +GdkCursor* +gdk_cursor_new_from_pixmap (GdkPixmap *source, GdkPixmap *mask, GdkColor *fg, GdkColor *bg, int x, int y) +{ + GdkCursorPrivate *private; + GdkCursor *cursor; + Pixmap source_pixmap, mask_pixmap; + Cursor xcursor; + XColor xfg, xbg; + + source_pixmap = ((GdkPixmapPrivate *) source)->xwindow; + mask_pixmap = ((GdkPixmapPrivate *) mask)->xwindow; + + xfg.pixel = fg->pixel; + xfg.red = fg->red; + xfg.blue = fg->blue; + xfg.green = fg->green; + xbg.pixel = bg->pixel; + xbg.red = bg->red; + xbg.blue = bg->blue; + xbg.green = bg->green; + + xcursor = XCreatePixmapCursor (gdk_display, source_pixmap, mask_pixmap, &xfg, &xbg, x, y); + private = g_new (GdkCursorPrivate, 1); + private->xdisplay = gdk_display; + private->xcursor = xcursor; + cursor = (GdkCursor *) private; + cursor->type = GDK_CURSOR_IS_PIXMAP; + + return cursor; +} + void gdk_cursor_destroy (GdkCursor *cursor) { diff --git a/gdk/gdktypes.h b/gdk/gdktypes.h index 024f1b3c4..ab7819bc3 100644 --- a/gdk/gdktypes.h +++ b/gdk/gdktypes.h @@ -273,7 +273,8 @@ typedef enum typedef enum { #include - GDK_LAST_CURSOR + GDK_LAST_CURSOR, + GDK_CURSOR_IS_PIXMAP = -1 } GdkCursorType; /* Event types. diff --git a/gdk/x11/gdkcursor-x11.c b/gdk/x11/gdkcursor-x11.c index 22bfd250b..b9b33ee51 100644 --- a/gdk/x11/gdkcursor-x11.c +++ b/gdk/x11/gdkcursor-x11.c @@ -38,6 +38,37 @@ gdk_cursor_new (GdkCursorType cursor_type) return cursor; } +GdkCursor* +gdk_cursor_new_from_pixmap (GdkPixmap *source, GdkPixmap *mask, GdkColor *fg, GdkColor *bg, int x, int y) +{ + GdkCursorPrivate *private; + GdkCursor *cursor; + Pixmap source_pixmap, mask_pixmap; + Cursor xcursor; + XColor xfg, xbg; + + source_pixmap = ((GdkPixmapPrivate *) source)->xwindow; + mask_pixmap = ((GdkPixmapPrivate *) mask)->xwindow; + + xfg.pixel = fg->pixel; + xfg.red = fg->red; + xfg.blue = fg->blue; + xfg.green = fg->green; + xbg.pixel = bg->pixel; + xbg.red = bg->red; + xbg.blue = bg->blue; + xbg.green = bg->green; + + xcursor = XCreatePixmapCursor (gdk_display, source_pixmap, mask_pixmap, &xfg, &xbg, x, y); + private = g_new (GdkCursorPrivate, 1); + private->xdisplay = gdk_display; + private->xcursor = xcursor; + cursor = (GdkCursor *) private; + cursor->type = GDK_CURSOR_IS_PIXMAP; + + return cursor; +} + void gdk_cursor_destroy (GdkCursor *cursor) { -- 2.43.2