1 /* === S Y N F I G ========================================================= */
3 ** \brief Template Header
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 ** Copyright (c) 2007, 2008 Chris Moore
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 /* === S T A R T =========================================================== */
26 #ifndef __SYNFIG_GTKMM_WORKAREA_H
27 #define __SYNFIG_GTKMM_WORKAREA_H
29 /* === H E A D E R S ======================================================= */
35 #include <ETL/smart_ptr>
38 #include <gtkmm/drawingarea.h>
39 #include <gtkmm/table.h>
40 #include <gtkmm/adjustment.h>
41 #include <gtkmm/ruler.h>
42 #include <gtkmm/image.h>
43 #include <gdkmm/pixbuf.h>
44 #include <gdkmm/cursor.h>
45 #include <gdkmm/device.h>
47 #include <synfig/time.h>
48 #include <synfig/vector.h>
49 #include <synfig/general.h>
50 #include <synfig/renddesc.h>
51 #include <synfig/canvas.h>
54 #include "duckmatic.h"
57 /* === M A C R O S ========================================================= */
59 /* === T Y P E D E F S ===================================================== */
61 /* === C L A S S E S & S T R U C T S ======================================= */
66 template <typename T_, typename C_=std::less<T_,T_> >
67 class dereferenced_compare
70 typedef etl::loose_handle<T_> first_argument_type;
71 typedef etl::loose_handle<T_> second_argument_type;
72 typedef bool result_type;
78 namespace synfigapp { class CanvasInterface; };
80 namespace synfig { class Layer; };
81 namespace Gtk { class Frame; };
86 class WorkAreaTarget_Full;
91 class WorkAreaRenderer;
95 friend class WorkArea;
98 DirtyTrap(WorkArea *work_area);
103 class WorkArea : public Gtk::Table, public Duckmatic
105 friend class WorkAreaTarget;
106 friend class WorkAreaTarget_Full;
107 friend class DirtyTrap;
108 friend class WorkAreaRenderer;
109 friend class WorkAreaProgress;
112 -- ** -- P U B L I C T Y P E S ---------------------------------------------
117 void insert_renderer(const etl::handle<WorkAreaRenderer> &x);
118 void insert_renderer(const etl::handle<WorkAreaRenderer> &x,int priority);
119 void erase_renderer(const etl::handle<WorkAreaRenderer> &x);
120 void resort_render_set();
132 -- ** -- P R I V A T E D A T A ---------------------------------------------
137 std::set<etl::handle<WorkAreaRenderer> > renderer_set_;
139 etl::handle<studio::AsyncRenderer> async_renderer;
142 etl::loose_handle<synfigapp::CanvasInterface> canvas_interface;
143 etl::handle<synfig::Canvas> canvas;
144 etl::loose_handle<studio::Instance> instance;
145 etl::loose_handle<studio::CanvasView> canvas_view;
148 Gtk::DrawingArea *drawing_area;
149 Gtk::Adjustment scrollx_adjustment;
150 Gtk::Adjustment scrolly_adjustment;
153 Gtk::Button *menubutton;
154 Gtk::Frame *drawing_frame;
156 GdkDevice* curr_input_device;
159 int w; //!< Width of the image (in pixels)
160 int h; //!< Height of the image (in pixels)
161 synfig::Real canvaswidth; //!< Width of the canvas
162 synfig::Real canvasheight; //!< Height of the canvas
163 synfig::Real pw; //!< The width of a pixel
164 synfig::Real ph; //!< The height of a pixel
165 float zoom; //!< Zoom factor
166 float prev_zoom; //!< Previous Zoom factor
167 synfig::Point window_tl; //!< The (theoretical) top-left corner of the view window
168 synfig::Point window_br; //!< The (theoretical) bottom-right corner of the view window
170 guint32 last_event_time;
173 //unsigned char *buffer;
176 synfig::ProgressCallback *progresscallback;
179 synfig::RendDesc desc;
181 //! This flag is set if the user is dragging the video window
182 /*! \see drag_point */
185 etl::handle<Duckmatic::Duck> clicked_duck;
186 etl::handle<Duckmatic::Duck> hover_duck;
188 //! When dragging the viewport, this is set to the origin of the drag
189 synfig::Point drag_point;
191 synfig::Point curr_point;
194 synfig::Point previous_focus;
196 //! This flag is set if the grid should be drawn
199 //! This flag is set if the guides should be drawn
206 //! This flag is set if the entire frame is rendered rather than using tiles
209 //Glib::RefPtr<Gdk::Pixbuf> pix_buf;
211 //! This vector holds all of the tiles for this image
212 std::vector< std::pair<Glib::RefPtr<Gdk::Pixbuf>,int> > tile_book;
214 //! This integer describes the total times that the work are has been refreshed
217 //! This list holds the queue of tiles that need to be rendered
218 //std::list<int> tile_queue;
222 gint render_idle_func_id;
224 //! The coordinates of the focus the last time a part of the screen was refreshed
225 synfig::Point last_focus_point;
230 int low_res_pixel_size;
232 bool dirty_trap_enabled;
234 int dirty_trap_queued;
238 //! stores the future [1] and past [0] onion skins based on keyframes
241 etl::loose_handle<synfig::ValueNode> selected_value_node_;
243 bool allow_duck_clicks;
244 bool allow_layer_clicks;
246 bool curr_guide_is_x;
252 -- ** -- P U B L I C D A T A -----------------------------------------------
257 const etl::loose_handle<synfig::ValueNode>& get_selected_value_node() { return selected_value_node_; }
258 const synfig::Point& get_drag_point()const { return drag_point; }
259 std::vector< std::pair<Glib::RefPtr<Gdk::Pixbuf>,int> >& get_tile_book(){ return tile_book; }
260 int get_refreshes()const { return refreshes; }
261 bool get_canceled()const { return canceled_; }
262 bool get_queued()const { return queued; }
263 bool get_rendering()const { return rendering; }
264 #ifdef SINGLE_THREADED
265 bool get_updating()const;
266 void stop_updating(bool cancel = false);
268 bool get_full_frame()const { return full_frame; }
269 //int get_w()const { return w; }
270 //int get_h()const { return h; }
272 int get_tile_w()const { return tile_w; }
273 int get_tile_h()const { return tile_h; }
275 bool get_allow_layer_clicks() { return allow_layer_clicks; }
276 void set_allow_layer_clicks(bool value) { allow_layer_clicks=value; }
278 bool get_allow_duck_clicks() { return allow_duck_clicks; }
279 void set_allow_duck_clicks(bool value) { allow_duck_clicks=value; }
281 // used in renderer_ducks.cpp
284 // used in renderer_guides.cpp
285 GuideList::iterator curr_guide;
287 // used in renderer_timecode.cpp
288 int timecode_width, timecode_height;
291 -- ** -- P R I V A T E M E T H O D S ---------------------------------------
296 //unsigned char *get_buffer() { return buffer; }
297 bool set_wh(int w, int h,int chan=3);
299 int next_unrendered_tile(int refreshes)const;
300 int next_unrendered_tile()const { return next_unrendered_tile(refreshes); }
303 -- ** -- S I G N A L S -------------------------------------------------------
308 sigc::signal<void,GdkDevice* > signal_input_device_changed_;
310 //! One signal per button
311 sigc::signal<void,synfig::Point> signal_user_click_[5];
313 sigc::signal<void> signal_popup_menu_;
315 sigc::signal<void> signal_cursor_moved_;
316 sigc::signal<void> signal_rendering_;
318 sigc::signal<void> signal_onion_skin_changed_;
320 //! Signal for when the user clicks on a layer
321 sigc::signal<void, etl::handle<synfig::Layer> > signal_layer_selected_;
323 sigc::signal<void> signal_view_window_changed_;
327 sigc::signal<void>& signal_onion_skin_changed() { return signal_onion_skin_changed_; }
329 sigc::signal<void>& signal_rendering() { return signal_rendering_; }
331 sigc::signal<void>& signal_cursor_moved() { return signal_cursor_moved_; }
333 sigc::signal<void>& signal_view_window_changed() { return signal_view_window_changed_; }
334 void view_window_changed() { signal_view_window_changed()(); }
336 sigc::signal<void,GdkDevice* >& signal_input_device_changed() { return signal_input_device_changed_; }
338 sigc::signal<void> &signal_popup_menu() { return signal_popup_menu_; }
340 //! One signal per button (5 buttons)
341 sigc::signal<void,synfig::Point> &signal_user_click(int button=0){ return signal_user_click_[button]; }
343 sigc::signal<void, etl::handle<synfig::Layer> >& signal_layer_selected() { return signal_layer_selected_; }
346 -- ** -- P U B L I C M E T H O D S -----------------------------------------
350 void set_onion_skin(bool x);
351 bool get_onion_skin()const;
352 void toggle_onion_skin() { set_onion_skin(!get_onion_skin()); }
353 void set_onion_skins(int *onions);
355 void set_selected_value_node(etl::loose_handle<synfig::ValueNode> x);
357 bool is_dragging() { return dragging!=DRAG_NONE; }
359 DragMode get_dragging_mode() { return dragging; }
361 WorkArea(etl::loose_handle<synfigapp::CanvasInterface> canvas_interface);
364 void set_cursor(const Gdk::Cursor& x);
365 void set_cursor(Gdk::CursorType x);
367 const synfig::Point& get_cursor_pos()const { return curr_point; }
369 Gtk::Adjustment *get_scrollx_adjustment() { return &scrollx_adjustment; }
370 Gtk::Adjustment *get_scrolly_adjustment() { return &scrolly_adjustment; }
371 const Gtk::Adjustment *get_scrollx_adjustment()const { return &scrollx_adjustment; }
372 const Gtk::Adjustment *get_scrolly_adjustment()const { return &scrolly_adjustment; }
374 void set_instance(etl::loose_handle<studio::Instance> x) { instance=x; }
375 void set_canvas(etl::handle<synfig::Canvas> x) { canvas=x; }
376 void set_canvas_view(etl::loose_handle<studio::CanvasView> x) { canvas_view=x; }
377 etl::handle<synfig::Canvas> get_canvas()const { return canvas; }
378 etl::handle<studio::Instance> get_instance()const { return instance; }
379 etl::loose_handle<studio::CanvasView> get_canvas_view()const { return canvas_view; }
381 void refresh_dimension_info();
383 //! Enables showing of the grid
386 //! Disables showing of the grid
389 //! Toggles the showing of the grid
392 //! Returns the state of the show_grid flag
393 bool grid_status()const { return show_grid; }
395 void toggle_grid_snap() { Duckmatic::toggle_grid_snap(); }
397 bool get_show_guides()const { return show_guides; }
398 void set_show_guides(bool x);
399 void toggle_show_guides() { set_show_guides(!get_show_guides()); }
401 bool get_low_resolution_flag()const { return low_resolution; }
402 void set_low_resolution_flag(bool x);
403 void toggle_low_resolution_flag();
408 //! Sets the size of the grid
409 void set_grid_size(const synfig::Vector &s);
414 int get_quality()const { return quality; }
415 int get_low_res_pixel_size()const { return low_res_pixel_size; }
417 void set_quality(int x);
418 void set_low_res_pixel_size(int x);
421 int get_w()const { return w; }
422 int get_h()const { return h; }
423 int get_bpp()const { return bpp; }
426 const synfig::RendDesc &get_rend_desc()const { return desc; }
429 void set_rend_desc(const synfig::RendDesc &x) { desc=x; }
431 //! Converts screen coords (ie: pixels) to composition coordinates
432 synfig::Point screen_to_comp_coords(synfig::Point pos)const;
434 //! Converts composition coordinates to screen coords (ie: pixels)
435 synfig::Point comp_to_screen_coords(synfig::Point pos)const;
437 float get_pw()const { return pw; }
438 float get_ph()const { return ph; }
440 const synfig::Point &get_window_tl()const { return window_tl; }
441 const synfig::Point &get_window_br()const { return window_br; }
444 bool async_update_preview();
445 void async_update_finished();
446 void async_render_preview(synfig::Time time);
447 void async_render_preview();
449 bool sync_update_preview();
450 bool sync_render_preview(synfig::Time time);
451 bool sync_render_preview();
452 void sync_render_preview_hook();
454 void queue_render_preview();
457 void queue_draw_preview();
463 float get_zoom()const { return zoom; }
465 void set_zoom(float z);
468 void set_progress_callback(synfig::ProgressCallback *x) { progresscallback=x; }
469 synfig::ProgressCallback *get_progress_callback() { return progresscallback; }
471 void set_focus_point(const synfig::Point &x);
473 synfig::Point get_focus_point()const;
475 void done_rendering();
477 bool refresh(GdkEventExpose*bleh=NULL);
480 void refresh_cursor();
482 void save_meta_data();
483 void load_meta_data();
486 -- ** -- S I G N A L T E R M I N A L S -------------------------------------
490 bool on_key_press_event(GdkEventKey* event);
491 bool on_drawing_area_event(GdkEvent* event);
492 bool on_hruler_event(GdkEvent* event);
493 bool on_vruler_event(GdkEvent* event);
496 -- ** -- S T A T I C P U B L I C M E T H O D S ---------------------------
502 -- ** -- S T A T I C P R I V A T E M E T H O D S -------------------------
507 static gboolean __render_preview(gpointer data);
509 }; // END of class WorkArea
511 }; // END of namespace studio
513 /* === E N D =============================================================== */