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