Code

Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in...
[inkscape.git] / src / display / nr-filter-tile.h
1 #ifndef __NR_FILTER_TILE_H__
2 #define __NR_FILTER_TILE_H__
4 /*
5  * feTile filter primitive renderer
6  *
7  * Authors:
8  *   Felipe CorrĂȘa da Silva Sanches <juca@members.fsf.org>
9  *
10  * Copyright (C) 2007 authors
11  *
12  * Released under GNU GPL, read the file 'COPYING' for more information
13  */
15 #include "display/nr-filter-primitive.h"
16 #include "display/nr-filter-slot.h"
17 #include "display/nr-filter-units.h"
18 #include "libnr/nr-rect-l.h"
20 namespace Inkscape {
21 namespace Filters {
23 class FilterTile : public FilterPrimitive {
24 public:
25     FilterTile();
26     static FilterPrimitive *create();
27     virtual ~FilterTile();
29     virtual int render(FilterSlot &slot, FilterUnits const &units);
30     virtual void area_enlarge(NRRectL &area, Geom::Matrix const &trans);
31     virtual FilterTraits get_input_traits();
32 };
34 } /* namespace Filters */
35 } /* namespace Inkscape */
37 #endif /* __NR_FILTER_TILE_H__ */
38 /*
39   Local Variables:
40   mode:c++
41   c-file-style:"stroustrup"
42   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
43   indent-tabs-mode:nil
44   fill-column:99
45   End:
46 */
47 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :