Code

Filters. New Customizable Colored Drop Shadow filter (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 "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     ColorizableDropShadow::init();
27         Snow::init();
29         // Here come the rest of the filters that are read from SVG files in share/filters and
30         // .config/Inkscape/filters
31         /* This should always be last, don't put stuff below this
32          * line. */
33         Filter::filters_all_files();
35         return;
36 }
38 }; /* namespace Filter */
39 }; /* namespace Internal */
40 }; /* namespace Extension */
41 }; /* namespace Inkscape */