blob: 4fd00180d553ca11ec10794a9c716e5fadfc5ca5 (
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
|
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Boolean operation live path effect
*
* Copyright (C) 2016 Michael Soegtrop
*
* Released under GNU GPL v2+, read the file 'COPYING' for more information.
*/
#ifndef INKSCAPE_LPE_BOOL_H
#define INKSCAPE_LPE_BOOL_H
#include "live_effects/effect.h"
#include "live_effects/parameter/parameter.h"
#include "live_effects/parameter/originalpath.h"
#include "live_effects/parameter/bool.h"
#include "live_effects/parameter/enum.h"
#include "livarot/LivarotDefs.h"
namespace Inkscape {
namespace LivePathEffect {
class LPEBool : public Effect {
public:
LPEBool(LivePathEffectObject *lpeobject);
~LPEBool() override;
void doEffect(SPCurve *curve) override;
void doBeforeEffect(SPLPEItem const *lpeitem) override;
void resetDefaults(SPItem const *item) override;
void doOnVisibilityToggled(SPLPEItem const * /*lpeitem*/) override;
void doOnRemove(SPLPEItem const * /*lpeitem*/) override;
enum bool_op_ex {
bool_op_ex_union = bool_op_union,
bool_op_ex_inters = bool_op_inters,
bool_op_ex_diff = bool_op_diff,
bool_op_ex_symdiff = bool_op_symdiff,
bool_op_ex_cut = bool_op_cut,
bool_op_ex_slice = bool_op_slice,
bool_op_ex_slice_inside, // like bool_op_slice, but leaves only the contour pieces inside of the cut path
bool_op_ex_slice_outside, // like bool_op_slice, but leaves only the contour pieces outside of the cut path
bool_op_ex_count
};
inline friend bool_op to_bool_op(bool_op_ex val)
{
assert(val <= bool_op_ex_slice);
return (bool_op) val;
}
private:
LPEBool(const LPEBool &) = delete;
LPEBool &operator=(const LPEBool &) = delete;
OriginalPathParam operand_path;
EnumParam<bool_op_ex> bool_operation;
EnumParam<fill_typ> fill_type_this;
EnumParam<fill_typ> fill_type_operand;
BoolParam hide_linked;
BoolParam swap_operands;
BoolParam rmv_inner;
SPItem *operand;
size_t contdown;
};
}; //namespace LivePathEffect
}; //namespace Inkscape
#endif
|