1 /* === S Y N F I G ========================================================= */
2 /*! \file synfigapp/instance.cpp
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2007, 2008 Chris Moore
11 ** This package is free software; you can redistribute it and/or
12 ** modify it under the terms of the GNU General Public License as
13 ** published by the Free Software Foundation; either version 2 of
14 ** the License, or (at your option) any later version.
16 ** This package is distributed in the hope that it will be useful,
17 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 ** General Public License for more details.
22 /* ========================================================================= */
24 /* === H E A D E R S ======================================================= */
34 #include "canvasinterface.h"
36 #include <synfig/loadcanvas.h>
37 #include <synfig/savecanvas.h>
38 #include <synfig/valuenode_composite.h>
39 #include <synfig/valuenode_radialcomposite.h>
40 #include <synfig/valuenode_reference.h>
41 #include <synfig/valuenode_greyed.h>
42 #include <synfig/valuenode_blinecalctangent.h>
43 #include <synfig/valuenode_blinecalcvertex.h>
44 #include <synfig/valuenode_blinecalcwidth.h>
45 #include <synfig/valuenode_scale.h>
46 #include <synfig/valuenode_range.h>
53 /* === U S I N G =========================================================== */
57 using namespace synfig;
58 using namespace synfigapp;
60 /* === M A C R O S ========================================================= */
62 /* === G L O B A L S ======================================================= */
64 static std::map<loose_handle<Canvas>, loose_handle<Instance> > instance_map_;
66 /* === P R O C E D U R E S ================================================= */
69 synfigapp::is_editable(synfig::ValueNode::Handle value_node)
71 if(ValueNode_Const::Handle::cast_dynamic(value_node)
72 || ValueNode_Animated::Handle::cast_dynamic(value_node)
73 || ValueNode_Composite::Handle::cast_dynamic(value_node)
74 || ValueNode_RadialComposite::Handle::cast_dynamic(value_node)
75 ||(ValueNode_Reference::Handle::cast_dynamic(value_node) && !ValueNode_Greyed::Handle::cast_dynamic(value_node))
76 || ValueNode_BLineCalcVertex::Handle::cast_dynamic(value_node)
77 || ValueNode_BLineCalcTangent::Handle::cast_dynamic(value_node)
78 || ValueNode_BLineCalcWidth::Handle::cast_dynamic(value_node)
79 || ValueNode_Scale::Handle::cast_dynamic(value_node)
80 || ValueNode_Range::Handle::cast_dynamic(value_node)
87 synfigapp::find_instance(etl::handle<synfig::Canvas> canvas)
89 if(instance_map_.count(canvas)==0)
91 return instance_map_[canvas];
94 /* === M E T H O D S ======================================================= */
96 Instance::Instance(etl::handle<synfig::Canvas> canvas):
97 CVSInfo(canvas->get_file_name()),
100 assert(canvas->is_root());
102 unset_selection_manager();
104 instance_map_[canvas]=this;
105 } // END of synfigapp::Instance::Instance()
108 Instance::create(etl::handle<synfig::Canvas> canvas)
110 // Construct a new instance
111 handle<Instance> instance(new Instance(canvas));
114 } // END of synfigapp::Instance::create()
117 Instance::get_file_name()const
119 return get_canvas()->get_file_name();
123 Instance::set_file_name(const synfig::String &name)
125 get_canvas()->set_file_name(name);
126 CVSInfo::set_file_name(name);
129 Instance::~Instance()
131 instance_map_.erase(canvas_);
133 if (getenv("SYNFIG_DEBUG_DESTRUCTORS"))
134 synfig::info("Instance::~Instance(): Deleted");
137 handle<CanvasInterface>
138 Instance::find_canvas_interface(synfig::Canvas::Handle canvas)
142 while(canvas->is_inline())
143 canvas=canvas->parent();
145 CanvasInterfaceList::iterator iter;
147 for(iter=canvas_interface_list().begin();iter!=canvas_interface_list().end();iter++)
148 if((*iter)->get_canvas()==canvas)
151 return CanvasInterface::create(this,canvas);
155 Instance::save()const
157 bool ret=save_canvas(get_file_name(),canvas_);
160 reset_action_count();
161 const_cast<sigc::signal<void>& >(signal_saved_)();
167 Instance::save_as(const synfig::String &file_name)
171 String old_file_name(get_file_name());
173 set_file_name(file_name);
175 ret=save_canvas(file_name,canvas_);
179 reset_action_count();
183 set_file_name(old_file_name);
185 signal_filename_changed_();