Fix bugs in previous commit that caused FTBFS in synfig and ETL FTBFS with older...
[synfig.git] / synfig-studio / tags / synfigstudio_0_61_07_rc1 / src / gtkmm / workarea.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file workarea.h
3 **      \brief Template Header
4 **
5 **      $Id$
6 **
7 **      \legal
8 **      Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
9 **      Copyright (c) 2007 Chris Moore
10 **
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.
15 **
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.
20 **      \endlegal
21 */
22 /* ========================================================================= */
23
24 /* === S T A R T =========================================================== */
25
26 #ifndef __SYNFIG_GTKMM_WORKAREA_H
27 #define __SYNFIG_GTKMM_WORKAREA_H
28
29 /* === H E A D E R S ======================================================= */
30
31 #include <list>
32 #include <map>
33 #include <set>
34
35 #include <ETL/smart_ptr>
36 #include <ETL/handle>
37
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>
46
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>
52
53 #include "zoomdial.h"
54 #include "duckmatic.h"
55 #include "instance.h"
56
57 /* === M A C R O S ========================================================= */
58
59 /* === T Y P E D E F S ===================================================== */
60
61 /* === C L A S S E S & S T R U C T S ======================================= */
62
63 /*
64 namespace etl {
65
66 template <typename T_, typename C_=std::less<T_,T_> >
67 class dereferenced_compare
68 {
69 public:
70         typedef etl::loose_handle<T_> first_argument_type;
71         typedef etl::loose_handle<T_> second_argument_type;
72         typedef bool result_type;
73
74 }
75 };
76 */
77
78 namespace synfigapp { class CanvasInterface; };
79
80 namespace synfig { class Layer; };
81 namespace Gtk { class Frame; };
82
83 namespace studio
84 {
85 class WorkAreaTarget;
86 class WorkAreaTarget_Full;
87
88 class Instance;
89 class CanvasView;
90 class WorkArea;
91 class WorkAreaRenderer;
92 class AsyncRenderer;
93 class DirtyTrap
94 {
95         friend class WorkArea;
96         WorkArea *work_area;
97 public:
98         DirtyTrap(WorkArea *work_area);
99         ~DirtyTrap();
100 };
101
102
103 class WorkArea : public Gtk::Table, public Duckmatic
104 {
105         friend class WorkAreaTarget;
106         friend class WorkAreaTarget_Full;
107         friend class DirtyTrap;
108         friend class WorkAreaRenderer;
109         friend class WorkAreaProgress;
110
111         /*
112  -- ** -- P U B L I C   T Y P E S ---------------------------------------------
113         */
114
115 public:
116
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();
121
122         enum DragMode
123         {
124                 DRAG_NONE=0,
125                 DRAG_WINDOW,
126                 DRAG_DUCK,
127                 DRAG_GUIDE,
128                 DRAG_BOX
129         };
130
131         /*
132  -- ** -- P R I V A T E   D A T A ---------------------------------------------
133         */
134
135 private:
136
137         std::set<etl::handle<WorkAreaRenderer> > renderer_set_;
138
139         etl::handle<studio::AsyncRenderer> async_renderer;
140
141
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;
146
147         // Widgets
148         Gtk::DrawingArea *drawing_area;
149         Gtk::Adjustment scrollx_adjustment;
150         Gtk::Adjustment scrolly_adjustment;
151         Gtk::VRuler *vruler;
152         Gtk::HRuler *hruler;
153         Gtk::Button *menubutton;
154         Gtk::Frame *drawing_frame;
155
156         GdkDevice* curr_input_device;
157
158         // Bleh!
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
169
170         guint32 last_event_time;
171
172         int bpp;
173         //unsigned char *buffer;
174
175         //! ???
176         synfig::ProgressCallback *progresscallback;
177
178         //! ???
179         synfig::RendDesc desc;
180
181         //! This flag is set if the user is dragging the video window
182         /*! \see drag_point */
183         DragMode dragging;
184
185         etl::handle<Duckmatic::Duck> clicked_duck;
186         etl::handle<Duckmatic::Duck> hover_duck;
187
188         //! When dragging the viewport, this is set to the origin of the drag
189         synfig::Point drag_point;
190
191         synfig::Point curr_point;
192
193         //! ???
194         synfig::Point previous_focus;
195
196         //! This flag is set if the grid should be drawn
197         bool show_grid;
198
199         //! This flag is set if the guides should be drawn
200         bool show_guides;
201
202         bool low_resolution;
203
204         bool meta_data_lock;
205
206         //! This flag is set if the entire frame is rendered rather than using tiles
207         bool full_frame;
208
209         //Glib::RefPtr<Gdk::Pixbuf> pix_buf;
210
211         //! This vector holds all of the tiles for this image
212         std::vector< std::pair<Glib::RefPtr<Gdk::Pixbuf>,int> > tile_book;
213
214         //! This integer describes the total times that the work are has been refreshed
215         int refreshes;
216
217         //! This list holds the queue of tiles that need to be rendered
218         //std::list<int> tile_queue;
219
220         int tile_w, tile_h;
221
222         gint render_idle_func_id;
223
224         //! The coordinates of the focus the last time a part of the screen was refreshed
225         synfig::Point last_focus_point;
226
227         bool canceled_;
228
229         int quality;
230
231         bool dirty_trap_enabled;
232
233         int dirty_trap_queued;
234
235
236         bool onion_skin;
237
238         etl::loose_handle<synfig::ValueNode> selected_value_node_;
239
240         bool allow_duck_clicks;
241         bool allow_layer_clicks;
242         bool cancel;
243         bool curr_guide_is_x;
244         bool dirty;
245         bool queued;
246         bool rendering;
247
248         /*
249  -- ** -- P U B L I C   D A T A -----------------------------------------------
250         */
251
252 public:
253
254         const etl::loose_handle<synfig::ValueNode>& get_selected_value_node() { return  selected_value_node_; }
255         const synfig::Point& get_drag_point()const { return drag_point; }
256         std::vector< std::pair<Glib::RefPtr<Gdk::Pixbuf>,int> >& get_tile_book(){ return tile_book; }
257         int get_refreshes()const { return refreshes; }
258         bool get_canceled()const { return canceled_; }
259         bool get_queued()const { return queued; }
260         bool get_rendering()const { return rendering; }
261         bool get_full_frame()const { return full_frame; }
262         //int get_w()const { return w; }
263         //int get_h()const { return h; }
264
265         int get_tile_w()const { return tile_w; }
266         int get_tile_h()const { return tile_h; }
267
268         bool get_allow_layer_clicks() { return allow_layer_clicks; }
269         void set_allow_layer_clicks(bool value) { allow_layer_clicks=value; }
270
271         bool get_allow_duck_clicks() { return allow_duck_clicks; }
272         void set_allow_duck_clicks(bool value) { allow_duck_clicks=value; }
273
274         // used in renderer_ducks.cpp
275         bool solid_lines;
276
277         // used in renderer_guides.cpp
278         GuideList::iterator curr_guide;
279
280         // used in renderer_timecode.cpp
281         int timecode_width, timecode_height;
282
283         /*
284  -- ** -- P R I V A T E   M E T H O D S ---------------------------------------
285         */
286
287 private:
288
289         //unsigned char *get_buffer() { return buffer; }
290         bool set_wh(int w, int h,int chan=3);
291
292         int next_unrendered_tile(int refreshes)const;
293         int next_unrendered_tile()const { return next_unrendered_tile(refreshes); }
294
295         /*
296  -- ** -- S I G N A L S -------------------------------------------------------
297         */
298
299 private:
300
301         sigc::signal<void,GdkDevice* > signal_input_device_changed_;
302
303         //! One signal per button
304         sigc::signal<void,synfig::Point> signal_user_click_[5];
305
306         sigc::signal<void> signal_popup_menu_;
307
308         sigc::signal<void> signal_cursor_moved_;
309         sigc::signal<void> signal_rendering_;
310
311         sigc::signal<void> signal_onion_skin_changed_;
312
313         //! Signal for when the user clicks on a layer
314         sigc::signal<void, etl::handle<synfig::Layer> > signal_layer_selected_;
315
316         sigc::signal<void> signal_view_window_changed_;
317
318 public:
319
320         sigc::signal<void>& signal_onion_skin_changed() { return signal_onion_skin_changed_; }
321
322         sigc::signal<void>& signal_rendering() { return signal_rendering_; }
323
324         sigc::signal<void>& signal_cursor_moved() { return signal_cursor_moved_; }
325
326         sigc::signal<void>& signal_view_window_changed() { return signal_view_window_changed_; }
327         void view_window_changed() { signal_view_window_changed()(); }
328
329         sigc::signal<void,GdkDevice* >& signal_input_device_changed() { return signal_input_device_changed_; }
330
331         sigc::signal<void> &signal_popup_menu() { return signal_popup_menu_; }
332
333         //! One signal per button (5 buttons)
334         sigc::signal<void,synfig::Point> &signal_user_click(int button=0){ return signal_user_click_[button]; }
335
336         sigc::signal<void, etl::handle<synfig::Layer> >& signal_layer_selected() { return signal_layer_selected_; }
337
338         /*
339  -- ** -- P U B L I C   M E T H O D S -----------------------------------------
340         */
341
342 public:
343         void set_onion_skin(bool x);
344         bool get_onion_skin()const;
345         void toggle_onion_skin() { set_onion_skin(!get_onion_skin()); }
346
347         void set_selected_value_node(etl::loose_handle<synfig::ValueNode> x);
348
349         bool is_dragging() { return dragging!=DRAG_NONE; }
350
351         DragMode get_dragging_mode() { return dragging; }
352
353         WorkArea(etl::loose_handle<synfigapp::CanvasInterface> canvas_interface);
354         virtual ~WorkArea();
355
356         void set_cursor(const Gdk::Cursor& x);
357         void set_cursor(Gdk::CursorType x);
358
359         const synfig::Point& get_cursor_pos()const { return curr_point; }
360
361         Gtk::Adjustment *get_scrollx_adjustment() { return &scrollx_adjustment; }
362         Gtk::Adjustment *get_scrolly_adjustment() { return &scrolly_adjustment; }
363         const Gtk::Adjustment *get_scrollx_adjustment()const { return &scrollx_adjustment; }
364         const Gtk::Adjustment *get_scrolly_adjustment()const { return &scrolly_adjustment; }
365
366         void set_instance(etl::loose_handle<studio::Instance> x) { instance=x; }
367         void set_canvas(etl::handle<synfig::Canvas> x) { canvas=x; }
368         void set_canvas_view(etl::loose_handle<studio::CanvasView> x) { canvas_view=x; }
369         etl::handle<synfig::Canvas> get_canvas()const { return canvas; }
370         etl::handle<studio::Instance> get_instance()const { return instance; }
371         etl::loose_handle<studio::CanvasView> get_canvas_view()const { return canvas_view; }
372
373         void refresh_dimension_info();
374
375         //! Enables showing of the grid
376         void enable_grid();
377
378         //! Disables showing of the grid
379         void disable_grid();
380
381         //! Toggles the showing of the grid
382         void toggle_grid();
383
384         //! Returns the state of the show_grid flag
385         bool grid_status()const { return show_grid; }
386
387         void toggle_grid_snap() { Duckmatic::toggle_grid_snap(); }
388
389         bool get_show_guides()const { return show_guides; }
390         void set_show_guides(bool x);
391         void toggle_show_guides() { set_show_guides(!get_show_guides()); }
392
393         bool get_low_resolution_flag()const { return low_resolution; }
394         void set_low_resolution_flag(bool x);
395         void toggle_low_resolution_flag();
396
397         //! ???
398         void queue_scroll();
399
400         //! Sets the size of the grid
401         void set_grid_size(const synfig::Vector &s);
402
403         //! ??
404         void popup_menu();
405
406         int get_quality()const { return quality; }
407
408         void set_quality(int x);
409
410
411         int get_w()const { return w; }
412         int get_h()const { return h; }
413         int get_bpp()const { return bpp; }
414
415         //! ??
416         const synfig::RendDesc &get_rend_desc()const { return desc; }
417
418         //! ??
419         void set_rend_desc(const synfig::RendDesc &x) { desc=x; }
420
421         //! Converts screen coords (ie: pixels) to composition coordinates
422         synfig::Point screen_to_comp_coords(synfig::Point pos)const;
423
424         //! Converts composition coordinates to screen coords (ie: pixels)
425         synfig::Point comp_to_screen_coords(synfig::Point pos)const;
426
427         float get_pw()const { return pw; }
428         float get_ph()const { return ph; }
429
430         const synfig::Point &get_window_tl()const { return window_tl; }
431         const synfig::Point &get_window_br()const { return window_br; }
432
433
434         bool async_update_preview();
435         void async_update_finished();
436         void async_render_preview(synfig::Time time);
437         void async_render_preview();
438
439         bool sync_update_preview();
440         bool sync_render_preview(synfig::Time time);
441         bool sync_render_preview();
442         void sync_render_preview_hook();
443
444         void queue_render_preview();
445
446
447         void queue_draw_preview();
448
449         void zoom_in();
450         void zoom_out();
451         void zoom_fit();
452         void zoom_norm();
453         float get_zoom()const { return zoom; }
454
455         void set_zoom(float z);
456
457
458         void set_progress_callback(synfig::ProgressCallback *x) { progresscallback=x; }
459         synfig::ProgressCallback *get_progress_callback() { return progresscallback; }
460
461         void set_focus_point(const synfig::Point &x);
462
463         synfig::Point get_focus_point()const;
464
465         void done_rendering();
466
467         bool refresh(GdkEventExpose*bleh=NULL);
468
469         void reset_cursor();
470         void refresh_cursor();
471
472         void save_meta_data();
473         void load_meta_data();
474
475         /*
476  -- ** -- S I G N A L   T E R M I N A L S -------------------------------------
477         */
478
479 private:
480         bool on_key_press_event(GdkEventKey* event);
481         bool on_drawing_area_event(GdkEvent* event);
482         bool on_hruler_event(GdkEvent* event);
483         bool on_vruler_event(GdkEvent* event);
484
485         /*
486  -- ** -- S T A T I C   P U B L I C   M E T H O D S ---------------------------
487         */
488
489 public:
490
491         /*
492  -- ** -- S T A T I C   P R I V A T E   M E T H O D S -------------------------
493         */
494
495 private:
496
497         static gboolean __render_preview(gpointer data);
498
499 }; // END of class WorkArea
500
501 }; // END of namespace studio
502
503 /* === E N D =============================================================== */
504
505 #endif