diff options
| author | Josh Andler <scislac@gmail.com> | 2006-06-19 02:23:07 +0000 |
|---|---|---|
| committer | scislac <scislac@users.sourceforge.net> | 2006-06-19 02:23:07 +0000 |
| commit | bb05f0d4bf3818eec40efbf0ca30ae4bd21a65b4 (patch) | |
| tree | 9b288ae8f76ae6ca2ed6ae4f4bc4fce0f7df6ab5 /src/sp-cursor.h | |
| parent | added vietnamese as translation package (diff) | |
| download | inkscape-bb05f0d4bf3818eec40efbf0ca30ae4bd21a65b4.tar.gz inkscape-bb05f0d4bf3818eec40efbf0ca30ae4bd21a65b4.zip | |
initial color cursor implementation (reads from pixbufs, will work on reading from svg instead)
(bzr r1227)
Diffstat (limited to 'src/sp-cursor.h')
| -rw-r--r-- | src/sp-cursor.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sp-cursor.h b/src/sp-cursor.h index 36468aae8..251117372 100644 --- a/src/sp-cursor.h +++ b/src/sp-cursor.h @@ -3,8 +3,9 @@ #include <gdk/gdk.h> -void sp_cursor_bitmap_and_mask_from_xpm(GdkBitmap **bitmap, GdkBitmap **mask, gchar **xpm); GdkCursor *sp_cursor_new_from_xpm(gchar **xpm, gint hot_x, gint hot_y); +GdkCursor *sp_cursor_new_from_pixbuf(GdkPixbuf *pixbuf, gint hot_x, gint hot_y); +GdkCursor *sp_cursor_new(GdkDisplay *display, GdkPixbuf *pixbuf, gchar **xpm, gint hot_x, gint hot_y); #endif |
