Allow static option for the Blur Layer parameters
[synfig.git] / synfig-core / src / modules / mod_filter / blur.h
index cfe8a2f..c51946f 100644 (file)
@@ -44,6 +44,9 @@ private:
        synfig::Point   size;
        int                             type;
 
+       bool size_static;
+       bool type_static;
+
 public:
        Blur_Layer();
 
@@ -51,6 +54,9 @@ public:
 
        virtual ValueBase get_param(const String & param)const;
 
+       virtual bool set_param_static(const String &param, const bool x);
+       virtual bool get_param_static(const String &param) const;
+
        virtual Color get_color(Context context, const Point &pos)const;
 
        virtual bool accelerated_render(Context context,Surface *surface,int quality, const RendDesc &renddesc, ProgressCallback *cb)const;