my log
[synfig.git] / synfig-studio / trunk / src / synfigapp / actions / layerraise.cpp
1 /* === S Y N F I G ========================================================= */
2 /*!     \file layerraise.cpp
3 **      \brief Template File
4 **
5 **      $Id: layerraise.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $
6 **
7 **      \legal
8 **      Copyright (c) 2002 Robert B. Quattlebaum Jr.
9 **
10 **      This software and associated documentation
11 **      are CONFIDENTIAL and PROPRIETARY property of
12 **      the above-mentioned copyright holder.
13 **
14 **      You may not copy, print, publish, or in any
15 **      other way distribute this software without
16 **      a prior written agreement with
17 **      the copyright holder.
18 **      \endlegal
19 */
20 /* ========================================================================= */
21
22 /* === H E A D E R S ======================================================= */
23
24 #ifdef USING_PCH
25 #       include "pch.h"
26 #else
27 #ifdef HAVE_CONFIG_H
28 #       include <config.h>
29 #endif
30
31 #include "layerraise.h"
32 #include "layermove.h"
33 #include <synfigapp/canvasinterface.h>
34
35 #endif
36
37 using namespace std;
38 using namespace etl;
39 using namespace synfig;
40 using namespace synfigapp;
41 using namespace Action;
42
43 /* === M A C R O S ========================================================= */
44
45 ACTION_INIT(Action::LayerRaise);
46 ACTION_SET_NAME(Action::LayerRaise,"layer_raise");
47 ACTION_SET_LOCAL_NAME(Action::LayerRaise,"Raise Layer");
48 ACTION_SET_TASK(Action::LayerRaise,"raise");
49 ACTION_SET_CATEGORY(Action::LayerRaise,Action::CATEGORY_LAYER);
50 ACTION_SET_PRIORITY(Action::LayerRaise,9);
51 ACTION_SET_VERSION(Action::LayerRaise,"0.0");
52 ACTION_SET_CVS_ID(Action::LayerRaise,"$Id: layerraise.cpp,v 1.1.1.1 2005/01/07 03:34:37 darco Exp $");
53
54 /* === G L O B A L S ======================================================= */
55
56 /* === P R O C E D U R E S ================================================= */
57
58 /* === M E T H O D S ======================================================= */
59
60 Action::LayerRaise::LayerRaise()
61 {
62 }
63
64 Action::ParamVocab
65 Action::LayerRaise::get_param_vocab()
66 {
67         ParamVocab ret(Action::CanvasSpecific::get_param_vocab());
68         
69         ret.push_back(ParamDesc("layer",Param::TYPE_LAYER)
70                 .set_local_name(_("Layer"))
71                 .set_desc(_("Layer to be raised"))
72                 .set_supports_multiple()
73         );
74         
75         return ret;
76 }
77
78 bool
79 Action::LayerRaise::is_canidate(const ParamList &x)
80 {
81         if(!canidate_check(get_param_vocab(),x))
82                 return false;
83         if(x.find("layer")->second.get_layer()->get_depth()==0)
84                 return false;
85         return true;
86 }
87
88 bool
89 Action::LayerRaise::set_param(const synfig::String& name, const Action::Param &param)
90 {
91         if(name=="layer" && param.get_type()==Param::TYPE_LAYER)
92         {
93                 layers.push_back(param.get_layer());
94                 
95                 return true;
96         }
97
98         return Action::CanvasSpecific::set_param(name,param);
99 }
100
101 bool
102 Action::LayerRaise::is_ready()const
103 {
104         if(layers.empty())
105                 return false;
106         return Action::CanvasSpecific::is_ready();
107 }
108
109 void
110 Action::LayerRaise::prepare()
111 {
112         std::list<synfig::Layer::Handle>::reverse_iterator iter;
113
114         clear();
115         
116         for(iter=layers.rbegin();!(iter==layers.rend());++iter)
117         {
118                 Layer::Handle layer(*iter);
119                 
120                 Canvas::Handle subcanvas(layer->get_canvas());
121                 
122                 // Find the iterator for the layer
123                 Canvas::iterator iter=find(subcanvas->begin(),subcanvas->end(),layer);
124                 
125                 // If we couldn't find the layer in the canvas, then bail
126                 if(*iter!=layer)
127                         throw Error(_("This layer doesn't exist anymore."));
128         
129                 // If the subcanvas isn't the same as the canvas,
130                 // then it had better be an inline canvas. If not,
131                 // bail
132                 //if(get_canvas()!=subcanvas && !subcanvas->is_inline())
133                 //      throw Error(_("This layer doesn't belong to this canvas anymore"));
134                 
135                 int new_index=iter-subcanvas->begin();
136                 
137                 if(new_index==0)
138                         continue;
139                 
140                 new_index--;
141                 
142                 Action::Handle layer_move(LayerMove::create());
143                 
144                 layer_move->set_param("canvas",get_canvas());
145                 layer_move->set_param("canvas_interface",get_canvas_interface());
146                 layer_move->set_param("layer",layer);
147                 layer_move->set_param("new_index",new_index);
148                 
149                 add_action_front(layer_move);
150         }
151 }