Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-core / tags / 0.61.08 / src / modules / lyr_std / main.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file lyr_std/main.cpp
3 **      \brief Template Header
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007 Chris Moore
10 **
11 **      This package is free software; you can redistribute it and/or
12 **      modify it under the terms of the GNU General Public License as
13 **      published by the Free Software Foundation; either version 2 of
14 **      the License, or (at your option) any later version.
15 **
16 **      This package is distributed in the hope that it will be useful,
17 **      but WITHOUT ANY WARRANTY; without even the implied warranty of
18 **      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 **      General Public License for more details.
20 **      \endlegal
21 **
22 ** === N O T E S ===========================================================
23 **
24 ** ========================================================================= */
25
26 /* === H E A D E R S ======================================================= */
27
28 #define SYNFIG_MODULE
29
30 #ifdef USING_PCH
31 #       include "pch.h"
32 #else
33 #ifdef HAVE_CONFIG_H
34 #       include <config.h>
35 #endif
36
37 #include <synfig/module.h>
38 #include <synfig/string.h>
39
40 #include "zoom.h"
41 //#include "blur.h"
42 #include "import.h"
43 #include "translate.h"
44 #include "rotate.h"
45 #include "clamp.h"
46 #include "stretch.h"
47
48 //#include "colorcorrect.h"
49
50 #include "supersample.h"
51
52 #include "mandelbrot.h"
53 #include "julia.h"
54 #include "insideout.h"
55 #include "xorpattern.h"
56 #include "twirl.h"
57 #include "sphere_distort.h"
58
59
60
61 #include "shade.h"
62 #include "bevel.h"
63 //#include "halftone2.h"
64
65 //#include "radialblur.h"
66
67 #include "warp.h"
68 #include "timeloop.h"
69
70 #endif
71
72 /* === E N T R Y P O I N T ================================================= */
73
74 MODULE_DESC_BEGIN(liblyr_std)
75         MODULE_NAME("Standard Layers")
76         MODULE_DESCRIPTION("Provides a basic set of standard layers")
77         MODULE_AUTHOR("Robert B. Quattlebaum")
78         MODULE_VERSION("1.0")
79         MODULE_COPYRIGHT(SYNFIG_COPYRIGHT)
80 MODULE_DESC_END
81
82 MODULE_INVENTORY_BEGIN(liblyr_std)
83         BEGIN_LAYERS
84                 LAYER(Zoom)                             LAYER_ALIAS(Zoom,"Zoom")
85                 LAYER(Import)                   LAYER_ALIAS(Import,"Import")
86                 LAYER(Translate)                LAYER_ALIAS(Translate,"Translate")
87                 LAYER(SuperSample)              LAYER_ALIAS(SuperSample,"SuperSample")
88                 LAYER(Rotate)                   LAYER_ALIAS(Rotate,"Rotate")
89                 LAYER(Warp)
90                 LAYER(Julia)
91                 LAYER(InsideOut)
92                 LAYER(Mandelbrot)
93                 LAYER(Layer_Clamp)
94                 LAYER(Layer_Stretch)
95                 LAYER(XORPattern)               LAYER_ALIAS(XORPattern,"XORPattern")
96                 LAYER(Twirl)
97                 LAYER(Layer_Shade)
98                 LAYER(Layer_Bevel)
99                 LAYER(Layer_TimeLoop)
100                 LAYER(Layer_SphereDistort)
101         END_LAYERS
102 MODULE_INVENTORY_END