moreupdates
[synfig.git] / synfig-core / trunk / src / modules / mod_filter / halftone2.h
index 8ccb380..9b65b48 100644 (file)
@@ -1,4 +1,4 @@
-/* === S I N F G =========================================================== */
+/* === S Y N F I G ========================================================= */
 /*!    \file halftone2.h
 **     \brief Template Header
 **
 
 /* === S T A R T =========================================================== */
 
-#ifndef __SINFG_HALFTONE2_H
-#define __SINFG_HALFTONE2_H
+#ifndef __SYNFIG_HALFTONE2_H
+#define __SYNFIG_HALFTONE2_H
 
 /* === H E A D E R S ======================================================= */
 
-#include <sinfg/vector.h>
-#include <sinfg/valuenode.h>
-#include <sinfg/layer_composite.h>
-#include <sinfg/time.h>
-#include <sinfg/angle.h>
+#include <synfig/vector.h>
+#include <synfig/valuenode.h>
+#include <synfig/layer_composite.h>
+#include <synfig/time.h>
+#include <synfig/angle.h>
 #include "halftone.h"
 
 /* === M A C R O S ========================================================= */
 
 /* === C L A S S E S & S T R U C T S ======================================= */
 
-class Halftone2 : public sinfg::Layer_Composite
+class Halftone2 : public synfig::Layer_Composite
 {
-       SINFG_LAYER_MODULE_EXT
+       SYNFIG_LAYER_MODULE_EXT
 
 private:
 
        Halftone halftone;
-       sinfg::Color    color_dark;
-       sinfg::Color    color_light;
+       synfig::Color   color_dark;
+       synfig::Color   color_light;
 
-       sinfg::Color color_func(const sinfg::Point &x, float supersample,const sinfg::Color &under_color)const;
+       synfig::Color color_func(const synfig::Point &x, float supersample,const synfig::Color &under_color)const;
 
-       float calc_supersample(const sinfg::Point &x, float pw,float ph)const;
+       float calc_supersample(const synfig::Point &x, float pw,float ph)const;
 
-       //float halftone_func(sinfg::Point x)const;
+       //float halftone_func(synfig::Point x)const;
 
 public:
        Halftone2();
        
-       virtual bool set_param(const sinfg::String &param, const sinfg::ValueBase &value);
-       virtual sinfg::ValueBase get_param(const sinfg::String &param)const;
-       virtual sinfg::Color get_color(sinfg::Context context, const sinfg::Point &pos)const;
-       virtual bool accelerated_render(sinfg::Context context,sinfg::Surface *surface,int quality, const sinfg::RendDesc &renddesc, sinfg::ProgressCallback *cb)const;
-       sinfg::Layer::Handle hit_check(sinfg::Context context, const sinfg::Point &point)const; 
+       virtual bool set_param(const synfig::String &param, const synfig::ValueBase &value);
+       virtual synfig::ValueBase get_param(const synfig::String &param)const;
+       virtual synfig::Color get_color(synfig::Context context, const synfig::Point &pos)const;
+       virtual bool accelerated_render(synfig::Context context,synfig::Surface *surface,int quality, const synfig::RendDesc &renddesc, synfig::ProgressCallback *cb)const;
+       synfig::Layer::Handle hit_check(synfig::Context context, const synfig::Point &point)const;      
 
        virtual Vocab get_param_vocab()const;
 };