blob: fb0c39fb0aaf256144d943cb2eeebc2f5b225bbc (
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
// SPDX-License-Identifier: GPL-2.0-or-later
#ifndef INKSCAPE_LPE_MIRROR_SYMMETRY_H
#define INKSCAPE_LPE_MIRROR_SYMMETRY_H
/** \file
* LPE <mirror_symmetry> implementation: mirrors a path with respect to a given line.
*/
/*
* Authors:
* Maximilian Albert
* Johan Engelen
* Jabiertxof
*
* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
* Copyright (C) Maximilin Albert 2008 <maximilian.albert@gmail.com>
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#include "live_effects/effect.h"
#include "live_effects/lpegroupbbox.h"
#include "live_effects/lpeobject-reference.h"
#include "live_effects/lpeobject.h"
#include "live_effects/parameter/enum.h"
#include "live_effects/parameter/parameter.h"
#include "live_effects/parameter/point.h"
#include "live_effects/parameter/satellitearray.h"
#include "live_effects/parameter/text.h"
namespace Inkscape {
namespace LivePathEffect {
enum ModeType {
MT_V,
MT_H,
MT_FREE,
MT_X,
MT_Y,
MT_END
};
class LPEMirrorSymmetry : public Effect, GroupBBoxEffect {
public:
LPEMirrorSymmetry(LivePathEffectObject *lpeobject);
~LPEMirrorSymmetry() override;
void doOnApply (SPLPEItem const* lpeitem) override;
void doBeforeEffect (SPLPEItem const* lpeitem) override;
void doAfterEffect (SPLPEItem const* lpeitem, SPCurve *curve) override;
bool doOnOpen(SPLPEItem const * /*lpeitem*/) override;
Geom::PathVector doEffect_path (Geom::PathVector const & path_in) override;
void doOnRemove (SPLPEItem const* /*lpeitem*/) override;
void doOnVisibilityToggled(SPLPEItem const* /*lpeitem*/) override;
Gtk::Widget * newWidget() override;
void cloneStyle(SPObject *orig, SPObject *dest);
void toMirror(Geom::Affine transform);
void cloneD(SPObject *orig, SPObject *dest);
Inkscape::XML::Node * createPathBase(SPObject *elemref);
void centerVert();
void centerHoriz();
BoolParam split_items;
protected:
void addCanvasIndicators(SPLPEItem const *lpeitem, std::vector<Geom::PathVector> &hp_vec) override;
private:
SatelliteArrayParam lpesatellites;
EnumParam<ModeType> mode;
BoolParam discard_orig_path;
BoolParam fuse_paths;
BoolParam oposite_fuse;
BoolParam split_open;
BoolParam link_styles;
PointParam start_point;
PointParam end_point;
PointParam center_point;
Geom::Point previous_center;
SPObject *container;
bool reset;
bool prev_split = false;
bool prev_discard_orig_path = false;
bool center_vert;
bool center_horiz;
LPEMirrorSymmetry(const LPEMirrorSymmetry&) = delete;
LPEMirrorSymmetry& operator=(const LPEMirrorSymmetry&) = delete;
};
} //namespace LivePathEffect
} //namespace Inkscape
#endif
|