X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fsend_ui.cc;h=364e44c7b0113b43495830a4a6150a1bff84bd2e;hb=cf52d6e4b40111eb04b244ec054055a4ec15dbe0;hp=a000bfcaa952a98a3ec7ca047c4394f88b3f52c6;hpb=05283a63398fd7a563480a76802e6b2c2ad2e404;p=ardour.git diff --git a/gtk2_ardour/send_ui.cc b/gtk2_ardour/send_ui.cc index a000bfcaa9..364e44c7b0 100644 --- a/gtk2_ardour/send_ui.cc +++ b/gtk2_ardour/send_ui.cc @@ -19,18 +19,17 @@ #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 "i18n.h" +#include "pbd/i18n.h" using namespace std; using namespace ARDOUR; @@ -44,10 +43,10 @@ SendUI::SendUI (Gtk::Window* parent, boost::shared_ptr s, Session* session assert (_send); _panners.set_panner (s->panner_shell(), s->panner()); - _gpm.set_controls (boost::shared_ptr(), s->meter(), s->amp()); + _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); @@ -55,7 +54,7 @@ SendUI::SendUI (Gtk::Window* parent, boost::shared_ptr s, Session* session _vbox.pack_start (_hbox, false, false, false); _vbox.pack_start (_panners, false, false); - io = manage (new IOSelector (parent, session, s->output())); + io = Gtk::manage (new IOSelector (parent, session, s->output())); pack_start (_vbox, false, false); @@ -69,17 +68,21 @@ SendUI::SendUI (Gtk::Window* parent, boost::shared_ptr s, Session* session _send->set_metering (true); - _send->output()->changed.connect (connections, invalidator (*this), ui_bind (&SendUI::outs_changed, this, _1, _2), gui_context()); + _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 ( + // screen_update_connection = Timers::rapid_connect ( // sigc::mem_fun (*this, &SendUI::update)); - fast_screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect ( + fast_screen_update_connection = Timers::super_rapid_connect ( sigc::mem_fun (*this, &SendUI::fast_update)); } @@ -98,7 +101,14 @@ SendUI::outs_changed (IOChange change, void* /*ignored*/) { 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 (); } } @@ -111,6 +121,10 @@ SendUI::update () void SendUI::fast_update () { + if (!is_mapped()) { + return; + } + if (Config->get_meter_falloff() > 0.0f) { _gpm.update_meters (); } @@ -130,23 +144,9 @@ SendUIWindow::SendUIWindow (boost::shared_ptr s, Session* session) ui->show (); hpacker.show (); - 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 (this))); } SendUIWindow::~SendUIWindow () { delete ui; } - -void -SendUIWindow::send_going_away () -{ - ENSURE_GUI_THREAD (*this, &SendUIWindow::send_going_away) - going_away_connection.disconnect (); - delete_when_idle (this); -} -