summaryrefslogtreecommitdiffstats
path: root/src/sp-mesh-gradient.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sp-mesh-gradient.h')
-rw-r--r--src/sp-mesh-gradient.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/sp-mesh-gradient.h b/src/sp-mesh-gradient.h
new file mode 100644
index 000000000..a221554a3
--- /dev/null
+++ b/src/sp-mesh-gradient.h
@@ -0,0 +1,43 @@
+#ifndef SP_MESH_GRADIENT_H
+#define SP_MESH_GRADIENT_H
+
+/** \file
+ * SPMeshGradient: SVG <meshgradient> implementation.
+ */
+
+#include "svg/svg-length.h"
+#include "sp-gradient.h"
+
+#define SP_MESHGRADIENT(obj) (dynamic_cast<SPMeshGradient*>((SPObject*)obj))
+#define SP_IS_MESHGRADIENT(obj) (dynamic_cast<const SPMeshGradient*>((SPObject*)obj) != NULL)
+
+/** Mesh gradient. */
+class SPMeshGradient : public SPGradient {
+public:
+ SPMeshGradient();
+ virtual ~SPMeshGradient();
+
+ SVGLength x; // Upper left corner of meshgradient
+ SVGLength y; // Upper right corner of mesh
+ SPMeshType type;
+ bool type_set;
+ virtual cairo_pattern_t* pattern_new(cairo_t *ct, Geom::OptRect const &bbox, double opacity);
+
+protected:
+ virtual void build(SPDocument *document, Inkscape::XML::Node *repr);
+ virtual void set(unsigned key, char const *value);
+ virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, unsigned int flags);
+};
+
+#endif /* !SP_MESH_GRADIENT_H */
+
+/*
+ Local Variables:
+ mode:c++
+ c-file-style:"stroustrup"
+ c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+ indent-tabs-mode:nil
+ fill-column:99
+ End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :