summaryrefslogtreecommitdiffstats
path: root/src/object/sp-string.h
diff options
context:
space:
mode:
authorTavmjong Bah <tavmjong@free.fr>2018-01-30 08:33:01 +0000
committerTavmjong Bah <tavmjong@free.fr>2018-01-30 08:33:01 +0000
commit267299811df952d08324a39008f52c19641de9e0 (patch)
tree28fef736a52cb7a72119d119be8eb663ad20a77f /src/object/sp-string.h
parentTranslations: update inkscape.pot (diff)
downloadinkscape-267299811df952d08324a39008f52c19641de9e0.tar.gz
inkscape-267299811df952d08324a39008f52c19641de9e0.zip
Move classes derived from SPObject to own directory.
A lot of header clean-up.
Diffstat (limited to 'src/object/sp-string.h')
-rw-r--r--src/object/sp-string.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/object/sp-string.h b/src/object/sp-string.h
new file mode 100644
index 000000000..b80b4b8bf
--- /dev/null
+++ b/src/object/sp-string.h
@@ -0,0 +1,31 @@
+#ifndef SEEN_SP_STRING_H
+#define SEEN_SP_STRING_H
+
+/*
+ * string elements
+ * extracted from sp-text
+ */
+
+#include <glibmm/ustring.h>
+
+#include "sp-object.h"
+
+#define SP_STRING(obj) (dynamic_cast<SPString*>((SPObject*)obj))
+#define SP_IS_STRING(obj) (dynamic_cast<const SPString*>((SPObject*)obj) != NULL)
+
+class SPString : public SPObject {
+public:
+ SPString();
+ virtual ~SPString();
+
+ Glib::ustring string;
+
+ virtual void build(SPDocument* doc, Inkscape::XML::Node* repr);
+ virtual void release();
+
+ virtual void read_content();
+
+ virtual void update(SPCtx* ctx, unsigned int flags);
+};
+
+#endif