1 /* === S Y N F I G ========================================================= */
2 /*! \file state_smoothmove.cpp
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === H E A D E R S ======================================================= */
32 #include <gtkmm/dialog.h>
33 #include <gtkmm/entry.h>
35 #include <synfig/valuenode_dynamiclist.h>
36 #include <synfigapp/action_system.h>
38 #include "state_smoothmove.h"
39 #include "canvasview.h"
43 #include <synfigapp/action.h>
44 #include "event_mouse.h"
45 #include "event_layerclick.h"
47 #include "dialog_tooloptions.h"
48 #include <gtkmm/optionmenu.h>
50 #include "onemoment.h"
51 #include <synfigapp/main.h>
55 /* === U S I N G =========================================================== */
59 using namespace synfig;
60 using namespace studio;
62 /* === M A C R O S ========================================================= */
64 /* === G L O B A L S ======================================================= */
66 StateSmoothMove studio::state_smooth_move;
68 /* === C L A S S E S & S T R U C T S ======================================= */
70 class DuckDrag_SmoothMove : public DuckDrag_Base
74 synfig::Vector last_translate_;
75 synfig::Vector drag_offset_;
78 std::vector<synfig::Vector> last_;
79 std::vector<synfig::Vector> positions;
82 DuckDrag_SmoothMove();
83 void begin_duck_drag(Duckmatic* duckmatic, const synfig::Vector& begin);
84 bool end_duck_drag(Duckmatic* duckmatic);
85 void duck_drag(Duckmatic* duckmatic, const synfig::Vector& vector);
87 void set_radius(float x) { radius=x; }
88 float get_radius()const { return radius; }
92 class studio::StateSmoothMove_Context : public sigc::trackable
94 etl::handle<CanvasView> canvas_view_;
96 //Duckmatic::Push duckmatic_push;
98 synfigapp::Settings& settings;
100 etl::handle<DuckDrag_SmoothMove> duck_dragger_;
102 Gtk::Table options_table;
104 Gtk::Adjustment adj_radius;
105 Gtk::SpinButton spin_radius;
110 float get_radius()const { return adj_radius.get_value(); }
111 void set_radius(float x) { return adj_radius.set_value(x); }
113 void refresh_radius() { duck_dragger_->set_radius(get_radius()*pressure); }
115 Smach::event_result event_stop_handler(const Smach::event& x);
117 Smach::event_result event_refresh_tool_options(const Smach::event& x);
119 void refresh_tool_options();
121 StateSmoothMove_Context(CanvasView* canvas_view);
123 ~StateSmoothMove_Context();
125 const etl::handle<CanvasView>& get_canvas_view()const{return canvas_view_;}
126 etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const{return canvas_view_->canvas_interface();}
127 synfig::Canvas::Handle get_canvas()const{return canvas_view_->get_canvas();}
128 WorkArea * get_work_area()const{return canvas_view_->get_work_area();}
130 void load_settings();
131 void save_settings();
132 }; // END of class StateSmoothMove_Context
134 /* === M E T H O D S ======================================================= */
136 StateSmoothMove::StateSmoothMove():
137 Smach::state<StateSmoothMove_Context>("smooth_move")
139 insert(event_def(EVENT_REFRESH_TOOL_OPTIONS,&StateSmoothMove_Context::event_refresh_tool_options));
142 StateSmoothMove::~StateSmoothMove()
147 StateSmoothMove_Context::load_settings()
151 if(settings.get_value("smooth_move.radius",value))
152 set_radius(atof(value.c_str()));
158 StateSmoothMove_Context::save_settings()
160 settings.set_value("smooth_move.radius",strprintf("%f",get_radius()));
163 StateSmoothMove_Context::StateSmoothMove_Context(CanvasView* canvas_view):
164 canvas_view_(canvas_view),
165 // duckmatic_push(get_work_area()),
166 settings(synfigapp::Main::get_selected_input_device()->settings()),
167 duck_dragger_(new DuckDrag_SmoothMove()),
168 adj_radius(1,0,100000,0.01,0.1),
169 spin_radius(adj_radius,0.1,3)
173 // Set up the tool options dialog
174 //options_table.attach(*manage(new Gtk::Label(_("SmoothMove Tool"))), 0, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
176 options_table.attach(*manage(new Gtk::Label(_("Radius"))), 0, 2, 1, 2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
177 options_table.attach(spin_radius, 0, 2, 2, 3, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
179 spin_radius.signal_value_changed().connect(sigc::mem_fun(*this,&StateSmoothMove_Context::refresh_radius));
181 options_table.show_all();
182 refresh_tool_options();
183 //App::dialog_tool_options->set_widget(options_table);
184 App::dialog_tool_options->present();
186 get_work_area()->allow_layer_clicks=true;
187 get_work_area()->set_duck_dragger(duck_dragger_);
189 App::toolbox->refresh();
191 // get_canvas_view()->work_area->set_cursor(Gdk::CROSSHAIR);
192 get_canvas_view()->work_area->reset_cursor();
198 StateSmoothMove_Context::refresh_tool_options()
200 App::dialog_tool_options->clear();
201 App::dialog_tool_options->set_widget(options_table);
202 App::dialog_tool_options->set_local_name(_("Smooth Move"));
203 App::dialog_tool_options->set_name("smooth_move");
207 StateSmoothMove_Context::event_refresh_tool_options(const Smach::event& x)
209 refresh_tool_options();
210 return Smach::RESULT_ACCEPT;
213 StateSmoothMove_Context::~StateSmoothMove_Context()
217 get_work_area()->clear_duck_dragger();
218 get_canvas_view()->work_area->reset_cursor();
220 App::dialog_tool_options->clear();
222 App::toolbox->refresh();
228 DuckDrag_SmoothMove::DuckDrag_SmoothMove():radius(1.0f)
233 DuckDrag_SmoothMove::begin_duck_drag(Duckmatic* duckmatic, const synfig::Vector& offset)
235 last_translate_=Vector(0,0);
236 drag_offset_=duckmatic->find_duck(offset)->get_trans_point();
238 //snap=drag_offset-duckmatic->snap_point_to_grid(drag_offset);
239 //snap=offset-drag_offset_;
244 const DuckList selected_ducks(duckmatic->get_selected_ducks());
245 DuckList::const_iterator iter;
247 for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
249 last_.push_back(Vector(0,0));
250 positions.push_back((*iter)->get_trans_point());
255 DuckDrag_SmoothMove::duck_drag(Duckmatic* duckmatic, const synfig::Vector& vector)
257 const DuckList selected_ducks(duckmatic->get_selected_ducks());
258 DuckList::const_iterator iter;
259 synfig::Vector vect(duckmatic->snap_point_to_grid(vector)-drag_offset_+snap);
263 for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
265 if(((*iter)->get_type()!=Duck::TYPE_VERTEX&&(*iter)->get_type()!=Duck::TYPE_POSITION))continue;
266 Point p(positions[i]);
268 float dist(1.0f-(p-drag_offset_).mag()/get_radius());
273 (*iter)->set_trans_point(p+last_[i]);
276 for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
278 if(!((*iter)->get_type()!=Duck::TYPE_VERTEX&&(*iter)->get_type()!=Duck::TYPE_POSITION))continue;
279 Point p(positions[i]);
281 float dist(1.0f-(p-drag_offset_).mag()/get_radius());
286 (*iter)->set_trans_point(p+last_[i]);
289 last_translate_=vect;
294 DuckDrag_SmoothMove::end_duck_drag(Duckmatic* duckmatic)
296 //synfig::info("end_duck_drag(): Diff= %f",last_translate_.mag());
297 if(last_translate_.mag()>0.0001)
299 const DuckList selected_ducks(duckmatic->get_selected_ducks());
300 DuckList::const_iterator iter;
304 smart_ptr<OneMoment> wait;if(selected_ducks.size()>20)wait.spawn();
306 for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
308 if(last_[i].mag()>0.0001)
309 if(!(*iter)->signal_edited()((*iter)->get_point()))
311 throw String("Bad Move");
314 //duckmatic->get_selected_ducks()=new_set;
315 //duckmatic->refresh_selected_ducks();
320 duckmatic->signal_user_click_selected_ducks(0);