* MIDI control lanes: Set Interpolationtype according to Parameter
[ardour.git] / gtk2_ardour / crossfade_edit.h
index 715aa1a3607da3f6fe3765d9dd0aa66c4d4af110..f7f607393f5a62c56623ee46fc9d1bb5d0b5de47 100644 (file)
 #include <gtkmm/button.h>
 #include <gtkmm/radiobutton.h>
 
-#include <ardour/curve.h>
+#include <evoral/Curve.hpp>
 #include "ardour_dialog.h"
 #include "canvas.h"
 
 namespace ARDOUR
 {
        class Session;
-       class Curve;
+       class AutomationList;
        class Crossfade;
 }
 
@@ -62,15 +62,20 @@ class CrossfadeEditor : public ArdourDialog
        };
        
        struct Preset : public list<PresetPoint> {
+           const char* name;
            const char* image_name;
-           
-           Preset (const char* x) : image_name (x) {}
+
+           Preset (const char* n, const char* x) : name (n), image_name (x) {}
        };
        
        typedef list<Preset*> Presets;
        
        static Presets* fade_in_presets;
        static Presets* fade_out_presets;
+
+  protected:
+       bool on_key_press_event (GdkEventKey*);
+       bool on_key_release_event (GdkEventKey*);
        
   private:
        boost::shared_ptr<ARDOUR::Crossfade> xfade;
@@ -105,8 +110,8 @@ class CrossfadeEditor : public ArdourDialog
            ArdourCanvas::Line*     line;
            ArdourCanvas::Polygon*  shading;
            list<Point*>            points;
-           ARDOUR::Curve           normative_curve; /* 0 - 1.0, linear */
-           ARDOUR::Curve           gain_curve;      /* 0 - 2.0, gain mapping */
+           ARDOUR::AutomationList  normative_curve; /* 0 - 1.0, linear */
+           ARDOUR::AutomationList  gain_curve;      /* 0 - 2.0, gain mapping */
            vector<ArdourCanvas::WaveView*>  waves;
            
            Half();
@@ -176,7 +181,7 @@ class CrossfadeEditor : public ArdourDialog
        double x_coordinate (double& xfract) const;
        double y_coordinate (double& yfract) const;
     
-       void set (const ARDOUR::Curve& alist, WhichFade);
+       void set (const ARDOUR::AutomationList& alist, WhichFade);
 
        sigc::connection peaks_ready_connection;
 
@@ -187,13 +192,20 @@ class CrossfadeEditor : public ArdourDialog
        void setup (boost::shared_ptr<ARDOUR::Crossfade>);
        void cancel_audition ();
        void audition_state_changed (bool);
-
+       
+       enum Audition {
+               Both,
+               Left,
+               Right
+       };
+       
        void audition_toggled ();
        void audition_right_toggled ();
        void audition_right_dry_toggled ();
        void audition_left_toggled ();
        void audition_left_dry_toggled ();
 
+       void audition (Audition);
        void audition_both ();
        void audition_left_dry ();
        void audition_left ();