X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Froute_processor_selection.cc;h=30943e22d04475765a1d4b1b07d7b815e9797b82;hb=694c7254e19fd0fbabe1ad25020fc0785216eb96;hp=90221197297d326ad1b95489423250c772a32f19;hpb=8f078d7fd40878d08ad4d048f0606a27901c7475;p=ardour.git diff --git a/gtk2_ardour/route_processor_selection.cc b/gtk2_ardour/route_processor_selection.cc index 9022119729..30943e22d0 100644 --- a/gtk2_ardour/route_processor_selection.cc +++ b/gtk2_ardour/route_processor_selection.cc @@ -21,10 +21,6 @@ #include #include "pbd/error.h" -#include "ardour/playlist.h" -#include "ardour/processor.h" -#include "ardour/route.h" - #include "gui_thread.h" #include "mixer_strip.h" #include "route_processor_selection.h" @@ -36,8 +32,13 @@ using namespace std; using namespace ARDOUR; using namespace PBD; -RouteRedirectSelection& -RouteRedirectSelection::operator= (const RouteRedirectSelection& other) +RouteProcessorSelection::RouteProcessorSelection() + : _no_route_change_signal (false) +{ +} + +RouteProcessorSelection& +RouteProcessorSelection::operator= (const RouteProcessorSelection& other) { if (&other != this) { processors = other.processors; @@ -47,39 +48,41 @@ RouteRedirectSelection::operator= (const RouteRedirectSelection& other) } bool -operator== (const RouteRedirectSelection& a, const RouteRedirectSelection& b) +operator== (const RouteProcessorSelection& a, const RouteProcessorSelection& b) { // XXX MUST TEST PROCESSORS SOMEHOW return a.routes == b.routes; } void -RouteRedirectSelection::clear () +RouteProcessorSelection::clear () { clear_processors (); clear_routes (); } void -RouteRedirectSelection::clear_processors () +RouteProcessorSelection::clear_processors () { processors.clear (); ProcessorsChanged (); } void -RouteRedirectSelection::clear_routes () +RouteProcessorSelection::clear_routes () { for (RouteUISelection::iterator i = routes.begin(); i != routes.end(); ++i) { (*i)->set_selected (false); } routes.clear (); drop_connections (); - RoutesChanged (); + if (!_no_route_change_signal) { + RoutesChanged (); + } } void -RouteRedirectSelection::add (XMLNode* node) +RouteProcessorSelection::add (XMLNode* node) { // XXX check for duplicate processors.add (node); @@ -87,7 +90,7 @@ RouteRedirectSelection::add (XMLNode* node) } void -RouteRedirectSelection::set (XMLNode* node) +RouteProcessorSelection::set (XMLNode* node) { clear_processors (); processors.set (node); @@ -95,52 +98,61 @@ RouteRedirectSelection::set (XMLNode* node) } void -RouteRedirectSelection::add (RouteUI* r) +RouteProcessorSelection::add (RouteUI* r) { if (find (routes.begin(), routes.end(), r) == routes.end()) { if (routes.insert (r).second) { r->set_selected (true); MixerStrip* ms = dynamic_cast (r); - + if (ms) { - ms->CatchDeletion.connect (*this, invalidator (*this), ui_bind (&RouteRedirectSelection::remove, this, _1), gui_context()); + ms->CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RouteProcessorSelection::remove, this, _1), gui_context()); } - RoutesChanged(); + if (!_no_route_change_signal) { + RoutesChanged(); + } } } } void -RouteRedirectSelection::remove (RouteUI* r) +RouteProcessorSelection::remove (RouteUI* r) { - ENSURE_GUI_THREAD (*this, &RouteRedirectSelection::remove, r); + ENSURE_GUI_THREAD (*this, &RouteProcessorSelection::remove, r); RouteUISelection::iterator i; if ((i = find (routes.begin(), routes.end(), r)) != routes.end()) { - routes.erase (i); (*i)->set_selected (false); - RoutesChanged (); + routes.erase (i); + if (!_no_route_change_signal) { + RoutesChanged (); + } } } void -RouteRedirectSelection::set (RouteUI* r) +RouteProcessorSelection::set (RouteUI* r) { clear_routes (); add (r); } bool -RouteRedirectSelection::selected (RouteUI* r) +RouteProcessorSelection::selected (RouteUI* r) { return find (routes.begin(), routes.end(), r) != routes.end(); } bool -RouteRedirectSelection::empty () +RouteProcessorSelection::empty () { return processors.empty () && routes.empty (); } +void +RouteProcessorSelection::block_routes_changed (bool yn) +{ + _no_route_change_signal = yn; +}