Remove use of i18n macros in headers. Prevents our gettext.h being included before...
[ardour.git] / gtk2_ardour / send_ui.cc
index 664092d39f04a8e8efa01eb9e88e9a5e892de0fa..3cc17faaea5c2e64087a7fbb9c562472109b6fe8 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2002 Paul Davis 
+    Copyright (C) 2002 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
 
 #include <gtkmm2ext/doi.h>
 
+#include "ardour/amp.h"
 #include "ardour/io.h"
 #include "ardour/send.h"
+#include "ardour/rc_configuration.h"
 
 #include "utils.h"
 #include "send_ui.h"
 #include "ardour_ui.h"
 #include "gui_thread.h"
 
+#include "i18n.h"
+
+using namespace std;
 using namespace ARDOUR;
 using namespace PBD;
 
-SendUI::SendUI (boost::shared_ptr<Send> s, Session& se)
+SendUI::SendUI (Gtk::Window* parent, boost::shared_ptr<Send> s, Session* session)
        : _send (s)
-       , _session (se)
-       , _gpm (se)
-       , _panners (se)
+       , _gpm (session, 250)
+       , _panners (session)
 {
-       _panners.set_io (s->io());
-       _gpm.set_io (s->io());
+       _panners.set_panner (s->panner());
+       _gpm.set_controls (boost::shared_ptr<Route>(), s->meter(), s->amp());
 
        _hbox.pack_start (_gpm, true, true);
        set_name ("SendUIFrame");
-       
+
        _vbox.set_spacing (5);
        _vbox.set_border_width (5);
 
        _vbox.pack_start (_hbox, false, false, false);
-       _vbox.pack_start (_panners, false,false);
+       _vbox.pack_start (_panners, false, false);
+
+       io = manage (new IOSelector (parent, session, s->output()));
 
-       io = manage (new IOSelector (se, s->io(), true));
-       
        pack_start (_vbox, false, false);
 
        pack_start (*io, true, true);
@@ -59,9 +63,9 @@ SendUI::SendUI (boost::shared_ptr<Send> s, Session& se)
 
        _send->set_metering (true);
 
-       _send->io()->input_changed.connect (mem_fun (*this, &SendUI::ins_changed));
-       _send->io()->output_changed.connect (mem_fun (*this, &SendUI::outs_changed));
-       
+       _send->input()->changed.connect (connections, invalidator (*this), ui_bind (&SendUI::ins_changed, this, _1, _2), gui_context());
+       _send->output()->changed.connect (connections, invalidator (*this), ui_bind (&SendUI::outs_changed, this, _1, _2), gui_context());
+
        _panners.set_width (Wide);
        _panners.setup_pan ();
 
@@ -69,9 +73,9 @@ SendUI::SendUI (boost::shared_ptr<Send> s, Session& se)
        _gpm.set_fader_name ("SendUIFrame");
 
        // screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect (
-       //              mem_fun (*this, &SendUI::update));
+       //              sigc::mem_fun (*this, &SendUI::update));
        fast_screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect (
-                       mem_fun (*this, &SendUI::fast_update));
+                       sigc::mem_fun (*this, &SendUI::fast_update));
 }
 
 SendUI::~SendUI ()
@@ -87,7 +91,7 @@ SendUI::~SendUI ()
 void
 SendUI::ins_changed (IOChange change, void* ignored)
 {
-       ENSURE_GUI_THREAD(bind (mem_fun (*this, &SendUI::ins_changed), change, ignored));
+       ENSURE_GUI_THREAD (*this, &SendUI::ins_changed, change, ignored)
        if (change & ConfigurationChanged) {
                _panners.setup_pan ();
        }
@@ -96,7 +100,7 @@ SendUI::ins_changed (IOChange change, void* ignored)
 void
 SendUI::outs_changed (IOChange change, void* ignored)
 {
-       ENSURE_GUI_THREAD(bind (mem_fun (*this, &SendUI::outs_changed), change, ignored));
+       ENSURE_GUI_THREAD (*this, &SendUI::outs_changed, change, ignored)
        if (change & ConfigurationChanged) {
                _panners.setup_pan ();
                _gpm.setup_meters ();
@@ -115,11 +119,11 @@ SendUI::fast_update ()
                _gpm.update_meters ();
        }
 }
-       
-SendUIWindow::SendUIWindow (boost::shared_ptr<Send> s, Session& ss)
-       : ArdourDialog (string("Ardour: send ") + s->name())
+
+SendUIWindow::SendUIWindow (boost::shared_ptr<Send> s, Session* session)
+       : ArdourDialog (string (_("Send ")) + s->name())
 {
-       ui = new SendUI (s, ss);
+       ui = new SendUI (this, s, session);
 
        hpacker.pack_start (*ui, true, true);
 
@@ -127,13 +131,12 @@ SendUIWindow::SendUIWindow (boost::shared_ptr<Send> s, Session& ss)
        get_vbox()->pack_start (hpacker);
 
        set_name ("SendUIWindow");
-       
-       going_away_connection = s->GoingAway.connect (
-                       mem_fun (*this, &SendUIWindow::send_going_away));
 
-       signal_delete_event().connect (bind (
-                       ptr_fun (just_hide_it),
-                       reinterpret_cast<Window *> (this)));
+       s->DropReferences.connect (going_away_connection, invalidator (*this), boost::bind (&SendUIWindow::send_going_away, this), gui_context());
+
+       signal_delete_event().connect (sigc::bind (
+                                              sigc::ptr_fun (just_hide_it),
+                                              reinterpret_cast<Window *> (this)));
 }
 
 SendUIWindow::~SendUIWindow ()
@@ -144,8 +147,8 @@ SendUIWindow::~SendUIWindow ()
 void
 SendUIWindow::send_going_away ()
 {
-       ENSURE_GUI_THREAD (mem_fun (*this, &SendUIWindow::send_going_away));
-       delete_when_idle (this);
+       ENSURE_GUI_THREAD (*this, &SendUIWindow::send_going_away)
        going_away_connection.disconnect ();
+       delete_when_idle (this);
 }