Code

initial color cursor implementation (reads from pixbufs, will work on reading from...
[inkscape.git] / src / sp-cursor.h
1 #ifndef SP_CURSOR_H
2 #define SP_CURSOR_H
4 #include <gdk/gdk.h>
6 GdkCursor *sp_cursor_new_from_xpm(gchar **xpm, gint hot_x, gint hot_y);
7 GdkCursor *sp_cursor_new_from_pixbuf(GdkPixbuf *pixbuf, gint hot_x, gint hot_y);
8 GdkCursor *sp_cursor_new(GdkDisplay *display, GdkPixbuf *pixbuf, gchar **xpm, gint hot_x, gint hot_y);
10 #endif
12 /*
13   Local Variables:
14   mode:c++
15   c-file-style:"stroustrup"
16   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
17   indent-tabs-mode:nil
18   fill-column:99
19   End:
20 */
21 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :