Code

- try to use more forward declarations for less dependencies on display/curve.h
[inkscape.git] / src / rect-context.cpp
1 #define __SP_RECT_CONTEXT_C__
3 /*
4  * Rectangle drawing context
5  *
6  * Author:
7  *   Lauris Kaplinski <lauris@kaplinski.com>
8  *   bulia byak <buliabyak@users.sf.net>
9  *
10  * Copyright (C) 2006      Johan Engelen <johan@shouraizou.nl>
11  * Copyright (C) 2000-2005 authors
12  * Copyright (C) 2000-2001 Ximian, Inc.
13  *
14  * Released under GNU GPL, read the file 'COPYING' for more information
15  */
17 #include "config.h"
18 #include "inkscape.h"
20 #include <gdk/gdkkeysyms.h>
21 #include <cstring>
22 #include <string>
24 #include "macros.h"
25 #include "display/sp-canvas.h"
26 #include "sp-rect.h"
27 #include "document.h"
28 #include "sp-namedview.h"
29 #include "selection.h"
30 #include "selection-chemistry.h"
31 #include "desktop-handles.h"
32 #include "snap.h"
33 #include "desktop.h"
34 #include "desktop-style.h"
35 #include "message-context.h"
36 #include "pixmaps/cursor-rect.xpm"
37 #include "rect-context.h"
38 #include "sp-metrics.h"
39 #include <glibmm/i18n.h>
40 #include "object-edit.h"
41 #include "xml/repr.h"
42 #include "xml/node-event-vector.h"
43 #include "prefs-utils.h"
44 #include "context-fns.h"
46 //static const double goldenratio = 1.61803398874989484820; // golden ratio
48 static void sp_rect_context_class_init(SPRectContextClass *klass);
49 static void sp_rect_context_init(SPRectContext *rect_context);
50 static void sp_rect_context_dispose(GObject *object);
52 static void sp_rect_context_setup(SPEventContext *ec);
53 static void sp_rect_context_set(SPEventContext *ec, gchar const *key, gchar const *val);
55 static gint sp_rect_context_root_handler(SPEventContext *event_context, GdkEvent *event);
56 static gint sp_rect_context_item_handler(SPEventContext *event_context, SPItem *item, GdkEvent *event);
58 static void sp_rect_drag(SPRectContext &rc, NR::Point const pt, guint state);
59 static void sp_rect_finish(SPRectContext *rc);
61 static SPEventContextClass *parent_class;
64 GtkType sp_rect_context_get_type()
65 {
66     static GType type = 0;
67     if (!type) {
68         GTypeInfo info = {
69             sizeof(SPRectContextClass),
70             NULL, NULL,
71             (GClassInitFunc) sp_rect_context_class_init,
72             NULL, NULL,
73             sizeof(SPRectContext),
74             4,
75             (GInstanceInitFunc) sp_rect_context_init,
76             NULL,    /* value_table */
77         };
78         type = g_type_register_static(SP_TYPE_EVENT_CONTEXT, "SPRectContext", &info, (GTypeFlags) 0);
79     }
80     return type;
81 }
83 static void sp_rect_context_class_init(SPRectContextClass *klass)
84 {
85     GObjectClass *object_class = (GObjectClass *) klass;
86     SPEventContextClass *event_context_class = (SPEventContextClass *) klass;
88     parent_class = (SPEventContextClass *) g_type_class_peek_parent(klass);
90     object_class->dispose = sp_rect_context_dispose;
92     event_context_class->setup = sp_rect_context_setup;
93     event_context_class->set = sp_rect_context_set;
94     event_context_class->root_handler  = sp_rect_context_root_handler;
95     event_context_class->item_handler  = sp_rect_context_item_handler;
96 }
98 static void sp_rect_context_init(SPRectContext *rect_context)
99 {
100     SPEventContext *event_context = SP_EVENT_CONTEXT(rect_context);
102     event_context->cursor_shape = cursor_rect_xpm;
103     event_context->hot_x = 4;
104     event_context->hot_y = 4;
105     event_context->xp = 0;
106     event_context->yp = 0;
107     event_context->tolerance = 0;
108     event_context->within_tolerance = false;
109     event_context->item_to_select = NULL;
111     event_context->shape_repr = NULL;
112     event_context->shape_knot_holder = NULL;
114     rect_context->item = NULL;
116     rect_context->rx = 0.0;
117     rect_context->ry = 0.0;
119     new (&rect_context->sel_changed_connection) sigc::connection();
122 static void sp_rect_context_dispose(GObject *object)
124     SPRectContext *rc = SP_RECT_CONTEXT(object);
125     SPEventContext *ec = SP_EVENT_CONTEXT(object);
127     ec->enableGrDrag(false);
129     rc->sel_changed_connection.disconnect();
130     rc->sel_changed_connection.~connection();
132     /* fixme: This is necessary because we do not grab */
133     if (rc->item) {
134         sp_rect_finish(rc);
135     }
137     if (ec->shape_knot_holder) {
138         sp_knot_holder_destroy(ec->shape_knot_holder);
139         ec->shape_knot_holder = NULL;
140     }
142     if (ec->shape_repr) { // remove old listener
143         sp_repr_remove_listener_by_data(ec->shape_repr, ec);
144         Inkscape::GC::release(ec->shape_repr);
145         ec->shape_repr = 0;
146     }
148     if (rc->_message_context) {
149         delete rc->_message_context;
150     }
152     G_OBJECT_CLASS(parent_class)->dispose(object);
155 static Inkscape::XML::NodeEventVector ec_shape_repr_events = {
156     NULL, /* child_added */
157     NULL, /* child_removed */
158     ec_shape_event_attr_changed,
159     NULL, /* content_changed */
160     NULL  /* order_changed */
161 };
163 /**
164 \brief  Callback that processes the "changed" signal on the selection;
165 destroys old and creates new knotholder
166 */
167 void sp_rect_context_selection_changed(Inkscape::Selection *selection, gpointer data)
169     SPRectContext *rc = SP_RECT_CONTEXT(data);
170     SPEventContext *ec = SP_EVENT_CONTEXT(rc);
172     if (ec->shape_knot_holder) { // destroy knotholder
173         sp_knot_holder_destroy(ec->shape_knot_holder);
174         ec->shape_knot_holder = NULL;
175     }
177     if (ec->shape_repr) { // remove old listener
178         sp_repr_remove_listener_by_data(ec->shape_repr, ec);
179         Inkscape::GC::release(ec->shape_repr);
180         ec->shape_repr = 0;
181     }
183     SPItem *item = selection->singleItem();
184     if (item) {
185         ec->shape_knot_holder = sp_item_knot_holder(item, ec->desktop);
186         Inkscape::XML::Node *shape_repr = SP_OBJECT_REPR(item);
187         if (shape_repr) {
188             ec->shape_repr = shape_repr;
189             Inkscape::GC::anchor(shape_repr);
190             sp_repr_add_listener(shape_repr, &ec_shape_repr_events, ec);
191         }
192     }
195 static void sp_rect_context_setup(SPEventContext *ec)
197     SPRectContext *rc = SP_RECT_CONTEXT(ec);
199     if (((SPEventContextClass *) parent_class)->setup) {
200         ((SPEventContextClass *) parent_class)->setup(ec);
201     }
203     SPItem *item = sp_desktop_selection(ec->desktop)->singleItem();
204     if (item) {
205         ec->shape_knot_holder = sp_item_knot_holder(item, ec->desktop);
206         Inkscape::XML::Node *shape_repr = SP_OBJECT_REPR(item);
207         if (shape_repr) {
208             ec->shape_repr = shape_repr;
209             Inkscape::GC::anchor(shape_repr);
210             sp_repr_add_listener(shape_repr, &ec_shape_repr_events, ec);
211         }
212     }
214     rc->sel_changed_connection.disconnect();
215     rc->sel_changed_connection = sp_desktop_selection(ec->desktop)->connectChanged(
216         sigc::bind(sigc::ptr_fun(&sp_rect_context_selection_changed), (gpointer)rc)
217     );
219     sp_event_context_read(ec, "rx");
220     sp_event_context_read(ec, "ry");
222     if (prefs_get_int_attribute("tools.shapes", "selcue", 0) != 0) {
223         ec->enableSelectionCue();
224     }
226     if (prefs_get_int_attribute("tools.shapes", "gradientdrag", 0) != 0) {
227         ec->enableGrDrag();
228     }
230     rc->_message_context = new Inkscape::MessageContext((ec->desktop)->messageStack());
233 static void sp_rect_context_set(SPEventContext *ec, gchar const *key, gchar const *val)
235     SPRectContext *rc = SP_RECT_CONTEXT(ec);
237     /* fixme: Proper error handling for non-numeric data.  Use a locale-independent function like
238      * g_ascii_strtod (or a thin wrapper that does the right thing for invalid values inf/nan). */
239     if ( strcmp(key, "rx") == 0 ) {
240         rc->rx = ( val
241                          ? g_ascii_strtod (val, NULL)
242                          : 0.0 );
243     } else if ( strcmp(key, "ry") == 0 ) {
244         rc->ry = ( val
245                          ? g_ascii_strtod (val, NULL)
246                          : 0.0 );
247     }
250 static gint sp_rect_context_item_handler(SPEventContext *event_context, SPItem *item, GdkEvent *event)
252     SPDesktop *desktop = event_context->desktop;
254     gint ret = FALSE;
256     switch (event->type) {
257     case GDK_BUTTON_PRESS:
258         if ( event->button.button == 1 && !event_context->space_panning) {
259             Inkscape::setup_for_drag_start(desktop, event_context, event);
260             ret = TRUE;
261         }
262         break;
263         // motion and release are always on root (why?)
264     default:
265         break;
266     }
268     if (((SPEventContextClass *) parent_class)->item_handler) {
269         ret = ((SPEventContextClass *) parent_class)->item_handler(event_context, item, event);
270     }
272     return ret;
275 static gint sp_rect_context_root_handler(SPEventContext *event_context, GdkEvent *event)
277     static bool dragging;
279     SPDesktop *desktop = event_context->desktop;
280     Inkscape::Selection *selection = sp_desktop_selection (desktop);
282     SPRectContext *rc = SP_RECT_CONTEXT(event_context);
284     event_context->tolerance = prefs_get_int_attribute_limited("options.dragtolerance", "value", 0, 0, 100);
286     gint ret = FALSE;
287     switch (event->type) {
288     case GDK_BUTTON_PRESS:
289         if (event->button.button == 1 && !event_context->space_panning) {
290             NR::Point const button_w(event->button.x,
291                                      event->button.y);
293             // save drag origin
294             event_context->xp = (gint) button_w[NR::X];
295             event_context->yp = (gint) button_w[NR::Y];
296             event_context->within_tolerance = true;
298             // remember clicked item, disregarding groups, honoring Alt
299             event_context->item_to_select = sp_event_context_find_item (desktop, button_w, event->button.state & GDK_MOD1_MASK, TRUE);
301             dragging = true;
303             /* Position center */
304             NR::Point const button_dt(desktop->w2d(button_w));
306             /* Snap center */
307             SnapManager &m = desktop->namedview->snap_manager;
308             m.setup(desktop, rc->item);
309             Inkscape::SnappedPoint s = m.freeSnap(Inkscape::Snapper::SNAPPOINT_NODE, button_dt);
310             rc->center = s.getPoint();
311             
312             sp_canvas_item_grab(SP_CANVAS_ITEM(desktop->acetate),
313                                 ( GDK_KEY_PRESS_MASK |
314                                   GDK_BUTTON_RELEASE_MASK       |
315                                   GDK_POINTER_MOTION_MASK       |
316                                   GDK_BUTTON_PRESS_MASK ),
317                                 NULL, event->button.time);
318             ret = TRUE;
319         }
320         break;
321     case GDK_MOTION_NOTIFY:
322         if ( dragging
323              && (event->motion.state & GDK_BUTTON1_MASK) && !event_context->space_panning)
324         {
325             if ( event_context->within_tolerance
326                  && ( abs( (gint) event->motion.x - event_context->xp ) < event_context->tolerance )
327                  && ( abs( (gint) event->motion.y - event_context->yp ) < event_context->tolerance ) ) {
328                 break; // do not drag if we're within tolerance from origin
329             }
330             // Once the user has moved farther than tolerance from the original location
331             // (indicating they intend to draw, not click), then always process the
332             // motion notify coordinates as given (no snapping back to origin)
333             event_context->within_tolerance = false;
335             NR::Point const motion_w(event->motion.x,
336                                      event->motion.y);
337             NR::Point motion_dt(desktop->w2d(motion_w));
338             
339             SnapManager &m = desktop->namedview->snap_manager;
340             m.setup(desktop, rc->item);
341             Inkscape::SnappedPoint s = m.freeSnap(Inkscape::Snapper::SNAPPOINT_NODE, motion_dt);
342             motion_dt = s.getPoint();
343             
344             sp_rect_drag(*rc, motion_dt, event->motion.state);
345             gobble_motion_events(GDK_BUTTON1_MASK);
346             ret = TRUE;
347         }
348         break;
349     case GDK_BUTTON_RELEASE:
350         event_context->xp = event_context->yp = 0;
351         if (event->button.button == 1 && !event_context->space_panning) {
352             dragging = false;
354             if (!event_context->within_tolerance) {
355                 // we've been dragging, finish the rect
356                 sp_rect_finish(rc);
357             } else if (event_context->item_to_select) {
358                 // no dragging, select clicked item if any
359                 if (event->button.state & GDK_SHIFT_MASK) {
360                     selection->toggle(event_context->item_to_select);
361                 } else {
362                     selection->set(event_context->item_to_select);
363                 }
364             } else {
365                 // click in an empty space
366                 selection->clear();
367             }
369             event_context->item_to_select = NULL;
370             ret = TRUE;
371             sp_canvas_item_ungrab(SP_CANVAS_ITEM(desktop->acetate),
372                                   event->button.time);
373         }
374         break;
375     case GDK_KEY_PRESS:
376         switch (get_group0_keyval (&event->key)) {
377         case GDK_Alt_L:
378         case GDK_Alt_R:
379         case GDK_Control_L:
380         case GDK_Control_R:
381         case GDK_Shift_L:
382         case GDK_Shift_R:
383         case GDK_Meta_L:  // Meta is when you press Shift+Alt (at least on my machine)
384         case GDK_Meta_R:
385             if (!dragging){
386                 sp_event_show_modifier_tip (event_context->defaultMessageContext(), event,
387                                             _("<b>Ctrl</b>: make square or integer-ratio rect, lock a rounded corner circular"),
388                                             _("<b>Shift</b>: draw around the starting point"),
389                                             NULL);
390             }
391             break;
392         case GDK_Up:
393         case GDK_Down:
394         case GDK_KP_Up:
395         case GDK_KP_Down:
396             // prevent the zoom field from activation
397             if (!MOD__CTRL_ONLY)
398                 ret = TRUE;
399             break;
401         case GDK_x:
402         case GDK_X:
403             if (MOD__ALT_ONLY) {
404                 desktop->setToolboxFocusTo ("altx-rect");
405                 ret = TRUE;
406             }
407             break;
409         case GDK_T:
410             {
411                 Inkscape::Selection *selection = sp_desktop_selection (inkscape_active_desktop());
412                 SPItem *item = selection->singleItem();
413                 if (item && SP_IS_RECT (item)) {
414                     g_print ("Scaling transformation matrix\n");
415                     SP_RECT (item)->transform = NR::Matrix(NR::scale(1.25, 1.5));
416                     SP_OBJECT (item)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
417                 }
418                 ret = TRUE;
419             }
420             break;
422         case GDK_g:
423         case GDK_G:
424             if (MOD__SHIFT_ONLY) {
425                 sp_selection_to_guides();
426                 ret = true;
427             }
428             break;
430         case GDK_Escape:
431             sp_desktop_selection(desktop)->clear();
432             //TODO: make dragging escapable by Esc
433             break;
435         case GDK_space:
436             if (dragging) {
437                 sp_canvas_item_ungrab(SP_CANVAS_ITEM(desktop->acetate),
438                                       event->button.time);
439                 dragging = false;
440                 if (!event_context->within_tolerance) {
441                     // we've been dragging, finish the rect
442                     sp_rect_finish(rc);
443                 }
444                 // do not return true, so that space would work switching to selector
445             }
446             break;
448         default:
449             break;
450         }
451         break;
452     case GDK_KEY_RELEASE:
453         switch (get_group0_keyval (&event->key)) {
454         case GDK_Alt_L:
455         case GDK_Alt_R:
456         case GDK_Control_L:
457         case GDK_Control_R:
458         case GDK_Shift_L:
459         case GDK_Shift_R:
460         case GDK_Meta_L:  // Meta is when you press Shift+Alt
461         case GDK_Meta_R:
462             event_context->defaultMessageContext()->clear();
463             break;
464         default:
465             break;
466         }
467         break;
468     default:
469         break;
470     }
472     if (!ret) {
473         if (((SPEventContextClass *) parent_class)->root_handler) {
474             ret = ((SPEventContextClass *) parent_class)->root_handler(event_context, event);
475         }
476     }
478     return ret;
481 static void sp_rect_drag(SPRectContext &rc, NR::Point const pt, guint state)
483     SPDesktop *desktop = SP_EVENT_CONTEXT(&rc)->desktop;
485     if (!rc.item) {
487         if (Inkscape::have_viable_layer(desktop, rc._message_context) == false) {
488             return;
489         }
491         /* Create object */
492         Inkscape::XML::Document *xml_doc = sp_document_repr_doc(SP_EVENT_CONTEXT_DOCUMENT(&rc));
493         Inkscape::XML::Node *repr = xml_doc->createElement("svg:rect");
495         /* Set style */
496         sp_desktop_apply_style_tool (desktop, repr, "tools.shapes.rect", false);
498         rc.item = (SPItem *) desktop->currentLayer()->appendChildRepr(repr);
499         Inkscape::GC::release(repr);
500         rc.item->transform = SP_ITEM(desktop->currentRoot())->getRelativeTransform(desktop->currentLayer());
501         rc.item->updateRepr();
503         sp_canvas_force_full_redraw_after_interruptions(desktop->canvas, 5);
504     }
506     NR::Rect const r = Inkscape::snap_rectangular_box(desktop, rc.item, pt, rc.center, state);
508     sp_rect_position_set(SP_RECT(rc.item), r.min()[NR::X], r.min()[NR::Y], r.dimensions()[NR::X], r.dimensions()[NR::Y]);
509     if ( rc.rx != 0.0 ) {
510         sp_rect_set_rx (SP_RECT(rc.item), TRUE, rc.rx);
511     }
512     if ( rc.ry != 0.0 ) {
513         if (rc.rx == 0.0)
514             sp_rect_set_ry (SP_RECT(rc.item), TRUE, CLAMP(rc.ry, 0, MIN(r.dimensions()[NR::X], r.dimensions()[NR::Y])/2));
515         else
516             sp_rect_set_ry (SP_RECT(rc.item), TRUE, CLAMP(rc.ry, 0, r.dimensions()[NR::Y]));
517     }
519     // status text
520     double rdimx = r.dimensions()[NR::X];
521     double rdimy = r.dimensions()[NR::Y];
522     GString *xs = SP_PX_TO_METRIC_STRING(rdimx, desktop->namedview->getDefaultMetric());
523     GString *ys = SP_PX_TO_METRIC_STRING(rdimy, desktop->namedview->getDefaultMetric());
524     if (state & GDK_CONTROL_MASK) {
525         int ratio_x, ratio_y;
526         bool is_golden_ratio = false;
527         if (fabs (rdimx) > fabs (rdimy)) {
528             if (fabs(rdimx / rdimy - goldenratio) < 1e-6) {
529                 is_golden_ratio = true;
530             }
531             ratio_x = (int) rint (rdimx / rdimy);
532             ratio_y = 1;
533         } else {
534             if (fabs(rdimy / rdimx - goldenratio) < 1e-6) {
535                 is_golden_ratio = true;
536             }
537             ratio_x = 1;
538             ratio_y = (int) rint (rdimy / rdimx);
539         }
540         if (!is_golden_ratio) {
541             rc._message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Rectangle</b>: %s &#215; %s (constrained to ratio %d:%d); with <b>Shift</b> to draw around the starting point"), xs->str, ys->str, ratio_x, ratio_y);
542         } else {
543             if (ratio_y == 1) {
544                 rc._message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Rectangle</b>: %s &#215; %s (constrained to golden ratio 1.618 : 1); with <b>Shift</b> to draw around the starting point"), xs->str, ys->str);
545             } else {
546                 rc._message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Rectangle</b>: %s &#215; %s (constrained to golden ratio 1 : 1.618); with <b>Shift</b> to draw around the starting point"), xs->str, ys->str);
547             }
548         }
549     } else {
550         rc._message_context->setF(Inkscape::IMMEDIATE_MESSAGE, _("<b>Rectangle</b>: %s &#215; %s; with <b>Ctrl</b> to make square or integer-ratio rectangle; with <b>Shift</b> to draw around the starting point"), xs->str, ys->str);
551     }
552     g_string_free(xs, FALSE);
553     g_string_free(ys, FALSE);
556 static void sp_rect_finish(SPRectContext *rc)
558     rc->_message_context->clear();
560     if ( rc->item != NULL ) {
561         SPDesktop * desktop;
563         desktop = SP_EVENT_CONTEXT_DESKTOP(rc);
565         SP_OBJECT(rc->item)->updateRepr();
567         sp_canvas_end_forced_full_redraws(desktop->canvas);
569         sp_desktop_selection(desktop)->set(rc->item);
570         sp_document_done(sp_desktop_document(desktop), SP_VERB_CONTEXT_RECT,
571                          _("Create rectangle"));
573         rc->item = NULL;
574     }
577 /*
578   Local Variables:
579   mode:c++
580   c-file-style:"stroustrup"
581   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
582   indent-tabs-mode:nil
583   fill-column:99
584   End:
585 */
586 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :