diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:29:01 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:29:01 +0000 |
commit | 35a96bde514a8897f6f0fcc41c5833bf63df2e2a (patch) | |
tree | 657d15a03cc46bd099fc2c6546a7a4ad43815d9f /src/live_effects/lpe-clone-original.h | |
parent | Initial commit. (diff) | |
download | inkscape-35a96bde514a8897f6f0fcc41c5833bf63df2e2a.tar.xz inkscape-35a96bde514a8897f6f0fcc41c5833bf63df2e2a.zip |
Adding upstream version 1.0.2.upstream/1.0.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/live_effects/lpe-clone-original.h')
-rw-r--r-- | src/live_effects/lpe-clone-original.h | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/live_effects/lpe-clone-original.h b/src/live_effects/lpe-clone-original.h new file mode 100644 index 0000000..7266f06 --- /dev/null +++ b/src/live_effects/lpe-clone-original.h @@ -0,0 +1,58 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +#ifndef INKSCAPE_LPE_CLONE_ORIGINAL_H +#define INKSCAPE_LPE_CLONE_ORIGINAL_H + +/* + * Inkscape::LPECloneOriginal + * + * Copyright (C) Johan Engelen 2012 <j.b.c.engelen@alumnus.utwente.nl> + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ +#include "live_effects/effect.h" +#include "live_effects/parameter/enum.h" +#include "live_effects/parameter/originalitem.h" +#include "live_effects/parameter/text.h" +#include "live_effects/lpegroupbbox.h" + +#include <sigc++/sigc++.h> + +namespace Inkscape { +namespace LivePathEffect { + +enum Clonelpemethod { CLM_NONE, CLM_D, CLM_ORIGINALD, CLM_BSPLINESPIRO, CLM_END }; + +class LPECloneOriginal : public Effect, GroupBBoxEffect { +public: + LPECloneOriginal(LivePathEffectObject *lpeobject); + ~LPECloneOriginal() override; + void doEffect (SPCurve * curve) override; + void doBeforeEffect (SPLPEItem const* lpeitem) override; + void cloneAttrbutes(SPObject *origin, SPObject *dest, const gchar * attributes, const gchar * css_properties, bool init); + void modified(SPObject */*obj*/, guint /*flags*/); + Gtk::Widget *newWidget() override; + void syncOriginal(); + void start_listening(); + void quit_listening(); + void lpeitem_deleted(SPObject */*deleted*/); + +private: + OriginalItemParam linkeditem; + EnumParam<Clonelpemethod> method; + TextParam attributes; + TextParam css_properties; + BoolParam allow_transforms; + Glib::ustring old_attributes; + Glib::ustring old_css_properties; + Glib::ustring linked; + bool listening; + bool sync; + sigc::connection deleted_connection; + LPECloneOriginal(const LPECloneOriginal&) = delete; + LPECloneOriginal& operator=(const LPECloneOriginal&) = delete; +}; + +}; //namespace LivePathEffect +}; //namespace Inkscape + +#endif |