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"
21 #include "uri-references.h"
23 /* FeImage base class */
24 class SPFeImageClass;
26 struct SPFeImage : public SPFilterPrimitive {
27 /** IMAGE ATTRIBUTES HERE */
28 gchar *href;
29 SVGLength x, y, height, width;
30 SPDocument *document;
31 bool from_element;
32 SPItem* SVGElem;
33 Inkscape::URIReference* SVGElemRef;
34 sigc::connection _modified_connection;
35 };
37 struct SPFeImageClass {
38 SPFilterPrimitiveClass parent_class;
39 };
41 GType sp_feImage_get_type();
44 #endif /* !SP_FEIMAGE_H_SEEN */
46 /*
47 Local Variables:
48 mode:c++
49 c-file-style:"stroustrup"
50 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
51 indent-tabs-mode:nil
52 fill-column:99
53 End:
54 */
55 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :