X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Freturn_ui.cc;h=6edd57a28625b8f87562265305f3f67e0061fb30;hb=17e6f1952e4073fb864354438fed57d5e10ec617;hp=d671e582db2bfcdcb6c6dadc9d3ec05afe0f1c50;hpb=272cad6241ababb0e2033f27e0511596b3e32b15;p=ardour.git diff --git a/gtk2_ardour/return_ui.cc b/gtk2_ardour/return_ui.cc index d671e582db..6edd57a286 100644 --- a/gtk2_ardour/return_ui.cc +++ b/gtk2_ardour/return_ui.cc @@ -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 @@ -22,6 +22,7 @@ #include "ardour/amp.h" #include "ardour/io.h" #include "ardour/return.h" +#include "ardour/rc_configuration.h" #include "utils.h" #include "return_ui.h" @@ -29,27 +30,28 @@ #include "ardour_ui.h" #include "gui_thread.h" +#include "i18n.h" + using namespace std; using namespace ARDOUR; using namespace PBD; -ReturnUI::ReturnUI (Gtk::Window* parent, boost::shared_ptr r, Session& se) - : _return (r) - , _session (se) - , _gpm (se) +ReturnUI::ReturnUI (Gtk::Window* parent, boost::shared_ptr r, Session* session) + :_return (r) + , _gpm (session, 250) { _gpm.set_controls (boost::shared_ptr(), r->meter(), r->amp()); _hbox.pack_start (_gpm, true, true); set_name ("ReturnUIFrame"); - + _vbox.set_spacing (5); _vbox.set_border_width (5); _vbox.pack_start (_hbox, false, false, false); - io = manage (new IOSelector (parent, se, r->output())); - + io = manage (new IOSelector (parent, session, r->output())); + pack_start (_vbox, false, false); pack_start (*io, true, true); @@ -57,13 +59,13 @@ ReturnUI::ReturnUI (Gtk::Window* parent, boost::shared_ptr r, Session& s show_all (); _return->set_metering (true); - _return->input()->changed.connect (mem_fun (*this, &ReturnUI::ins_changed)); - + _return->input()->changed.connect (input_change_connection, invalidator (*this), ui_bind (&ReturnUI::ins_changed, this, _1, _2), gui_context()); + _gpm.setup_meters (); _gpm.set_fader_name ("ReturnUIFrame"); - - // screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect (mem_fun (*this, &ReturnUI::update)); - fast_screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect (mem_fun (*this, &ReturnUI::fast_update)); + + // screen_update_connection = ARDOUR_UI::instance()->RapidScreenUpdate.connect (sigc::mem_fun (*this, &ReturnUI::update)); + fast_screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect (sigc::mem_fun (*this, &ReturnUI::fast_update)); } ReturnUI::~ReturnUI () @@ -77,10 +79,10 @@ ReturnUI::~ReturnUI () } void -ReturnUI::ins_changed (IOChange change, void* ignored) +ReturnUI::ins_changed (IOChange change, void* /*ignored*/) { - ENSURE_GUI_THREAD(bind (mem_fun (*this, &ReturnUI::ins_changed), change, ignored)); - if (change & ConfigurationChanged) { + ENSURE_GUI_THREAD (*this, &ReturnUI::ins_changed, change, ignored) + if (change.type & IOChange::ConfigurationChanged) { _gpm.setup_meters (); } } @@ -97,21 +99,20 @@ ReturnUI::fast_update () _gpm.update_meters (); } } - -ReturnUIWindow::ReturnUIWindow (boost::shared_ptr s, Session& ss) - : ArdourDialog (string("Ardour: return ") + s->name()) + +ReturnUIWindow::ReturnUIWindow (boost::shared_ptr r, ARDOUR::Session* s) + : ArdourWindow (string(_("Return ")) + r->name()) { - ui = new ReturnUI (this, s, ss); + ui = new ReturnUI (this, r, s); hpacker.pack_start (*ui, true, true); - get_vbox()->set_border_width (5); - get_vbox()->pack_start (hpacker); + add (hpacker); set_name ("ReturnUIWindow"); - - going_away_connection = s->GoingAway.connect (mem_fun (*this, &ReturnUIWindow::return_going_away)); - signal_delete_event().connect (bind (sigc::ptr_fun (just_hide_it), reinterpret_cast (this))); + + r->DropReferences.connect (going_away_connection, invalidator (*this), boost::bind (&ReturnUIWindow::return_going_away, this), gui_context()); + signal_delete_event().connect (sigc::bind (sigc::ptr_fun (just_hide_it), reinterpret_cast (this))); } ReturnUIWindow::~ReturnUIWindow () @@ -122,8 +123,8 @@ ReturnUIWindow::~ReturnUIWindow () void ReturnUIWindow::return_going_away () { - ENSURE_GUI_THREAD (mem_fun (*this, &ReturnUIWindow::return_going_away)); - delete_when_idle (this); + ENSURE_GUI_THREAD (*this, &ReturnUIWindow::return_going_away) going_away_connection.disconnect (); + delete_when_idle (this); }