summaryrefslogtreecommitdiffstats
path: root/src/object/sp-polygon.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-polygon.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-polygon.h')
-rw-r--r--src/object/sp-polygon.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/object/sp-polygon.h b/src/object/sp-polygon.h
new file mode 100644
index 000000000..438fdf794
--- /dev/null
+++ b/src/object/sp-polygon.h
@@ -0,0 +1,35 @@
+#ifndef SEEN_SP_POLYGON_H
+#define SEEN_SP_POLYGON_H
+
+/*
+ * SVG <polygon> implementation
+ *
+ * Authors:
+ * Lauris Kaplinski <lauris@kaplinski.com>
+ *
+ * Copyright (C) 1999-2002 Lauris Kaplinski
+ * Copyright (C) 2000-2001 Ximian, Inc.
+ *
+ * Released under GNU GPL, read the file 'COPYING' for more information
+ */
+
+#include "sp-shape.h"
+
+#define SP_POLYGON(obj) (dynamic_cast<SPPolygon*>((SPObject*)obj))
+#define SP_IS_POLYGON(obj) (dynamic_cast<const SPPolygon*>((SPObject*)obj) != NULL)
+
+class SPPolygon : public SPShape {
+public:
+ SPPolygon();
+ virtual ~SPPolygon();
+
+ virtual void build(SPDocument *document, Inkscape::XML::Node *repr);
+ virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
+ virtual void set(unsigned int key, char const* value);
+ virtual char* description() const;
+};
+
+// made 'public' so that SPCurve can set it as friend:
+void sp_polygon_set(SPObject *object, unsigned int key, char const*value);
+
+#endif