summaryrefslogtreecommitdiffstats
path: root/src/live_effects/parameter/hidden.cpp
diff options
context:
space:
mode:
authorJabiertxof <jtx@jtx>2017-05-06 21:01:40 +0000
committerJabiertxof <jtx@jtx>2017-05-06 21:01:40 +0000
commit8c9030f8eb348b09b0111247522a0c5e2aed6ce8 (patch)
tree915303c1b9e70cff20329dadd9c9132280d625ce /src/live_effects/parameter/hidden.cpp
parentAdd improvement pointed in IRC by Ede_123 to allow defaultables parametes on ... (diff)
downloadinkscape-8c9030f8eb348b09b0111247522a0c5e2aed6ce8.tar.gz
inkscape-8c9030f8eb348b09b0111247522a0c5e2aed6ce8.zip
Add missing files
(bzr r15669)
Diffstat (limited to 'src/live_effects/parameter/hidden.cpp')
-rw-r--r--src/live_effects/parameter/hidden.cpp86
1 files changed, 86 insertions, 0 deletions
diff --git a/src/live_effects/parameter/hidden.cpp b/src/live_effects/parameter/hidden.cpp
new file mode 100644
index 000000000..2f218847a
--- /dev/null
+++ b/src/live_effects/parameter/hidden.cpp
@@ -0,0 +1,86 @@
+/*
+ * Copyright (C) jabiertxof 2017 <jabier.arraiza@marker.es>
+ * Copyright (C) Maximilian Albert 2008 <maximilian.albert@gmail.com>
+ *
+ * Authors:
+ * Jabiertxof
+ * Maximilian Albert
+ * Johan Engelen
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+
+#include "live_effects/parameter/hidden.h"
+#include "live_effects/effect.h"
+#include "svg/svg.h"
+#include "svg/stringstream.h"
+
+namespace Inkscape {
+
+namespace LivePathEffect {
+
+HiddenParam::HiddenParam( const Glib::ustring& label, const Glib::ustring& tip,
+ const Glib::ustring& key, Inkscape::UI::Widget::Registry* wr,
+ Effect* effect, const Glib::ustring default_value )
+ : Parameter(label, tip, key, wr, effect),
+ value(default_value),
+ defvalue(default_value)
+{
+}
+
+void
+HiddenParam::param_set_default()
+{
+ param_setValue(defvalue);
+}
+
+void
+HiddenParam::param_update_default(const gchar * default_value)
+{
+ defvalue = (Glib::ustring)default_value;
+}
+
+
+bool
+HiddenParam::param_readSVGValue(const gchar * strvalue)
+{
+ param_setValue(strvalue);
+ return true;
+}
+
+gchar *
+HiddenParam::param_getSVGValue() const
+{
+ Inkscape::SVGOStringStream os;
+ os << value;
+ gchar * str = g_strdup(os.str().c_str());
+ return str;
+}
+
+Gtk::Widget *
+HiddenParam::param_newWidget()
+{
+ return NULL;
+}
+
+void
+HiddenParam::param_setValue(const Glib::ustring newvalue)
+{
+ value = newvalue;
+}
+
+} /* namespace LivePathEffect */
+
+} /* namespace Inkscape */
+
+/*
+ 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 :