1 /* === S Y N F I G ========================================================= */
2 /*! \file state_mirror.cpp
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2009 Nikita Kitaev
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 ======================================================= */
33 #include <gtkmm/dialog.h>
34 #include <gtkmm/entry.h>
36 #include <synfig/valuenode_dynamiclist.h>
37 #include <synfigapp/action_system.h>
39 #include "state_mirror.h"
40 #include "../state_normal.h"
41 #include "../canvasview.h"
42 #include "../workarea.h"
45 #include <synfigapp/action.h>
46 #include "../event_mouse.h"
47 #include "../event_layerclick.h"
48 #include "../toolbox.h"
49 #include "../dialog_tooloptions.h"
50 #include <gtkmm/optionmenu.h>
52 #include <synfigapp/main.h>
54 #include "../general.h"
58 /* === U S I N G =========================================================== */
62 using namespace synfig;
63 using namespace studio;
65 /* === M A C R O S ========================================================= */
72 /* === G L O B A L S ======================================================= */
74 StateMirror studio::state_mirror;
76 /* === C L A S S E S & S T R U C T S ======================================= */
78 class DuckDrag_Mirror : public DuckDrag_Base
80 synfig::Vector center;
82 std::vector<synfig::Vector> positions;
88 void begin_duck_drag(Duckmatic* duckmatic, const synfig::Vector& begin);
89 bool end_duck_drag(Duckmatic* duckmatic);
90 void duck_drag(Duckmatic* duckmatic, const synfig::Vector& vector);
93 class studio::StateMirror_Context : public sigc::trackable
95 etl::handle<CanvasView> canvas_view_;
96 CanvasView::IsWorking is_working;
98 synfigapp::Settings& settings;
100 sigc::connection keypress_connect;
101 sigc::connection keyrelease_connect;
103 etl::handle<DuckDrag_Mirror> duck_dragger_;
105 Gtk::Table options_table;
107 Gtk::RadioButton::Group radiobutton_group;
108 Gtk::RadioButton radiobutton_axis_x;
109 Gtk::RadioButton radiobutton_axis_y;
113 Axis get_axis()const { return radiobutton_axis_x.get_active()?AXIS_X:AXIS_Y; }
114 void set_axis(Axis a)
117 radiobutton_axis_x.set_active(true);
119 radiobutton_axis_y.set_active(true);
121 duck_dragger_->axis=get_axis();
126 duck_dragger_->axis=get_axis();
127 get_work_area()->set_cursor(get_axis() == AXIS_X?Gdk::SB_H_DOUBLE_ARROW:Gdk::SB_V_DOUBLE_ARROW);
130 Smach::event_result event_stop_handler(const Smach::event& x);
131 Smach::event_result event_refresh_tool_options(const Smach::event& x);
133 void refresh_tool_options();
135 StateMirror_Context(CanvasView* canvas_view);
137 ~StateMirror_Context();
139 const etl::handle<CanvasView>& get_canvas_view()const{return canvas_view_;}
140 etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const{return canvas_view_->canvas_interface();}
141 synfig::Canvas::Handle get_canvas()const{return canvas_view_->get_canvas();}
142 WorkArea * get_work_area()const{return canvas_view_->get_work_area();}
144 void load_settings();
145 void save_settings();
147 bool key_event(GdkEventKey *event);
148 }; // END of class StateMirror_Context
150 /* === M E T H O D S ======================================================= */
152 StateMirror::StateMirror():
153 Smach::state<StateMirror_Context>("mirror")
155 insert(event_def(EVENT_REFRESH_TOOL_OPTIONS,&StateMirror_Context::event_refresh_tool_options));
156 insert(event_def(EVENT_STOP,&StateMirror_Context::event_stop_handler));
159 StateMirror::~StateMirror()
164 StateMirror_Context::load_settings()
168 settings.get_value("mirror.axis",value);
169 set_axis((Axis)atoi(value.c_str()));
173 StateMirror_Context::save_settings()
175 settings.set_value("mirror.lock_aspect",strprintf("%d",(int)get_axis()));
178 StateMirror_Context::StateMirror_Context(CanvasView* canvas_view):
179 canvas_view_(canvas_view),
180 is_working(*canvas_view),
181 settings(synfigapp::Main::get_selected_input_device()->settings()),
182 duck_dragger_(new DuckDrag_Mirror()),
183 radiobutton_axis_x(radiobutton_group,_("Horizontal")),
184 radiobutton_axis_y(radiobutton_group,_("Vertical"))
186 // Set up the tool options dialog
187 options_table.attach(*manage(new Gtk::Label(_("Mirror Tool"))), 0, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
188 options_table.attach(radiobutton_axis_x, 0, 2, 1, 2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
189 options_table.attach(radiobutton_axis_y, 0, 2, 2, 3, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
190 options_table.attach(*manage(new Gtk::Label(_("(Shift key toggles axis)"))), 0, 2, 3, 4, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
192 radiobutton_axis_x.signal_toggled().connect(sigc::mem_fun(*this,&StateMirror_Context::update_axes));
193 radiobutton_axis_y.signal_toggled().connect(sigc::mem_fun(*this,&StateMirror_Context::update_axes));
195 options_table.show_all();
196 refresh_tool_options();
197 App::dialog_tool_options->present();
199 get_work_area()->set_allow_layer_clicks(true);
200 get_work_area()->set_duck_dragger(duck_dragger_);
202 keypress_connect=get_work_area()->signal_key_press_event().connect(sigc::mem_fun(*this,&StateMirror_Context::key_event),false);
203 keyrelease_connect=get_work_area()->signal_key_release_event().connect(sigc::mem_fun(*this,&StateMirror_Context::key_event),false);
205 get_work_area()->set_cursor(Gdk::SB_H_DOUBLE_ARROW);
206 // get_work_area()->reset_cursor();
208 App::toolbox->refresh();
215 StateMirror_Context::key_event(GdkEventKey *event)
217 if (event->keyval==GDK_Shift_L || event->keyval==GDK_Shift_R )
219 set_axis(get_axis()==AXIS_X ? AXIS_Y:AXIS_X);
220 get_work_area()->set_cursor(get_axis() == AXIS_X?Gdk::SB_H_DOUBLE_ARROW:Gdk::SB_V_DOUBLE_ARROW);
223 return false; //Pass on the event to other handlers, just in case
227 StateMirror_Context::refresh_tool_options()
229 App::dialog_tool_options->clear();
230 App::dialog_tool_options->set_widget(options_table);
231 App::dialog_tool_options->set_local_name(_("Mirror Tool"));
232 App::dialog_tool_options->set_name("mirror");
236 StateMirror_Context::event_refresh_tool_options(const Smach::event& /*x*/)
238 refresh_tool_options();
239 return Smach::RESULT_ACCEPT;
243 StateMirror_Context::event_stop_handler(const Smach::event& /*x*/)
246 return Smach::RESULT_OK;
249 StateMirror_Context::~StateMirror_Context()
253 get_work_area()->clear_duck_dragger();
254 get_work_area()->reset_cursor();
256 keypress_connect.disconnect();
257 keyrelease_connect.disconnect();
259 App::dialog_tool_options->clear();
261 App::toolbox->refresh();
264 DuckDrag_Mirror::DuckDrag_Mirror():
270 #define EPSILON 0.0000001
274 DuckDrag_Mirror::begin_duck_drag(Duckmatic* duckmatic, const synfig::Vector& /*offset*/)
276 const DuckList selected_ducks(duckmatic->get_selected_ducks());
277 DuckList::const_iterator iter;
281 for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
283 Point p((*iter)->get_trans_point());
284 positions.push_back(p);
290 DuckDrag_Mirror::duck_drag(Duckmatic* duckmatic, const synfig::Vector& vector)
295 const DuckList selected_ducks(duckmatic->get_selected_ducks());
296 DuckList::const_iterator iter;
298 Time time(duckmatic->get_time());
300 // do the Vertex and Position ducks first
301 for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
302 if ((*iter)->get_type() == Duck::TYPE_VERTEX ||
303 (*iter)->get_type() == Duck::TYPE_POSITION)
305 Vector p(positions[i]);
307 if (axis==AXIS_X) p[0] = -(p[0]-center[0]) + center[0];
308 else if (axis==AXIS_Y) p[1] = -(p[1]-center[1]) + center[1];
310 (*iter)->set_trans_point(p);
313 // then do the other ducks
314 for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
315 if ((*iter)->get_type() != Duck::TYPE_VERTEX &&
316 (*iter)->get_type() != Duck::TYPE_POSITION)
318 // we don't need to mirror radius ducks - they're one-dimensional
319 if ((*iter)->is_radius())
322 Vector p(positions[i]);
324 if (axis==AXIS_X) p[0] = -(p[0]-center[0]) + center[0];
325 else if (axis==AXIS_Y) p[1] = -(p[1]-center[1]) + center[1];
327 (*iter)->set_trans_point(p);
332 DuckDrag_Mirror::end_duck_drag(Duckmatic* duckmatic)
334 duckmatic->signal_edited_selected_ducks();