Added dialog to allow adding any Midi CC track.
[ardour.git] / gtk2_ardour / send_ui.h
index 744469b3c931461921a598f8b467e9cb8ccc07ea..0cd4b1a26513ed1f72841ffa5e50e196d5d5b2c2 100644 (file)
@@ -15,7 +15,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #ifndef __ardour_gtk_send_ui_h__
@@ -27,7 +26,7 @@
 namespace ARDOUR {
        class Send;
        class Session;
-       class Redirect;
+       class IOProcessor;
 }
 
 class IOSelector;
@@ -35,7 +34,7 @@ class IOSelector;
 class SendUI : public Gtk::HBox
 {
   public:
-       SendUI (ARDOUR::Send&, ARDOUR::Session&);
+       SendUI (boost::shared_ptr<ARDOUR::Send>, ARDOUR::Session&);
        ~SendUI();
 
        void update ();
@@ -44,17 +43,16 @@ class SendUI : public Gtk::HBox
        IOSelector* io;
 
   private:
-       ARDOUR::Send&    _send;
+       boost::shared_ptr<ARDOUR::Send> _send;
        ARDOUR::Session& _session;
        GainMeter gpm;
        PannerUI  panners;
        Gtk::VBox vbox;
        Gtk::VBox hbox;
 
-       SigC::Connection screen_update_connection;
-       SigC::Connection fast_screen_update_connection;
+       sigc::connection screen_update_connection;
+       sigc::connection fast_screen_update_connection;
                
-       void send_going_away (ARDOUR::Redirect*);
        void ins_changed (ARDOUR::IOChange, void*);
        void outs_changed (ARDOUR::IOChange, void*);
 };
@@ -62,7 +60,7 @@ class SendUI : public Gtk::HBox
 class SendUIWindow : public Gtk::Window
 {
   public:
-       SendUIWindow(ARDOUR::Send&, ARDOUR::Session&);
+       SendUIWindow(boost::shared_ptr<ARDOUR::Send>, ARDOUR::Session&);
        ~SendUIWindow();
 
        SendUI*     ui;
@@ -71,7 +69,7 @@ class SendUIWindow : public Gtk::Window
        Gtk::VBox vpacker;
        Gtk::HBox hpacker;
 
-       void send_going_away (ARDOUR::Redirect*);
+       void send_going_away ();
 };
 
 #endif /* __ardour_gtk_send_ui_h__ */