~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/filters/flood.h

  • Committer: Ted Gould
  • Date: 2008-11-21 05:24:08 UTC
  • Revision ID: ted@canonical.com-20081121052408-tilucis2pjrrpzxx
MergeĀ fromĀ fe-moved

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SP_FEFLOOD_H_SEEN
 
2
#define SP_FEFLOOD_H_SEEN
 
3
 
 
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
 */
 
15
 
 
16
#include "sp-filter.h"
 
17
#include "flood-fns.h"
 
18
 
 
19
#include "display/nr-filter.h"
 
20
#include "display/nr-filter-flood.h"
 
21
 
 
22
/* FeFlood base class */
 
23
class SPFeFloodClass;
 
24
 
 
25
struct SPFeFlood : public SPFilterPrimitive {
 
26
    /** FLOOD ATTRIBUTES HERE */
 
27
    guint32 color;
 
28
    double opacity;
 
29
};
 
30
 
 
31
struct SPFeFloodClass {
 
32
    SPFilterPrimitiveClass parent_class;
 
33
};
 
34
 
 
35
GType sp_feFlood_get_type();
 
36
 
 
37
 
 
38
#endif /* !SP_FEFLOOD_H_SEEN */
 
39
 
 
40
/*
 
41
  Local Variables:
 
42
  mode:c++
 
43
  c-file-style:"stroustrup"
 
44
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
45
  indent-tabs-mode:nil
 
46
  fill-column:99
 
47
  End:
 
48
*/
 
49
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :