Re-work edit group selection in line with suggestions from Paul.
[ardour.git] / gtk2_ardour / editor_selection.cc
1 /*
2     Copyright (C) 2000-2006 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <pbd/stacktrace.h>
21
22 #include <ardour/diskstream.h>
23 #include <ardour/playlist.h>
24 #include <ardour/route_group.h>
25
26 #include "editor.h"
27 #include "actions.h"
28 #include "audio_time_axis.h"
29 #include "audio_region_view.h"
30 #include "audio_streamview.h"
31 #include "automation_line.h"
32 #include "control_point.h"
33
34 #include "i18n.h"
35
36 using namespace std;
37 using namespace sigc;
38 using namespace ARDOUR;
39 using namespace PBD;
40 using namespace Gtk;
41 using namespace Glib;
42 using namespace Gtkmm2ext;
43 using namespace Editing;
44
45 struct TrackViewByPositionSorter
46 {
47     bool operator() (const TimeAxisView* a, const TimeAxisView *b) {
48             return a->y_position < b->y_position;
49     }
50 };
51
52 bool
53 Editor::extend_selection_to_track (TimeAxisView& view)
54 {
55         if (selection->selected (&view)) {
56                 /* already selected, do nothing */
57                 return false;
58         }
59
60         if (selection->tracks.empty()) {
61
62                 if (!selection->selected (&view)) {
63                         selection->set (&view);
64                         return true;
65                 } else {
66                         return false;
67                 }
68         } 
69
70         /* something is already selected, so figure out which range of things to add */
71         
72         TrackViewList to_be_added;
73         TrackViewList sorted = track_views;
74         TrackViewByPositionSorter cmp;
75         bool passed_clicked = false;
76         bool forwards = true;
77
78         sorted.sort (cmp);
79
80         if (!selection->selected (&view)) {
81                 to_be_added.push_back (&view);
82         }
83
84         /* figure out if we should go forward or backwards */
85
86         for (TrackViewList::iterator i = sorted.begin(); i != sorted.end(); ++i) {
87
88                 if ((*i) == &view) {
89                         passed_clicked = true;
90                 }
91
92                 if (selection->selected (*i)) {
93                         if (passed_clicked) {
94                                 forwards = true;
95                         } else {
96                                 forwards = false;
97                         }
98                         break;
99                 }
100         }
101                         
102         passed_clicked = false;
103
104         if (forwards) {
105
106                 for (TrackViewList::iterator i = sorted.begin(); i != sorted.end(); ++i) {
107                                         
108                         if ((*i) == &view) {
109                                 passed_clicked = true;
110                                 continue;
111                         }
112                                         
113                         if (passed_clicked) {
114                                 if ((*i)->hidden()) {
115                                         continue;
116                                 }
117                                 if (selection->selected (*i)) {
118                                         break;
119                                 } else if (!(*i)->hidden()) {
120                                         to_be_added.push_back (*i);
121                                 }
122                         }
123                 }
124
125         } else {
126
127                 for (TrackViewList::reverse_iterator r = sorted.rbegin(); r != sorted.rend(); ++r) {
128                                         
129                         if ((*r) == &view) {
130                                 passed_clicked = true;
131                                 continue;
132                         }
133                                         
134                         if (passed_clicked) {
135                                                 
136                                 if ((*r)->hidden()) {
137                                         continue;
138                                 }
139                                                 
140                                 if (selection->selected (*r)) {
141                                         break;
142                                 } else if (!(*r)->hidden()) {
143                                         to_be_added.push_back (*r);
144                                 }
145                         }
146                 }
147         }
148                         
149         if (!to_be_added.empty()) {
150                 selection->add (to_be_added);
151                 return true;
152         }
153         
154         return false;
155 }
156
157 void
158 Editor::select_all_tracks ()
159 {
160         selection->set (track_views);
161 }
162
163 bool
164 Editor::set_selected_track (TimeAxisView& view, Selection::Operation op, bool no_remove)
165 {
166         bool commit = false;
167
168         switch (op) {
169         case Selection::Toggle:
170                 if (selection->selected (&view)) {
171                         if (!no_remove) {
172                                 selection->remove (&view);
173                                 commit = true;
174                         }
175                 } else {
176                         selection->add (&view);
177                         commit = false;
178                 }
179                 break;
180
181         case Selection::Add:
182                 if (!selection->selected (&view)) {
183                         selection->add (&view);
184                         commit = true;
185                 }
186                 break;
187
188         case Selection::Set:
189                 if (selection->selected (&view) && selection->tracks.size() == 1) {
190                         /* no commit necessary */
191                 } else {
192                         
193                         /* reset track selection if there is only 1 other track
194                            selected OR if no_remove is not set (its there to 
195                            prevent deselecting a multi-track selection
196                            when clicking on an already selected track
197                            for some reason.
198                         */
199
200                         if (selection->tracks.empty()) {
201                                 selection->set (&view);
202                                 commit = true;
203                         } else if (selection->tracks.size() == 1 || !no_remove) {
204                                 selection->set (&view);
205                                 commit = true;
206                         }
207                 }
208                 break;
209                 
210         case Selection::Extend:
211                 commit = extend_selection_to_track (view);
212                 break;
213         }
214
215         return commit;
216 }
217
218 bool
219 Editor::set_selected_track_from_click (bool press, Selection::Operation op, bool no_remove)
220 {
221         if (!clicked_routeview) {
222                 return false;
223         }
224         
225         if (!press) {
226                 return false;
227         }
228
229         return set_selected_track (*clicked_routeview, op, no_remove);
230 }
231
232 bool
233 Editor::set_selected_control_point_from_click (Selection::Operation op, bool no_remove)
234 {
235         if (!clicked_control_point) {
236                 return false;
237         }
238
239         /* select this point and any others that it represents */
240
241         double y1, y2;
242         nframes_t x1, x2;
243
244         x1 = pixel_to_frame (clicked_control_point->get_x() - 10);
245         x2 = pixel_to_frame (clicked_control_point->get_x() + 10);
246         y1 = clicked_control_point->get_x() - 10;
247         y2 = clicked_control_point->get_y() + 10;
248
249         return select_all_within (x1, x2, y1, y2, selection->tracks, op);
250 }
251
252 void
253 Editor::get_relevant_tracks (set<RouteTimeAxisView*>& relevant_tracks)
254 {
255         /* step one: get all selected tracks and all tracks in the relevant edit groups */
256
257         for (TrackSelection::iterator ti = selection->tracks.begin(); ti != selection->tracks.end(); ++ti) {
258
259                 RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(*ti);
260
261                 if (!rtv) {
262                         continue;
263                 }
264
265                 RouteGroup* group = rtv->route()->edit_group();
266
267                 if (group && group->is_active()) {
268                         
269                         /* active group for this track, loop over all tracks and get every member of the group */
270
271                         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
272                                 
273                                 RouteTimeAxisView* trtv;
274                                 
275                                 if ((trtv = dynamic_cast<RouteTimeAxisView*> (*i)) != 0) {
276                                         
277                                         if (trtv->route()->edit_group() == group) {
278                                                 relevant_tracks.insert (trtv);
279                                         }
280                                 }
281                         }
282                 } else {
283                         relevant_tracks.insert (rtv);
284                 }
285         }
286 }
287
288 /**
289  *  Call a slot for a given `basis' track and also for any track that is in the same
290  *  active edit group.
291  *  @param sl Slot to call.
292  *  @param basis Basis track.
293  */
294
295 void
296 Editor::mapover_tracks (slot<void, RouteTimeAxisView&, uint32_t> sl, TimeAxisView* basis) const
297 {
298         RouteTimeAxisView* route_basis = dynamic_cast<RouteTimeAxisView*> (basis);
299         if (route_basis == 0) {
300                 return;
301         }
302
303         /* work out the tracks that we will call the slot for; use
304            a set here as it will disallow possible duplicates of the
305            basis track */
306         set<RouteTimeAxisView*> tracks;
307
308         /* always call for the basis */
309         tracks.insert (route_basis);
310
311         RouteGroup* group = route_basis->route()->edit_group();
312         if (group && group->is_active()) {
313
314                 /* the basis is a member of an active edit group; find other members */
315                 for (TrackViewList::const_iterator i = track_views.begin(); i != track_views.end(); ++i) {
316                         RouteTimeAxisView* v = dynamic_cast<RouteTimeAxisView*> (*i);
317                         if (v && v->route()->edit_group() == group) {
318                                 tracks.insert (v);
319                         }
320                 }
321         }
322
323         /* call the slots */
324         uint32_t const sz = tracks.size ();
325         for (set<RouteTimeAxisView*>::iterator i = tracks.begin(); i != tracks.end(); ++i) {
326                 sl (**i, sz);
327         }
328 }
329
330 void
331 Editor::mapped_get_equivalent_regions (RouteTimeAxisView& tv, uint32_t ignored, RegionView* basis, vector<RegionView*>* all_equivs) const
332 {
333         boost::shared_ptr<Playlist> pl;
334         vector<boost::shared_ptr<Region> > results;
335         RegionView* marv;
336         boost::shared_ptr<Diskstream> ds;
337
338         if ((ds = tv.get_diskstream()) == 0) {
339                 /* bus */
340                 return;
341         }
342
343         if (&tv == &basis->get_time_axis_view()) {
344                 /* looking in same track as the original */
345                 return;
346         }
347
348         if ((pl = ds->playlist()) != 0) {
349                 pl->get_equivalent_regions (basis->region(), results);
350         }
351
352         for (vector<boost::shared_ptr<Region> >::iterator ir = results.begin(); ir != results.end(); ++ir) {
353                 if ((marv = tv.view()->find_view (*ir)) != 0) {
354                         all_equivs->push_back (marv);
355                 }
356         }
357 }
358
359 void
360 Editor::get_equivalent_regions (RegionView* basis, vector<RegionView*>& equivalent_regions) const
361 {
362         mapover_tracks (bind (mem_fun (*this, &Editor::mapped_get_equivalent_regions), basis, &equivalent_regions), &basis->get_trackview());
363         
364         /* add clicked regionview since we skipped all other regions in the same track as the one it was in */
365         
366         equivalent_regions.push_back (basis);
367 }
368
369 bool
370 Editor::set_selected_regionview_from_click (bool press, Selection::Operation op, bool no_track_remove)
371 {
372         vector<RegionView*> all_equivalent_regions;
373         bool commit = false;
374
375         if (!clicked_regionview || !clicked_routeview) {
376                 return false;
377         }
378
379         if (press) {
380                 button_release_can_deselect = false;
381         } 
382
383         if (op == Selection::Toggle || op == Selection::Set) {
384
385
386                 switch (op) {
387                 case Selection::Toggle:
388                         
389                         if (clicked_regionview->get_selected()) {
390                                 if (press) {
391
392                                         /* whatever was clicked was selected already; do nothing here but allow
393                                            the button release to deselect it
394                                         */
395
396                                         button_release_can_deselect = true;
397
398                                 } else {
399
400                                         if (button_release_can_deselect) {
401
402                                                 /* just remove this one region, but only on a permitted button release */
403
404                                                 selection->remove (clicked_regionview);
405                                                 commit = true;
406
407                                                 /* no more deselect action on button release till a new press
408                                                    finds an already selected object.
409                                                 */
410
411                                                 button_release_can_deselect = false;
412                                         }
413                                 } 
414
415                         } else {
416
417                                 if (press) {
418
419                                         if (selection->selected (clicked_routeview)) {
420                                                 get_equivalent_regions (clicked_regionview, all_equivalent_regions);
421                                         } else {
422                                                 all_equivalent_regions.push_back (clicked_regionview);
423                                         }
424
425                                         /* add all the equivalent regions, but only on button press */
426                                         
427
428
429                                         if (!all_equivalent_regions.empty()) {
430                                                 commit = true;
431                                         }
432
433                                         selection->add (all_equivalent_regions);
434                                 } 
435                         }
436                         break;
437                         
438                 case Selection::Set:
439                         if (!clicked_regionview->get_selected()) {
440                                 selection->set (clicked_regionview);
441                                 commit = true;
442                         } else {
443                                 /* no commit necessary: clicked on an already selected region */
444                                 goto out;
445                         }
446                         break;
447
448                 default:
449                         /* silly compiler */
450                         break;
451                 }
452
453         } else if (op == Selection::Extend) {
454
455                 list<Selectable*> results;
456                 nframes_t last_frame;
457                 nframes_t first_frame;
458
459                 /* 1. find the last selected regionview in the track that was clicked in */
460
461                 last_frame = 0;
462                 first_frame = max_frames;
463
464                 for (RegionSelection::iterator x = selection->regions.begin(); x != selection->regions.end(); ++x) {
465                         if (&(*x)->get_time_axis_view() == &clicked_regionview->get_time_axis_view()) {
466
467                                 if ((*x)->region()->last_frame() > last_frame) {
468                                         last_frame = (*x)->region()->last_frame();
469                                 }
470
471                                 if ((*x)->region()->first_frame() < first_frame) {
472                                         first_frame = (*x)->region()->first_frame();
473                                 }
474                         }
475                 }
476
477                 /* 2. figure out the boundaries for our search for new objects */
478
479                 switch (clicked_regionview->region()->coverage (first_frame, last_frame)) {
480                 case OverlapNone:
481                         if (last_frame < clicked_regionview->region()->first_frame()) {
482                                 first_frame = last_frame;
483                                 last_frame = clicked_regionview->region()->last_frame();
484                         } else {
485                                 last_frame = first_frame;
486                                 first_frame = clicked_regionview->region()->first_frame();
487                         }
488                         break;
489
490                 case OverlapExternal:
491                         if (last_frame < clicked_regionview->region()->first_frame()) {
492                                 first_frame = last_frame;
493                                 last_frame = clicked_regionview->region()->last_frame();
494                         } else {
495                                 last_frame = first_frame;
496                                 first_frame = clicked_regionview->region()->first_frame();
497                         }
498                         break;
499
500                 case OverlapInternal:
501                         if (last_frame < clicked_regionview->region()->first_frame()) {
502                                 first_frame = last_frame;
503                                 last_frame = clicked_regionview->region()->last_frame();
504                         } else {
505                                 last_frame = first_frame;
506                                 first_frame = clicked_regionview->region()->first_frame();
507                         }
508                         break;
509
510                 case OverlapStart:
511                 case OverlapEnd:
512                         /* nothing to do except add clicked region to selection, since it
513                            overlaps with the existing selection in this track.
514                         */
515                         break;
516                 }
517
518                 /* 2. find all selectable objects (regionviews in this case) between that one and the end of the
519                       one that was clicked.
520                 */
521
522                 set<RouteTimeAxisView*> relevant_tracks;
523                 
524                 get_relevant_tracks (relevant_tracks);
525
526                 for (set<RouteTimeAxisView*>::iterator t = relevant_tracks.begin(); t != relevant_tracks.end(); ++t) {
527                         (*t)->get_selectables (first_frame, last_frame, -1.0, -1.0, results);
528                 }
529                 
530                 /* 3. convert to a vector of audio regions */
531
532                 vector<RegionView*> regions;
533                 
534                 for (list<Selectable*>::iterator x = results.begin(); x != results.end(); ++x) {
535                         RegionView* arv;
536
537                         if ((arv = dynamic_cast<RegionView*>(*x)) != 0) {
538                                 regions.push_back (arv);
539                         }
540                 }
541
542                 if (!regions.empty()) {
543                         selection->add (regions);
544                         commit = true;
545                 }
546         }
547
548   out:
549         return commit;
550 }
551
552 void
553 Editor::set_selected_regionview_from_region_list (boost::shared_ptr<Region> region, Selection::Operation op)
554 {
555         vector<RegionView*> all_equivalent_regions;
556
557         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
558                 
559                 RouteTimeAxisView* tatv;
560                 
561                 if ((tatv = dynamic_cast<RouteTimeAxisView*> (*i)) != 0) {
562                         
563                         boost::shared_ptr<Playlist> pl;
564                         vector<boost::shared_ptr<Region> > results;
565                         RegionView* marv;
566                         boost::shared_ptr<Diskstream> ds;
567                         
568                         if ((ds = tatv->get_diskstream()) == 0) {
569                                 /* bus */
570                                 continue;
571                         }
572                         
573                         if ((pl = (ds->playlist())) != 0) {
574                                 pl->get_region_list_equivalent_regions (region, results);
575                         }
576                         
577                         for (vector<boost::shared_ptr<Region> >::iterator ir = results.begin(); ir != results.end(); ++ir) {
578                                 if ((marv = tatv->view()->find_view (*ir)) != 0) {
579                                         all_equivalent_regions.push_back (marv);
580                                 }
581                         }
582                         
583                 }
584         }
585         
586         begin_reversible_command (_("set selected regions"));
587         
588         switch (op) {
589         case Selection::Toggle:
590                 /* XXX this is not correct */
591                 selection->toggle (all_equivalent_regions);
592                 break;
593         case Selection::Set:
594                 selection->set (all_equivalent_regions);
595                 break;
596         case Selection::Extend:
597                 selection->add (all_equivalent_regions);
598                 break;
599         case Selection::Add:
600                 selection->add (all_equivalent_regions);
601                 break;
602         }
603
604         commit_reversible_command () ;
605 }
606
607 void
608 Editor::track_selection_changed ()
609 {
610         switch (selection->tracks.size()){
611         case 0:
612                 break;
613         default:
614                 set_selected_mixer_strip (*(selection->tracks.front()));
615                 break;
616         }
617
618         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
619                 (*i)->set_selected (false);
620                 if (mouse_mode == MouseRange) {
621                         (*i)->hide_selection ();
622                 }
623         }
624
625         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
626                 (*i)->set_selected (true);
627                 if (mouse_mode == MouseRange) {
628                         (*i)->show_selection (selection->time);
629                 }
630         }
631 }
632
633 void
634 Editor::time_selection_changed ()
635 {
636         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
637                 (*i)->hide_selection ();
638         }
639
640         if (selection->tracks.empty()) {
641                 for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
642                         (*i)->show_selection (selection->time);
643                 }
644         } else {
645                 for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
646                         (*i)->show_selection (selection->time);
647                 }
648         }
649
650         if (selection->time.empty()) {
651                 ActionManager::set_sensitive (ActionManager::time_selection_sensitive_actions, false);
652         } else {
653                 ActionManager::set_sensitive (ActionManager::time_selection_sensitive_actions, true);
654         }
655 }
656
657 void
658 Editor::region_selection_changed ()
659 {
660         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
661                 (*i)->set_selected_regionviews (selection->regions);
662         }
663 }
664
665 void
666 Editor::point_selection_changed ()
667 {
668         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
669                 (*i)->set_selected_points (selection->points);
670         }
671 }
672
673 /** Select everything in the selected tracks
674  * @param Selection operation to apply.
675  */
676 void
677 Editor::select_all_in_selected_tracks (Selection::Operation op)
678 {
679         list<Selectable *> touched;
680
681         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
682                 (*i)->get_selectables (0, max_frames, 0, DBL_MAX, touched);
683         }
684
685         switch (op) {
686         case Selection::Toggle:
687                 selection->add (touched);
688                 break;
689         case Selection::Set:
690                 selection->set (touched);
691                 break;
692         case Selection::Extend:
693                 /* meaningless, because we're selecting everything */
694                 break;
695         case Selection::Add:
696                 selection->add (touched);
697                 break;
698         }
699 }
700
701 void
702 Editor::select_all (Selection::Operation op)
703 {
704         list<Selectable *> touched;
705         
706         for (TrackViewList::iterator iter = track_views.begin(); iter != track_views.end(); ++iter) {
707                 if ((*iter)->hidden()) {
708                         continue;
709                 }
710                 (*iter)->get_selectables (0, max_frames, 0, DBL_MAX, touched);
711         }
712         begin_reversible_command (_("select all"));
713         switch (op) {
714         case Selection::Add:
715                 selection->add (touched);
716                 break;
717         case Selection::Toggle:
718                 selection->add (touched);
719                 break;
720         case Selection::Set:
721                 selection->set (touched);
722                 break;
723         case Selection::Extend:
724                 /* meaningless, because we're selecting everything */
725                 break;
726         }
727         commit_reversible_command ();
728 }
729
730 /** Invert the selection in the selected tracks */
731 void
732 Editor::invert_selection_in_selected_tracks ()
733 {
734         list<Selectable *> touched;
735
736         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
737                 (*i)->get_inverted_selectables (*selection, touched);
738         }
739         
740         selection->set (touched);
741 }
742
743 void
744 Editor::invert_selection ()
745 {
746         list<Selectable *> touched;
747         
748         for (TrackViewList::iterator iter = track_views.begin(); iter != track_views.end(); ++iter) {
749                 if ((*iter)->hidden()) {
750                         continue;
751                 }
752                 (*iter)->get_inverted_selectables (*selection, touched);
753         }
754
755         selection->set (touched);
756 }
757
758 bool
759 Editor::select_all_within (nframes_t start, nframes_t end, double top, double bot, const TrackViewList& tracklist, Selection::Operation op)
760 {
761         list<Selectable*> touched;
762         list<Selectable*>::size_type n = 0;
763         TrackViewList touched_tracks;
764
765         for (TrackViewList::const_iterator iter = tracklist.begin(); iter != tracklist.end(); ++iter) {
766                 if ((*iter)->hidden()) {
767                         continue;
768                 }
769
770                 n = touched.size();
771
772                 (*iter)->get_selectables (start, end, top, bot, touched);
773                 
774                 if (n != touched.size()) {
775                         touched_tracks.push_back (*iter);
776                 }
777         }
778
779         if (touched.empty()) {
780                 return false;
781         }
782
783         if (!touched_tracks.empty()) {
784
785                 switch (op) {
786                 case Selection::Add:
787                         selection->add (touched_tracks);
788                         break;
789                 case Selection::Toggle:
790                         selection->toggle (touched_tracks);
791                         break;
792                 case Selection::Set:
793                         selection->set (touched_tracks);
794                         break;
795                 case Selection::Extend:
796                         /* not defined yet */
797                         break;
798                 }
799         }
800
801         begin_reversible_command (_("select all within"));
802         switch (op) {
803         case Selection::Add:
804                 selection->add (touched);
805                 break;
806         case Selection::Toggle:
807                 selection->toggle (touched);
808                 break;
809         case Selection::Set:
810                 selection->set (touched);
811                 break;
812         case Selection::Extend:
813                 /* not defined yet */
814                 break;
815         }
816         
817         commit_reversible_command ();
818
819         return !touched.empty();
820 }
821
822 void
823 Editor::set_selection_from_audio_region ()
824 {
825         if (selection->regions.empty()) {
826                 return;
827         }
828
829         RegionView* rv = *(selection->regions.begin());
830         boost::shared_ptr<Region> region = rv->region();
831         
832         begin_reversible_command (_("set selection from region"));
833         selection->set (0, region->position(), region->last_frame());
834         commit_reversible_command ();
835
836         set_mouse_mode (Editing::MouseRange, false);
837 }
838
839 void
840 Editor::set_selection_from_punch()
841 {
842         Location* location;
843
844         if ((location = session->locations()->auto_punch_location()) == 0)  {
845                 return;
846         }
847
848         set_selection_from_range (*location);
849 }
850
851 void
852 Editor::set_selection_from_loop()
853 {
854         Location* location;
855
856         if ((location = session->locations()->auto_loop_location()) == 0)  {
857                 return;
858         }
859         set_selection_from_range (*location);
860 }
861
862 void
863 Editor::set_selection_from_range (Location& loc)
864 {
865         begin_reversible_command (_("set selection from range"));
866         selection->set (0, loc.start(), loc.end());
867         commit_reversible_command ();
868
869         set_mouse_mode (Editing::MouseRange, false);
870 }
871
872 void
873 Editor::select_all_selectables_using_time_selection ()
874 {
875         list<Selectable *> touched;
876
877         if (selection->time.empty()) {
878                 return;
879         }
880
881         nframes_t start = selection->time[clicked_selection].start;
882         nframes_t end = selection->time[clicked_selection].end;
883
884         if (end - start < 1)  {
885                 return;
886         }
887
888         for (TrackViewList::iterator iter = selection->tracks.begin(); iter != selection->tracks.end(); ++iter) {
889                 if ((*iter)->hidden()) {
890                         continue;
891                 }
892                 (*iter)->get_selectables (start, end - 1, 0, DBL_MAX, touched);
893         }
894
895         begin_reversible_command (_("select all from range"));
896         selection->set (touched);
897         commit_reversible_command ();
898 }
899
900
901 void
902 Editor::select_all_selectables_using_punch()
903 {
904         Location* location = session->locations()->auto_punch_location();
905         list<Selectable *> touched;
906
907         if (location == 0 || (location->end() - location->start() <= 1))  {
908                 return;
909         }
910
911         for (TrackViewList::iterator iter = track_views.begin(); iter != track_views.end(); ++iter) {
912                 if ((*iter)->hidden()) {
913                         continue;
914                 }
915                 (*iter)->get_selectables (location->start(), location->end() - 1, 0, DBL_MAX, touched);
916         }
917         begin_reversible_command (_("select all from punch"));
918         selection->set (touched);
919         commit_reversible_command ();
920
921 }
922
923 void
924 Editor::select_all_selectables_using_loop()
925 {
926         Location* location = session->locations()->auto_loop_location();
927         list<Selectable *> touched;
928
929         if (location == 0 || (location->end() - location->start() <= 1))  {
930                 return;
931         }
932
933         for (TrackViewList::iterator iter = track_views.begin(); iter != track_views.end(); ++iter) {
934                 if ((*iter)->hidden()) {
935                         continue;
936                 }
937                 (*iter)->get_selectables (location->start(), location->end() - 1, 0, DBL_MAX, touched);
938         }
939         begin_reversible_command (_("select all from loop"));
940         selection->set (touched);
941         commit_reversible_command ();
942
943 }
944
945 void
946 Editor::select_all_selectables_using_cursor (Cursor *cursor, bool after)
947 {
948         nframes_t start;
949         nframes_t end;
950         list<Selectable *> touched;
951
952         if (after) {
953                 begin_reversible_command (_("select all after cursor"));
954                 start = cursor->current_frame ;
955                 end = session->current_end_frame();
956         } else {
957                 if (cursor->current_frame > 0) {
958                         begin_reversible_command (_("select all before cursor"));
959                         start = 0;
960                         end = cursor->current_frame - 1;
961                 } else {
962                         return;
963                 }
964         }
965
966         for (TrackViewList::iterator iter = track_views.begin(); iter != track_views.end(); ++iter) {
967                 if ((*iter)->hidden()) {
968                         continue;
969                 }
970                 (*iter)->get_selectables (start, end, 0, DBL_MAX, touched);
971         }
972         selection->set (touched);
973         commit_reversible_command ();
974 }
975
976 void
977 Editor::select_all_selectables_between_cursors (Cursor *cursor, Cursor *other_cursor)
978 {
979         nframes_t start;
980         nframes_t end;
981         list<Selectable *> touched;
982         bool  other_cursor_is_first = cursor->current_frame > other_cursor->current_frame;
983
984         if (cursor->current_frame == other_cursor->current_frame) {
985                 return;
986         }
987
988         begin_reversible_command (_("select all between cursors"));
989         if (other_cursor_is_first) {
990                 start = other_cursor->current_frame;
991                 end = cursor->current_frame - 1;
992                 
993         } else {
994                 start = cursor->current_frame;
995                 end = other_cursor->current_frame - 1;
996         }
997         
998         for (TrackViewList::iterator iter = track_views.begin(); iter != track_views.end(); ++iter) {
999                 if ((*iter)->hidden()) {
1000                         continue;
1001                 }
1002                 (*iter)->get_selectables (start, end, 0, DBL_MAX, touched);
1003         }
1004         selection->set (touched);
1005         commit_reversible_command ();
1006 }
1007