summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-simplify.h
blob: 9eb3d15e9b5c5fc1daeb7ba96f1195ed7a85328a (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
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef INKSCAPE_LPE_SIMPLIFY_H
#define INKSCAPE_LPE_SIMPLIFY_H

/*
 * Inkscape::LPESimplify
 *
 * Released under GNU GPL v2+, 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);
    ~LPESimplify() override;
    LPESimplify(const LPESimplify &) = delete;
    LPESimplify &operator=(const LPESimplify &) = delete;

    void doEffect(SPCurve *curve) override;

    void doBeforeEffect (SPLPEItem const* lpeitem) override;

    virtual void generateHelperPathAndSmooth(Geom::PathVector &result);

    Gtk::Widget * newWidget() override;

    virtual void drawNode(Geom::Point p);

    virtual void drawHandle(Geom::Point p);

    virtual void drawHandleLine(Geom::Point p,Geom::Point p2);
    ScalarParam threshold;

  protected:
    void addCanvasIndicators(SPLPEItem const */*lpeitem*/, std::vector<Geom::PathVector> &hp_vec) override;

private:
    ScalarParam steps;
    ScalarParam smooth_angles;
    ScalarParam helper_size;
    ToggleButtonParam simplify_individual_paths;
    ToggleButtonParam simplify_just_coalesce;

    double radius_helper_nodes;
    Geom::PathVector hp;
    Geom::OptRect bbox;
};

}; //namespace LivePathEffect
}; //namespace Inkscape
#endif