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 etl::handle<DuckDrag_Mirror> duck_dragger_;
100 Gtk::Table options_table;
103 sigc::connection keypress_connect;
104 sigc::connection keyrelease_connect;
105 bool shift_is_pressed;
106 Gtk::RadioButton::Group radiobutton_group;
107 Gtk::RadioButton radiobutton_axis_x;
108 Gtk::RadioButton radiobutton_axis_y;
112 Axis get_axis()const { return radiobutton_axis_x.get_active()?AXIS_X:AXIS_Y; }
113 void set_axis(Axis a)
116 radiobutton_axis_x.set_active(true);
118 radiobutton_axis_y.set_active(true);
120 duck_dragger_->axis=get_axis();
125 duck_dragger_->axis=get_axis();
126 get_work_area()->set_cursor(get_axis() == AXIS_X?Gdk::SB_H_DOUBLE_ARROW:Gdk::SB_V_DOUBLE_ARROW);
132 Smach::event_result event_stop_handler(const Smach::event& x);
133 Smach::event_result event_refresh_tool_options(const Smach::event& x);
134 Smach::event_result event_mouse_motion_handler(const Smach::event& x);
136 void refresh_tool_options();
138 StateMirror_Context(CanvasView* canvas_view);
140 ~StateMirror_Context();
142 const etl::handle<CanvasView>& get_canvas_view()const{return canvas_view_;}
143 etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const{return canvas_view_->canvas_interface();}
144 synfig::Canvas::Handle get_canvas()const{return canvas_view_->get_canvas();}
145 WorkArea * get_work_area()const{return canvas_view_->get_work_area();}
147 bool key_press_event(GdkEventKey *event);
148 bool key_release_event(GdkEventKey *event);
151 }; // END of class StateMirror_Context
153 /* === M E T H O D S ======================================================= */
155 StateMirror::StateMirror():
156 Smach::state<StateMirror_Context>("mirror")
158 insert(event_def(EVENT_REFRESH_TOOL_OPTIONS,&StateMirror_Context::event_refresh_tool_options));
159 insert(event_def(EVENT_STOP,&StateMirror_Context::event_stop_handler));
160 insert(event_def(EVENT_WORKAREA_MOUSE_MOTION, &StateMirror_Context::event_mouse_motion_handler));
161 insert(event_def(EVENT_WORKAREA_MOUSE_BUTTON_DRAG, &StateMirror_Context::event_mouse_motion_handler));
164 StateMirror::~StateMirror()
168 StateMirror_Context::StateMirror_Context(CanvasView* canvas_view):
169 canvas_view_(canvas_view),
170 is_working(*canvas_view),
171 duck_dragger_(new DuckDrag_Mirror()),
172 radiobutton_axis_x(radiobutton_group,_("Horizontal")),
173 radiobutton_axis_y(radiobutton_group,_("Vertical"))
175 // Set up the tool options dialog
176 options_table.attach(*manage(new Gtk::Label(_("Mirror Tool"))), 0, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
177 options_table.attach(radiobutton_axis_x, 0, 2, 1, 2, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
178 options_table.attach(radiobutton_axis_y, 0, 2, 2, 3, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
179 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);
181 radiobutton_axis_x.signal_toggled().connect(sigc::mem_fun(*this,&StateMirror_Context::update_axes));
182 radiobutton_axis_y.signal_toggled().connect(sigc::mem_fun(*this,&StateMirror_Context::update_axes));
183 shift_is_pressed=false;
184 keypress_connect=get_work_area()->signal_key_press_event().connect(sigc::mem_fun(*this,&StateMirror_Context::key_press_event),false);
185 keyrelease_connect=get_work_area()->signal_key_release_event().connect(sigc::mem_fun(*this,&StateMirror_Context::key_release_event),false);
187 options_table.show_all();
188 refresh_tool_options();
189 App::dialog_tool_options->present();
191 get_work_area()->set_allow_layer_clicks(true);
192 get_work_area()->set_duck_dragger(duck_dragger_);
194 get_work_area()->set_cursor(Gdk::SB_H_DOUBLE_ARROW);
195 // get_work_area()->reset_cursor();
197 App::toolbox->refresh();
203 StateMirror_Context::key_press_event(GdkEventKey *event)
205 if (event->keyval==GDK_Shift_L || event->keyval==GDK_Shift_R )
207 if (shift_is_pressed) return false;
208 shift_is_pressed=true;
209 set_axis(get_axis()==AXIS_X ? AXIS_Y:AXIS_X);
213 return false; //Pass on the event to other handlers, just in case
217 StateMirror_Context::key_release_event(GdkEventKey *event)
219 if (event->keyval==GDK_Shift_L || event->keyval==GDK_Shift_R )
221 if (!shift_is_pressed) return false;
222 shift_is_pressed = false;
223 set_axis(get_axis()==AXIS_X ? AXIS_Y:AXIS_X);
227 return false; //Pass on the event to other handlers, just in case
231 StateMirror_Context::refresh_tool_options()
233 App::dialog_tool_options->clear();
234 App::dialog_tool_options->set_widget(options_table);
235 App::dialog_tool_options->set_local_name(_("Mirror Tool"));
236 App::dialog_tool_options->set_name("mirror");
240 StateMirror_Context::event_refresh_tool_options(const Smach::event& /*x*/)
242 refresh_tool_options();
243 return Smach::RESULT_ACCEPT;
247 StateMirror_Context::event_stop_handler(const Smach::event& /*x*/)
250 return Smach::RESULT_OK;
254 StateMirror_Context::event_mouse_motion_handler(const Smach::event& x)
256 // synfig::info("STATE NORMAL: Received mouse button down Event");
258 const EventMouse& event(*reinterpret_cast<const EventMouse*>(&x));
259 bool shift_state = event.modifier&GDK_SHIFT_MASK;
260 if (shift_state != shift_is_pressed)
262 shift_is_pressed = !shift_is_pressed;
263 set_axis(get_axis()==AXIS_X ? AXIS_Y:AXIS_X);
266 return Smach::RESULT_OK;
269 StateMirror_Context::~StateMirror_Context()
271 get_work_area()->clear_duck_dragger();
272 get_work_area()->reset_cursor();
274 keypress_connect.disconnect();
275 keyrelease_connect.disconnect();
277 App::dialog_tool_options->clear();
279 App::toolbox->refresh();
282 DuckDrag_Mirror::DuckDrag_Mirror():
288 #define EPSILON 0.0000001
292 DuckDrag_Mirror::begin_duck_drag(Duckmatic* duckmatic, const synfig::Vector& /*offset*/)
294 const DuckList selected_ducks(duckmatic->get_selected_ducks());
295 DuckList::const_iterator iter;
299 for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
301 Point p((*iter)->get_trans_point());
302 positions.push_back(p);
308 DuckDrag_Mirror::duck_drag(Duckmatic* duckmatic, const synfig::Vector& vector)
313 const DuckList selected_ducks(duckmatic->get_selected_ducks());
314 DuckList::const_iterator iter;
316 Time time(duckmatic->get_time());
318 // do the Vertex and Position ducks first
319 for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
320 if ((*iter)->get_type() == Duck::TYPE_VERTEX ||
321 (*iter)->get_type() == Duck::TYPE_POSITION)
323 Vector p(positions[i]);
325 if (axis==AXIS_X) p[0] = -(p[0]-center[0]) + center[0];
326 else if (axis==AXIS_Y) p[1] = -(p[1]-center[1]) + center[1];
328 (*iter)->set_trans_point(p);
331 // then do the other ducks
332 for(i=0,iter=selected_ducks.begin();iter!=selected_ducks.end();++iter,i++)
333 if ((*iter)->get_type() != Duck::TYPE_VERTEX &&
334 (*iter)->get_type() != Duck::TYPE_POSITION)
336 // we don't need to mirror radius ducks - they're one-dimensional
337 if ((*iter)->is_radius())
340 Vector p(positions[i]);
342 if (axis==AXIS_X) p[0] = -(p[0]-center[0]) + center[0];
343 else if (axis==AXIS_Y) p[1] = -(p[1]-center[1]) + center[1];
345 (*iter)->set_trans_point(p);
350 DuckDrag_Mirror::end_duck_drag(Duckmatic* duckmatic)
352 duckmatic->signal_edited_selected_ducks();