summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/originalpatharray.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/live_effects/parameter/originalpatharray.h')
-rw-r--r--src/live_effects/parameter/originalpatharray.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/live_effects/parameter/originalpatharray.h b/src/live_effects/parameter/originalpatharray.h
index fe9371644..eb1114c3f 100644
--- a/src/live_effects/parameter/originalpatharray.h
+++ b/src/live_effects/parameter/originalpatharray.h
@@ -70,6 +70,9 @@ public:
virtual void param_editOncanvas(SPItem * /*item*/, SPDesktop * /*dt*/) {};
/** Disable the canvas indicators of parent class by overriding this method */
virtual void addCanvasIndicators(SPLPEItem const* /*lpeitem*/, std::vector<Geom::PathVector> & /*hp_vec*/) {};
+ void setFromOriginalD(bool from_original_d){ _from_original_d = from_original_d; };
+ void allowOnlyBsplineSpiro(bool allow_only_bspline_spiro){ _allow_only_bspline_spiro = allow_only_bspline_spiro; };
+
std::vector<PathAndDirection*> _vector;
protected:
@@ -99,6 +102,8 @@ protected:
void on_reverse_toggled(const Glib::ustring& path);
private:
+ bool _from_original_d;
+ bool _allow_only_bspline_spiro;
OriginalPathArrayParam(const OriginalPathArrayParam&);
OriginalPathArrayParam& operator=(const OriginalPathArrayParam&);
};