summaryrefslogtreecommitdiffstats
path: root/src/object/sp-script.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/object/sp-script.cpp')
-rw-r--r--src/object/sp-script.cpp85
1 files changed, 85 insertions, 0 deletions
diff --git a/src/object/sp-script.cpp b/src/object/sp-script.cpp
new file mode 100644
index 0000000..7daaa5c
--- /dev/null
+++ b/src/object/sp-script.cpp
@@ -0,0 +1,85 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/*
+ * SVG <script> implementation
+ *
+ * Authors:
+ * Felipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>
+ * Jon A. Cruz <jon@joncruz.org>
+ * Abhishek Sharma
+ *
+ * Copyright (C) 2008 authors
+ *
+ * Released under GNU GPL v2+, read the file 'COPYING' for more information.
+ */
+
+#include "sp-script.h"
+#include "attributes.h"
+
+SPScript::SPScript() : SPObject() {
+ this->xlinkhref = nullptr;
+}
+
+SPScript::~SPScript() = default;
+
+void SPScript::build(SPDocument* doc, Inkscape::XML::Node* repr) {
+ SPObject::build(doc, repr);
+
+ //Read values of key attributes from XML nodes into object.
+ this->readAttr(SPAttr::XLINK_HREF);
+
+ doc->addResource("script", this);
+}
+
+/**
+ * Reads the Inkscape::XML::Node, and initializes SPScript variables. For this to get called,
+ * our name must be associated with a repr via "sp_object_type_register". Best done through
+ * sp-object-repr.cpp's repr_name_entries array.
+ */
+
+void SPScript::release() {
+ if (this->document) {
+ // Unregister ourselves
+ this->document->removeResource("script", this);
+ }
+
+ SPObject::release();
+}
+
+void SPScript::update(SPCtx* /*ctx*/, unsigned int /*flags*/) {
+}
+
+
+void SPScript::modified(unsigned int /*flags*/) {
+}
+
+
+void SPScript::set(SPAttr key, const gchar* value) {
+ switch (key) {
+ case SPAttr::XLINK_HREF:
+ if (this->xlinkhref) {
+ g_free(this->xlinkhref);
+ }
+
+ this->xlinkhref = g_strdup(value);
+ this->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG);
+ break;
+ default:
+ SPObject::set(key, value);
+ break;
+ }
+}
+
+Inkscape::XML::Node* SPScript::write(Inkscape::XML::Document* /*doc*/, Inkscape::XML::Node* repr, guint /*flags*/) {
+ return repr;
+}
+
+/*
+ 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 :