blob: 6acf2f2d4e3bd5ae8c3976337f0fd961d4dc668c (
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
53
54
55
56
57
58
59
|
#ifndef INKSCAPE_LPE_SIMPLIFY_H
#define INKSCAPE_LPE_SIMPLIFY_H
/*
* Inkscape::LPESimplify
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/effect.h"
#include "live_effects/parameter/togglebutton.h"
#include "live_effects/lpegroupbbox.h"
namespace Inkscape {
namespace LivePathEffect {
class LPESimplify : public Effect , GroupBBoxEffect{
public:
LPESimplify(LivePathEffectObject *lpeobject);
virtual ~LPESimplify();
virtual void doEffect(SPCurve *curve);
virtual void doBeforeEffect (SPLPEItem const* lpeitem);
virtual void generateHelperPath(Geom::PathVector result);
virtual Gtk::Widget * newWidget();
virtual void drawNode(Geom::Point p);
virtual void drawHandle(Geom::Point p);
virtual void drawHandleLine(Geom::Point p,Geom::Point p2);
protected:
void addCanvasIndicators(SPLPEItem const */*lpeitem*/, std::vector<Geom::PathVector> &hp_vec);
private:
ScalarParam steps;
ScalarParam threshold;
ScalarParam helper_size;
ToggleButtonParam nodes;
ToggleButtonParam handles;
ToggleButtonParam simplifyindividualpaths;
ToggleButtonParam simplifyJustCoalesce;
Geom::PathVector hp;
Geom::OptRect bbox;
LPESimplify(const LPESimplify &);
LPESimplify &operator=(const LPESimplify &);
};
}; //namespace LivePathEffect
}; //namespace Inkscape
#endif
|