blob: 40fc5d8e940b0d87854be9a972c1677dba2cfc8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#ifndef SP_MESH_GRADIENT_H
#define SP_MESH_GRADIENT_H
/** \file
* SPMeshGradient: SVG <meshgradient> implementation.
*/
#include "svg/svg-length.h"
#include "sp-gradient.h"
#include "sp-mesh-gradient-fns.h"
class CMeshGradient;
/** Mesh gradient. */
class SPMeshGradient : public SPGradient {
public:
CMeshGradient* cmeshgradient;
SVGLength x; // Upper left corner of mesh
SVGLength y; // Upper right corner of mesh
};
/// The SPMeshGradient vtable.
struct SPMeshGradientClass {
SPGradientClass parent_class;
};
class CMeshGradient : public CGradient {
public:
CMeshGradient(SPMeshGradient* meshgradient);
virtual ~CMeshGradient();
virtual void build(SPDocument *document, Inkscape::XML::Node *repr);
virtual void set(unsigned key, gchar const *value);
virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags);
virtual cairo_pattern_t* pattern_new(cairo_t *ct, Geom::OptRect const &bbox, double opacity);
protected:
SPMeshGradient* spmeshgradient;
};
#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 :
|