Code

Filters. New customizable Poster effect (experimental).
[inkscape.git] / src / extension / internal / filter / filter-all.cpp
1 /*
2  * Copyright (C) 2008 Authors:
3  *   Ted Gould <ted@gould.cx>
4  *
5  * Released under GNU GPL, read the file 'COPYING' for more information
6  */
8 #include "filter.h"
10 /* Put your filter here */
11 #include "color.h"
12 #include "drop-shadow.h"
13 #include "snow.h"
14 #include "experimental.h"
16 namespace Inkscape {
17 namespace Extension {
18 namespace Internal {
19 namespace Filter {
22 void
23 Filter::filters_all (void )
24 {
25         // Here come the filters which are coded in C++ in order to present a parameters dialog
26     Duochrome::init();
27         DropShadow::init();
28         DropGlow::init();
29     ColorizableDropShadow::init();
30         Snow::init();
31     
32     // Experimental!
33     Posterize::init();
35         // Here come the rest of the filters that are read from SVG files in share/filters and
36         // .config/Inkscape/filters
37         /* This should always be last, don't put stuff below this
38          * line. */
39         Filter::filters_all_files();
41         return;
42 }
44 }; /* namespace Filter */
45 }; /* namespace Internal */
46 }; /* namespace Extension */
47 }; /* namespace Inkscape */