X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fsend_ui.cc;h=364e44c7b0113b43495830a4a6150a1bff84bd2e;hb=bd8ab472f58492a67be06e462eb6f1c828f01f59;hp=9f30616cf876b429cf608234aab0fe739c232d29;hpb=c83e48e07a0b4790512c6251d8ad8f941c881021;p=ardour.git diff --git a/gtk2_ardour/send_ui.cc b/gtk2_ardour/send_ui.cc index 9f30616cf8..364e44c7b0 100644 --- a/gtk2_ardour/send_ui.cc +++ b/gtk2_ardour/send_ui.cc @@ -19,62 +19,71 @@ #include -#include "ardour/amp.h" #include "ardour/io.h" +#include "ardour/panner_manager.h" #include "ardour/send.h" #include "ardour/rc_configuration.h" -#include "utils.h" #include "send_ui.h" #include "io_selector.h" -#include "ardour_ui.h" +#include "timers.h" #include "gui_thread.h" +#include "pbd/i18n.h" + using namespace std; using namespace ARDOUR; using namespace PBD; -SendUI::SendUI (Gtk::Window* parent, boost::shared_ptr s, Session& se) +SendUI::SendUI (Gtk::Window* parent, boost::shared_ptr s, Session* session) : _send (s) - , _session (se) - , _gpm (se) - , _panners (se) + , _gpm (session, 250) + , _panners (session) { - _panners.set_panner (s->panner()); - _gpm.set_controls (boost::shared_ptr(), s->meter(), s->amp()); + assert (_send); + + _panners.set_panner (s->panner_shell(), s->panner()); + _gpm.set_controls (boost::shared_ptr(), s->meter(), s->amp(), s->gain_control()); _hbox.pack_start (_gpm, true, true); - set_name ("SendUIFrame"); + set_name (X_("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, se, s->output())); + io = Gtk::manage (new IOSelector (parent, session, s->output())); pack_start (_vbox, false, false); pack_start (*io, true, true); - show_all (); + io->show (); + _gpm.show_all (); + _panners.show_all (); + _vbox.show (); + _hbox.show (); _send->set_metering (true); - _send->input()->changed.connect (mem_fun (*this, &SendUI::ins_changed)); - _send->output()->changed.connect (mem_fun (*this, &SendUI::outs_changed)); + _send->output()->changed.connect (connections, invalidator (*this), boost::bind (&SendUI::outs_changed, this, _1, _2), gui_context()); + + uint32_t const in = _send->pans_required(); + uint32_t const out = _send->pan_outs(); _panners.set_width (Wide); + _panners.set_available_panners(PannerManager::instance().PannerManager::get_available_panners(in, out)); _panners.setup_pan (); _gpm.setup_meters (); - _gpm.set_fader_name ("SendUIFrame"); + _gpm.set_fader_name (X_("SendUIFader")); - // screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect ( - // mem_fun (*this, &SendUI::update)); - fast_screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect ( - mem_fun (*this, &SendUI::fast_update)); + // screen_update_connection = Timers::rapid_connect ( + // sigc::mem_fun (*this, &SendUI::update)); + fast_screen_update_connection = Timers::super_rapid_connect ( + sigc::mem_fun (*this, &SendUI::fast_update)); } SendUI::~SendUI () @@ -88,20 +97,18 @@ SendUI::~SendUI () } void -SendUI::ins_changed (IOChange change, void* ignored) -{ - ENSURE_GUI_THREAD(bind (mem_fun (*this, &SendUI::ins_changed), change, ignored)); - if (change & ConfigurationChanged) { - _panners.setup_pan (); - } -} - -void -SendUI::outs_changed (IOChange change, void* ignored) +SendUI::outs_changed (IOChange change, void* /*ignored*/) { - ENSURE_GUI_THREAD(bind (mem_fun (*this, &SendUI::outs_changed), change, ignored)); - if (change & ConfigurationChanged) { + ENSURE_GUI_THREAD (*this, &SendUI::outs_changed, change, ignored) + if (change.type & IOChange::ConfigurationChanged) { + uint32_t const in = _send->pans_required(); + uint32_t const out = _send->pan_outs(); + if (_panners._panner == 0) { + _panners.set_panner (_send->panner_shell(), _send->panner()); + } + _panners.set_available_panners(PannerManager::instance().PannerManager::get_available_panners(in, out)); _panners.setup_pan (); + _panners.show_all (); _gpm.setup_meters (); } } @@ -114,41 +121,32 @@ SendUI::update () void SendUI::fast_update () { + if (!is_mapped()) { + return; + } + if (Config->get_meter_falloff() > 0.0f) { _gpm.update_meters (); } } -SendUIWindow::SendUIWindow (boost::shared_ptr s, Session& ss) - : ArdourDialog (string("Ardour: send ") + s->name()) +SendUIWindow::SendUIWindow (boost::shared_ptr s, Session* session) + : ArdourWindow (string (_("Send ")) + s->name()) { - ui = new SendUI (this, s, ss); + ui = new SendUI (this, s, session); hpacker.pack_start (*ui, true, true); - get_vbox()->set_border_width (5); - get_vbox()->pack_start (hpacker); + add (hpacker); set_name ("SendUIWindow"); - going_away_connection = s->GoingAway.connect ( - mem_fun (*this, &SendUIWindow::send_going_away)); + ui->show (); + hpacker.show (); - signal_delete_event().connect (bind ( - sigc::ptr_fun (just_hide_it), - reinterpret_cast (this))); } SendUIWindow::~SendUIWindow () { delete ui; } - -void -SendUIWindow::send_going_away () -{ - ENSURE_GUI_THREAD (mem_fun (*this, &SendUIWindow::send_going_away)); - delete_when_idle (this); - going_away_connection.disconnect (); -} -