Remove dead code.
[ardour.git] / gtk2_ardour / send_ui.h
index c8576cab9ef40e19e76beab90d11c32aae18d9a0..0d6356970e78309f9bc1624d46fc555d2d19fbdf 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__
 
 #include "gain_meter.h"
 #include "panner_ui.h"
+#include "ardour_dialog.h"
 
 namespace ARDOUR {
        class Send;
        class Session;
-       class Redirect;
+       class IOProcessor;
 }
 
 class IOSelector;
@@ -43,6 +43,8 @@ class SendUI : public Gtk::HBox
 
        IOSelector* io;
 
+       boost::shared_ptr<ARDOUR::Send>& send() { return _send; }
+
   private:
        boost::shared_ptr<ARDOUR::Send> _send;
        ARDOUR::Session& _session;
@@ -54,12 +56,11 @@ class SendUI : public Gtk::HBox
        sigc::connection screen_update_connection;
        sigc::connection fast_screen_update_connection;
                
-       void send_going_away ();
        void ins_changed (ARDOUR::IOChange, void*);
        void outs_changed (ARDOUR::IOChange, void*);
 };
 
-class SendUIWindow : public Gtk::Window
+class SendUIWindow : public ArdourDialog
 {
   public:
        SendUIWindow(boost::shared_ptr<ARDOUR::Send>, ARDOUR::Session&);
@@ -68,10 +69,10 @@ class SendUIWindow : public Gtk::Window
        SendUI*     ui;
 
   private:
-       Gtk::VBox vpacker;
        Gtk::HBox hpacker;
 
        void send_going_away ();
+       sigc::connection going_away_connection;
 };
 
 #endif /* __ardour_gtk_send_ui_h__ */