summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-attach-path.h
blob: 1d6c590d1ed301fa4cc804d7de3eda64a577dcc9 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef INKSCAPE_LPE_ATTACH_PATH_H
#define INKSCAPE_LPE_ATTACH_PATH_H

/*
 * Inkscape::LPEAttachPath
 *
 * Copyright (C) Ted Janeczko 2012 <flutterguy317@gmail.com>
 *
 * 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 "live_effects/parameter/originalpath.h"
#include "live_effects/parameter/vector.h"
#include "live_effects/parameter/bool.h"
#include "live_effects/parameter/transformedpoint.h"

namespace Inkscape {
namespace LivePathEffect {

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

    virtual void doEffect (SPCurve * curve);
    virtual void resetDefaults(SPItem const * item);

private:
    LPEAttachPath(const LPEAttachPath&);
    LPEAttachPath& operator=(const LPEAttachPath&);

    Geom::Point curve_start_previous_origin;
    Geom::Point curve_end_previous_origin;
        
    OriginalPathParam start_path;
    ScalarParam start_path_position;
    TransformedPointParam start_path_curve_start;
    VectorParam start_path_curve_end;

    OriginalPathParam end_path;
    ScalarParam end_path_position;
    TransformedPointParam end_path_curve_start;
    VectorParam end_path_curve_end;
};

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

#endif