Code

Pot and Dutch translation update
[inkscape.git] / src / draw-context.cpp
1 #define __SP_DRAW_CONTEXT_C__
3 /*
4  * Generic drawing context
5  *
6  * Author:
7  *   Lauris Kaplinski <lauris@kaplinski.com>
8  *
9  * Copyright (C) 2000 Lauris Kaplinski
10  * Copyright (C) 2000-2001 Ximian, Inc.
11  * Copyright (C) 2002 Lauris Kaplinski
12  *
13  * Released under GNU GPL, read the file 'COPYING' for more information
14  */
16 #define DRAW_VERBOSE
18 #ifdef HAVE_CONFIG_H
19 # include "config.h"
20 #endif
21 #include <gdk/gdkkeysyms.h>
23 #include "display/canvas-bpath.h"
24 #include "xml/repr.h"
25 #include "svg/svg.h"
26 #include <glibmm/i18n.h>
27 #include "display/curve.h"
28 #include "desktop.h"
29 #include "desktop-handles.h"
30 #include "desktop-style.h"
31 #include "document.h"
32 #include "draw-anchor.h"
33 #include "macros.h"
34 #include "message-stack.h"
35 #include "pen-context.h"
36 #include "lpe-tool-context.h"
37 #include "preferences.h"
38 #include "selection.h"
39 #include "selection-chemistry.h"
40 #include "snap.h"
41 #include "sp-path.h"
42 #include "sp-namedview.h"
43 #include "live_effects/lpe-patternalongpath.h"
44 #include "style.h"
46 static void sp_draw_context_class_init(SPDrawContextClass *klass);
47 static void sp_draw_context_init(SPDrawContext *dc);
48 static void sp_draw_context_dispose(GObject *object);
50 static void sp_draw_context_setup(SPEventContext *ec);
51 static void sp_draw_context_set(SPEventContext *ec, Inkscape::Preferences::Entry *val);
52 static void sp_draw_context_finish(SPEventContext *ec);
54 static gint sp_draw_context_root_handler(SPEventContext *event_context, GdkEvent *event);
56 static void spdc_selection_changed(Inkscape::Selection *sel, SPDrawContext *dc);
57 static void spdc_selection_modified(Inkscape::Selection *sel, guint flags, SPDrawContext *dc);
59 static void spdc_attach_selection(SPDrawContext *dc, Inkscape::Selection *sel);
61 static void spdc_flush_white(SPDrawContext *dc, SPCurve *gc);
63 static void spdc_reset_white(SPDrawContext *dc);
64 static void spdc_free_colors(SPDrawContext *dc);
67 static SPEventContextClass *draw_parent_class;
70 GType
71 sp_draw_context_get_type(void)
72 {
73     static GType type = 0;
74     if (!type) {
75         GTypeInfo info = {
76             sizeof(SPDrawContextClass),
77             NULL, NULL,
78             (GClassInitFunc) sp_draw_context_class_init,
79             NULL, NULL,
80             sizeof(SPDrawContext),
81             4,
82             (GInstanceInitFunc) sp_draw_context_init,
83             NULL,   /* value_table */
84         };
85         type = g_type_register_static(SP_TYPE_EVENT_CONTEXT, "SPDrawContext", &info, (GTypeFlags)0);
86     }
87     return type;
88 }
90 static void
91 sp_draw_context_class_init(SPDrawContextClass *klass)
92 {
93     GObjectClass *object_class;
94     SPEventContextClass *ec_class;
96     object_class = (GObjectClass *)klass;
97     ec_class = (SPEventContextClass *) klass;
99     draw_parent_class = (SPEventContextClass*)g_type_class_peek_parent(klass);
101     object_class->dispose = sp_draw_context_dispose;
103     ec_class->setup = sp_draw_context_setup;
104     ec_class->set = sp_draw_context_set;
105     ec_class->finish = sp_draw_context_finish;
106     ec_class->root_handler = sp_draw_context_root_handler;
109 static void
110 sp_draw_context_init(SPDrawContext *dc)
112     dc->attach = FALSE;
114     dc->red_color = 0xff00007f;
115     dc->blue_color = 0x0000ff7f;
116     dc->green_color = 0x00ff007f;
117     dc->red_curve_is_valid = false;
119     dc->red_bpath = NULL;
120     dc->red_curve = NULL;
122     dc->blue_bpath = NULL;
123     dc->blue_curve = NULL;
125     dc->green_bpaths = NULL;
126     dc->green_curve = NULL;
127     dc->green_anchor = NULL;
128     dc->green_closed = false;
130     dc->white_item = NULL;
131     dc->white_curves = NULL;
132     dc->white_anchors = NULL;
134     dc->sa = NULL;
135     dc->ea = NULL;
137     dc->waiting_LPE_type = Inkscape::LivePathEffect::INVALID_LPE;
139     new (&dc->sel_changed_connection) sigc::connection();
140     new (&dc->sel_modified_connection) sigc::connection();
143 static void
144 sp_draw_context_dispose(GObject *object)
146     SPDrawContext *dc = SP_DRAW_CONTEXT(object);
148     dc->sel_changed_connection.~connection();
149     dc->sel_modified_connection.~connection();
151     if (dc->grab) {
152         sp_canvas_item_ungrab(dc->grab, GDK_CURRENT_TIME);
153         dc->grab = NULL;
154     }
156     if (dc->selection) {
157         dc->selection = NULL;
158     }
160     spdc_free_colors(dc);
162     G_OBJECT_CLASS(draw_parent_class)->dispose(object);
165 static void
166 sp_draw_context_setup(SPEventContext *ec)
168     SPDrawContext *dc = SP_DRAW_CONTEXT(ec);
169     SPDesktop *dt = ec->desktop;
171     if (((SPEventContextClass *) draw_parent_class)->setup) {
172         ((SPEventContextClass *) draw_parent_class)->setup(ec);
173     }
175     dc->selection = sp_desktop_selection(dt);
177     /* Connect signals to track selection changes */
178     dc->sel_changed_connection = dc->selection->connectChanged(
179         sigc::bind(sigc::ptr_fun(&spdc_selection_changed), dc)
180     );
181     dc->sel_modified_connection = dc->selection->connectModified(
182         sigc::bind(sigc::ptr_fun(&spdc_selection_modified), dc)
183     );
185     /* Create red bpath */
186     dc->red_bpath = sp_canvas_bpath_new(sp_desktop_sketch(ec->desktop), NULL);
187     sp_canvas_bpath_set_stroke(SP_CANVAS_BPATH(dc->red_bpath), dc->red_color, 1.0, SP_STROKE_LINEJOIN_MITER, SP_STROKE_LINECAP_BUTT);
188     /* Create red curve */
189     dc->red_curve = new SPCurve();
191     /* Create blue bpath */
192     dc->blue_bpath = sp_canvas_bpath_new(sp_desktop_sketch(ec->desktop), NULL);
193     sp_canvas_bpath_set_stroke(SP_CANVAS_BPATH(dc->blue_bpath), dc->blue_color, 1.0, SP_STROKE_LINEJOIN_MITER, SP_STROKE_LINECAP_BUTT);
194     /* Create blue curve */
195     dc->blue_curve = new SPCurve();
197     /* Create green curve */
198     dc->green_curve = new SPCurve();
199     /* No green anchor by default */
200     dc->green_anchor = NULL;
201     dc->green_closed = FALSE;
203     dc->attach = TRUE;
204     spdc_attach_selection(dc, dc->selection);
207 static void
208 sp_draw_context_finish(SPEventContext *ec)
210     SPDrawContext *dc = SP_DRAW_CONTEXT(ec);
212     dc->sel_changed_connection.disconnect();
213     dc->sel_modified_connection.disconnect();
215     if (dc->grab) {
216         sp_canvas_item_ungrab(dc->grab, GDK_CURRENT_TIME);
217     }
219     if (dc->selection) {
220         dc->selection = NULL;
221     }
223     spdc_free_colors(dc);
226 static void
227 sp_draw_context_set(SPEventContext */*ec*/, Inkscape::Preferences::Entry */*val*/)
231 gint
232 sp_draw_context_root_handler(SPEventContext *ec, GdkEvent *event)
234     gint ret = FALSE;
236     switch (event->type) {
237         case GDK_KEY_PRESS:
238             switch (get_group0_keyval (&event->key)) {
239                 case GDK_Up:
240                 case GDK_Down:
241                 case GDK_KP_Up:
242                 case GDK_KP_Down:
243                     // prevent the zoom field from activation
244                     if (!MOD__CTRL_ONLY) {
245                         ret = TRUE;
246                     }
247                     break;
248                 default:
249             break;
250         }
251         break;
252     default:
253         break;
254     }
256     if (!ret) {
257         if (((SPEventContextClass *) draw_parent_class)->root_handler) {
258             ret = ((SPEventContextClass *) draw_parent_class)->root_handler(ec, event);
259         }
260     }
262     return ret;
265 static Glib::ustring const
266 tool_name(SPDrawContext *dc)
268     return ( SP_IS_PEN_CONTEXT(dc)
269              ? "/tools/freehand/pen"
270              : "/tools/freehand/pencil" );
273 static void
274 spdc_paste_curve_as_freehand_shape(const SPCurve *c, SPDrawContext *dc, SPItem *item)
276     using namespace Inkscape::LivePathEffect;
278     // TODO: Don't paste path if nothing is on the clipboard
280     Effect::createAndApply(PATTERN_ALONG_PATH, dc->desktop->doc(), item);
281     Effect* lpe = sp_lpe_item_get_current_lpe(SP_LPE_ITEM(item));
282     gchar *svgd = sp_svg_write_path(c->get_pathvector());
283     static_cast<LPEPatternAlongPath*>(lpe)->pattern.paste_param_path(svgd);
286 /*
287  * If we have an item and a waiting LPE, apply the effect to the item
288  * (spiro spline mode is treated separately)
289  */
290 void
291 spdc_check_for_and_apply_waiting_LPE(SPDrawContext *dc, SPItem *item)
293     using namespace Inkscape::LivePathEffect;
294     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
296     if (item && SP_IS_LPE_ITEM(item)) {
297         if (prefs->getInt(tool_name(dc) + "/freehand-mode", 0) == 1) {
298             Effect::createAndApply(SPIRO, dc->desktop->doc(), item);
299         }
301         int shape = prefs->getInt(tool_name(dc) + "/shape", 0);
302         bool shape_applied = false;
303         SPCSSAttr *css_item = sp_css_attr_from_object (SP_OBJECT(item), SP_STYLE_FLAG_ALWAYS);
304         const char *cstroke = sp_repr_css_property(css_item, "stroke", "none");
306 #define SHAPE_LENGTH 10
307 #define SHAPE_HEIGHT 10
309         switch (shape) {
310             case 0:
311                 // don't apply any shape
312                 break;
313             case 1:
314             {
315                 // "triangle in"
316                 // TODO: this is only for illustration (we create a "decrescendo"-shaped path
317                 //       manually; eventually we should read the path from a separate file)
318                 SPCurve *c = new SPCurve();
319                 c->moveto(0,0);
320                 c->lineto(0, SHAPE_HEIGHT);
321                 c->lineto(SHAPE_LENGTH, SHAPE_HEIGHT/2);
322                 c->closepath();
323                 spdc_paste_curve_as_freehand_shape(c, dc, item);
324                 c->unref();
326                 shape_applied = true;
327                 break;
328             }
329             case 2:
330             {
331                 // "triangle out"
332                 SPCurve *c = new SPCurve();
333                 c->moveto(0, SHAPE_HEIGHT/2);
334                 c->lineto(SHAPE_LENGTH, SHAPE_HEIGHT);
335                 c->lineto(SHAPE_LENGTH, 0);
336                 c->closepath();
337                 spdc_paste_curve_as_freehand_shape(c, dc, item);
338                 c->unref();
340                 shape_applied = true;
341                 break;
342             }
343             case 3:
344             {
345                 // "ellipse"
346                 SPCurve *c = new SPCurve();
347                 const double C1 = 0.552;
348                 c->moveto(0, SHAPE_HEIGHT/2);
349                 c->curveto(0, (1 - C1) * SHAPE_HEIGHT/2, (1 - C1) * SHAPE_LENGTH/2, 0, SHAPE_LENGTH/2, 0);
350                 c->curveto((1 + C1) * SHAPE_LENGTH/2, 0, SHAPE_LENGTH, (1 - C1) * SHAPE_HEIGHT/2, SHAPE_LENGTH, SHAPE_HEIGHT/2);
351                 c->curveto(SHAPE_LENGTH, (1 + C1) * SHAPE_HEIGHT/2, (1 + C1) * SHAPE_LENGTH/2, SHAPE_HEIGHT, SHAPE_LENGTH/2, SHAPE_HEIGHT);
352                 c->curveto((1 - C1) * SHAPE_LENGTH/2, SHAPE_HEIGHT, 0, (1 + C1) * SHAPE_HEIGHT/2, 0, SHAPE_HEIGHT/2);
353                 c->closepath();
354                 spdc_paste_curve_as_freehand_shape(c, dc, item);
355                 c->unref();
356                 shape_applied = true;
357                 break;
358             }
359             case 4:
360             {
361                 // take shape from clipboard; TODO: catch the case where clipboard is empty
362                 Effect::createAndApply(PATTERN_ALONG_PATH, dc->desktop->doc(), item);
363                 Effect* lpe = sp_lpe_item_get_current_lpe(SP_LPE_ITEM(item));
364                 static_cast<LPEPatternAlongPath*>(lpe)->pattern.on_paste_button_click();
366                 shape_applied = true;
367                 break;
368             }
369             default:
370                 break;
371         }
372         if (shape_applied) {
373             // apply original stroke color as fill and unset stroke; then return
374             SPCSSAttr *css = sp_repr_css_attr_new();
376             if (!strcmp(cstroke, "none")){
377                 sp_repr_css_set_property (css, "fill", "black");
378             } else {
379                 sp_repr_css_set_property (css, "fill", cstroke);
380             }
381             sp_repr_css_set_property (css, "stroke", "none");
382             sp_desktop_apply_css_recursive(SP_OBJECT(item), css, true);
383             sp_repr_css_attr_unref(css);
384             return;
385         }
387         if (dc->waiting_LPE_type != INVALID_LPE) {
388             Effect::createAndApply(dc->waiting_LPE_type, dc->desktop->doc(), item);
389             dc->waiting_LPE_type = INVALID_LPE;
391             if (SP_IS_LPETOOL_CONTEXT(dc)) {
392                 // since a geometric LPE was applied, we switch back to "inactive" mode
393                 lpetool_context_switch_mode(SP_LPETOOL_CONTEXT(dc), INVALID_LPE);
394             }
395         }
396         if (SP_IS_PEN_CONTEXT(dc)) {
397             sp_pen_context_set_polyline_mode(SP_PEN_CONTEXT(dc));
398         }
399     }
402 /*
403  * Selection handlers
404  */
406 static void
407 spdc_selection_changed(Inkscape::Selection *sel, SPDrawContext *dc)
409     if (dc->attach) {
410         spdc_attach_selection(dc, sel);
411     }
414 /* fixme: We have to ensure this is not delayed (Lauris) */
416 static void
417 spdc_selection_modified(Inkscape::Selection *sel, guint /*flags*/, SPDrawContext *dc)
419     if (dc->attach) {
420         spdc_attach_selection(dc, sel);
421     }
424 static void
425 spdc_attach_selection(SPDrawContext *dc, Inkscape::Selection */*sel*/)
427     /* We reset white and forget white/start/end anchors */
428     spdc_reset_white(dc);
429     dc->sa = NULL;
430     dc->ea = NULL;
432     SPItem *item = dc->selection ? dc->selection->singleItem() : NULL;
434     if ( item && SP_IS_PATH(item) ) {
435         /* Create new white data */
436         /* Item */
437         dc->white_item = item;
438         /* Curve list */
439         /* We keep it in desktop coordinates to eliminate calculation errors */
440         SPCurve *norm = sp_path_get_curve_for_edit (SP_PATH(item));
441         norm->transform(sp_item_i2d_affine(dc->white_item));
442         g_return_if_fail( norm != NULL );
443         dc->white_curves = g_slist_reverse(norm->split());
444         norm->unref();
445         /* Anchor list */
446         for (GSList *l = dc->white_curves; l != NULL; l = l->next) {
447             SPCurve *c;
448             c = (SPCurve*)l->data;
449             g_return_if_fail( c->get_segment_count() > 0 );
450             if ( !c->is_closed() ) {
451                 SPDrawAnchor *a;
452                 a = sp_draw_anchor_new(dc, c, TRUE, *(c->first_point()));
453                 if (a)
454                     dc->white_anchors = g_slist_prepend(dc->white_anchors, a);
455                 a = sp_draw_anchor_new(dc, c, FALSE, *(c->last_point()));
456                 if (a)
457                     dc->white_anchors = g_slist_prepend(dc->white_anchors, a);
458             }
459         }
460         /* fixme: recalculate active anchor? */
461     }
465 /**
466  *  Snaps node or handle to PI/rotationsnapsperpi degree increments.
467  *
468  *  \param dc draw context
469  *  \param p cursor point (to be changed by snapping)
470  *  \param o origin point
471  *  \param state  keyboard state to check if ctrl or shift was pressed
472 */
474 void spdc_endpoint_snap_rotation(SPEventContext const *const ec, Geom::Point &p, Geom::Point const &o,
475                                  guint state)
477     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
478     unsigned const snaps = abs(prefs->getInt("/options/rotationsnapsperpi/value", 12));
479     SnapManager &m = SP_EVENT_CONTEXT_DESKTOP(ec)->namedview->snap_manager;
480     m.setup(SP_EVENT_CONTEXT_DESKTOP(ec));
482     bool snap_enabled = m.snapprefs.getSnapEnabledGlobally();
483     if (state & GDK_SHIFT_MASK) {
484         // SHIFT disables all snapping, except the angular snapping. After all, the user explicitly asked for angular
485         // snapping by pressing CTRL, otherwise we wouldn't have arrived here. But although we temporarily disable
486         // the snapping here, we must still call for a constrained snap in order to apply the constraints (i.e. round
487         // to the nearest angle increment)
488         m.snapprefs.setSnapEnabledGlobally(false);
489     }
491     Inkscape::SnappedPoint dummy = m.constrainedAngularSnap(Inkscape::SnapCandidatePoint(p, Inkscape::SNAPSOURCE_NODE_HANDLE), boost::optional<Geom::Point>(), o, snaps);
492     p = dummy.getPoint();
494     if (state & GDK_SHIFT_MASK) {
495         m.snapprefs.setSnapEnabledGlobally(snap_enabled); // restore the original setting
496     }
498     m.unSetup();
502 void spdc_endpoint_snap_free(SPEventContext const * const ec, Geom::Point& p, guint const /*state*/)
504     SPDesktop *dt = SP_EVENT_CONTEXT_DESKTOP(ec);
505     SnapManager &m = dt->namedview->snap_manager;
506     Inkscape::Selection *selection = sp_desktop_selection (dt);
508     // selection->singleItem() is the item that is currently being drawn. This item will not be snapped to (to avoid self-snapping)
509     // TODO: Allow snapping to the stationary parts of the item, and only ignore the last segment
511     m.setup(dt, true, selection->singleItem());
512     m.freeSnapReturnByRef(p, Inkscape::SNAPSOURCE_NODE_HANDLE);
513     m.unSetup();
516 static SPCurve *
517 reverse_then_unref(SPCurve *orig)
519     SPCurve *ret = orig->create_reverse();
520     orig->unref();
521     return ret;
524 /**
525  * Concats red, blue and green.
526  * If any anchors are defined, process these, optionally removing curves from white list
527  * Invoke _flush_white to write result back to object.
528  */
529 void
530 spdc_concat_colors_and_flush(SPDrawContext *dc, gboolean forceclosed)
532     /* Concat RBG */
533     SPCurve *c = dc->green_curve;
535     /* Green */
536     dc->green_curve = new SPCurve();
537     while (dc->green_bpaths) {
538         gtk_object_destroy(GTK_OBJECT(dc->green_bpaths->data));
539         dc->green_bpaths = g_slist_remove(dc->green_bpaths, dc->green_bpaths->data);
540     }
541     /* Blue */
542     c->append_continuous(dc->blue_curve, 0.0625);
543     dc->blue_curve->reset();
544     sp_canvas_bpath_set_bpath(SP_CANVAS_BPATH(dc->blue_bpath), NULL);
545     /* Red */
546     if (dc->red_curve_is_valid) {
547         c->append_continuous(dc->red_curve, 0.0625);
548     }
549     dc->red_curve->reset();
550     sp_canvas_bpath_set_bpath(SP_CANVAS_BPATH(dc->red_bpath), NULL);
552     if (c->is_empty()) {
553         c->unref();
554         return;
555     }
557     /* Step A - test, whether we ended on green anchor */
558     if ( forceclosed || ( dc->green_anchor && dc->green_anchor->active ) ) {
559         // We hit green anchor, closing Green-Blue-Red
560         SP_EVENT_CONTEXT_DESKTOP(dc)->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Path is closed."));
561         c->closepath_current();
562         /* Closed path, just flush */
563         spdc_flush_white(dc, c);
564         c->unref();
565         return;
566     }
568     /* Step B - both start and end anchored to same curve */
569     if ( dc->sa && dc->ea
570          && ( dc->sa->curve == dc->ea->curve )
571          && ( ( dc->sa != dc->ea )
572               || dc->sa->curve->is_closed() ) )
573     {
574         // We hit bot start and end of single curve, closing paths
575         SP_EVENT_CONTEXT_DESKTOP(dc)->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Closing path."));
576         if (dc->sa->start && !(dc->sa->curve->is_closed()) ) {
577             c = reverse_then_unref(c);
578         }
579         dc->sa->curve->append_continuous(c, 0.0625);
580         c->unref();
581         dc->sa->curve->closepath_current();
582         spdc_flush_white(dc, NULL);
583         return;
584     }
586     /* Step C - test start */
587     if (dc->sa) {
588         SPCurve *s = dc->sa->curve;
589         dc->white_curves = g_slist_remove(dc->white_curves, s);
590         if (dc->sa->start) {
591             s = reverse_then_unref(s);
592         }
593         s->append_continuous(c, 0.0625);
594         c->unref();
595         c = s;
596     } else /* Step D - test end */ if (dc->ea) {
597         SPCurve *e = dc->ea->curve;
598         dc->white_curves = g_slist_remove(dc->white_curves, e);
599         if (!dc->ea->start) {
600             e = reverse_then_unref(e);
601         }
602         c->append_continuous(e, 0.0625);
603         e->unref();
604     }
607     spdc_flush_white(dc, c);
609     c->unref();
612 /*
613  * Flushes white curve(s) and additional curve into object
614  *
615  * No cleaning of colored curves - this has to be done by caller
616  * No rereading of white data, so if you cannot rely on ::modified, do it in caller
617  *
618  */
620 static void
621 spdc_flush_white(SPDrawContext *dc, SPCurve *gc)
623     SPCurve *c;
625     if (dc->white_curves) {
626         g_assert(dc->white_item);
627         c = SPCurve::concat(dc->white_curves);
628         g_slist_free(dc->white_curves);
629         dc->white_curves = NULL;
630         if (gc) {
631             c->append(gc, FALSE);
632         }
633     } else if (gc) {
634         c = gc;
635         c->ref();
636     } else {
637         return;
638     }
640     /* Now we have to go back to item coordinates at last */
641     c->transform( dc->white_item
642                             ? sp_item_dt2i_affine(dc->white_item)
643                             : SP_EVENT_CONTEXT_DESKTOP(dc)->dt2doc() );
645     SPDesktop *desktop = SP_EVENT_CONTEXT_DESKTOP(dc);
646     SPDocument *doc = sp_desktop_document(desktop);
647     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(doc);
649     if ( c && !c->is_empty() ) {
650         /* We actually have something to write */
652         bool has_lpe = false;
653         Inkscape::XML::Node *repr;
654         if (dc->white_item) {
655             repr = SP_OBJECT_REPR(dc->white_item);
656             has_lpe = sp_lpe_item_has_path_effect_recursive(SP_LPE_ITEM(dc->white_item));
657         } else {
658             repr = xml_doc->createElement("svg:path");
659             /* Set style */
660             sp_desktop_apply_style_tool(desktop, repr, tool_name(dc).data(), false);
661         }
663         gchar *str = sp_svg_write_path( c->get_pathvector() );
664         g_assert( str != NULL );
665         if (has_lpe)
666             repr->setAttribute("inkscape:original-d", str);
667         else
668             repr->setAttribute("d", str);
669         g_free(str);
671         if (!dc->white_item) {
672             /* Attach repr */
673             SPItem *item = SP_ITEM(desktop->currentLayer()->appendChildRepr(repr));
675             // we finished the path; now apply any waiting LPEs or freehand shapes
676             spdc_check_for_and_apply_waiting_LPE(dc, item);
678             dc->selection->set(repr);
679             Inkscape::GC::release(repr);
680             item->transform = sp_item_i2doc_affine(SP_ITEM(desktop->currentLayer())).inverse();
681             item->updateRepr();
682         }
684         sp_document_done(doc, SP_IS_PEN_CONTEXT(dc)? SP_VERB_CONTEXT_PEN : SP_VERB_CONTEXT_PENCIL,
685                          _("Draw path"));
687         // When quickly drawing several subpaths with Shift, the next subpath may be finished and
688         // flushed before the selection_modified signal is fired by the previous change, which
689         // results in the tool losing all of the selected path's curve except that last subpath. To
690         // fix this, we force the selection_modified callback now, to make sure the tool's curve is
691         // in sync immediately.
692         spdc_selection_modified(sp_desktop_selection(desktop), 0, dc);
693     }
695     c->unref();
697     /* Flush pending updates */
698     sp_document_ensure_up_to_date(doc);
701 /**
702  * Returns FIRST active anchor (the activated one).
703  */
704 SPDrawAnchor *
705 spdc_test_inside(SPDrawContext *dc, Geom::Point p)
707     SPDrawAnchor *active = NULL;
709     /* Test green anchor */
710     if (dc->green_anchor) {
711         active = sp_draw_anchor_test(dc->green_anchor, p, TRUE);
712     }
714     for (GSList *l = dc->white_anchors; l != NULL; l = l->next) {
715         SPDrawAnchor *na = sp_draw_anchor_test((SPDrawAnchor *) l->data, p, !active);
716         if ( !active && na ) {
717             active = na;
718         }
719     }
721     return active;
724 static void
725 spdc_reset_white(SPDrawContext *dc)
727     if (dc->white_item) {
728         /* We do not hold refcount */
729         dc->white_item = NULL;
730     }
731     while (dc->white_curves) {
732         reinterpret_cast<SPCurve *>(dc->white_curves->data)->unref();
733         dc->white_curves = g_slist_remove(dc->white_curves, dc->white_curves->data);
734     }
735     while (dc->white_anchors) {
736         sp_draw_anchor_destroy((SPDrawAnchor *) dc->white_anchors->data);
737         dc->white_anchors = g_slist_remove(dc->white_anchors, dc->white_anchors->data);
738     }
741 static void
742 spdc_free_colors(SPDrawContext *dc)
744     /* Red */
745     if (dc->red_bpath) {
746         gtk_object_destroy(GTK_OBJECT(dc->red_bpath));
747         dc->red_bpath = NULL;
748     }
749     if (dc->red_curve) {
750         dc->red_curve = dc->red_curve->unref();
751     }
752     /* Blue */
753     if (dc->blue_bpath) {
754         gtk_object_destroy(GTK_OBJECT(dc->blue_bpath));
755         dc->blue_bpath = NULL;
756     }
757     if (dc->blue_curve) {
758         dc->blue_curve = dc->blue_curve->unref();
759     }
760     /* Green */
761     while (dc->green_bpaths) {
762         gtk_object_destroy(GTK_OBJECT(dc->green_bpaths->data));
763         dc->green_bpaths = g_slist_remove(dc->green_bpaths, dc->green_bpaths->data);
764     }
765     if (dc->green_curve) {
766         dc->green_curve = dc->green_curve->unref();
767     }
768     if (dc->green_anchor) {
769         dc->green_anchor = sp_draw_anchor_destroy(dc->green_anchor);
770     }
771     /* White */
772     if (dc->white_item) {
773         /* We do not hold refcount */
774         dc->white_item = NULL;
775     }
776     while (dc->white_curves) {
777         reinterpret_cast<SPCurve *>(dc->white_curves->data)->unref();
778         dc->white_curves = g_slist_remove(dc->white_curves, dc->white_curves->data);
779     }
780     while (dc->white_anchors) {
781         sp_draw_anchor_destroy((SPDrawAnchor *) dc->white_anchors->data);
782         dc->white_anchors = g_slist_remove(dc->white_anchors, dc->white_anchors->data);
783     }
786 /* Create a single dot represented by a circle */
787 void spdc_create_single_dot(SPEventContext *ec, Geom::Point const &pt, char const *tool, guint event_state) {
788     g_return_if_fail(!strcmp(tool, "/tools/freehand/pen") || !strcmp(tool, "/tools/freehand/pencil"));
789     Glib::ustring tool_path = tool;
791     SPDesktop *desktop = SP_EVENT_CONTEXT_DESKTOP(ec);
792     Inkscape::XML::Document *xml_doc = sp_document_repr_doc(desktop->doc());
793     Inkscape::XML::Node *repr = xml_doc->createElement("svg:path");
794     repr->setAttribute("sodipodi:type", "arc");
795     SPItem *item = SP_ITEM(desktop->currentLayer()->appendChildRepr(repr));
796     Inkscape::GC::release(repr);
798     /* apply the tool's current style */
799     sp_desktop_apply_style_tool(desktop, repr, tool, false);
801     /* find out stroke width (TODO: is there an easier way??) */
802     double stroke_width = 3.0;
803     gchar const *style_str = NULL;
804     style_str = repr->attribute("style");
805     if (style_str) {
806         SPStyle *style = sp_style_new(SP_ACTIVE_DOCUMENT);
807         sp_style_merge_from_style_string(style, style_str);
808         stroke_width = style->stroke_width.computed;
809         style->stroke_width.computed = 0;
810         sp_style_unref(style);
811     }
812     /* unset stroke and set fill color to former stroke color */
813     gchar * str;
814     str = g_strdup_printf("fill:#%06x;stroke:none;", sp_desktop_get_color_tool(desktop, tool, false) >> 8);
815     repr->setAttribute("style", str);
816     g_free(str);
818     /* put the circle where the mouse click occurred and set the diameter to the
819        current stroke width, multiplied by the amount specified in the preferences */
820     Inkscape::Preferences *prefs = Inkscape::Preferences::get();
822     Geom::Matrix const i2d (sp_item_i2d_affine (item));
823     Geom::Point pp = pt * i2d.inverse();
824     double rad = 0.5 * prefs->getDouble(tool_path + "/dot-size", 3.0);
825     if (event_state & GDK_MOD1_MASK) {
826         /* TODO: We vary the dot size between 0.5*rad and 1.5*rad, where rad is the dot size
827            as specified in prefs. Very simple, but it might be sufficient in practice. If not,
828            we need to devise something more sophisticated. */
829         double s = g_random_double_range(-0.5, 0.5);
830         rad *= (1 + s);
831     }
832     if (event_state & GDK_SHIFT_MASK) {
833         // double the point size
834         rad *= 2;
835     }
837     sp_repr_set_svg_double (repr, "sodipodi:cx", pp[Geom::X]);
838     sp_repr_set_svg_double (repr, "sodipodi:cy", pp[Geom::Y]);
839     sp_repr_set_svg_double (repr, "sodipodi:rx", rad * stroke_width);
840     sp_repr_set_svg_double (repr, "sodipodi:ry", rad * stroke_width);
841     item->updateRepr();
843     sp_desktop_selection(desktop)->set(item);
845     desktop->messageStack()->flash(Inkscape::NORMAL_MESSAGE, _("Creating single dot"));
846     sp_document_done(sp_desktop_document(desktop), SP_VERB_NONE, _("Create single dot"));
849 /*
850   Local Variables:
851   mode:c++
852   c-file-style:"stroustrup"
853   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
854   indent-tabs-mode:nil
855   fill-column:99
856   End:
857 */
858 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :