diff options
Diffstat (limited to 'src/object/sp-string.h')
| -rw-r--r-- | src/object/sp-string.h | 31 |
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 |
