1 /* === S Y N F I G ========================================================= */
2 /*! \file state_zoom.cpp
3 ** \brief Zoom Tool Implementation 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 <sigc++/signal.h>
33 #include <sigc++/object.h>
36 #include <synfig/vector.h>
39 #include "state_zoom.h"
40 #include "event_mouse.h"
41 #include "canvasview.h"
44 #include "dialog_tooloptions.h"
46 #include <synfigapp/main.h>
52 /* === U S I N G =========================================================== */
56 using namespace synfig;
57 using namespace studio;
59 /* === M A C R O S ========================================================= */
61 /* === G L O B A L S ======================================================= */
62 StateZoom studio::state_zoom;
64 const float ZOOMFACTOR = 1.25f;
66 /* === C L A S S E S & S T R U C T S ======================================= */
68 class studio::StateZoom_Context : public sigc::trackable
70 etl::handle<CanvasView> canvas_view_;
71 CanvasView::IsWorking is_working;
75 bool prev_workarea_layer_status_;
78 synfigapp::Settings& settings;
81 Gtk::Table options_table;
85 void refresh_tool_options(); //to refresh the toolbox
88 Smach::event_result event_stop_handler(const Smach::event& x);
89 Smach::event_result event_refresh_handler(const Smach::event& x);
90 Smach::event_result event_mouse_click_handler(const Smach::event& x);
91 Smach::event_result event_refresh_tool_options(const Smach::event& x);
93 //constructor destructor
94 StateZoom_Context(CanvasView* canvas_view);
98 const etl::handle<CanvasView>& get_canvas_view()const{return canvas_view_;}
99 etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const{return canvas_view_->canvas_interface();}
100 synfig::Canvas::Handle get_canvas()const{return canvas_view_->get_canvas();}
101 WorkArea * get_work_area()const{return canvas_view_->get_work_area();}
103 //Modifying settings etc.
104 void load_settings();
105 void save_settings();
108 //void zoom(const Point& p1, const Point& p2);
110 }; // END of class StateGradient_Context
112 /* === M E T H O D S ======================================================= */
114 StateZoom::StateZoom():
115 Smach::state<StateZoom_Context>("zoom")
117 insert(event_def(EVENT_STOP,&StateZoom_Context::event_stop_handler));
118 insert(event_def(EVENT_REFRESH,&StateZoom_Context::event_refresh_handler));
119 insert(event_def(EVENT_WORKAREA_MOUSE_BUTTON_DOWN,&StateZoom_Context::event_mouse_click_handler));
120 //insert(event_def(EVENT_WORKAREA_MOUSE_BUTTON_DRAG,&StateZoom_Context::event_mouse_click_handler));
121 insert(event_def(EVENT_WORKAREA_BOX,&StateZoom_Context::event_mouse_click_handler));
122 //insert(event_def(EVENT_WORKAREA_BUTTON_CLICK,&StateZoom_Context::event_mouse_click_handler));
123 insert(event_def(EVENT_WORKAREA_MOUSE_BUTTON_UP,&StateZoom_Context::event_mouse_click_handler));
124 insert(event_def(EVENT_REFRESH_TOOL_OPTIONS,&StateZoom_Context::event_refresh_tool_options));
127 StateZoom::~StateZoom()
132 StateZoom_Context::load_settings()
136 //parse the arguments yargh!
137 /*if(settings.get_value("circle.feather",value))
138 set_feather(atof(value.c_str()));
144 StateZoom_Context::save_settings()
146 //settings.set_value("circle.fallofftype",strprintf("%d",get_falloff()));
150 StateZoom_Context::reset()
155 StateZoom_Context::StateZoom_Context(CanvasView* canvas_view):
156 canvas_view_(canvas_view),
157 is_working(*canvas_view),
158 prev_workarea_layer_status_(get_work_area()->get_allow_layer_clicks()),
159 settings(synfigapp::Main::get_selected_input_device()->settings())
161 // Set up the tool options dialog
162 //options_table.attach(*manage(new Gtk::Label(_("Zoom Tool"))), 0, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
166 options_table.show_all();
168 refresh_tool_options();
169 App::dialog_tool_options->present();
171 // Turn off layer clicking
172 get_work_area()->set_allow_layer_clicks(false);
174 // clear out the ducks
175 get_work_area()->clear_ducks(); //???
177 // Refresh the work area
178 get_work_area()->queue_draw();
180 // Hide the tables if they are showing
181 //prev_table_status=get_canvas_view()->tables_are_visible();
182 //if(prev_table_status)get_canvas_view()->hide_tables();
184 // Disable the time bar
185 //get_canvas_view()->set_sensitive_timebar(false);
188 //get_work_area()->signal_user_click().connect(sigc::mem_fun(*this,&studio::StateZoom_Context::on_user_click));
189 get_canvas_view()->work_area->set_cursor(Gdk::CROSSHAIR);
191 App::toolbox->refresh();
195 StateZoom_Context::refresh_tool_options()
197 App::dialog_tool_options->clear();
198 App::dialog_tool_options->set_widget(options_table);
199 App::dialog_tool_options->set_local_name(_("Zoom Tool"));
200 App::dialog_tool_options->set_name("zoom");
204 StateZoom_Context::event_refresh_tool_options(const Smach::event& /*x*/)
206 refresh_tool_options();
207 return Smach::RESULT_ACCEPT;
210 StateZoom_Context::~StateZoom_Context()
214 // Restore layer clicking
215 get_work_area()->set_allow_layer_clicks(prev_workarea_layer_status_);
216 get_canvas_view()->work_area->reset_cursor();
218 App::dialog_tool_options->clear();
220 // Enable the time bar
221 //get_canvas_view()->set_sensitive_timebar(true);
223 // Bring back the tables if they were out before
224 //if(prev_table_status)get_canvas_view()->show_tables();
226 // Refresh the work area
227 get_work_area()->queue_draw();
229 App::toolbox->refresh();
231 get_canvas_view()->get_smach().process_event(EVENT_REFRESH_DUCKS);
235 StateZoom_Context::event_stop_handler(const Smach::event& /*x*/)
237 throw Smach::egress_exception();
241 StateZoom_Context::event_refresh_handler(const Smach::event& /*x*/)
243 return Smach::RESULT_ACCEPT;
247 StateZoom_Context::event_mouse_click_handler(const Smach::event& x)
249 if(x.key==EVENT_WORKAREA_BOX)
251 const EventBox& event(*reinterpret_cast<const EventBox*>(&x));
253 if(event.button==BUTTON_LEFT)
255 //respond to event box...
258 //Center the new position at the center of the box
260 //OH MY GOD HACK - the space is -1* and offset (by the value of the center of the canvas)...
263 const Point evcenter = (event.p1+event.p2)/2;
264 const Point realcenter = (get_work_area()->get_window_tl() + get_work_area()->get_window_br())/2;
265 newpos = -(evcenter - realcenter) + get_work_area()->get_focus_point();
268 //The zoom will be whatever the required factor to convert current box size to desired box size
269 Point tl = get_work_area()->get_window_tl();
270 Point br = get_work_area()->get_window_br();
272 Vector span = br - tl;
273 Vector v = event.p2 - event.p1;
275 //get the minimum zoom as long as it's greater than 1...
276 v[0] = abs(v[0])/abs(span[0]);
277 v[1] = abs(v[1])/abs(span[1]);
279 float zdiv = max(v[0],v[1]);
280 if(zdiv < 1 && zdiv > 0) //must be zoomable
282 get_work_area()->set_focus_point(newpos);
283 get_work_area()->set_zoom(get_work_area()->get_zoom()/zdiv);
286 return Smach::RESULT_ACCEPT;
290 if(x.key==EVENT_WORKAREA_MOUSE_BUTTON_UP)
292 const EventMouse& event(*reinterpret_cast<const EventMouse*>(&x));
294 if(event.button==BUTTON_LEFT)
298 //make the event pos be in the same space...
299 // The weird ass inverted center normalized space...
301 const Point realcenter = (get_work_area()->get_window_tl() + get_work_area()->get_window_br())/2;
302 evpos = -(event.pos - realcenter) + get_work_area()->get_focus_point();
306 focus point must zoom about the point evpos...
308 trans about an origin not 0:
312 Vector v = get_work_area()->get_focus_point() - evpos;
314 if(event.modifier & Gdk::CONTROL_MASK) //zoom out...
317 //get_work_area()->zoom_out();
318 get_work_area()->set_focus_point(evpos + v);
319 get_work_area()->set_zoom(get_work_area()->get_zoom()/ZOOMFACTOR);
323 //get_work_area()->zoom_in();
324 get_work_area()->set_focus_point(evpos + v);
325 get_work_area()->set_zoom(get_work_area()->get_zoom()*ZOOMFACTOR);
328 return Smach::RESULT_ACCEPT;
332 return Smach::RESULT_OK;