X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;ds=sidebyside;f=synfig-core%2Ftrunk%2Fsrc%2Fsynfig%2Flayer_pastecanvas.h;h=5873ff44a37af945075e34739bd30c517ec88afe;hb=37600b4b217caa5e316984ec0b035c5e8f9698af;hp=121efd674a61ddb5efaaffd5ac96fab3d07c8cd6;hpb=e8a065f2385c219c511b57dac52786120bfa097d;p=synfig.git diff --git a/synfig-core/trunk/src/synfig/layer_pastecanvas.h b/synfig-core/trunk/src/synfig/layer_pastecanvas.h index 121efd6..5873ff4 100644 --- a/synfig-core/trunk/src/synfig/layer_pastecanvas.h +++ b/synfig-core/trunk/src/synfig/layer_pastecanvas.h @@ -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 get_sub_canvas()const { return canvas; } void set_sub_canvas(etl::handle 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