Synchronise quality spin button and quality action radio buttons.
[synfig.git] / synfig-studio / trunk / src / gtkmm / canvasview.h
1 /* === S Y N F I G ========================================================= */
2 /*!     \file canvasview.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, 2008 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_STUDIO_GTKMM_CANVASVIEW_H
27 #define __SYNFIG_STUDIO_GTKMM_CANVASVIEW_H
28
29 /* === H E A D E R S ======================================================= */
30
31 #include <gtkmm/window.h>
32 #include <gtkmm/image.h>
33 #include <gtkmm/tooltips.h>
34 #include <gtkmm/table.h>
35 #include <gtkmm/statusbar.h>
36 #include <gtkmm/progressbar.h>
37 #include <gtkmm/button.h>
38 #include <gtkmm/menu.h>
39 #include <gtkmm/treeview.h>
40 #include <gtkmm/treestore.h>
41 #include <gtkmm/scrolledwindow.h>
42 #include <gtkmm/notebook.h>
43 #include <gdkmm/device.h>
44 #include <gtkmm/spinbutton.h>
45
46 #include <synfigapp/canvasinterface.h>
47 #include <synfigapp/selectionmanager.h>
48
49 #include <synfig/canvas.h>
50 #include <synfig/string.h>
51 #include <synfig/time.h>
52
53 #include "instance.h"
54 #include "canvasproperties.h"
55 #include "canvasoptions.h"
56 #include "render.h"
57 #include "cellrenderer_timetrack.h"
58 #include "app.h"
59
60 #include "layertreestore.h"
61 #include "layertree.h"
62 #include "childrentreestore.h"
63 #include "childrentree.h"
64 #include "keyframetreestore.h"
65 #include "keyframetree.h"
66
67 #include "dialog_waypoint.h"
68 #include "dialog_keyframe.h"
69 #include "framedial.h"
70 #include "toggleducksdial.h"
71 #include "resolutiondial.h"
72
73 #include "duckmatic.h"
74 #include <gtkmm/scale.h>
75
76 #include <gtkmm/uimanager.h>
77
78 #include "smach.h"
79
80 #include <memory>
81 #include <set>
82 #include <map>
83 #include <gtkmm/toggleaction.h>
84 #include <gtkmm/radioaction.h>
85 #include <synfig/rect.h>
86
87 #include "adjust_window.h"
88
89 #include <synfig/transform.h>
90
91 /* === M A C R O S ========================================================= */
92
93 #ifndef DEBUGPOINT_CLASS
94 #if     _DEBUG
95 #define DEBUGPOINT_CLASS(x)             struct debugpointclass_ ## x { debugpointclass_ ## x () { DEBUGPOINT(); } ~debugpointclass_ ## x () { DEBUGPOINT(); } } badfthguae_ ## x ;
96 #else
97 #define DEBUGPOINT_CLASS(x)
98 #endif
99 #endif
100
101 /* === T Y P E D E F S ===================================================== */
102
103 /* === C L A S S E S & S T R U C T S ======================================= */
104
105 namespace synfig {
106         class TransformStack;
107 }
108
109 namespace studio {
110
111 class CanvasViewUIInterface;
112 class CanvasViewSelectionManager;
113
114 class CellRenderer_TimeTrack;
115 class CellRenderer_ValueBase;
116 class UniversalScrubber;
117 class WorkArea;
118
119 class Duckmatic;
120
121 class Preview;
122 struct PreviewInfo;
123 class AudioContainer;
124
125 class Widget_Sound;
126 class Widget_Timeslider;
127 class Widget_Time;
128
129 class Dialog_SoundSelect;
130 class Dialog_Preview;
131
132 class Dock_Layers;
133 class Dock_Children;
134 class Dock_Keyframes;
135
136 class CanvasView : public Gtk::Window, public etl::shared_object
137 {
138         friend class UniversalScrubber;
139         friend class Dock_Layers;
140         friend class Dock_Children;
141         friend class Dock_Keyframes;
142
143         friend class CanvasViewUIInterface;
144         friend class CanvasViewSelectionManager;
145
146         friend class Duckmatic;
147
148         /*
149  -- ** -- P U B L I C   T Y P E S ---------------------------------------------
150         */
151
152 public:
153
154         typedef etl::handle<CanvasView> Handle;
155
156         typedef etl::handle<const CanvasView> ConstHandle;
157
158         typedef etl::loose_handle<CanvasView> LooseHandle;
159
160         typedef LayerTreeStore::Model LayerTreeModel;
161
162         typedef ChildrenTreeStore::Model ChildrenTreeModel;
163
164         //! Create an instance of this class whenever doing a longer task.
165         /*! Make sure that you check the bool value of this class occasionally
166         **      to make sure the action has not been canceled. */
167         class IsWorking
168         {
169                 CanvasView &canvas_view_;
170
171         public:
172                 IsWorking(CanvasView &canvas_view_);
173                 ~IsWorking();
174                 operator bool()const;
175         };
176         friend class IsWorking;
177
178         typedef synfigapp::CanvasInterface::Mode Mode;
179
180         void set_grid_snap_toggle(bool flag) { grid_snap_toggle->set_active(flag); }
181         void set_grid_show_toggle(bool flag) { grid_show_toggle->set_active(flag); }
182
183         /*
184  -- ** -- P R I V A T E   D A T A ---------------------------------------------
185         */
186
187 public:
188         std::auto_ptr<WorkArea> work_area;
189
190         WorkArea* get_work_area() { return work_area.get(); }
191 private:
192
193         synfig::TransformStack curr_transform_stack;
194         bool curr_transform_stack_set;
195
196         synfig::Rect bbox;
197
198         // DEBUGPOINT_CLASS(1);
199
200         //! State Machine
201         Smach smach_;
202
203         // DEBUGPOINT_CLASS(2);
204
205         etl::loose_handle<Instance> instance_;
206         etl::handle<synfigapp::CanvasInterface> canvas_interface_;
207
208         // DEBUGPOINT_CLASS(3);
209
210         //! Sound and information to play it
211         etl::handle<AudioContainer>             audio;
212         studio::Widget_Sound                    *disp_audio; //should this be put into thing too?
213
214         sigc::connection                                playcon;
215         sigc::connection                                stopcon;
216
217         std::auto_ptr<UniversalScrubber> universal_scrubber;
218
219         //! Tooltip controller
220         Gtk::Tooltips tooltips;
221
222         // DEBUGPOINT_CLASS(4);
223
224         //! TreeModel for the layers
225         LayerTreeModel layer_tree_model;
226
227         //! TreeModel for the the children
228         ChildrenTreeModel children_tree_model;
229
230         //Glib::RefPtr<LayerTreeStore> layer_tree_store_;
231
232         //Glib::RefPtr<ChildrenTreeStore> children_tree_store_;
233
234         //Glib::RefPtr<KeyframeTreeStore> keyframe_tree_store_;
235
236         // DEBUGPOINT_CLASS(5);
237
238         //std::map<synfig::String,Glib::RefPtr<Gtk::TreeModel> > tree_model_book_;
239         std::map<synfig::String,Glib::RefPtr<Glib::ObjectBase> > ref_obj_book_;
240         std::map<synfig::String,Gtk::Widget*> ext_widget_book_;
241
242         //! The time adjustment's scope is defined by the time_window adjustment
243         Gtk::Adjustment time_adjustment_;
244
245         //! The time_window adjustment governs the position of the time window on the whole time line
246         //Gtk::Adjustment time_window_adjustment_;
247         studio::Adjust_Window time_window_adjustment_;
248
249         LayerTree *layer_tree;
250
251         ChildrenTree *children_tree;
252
253         KeyframeTree *keyframe_tree;
254
255         Gtk::Widget *keyframe_tab_child;
256
257         Gtk::ProgressBar *progressbar;
258         Gtk::Statusbar *statusbar;
259
260         Gtk::TreeRow children_canvas_row;
261         Gtk::TreeRow children_valuenode_row;
262
263         Gtk::Button *stopbutton;
264         Gtk::Button *refreshbutton;
265         Gtk::Button *treetogglebutton;  // not used
266         Gtk::Notebook *notebook; // not used
267         Gtk::Table *timebar;
268         Gtk::Table *displaybar;
269         Gtk::Button *animatebutton;
270         Gtk::Button *keyframebutton;
271         FrameDial *framedial;
272         ToggleDucksDial *toggleducksdial;
273         bool toggling_ducks_;
274         ResolutionDial *resolutiondial;
275         bool changing_resolution_;
276         Gtk::Adjustment quality_adjustment_;
277         Gtk::SpinButton *quality_spin;
278         bool updating_quality_;
279         //! Shows current time and allows edition
280         Widget_Time *current_time_widget;
281         void on_current_time_widget_changed();
282
283         //! Time slider class. Same than the Time track panel
284         std::auto_ptr<Widget_Timeslider> timeslider;
285
286         std::list<sigc::connection> duck_changed_connections;
287
288 /*      DEBUGPOINT_CLASS(8);
289
290         Gtk::Menu duckmaskmenu;
291         DEBUGPOINT_CLASS(77);
292         Gtk::Menu qualitymenu;
293         DEBUGPOINT_CLASS(6);
294
295         Gtk::Menu filemenu;
296         DEBUGPOINT_CLASS(777);
297         Gtk::Menu editmenu;
298         DEBUGPOINT_CLASS(71);
299         Gtk::Menu canvasmenu;
300         DEBUGPOINT_CLASS(73);
301 public:
302         Gtk::Menu layermenu;
303 private:
304         DEBUGPOINT_CLASS(74);
305         Gtk::Menu newlayermenu;
306         DEBUGPOINT_CLASS(76);
307         Gtk::Menu viewmenu;
308
309         DEBUGPOINT_CLASS(99);
310         Gtk::Menu keyframemenu;
311
312         Gtk::Menu parammenu;
313         DEBUGPOINT_CLASS(9);
314         Gtk::Menu trackmenu;
315         DEBUGPOINT_CLASS(7);
316
317         Gtk::CheckMenuItem* duck_mask_position;
318         Gtk::CheckMenuItem* duck_mask_vertex;
319         Gtk::CheckMenuItem* duck_mask_tangent;
320         Gtk::CheckMenuItem* duck_mask_radius;
321         Gtk::CheckMenuItem* duck_mask_width;
322         Gtk::CheckMenuItem* duck_mask_angle;
323 */
324         //! Menu members
325         Gtk::Menu parammenu;
326
327         Glib::RefPtr<Gtk::ToggleAction> grid_snap_toggle;
328         Glib::RefPtr<Gtk::ToggleAction> grid_show_toggle;
329
330         Gtk::RadioButtonGroup quality_group;
331         Gtk::RadioButtonGroup low_res_pixel_size_group;
332
333         Glib::RefPtr<Gtk::ActionGroup> action_group;
334
335         etl::handle<synfigapp::UIInterface> ui_interface_;
336         etl::handle<synfigapp::SelectionManager> selection_manager_;
337
338         bool is_playing_;
339
340         sigc::signal<void> signal_deleted_;
341
342         bool rebuild_ducks_queued;
343         sigc::connection queue_rebuild_ducks_connection;
344
345         /*
346  -- ** -- P U B L I C   D A T A -----------------------------------------------
347         */
348
349 public:
350         void queue_rebuild_ducks();
351         sigc::signal<void>& signal_deleted() { return signal_deleted_; }
352
353         Gtk::Menu mainmenu;
354
355         bool duck_refresh_flag;
356         bool duck_refresh_needed;
357
358         //! This is for the IsWorking class.
359         int working_depth;
360
361         bool cancel;
362
363         /*
364  -- ** -- D I A L O G S -------------------------------------------------------
365         */
366
367 public:
368
369         CanvasProperties canvas_properties;
370         CanvasOptions canvas_options;
371         RenderSettings render_settings;
372         Dialog_Waypoint waypoint_dialog;
373         Dialog_Keyframe keyframe_dialog;
374
375         std::auto_ptr<Dialog_Preview>                   preview_dialog;
376         //std::auto_ptr<Dialog_PreviewOptions>  previewoption_dialog;
377         std::auto_ptr<Dialog_SoundSelect>               sound_dialog;
378
379         /*
380  -- ** -- P R I V A T E   M E T H O D S ---------------------------------------
381         */
382
383 private:
384
385         // Constructor is private to force the use of the "create()" constructor
386         CanvasView(etl::loose_handle<Instance> instance,etl::handle<synfigapp::CanvasInterface> canvas_interface);
387
388         //! Constructor Helper
389         // Gtk::Widget* create_layer_tree();
390
391         //! Constructor Helper
392         // Gtk::Widget* create_children_tree();
393
394         //! Constructor Helper
395         // Gtk::Widget* create_keyframe_tree();
396
397         //! Constructor Helper
398         Gtk::Widget* create_status_bar();
399
400         //! Constructor Helper - Initializes all of the menus
401         void init_menus();
402
403         bool duck_change_param(const synfig::Point &value,synfig::Layer::Handle layer, synfig::String param_name);
404
405         void refresh_time_window();
406
407         void time_was_changed();
408
409         void refresh_rend_desc();
410
411         void toggle_duck_mask(Duckmatic::Type type);
412
413         Gtk::Widget *create_work_area();
414
415         Gtk::Widget *create_time_bar();
416
417         Gtk::Widget *create_display_bar();
418
419         //! Pop up menu for the bezier (bline, draw) tool (?)
420         void popup_param_menu_bezier(float location, synfigapp::ValueDesc value_desc)
421         { popup_param_menu(value_desc,location,true); }
422
423         //! Pop up menu for the tools but not the bezier ones.
424         void popup_param_menu(synfigapp::ValueDesc value_desc, float location=0, bool bezier=false);
425
426         void workarea_layer_selected(synfig::Layer::Handle layer);
427
428         void selected_layer_color_set(synfig::Color color);
429
430         void register_layer_type(synfig::Layer::Book::value_type &lyr,std::map<synfig::String,Gtk::Menu*>*);
431
432         //! Rebuilds the "new layer" menu
433         void build_new_layer_menu(Gtk::Menu &menu);
434
435         void rebuild_ducks_layer_(synfig::TransformStack& transform_stack, synfig::Canvas::Handle canvas, std::set<synfig::Layer::Handle>& selected_list);
436
437         void decrease_low_res_pixel_size();
438         void increase_low_res_pixel_size();
439         void toggle_low_res_pixel_flag();
440         void set_quality(int x);
441
442         /*
443  -- ** -- P U B L I C   M E T H O D S -----------------------------------------
444         */
445
446 public:
447         const synfig::TransformStack& get_curr_transform_stack()const { return curr_transform_stack; }
448
449         const synfig::Rect& get_bbox()const { return bbox; }
450
451         Glib::RefPtr<Glib::ObjectBase> get_ref_obj(const synfig::String& x);
452         Glib::RefPtr<const Glib::ObjectBase> get_ref_obj(const synfig::String& x)const;
453         void set_ref_obj(const synfig::String& x, Glib::RefPtr<Glib::ObjectBase> y);
454
455         Glib::RefPtr<Gtk::TreeModel> get_tree_model(const synfig::String& x);
456         Glib::RefPtr<const Gtk::TreeModel> get_tree_model(const synfig::String& x)const;
457         void set_tree_model(const synfig::String& x, Glib::RefPtr<Gtk::TreeModel> y);
458
459         Gtk::Widget* get_ext_widget(const synfig::String& x);
460         void set_ext_widget(const synfig::String& x, Gtk::Widget* y);
461
462         //std::map<synfig::String,Gtk::Widget*>& tree_view_book() { return tree_view_book_; }
463         //std::map<synfig::String,Gtk::Widget*>& ext_widget_book() { return tree_view_book_; }
464
465         void popup_main_menu();
466
467         Smach& get_smach() { return smach_; }
468
469         const Smach& get_smach()const { return smach_; }
470
471         Smach::event_result process_event_key(EventKey x);
472
473         void popup_layer_menu(synfig::Layer::Handle layer);
474
475         virtual ~CanvasView();
476
477         void set_mode(Mode x) { canvas_interface()->set_mode(x); }
478
479         Mode get_mode()const { return canvas_interface()->get_mode(); }
480
481         Gtk::Adjustment &time_adjustment() { return time_adjustment_; }
482
483         const Gtk::Adjustment &time_adjustment()const { return time_adjustment_; }
484
485         studio::Adjust_Window &time_window_adjustment() { return time_window_adjustment_; }
486
487         const studio::Adjust_Window &time_window_adjustment()const { return time_window_adjustment_; }
488
489         etl::handle<synfigapp::UIInterface> get_ui_interface() { return ui_interface_;}
490
491         etl::handle<synfigapp::SelectionManager> get_selection_manager() { return selection_manager_; }
492
493         Glib::RefPtr<Gtk::TreeModel> layer_tree_store() { return get_tree_model("layers"); }
494
495         Glib::RefPtr<const Gtk::TreeModel> layer_tree_store()const { return get_tree_model("layers"); }
496
497         Glib::RefPtr<Gtk::TreeModel> children_tree_store() { return get_tree_model("children"); }
498
499         Glib::RefPtr<const Gtk::TreeModel> children_tree_store()const { return get_tree_model("children"); }
500
501         Glib::RefPtr<Gtk::TreeModel> keyframe_tree_store() { return get_tree_model("keyframes"); }
502
503         Glib::RefPtr<const Gtk::TreeModel> keyframe_tree_store()const { return get_tree_model("keyframes"); }
504
505         void set_time(synfig::Time t) { canvas_interface_->set_time(t); }
506
507         synfig::Time get_time() { return canvas_interface_->get_time(); }
508
509         etl::handle<synfig::Canvas> get_canvas()const { return canvas_interface_->get_canvas(); }
510
511         etl::handle<Instance> get_instance()const { return instance_; }
512
513         etl::handle<synfigapp::CanvasInterface> canvas_interface() { return canvas_interface_; }
514
515         etl::handle<const synfigapp::CanvasInterface> canvas_interface()const { return canvas_interface_; }
516
517         void add_actions_to_menu(Gtk::Menu *menu,   const synfigapp::Action::ParamList &param_list, synfigapp::Action::Category category=synfigapp::Action::CATEGORY_ALL)const;
518
519         //! Updates the title of the window
520         void update_title();
521
522         //! Closes this document
523         bool close_instance();
524
525         //! Closes this canvas view
526         bool close_view();
527
528         //!     Stops the currently executing action
529         /*! \see get_cancel_status(), reset_cancel_status(), IsWorking */
530         void stop() { cancel=true; }
531
532         //! Returns the cancel status
533         /*! \see stop(), reset_cancel_status(), IsWorking */
534         bool get_cancel_status()const { return cancel; }
535
536         //! Resets the cancel status
537         /*! \see stop(), get_cancel_status(), IsWorking */
538         void reset_cancel_status() { cancel=false; }
539
540         void new_child_canvas();
541
542         //! Rebuilds layer_tree_store_ from the Canvas. Maintains selected items.
543         void rebuild_tables();
544
545         //! Builds layer_tree_store_ from the Canvas. Does not maintain selected items.
546         void build_tables();
547
548         //! Refreshes the data for the tables
549         void refresh_tables();
550
551         //void rebuild_layer_table();
552         //void build_layer_table();
553         //void refresh_layer_table();
554
555 //      void rebuild_canvas_table();
556 //      void build_canvas_table();
557 //      void refresh_canvas_table();
558
559 //      void rebuild_valuenode_table();
560 //      void build_valuenode_table();
561 //      void refresh_valuenode_table();
562
563         //! \writeme
564         void rebuild_ducks();
565
566         //bool add_to_ducks(synfigapp::ValueDesc value_desc, synfig::ParamDesc *param_desc=NULL);
567
568         //! Starts "playing" the animation in real-time
569         void play();
570
571         //! Shows the tables (Layer/Children)
572         void show_tables();
573
574         //! Hides the tables (Layer/Children)
575         void hide_tables();
576
577         //! Toggles the tables
578         void toggle_tables();
579
580         //! Gets the table status
581         bool tables_are_visible();
582
583         //! Shows the time bar
584         void show_timebar();
585
586         //! Hides the time bar
587         void hide_timebar();
588
589         //t Enables or disables interaction with the timebar
590         void set_sensitive_timebar(bool sensitive);
591
592         void time_zoom_in();
593         void time_zoom_out();
594
595         void add_layer(synfig::String x);
596
597         void show_keyframe_dialog();
598
599         void play_audio(float t);
600         void stop_audio();
601
602         void image_import();
603
604         void on_waypoint_clicked_canvasview(synfigapp::ValueDesc,std::set<synfig::Waypoint,std::less<synfig::UniqueID> >, int button);
605
606         void preview_option() {on_preview_option();}
607
608         void present();
609
610         bool is_playing() { return is_playing_; }
611
612         void update_quality();
613
614         /*
615  -- ** -- S I G N A L   T E R M I N A L S -------------------------------------
616         */
617
618 private:
619
620         void on_select_layers();
621         void on_unselect_layers();
622
623         void on_input_device_changed(GdkDevice*);
624
625         virtual void on_hide();
626
627         virtual bool on_focus_in_event(GdkEventFocus*);
628         virtual bool on_focus_out_event(GdkEventFocus*);
629
630         //bool on_children_tree_event(GdkEvent *event);
631
632         bool on_keyframe_tree_event(GdkEvent *event);
633
634         //void on_children_edited_value(const Glib::ustring&path_string,synfig::ValueBase value);
635
636         void on_dirty_preview();
637
638         bool on_children_user_click(int, Gtk::TreeRow, ChildrenTree::ColumnID);
639
640         bool on_layer_user_click(int, Gtk::TreeRow, LayerTree::ColumnID);
641
642 //      void on_layer_toggle(const Glib::ustring& path_string, Gtk::TreeModelColumn<bool> column);
643
644         void on_mode_changed(synfigapp::CanvasInterface::Mode mode);
645
646 //      void on_layer_waypoint_clicked(const Glib::ustring &, synfig::ValueNode_Animated::WaypointList::iterator);
647
648         //void on_children_waypoint_clicked(const Glib::ustring &, synfig::ValueNode_Animated::WaypointList::iterator);
649
650         void on_waypoint_changed();
651
652         void on_waypoint_delete();
653
654         void on_refresh_pressed();
655
656         void on_id_changed();
657
658         void on_time_changed();
659
660         /*
661         void on_layer_raise_pressed();
662         void on_layer_lower_pressed();
663         void on_layer_duplicate_pressed();
664         void on_layer_delete_pressed();
665         */
666
667         void on_keyframe_add_pressed();
668
669         void on_keyframe_duplicate_pressed();
670
671         void on_keyframe_remove_pressed();
672
673         void on_animate_button_pressed();
674
675         void on_keyframe_button_pressed();
676
677         void on_preview_option();
678         void on_preview_create(const PreviewInfo &);
679
680         void on_audio_option();
681         void on_audio_file_change(const std::string &f);
682         void on_audio_offset_change(const synfig::Time &t);
683
684         void on_audio_file_notify();
685         void on_audio_offset_notify();
686
687         bool on_duck_changed(const synfig::Point &value,const synfigapp::ValueDesc& value_desc);
688         bool on_duck_angle_changed(const synfig::Angle &rotation,const synfigapp::ValueDesc& value_desc);
689
690         void on_layer_toggle(synfig::Layer::Handle);
691
692         void on_edited_value(synfigapp::ValueDesc,synfig::ValueBase);
693
694         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);
695
696         //void on_audio_play();
697         bool on_audio_scrub();
698
699         void on_play_stop_pressed();
700
701 protected:
702         bool close_instance_when_safe();
703         bool on_delete_event(GdkEventAny* event);
704
705         /*
706  -- ** -- S T A T I C   P U B L I C   M E T H O D S ---------------------------
707         */
708
709 public:
710
711         static etl::handle<studio::CanvasView> create(etl::loose_handle<Instance> instance,etl::handle<synfig::Canvas> canvas);
712         static std::list<int>& get_pixel_sizes();
713
714 }; // END of class CanvasView
715
716 }; // END of namespace studio
717
718 /* === E N D =============================================================== */
719
720 #endif