Code

Merge from fe-moved
[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 "drop-shadow.h"
12 #include "snow.h"
14 namespace Inkscape {
15 namespace Extension {
16 namespace Internal {
17 namespace Filter {
20 void
21 Filter::filters_all (void )
22 {
23         // Here come the filters which are coded in C++ in order to present a parameters dialog
24         DropShadow::init();
25         DropGlow::init();
26         Snow::init();
28         // Here come the rest of the filters that are read from SVG files in share/filters and
29         // .config/Inkscape/filters
30         /* This should always be last, don't put stuff below this
31          * line. */
32         Filter::filters_all_files();
34         return;
35 }
37 }; /* namespace Filter */
38 }; /* namespace Internal */
39 }; /* namespace Extension */
40 }; /* namespace Inkscape */