Add my copyright to files I've modified.
[synfig.git] / synfig-core / trunk / src / synfig / layer_pastecanvas.h
index 121efd6..5873ff4 100644 (file)
@@ -2,10 +2,11 @@
 /*!    \file layer_pastecanvas.h
 **     \brief Template Header
 **
-**     $Id: layer_pastecanvas.h,v 1.2 2005/01/24 03:08:18 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
+**     Copyright (c) 2007 Chris Moore
 **
 **     This package is free software; you can redistribute it and/or
 **     modify it under the terms of the GNU General Public License as
@@ -43,7 +44,7 @@
 /* === C L A S S E S & S T R U C T S ======================================= */
 
 namespace synfig {
-       
+
 class Layer_PasteCanvas : public Layer_Composite, public Layer_NoDeform
 {
        SYNFIG_LAYER_MODULE_EXT
@@ -62,10 +63,8 @@ private:
 
        mutable Time curr_time;
 
-       bool optimize_layers(synfig::Context context,synfig::CanvasBase&)const;
+       bool muck_with_time_;
 
-       bool do_not_muck_with_time_;
-       
        bool children_lock;
 
        mutable Rect bounds;
@@ -75,11 +74,11 @@ public:
 
        virtual void on_canvas_set();
 
-       void set_do_not_muck_with_time(bool x=true) { do_not_muck_with_time_=true; }
+       void set_muck_with_time(bool x=false) { muck_with_time_=x; }
 
        etl::handle<synfig::Canvas> get_sub_canvas()const { return canvas; }
        void set_sub_canvas(etl::handle<synfig::Canvas> x);
-       
+
        Real get_zoom()const { return zoom; }
 
        Time get_time_offset()const { return time_offset; }
@@ -90,7 +89,7 @@ public:
        virtual ~Layer_PasteCanvas();
 
        virtual String get_local_name()const;
-       
+
        virtual bool set_param(const String & param, const synfig::ValueBase &value);
 
        virtual ValueBase get_param(const String & param)const;
@@ -106,9 +105,9 @@ public:
        virtual synfig::Rect get_bounding_rect()const;
 
        virtual synfig::Layer::Handle hit_check(synfig::Context context, const synfig::Point &point)const;
-       
+
 protected:
-       virtual void get_times_vfunc(Node::time_set &set) const;        
+       virtual void get_times_vfunc(Node::time_set &set) const;
 
 }; // END of class Layer_PasteCanvas