Code

Added a new toolbar with snapping controls
[inkscape.git] / src / sp-shape.cpp
index d3f357e7688f51e1d6a025aa04eebe1d7738d0ed..ce73888ed168b8cd00ee3b8558cf53ca7c98bd20 100644 (file)
@@ -23,6 +23,7 @@
 #include <2geom/rect.h>
 #include <2geom/transforms.h>
 #include <2geom/pathvector.h>
+#include <2geom/path-intersection.h>
 #include "helper/geom.h"
 #include "helper/geom-nodetype.h"
 
@@ -79,21 +80,21 @@ static SPLPEItemClass *parent_class;
 GType
 sp_shape_get_type (void)
 {
-       static GType type = 0;
-       if (!type) {
-               GTypeInfo info = {
-                       sizeof (SPShapeClass),
-                       NULL, NULL,
-                       (GClassInitFunc) sp_shape_class_init,
-                       NULL, NULL,
-                       sizeof (SPShape),
-                       16,
-                       (GInstanceInitFunc) sp_shape_init,
-                       NULL,   /* value_table */
-               };
-               type = g_type_register_static (SP_TYPE_LPE_ITEM, "SPShape", &info, (GTypeFlags)0);
-       }
-       return type;
+    static GType type = 0;
+    if (!type) {
+        GTypeInfo info = {
+            sizeof (SPShapeClass),
+            NULL, NULL,
+            (GClassInitFunc) sp_shape_class_init,
+            NULL, NULL,
+            sizeof (SPShape),
+            16,
+            (GInstanceInitFunc) sp_shape_init,
+            NULL,    /* value_table */
+        };
+        type = g_type_register_static (SP_TYPE_LPE_ITEM, "SPShape", &info, (GTypeFlags)0);
+    }
+    return type;
 }
 
 /**
@@ -112,17 +113,17 @@ sp_shape_class_init (SPShapeClass *klass)
 
     gobject_class->finalize = sp_shape_finalize;
 
-       sp_object_class->build = sp_shape_build;
-       sp_object_class->release = sp_shape_release;
+    sp_object_class->build = sp_shape_build;
+    sp_object_class->release = sp_shape_release;
     sp_object_class->set = sp_shape_set;
-       sp_object_class->update = sp_shape_update;
-       sp_object_class->modified = sp_shape_modified;
+    sp_object_class->update = sp_shape_update;
+    sp_object_class->modified = sp_shape_modified;
     sp_object_class->write = sp_shape_write;
 
-       item_class->bbox = sp_shape_bbox;
-       item_class->print = sp_shape_print;
-       item_class->show = sp_shape_show;
-       item_class->hide = sp_shape_hide;
+    item_class->bbox = sp_shape_bbox;
+    item_class->print = sp_shape_print;
+    item_class->show = sp_shape_show;
+    item_class->hide = sp_shape_hide;
     item_class->snappoints = sp_shape_snappoints;
     lpe_item_class->update_patheffect = NULL;
 
@@ -138,7 +139,9 @@ sp_shape_init (SPShape *shape)
     for ( int i = 0 ; i < SP_MARKER_LOC_QTY ; i++ ) {
         new (&shape->release_connect[i]) sigc::connection();
         new (&shape->modified_connect[i]) sigc::connection();
+        shape->marker[i] = NULL;
     }
+    shape->curve = NULL;
 }
 
 static void
@@ -174,7 +177,7 @@ sp_shape_build (SPObject *object, SPDocument *document, Inkscape::XML::Node *rep
 
     for (int i = 0 ; i < SP_MARKER_LOC_QTY ; i++) {
         sp_shape_set_marker (object, i, object->style->marker[i].value);
-         }
+      }
 }
 
 /**
@@ -190,31 +193,31 @@ sp_shape_build (SPObject *object, SPDocument *document, Inkscape::XML::Node *rep
 static void
 sp_shape_release (SPObject *object)
 {
-       SPItem *item;
-       SPShape *shape;
-       SPItemView *v;
-       int i;
-
-       item = (SPItem *) object;
-       shape = (SPShape *) object;
-
-       for (i=SP_MARKER_LOC_START; i<SP_MARKER_LOC_QTY; i++) {
-         if (shape->marker[i]) {
-           for (v = item->display; v != NULL; v = v->next) {
-             sp_marker_hide ((SPMarker *) shape->marker[i], NR_ARENA_ITEM_GET_KEY (v->arenaitem) + i);
-           }
-      shape->release_connect[i].disconnect();
-      shape->modified_connect[i].disconnect();
-           shape->marker[i] = sp_object_hunref (shape->marker[i], object);
-         }
-       }
-       if (shape->curve) {
-               shape->curve = shape->curve->unref();
-       }
-    
-       if (((SPObjectClass *) parent_class)->release) {
-         ((SPObjectClass *) parent_class)->release (object);
-       }
+    SPItem *item;
+    SPShape *shape;
+    SPItemView *v;
+    int i;
+
+    item = (SPItem *) object;
+    shape = (SPShape *) object;
+
+    for (i = 0; i < SP_MARKER_LOC_QTY; i++) {
+        if (shape->marker[i]) {
+            for (v = item->display; v != NULL; v = v->next) {
+              sp_marker_hide ((SPMarker *) shape->marker[i], NR_ARENA_ITEM_GET_KEY (v->arenaitem) + i);
+            }
+            shape->release_connect[i].disconnect();
+            shape->modified_connect[i].disconnect();
+            shape->marker[i] = sp_object_hunref (shape->marker[i], object);
+        }
+    }
+    if (shape->curve) {
+        shape->curve = shape->curve->unref();
+    }
+
+    if (((SPObjectClass *) parent_class)->release) {
+      ((SPObjectClass *) parent_class)->release (object);
+    }
 }
 
 
@@ -237,9 +240,9 @@ sp_shape_write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::No
     return repr;
 }
 
-/** 
+/**
  * Updates the shape when its attributes have changed.  Also establishes
- * marker objects to match the style settings.  
+ * marker objects to match the style settings.
  */
 static void
 sp_shape_update (SPObject *object, SPCtx *ctx, unsigned int flags)
