more solo model work, including a GUI fix for mute button state when the route is...
[ardour.git] / gtk2_ardour / editor_selection.cc
index 8d5590fe89fef17867d345120e1485014e33dad3..fda5155e03d1fe6ed69505ab4f2bf8c253b8383a 100644 (file)
@@ -23,7 +23,6 @@
 #include "pbd/stacktrace.h"
 
 #include "ardour/session.h"
-#include "ardour/diskstream.h"
 #include "ardour/playlist.h"
 #include "ardour/route_group.h"
 #include "ardour/profile.h"
@@ -40,7 +39,6 @@
 #include "i18n.h"
 
 using namespace std;
-using namespace sigc;
 using namespace ARDOUR;
 using namespace PBD;
 using namespace Gtk;
@@ -172,6 +170,9 @@ Editor::select_all_tracks ()
        selection->set (visible_views);
 }
 
+/** Select clicked_routeview, unless there are no currently selected
+ *  tracks, in which case nothing will happen unless `force' is true.
+ */
 void
 Editor::set_selected_track_as_side_effect (bool force)
 {
@@ -240,17 +241,35 @@ Editor::set_selected_control_point_from_click (Selection::Operation op, bool /*n
                return false;
        }
 
-       /* select this point and any others that it represents */
-
-       double y1, y2;
-       nframes64_t x1, x2;
-
-       x1 = pixel_to_frame (clicked_control_point->get_x() - 10);
-       x2 = pixel_to_frame (clicked_control_point->get_x() + 10);
-       y1 = clicked_control_point->get_x() - 10;
-       y2 = clicked_control_point->get_y() + 10;
+       if (clicked_control_point->selected()) {
+               /* the clicked control point is already selected; others may be as well, so
+                  don't change the selection.
+               */
+               return true;
+       }
 
-       return select_all_within (x1, x2, y1, y2, selection->tracks, op);
+       /* We know the ControlPoint that was clicked, but (as discussed in automation_selectable.h)
+        * selected automation data are described by areas on the AutomationLine.  A ControlPoint
+        * represents any model points in the space that it takes up, so the AutomationSelectable
+        * needs to be the size of the ControlPoint.
+        */
+
+       double const size = clicked_control_point->size ();
+       
+       nframes64_t const x1 = pixel_to_frame (clicked_control_point->get_x() - size / 2);
+       nframes64_t const x2 = pixel_to_frame (clicked_control_point->get_x() + size / 2);
+       double y1 = clicked_control_point->get_y() - size / 2;
+       double y2 = clicked_control_point->get_y() + size / 2;
+
+       /* convert the y values to trackview space */
+       double dummy = 0;
+       clicked_control_point->line().parent_group().i2w (dummy, y1);
+       clicked_control_point->line().parent_group().i2w (dummy, y2);
+       _trackview_group->w2i (dummy, y1);
+       _trackview_group->w2i (dummy, y2);
+
+       /* and set up the selection */
+       return select_all_within (x1, x2, y1, y2, selection->tracks, Selection::Set);
 }
 
 void
@@ -263,48 +282,6 @@ Editor::get_onscreen_tracks (TrackViewList& tvl)
        }
 }
 
-/** Given a track, find any other tracks that are in the same active route group with a given property.
- *  @param basis Base track.
- *  @param equivs Filled with the base track and the found tracks.
- *  @param prop Property to look for in route groups.
- */
-
-void
-Editor::get_equivalent_tracks (RouteTimeAxisView* basis, set<RouteTimeAxisView*> & equivs, RouteGroup::Property prop) const
-{
-       equivs.insert (basis);
-
-       RouteGroup* group = basis->route()->route_group();
-       if (group && group->active_property (prop)) {
-
-               /* the basis is a member of an active route group, with the appropriate
-                  properties; find other members */
-
-               for (TrackViewList::const_iterator i = track_views.begin(); i != track_views.end(); ++i) {
-                       RouteTimeAxisView* v = dynamic_cast<RouteTimeAxisView*> (*i);
-                       if (v && v->route()->route_group() == group) {
-                               equivs.insert (v);
-                       }
-               }
-       }
-}
-
-/** Find tracks that are selected, and also those that are in the same `selection'-enabled route
- *  group as one that is selected.
- *  @param relevant_tracks set to add tracks to.
- */
-
-void
-Editor::get_relevant_tracks (set<RouteTimeAxisView*>& relevant_tracks) const
-{
-       for (TrackSelection::iterator ti = selection->tracks.begin(); ti != selection->tracks.end(); ++ti) {
-               RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*> (*ti);
-               if (rtv) {
-                       get_equivalent_tracks (rtv, relevant_tracks, RouteGroup::Select);
-               }
-       }
-}
-
 /** Call a slot for a given `basis' track and also for any track that is in the same
  *  active route group with a particular set of properties.
  *
@@ -314,7 +291,7 @@ Editor::get_relevant_tracks (set<RouteTimeAxisView*>& relevant_tracks) const
  */
 
 void
