Code

Filters. Experimental duochrome version 2 (new structure, presence parameters and...
[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     Duochrome2::init();
28         DropShadow::init();
29         DropGlow::init();
30     ColorizableDropShadow::init();
31         Snow::init();
32     
33     // Experimental!
34     Posterize::init();
36         // Here come the rest of the filters that are read from SVG files in share/filters and
37         // .config/Inkscape/filters
38         /* This should always be last, don't put stuff below this
39          * line. */
40         Filter::filters_all_files();
42         return;
43 }
45 }; /* namespace Filter */
46 }; /* namespace Internal */
47 }; /* namespace Extension */
48 }; /* namespace Inkscape */