summaryrefslogtreecommitdiffstats
path: root/src/object/sp-font.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-font.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-font.h')
-rw-r--r--src/object/sp-font.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/object/sp-font.h b/src/object/sp-font.h
new file mode 100644
index 000000000..6e26a02b2
--- /dev/null
+++ b/src/object/sp-font.h
@@ -0,0 +1,46 @@
+#ifndef SP_FONT_H_SEEN
+#define SP_FONT_H_SEEN
+
+/*
+ * SVG <font> element implementation
+ *
+ * Authors:
+ * Felipe C. da S. Sanches <juca@members.fsf.org>
+ *
+ * Copyright (C) 2008 Felipe C. da S. Sanches
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include "sp-object.h"
+
+#define SP_FONT(obj) (dynamic_cast<SPFont*>((SPObject*)obj))
+#define SP_IS_FONT(obj) (dynamic_cast<const SPFont*>((SPObject*)obj) != NULL)
+
+class SPFont : public SPObject {
+public:
+ SPFont();
+ virtual ~SPFont();
+
+ double horiz_origin_x;
+ double horiz_origin_y;
+ double horiz_adv_x;
+ double vert_origin_x;
+ double vert_origin_y;
+ double vert_adv_y;
+
+protected:
+ virtual void build(SPDocument* doc, Inkscape::XML::Node* repr);
+ virtual void release();
+
+ virtual void child_added(Inkscape::XML::Node* child, Inkscape::XML::Node* ref);
+ virtual void remove_child(Inkscape::XML::Node* child);
+
+ virtual void set(unsigned int key, char const* value);
+
+ virtual void update(SPCtx* ctx, unsigned int flags);
+
+ virtual Inkscape::XML::Node* write(Inkscape::XML::Document* doc, Inkscape::XML::Node* repr, unsigned int flags);
+};
+
+#endif //#ifndef SP_FONT_H_SEEN