Code

f386e2cd47f56b1509fa5e9904e6e30d42e1cb20
[inkscape.git] / src / filters / flood.h
1 #ifndef SP_FEFLOOD_H_SEEN
2 #define SP_FEFLOOD_H_SEEN
4 /** \file
5  * SVG <feFlood> implementation, see Flood.cpp.
6  */
7 /*
8  * Authors:
9  *   Hugo Rodrigues <haa.rodrigues@gmail.com>
10  *
11  * Copyright (C) 2006 Hugo Rodrigues
12  *
13  * Released under GNU GPL, read the file 'COPYING' for more information
14  */
16 #include "sp-filter.h"
17 #include "flood-fns.h"
18 #include "svg/svg-icc-color.h"
20 #include "display/nr-filter.h"
21 #include "display/nr-filter-flood.h"
23 /* FeFlood base class */
24 class SPFeFloodClass;
26 struct SPFeFlood : public SPFilterPrimitive {
27     /** FLOOD ATTRIBUTES HERE */
28     guint32 color;
29     SVGICCColor *icc;
30     double opacity;
31 };
33 struct SPFeFloodClass {
34     SPFilterPrimitiveClass parent_class;
35 };
37 GType sp_feFlood_get_type();
40 #endif /* !SP_FEFLOOD_H_SEEN */
42 /*
43   Local Variables:
44   mode:c++
45   c-file-style:"stroustrup"
46   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
47   indent-tabs-mode:nil
48   fill-column:99
49   End:
50 */
51 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :