From 267299811df952d08324a39008f52c19641de9e0 Mon Sep 17 00:00:00 2001 From: Tavmjong Bah Date: Tue, 30 Jan 2018 09:33:01 +0100 Subject: Move classes derived from SPObject to own directory. A lot of header clean-up. --- src/object/sp-string.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/object/sp-string.h (limited to 'src/object/sp-string.h') 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 + +#include "sp-object.h" + +#define SP_STRING(obj) (dynamic_cast((SPObject*)obj)) +#define SP_IS_STRING(obj) (dynamic_cast((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 -- cgit v1.2.3