Code

Fixed a crash when changing blur of filtered object after duplicating it
[inkscape.git] / src / sp-shape.h
index 5479284365f3d03131b2e3ad1ed84d249f62d573..2b265fdaaf6b397c8c4247098dbf3ee7354c9068 100644 (file)
@@ -17,7 +17,7 @@
 #include "sp-item.h"
 #include "sp-marker-loc.h"
 
-
+#include <sigc++/connection.h>
 
 #define SP_TYPE_SHAPE (sp_shape_get_type ())
 #define SP_SHAPE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SP_TYPE_SHAPE, SPShape))
@@ -31,8 +31,8 @@ struct SPShape : public SPItem {
        SPCurve *curve;
 
       SPObject *marker[SP_MARKER_LOC_QTY];
-      gulong release_connect [SP_MARKER_LOC_QTY];
-      gulong modified_connect [SP_MARKER_LOC_QTY];
+      sigc::connection release_connect [SP_MARKER_LOC_QTY];
+      sigc::connection modified_connect [SP_MARKER_LOC_QTY];
 };
 
 struct SPShapeClass {
@@ -49,14 +49,17 @@ void sp_shape_set_shape (SPShape *shape);
 /* Return duplicate of curve or NULL */
 SPCurve *sp_shape_get_curve (SPShape *shape);
 
+// sets a curve, updates display
 void sp_shape_set_curve (SPShape *shape, SPCurve *curve, unsigned int owner);
 
-/* NOT FOR GENERAL PUBLIC UNTIL SORTED OUT (Lauris) */
+// same as sp_shape_set_curve, but without updating display
 void sp_shape_set_curve_insync (SPShape *shape, SPCurve *curve, unsigned int owner);
 
-/* PROTECTED */
+// markers API
 void sp_shape_set_marker (SPObject *object, unsigned int key, const gchar *value);
-
-
+int sp_shape_has_markers (SPShape const *shape);
+int sp_shape_number_of_markers (SPShape* Shape, int type);
+NR::Matrix sp_shape_marker_get_transform(SPShape const *shape, NArtBpath const *bp);
+bool sp_shape_marker_required(SPShape const *shape, int const m, NArtBpath *bp);
 
 #endif