summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-spiro.h
blob: 7256665a2ea3254ea465bf89c9093c26ef2dbb9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef INKSCAPE_LPE_SPIRO_H
#define INKSCAPE_LPE_SPIRO_H

/*
 * Inkscape::LPESpiro
 *
 * Released under GNU GPL, read the file 'COPYING' for more information
 */

#include "live_effects/effect.h"
#include "live_effects/parameter/parameter.h"
#include "live_effects/parameter/point.h"
#include "ui/widget/registered-widget.h"



namespace Inkscape {
namespace LivePathEffect {

class LPESpiro : public Effect {
public:
    LPESpiro(LivePathEffectObject *lpeobject);
    virtual ~LPESpiro();

    virtual LPEPathFlashType pathFlashType() { return SUPPRESS_FLASH; }

    virtual void setup_nodepath(Inkscape::NodePath::Path *np);
    virtual void doEffect(SPCurve * curve);

private:
    LPESpiro(const LPESpiro&);
    LPESpiro& operator=(const LPESpiro&);
};

}; //namespace LivePathEffect
}; //namespace Inkscape

#endif