Tidy.
[ardour.git] / gtk2_ardour / crossfade_edit.h
index 4f2a617d9205bbabd8308a04dbe5267889733f7c..9e4db3be8828a4278fa77abafe5f1b8da01c5431 100644 (file)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2000-2007 Paul Davis 
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+
 #ifndef __gtk_ardour_xfade_edit_h__
 #define __gtk_ardour_xfade_edit_h__
 
 #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;
 }
 
@@ -86,8 +105,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();
@@ -157,7 +176,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;
 
@@ -168,13 +187,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 ();