summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/originalsatellite.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/live_effects/parameter/originalsatellite.h')
-rw-r--r--src/live_effects/parameter/originalsatellite.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/live_effects/parameter/originalsatellite.h b/src/live_effects/parameter/originalsatellite.h
new file mode 100644
index 0000000..683f66d
--- /dev/null
+++ b/src/live_effects/parameter/originalsatellite.h
@@ -0,0 +1,39 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+#ifndef INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINAL_ITEM_H
+#define INKSCAPE_LIVEPATHEFFECT_PARAMETER_ORIGINAL_ITEM_H
+
+/*
+ * Inkscape::LiveItemEffectParameters
+ *
+ * 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/parameter/satellite.h"
+
+namespace Inkscape {
+
+namespace LivePathEffect {
+
+class OriginalSatelliteParam : public SatelliteParam
+{
+public:
+ OriginalSatelliteParam(const Glib::ustring &label, const Glib::ustring &tip, const Glib::ustring &key,
+ Inkscape::UI::Widget::Registry *wr, Effect *effect);
+ ~OriginalSatelliteParam() override;
+ Gtk::Widget * param_newWidget() override;
+ ParamType paramType() const override { return ParamType::ORIGINAL_SATELLITE; };
+protected:
+ void on_select_original_button_click();
+
+private:
+ OriginalSatelliteParam(const OriginalSatelliteParam &) = delete;
+ OriginalSatelliteParam &operator=(const OriginalSatelliteParam &) = delete;
+};
+
+} //namespace LivePathEffect
+
+} //namespace Inkscape
+
+#endif