summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-jointype.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/live_effects/lpe-jointype.h')
-rw-r--r--src/live_effects/lpe-jointype.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/src/live_effects/lpe-jointype.h b/src/live_effects/lpe-jointype.h
new file mode 100644
index 0000000..5d5e20c
--- /dev/null
+++ b/src/live_effects/lpe-jointype.h
@@ -0,0 +1,58 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/* Authors:
+ * Liam P White
+ *
+ * Copyright (C) 2014 Authors
+ *
+ * Released under GNU GPL v2+, read the file COPYING for more information
+ */
+
+#ifndef INKSCAPE_LPE_JOINTYPE_H
+#define INKSCAPE_LPE_JOINTYPE_H
+
+#include "live_effects/effect.h"
+#include "live_effects/parameter/parameter.h"
+#include "live_effects/parameter/point.h"
+#include "live_effects/parameter/enum.h"
+
+namespace Inkscape {
+namespace LivePathEffect {
+
+class LPEJoinType : public Effect {
+public:
+ LPEJoinType(LivePathEffectObject *lpeobject);
+ ~LPEJoinType() override;
+
+ void doOnApply(SPLPEItem const* lpeitem) override;
+ void doOnRemove(SPLPEItem const* lpeitem) override;
+ void transform_multiply(Geom::Affine const &postmul, bool set) override;
+ Geom::PathVector doEffect_path (Geom::PathVector const & path_in) override;
+
+private:
+ LPEJoinType(const LPEJoinType&) = delete;
+ LPEJoinType& operator=(const LPEJoinType&) = delete;
+
+ ScalarParam line_width;
+ EnumParam<unsigned> linecap_type;
+ EnumParam<unsigned> linejoin_type;
+ //ScalarParam start_lean;
+ //ScalarParam end_lean;
+ ScalarParam miter_limit;
+ BoolParam attempt_force_join;
+};
+
+} //namespace LivePathEffect
+} //namespace Inkscape
+
+#endif
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8 :