summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/path.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/live_effects/parameter/path.h')
-rw-r--r--src/live_effects/parameter/path.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/live_effects/parameter/path.h b/src/live_effects/parameter/path.h
index ff5e4f1b8..635056772 100644
--- a/src/live_effects/parameter/path.h
+++ b/src/live_effects/parameter/path.h
@@ -38,6 +38,7 @@ public:
virtual bool param_readSVGValue(const gchar * strvalue);
virtual gchar * param_getSVGValue() const;
+ virtual gchar * param_getDefaultSVGValue() const;
virtual void param_set_default();
virtual void param_update_default(const gchar * default_value);
@@ -50,6 +51,7 @@ public:
virtual void addCanvasIndicators(SPLPEItem const* lpeitem, std::vector<Geom::PathVector> &hp_vec);
virtual void param_transform_multiply(Geom::Affine const& /*postmul*/, bool /*set*/);
+ void setFromOriginalD(bool from_original_d){ _from_original_d = from_original_d; };
sigc::signal <void> signal_path_pasted;
sigc::signal <void> signal_path_changed;
@@ -91,6 +93,7 @@ protected:
gchar * defvalue;
private:
+ bool _from_original_d;
bool _edit_button;
bool _copy_button;
bool _paste_button;