1 /* === S Y N F I G ========================================================= */
2 /*! \file state_zoom.cpp
3 ** \brief Zoom Toole 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>
50 /* === U S I N G =========================================================== */
54 using namespace synfig;
55 using namespace studio;
57 /* === M A C R O S ========================================================= */
59 /* === G L O B A L S ======================================================= */
60 StateZoom studio::state_zoom;
62 const float ZOOMFACTOR = 1.25f;
64 /* === C L A S S E S & S T R U C T S ======================================= */
66 class studio::StateZoom_Context : public sigc::trackable
68 etl::handle<CanvasView> canvas_view_;
69 CanvasView::IsWorking is_working;
73 bool prev_workarea_layer_status_;
76 synfigapp::Settings& settings;
79 Gtk::Table options_table;
83 void refresh_tool_options(); //to refresh the toolbox
86 Smach::event_result event_stop_handler(const Smach::event& x);
87 Smach::event_result event_refresh_handler(const Smach::event& x);
88 Smach::event_result event_mouse_click_handler(const Smach::event& x);
89 Smach::event_result event_refresh_tool_options(const Smach::event& x);
91 //constructor destructor
92 StateZoom_Context(CanvasView* canvas_view);
96 const etl::handle<CanvasView>& get_canvas_view()const{return canvas_view_;}
97 etl::handle<synfigapp::CanvasInterface> get_canvas_interface()const{return canvas_view_->canvas_interface();}
98 synfig::Canvas::Handle get_canvas()const{return canvas_view_->get_canvas();}
99 WorkArea * get_work_area()const{return canvas_view_->get_work_area();}
101 //Modifying settings etc.
102 void load_settings();
103 void save_settings();
106 //void zoom(const Point& p1, const Point& p2);
108 }; // END of class StateGradient_Context
110 /* === M E T H O D S ======================================================= */
112 StateZoom::StateZoom():
113 Smach::state<StateZoom_Context>("zoom")
115 insert(event_def(EVENT_STOP,&StateZoom_Context::event_stop_handler));
116 insert(event_def(EVENT_REFRESH,&StateZoom_Context::event_refresh_handler));
117 insert(event_def(EVENT_WORKAREA_MOUSE_BUTTON_DOWN,&StateZoom_Context::event_mouse_click_handler));
118 //insert(event_def(EVENT_WORKAREA_MOUSE_BUTTON_DRAG,&StateZoom_Context::event_mouse_click_handler));
119 insert(event_def(EVENT_WORKAREA_BOX,&StateZoom_Context::event_mouse_click_handler));
120 //insert(event_def(EVENT_WORKAREA_BUTTON_CLICK,&StateZoom_Context::event_mouse_click_handler));
121 insert(event_def(EVENT_WORKAREA_MOUSE_BUTTON_UP,&StateZoom_Context::event_mouse_click_handler));
122 insert(event_def(EVENT_REFRESH_TOOL_OPTIONS,&StateZoom_Context::event_refresh_tool_options));
125 StateZoom::~StateZoom()
130 StateZoom_Context::load_settings()
134 //parse the arguments yargh!
135 /*if(settings.get_value("circle.feather",value))
136 set_feather(atof(value.c_str()));
142 StateZoom_Context::save_settings()
144 //settings.set_value("circle.fallofftype",strprintf("%d",get_falloff()));
148 StateZoom_Context::reset()
153 StateZoom_Context::StateZoom_Context(CanvasView* canvas_view):
154 canvas_view_(canvas_view),
155 is_working(*canvas_view),
156 prev_workarea_layer_status_(get_work_area()->get_allow_layer_clicks()),
157 settings(synfigapp::Main::get_selected_input_device()->settings())
159 // Set up the tool options dialog
160 //options_table.attach(*manage(new Gtk::Label(_("Zoom Tool"))), 0, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
164 options_table.show_all();
166 refresh_tool_options();
167 App::dialog_tool_options->present();
169 // Turn off layer clicking
170 get_work_area()->set_allow_layer_clicks(false);
172 // clear out the ducks
173 get_work_area()->clear_ducks(); //???
175 // Refresh the work area
176 get_work_area()->queue_draw();
178 // Hide the tables if they are showing
179 //prev_table_status=get_canvas_view()->tables_are_visible();
180 //if(prev_table_status)get_canvas_view()->hide_tables();
182 // Disable the time bar
183 //get_canvas_view()->set_sensitive_timebar(false);
186 //get_work_area()->signal_user_click().connect(sigc::mem_fun(*this,&studio::StateZoom_Context::on_user_click));
187 get_canvas_view()->work_area->set_cursor(Gdk::CROSSHAIR);
189 App::toolbox->refresh();
193 StateZoom_Context::refresh_tool_options()
195 App::dialog_tool_options->clear();
196 App::dialog_tool_options->set_widget(options_table);
197 App::dialog_tool_options->set_local_name(_("Zoom Tool"));
198 App::dialog_tool_options->set_name("zoom");
202 StateZoom_Context::event_refresh_tool_options(const Smach::event& /*x*/)
204 refresh_tool_options();
205 return Smach::RESULT_ACCEPT;
208 StateZoom_Context::~StateZoom_Context()
212 // Restore layer clicking
213 get_work_area()->set_allow_layer_clicks(prev_workarea_layer_status_);
214 get_canvas_view()->work_area->reset_cursor();
216 App::dialog_tool_options->clear();
218 // Enable the time bar
219 //get_canvas_view()->set_sensitive_timebar(true);
221 // Bring back the tables if they were out before
222 //if(prev_table_status)get_canvas_view()->show_tables();
224 // Refresh the work area
225 get_work_area()->queue_draw();
227 App::toolbox->refresh();
229 get_canvas_view()->get_smach().process_event(EVENT_REFRESH_DUCKS);
233 StateZoom_Context::event_stop_handler(const Smach::event& /*x*/)
235 throw Smach::egress_exception();
239 StateZoom_Context::event_refresh_handler(const Smach::event& /*x*/)
241 return Smach::RESULT_ACCEPT;
245 StateZoom_Context::event_mouse_click_handler(const Smach::event& x)
247 if(x.key==EVENT_WORKAREA_BOX)
249 const EventBox& event(*reinterpret_cast<const EventBox*>(&x));
251 if(event.button==BUTTON_LEFT)
253 //respond to event box...
256 //Center the new position at the center of the box
258 //OH MY GOD HACK - the space is -1* and offset (by the value of the center of the canvas)...
261 const Point evcenter = (event.p1+event.p2)/2;
262 const Point realcenter = (get_work_area()->get_window_tl() + get_work_area()->get_window_br())/2;
263 newpos = -(evcenter - realcenter) + get_work_area()->get_focus_point();
266 //The zoom will be whatever the required factor to convert current box size to desired box size
267 Point tl = get_work_area()->get_window_tl();
268 Point br = get_work_area()->get_window_br();
270 Vector span = br - tl;
271 Vector v = event.p2 - event.p1;
273 //get the minimum zoom as long as it's greater than 1...
274 v[0] = abs(v[0])/abs(span[0]);
275 v[1] = abs(v[1])/abs(span[1]);
277 float zdiv = max(v[0],v[1]);
278 if(zdiv < 1 && zdiv > 0) //must be zoomable
280 get_work_area()->set_focus_point(newpos);
281 get_work_area()->set_zoom(get_work_area()->get_zoom()/zdiv);
284 return Smach::RESULT_ACCEPT;
288 if(x.key==EVENT_WORKAREA_MOUSE_BUTTON_UP)
290 const EventMouse& event(*reinterpret_cast<const EventMouse*>(&x));
292 if(event.button==BUTTON_LEFT)
296 //make the event pos be in the same space...
297 // The weird ass inverted center normalized space...
299 const Point realcenter = (get_work_area()->get_window_tl() + get_work_area()->get_window_br())/2;
300 evpos = -(event.pos - realcenter) + get_work_area()->get_focus_point();
304 focus point must zoom about the point evpos...
306 trans about an origin not 0:
310 Vector v = get_work_area()->get_focus_point() - evpos;
312 if(event.modifier & Gdk::CONTROL_MASK) //zoom out...
315 //get_work_area()->zoom_out();
316 get_work_area()->set_focus_point(evpos + v);
317 get_work_area()->set_zoom(get_work_area()->get_zoom()/ZOOMFACTOR);
321 //get_work_area()->zoom_in();
322 get_work_area()->set_focus_point(evpos + v);
323 get_work_area()->set_zoom(get_work_area()->get_zoom()*ZOOMFACTOR);
326 return Smach::RESULT_ACCEPT;
330 return Smach::RESULT_OK;