From 23bb15dcf1848833557715a44a7d91c1ba8787be Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 12 Jul 2017 06:55:44 +0200 Subject: [PATCH] Honor groups for mixer selection --- gtk2_ardour/mixer_ui.cc | 6 +-- gtk2_ardour/route_processor_selection.cc | 59 +++++++++++++++++++----- gtk2_ardour/route_processor_selection.h | 5 +- 3 files changed, 54 insertions(+), 16 deletions(-) diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc index 35e8ecd516..02391a3a44 100644 --- a/gtk2_ardour/mixer_ui.cc +++ b/gtk2_ardour/mixer_ui.cc @@ -897,14 +897,14 @@ Mixer_UI::strip_button_release_event (GdkEventButton *ev, MixerStrip *strip) if (_selection.selected (strip)) { /* primary-click: toggle selection state of strip */ if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) { - _selection.remove (strip); + _selection.remove (strip, true); } else if (_selection.axes.size() > 1) { /* de-select others */ _selection.set (strip); } } else { if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) { - _selection.add (strip); + _selection.add (strip, true); } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::RangeSelectModifier)) { /* extend selection */ @@ -952,7 +952,7 @@ Mixer_UI::strip_button_release_event (GdkEventButton *ev, MixerStrip *strip) if (found_another) { PresentationInfo::ChangeSuspender cs; for (vector::iterator i = tmp.begin(); i != tmp.end(); ++i) { - _selection.add (*i); + _selection.add (*i, true); } } else { _selection.set (strip); //user wants to start a range selection, but there aren't any others selected yet diff --git a/gtk2_ardour/route_processor_selection.cc b/gtk2_ardour/route_processor_selection.cc index 0dc15e7f8a..ed182db415 100644 --- a/gtk2_ardour/route_processor_selection.cc +++ b/gtk2_ardour/route_processor_selection.cc @@ -76,6 +76,26 @@ RouteProcessorSelection::clear_routes () } } +std::list +RouteProcessorSelection::add_grouped_tracks (AxisView* r) const +{ + std::list rv; + + boost::shared_ptr route = boost::dynamic_pointer_cast(r->stripable()); + if (route) { + ARDOUR::RouteGroup* rg = route->route_group (); + if (rg && rg->is_active() && rg->is_select ()) { + + boost::shared_ptr rl = rg->route_list (); + for (RouteList::const_iterator i = rl->begin(); i != rl->end(); ++i) { + AxisView* av = avp.axis_view_by_stripable (*i); + rv.push_back (av); + } + } + } + return rv; +} + void RouteProcessorSelection::presentation_info_changed (PropertyChange const & what_changed) { @@ -110,32 +130,48 @@ RouteProcessorSelection::presentation_info_changed (PropertyChange const & what_ } void -RouteProcessorSelection::add (AxisView* r) +RouteProcessorSelection::add (AxisView* r, bool with_groups) { if (!shp.session()) { return; } - if (axes.insert (r).second) { + std::list avl; + if (with_groups) { + avl= add_grouped_tracks (r); + } + avl.push_back (r); - shp.session()->selection().add (r->stripable(), boost::shared_ptr()); - - MixerStrip* ms = dynamic_cast (r); - - if (ms) { - ms->CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RouteProcessorSelection::remove, this, _1), gui_context()); + PresentationInfo::ChangeSuspender cs; + for (std::list::const_iterator i = avl.begin (); i != avl.end (); ++i) { + if (axes.insert (*i).second) { + shp.session()->selection().add ((*i)->stripable(), boost::shared_ptr()); + MixerStrip* ms = dynamic_cast (*i); + if (ms) { + ms->CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RouteProcessorSelection::remove, this, _1, false), gui_context()); + } } } } void -RouteProcessorSelection::remove (AxisView* r) +RouteProcessorSelection::remove (AxisView* r, bool with_groups) { if (!shp.session()) { return; } ENSURE_GUI_THREAD (*this, &RouteProcessorSelection::remove, r); - shp.session()->selection().remove (r->stripable(), boost::shared_ptr()); + + std::list avl; + if (with_groups) { + avl= add_grouped_tracks (r); + } + avl.push_back (r); + + PresentationInfo::ChangeSuspender cs; + for (std::list::const_iterator i = avl.begin (); i != avl.end (); ++i) { + shp.session()->selection().remove ((*i)->stripable(), boost::shared_ptr()); + } } void @@ -144,7 +180,8 @@ RouteProcessorSelection::set (AxisView* r) if (!shp.session()) { return; } - shp.session()->selection().set (r->stripable(), boost::shared_ptr()); + shp.session()->selection().clear_stripables (); + add (r, true); } bool diff --git a/gtk2_ardour/route_processor_selection.h b/gtk2_ardour/route_processor_selection.h index 6c2b7c94ae..d92436dbc4 100644 --- a/gtk2_ardour/route_processor_selection.h +++ b/gtk2_ardour/route_processor_selection.h @@ -45,8 +45,8 @@ public: bool empty(); void set (AxisView*); - void add (AxisView*); - void remove (AxisView*); + void add (AxisView*, bool with_groups = false); + void remove (AxisView*, bool with_groups = false); bool selected (AxisView*); void clear_routes (); @@ -57,6 +57,7 @@ private: ARDOUR::SessionHandlePtr& shp; AxisViewProvider& avp; void removed (AxisView*); + std::list add_grouped_tracks (AxisView*) const; }; bool operator==(const RouteProcessorSelection& a, const RouteProcessorSelection& b);