From cae2409c94b11d17643f7c19829e2653d759ff8e Mon Sep 17 00:00:00 2001 From: Maximilian Albert Date: Thu, 13 Dec 2007 09:45:27 +0000 Subject: Fundamentally reworked version of the 3D box tool (among many other things, this fixes bugs #168900 and #168868). See mailing list for details. Sorry for this single large commit but it was unfeasible to keep the history. (bzr r4224) --- src/rect-context.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/rect-context.cpp') diff --git a/src/rect-context.cpp b/src/rect-context.cpp index d069e052c..3efc81596 100644 --- a/src/rect-context.cpp +++ b/src/rect-context.cpp @@ -15,6 +15,7 @@ */ #include "config.h" +#include "inkscape.h" #include @@ -397,6 +398,19 @@ static gint sp_rect_context_root_handler(SPEventContext *event_context, GdkEvent } break; + case GDK_T: + { + Inkscape::Selection *selection = sp_desktop_selection (inkscape_active_desktop()); + SPItem *item = selection->singleItem(); + if (item && SP_IS_RECT (item)) { + g_print ("Scaling transformation matrix\n"); + SP_RECT (item)->transform = nr_matrix_set_scale(SP_RECT (item)->transform, 1.25, 1.5); + SP_OBJECT (item)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); + } + ret = TRUE; + } + break; + case GDK_Escape: sp_desktop_selection(desktop)->clear(); //TODO: make dragging escapable by Esc -- cgit v1.2.3