summaryrefslogtreecommitdiffstats
path: root/src/sp-shape.h
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2011-04-01 22:59:01 +0000
committerJohan Engelen <goejendaagh@zonnet.nl>2011-04-01 22:59:01 +0000
commitd6978fcea4a2ccd2d9cccefabc6558a74f332a6d (patch)
tree98ea2cff482d6b2196e4bffa4fab3a7a4d5aead0 /src/sp-shape.h
parentGerman translation update. (diff)
downloadinkscape-d6978fcea4a2ccd2d9cccefabc6558a74f332a6d.tar.gz
inkscape-d6978fcea4a2ccd2d9cccefabc6558a74f332a6d.zip
add curve before LPE to SPShape. this is useful for helperpath display. It was inspired from fixing bug 407008
Fixed bugs: - https://launchpad.net/bugs/407008 (bzr r10142)
Diffstat (limited to 'src/sp-shape.h')
-rw-r--r--src/sp-shape.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sp-shape.h b/src/sp-shape.h
index b29b0c50b..b91850d1f 100644
--- a/src/sp-shape.h
+++ b/src/sp-shape.h
@@ -44,11 +44,16 @@ public:
static GType getType (void);
void setShape ();
SPCurve * getCurve ();
+ SPCurve * getCurveBeforeLPE ();
void setCurve (SPCurve *curve, unsigned int owner);
void setCurveInsync (SPCurve *curve, unsigned int owner);
+ void setCurveBeforeLPE (SPCurve *curve);
int hasMarkers () const;
int numberOfMarkers (int type);
+protected:
+ SPCurve *curve_before_lpe;
+
private:
static void sp_shape_init (SPShape *shape);
static void sp_shape_finalize (GObject *object);