Add Resolution Dial widget. Synchronise Low res check button with low res action...
[synfig.git] / synfig-studio / trunk / src / gtkmm / canvasview.h
index 2ed261e..ea3fae7 100644 (file)
@@ -66,6 +66,8 @@
 #include "dialog_waypoint.h"
 #include "dialog_keyframe.h"
 #include "framedial.h"
+#include "toggleducksdial.h"
+#include "resolutiondial.h"
 
 #include "duckmatic.h"
 #include <gtkmm/scale.h>
@@ -262,9 +264,14 @@ private:
        Gtk::Button *treetogglebutton;  // not used
        Gtk::Notebook *notebook; // not used
        Gtk::Table *timebar;
+       Gtk::Table *displaybar;
        Gtk::Button *animatebutton;
        Gtk::Button *keyframebutton;
        FrameDial *framedial;
+       ToggleDucksDial *toggleducksdial;
+       bool toggling_ducks_;
+       ResolutionDial *resolutiondial;
+       bool changing_resolution_;
 
 
        //! Shows current time and allows edition
@@ -405,6 +412,8 @@ private:
 
        Gtk::Widget *create_time_bar();
 
+       Gtk::Widget *create_display_bar();
+
        //! Pop up menu for the bezier (bline, draw) tool (?)
        void popup_param_menu_bezier(float location, synfigapp::ValueDesc value_desc)
        { popup_param_menu(value_desc,location,true); }
@@ -425,6 +434,7 @@ private:
 
        void decrease_low_res_pixel_size();
        void increase_low_res_pixel_size();
+       void toggle_low_res_pixel_flag();
 
        /*
  -- ** -- P U B L I C   M E T H O D S -----------------------------------------