@@ -258,7 +261,7 @@ sp_shape_update (SPObject *object, SPCtx *ctx, unsigned int flags)
      */
     for (int i = 0 ; i < SP_MARKER_LOC_QTY ; i++) {
         sp_shape_set_marker (object, i, object->style->marker[i].value);
-         }
+      }
 
     if (flags & (SP_OBJECT_STYLE_MODIFIED_FLAG | SP_OBJECT_VIEWPORT_MODIFIED_FLAG)) {
         SPStyle *style;
@@ -297,7 +300,7 @@ sp_shape_update (SPObject *object, SPCtx *ctx, unsigned int flags)
             for (int i = 0 ; i < SP_MARKER_LOC_QTY ; i++) {
                 if (shape->marker[i]) {
                     sp_marker_show_dimension ((SPMarker *) shape->marker[i],
-                                              NR_ARENA_ITEM_GET_KEY (v->arenaitem) + i - SP_MARKER_LOC,
+                                              NR_ARENA_ITEM_GET_KEY (v->arenaitem) + i,
                                               sp_shape_number_of_markers (shape, i));
                 }
             }
@@ -395,9 +398,7 @@ sp_shape_marker_get_transform_at_end(Geom::Curve const & c)
  * Marker views have to be scaled already.  The transformation
  * is retrieved and then shown by calling sp_marker_show_instance.
  *
- * TODO: correctly handle the 'marker' attribute.
- * "Using the marker property from a style sheet is equivalent to using all three (start, mid, end)."
- * See painting-marker-03-f.svg in SVG 1.1 Full test suite.
+ * @todo figure out what to do when both 'marker' and for instance 'marker-end' are set.
  */
 static void
 sp_shape_update_marker_view (SPShape *shape, NRArenaItem *ai)
@@ -405,21 +406,23 @@ sp_shape_update_marker_view (SPShape *shape, NRArenaItem *ai)
     SPStyle *style = ((SPObject *) shape)->style;
 
     // position arguments to sp_marker_show_instance, basically counts the amount of markers.
-    int start_pos = 0;
-    int mid_pos = 0;
-    int end_pos = 0;
+    int counter[4] = {0};
 
     Geom::PathVector const & pathv = shape->curve->get_pathvector();
     for(Geom::PathVector::const_iterator path_it = pathv.begin(); path_it != pathv.end(); ++path_it) {
-        if ( shape->marker[SP_MARKER_LOC_START] ) {
-            Geom::Matrix const m (sp_shape_marker_get_transform_at_start(path_it->front()));
-            sp_marker_show_instance ((SPMarker* ) shape->marker[SP_MARKER_LOC_START], ai,
-                                     NR_ARENA_ITEM_GET_KEY(ai) + SP_MARKER_LOC_START, start_pos, m,
-                                     style->stroke_width.computed);
-             start_pos++;
+      // START position
+        Geom::Matrix const m (sp_shape_marker_get_transform_at_start(path_it->front()));
+        for (int i = 0; i < 2; i++) {  // SP_MARKER_LOC and SP_MARKER_LOC_START
+            if ( shape->marker[i] ) {
+                sp_marker_show_instance ((SPMarker* ) shape->marker[i], ai,
+                                         NR_ARENA_ITEM_GET_KEY(ai) + i, counter[i], m,
+                                         style->stroke_width.computed);
+                 counter[i]++;
+            }
         }
 
-        if ( shape->marker[SP_MARKER_LOC_MID] && (path_it->size_default() > 1) ) {
+      // MID position
+        if ( (shape->marker[SP_MARKER_LOC_MID] || shape->marker[SP_MARKER_LOC]) && (path_it->size_default() > 1) ) {
             Geom::Path::const_iterator curve_it1 = path_it->begin();      // incoming curve
             Geom::Path::const_iterator curve_it2 = ++(path_it->begin());  // outgoing curve
             while (curve_it2 != path_it->end_default())
@@ -429,17 +432,22 @@ sp_shape_update_marker_view (SPShape *shape, NRArenaItem *ai)
                  * there should be a midpoint marker between last segment and closing straight line segment
                  */
                 Geom::Matrix const m (sp_shape_marker_get_transform(*curve_it1, *curve_it2));
-                sp_marker_show_instance ((SPMarker* ) shape->marker[SP_MARKER_LOC_MID], ai,
-                                         NR_ARENA_ITEM_GET_KEY(ai) + SP_MARKER_LOC_MID, mid_pos, m,
-                                         style->stroke_width.computed);
-                mid_pos++;
+                for (int i = 0; i < 3; i += 2) {  // SP_MARKER_LOC and SP_MARKER_LOC_MID
+                    if (shape->marker[i]) {
+                        sp_marker_show_instance ((SPMarker* ) shape->marker[i], ai,
+                                                 NR_ARENA_ITEM_GET_KEY(ai) + i, counter[i], m,
+                                                 style->stroke_width.computed);
+                        counter[i]++;
+                    }
+                }
 
                 ++curve_it1;
                 ++curve_it2;
             }
         }
 
-        if ( shape->marker[SP_MARKER_LOC_END] ) {
+      // END position
+        if ( shape->marker[SP_MARKER_LOC_END] || shape->marker[SP_MARKER_LOC] ) {
             /* Get reference to last curve in the path.
              * For moveto-only path, this returns the "closing line segment". */
             unsigned int index = path_it->size_default();
@@ -447,12 +455,16 @@ sp_shape_update_marker_view (SPShape *shape, NRArenaItem *ai)
                 index--;
             }
             Geom::Curve const &lastcurve = (*path_it)[index];
-
             Geom::Matrix const m = sp_shape_marker_get_transform_at_end(lastcurve);
-            sp_marker_show_instance ((SPMarker* ) shape->marker[SP_MARKER_LOC_END], ai,
-                                     NR_ARENA_ITEM_GET_KEY(ai) + SP_MARKER_LOC_END, end_pos, m,
-                                     style->stroke_width.computed);
-            end_pos++;
+
+            for (int i = 0; i < 4; i += 3) {  // SP_MARKER_LOC and SP_MARKER_LOC_END
+                if (shape->marker[i]) {
+                    sp_marker_show_instance ((SPMarker* ) shape->marker[i], ai,
+                                             NR_ARENA_ITEM_GET_KEY(ai) + i, counter[i], m,
+                                             style->stroke_width.computed);
+                    counter[i]++;
+                }
+            }
         }
     }
 }
@@ -463,17 +475,17 @@ sp_shape_update_marker_view (SPShape *shape, NRArenaItem *ai)
 static void
 sp_shape_modified (SPObject *object, unsigned int flags)
 {
-       SPShape *shape = SP_SHAPE (object);
+    SPShape *shape = SP_SHAPE (object);
 
-       if (((SPObjectClass *) (parent_class))->modified) {
-         (* ((SPObjectClass *) (parent_class))->modified) (object, flags);
-       }
+    if (((SPObjectClass *) (parent_class))->modified) {
+      (* ((SPObjectClass *) (parent_class))->modified) (object, flags);
+    }
 
-       if (flags & SP_OBJECT_STYLE_MODIFIED_FLAG) {
-               for (SPItemView *v = SP_ITEM (shape)->display; v != NULL; v = v->next) {
-                       nr_arena_shape_set_style (NR_ARENA_SHAPE (v->arenaitem), object->style);
-               }
-       }
+    if (flags & SP_OBJECT_STYLE_MODIFIED_FLAG) {
+        for (SPItemView *v = SP_ITEM (shape)->display; v != NULL; v = v->next) {
+            nr_arena_shape_set_style (NR_ARENA_SHAPE (v->arenaitem), object->style);
+        }
+    }
 }
 
 /**
@@ -493,7 +505,7 @@ static void sp_shape_bbox(SPItem const *item, NRRect *bbox, Geom::Matrix const &
             cbbox.y1 = (*geombbox)[1][1];
 
             if ((SPItem::BBoxType) flags != SPItem::GEOMETRIC_BBOX) {
-                
+
                 SPStyle* style=SP_OBJECT_STYLE (item);
                 if (!style->stroke.isNone()) {
                     double const scale = transform.descrim();
@@ -513,40 +525,16 @@ static void sp_shape_bbox(SPItem const *item, NRRect *bbox, Geom::Matrix const &
                     /* TODO: make code prettier: lots of variables can be taken out of the loop! */
                     Geom::PathVector const & pathv = shape->curve->get_pathvector();
                     for(Geom::PathVector::const_iterator path_it = pathv.begin(); path_it != pathv.end(); ++path_it) {
-                        if ( shape->marker[SP_MARKER_LOC_START] ) {
-                            SPMarker* marker = SP_MARKER (shape->marker[SP_MARKER_LOC_START]);
-                            SPItem* marker_item = sp_item_first_item_child (SP_OBJECT (shape->marker[SP_MARKER_LOC_START]));
-
-                            Geom::Matrix tr(sp_shape_marker_get_transform_at_start(path_it->front()));
-
-                            if (marker->markerUnits == SP_MARKER_UNITS_STROKEWIDTH) {
-                                tr = Geom::Scale(style->stroke_width.computed) * tr;
-                            }
-
-                            // total marker transform
-                            tr = marker_item->transform * marker->c2p * tr * transform;
-
-                            // get bbox of the marker with that transform
-                            NRRect marker_bbox;
-                            sp_item_invoke_bbox (marker_item, &marker_bbox, from_2geom(tr), true);
-                            // union it with the shape bbox
-                            nr_rect_d_union (&cbbox, &cbbox, &marker_bbox);
-                        }
-
-                        if ( shape->marker[SP_MARKER_LOC_MID] && (path_it->size_default() > 1) ) {
-                            Geom::Path::const_iterator curve_it1 = path_it->begin();      // incoming curve
-                            Geom::Path::const_iterator curve_it2 = ++(path_it->begin());  // outgoing curve
-                            while (curve_it2 != path_it->end_default())
-                            {
-                                /* Put marker between curve_it1 and curve_it2.
-                                 * Loop to end_default (so including closing segment), because when a path is closed,
-                                 * there should be a midpoint marker between last segment and closing straight line segment */
-
-                                SPMarker* marker = SP_MARKER (shape->marker[SP_MARKER_LOC_MID]);
-                                SPItem* marker_item = sp_item_first_item_child (SP_OBJECT (shape->marker[SP_MARKER_LOC_MID]));
-
-                                Geom::Matrix tr(sp_shape_marker_get_transform(*curve_it1, *curve_it2));
-
+                        for (unsigned i = 0; i < 2; i++) { // SP_MARKER_LOC and SP_MARKER_LOC_START
+                            if ( shape->marker[i] ) {
+                                SPMarker* marker = SP_MARKER (shape->marker[i]);
+                                SPItem* marker_item = sp_item_first_item_child (SP_OBJECT (marker));
+
+                                Geom::Matrix tr(sp_shape_marker_get_transform_at_start(path_it->front()));
+                                if (!marker->orient_auto) {
+                                    Geom::Point transl = tr.translation();
+                                    tr = Geom::Rotate::from_degrees(marker->orient) * Geom::Translate(transl);
+                                }
                                 if (marker->markerUnits == SP_MARKER_UNITS_STROKEWIDTH) {
                                     tr = Geom::Scale(style->stroke_width.computed) * tr;
                                 }
@@ -559,38 +547,77 @@ static void sp_shape_bbox(SPItem const *item, NRRect *bbox, Geom::Matrix const &
                                 sp_item_invoke_bbox (marker_item, &marker_bbox, from_2geom(tr), true);
                                 // union it with the shape bbox
                                 nr_rect_d_union (&cbbox, &cbbox, &marker_bbox);
-
-                                ++curve_it1;
-                                ++curve_it2;
                             }
                         }
 
-                        if ( shape->marker[SP_MARKER_LOC_END] ) {
-                            SPMarker* marker = SP_MARKER (shape->marker[SP_MARKER_LOC_END]);
-                            SPItem* marker_item = sp_item_first_item_child (SP_OBJECT (shape->marker[SP_MARKER_LOC_END]));
-
-                            /* Get reference to last curve in the path.
-                             * For moveto-only path, this returns the "closing line segment". */
-                            unsigned int index = path_it->size_default();
-                            if (index > 0) {
-                                index--;
+                        for (unsigned i = 0; i < 3; i += 2) { // SP_MARKER_LOC and SP_MARKER_LOC_MID
+                            if ( shape->marker[i] && (path_it->size_default() > 1) ) {
+                                Geom::Path::const_iterator curve_it1 = path_it->begin();      // incoming curve
+                                Geom::Path::const_iterator curve_it2 = ++(path_it->begin());  // outgoing curve
+                                while (curve_it2 != path_it->end_default())
+                                {
+                                    /* Put marker between curve_it1 and curve_it2.
+                                     * Loop to end_default (so including closing segment), because when a path is closed,
+                                     * there should be a midpoint marker between last segment and closing straight line segment */
+
+                                    SPMarker* marker = SP_MARKER (shape->marker[i]);
+                                    SPItem* marker_item = sp_item_first_item_child (SP_OBJECT (marker));
+
+                                    Geom::Matrix tr(sp_shape_marker_get_transform(*curve_it1, *curve_it2));
+                                    if (!marker->orient_auto) {
+                                        Geom::Point transl = tr.translation();
+                                        tr = Geom::Rotate::from_degrees(marker->orient) * Geom::Translate(transl);
+                                    }
+                                    if (marker->markerUnits == SP_MARKER_UNITS_STROKEWIDTH) {
+                                        tr = Geom::Scale(style->stroke_width.computed) * tr;
+                                    }
+
+                                    // total marker transform
+                                    tr = marker_item->transform * marker->c2p * tr * transform;
+
+                                    // get bbox of the marker with that transform
+                                    NRRect marker_bbox;
+                                    sp_item_invoke_bbox (marker_item, &marker_bbox, from_2geom(tr), true);
+                                    // union it with the shape bbox
+                                    nr_rect_d_union (&cbbox, &cbbox, &marker_bbox);
+
+                                    ++curve_it1;
+                                    ++curve_it2;
+                                }
                             }
-                            Geom::Curve const &lastcurve = (*path_it)[index];
+                        }
 
-                            Geom::Matrix tr = sp_shape_marker_get_transform_at_end(lastcurve);
+                        for (unsigned i = 0; i < 4; i += 3) { // SP_MARKER_LOC and SP_MARKER_LOC_END
+                            if ( shape->marker[i] ) {
+                                SPMarker* marker = SP_MARKER (shape->marker[i]);
+                                SPItem* marker_item = sp_item_first_item_child (SP_OBJECT (marker));
 
-                            if (marker->markerUnits == SP_MARKER_UNITS_STROKEWIDTH) {
-                                tr = Geom::Scale(style->stroke_width.computed) * tr;
-                            }
+                                /* Get reference to last curve in the path.
+                                 * For moveto-only path, this returns the "closing line segment". */
+                                unsigned int index = path_it->size_default();
+                                if (index > 0) {
+                                    index--;
+                                }
+                                Geom::Curve const &lastcurve = (*path_it)[index];
+
+                                Geom::Matrix tr = sp_shape_marker_get_transform_at_end(lastcurve);
+                                if (!marker->orient_auto) {
+                                    Geom::Point transl = tr.translation();
+                                    tr = Geom::Rotate::from_degrees(marker->orient) * Geom::Translate(transl);
+                                }
+                                if (marker->markerUnits == SP_MARKER_UNITS_STROKEWIDTH) {
+                                    tr = Geom::Scale(style->stroke_width.computed) * tr;
+                                }
 
-                            // total marker transform
-                            tr = marker_item->transform * marker->c2p * tr * transform;
+                                // total marker transform
+                                tr = marker_item->transform * marker->c2p * tr * transform;
 
-                            // get bbox of the marker with that transform
-                            NRRect marker_bbox;
-                            sp_item_invoke_bbox (marker_item, &marker_bbox, tr, true);
-                            // union it with the shape bbox
-                            nr_rect_d_union (&cbbox, &cbbox, &marker_bbox);
+                                // get bbox of the marker with that transform
+                                NRRect marker_bbox;
+                                sp_item_invoke_bbox (marker_item, &marker_bbox, tr, true);
+                                // union it with the shape bbox
+                                nr_rect_d_union (&cbbox, &cbbox, &marker_bbox);
+                            }
                         }
                     }
                 }
@@ -602,6 +629,21 @@ static void sp_shape_bbox(SPItem const *item, NRRect *bbox, Geom::Matrix const &
     }
 }
 
+static void
+sp_shape_print_invoke_marker_printing(SPObject* obj, Geom::Matrix tr, SPStyle* style, SPPrintContext *ctx) {
+    SPMarker *marker = SP_MARKER(obj);
+    if (marker->markerUnits == SP_MARKER_UNITS_STROKEWIDTH) {
+        tr = Geom::Scale(style->stroke_width.computed) * tr;
+    }
+
+    SPItem* marker_item = sp_item_first_item_child (SP_OBJECT (marker));
+    tr = marker_item->transform * marker->c2p * tr;
+
+    Geom::Matrix old_tr = marker_item->transform;
+    marker_item->transform = tr;
+    sp_item_invoke_print (marker_item, ctx);
+    marker_item->transform = old_tr;
+}
 /**
  * Prepares shape for printing.  Handles printing of comments for printing
  * debugging, sizes the item to fit into the document width/height,
@@ -611,11 +653,11 @@ static void sp_shape_bbox(SPItem const *item, NRRect *bbox, Geom::Matrix const &
 void
 sp_shape_print (SPItem *item, SPPrintContext *ctx)
 {
-       NRRect pbox, dbox, bbox;
+    NRRect pbox, dbox, bbox;
 
-       SPShape *shape = SP_SHAPE(item);
+    SPShape *shape = SP_SHAPE(item);
 
-       if (!shape->curve) return;
+    if (!shape->curve) return;
 
         Inkscape::Preferences *prefs = Inkscape::Preferences::get();
         gint add_comments = prefs->getBool("/printing/debug/add-label-comments");
@@ -627,7 +669,7 @@ sp_shape_print (SPItem *item, SPPrintContext *ctx)
         }
 
     /* fixme: Think (Lauris) */
-    sp_item_invoke_bbox(item, &pbox, NR::identity(), TRUE);
+    sp_item_invoke_bbox(item, &pbox, Geom::identity(), TRUE);
     dbox.x0 = 0.0;
     dbox.y0 = 0.0;
     dbox.x1 = sp_document_width (SP_OBJECT_DOCUMENT (item));
@@ -635,7 +677,7 @@ sp_shape_print (SPItem *item, SPPrintContext *ctx)
     sp_item_bbox_desktop (item, &bbox);
     Geom::Matrix const i2d(sp_item_i2d_affine(item));
 
-        SPStyle* style = SP_OBJECT_STYLE (item);
+    SPStyle* style = SP_OBJECT_STYLE (item);
 
     if (!style->fill.isNone()) {
         sp_print_fill (ctx, shape->curve->get_pathvector(), &i2d, style, &pbox, &dbox, &bbox);
@@ -648,25 +690,17 @@ sp_shape_print (SPItem *item, SPPrintContext *ctx)
     /* TODO: make code prettier: lots of variables can be taken out of the loop! */
     Geom::PathVector const & pathv = shape->curve->get_pathvector();
     for(Geom::PathVector::const_iterator path_it = pathv.begin(); path_it != pathv.end(); ++path_it) {
-        if ( shape->marker[SP_MARKER_LOC_START] ) {
-            SPMarker* marker = SP_MARKER (shape->marker[SP_MARKER_LOC_START]);
-            SPItem* marker_item = sp_item_first_item_child (SP_OBJECT (shape->marker[SP_MARKER_LOC_START]));
-
+        if ( shape->marker[SP_MARKER_LOC_START] || shape->marker[SP_MARKER_LOC]) {
             Geom::Matrix tr(sp_shape_marker_get_transform_at_start(path_it->front()));
-
-            if (marker->markerUnits == SP_MARKER_UNITS_STROKEWIDTH) {
-                tr = Geom::Scale(style->stroke_width.computed) * tr;
+            if (shape->marker[SP_MARKER_LOC_START]) {
+                sp_shape_print_invoke_marker_printing(shape->marker[SP_MARKER_LOC_START], tr, style, ctx);
+            }
+            if (shape->marker[SP_MARKER_LOC]) {
+                sp_shape_print_invoke_marker_printing(shape->marker[SP_MARKER_LOC], tr, style, ctx);
             }
-
-            tr = marker_item->transform * marker->c2p * tr;
-
-            NR::Matrix old_tr = marker_item->transform;
-            marker_item->transform = tr;
-            sp_item_invoke_print (marker_item, ctx);
-            marker_item->transform = old_tr;
         }
 
-        if ( shape->marker[SP_MARKER_LOC_MID] && (path_it->size_default() > 1) ) {
+        if ( (shape->marker[SP_MARKER_LOC_MID] || shape->marker[SP_MARKER_LOC]) && (path_it->size_default() > 1) ) {
             Geom::Path::const_iterator curve_it1 = path_it->begin();      // incoming curve
             Geom::Path::const_iterator curve_it2 = ++(path_it->begin());  // outgoing curve
             while (curve_it2 != path_it->end_default())
@@ -674,32 +708,21 @@ sp_shape_print (SPItem *item, SPPrintContext *ctx)
                 /* Put marker between curve_it1 and curve_it2.
                  * Loop to end_default (so including closing segment), because when a path is closed,
                  * there should be a midpoint marker between last segment and closing straight line segment */
-
-                SPMarker* marker = SP_MARKER (shape->marker[SP_MARKER_LOC_MID]);
-                SPItem* marker_item = sp_item_first_item_child (SP_OBJECT (shape->marker[SP_MARKER_LOC_MID]));
-
                 Geom::Matrix tr(sp_shape_marker_get_transform(*curve_it1, *curve_it2));
 
-                if (marker->markerUnits == SP_MARKER_UNITS_STROKEWIDTH) {
-                    tr = Geom::Scale(style->stroke_width.computed) * tr;
+                if (shape->marker[SP_MARKER_LOC_MID]) {
+                    sp_shape_print_invoke_marker_printing(shape->marker[SP_MARKER_LOC_MID], tr, style, ctx);
+                }
+                if (shape->marker[SP_MARKER_LOC]) {
+                    sp_shape_print_invoke_marker_printing(shape->marker[SP_MARKER_LOC], tr, style, ctx);
                 }
-
-                tr = marker_item->transform * marker->c2p * tr;
-
-                NR::Matrix old_tr = marker_item->transform;
-                marker_item->transform = tr;
-                sp_item_invoke_print (marker_item, ctx);
-                marker_item->transform = old_tr;
 
                 ++curve_it1;
                 ++curve_it2;
             }
         }
 
-        if ( shape->marker[SP_MARKER_LOC_END] ) {
-            SPMarker* marker = SP_MARKER (shape->marker[SP_MARKER_LOC_END]);
-            SPItem* marker_item = sp_item_first_item_child (SP_OBJECT (shape->marker[SP_MARKER_LOC_END]));
-
+        if ( shape->marker[SP_MARKER_LOC_END] || shape->marker[SP_MARKER_LOC]) {
             /* Get reference to last curve in the path.
              * For moveto-only path, this returns the "closing line segment". */
             unsigned int index = path_it->size_default();
@@ -710,16 +733,12 @@ sp_shape_print (SPItem *item, SPPrintContext *ctx)
 
             Geom::Matrix tr = sp_shape_marker_get_transform_at_end(lastcurve);
 
-            if (marker->markerUnits == SP_MARKER_UNITS_STROKEWIDTH) {
-                tr = Geom::Scale(style->stroke_width.computed) * tr;
+            if (shape->marker[SP_MARKER_LOC_END]) {
+                sp_shape_print_invoke_marker_printing(shape->marker[SP_MARKER_LOC_END], tr, style, ctx);
+            }
+            if (shape->marker[SP_MARKER_LOC]) {
+                sp_shape_print_invoke_marker_printing(shape->marker[SP_MARKER_LOC], tr, style, ctx);
             }
-
-            tr = marker_item->transform * marker->c2p * tr;
-
-            NR::Matrix old_tr = marker_item->transform;
-            marker_item->transform = tr;
-            sp_item_invoke_print (marker_item, ctx);
-            marker_item->transform = old_tr;
         }
     }
 
@@ -756,7 +775,7 @@ sp_shape_show (SPItem *item, NRArena *arena, unsigned int /*key*/, unsigned int
      */
     for (int i = 0 ; i < SP_MARKER_LOC_QTY ; i++) {
         sp_shape_set_marker (object, i, object->style->marker[i].value);
-         }
+      }
 
     if (sp_shape_has_markers (shape)) {
 
@@ -768,7 +787,7 @@ sp_shape_show (SPItem *item, NRArena *arena, unsigned int /*key*/, unsigned int
         for (int i = 0; i < SP_MARKER_LOC_QTY; i++) {
             if (shape->marker[i]) {
                 sp_marker_show_dimension ((SPMarker *) shape->marker[i],
-                                          NR_ARENA_ITEM_GET_KEY (arenaitem) + i - SP_MARKER_LOC,
+                                          NR_ARENA_ITEM_GET_KEY (arenaitem) + i,
                                           sp_shape_number_of_markers (shape, i));
             }
         }
@@ -786,26 +805,26 @@ sp_shape_show (SPItem *item, NRArena *arena, unsigned int /*key*/, unsigned int
 static void
 sp_shape_hide (SPItem *item, unsigned int key)
 {
-       SPShape *shape;
-       SPItemView *v;
-       int i;
+    SPShape *shape;
+    SPItemView *v;
+    int i;
 
-       shape = (SPShape *) item;
+    shape = (SPShape *) item;
 
-       for (i=0; i<SP_MARKER_LOC_QTY; i++) {
-         if (shape->marker[i]) {
-           for (v = item->display; v != NULL; v = v->next) {
+    for (i=0; i<SP_MARKER_LOC_QTY; i++) {
+      if (shape->marker[i]) {
+        for (v = item->display; v != NULL; v = v->next) {
                 if (key == v->key) {
-             sp_marker_hide ((SPMarker *) shape->marker[i],
+          sp_marker_hide ((SPMarker *) shape->marker[i],
                                     NR_ARENA_ITEM_GET_KEY (v->arenaitem) + i);
                 }
-           }
-         }
-       }
+        }
+      }
+    }
 
-       if (((SPItemClass *) parent_class)->hide) {
-         ((SPItemClass *) parent_class)->hide (item, key);
-       }
+    if (((SPItemClass *) parent_class)->hide) {
+      ((SPItemClass *) parent_class)->hide (item, key);
+    }
 }
 
 /**
@@ -821,7 +840,8 @@ sp_shape_has_markers (SPShape const *shape)
 
     return (
         shape->curve &&
-        (shape->marker[SP_MARKER_LOC_START] ||
+        (shape->marker[SP_MARKER_LOC] ||
+         shape->marker[SP_MARKER_LOC_START] ||
          shape->marker[SP_MARKER_LOC_MID] ||
          shape->marker[SP_MARKER_LOC_END])
         );
@@ -839,6 +859,19 @@ sp_shape_number_of_markers (SPShape *shape, int type)
     Geom::PathVector const & pathv = shape->curve->get_pathvector();
 
     switch(type) {
+        case SP_MARKER_LOC:
+        {
+            if ( shape->marker[SP_MARKER_LOC] ) {
+                guint n = 2*pathv.size();
+                for(Geom::PathVector::const_iterator path_it = pathv.begin(); path_it != pathv.end(); ++path_it) {
+                    n += path_it->size();
+                    n += path_it->closed() ? 1 : 0;
+                }
+                return n;
+            } else {
+                return 0;
+            }
+        }
         case SP_MARKER_LOC_START:
             return shape->marker[SP_MARKER_LOC_START] ? pathv.size() : 0;
 
@@ -858,17 +891,7 @@ sp_shape_number_of_markers (SPShape *shape, int type)
 
         case SP_MARKER_LOC_END:
         {
-            if ( shape->marker[SP_MARKER_LOC_END] ) {
-                guint n = 0;
-                for(Geom::PathVector::const_iterator path_it = pathv.begin(); path_it != pathv.end(); ++path_it) {
-                    if (!path_it->empty()) {
-                        n++;
-                    }
-                }
-                return n;
-            } else {
-                return 0;
-            }
+            return shape->marker[SP_MARKER_LOC_END] ? pathv.size() : 0;
         }
 
         default:
@@ -884,26 +907,26 @@ sp_shape_number_of_markers (SPShape *shape, int type)
 static void
 sp_shape_marker_release (SPObject *marker, SPShape *shape)
 {
-       SPItem *item;
-       int i;
-
-       item = (SPItem *) shape;
-
-       for (i = SP_MARKER_LOC_START; i < SP_MARKER_LOC_QTY; i++) {
-         if (marker == shape->marker[i]) {
-           SPItemView *v;
-           /* Hide marker */
-           for (v = item->display; v != NULL; v = v->next) {
-             sp_marker_hide ((SPMarker *) (shape->marker[i]), NR_ARENA_ITEM_GET_KEY (v->arenaitem) + i);
-             /* fixme: Do we need explicit remove here? (Lauris) */
-             /* nr_arena_item_set_mask (v->arenaitem, NULL); */
-           }
-           /* Detach marker */
-      shape->release_connect[i].disconnect();
-      shape->modified_connect[i].disconnect();
-           shape->marker[i] = sp_object_hunref (shape->marker[i], item);
-         }
-       }
+    SPItem *item;
+    int i;
+
+    item = (SPItem *) shape;
+
+    for (i = 0; i < SP_MARKER_LOC_QTY; i++) {
+        if (marker == shape->marker[i]) {
+            SPItemView *v;
+            /* Hide marker */
+            for (v = item->display; v != NULL; v = v->next) {
+              sp_marker_hide ((SPMarker *) (shape->marker[i]), NR_ARENA_ITEM_GET_KEY (v->arenaitem) + i);
+              /* fixme: Do we need explicit remove here? (Lauris) */
+              /* nr_arena_item_set_mask (v->arenaitem, NULL); */
+            }
+            /* Detach marker */
+            shape->release_connect[i].disconnect();
+            shape->modified_connect[i].disconnect();
+            shape->marker[i] = sp_object_hunref (shape->marker[i], item);
+        }
+    }
 }
 
 /**
@@ -912,12 +935,12 @@ sp_shape_marker_release (SPObject *marker, SPShape *shape)
 static void
 sp_shape_marker_modified (SPObject */*marker*/, guint /*flags*/, SPItem */*item*/)
 {
-       /* I think mask does update automagically */
-       /* g_warning ("Item %s mask %s modified", SP_OBJECT_ID (item), SP_OBJECT_ID (mask)); */
+    /* I think mask does update automagically */
+    /* g_warning ("Item %s mask %s modified", SP_OBJECT_ID (item), SP_OBJECT_ID (mask)); */
 }
 
 /**
- * Adds a new marker to shape object at the location indicated by key.  value 
+ * Adds a new marker to shape object at the location indicated by key.  value
  * must be a valid URI reference resolvable from the shape object (i.e., present
  * in the document <defs>).  If the shape object already has a marker
  * registered at the given position, it is removed first.  Then the
@@ -929,7 +952,7 @@ sp_shape_set_marker (SPObject *object, unsigned int key, const gchar *value)
     SPItem *item = (SPItem *) object;
     SPShape *shape = (SPShape *) object;
 
-    if (key < SP_MARKER_LOC_START || key > SP_MARKER_LOC_END) {
+    if (key < 0 || key > SP_MARKER_LOC_END) {
         return;
     }
 
@@ -971,12 +994,12 @@ sp_shape_set_marker (SPObject *object, unsigned int key, const gchar *value)
 void
 sp_shape_set_shape (SPShape *shape)
 {
-       g_return_if_fail (shape != NULL);
-       g_return_if_fail (SP_IS_SHAPE (shape));
+    g_return_if_fail (shape != NULL);
+    g_return_if_fail (SP_IS_SHAPE (shape));
 
-       if (SP_SHAPE_CLASS (G_OBJECT_GET_CLASS (shape))->set_shape) {
-         SP_SHAPE_CLASS (G_OBJECT_GET_CLASS (shape))->set_shape (shape);
-       }
+    if (SP_SHAPE_CLASS (G_OBJECT_GET_CLASS (shape))->set_shape) {
+      SP_SHAPE_CLASS (G_OBJECT_GET_CLASS (shape))->set_shape (shape);
+    }
 }
 
 /**
@@ -988,16 +1011,16 @@ sp_shape_set_shape (SPShape *shape)
 void
 sp_shape_set_curve (SPShape *shape, SPCurve *curve, unsigned int owner)
 {
-       if (shape->curve) {
-               shape->curve = shape->curve->unref();
-       }
-       if (curve) {
-               if (owner) {
-                       shape->curve = curve->ref();
-               } else {
-                       shape->curve = curve->copy();
-               }
-       }
+    if (shape->curve) {
+        shape->curve = shape->curve->unref();
+    }
+    if (curve) {
+        if (owner) {
+            shape->curve = curve->ref();
+        } else {
+            shape->curve = curve->copy();
+        }
+    }
         SP_OBJECT(shape)->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
 }
 
@@ -1007,10 +1030,10 @@ sp_shape_set_curve (SPShape *shape, SPCurve *curve, unsigned int owner)
 SPCurve *
 sp_shape_get_curve (SPShape *shape)
 {
-       if (shape->curve) {
-               return shape->curve->copy();
-       }
-       return NULL;
+    if (shape->curve) {
+        return shape->curve->copy();
+    }
+    return NULL;
 }
 
 /**
@@ -1019,16 +1042,16 @@ sp_shape_get_curve (SPShape *shape)
 void
 sp_shape_set_curve_insync (SPShape *shape, SPCurve *curve, unsigned int owner)
 {
-       if (shape->curve) {
-               shape->curve = shape->curve->unref();
-       }
-       if (curve) {
-               if (owner) {
-                       shape->curve = curve->ref();
-               } else {
-                       shape->curve = curve->copy();
-               }
-       }
+    if (shape->curve) {
+        shape->curve = shape->curve->unref();
+    }
+    if (curve) {
+        if (owner) {
+            shape->curve = curve->ref();
+        } else {
+            shape->curve = curve->copy();
+        }
+    }
 }
 
 /**
@@ -1051,29 +1074,51 @@ static void sp_shape_snappoints(SPItem const *item, SnapPointsIter p, Inkscape::
     Geom::Matrix const i2d (sp_item_i2d_affine (item));
 
     for(Geom::PathVector::const_iterator path_it = pathv.begin(); path_it != pathv.end(); ++path_it) {
-        *p = from_2geom(path_it->initialPoint() * i2d);
+        *p = path_it->initialPoint() * i2d;
 
         Geom::Path::const_iterator curve_it1 = path_it->begin();      // incoming curve
         Geom::Path::const_iterator curve_it2 = ++(path_it->begin());  // outgoing curve
         while (curve_it2 != path_it->end_closed())
         {
             /* Test whether to add the node between curve_it1 and curve_it2.
-             * Loop to end_closed (so always including closing segment), the last node to be added
-             * is the node between the closing segment and the segment before that one. Regardless
-             * of the path being closed. If the path is closed, the final point was already added by
+             * Loop to end_closed (so always including closing segment); the last node to be added
+             * is the node between the closing segment and the segment before that, regardless
+             * of the path being closed or not. If the path is closed, the final point was already added by
              * adding the initial point. */
 
             Geom::NodeType nodetype = Geom::get_nodetype(*curve_it1, *curve_it2);
 
-            // Depending on the snapping preferences, either add only cusp nodes, or add add both cusp and smooths nodes
+            // Depending on the snapping preferences, either add only cusp nodes, or add add both cusp and smooth nodes
             if (snapprefs->getSnapSmoothNodes() || nodetype == Geom::NODE_NONE || nodetype == Geom::NODE_CUSP) {
-                *p = from_2geom(curve_it1->finalPoint() * i2d);
+                *p = curve_it1->finalPoint() * i2d;
             }
-            
+
+            // Consider midpoints of line segments for snapping
+            if (snapprefs->getSnapMidpoints()) {
+               if (Geom::LineSegment const* line_segment = dynamic_cast<Geom::LineSegment const*>(&(*curve_it1))) {
+                    *p = Geom::middle_point(*line_segment) * i2d;
+                }
+            }
+
             ++curve_it1;
             ++curve_it2;
         }
+
+        // Find the internal intersections of each path and consider these for snapping (using "Method 1" as desciribed in Inkscape::ObjectSnapper::_collectNodes())
+        if (snapprefs->getSnapIntersectionCS()) {
+            Geom::Crossings cs;
+            cs = self_crossings(*path_it);
+            if (cs.size() > 0) { // There might be multiple intersections...
+                for (Geom::Crossings::const_iterator i = cs.begin(); i != cs.end(); i++) {
+                    Geom::Point p_ix = (*path_it).pointAt((*i).ta);
+                    *p = p_ix * i2d;
+                }
+            }
+        }
     }
+
+
+
 }
 
 /*