Code

Color Matrix Filter:
[inkscape.git] / src / sp-feimage.h
1 #ifndef SP_FEIMAGE_H_SEEN
2 #define SP_FEIMAGE_H_SEEN
4 /** \file
5  * SVG <feImage> implementation, see sp-feImage.cpp.
6  */
7 /*
8  * Authors:
9  *   Felipe CorrĂȘa da Silva Sanches <felipe.sanches@gmail.com>
10  *   Hugo Rodrigues <haa.rodrigues@gmail.com>
11  *
12  * Copyright (C) 2006 Hugo Rodrigues
13  *
14  * Released under GNU GPL, read the file 'COPYING' for more information
15  */
17 #include "sp-filter.h"
18 #include "sp-feimage-fns.h"
19 #include "svg/svg-length.h"
21 /* FeImage base class */
22 class SPFeImageClass;
24 struct SPFeImage : public SPFilterPrimitive {
25     /** IMAGE ATTRIBUTES HERE */
26     /*
27         Apparently there's no attribute to keep here 
28         since 'in' and 'xlink:href' are common filter attributes.
29         --Juca
30     */
31     SVGLength x, y, height, width;
32 };
34 struct SPFeImageClass {
35     SPFilterPrimitiveClass parent_class;
36 };
38 GType sp_feImage_get_type();
41 #endif /* !SP_FEIMAGE_H_SEEN */
43 /*
44   Local Variables:
45   mode:c++
46   c-file-style:"stroustrup"
47   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
48   indent-tabs-mode:nil
49   fill-column:99
50   End:
51 */
52 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :