5d143e9ed4836195bf4c67d3f504154d0f9a0588
[synfig.git] / synfig-studio / trunk / src / synfigapp / instance.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file synfigapp/instance.cpp
3 **      \brief Instance
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007 Chris Moore
10 **
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.
15 **
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.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === H E A D E R S ======================================================= */
25
26 #ifdef USING_PCH
27 #       include "pch.h"
28 #else
29 #ifdef HAVE_CONFIG_H
30 #       include <config.h>
31 #endif
32
33 #include "instance.h"
34 #include "canvasinterface.h"
35 #include <iostream>
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 <map>
42
43 #include "general.h"
44
45 #endif
46
47 /* === U S I N G =========================================================== */
48
49 using namespace std;
50 using namespace etl;
51 using namespace synfig;
52 using namespace synfigapp;
53
54 /* === M A C R O S ========================================================= */
55
56 /* === G L O B A L S ======================================================= */
57
58 static std::map<loose_handle<Canvas>, loose_handle<Instance> > instance_map_;
59
60 /* === P R O C E D U R E S ================================================= */
61
62 bool
63 synfigapp::is_editable(synfig::ValueNode::Handle value_node)
64 {
65         if(ValueNode_Const::Handle::cast_dynamic(value_node)
66                 || ValueNode_Animated::Handle::cast_dynamic(value_node)
67                 || ValueNode_Composite::Handle::cast_dynamic(value_node)
68                 || ValueNode_RadialComposite::Handle::cast_dynamic(value_node)
69                 || ValueNode_Reference::Handle::cast_dynamic(value_node)
70         )
71                 return true;
72         return false;
73 }
74
75 etl::handle<Instance>
76 synfigapp::find_instance(etl::handle<synfig::Canvas> canvas)
77 {
78         if(instance_map_.count(canvas)==0)
79                 return 0;
80         return instance_map_[canvas];
81 }
82
83 /* === M E T H O D S ======================================================= */
84
85 Instance::Instance(etl::handle<synfig::Canvas> canvas):
86         CVSInfo(canvas->get_file_name()),
87         canvas_(canvas)
88 {
89         assert(canvas->is_root());
90
91         unset_selection_manager();
92
93         instance_map_[canvas]=this;
94 } // END of synfigapp::Instance::Instance()
95
96 handle<Instance>
97 Instance::create(etl::handle<synfig::Canvas> canvas)
98 {
99         // Construct a new instance
100         handle<Instance> instance(new Instance(canvas));
101
102         return instance;
103 } // END of synfigapp::Instance::create()
104
105 synfig::String
106 Instance::get_file_name()const
107 {
108         return get_canvas()->get_file_name();
109 }
110
111 void
112 Instance::set_file_name(const synfig::String &name)
113 {
114         get_canvas()->set_file_name(name);
115         CVSInfo::set_file_name(name);
116 }
117
118 Instance::~Instance()
119 {
120         instance_map_.erase(canvas_);
121
122         if (getenv("SYNFIG_DEBUG_DESTRUCTORS"))
123                 synfig::info("Instance::~Instance(): Deleted");
124 }
125
126 handle<CanvasInterface>
127 Instance::find_canvas_interface(synfig::Canvas::Handle canvas)
128 {
129         if(!canvas)
130                 return 0;
131         while(canvas->is_inline())
132                 canvas=canvas->parent();
133
134         CanvasInterfaceList::iterator iter;
135
136         for(iter=canvas_interface_list().begin();iter!=canvas_interface_list().end();iter++)
137                 if((*iter)->get_canvas()==canvas)
138                         return *iter;
139
140         return CanvasInterface::create(this,canvas);
141 }
142
143 bool
144 Instance::save()const
145 {
146         bool ret=save_canvas(get_file_name(),canvas_);
147         if(ret)
148         {
149                 reset_action_count();
150                 const_cast<sigc::signal<void>& >(signal_saved_)();
151         }
152         return ret;
153 }
154
155 bool
156 Instance::save_as(const synfig::String &file_name)
157 {
158         bool ret;
159
160         String old_file_name(get_file_name());
161
162         set_file_name(file_name);
163
164         ret=save_canvas(file_name,canvas_);
165
166         if(ret)
167         {
168                 reset_action_count();
169                 signal_saved_();
170         }
171         else
172                 set_file_name(old_file_name);
173
174         signal_filename_changed_();
175
176         return ret;
177 }