summaryrefslogtreecommitdiffstats
path: root/src/attribute-rel-svg.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:50:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:50:49 +0000
commitc853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch)
tree7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /src/attribute-rel-svg.h
parentInitial commit. (diff)
downloadinkscape-upstream.tar.xz
inkscape-upstream.zip
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/attribute-rel-svg.h')
-rw-r--r--src/attribute-rel-svg.h61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/attribute-rel-svg.h b/src/attribute-rel-svg.h
new file mode 100644
index 0000000..9cd5718
--- /dev/null
+++ b/src/attribute-rel-svg.h
@@ -0,0 +1,61 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/** @file
+ * TODO: insert short description here
+ *//*
+ * Authors: see git history
+ *
+ * Copyright (C) 2018 Authors
+ * Released under GNU GPL v2+, read the file 'COPYING' for more information.
+ */
+#ifndef __SP_ATTRIBUTE_REL_SVG_H__
+#define __SP_ATTRIBUTE_REL_SVG_H__
+
+/*
+ * attribute-rel-svg.h
+ *
+ * Created on: Jul 25, 2011
+ * Author: abhishek
+ */
+
+#include <map>
+#include <set>
+#include <string>
+
+#include <glibmm/ustring.h>
+
+// This data structure stores the valid (element -> set of attributes) pair
+typedef std::map<Glib::ustring, std::set<Glib::ustring>> hashList;
+
+/*
+ * Utility class to check whether a combination of element and attribute
+ * is valid or not.
+ */
+class SPAttributeRelSVG
+{
+public:
+ static bool isSVGElement(Glib::ustring const &element);
+ static bool findIfValid(Glib::ustring const &attribute, Glib::ustring const &element);
+
+private:
+ SPAttributeRelSVG();
+ SPAttributeRelSVG(const SPAttributeRelSVG &) = delete;
+ SPAttributeRelSVG &operator=(const SPAttributeRelSVG &) = delete;
+ static SPAttributeRelSVG &getInstance();
+
+private:
+ static bool foundFile;
+ hashList attributesOfElements;
+};
+
+#endif /* __SP_ATTRIBUTE_REL_SVG_H__ */
+
+/*
+ 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:textwidth=99 :