bf5050ad1d626ae3f117cc1502b4e0d97e287a8d
[synfig.git] / synfig-core / trunk / 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)                             LAYER_ALIAS(Zoom,"Zoom")
84                 LAYER(Import)                   LAYER_ALIAS(Import,"Import")
85                 LAYER(Translate)                LAYER_ALIAS(Translate,"Translate")
86                 LAYER(SuperSample)              LAYER_ALIAS(SuperSample,"SuperSample")
87                 LAYER(Rotate)                   LAYER_ALIAS(Rotate,"Rotate")
88                 LAYER(Warp)
89                 LAYER(Julia)
90                 LAYER(InsideOut)
91                 LAYER(Mandelbrot)
92                 LAYER(Layer_Clamp)
93                 LAYER(Layer_Stretch)
94                 LAYER(XORPattern)               LAYER_ALIAS(XORPattern,"XORPattern")
95                 LAYER(Twirl)
96                 LAYER(Layer_Shade)
97                 LAYER(Layer_Bevel)
98                 LAYER(Layer_TimeLoop)
99                 LAYER(Layer_SphereDistort)
100         END_LAYERS
101 MODULE_INVENTORY_END