-Editor::mapover_tracks (slot<void, RouteTimeAxisView&, uint32_t> sl, TimeAxisView* basis, RouteGroup::Property prop) const
+Editor::mapover_tracks (sigc::slot<void, RouteTimeAxisView&, uint32_t> sl, TimeAxisView* basis, PBD::PropertyID prop) const
 {
        RouteTimeAxisView* route_basis = dynamic_cast<RouteTimeAxisView*> (basis);
        if (route_basis == 0) {
@@ -322,7 +299,21 @@ Editor::mapover_tracks (slot<void, RouteTimeAxisView&, uint32_t> sl, TimeAxisVie
        }
 
        set<RouteTimeAxisView*> tracks;
-       get_equivalent_tracks (route_basis, tracks, prop);
+       tracks.insert (route_basis);
+
+       RouteGroup* group = route_basis->route()->route_group();
+       if (group && group->enabled_property (prop)) {
+
+               /* the basis is a member of an active route group, with the appropriate
+                  properties; find other members */
+
+               for (TrackViewList::const_iterator i = track_views.begin(); i != track_views.end(); ++i) {
+                       RouteTimeAxisView* v = dynamic_cast<RouteTimeAxisView*> (*i);
+                       if (v && v->route()->route_group() == group) {
+                               tracks.insert (v);
+                       }
+               }
+       }
 
        /* call the slots */
        uint32_t const sz = tracks.size ();
@@ -337,9 +328,9 @@ Editor::mapped_get_equivalent_regions (RouteTimeAxisView& tv, uint32_t, RegionVi
        boost::shared_ptr<Playlist> pl;
        vector<boost::shared_ptr<Region> > results;
        RegionView* marv;
-       boost::shared_ptr<Diskstream> ds;
+       boost::shared_ptr<Track> tr;
 
-       if ((ds = tv.get_diskstream()) == 0) {
+       if ((tr = tv.track()) == 0) {
                /* bus */
                return;
        }
@@ -349,7 +340,7 @@ Editor::mapped_get_equivalent_regions (RouteTimeAxisView& tv, uint32_t, RegionVi
                return;
        }
 
-       if ((pl = ds->playlist()) != 0) {
+       if ((pl = tr->playlist()) != 0) {
                pl->get_equivalent_regions (basis->region(), results);
        }
 
@@ -361,9 +352,9 @@ Editor::mapped_get_equivalent_regions (RouteTimeAxisView& tv, uint32_t, RegionVi
 }
 
 void
-Editor::get_equivalent_regions (RegionView* basis, vector<RegionView*>& equivalent_regions, RouteGroup::Property prop) const
+Editor::get_equivalent_regions (RegionView* basis, vector<RegionView*>& equivalent_regions, PBD::PropertyID property) const
 {
-       mapover_tracks (sigc::bind (sigc::mem_fun (*this, &Editor::mapped_get_equivalent_regions), basis, &equivalent_regions), &basis->get_trackview(), prop);
+       mapover_tracks (sigc::bind (sigc::mem_fun (*this, &Editor::mapped_get_equivalent_regions), basis, &equivalent_regions), &basis->get_trackview(), property);
 
        /* add clicked regionview since we skipped all other regions in the same track as the one it was in */
 
@@ -371,7 +362,7 @@ Editor::get_equivalent_regions (RegionView* basis, vector<RegionView*>& equivale
 }
 
 RegionSelection
-Editor::get_equivalent_regions (RegionSelection & basis, RouteGroup::Property prop) const
+Editor::get_equivalent_regions (RegionSelection & basis, PBD::PropertyID prop) const
 {
        RegionSelection equivalent;
 
@@ -409,14 +400,14 @@ Editor::get_regionview_count_from_region_list (boost::shared_ptr<Region> region)
                        boost::shared_ptr<Playlist> pl;
                        vector<boost::shared_ptr<Region> > results;
                        RegionView* marv;
-                       boost::shared_ptr<Diskstream> ds;
+                       boost::shared_ptr<Track> tr;
 
-                       if ((ds = tatv->get_diskstream()) == 0) {
+                       if ((tr = tatv->track()) == 0) {
                                /* bus */
                                continue;
                        }
 
-                       if ((pl = (ds->playlist())) != 0) {
+                       if ((pl = (tr->playlist())) != 0) {
                                pl->get_region_list_equivalent_regions (region, results);
                        }
 
@@ -484,15 +475,13 @@ Editor::set_selected_regionview_from_click (bool press, Selection::Operation op,
                                if (press) {
 
                                        if (selection->selected (clicked_routeview)) {
-                                               get_equivalent_regions (clicked_regionview, all_equivalent_regions, RouteGroup::Select);
+                                               get_equivalent_regions (clicked_regionview, all_equivalent_regions, ARDOUR::Properties::select.property_id);
                                        } else {
                                                all_equivalent_regions.push_back (clicked_regionview);
                                        }
 
                                        /* add all the equivalent regions, but only on button press */
 
-
-
                                        if (!all_equivalent_regions.empty()) {
                                                commit = true;
                                        }
@@ -504,7 +493,7 @@ Editor::set_selected_regionview_from_click (bool press, Selection::Operation op,
 
                case Selection::Set:
                        if (!selection->selected (clicked_regionview)) {
-                               get_equivalent_regions (clicked_regionview, all_equivalent_regions, RouteGroup::Select);
+                               get_equivalent_regions (clicked_regionview, all_equivalent_regions, ARDOUR::Properties::select.property_id);
                                selection->set (all_equivalent_regions);
                                commit = true;
                        } else {
@@ -612,16 +601,23 @@ Editor::set_selected_regionview_from_click (bool press, Selection::Operation op,
                /* 2. find all the tracks we should select in */
 
                set<RouteTimeAxisView*> relevant_tracks;
-               set<RouteTimeAxisView*> already_in_selection;
 
-               get_relevant_tracks (relevant_tracks);
+               for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
+                       RouteTimeAxisView* r = dynamic_cast<RouteTimeAxisView*> (*i);
+                       if (r) {
+                               relevant_tracks.insert (r);
+                       }
+               }
+               
+               set<RouteTimeAxisView*> already_in_selection;
 
                if (relevant_tracks.empty()) {
 
-                       /* no relevant tracks -> no tracks selected .. thus .. if
-                          the regionview we're in isn't selected (i.e. we're
-                          about to extend to it), then find all tracks between
-                          the this one and any selected ones.
+                       /* no tracks selected .. thus .. if the
+                          regionview we're in isn't selected
+                          (i.e. we're about to extend to it), then
+                          find all tracks between the this one and
+                          any selected ones.
                        */
 
                        if (!selection->selected (entered_regionview)) {
@@ -655,7 +651,6 @@ Editor::set_selected_regionview_from_click (bool press, Selection::Operation op,
                                                        if (result.second) {
                                                                /* newly added to already_in_selection */
 
-
                                                                int d = artv->route()->order_key ("editor");
 
                                                                d -= key;
@@ -710,8 +705,6 @@ Editor::set_selected_regionview_from_click (bool press, Selection::Operation op,
                           one that was clicked.
                */
 
-               get_relevant_tracks (relevant_tracks);
-
                for (set<RouteTimeAxisView*>::iterator t = relevant_tracks.begin(); t != relevant_tracks.end(); ++t) {
                        (*t)->get_selectables (first_frame, last_frame, -1.0, -1.0, results);
                }
@@ -835,14 +828,8 @@ Editor::time_selection_changed ()
                (*i)->hide_selection ();
        }
 
-       if (selection->tracks.empty()) {
-               for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
-                       (*i)->show_selection (selection->time);
-               }
-       } else {
-               for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
-                       (*i)->show_selection (selection->time);
-               }
+       for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
+               (*i)->show_selection (selection->time);
        }
 
        if (selection->time.empty()) {
@@ -850,7 +837,6 @@ Editor::time_selection_changed ()
        } else {
                ActionManager::set_sensitive (ActionManager::time_selection_sensitive_actions, true);
        }
-
 }
 
 void
@@ -886,12 +872,11 @@ Editor::region_selection_changed ()
        _regions->unselect_all ();
 
        for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
-
                (*i)->set_selected_regionviews (selection->regions);
-               _regions->set_selected (selection->regions);
-
        }
 
+       _regions->set_selected (selection->regions);
+
        sensitize_the_right_region_actions (!selection->regions.empty());
 
        _regions->block_change_connection (false);
@@ -989,59 +974,37 @@ Editor::invert_selection ()
        selection->set (touched);
 }
 
+/** @param top Top (lower) y limit in trackview coordinates.
+ *  @param bottom Bottom (higher) y limit in trackview coordinates.
+ */
 bool
 Editor::select_all_within (nframes64_t start, nframes64_t end, double top, double bot, const TrackViewList& tracklist, Selection::Operation op)
 {
-       list<Selectable*> touched;
-       list<Selectable*>::size_type n = 0;
-       TrackViewList touched_tracks;
+       list<Selectable*> found;
 
        for (TrackViewList::const_iterator iter = tracklist.begin(); iter != tracklist.end(); ++iter) {
+               
                if ((*iter)->hidden()) {
                        continue;
                }
 
-               n = touched.size();
-
-               (*iter)->get_selectables (start, end, top, bot, touched);
-
-               if (n != touched.size()) {
-                       touched_tracks.push_back (*iter);
-               }
+               (*iter)->get_selectables (start, end, top, bot, found);
        }
-
-       if (touched.empty()) {
+       
+       if (found.empty()) {
                return false;
        }
 
-       if (!touched_tracks.empty()) {
-
-               switch (op) {
-               case Selection::Add:
-                       selection->add (touched_tracks);
-                       break;
-               case Selection::Toggle:
-                       selection->toggle (touched_tracks);
-                       break;
-               case Selection::Set:
-                       selection->set (touched_tracks);
-                       break;
-               case Selection::Extend:
-                       /* not defined yet */
-                       break;
-               }
-       }
-
        begin_reversible_command (_("select all within"));
        switch (op) {
        case Selection::Add:
-               selection->add (touched);
+               selection->add (found);
                break;
        case Selection::Toggle:
-               selection->toggle (touched);
+               selection->toggle (found);
                break;
        case Selection::Set:
-               selection->set (touched);
+               selection->set (found);
                break;
        case Selection::Extend:
                /* not defined yet */
@@ -1050,7 +1013,7 @@ Editor::select_all_within (nframes64_t start, nframes64_t end, double top, doubl
 
        commit_reversible_command ();
 
-       return !touched.empty();
+       return !found.empty();
 }
 
 void
@@ -1060,7 +1023,7 @@ Editor::set_selection_from_region ()
                return;
        }
 
-       selection->set (0, selection->regions.start(), selection->regions.end_frame());
+       selection->set (selection->regions.start(), selection->regions.end_frame());
        if (!Profile->get_sae()) {
                set_mouse_mode (Editing::MouseRange, false);
        }
@@ -1071,7 +1034,7 @@ Editor::set_selection_from_punch()
 {
        Location* location;
 
-       if ((location = session->locations()->auto_punch_location()) == 0)  {
+       if ((location = _session->locations()->auto_punch_location()) == 0)  {
                return;
        }
 
@@ -1083,7 +1046,7 @@ Editor::set_selection_from_loop()
 {
        Location* location;
 
-       if ((location = session->locations()->auto_loop_location()) == 0)  {
+       if ((location = _session->locations()->auto_loop_location()) == 0)  {
                return;
        }
        set_selection_from_range (*location);
@@ -1093,7 +1056,7 @@ void
 Editor::set_selection_from_range (Location& loc)
 {
        begin_reversible_command (_("set selection from range"));
-       selection->set (0, loc.start(), loc.end());
+       selection->set (loc.start(), loc.end());
        commit_reversible_command ();
 
        if (!Profile->get_sae()) {
@@ -1117,7 +1080,7 @@ Editor::select_all_selectables_using_time_selection ()
                return;
        }
 
-       TrackSelection* ts;
+       TrackViewList* ts;
 
        if (selection->tracks.empty()) {
                ts = &track_views;
@@ -1141,7 +1104,7 @@ Editor::select_all_selectables_using_time_selection ()
 void
 Editor::select_all_selectables_using_punch()
 {
-       Location* location = session->locations()->auto_punch_location();
+       Location* location = _session->locations()->auto_punch_location();
        list<Selectable *> touched;
 
        if (location == 0 || (location->end() - location->start() <= 1))  {
@@ -1149,7 +1112,7 @@ Editor::select_all_selectables_using_punch()
        }
 
 
-       TrackSelection* ts;
+       TrackViewList* ts;
 
        if (selection->tracks.empty()) {
                ts = &track_views;
@@ -1172,7 +1135,7 @@ Editor::select_all_selectables_using_punch()
 void
 Editor::select_all_selectables_using_loop()
 {
-       Location* location = session->locations()->auto_loop_location();
+       Location* location = _session->locations()->auto_loop_location();
        list<Selectable *> touched;
 
        if (location == 0 || (location->end() - location->start() <= 1))  {
@@ -1180,7 +1143,7 @@ Editor::select_all_selectables_using_loop()
        }
 
 
-       TrackSelection* ts;
+       TrackViewList* ts;
 
        if (selection->tracks.empty()) {
                ts = &track_views;
@@ -1210,7 +1173,7 @@ Editor::select_all_selectables_using_cursor (EditorCursor *cursor, bool after)
        if (after) {
                begin_reversible_command (_("select all after cursor"));
                start = cursor->current_frame ;
-               end = session->current_end_frame();
+               end = _session->current_end_frame();
        } else {
                if (cursor->current_frame > 0) {
                        begin_reversible_command (_("select all before cursor"));
@@ -1222,7 +1185,7 @@ Editor::select_all_selectables_using_cursor (EditorCursor *cursor, bool after)
        }
 
 
-       TrackSelection* ts;
+       TrackViewList* ts;
 
        if (selection->tracks.empty()) {
                ts = &track_views;
@@ -1250,7 +1213,7 @@ Editor::select_all_selectables_using_edit (bool after)
        if (after) {
                begin_reversible_command (_("select all after edit"));
                start = get_preferred_edit_position();
-               end = session->current_end_frame();
+               end = _session->current_end_frame();
        } else {
                if ((end = get_preferred_edit_position()) > 1) {
                        begin_reversible_command (_("select all before edit"));
@@ -1262,7 +1225,7 @@ Editor::select_all_selectables_using_edit (bool after)
        }
 
 
-       TrackSelection* ts;
+       TrackViewList* ts;
 
        if (selection->tracks.empty()) {
                ts = &track_views;
@@ -1291,7 +1254,7 @@ Editor::select_all_selectables_between (bool /*within*/)
                return;
        }
 
-       TrackSelection* ts;
+       TrackViewList* ts;
 
        if (selection->tracks.empty()) {
                ts = &track_views;
@@ -1320,7 +1283,7 @@ Editor::select_range_between ()
        }
 
        set_mouse_mode (MouseRange);
-       selection->set ((TimeAxisView*) 0, start, end);
+       selection->set (start, end);
 }
 
 bool
@@ -1348,7 +1311,7 @@ Editor::get_edit_op_range (nframes64_t& start, nframes64_t& end) const
                }
 
                start = selection->markers.front()->position();
-               end = session->audible_frame();
+               end = _session->audible_frame();
 
        } else {
 
@@ -1357,10 +1320,10 @@ Editor::get_edit_op_range (nframes64_t& start, nframes64_t& end) const
                        if (selection->markers.empty()) {
                                /* use mouse + playhead */
                                start = m;
-                               end = session->audible_frame();
+                               end = _session->audible_frame();
                        } else {
                                /* use playhead + selected marker */
-                               start = session->audible_frame();
+                               start = _session->audible_frame();
                                end = selection->markers.front()->position();
                        }
                        break;
@@ -1369,7 +1332,7 @@ Editor::get_edit_op_range (nframes64_t& start, nframes64_t& end) const
                        /* use mouse + selected marker */
                        if (selection->markers.empty()) {
                                start = m;
-                               end = session->audible_frame();
+                               end = _session->audible_frame();
                        } else {
                                start = selection->markers.front()->position();
                                end = m;
@@ -1426,4 +1389,14 @@ Editor::deselect_all ()
        selection->clear ();
 }
 
-
+long
+Editor::select_range_around_region (RegionView* rv)
+{
+       assert (rv);
+       
+       selection->set (&rv->get_time_axis_view());
+       
+       selection->time.clear ();
+       boost::shared_ptr<Region> r = rv->region ();
+       return selection->set (r->position(), r->position() + r->length());
+}