Code

d66a4fb770594608fc6241213512df86a077fd42
[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"
20 #include "sp-item.h"
22 /* FeImage base class */
23 class SPFeImageClass;
25 struct SPFeImage : public SPFilterPrimitive {
26     /** IMAGE ATTRIBUTES HERE */
27     gchar *href;
28     SVGLength x, y, height, width;
29     SPDocument *document;
30     bool from_element;
31     SPItem* SVGElem;
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 :