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/pencil-context.cpp | |
| 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/pencil-context.cpp')
| -rw-r--r-- | src/pencil-context.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pencil-context.cpp b/src/pencil-context.cpp index 3265d87bf..380c68c6b 100644 --- a/src/pencil-context.cpp +++ b/src/pencil-context.cpp @@ -29,6 +29,7 @@ #include "prefs-utils.h" #include "snap.h" #include "pixmaps/cursor-pencil.xpm" +#include "pixmaps/cursor-pencil.pixbuf" #include "display/bezier-utils.h" #include "display/canvas-bpath.h" #include <glibmm/i18n.h> @@ -109,6 +110,11 @@ sp_pencil_context_init(SPPencilContext *pc) SPEventContext *event_context = SP_EVENT_CONTEXT(pc); event_context->cursor_shape = cursor_pencil_xpm; + event_context->cursor_pixbuf = gdk_pixbuf_new_from_inline( + -1, + cursor_pencil_pixbuf, + FALSE, + NULL); event_context->hot_x = 4; event_context->hot_y = 4; |
