summaryrefslogtreecommitdiffstats
path: root/src/zoom-context.cpp
diff options
context:
space:
mode:
authorJosh Andler <scislac@gmail.com>2006-06-19 02:23:07 +0000
committerscislac <scislac@users.sourceforge.net>2006-06-19 02:23:07 +0000
commitbb05f0d4bf3818eec40efbf0ca30ae4bd21a65b4 (patch)
tree9b288ae8f76ae6ca2ed6ae4f4bc4fce0f7df6ab5 /src/zoom-context.cpp
parentadded vietnamese as translation package (diff)
downloadinkscape-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/zoom-context.cpp')
-rw-r--r--src/zoom-context.cpp39
1 files changed, 28 insertions, 11 deletions
diff --git a/src/zoom-context.cpp b/src/zoom-context.cpp
index 62395581f..70582678f 100644
--- a/src/zoom-context.cpp
+++ b/src/zoom-context.cpp
@@ -21,6 +21,8 @@
#include "desktop.h"
#include "pixmaps/cursor-zoom.xpm"
#include "pixmaps/cursor-zoom-out.xpm"
+#include "pixmaps/cursor-zoom.pixbuf"
+#include "pixmaps/cursor-zoom-out.pixbuf"
#include "prefs-utils.h"
#include "zoom-context.h"
@@ -79,8 +81,13 @@ static void sp_zoom_context_init (SPZoomContext *zoom_context)
SPEventContext *event_context = SP_EVENT_CONTEXT(zoom_context);
event_context->cursor_shape = cursor_zoom_xpm;
- event_context->hot_x = 6;
- event_context->hot_y = 6;
+ event_context->cursor_pixbuf = gdk_pixbuf_new_from_inline(
+ -1,
+ cursor_zoom_pixbuf,
+ FALSE,
+ NULL);
+ event_context->hot_x = 9;
+ event_context->hot_y = 9;
}
static void
@@ -199,24 +206,34 @@ static gint sp_zoom_context_root_handler(SPEventContext *event_context, GdkEvent
case GDK_Shift_L:
case GDK_Shift_R:
event_context->cursor_shape = cursor_zoom_out_xpm;
+ event_context->cursor_pixbuf = gdk_pixbuf_new_from_inline(
+ -1,
+ cursor_zoom_out_pixbuf,
+ FALSE,
+ NULL);
sp_event_context_update_cursor(event_context);
break;
default:
- break;
- }
- break;
- case GDK_KEY_RELEASE:
+ break;
+ }
+ break;
+ case GDK_KEY_RELEASE:
switch (get_group0_keyval (&event->key)) {
- case GDK_Shift_L:
- case GDK_Shift_R:
+ case GDK_Shift_L:
+ case GDK_Shift_R:
event_context->cursor_shape = cursor_zoom_xpm;
+ event_context->cursor_pixbuf = gdk_pixbuf_new_from_inline(
+ -1,
+ cursor_zoom_pixbuf,
+ FALSE,
+ NULL);
sp_event_context_update_cursor(event_context);
break;
- default:
+ default:
break;
- }
+ }
break;
- default:
+ default:
break;
}