1 /* === S Y N F I G ========================================================= */
3 ** \brief Template Header
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 /* === S T A R T =========================================================== */
25 #ifndef __SYNFIG_STUDIO_GTKMM_CANVASVIEW_H
26 #define __SYNFIG_STUDIO_GTKMM_CANVASVIEW_H
28 /* === H E A D E R S ======================================================= */
30 #include <gtkmm/window.h>
31 #include <gtkmm/image.h>
32 #include <gtkmm/tooltips.h>
33 #include <gtkmm/table.h>
34 #include <gtkmm/statusbar.h>
35 #include <gtkmm/progressbar.h>
36 #include <gtkmm/button.h>
37 #include <gtkmm/menu.h>
38 #include <gtkmm/treeview.h>
39 #include <gtkmm/treestore.h>
40 #include <gtkmm/scrolledwindow.h>
41 #include <gtkmm/notebook.h>
42 #include <gdkmm/device.h>
44 #include <synfigapp/canvasinterface.h>
45 #include <synfigapp/selectionmanager.h>
47 #include <synfig/canvas.h>
48 #include <synfig/string.h>
49 #include <synfig/time.h>
52 #include "canvasproperties.h"
53 #include "canvasoptions.h"
55 #include "cellrenderer_timetrack.h"
58 #include "layertreestore.h"
59 #include "layertree.h"
60 #include "childrentreestore.h"
61 #include "childrentree.h"
62 #include "keyframetreestore.h"
63 #include "keyframetree.h"
65 #include "dialog_waypoint.h"
66 #include "dialog_keyframe.h"
68 #include "duckmatic.h"
69 #include <gtkmm/scale.h>
71 #include <gtkmm/uimanager.h>
78 #include <gtkmm/toggleaction.h>
79 #include <gtkmm/radioaction.h>
80 #include <synfig/rect.h>
82 #include "adjust_window.h"
84 #include <synfig/transform.h>
86 /* === M A C R O S ========================================================= */
88 #ifndef DEBUGPOINT_CLASS
90 #define DEBUGPOINT_CLASS(x) struct debugpointclass_ ## x { debugpointclass_ ## x () { DEBUGPOINT(); } ~debugpointclass_ ## x () { DEBUGPOINT(); } } badfthguae_ ## x ;
92 #define DEBUGPOINT_CLASS(x)
96 /* === T Y P E D E F S ===================================================== */
98 /* === C L A S S E S & S T R U C T S ======================================= */
102 class CanvasViewUIInterface;
103 class CanvasViewSelectionManager;
105 class CellRenderer_TimeTrack;
106 class CellRenderer_ValueBase;
107 class UniversalScrubber;
114 class AudioContainer;
117 class Widget_Timeslider;
120 class Dialog_SoundSelect;
121 class Dialog_Preview;
123 class synfig::TransformStack;
126 class Dock_Keyframes;
128 class CanvasView : public Gtk::Window, public etl::shared_object
130 friend class UniversalScrubber;
131 friend class Dock_Layers;
132 friend class Dock_Children;
133 friend class Dock_Keyframes;
135 friend class CanvasViewUIInterface;
136 friend class CanvasViewSelectionManager;
138 friend class Duckmatic;
141 -- ** -- P U B L I C T Y P E S ---------------------------------------------
146 typedef etl::handle<CanvasView> Handle;
148 typedef etl::handle<const CanvasView> ConstHandle;
150 typedef etl::loose_handle<CanvasView> LooseHandle;
152 typedef LayerTreeStore::Model LayerTreeModel;
154 typedef ChildrenTreeStore::Model ChildrenTreeModel;
156 //! Create an instance of this class whenever doing a longer task.
157 /*! Make sure that you check the bool value of this class occasionaly
158 ** to make sure the action has not been canceled. */
161 CanvasView &canvas_view_;
164 IsWorking(CanvasView &canvas_view_);
166 operator bool()const;
168 friend class IsWorking;
170 typedef synfigapp::CanvasInterface::Mode Mode;
173 -- ** -- P R I V A T E D A T A ---------------------------------------------
177 std::auto_ptr<WorkArea> work_area;
179 WorkArea* get_work_area() { return work_area.get(); }
182 synfig::TransformStack curr_transform_stack;
183 bool curr_transform_stack_set;
194 etl::loose_handle<Instance> instance_;
195 etl::handle<synfigapp::CanvasInterface> canvas_interface_;
199 //! Sound and information to play it
200 etl::handle<AudioContainer> audio;
201 studio::Widget_Sound *disp_audio; //should this be put into thing too?
203 SigC::Connection playcon;
204 SigC::Connection stopcon;
206 std::auto_ptr<UniversalScrubber> universal_scrubber;
208 //! Tooltip controler
209 Gtk::Tooltips tooltips;
213 //! TreeModel for the layers
214 LayerTreeModel layer_tree_model;
216 //! TreeModel for the the children
217 ChildrenTreeModel children_tree_model;
219 //Glib::RefPtr<LayerTreeStore> layer_tree_store_;
221 //Glib::RefPtr<ChildrenTreeStore> children_tree_store_;
223 //Glib::RefPtr<KeyframeTreeStore> keyframe_tree_store_;
227 //std::map<synfig::String,Glib::RefPtr<Gtk::TreeModel> > tree_model_book_;
228 std::map<synfig::String,Glib::RefPtr<Glib::ObjectBase> > ref_obj_book_;
229 std::map<synfig::String,Gtk::Widget*> ext_widget_book_;
232 //! The time adjustment's scope is defined by the time_window adjustment
233 Gtk::Adjustment time_adjustment_;
235 //! The time_window adjustment governs the position of the time window on the whole time line
236 //Gtk::Adjustment time_window_adjustment_;
237 studio::Adjust_Window time_window_adjustment_;
240 LayerTree *layer_tree;
242 ChildrenTree *children_tree;
244 KeyframeTree *keyframe_tree;
246 Gtk::Widget *keyframe_tab_child;
248 Gtk::ProgressBar *progressbar;
249 Gtk::Statusbar *statusbar;
251 Gtk::TreeRow children_canvas_row;
252 Gtk::TreeRow children_valuenode_row;
254 Gtk::Button *stopbutton;
255 Gtk::Button *refreshbutton;
256 Gtk::Button *treetogglebutton;
257 Gtk::Notebook *notebook;
258 Gtk::Widget *timebar;
260 Widget_Time *current_time_widget;
261 void on_current_time_widget_changed();
263 std::auto_ptr<Widget_Timeslider> timeslider;
265 std::list<sigc::connection> duck_changed_connections;
269 Gtk::Button *animatebutton;
270 Gtk::Button *keyframebutton;
272 /* DEBUGPOINT_CLASS(8);
274 Gtk::Menu duckmaskmenu;
275 DEBUGPOINT_CLASS(77);
276 Gtk::Menu qualitymenu;
280 DEBUGPOINT_CLASS(777);
282 DEBUGPOINT_CLASS(71);
283 Gtk::Menu canvasmenu;
284 DEBUGPOINT_CLASS(73);
288 DEBUGPOINT_CLASS(74);
289 Gtk::Menu newlayermenu;
290 DEBUGPOINT_CLASS(76);
293 DEBUGPOINT_CLASS(99);
294 Gtk::Menu keyframemenu;
301 Gtk::CheckMenuItem* duck_mask_position;
302 Gtk::CheckMenuItem* duck_mask_vertex;
303 Gtk::CheckMenuItem* duck_mask_tangent;
304 Gtk::CheckMenuItem* duck_mask_radius;
305 Gtk::CheckMenuItem* duck_mask_width;
306 Gtk::CheckMenuItem* duck_mask_angle;
311 Glib::RefPtr<Gtk::ToggleAction> duck_mask_position;
312 Glib::RefPtr<Gtk::ToggleAction> duck_mask_vertex;
313 Glib::RefPtr<Gtk::ToggleAction> duck_mask_tangent;
314 Glib::RefPtr<Gtk::ToggleAction> duck_mask_radius;
315 Glib::RefPtr<Gtk::ToggleAction> duck_mask_width;
316 Glib::RefPtr<Gtk::ToggleAction> duck_mask_angle;
318 Gtk::RadioButtonGroup quality_group;
320 Glib::RefPtr<Gtk::ActionGroup> action_group;
323 etl::handle<synfigapp::UIInterface> ui_interface_;
324 etl::handle<synfigapp::SelectionManager> selection_manager_;
328 sigc::signal<void> signal_deleted_;
330 bool rebuild_ducks_queued;
331 sigc::connection queue_rebuild_ducks_connection;
334 -- ** -- P U B L I C D A T A -----------------------------------------------
338 void queue_rebuild_ducks();
339 sigc::signal<void>& signal_deleted() { return signal_deleted_; }
343 bool duck_refresh_flag;
344 bool duck_refresh_needed;
346 //! This is for the IsWorking class.
353 -- ** -- D I A L O G S -------------------------------------------------------
358 CanvasProperties canvas_properties;
359 CanvasOptions canvas_options;
360 RenderSettings render_settings;
361 Dialog_Waypoint waypoint_dialog;
362 Dialog_Keyframe keyframe_dialog;
364 std::auto_ptr<Dialog_Preview> preview_dialog;
365 //std::auto_ptr<Dialog_PreviewOptions> previewoption_dialog;
366 std::auto_ptr<Dialog_SoundSelect> sound_dialog;
369 -- ** -- P R I V A T E M E T H O D S ---------------------------------------
374 // Constructor is private to force the use of the "create()" constructor
375 CanvasView(etl::loose_handle<Instance> instance,etl::handle<synfigapp::CanvasInterface> canvas_interface);
377 //! Constructor Helper
378 Gtk::Widget* create_layer_tree();
380 //! Constructor Helper
381 Gtk::Widget* create_children_tree();
383 //! Constructor Helper
384 Gtk::Widget* create_keyframe_tree();
386 //! Constructor Helper
387 Gtk::Widget* create_status_bar();
389 //! Constructor Helper - Initializes all of the menus
392 bool duck_change_param(const synfig::Point &value,synfig::Layer::Handle layer, synfig::String param_name);
394 void refresh_time_window();
396 void time_was_changed();
398 void refresh_rend_desc();
400 void toggle_duck_mask(Duckmatic::Type type);
402 Gtk::Widget *create_work_area();
404 Gtk::Widget *create_time_bar();
408 void popup_param_menu_bezier(float location, synfigapp::ValueDesc value_desc)
409 { popup_param_menu(value_desc,location); }
411 void popup_param_menu(synfigapp::ValueDesc value_desc, float location=0);
414 void workarea_layer_selected(synfig::Layer::Handle layer);
416 void selected_layer_color_set(synfig::Color color);
420 void register_layer_type(synfig::Layer::Book::value_type &lyr,std::map<synfig::String,Gtk::Menu*>*);
422 //! Rebuilds the "new layer" menu
423 void build_new_layer_menu(Gtk::Menu &menu);
425 void rebuild_ducks_layer_(synfig::TransformStack& transform_stack, synfig::Canvas::Handle canvas, std::set<synfig::Layer::Handle>& selected_list);
428 -- ** -- P U B L I C M E T H O D S -----------------------------------------
432 const synfig::TransformStack& get_curr_transform_stack()const { return curr_transform_stack; }
434 const synfig::Rect& get_bbox()const { return bbox; }
436 Glib::RefPtr<Glib::ObjectBase> get_ref_obj(const synfig::String& x);
437 Glib::RefPtr<const Glib::ObjectBase> get_ref_obj(const synfig::String& x)const;
438 void set_ref_obj(const synfig::String& x, Glib::RefPtr<Glib::ObjectBase> y);
440 Glib::RefPtr<Gtk::TreeModel> get_tree_model(const synfig::String& x);
441 Glib::RefPtr<const Gtk::TreeModel> get_tree_model(const synfig::String& x)const;
442 void set_tree_model(const synfig::String& x, Glib::RefPtr<Gtk::TreeModel> y);
444 Gtk::Widget* get_ext_widget(const synfig::String& x);
445 void set_ext_widget(const synfig::String& x, Gtk::Widget* y);
447 //std::map<synfig::String,Gtk::Widget*>& tree_view_book() { return tree_view_book_; }
448 //std::map<synfig::String,Gtk::Widget*>& ext_widget_book() { return tree_view_book_; }
450 void popup_main_menu();
452 Smach& get_smach() { return smach_; }
454 const Smach& get_smach()const { return smach_; }
456 Smach::event_result process_event_key(EventKey x);
458 void popup_layer_menu(synfig::Layer::Handle layer);
460 virtual ~CanvasView();
462 void set_mode(Mode x) { canvas_interface()->set_mode(x); }
464 Mode get_mode()const { return canvas_interface()->get_mode(); }
466 Gtk::Adjustment &time_adjustment() { return time_adjustment_; }
468 const Gtk::Adjustment &time_adjustment()const { return time_adjustment_; }
470 studio::Adjust_Window &time_window_adjustment() { return time_window_adjustment_; }
472 const studio::Adjust_Window &time_window_adjustment()const { return time_window_adjustment_; }
474 etl::handle<synfigapp::UIInterface> get_ui_interface() { return ui_interface_;}
476 etl::handle<synfigapp::SelectionManager> get_selection_manager() { return selection_manager_; }
478 Glib::RefPtr<Gtk::TreeModel> layer_tree_store() { return get_tree_model("layers"); }
480 Glib::RefPtr<const Gtk::TreeModel> layer_tree_store()const { return get_tree_model("layers"); }
482 Glib::RefPtr<Gtk::TreeModel> children_tree_store() { return get_tree_model("children"); }
484 Glib::RefPtr<const Gtk::TreeModel> children_tree_store()const { return get_tree_model("children"); }
486 Glib::RefPtr<Gtk::TreeModel> keyframe_tree_store() { return get_tree_model("keyframes"); }
488 Glib::RefPtr<const Gtk::TreeModel> keyframe_tree_store()const { return get_tree_model("keyframes"); }
490 void set_time(synfig::Time t) { canvas_interface_->set_time(t); }
492 synfig::Time get_time() { return canvas_interface_->get_time(); }
494 etl::handle<synfig::Canvas> get_canvas()const { return canvas_interface_->get_canvas(); }
496 etl::handle<Instance> get_instance()const { return instance_; }
498 etl::handle<synfigapp::CanvasInterface> canvas_interface() { return canvas_interface_; }
500 etl::handle<const synfigapp::CanvasInterface> canvas_interface()const { return canvas_interface_; }
502 void add_actions_to_menu(Gtk::Menu *menu, const synfigapp::Action::ParamList ¶m_list, synfigapp::Action::Category category=synfigapp::Action::CATEGORY_ALL)const;
504 //! Updates the title of the window
507 //! Closes this canvas view
510 //! Stops the currently executing action
511 /*! \see get_cancel_status(), reset_cancel_status(), IsWorking */
512 void stop() { cancel=true; }
514 //! Returns the cancel status
515 /*! \see stop(), reset_cancel_status(), IsWorking */
516 bool get_cancel_status()const { return cancel; }
518 //! Resets the cancel status
519 /*! \see stop(), get_cancel_status(), IsWorking */
520 void reset_cancel_status() { cancel=false; }
522 void new_child_canvas();
524 //! Rebuilds layer_tree_store_ from the Canvas. Maintains selected items.
525 void rebuild_tables();
527 //! Builds layer_tree_store_ from the Canvas. Does not maintain selected items.
530 //! Refreshes the data for the tables
531 void refresh_tables();
533 //void rebuild_layer_table();
534 //void build_layer_table();
535 //void refresh_layer_table();
537 // void rebuild_canvas_table();
538 // void build_canvas_table();
539 // void refresh_canvas_table();
541 // void rebuild_valuenode_table();
542 // void build_valuenode_table();
543 // void refresh_valuenode_table();
546 void rebuild_ducks();
548 //bool add_to_ducks(synfigapp::ValueDesc value_desc, synfig::ParamDesc *param_desc=NULL);
550 //! Starts "playing" the animation in real-time
553 //! Shows the tables (Layer/Children)
556 //! Hides the tables (Layer/Children)
559 //! Toggles the tables
560 void toggle_tables();
562 //! Gets the table status
563 bool tables_are_visible();
565 //! Shows the time bar
568 //! Hides the time bar
571 //t Enables or disables interaction with the timebar
572 void timebar_set_sensitive(bool sensitive);
574 void do_rotoscope_bline();
578 void do_rotoscope_poly();
583 void time_zoom_out();
585 void add_layer(synfig::String x);
587 void show_keyframe_dialog();
589 void play_audio(float t);
594 void on_waypoint_clicked(synfigapp::ValueDesc,synfig::Waypoint, int button);
596 void preview_option() {on_preview_option();}
601 -- ** -- S I G N A L T E R M I N A L S -------------------------------------
606 void on_unselect_layers();
608 void on_input_device_changed(GdkDevice*);
610 virtual void on_hide();
612 virtual bool on_focus_in_event(GdkEventFocus*);
613 virtual bool on_focus_out_event(GdkEventFocus*);
615 //bool on_children_tree_event(GdkEvent *event);
617 bool on_keyframe_tree_event(GdkEvent *event);
619 //void on_children_edited_value(const Glib::ustring&path_string,synfig::ValueBase value);
621 void on_dirty_preview();
623 bool on_children_user_click(int, Gtk::TreeRow, ChildrenTree::ColumnID);
625 bool on_layer_user_click(int, Gtk::TreeRow, LayerTree::ColumnID);
627 // void on_layer_toggle(const Glib::ustring& path_string, Gtk::TreeModelColumn<bool> column);
629 void on_mode_changed(synfigapp::CanvasInterface::Mode mode);
631 // void on_layer_waypoint_clicked(const Glib::ustring &, synfig::ValueNode_Animated::WaypointList::iterator);
633 //void on_children_waypoint_clicked(const Glib::ustring &, synfig::ValueNode_Animated::WaypointList::iterator);
635 void on_waypoint_changed();
637 void on_waypoint_delete();
639 void on_refresh_pressed();
641 void on_id_changed();
643 void on_time_changed();
646 void on_layer_raise_pressed();
647 void on_layer_lower_pressed();
648 void on_layer_duplicate_pressed();
649 void on_layer_delete_pressed();
652 void on_keyframe_add_pressed();
654 void on_keyframe_duplicate_pressed();
656 void on_keyframe_remove_pressed();
658 void on_animate_button_pressed();
660 void on_keyframe_button_pressed();
662 void on_preview_option();
663 void on_preview_create(const PreviewInfo &);
665 void on_audio_option();
666 void on_audio_file_change(const std::string &f);
667 void on_audio_offset_change(const synfig::Time &t);
669 void on_audio_file_notify();
670 void on_audio_offset_notify();
672 bool on_duck_changed(const synfig::Point &value,const synfigapp::ValueDesc& value_desc);
674 void on_layer_toggle(synfig::Layer::Handle);
676 void on_edited_value(synfigapp::ValueDesc,synfig::ValueBase);
678 //void on_waypoint_clicked(synfigapp::ValueDesc,synfig::ValueNode_Animated::WaypointList::iterator, int button);
680 void on_drop_drag_data_received(const Glib::RefPtr<Gdk::DragContext>& context, int x, int y, const Gtk::SelectionData& selection_data, guint info, guint time);
682 //void on_audio_play();
683 bool on_audio_scrub();
686 bool on_delete_event(GdkEventAny* event);
689 -- ** -- S T A T I C P U B L I C M E T H O D S ---------------------------
694 static etl::handle<studio::CanvasView> create(etl::loose_handle<Instance> instance,etl::handle<synfig::Canvas> canvas);
695 }; // END of class CanvasView
697 }; // END of namespace studio
699 /* === E N D =============================================================== */