From e4df289bd436daf43602c3bac2a7628f45b789c8 Mon Sep 17 00:00:00 2001 From: Maximilian Albert Date: Sun, 18 May 2008 21:02:43 +0000 Subject: Add a function doOnApply() for LPEs which is executed once when the effect is applied to an item (contrary to doBeforeEffect() which is executed, e.g., each time a parameter changes (bzr r5698) --- src/live_effects/effect.cpp | 6 ++++++ src/live_effects/effect.h | 2 ++ 2 files changed, 8 insertions(+) (limited to 'src/live_effects') diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp index 9f74af3d9..1d4481415 100644 --- a/src/live_effects/effect.cpp +++ b/src/live_effects/effect.cpp @@ -162,6 +162,12 @@ Effect::effectType() { return lpeobj->effecttype; } +void +Effect::doOnApply (SPLPEItem */*lpeitem*/) +{ + // This is performed once when the effect is freshly applied to a path +} + void Effect::doBeforeEffect (SPLPEItem */*lpeitem*/) { diff --git a/src/live_effects/effect.h b/src/live_effects/effect.h index 496d4cbdf..b5c1d6aeb 100644 --- a/src/live_effects/effect.h +++ b/src/live_effects/effect.h @@ -83,6 +83,8 @@ public: EffectType effectType (); + virtual void doOnApply (SPLPEItem *lpeitem); + virtual void doBeforeEffect (SPLPEItem *lpeitem); virtual void doEffect (SPCurve * curve); -- cgit v1.2.3