Remove .gitignore do nothing is ignored.
[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, 2008 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 <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 <map>
47
48 #include "general.h"
49
50 #endif
51
52 /* === U S I N G =========================================================== */
53
54 using namespace std;
55 using namespace etl;
56 using namespace synfig;
57 using namespace synfigapp;
58
59 /* === M A C R O S ========================================================= */
60
61 /* === G L O B A L S ======================================================= */
62
63 static std::map<loose_handle<Canvas>, loose_handle<Instance> > instance_map_;
64
65 /* === P R O C E D U R E S ================================================= */
66
67 bool
68 synfigapp::is_editable(synfig::ValueNode::Handle value_node)
69 {
70         if(ValueNode_Const::Handle::cast_dynamic(value_node)
71                 || ValueNode_Animated::Handle::cast_dynamic(value_node)
72                 || ValueNode_Composite::Handle::cast_dynamic(value_node)
73                 || ValueNode_RadialComposite::Handle::cast_dynamic(value_node)
74                 ||(ValueNode_Reference::Handle::cast_dynamic(value_node) && !ValueNode_Greyed::Handle::cast_dynamic(value_node))
75                 || ValueNode_BLineCalcVertex::Handle::cast_dynamic(value_node)
76                 || ValueNode_BLineCalcTangent::Handle::cast_dynamic(value_node)
77                 || ValueNode_BLineCalcWidth::Handle::cast_dynamic(value_node)
78                 || ValueNode_Scale::Handle::cast_dynamic(value_node)
79         )
80                 return true;
81         return false;
82 }
83
84 etl::handle<Instance>
85 synfigapp::find_instance(etl::handle<synfig::Canvas> canvas)
86 {
87         if(instance_map_.count(canvas)==0)
88                 return 0;
89         return instance_map_[canvas];
90 }
91
92 /* === M E T H O D S ======================================================= */
93
94 Instance::Instance(etl::handle<synfig::Canvas> canvas):
95         CVSInfo(canvas->get_file_name()),
96         canvas_(canvas)
97 {
98         assert(canvas->is_root());
99
100         unset_selection_manager();
101
102         instance_map_[canvas]=this;
103 } // END of synfigapp::Instance::Instance()
104
105 handle<Instance>
106 Instance::create(etl::handle<synfig::Canvas> canvas)
107 {
108         // Construct a new instance
109         handle<Instance> instance(new Instance(canvas));
110
111         return instance;
112 } // END of synfigapp::Instance::create()
113
114 synfig::String
115 Instance::get_file_name()const
116 {
117         return get_canvas()->get_file_name();
118 }
119
120 void
121 Instance::set_file_name(const synfig::String &name)
122 {
123         get_canvas()->set_file_name(name);
124         CVSInfo::set_file_name(name);
125 }
126
127 Instance::~Instance()
128 {
129         instance_map_.erase(canvas_);
130
131         if (getenv("SYNFIG_DEBUG_DESTRUCTORS"))
132                 synfig::info("Instance::~Instance(): Deleted");
133 }
134
135 handle<CanvasInterface>
136 Instance::find_canvas_interface(synfig::Canvas::Handle canvas)
137 {
138         if(!canvas)
139                 return 0;
140         while(canvas->is_inline())
141                 canvas=canvas->parent();
142
143         CanvasInterfaceList::iterator iter;
144
145         for(iter=canvas_interface_list().begin();iter!=canvas_interface_list().end();iter++)
146                 if((*iter)->get_canvas()==canvas)
147                         return *iter;
148
149         return CanvasInterface::create(this,canvas);
150 }
151
152 bool
153 Instance::save()const
154 {
155         bool ret=save_canvas(get_file_name(),canvas_);
156         if(ret)
157         {
158                 reset_action_count();
159                 const_cast<sigc::signal<void>& >(signal_saved_)();
160         }
161         return ret;
162 }
163
164 bool
165 Instance::save_as(const synfig::String &file_name)
166 {
167         bool ret;
168
169         String old_file_name(get_file_name());
170
171         set_file_name(file_name);
172
173         ret=save_canvas(file_name,canvas_);
174
175         if(ret)
176         {
177                 reset_action_count();
178                 signal_saved_();
179         }
180         else
181                 set_file_name(old_file_name);
182
183         signal_filename_changed_();
184
185         return ret;
186 }