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