Zoom session when the mouse pointer is moved up and down during a playhead drag.
[ardour2.git] / gtk2_ardour / selection.cc
blob82cdad5f33060e28db443af22f09255d571bc649
1 /*
2 Copyright (C) 2002 Paul Davis
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.
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.
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.
20 #include <algorithm>
21 #include <sigc++/bind.h>
22 #include "pbd/error.h"
23 #include "pbd/stacktrace.h"
25 #include "ardour/playlist.h"
26 #include "ardour/rc_configuration.h"
28 #include "gui_thread.h"
29 #include "midi_cut_buffer.h"
30 #include "region_view.h"
31 #include "selection.h"
32 #include "selection_templates.h"
33 #include "time_axis_view.h"
34 #include "automation_time_axis.h"
35 #include "public_editor.h"
36 #include "control_point.h"
38 #include "i18n.h"
40 using namespace std;
41 using namespace ARDOUR;
42 using namespace PBD;
44 struct AudioRangeComparator {
45 bool operator()(AudioRange a, AudioRange b) {
46 return a.start < b.start;
50 Selection::Selection (const PublicEditor* e)
51 : tracks (e)
52 , editor (e)
53 , next_time_id (0)
55 clear ();
57 /* we have disambiguate which remove() for the compiler */
59 void (Selection::*track_remove)(TimeAxisView*) = &Selection::remove;
60 TimeAxisView::CatchDeletion.connect (*this, MISSING_INVALIDATOR, ui_bind (track_remove, this, _1), gui_context());
62 void (Selection::*marker_remove)(Marker*) = &Selection::remove;
63 Marker::CatchDeletion.connect (*this, MISSING_INVALIDATOR, ui_bind (marker_remove, this, _1), gui_context());
66 #if 0
67 Selection&
68 Selection::operator= (const Selection& other)
70 if (&other != this) {
71 regions = other.regions;
72 tracks = other.tracks;
73 time = other.time;
74 lines = other.lines;
75 midi_regions = other.midi_regions;
76 midi_notes = other.midi_notes;
78 return *this;
80 #endif
82 bool
83 operator== (const Selection& a, const Selection& b)
85 return a.regions == b.regions &&
86 a.tracks == b.tracks &&
87 a.time == b.time &&
88 a.lines == b.lines &&
89 a.playlists == b.playlists &&
90 a.midi_notes == b.midi_notes &&
91 a.midi_regions == b.midi_regions;
94 /** Clear everything from the Selection */
95 void
96 Selection::clear ()
98 clear_tracks ();
99 clear_regions ();
100 clear_points ();
101 clear_lines();
102 clear_time ();
103 clear_playlists ();
104 clear_midi_notes ();
105 clear_midi_regions ();
108 void
109 Selection::dump_region_layers()
111 cerr << "region selection layer dump" << endl;
112 for (RegionSelection::iterator i = regions.begin(); i != regions.end(); ++i) {
113 cerr << "layer: " << (int)(*i)->region()->layer() << endl;
118 void
119 Selection::clear_regions ()
121 if (!regions.empty()) {
122 regions.clear_all ();
123 RegionsChanged();
127 void
128 Selection::clear_tracks ()
130 if (!tracks.empty()) {
131 tracks.clear ();
132 TracksChanged();
136 void
137 Selection::clear_midi_notes ()
139 if (!midi_notes.empty()) {
140 for (MidiNoteSelection::iterator x = midi_notes.begin(); x != midi_notes.end(); ++x) {
141 delete *x;
143 midi_notes.clear ();
144 MidiNotesChanged ();
148 void
149 Selection::clear_midi_regions ()
151 if (!midi_regions.empty()) {
152 midi_regions.clear ();
153 MidiRegionsChanged ();
157 void
158 Selection::clear_time ()
160 time.clear();
162 TimeChanged ();
165 void
166 Selection::clear_playlists ()
168 /* Selections own their playlists */
170 for (PlaylistSelection::iterator i = playlists.begin(); i != playlists.end(); ++i) {
171 /* selections own their own regions, which are copies of the "originals". make them go away */
172 (*i)->drop_regions ();
173 (*i)->release ();
176 if (!playlists.empty()) {
177 playlists.clear ();
178 PlaylistsChanged();
182 void
183 Selection::clear_lines ()
185 if (!lines.empty()) {
186 lines.clear ();
187 LinesChanged();
191 void
192 Selection::clear_markers ()
194 if (!markers.empty()) {
195 markers.clear ();
196 MarkersChanged();
200 void
201 Selection::toggle (boost::shared_ptr<Playlist> pl)
203 PlaylistSelection::iterator i;
205 if ((i = find (playlists.begin(), playlists.end(), pl)) == playlists.end()) {
206 pl->use ();
207 playlists.push_back(pl);
208 } else {
209 playlists.erase (i);
212 PlaylistsChanged ();
215 void
216 Selection::toggle (const TrackViewList& track_list)
218 for (TrackViewList::const_iterator i = track_list.begin(); i != track_list.end(); ++i) {
219 toggle ((*i));
223 void
224 Selection::toggle (TimeAxisView* track)
226 TrackSelection::iterator i;
228 if ((i = find (tracks.begin(), tracks.end(), track)) == tracks.end()) {
229 tracks.push_back (track);
230 } else {
231 tracks.erase (i);
234 TracksChanged();
237 void
238 Selection::toggle (const MidiNoteSelection& midi_note_list)
240 for (MidiNoteSelection::const_iterator i = midi_note_list.begin(); i != midi_note_list.end(); ++i) {
241 toggle ((*i));
245 void
246 Selection::toggle (MidiCutBuffer* midi)
248 MidiNoteSelection::iterator i;
250 if ((i = find (midi_notes.begin(), midi_notes.end(), midi)) == midi_notes.end()) {
251 midi_notes.push_back (midi);
252 } else {
253 /* remember that we own the MCB */
254 delete *i;
255 midi_notes.erase (i);
258 MidiNotesChanged();
262 void
263 Selection::toggle (RegionView* r)
265 RegionSelection::iterator i;
267 if ((i = find (regions.begin(), regions.end(), r)) == regions.end()) {
268 add (r);
269 } else {
270 remove (*i);
273 RegionsChanged ();
276 void
277 Selection::toggle (MidiRegionView* mrv)
279 MidiRegionSelection::iterator i;
281 if ((i = find (midi_regions.begin(), midi_regions.end(), mrv)) == midi_regions.end()) {
282 add (mrv);
283 } else {
284 midi_regions.erase (i);
287 MidiRegionsChanged ();
290 void
291 Selection::toggle (vector<RegionView*>& r)
293 RegionSelection::iterator i;
295 for (vector<RegionView*>::iterator x = r.begin(); x != r.end(); ++x) {
296 if ((i = find (regions.begin(), regions.end(), (*x))) == regions.end()) {
297 add ((*x));
298 } else {
299 remove (*x);
303 RegionsChanged ();
306 long
307 Selection::toggle (framepos_t start, framepos_t end)
309 AudioRangeComparator cmp;
311 /* XXX this implementation is incorrect */
313 time.push_back (AudioRange (start, end, next_time_id++));
314 time.consolidate ();
315 time.sort (cmp);
317 TimeChanged ();
319 return next_time_id - 1;
322 void
323 Selection::add (boost::shared_ptr<Playlist> pl)
325 if (find (playlists.begin(), playlists.end(), pl) == playlists.end()) {
326 pl->use ();
327 playlists.push_back(pl);
328 PlaylistsChanged ();
332 void
333 Selection::add (const list<boost::shared_ptr<Playlist> >& pllist)
335 bool changed = false;
337 for (list<boost::shared_ptr<Playlist> >::const_iterator i = pllist.begin(); i != pllist.end(); ++i) {
338 if (find (playlists.begin(), playlists.end(), (*i)) == playlists.end()) {
339 (*i)->use ();
340 playlists.push_back (*i);
341 changed = true;
345 if (changed) {
346 PlaylistsChanged ();
350 void
351 Selection::add (const TrackViewList& track_list)
353 TrackViewList added = tracks.add (track_list);
355 if (!added.empty()) {
356 TracksChanged ();
360 void
361 Selection::add (TimeAxisView* track)
363 TrackViewList tr;
364 tr.push_back (track);
365 add (tr);
368 void
369 Selection::add (const MidiNoteSelection& midi_list)
371 const MidiNoteSelection::const_iterator b = midi_list.begin();
372 const MidiNoteSelection::const_iterator e = midi_list.end();
374 if (!midi_list.empty()) {
375 midi_notes.insert (midi_notes.end(), b, e);
376 MidiNotesChanged ();
380 void
381 Selection::add (MidiCutBuffer* midi)
383 /* we take ownership of the MCB */
385 if (find (midi_notes.begin(), midi_notes.end(), midi) == midi_notes.end()) {
386 midi_notes.push_back (midi);
387 MidiNotesChanged ();
391 void
392 Selection::add (vector<RegionView*>& v)
394 /* XXX This method or the add (const RegionSelection&) needs to go
397 bool changed = false;
399 for (vector<RegionView*>::iterator i = v.begin(); i != v.end(); ++i) {
400 if (find (regions.begin(), regions.end(), (*i)) == regions.end()) {
401 changed = regions.add ((*i));
402 if (Config->get_link_region_and_track_selection() && changed) {
403 add (&(*i)->get_time_axis_view());
408 if (changed) {
409 RegionsChanged ();
413 void
414 Selection::add (const RegionSelection& rs)
416 /* XXX This method or the add (const vector<RegionView*>&) needs to go
419 bool changed = false;
421 for (RegionSelection::const_iterator i = rs.begin(); i != rs.end(); ++i) {
422 if (find (regions.begin(), regions.end(), (*i)) == regions.end()) {
423 changed = regions.add ((*i));
424 if (Config->get_link_region_and_track_selection() && changed) {
425 add (&(*i)->get_time_axis_view());
430 if (changed) {
431 RegionsChanged ();
435 void
436 Selection::add (RegionView* r)
438 if (find (regions.begin(), regions.end(), r) == regions.end()) {
439 bool changed = regions.add (r);
440 if (Config->get_link_region_and_track_selection() && changed) {
441 add (&r->get_time_axis_view());
443 if (changed) {
444 RegionsChanged ();
449 void
450 Selection::add (MidiRegionView* mrv)
452 if (find (midi_regions.begin(), midi_regions.end(), mrv) == midi_regions.end()) {
453 midi_regions.push_back (mrv);
454 /* XXX should we do this? */
455 #if 0
456 if (Config->get_link_region_and_track_selection()) {
457 add (&mrv->get_time_axis_view());
459 #endif
460 MidiRegionsChanged ();
464 long
465 Selection::add (framepos_t start, framepos_t end)
467 AudioRangeComparator cmp;
469 /* XXX this implementation is incorrect */
471 time.push_back (AudioRange (start, end, next_time_id++));
472 time.consolidate ();
473 time.sort (cmp);
475 TimeChanged ();
477 return next_time_id - 1;
480 void
481 Selection::replace (uint32_t sid, framepos_t start, framepos_t end)
483 for (list<AudioRange>::iterator i = time.begin(); i != time.end(); ++i) {
484 if ((*i).id == sid) {
485 time.erase (i);
486 time.push_back (AudioRange(start,end, sid));
488 /* don't consolidate here */
491 AudioRangeComparator cmp;
492 time.sort (cmp);
494 TimeChanged ();
495 break;
500 void
501 Selection::add (boost::shared_ptr<Evoral::ControlList> cl)
503 boost::shared_ptr<ARDOUR::AutomationList> al
504 = boost::dynamic_pointer_cast<ARDOUR::AutomationList>(cl);
505 if (!al) {
506 warning << "Programming error: Selected list is not an ARDOUR::AutomationList" << endmsg;
507 return;
508 return;
510 if (find (lines.begin(), lines.end(), al) == lines.end()) {
511 lines.push_back (al);
512 LinesChanged();
516 void
517 Selection::remove (TimeAxisView* track)
519 list<TimeAxisView*>::iterator i;
520 if ((i = find (tracks.begin(), tracks.end(), track)) != tracks.end()) {
521 tracks.erase (i);
522 TracksChanged();
526 void
527 Selection::remove (const TrackViewList& track_list)
529 bool changed = false;
531 for (TrackViewList::const_iterator i = track_list.begin(); i != track_list.end(); ++i) {
533 TrackViewList::iterator x = find (tracks.begin(), tracks.end(), *i);
534 if (x != tracks.end()) {
535 tracks.erase (x);
536 changed = true;
540 if (changed) {
541 TracksChanged();
545 void
546 Selection::remove (const MidiNoteSelection& midi_list)
548 bool changed = false;
550 for (MidiNoteSelection::const_iterator i = midi_list.begin(); i != midi_list.end(); ++i) {
552 MidiNoteSelection::iterator x;
554 if ((x = find (midi_notes.begin(), midi_notes.end(), (*i))) != midi_notes.end()) {
555 midi_notes.erase (x);
556 changed = true;
560 if (changed) {
561 MidiNotesChanged();
565 void
566 Selection::remove (MidiCutBuffer* midi)
568 MidiNoteSelection::iterator x;
570 if ((x = find (midi_notes.begin(), midi_notes.end(), midi)) != midi_notes.end()) {
571 /* remember that we own the MCB */
572 delete *x;
573 midi_notes.erase (x);
574 MidiNotesChanged ();
578 void
579 Selection::remove (boost::shared_ptr<Playlist> track)
581 list<boost::shared_ptr<Playlist> >::iterator i;
582 if ((i = find (playlists.begin(), playlists.end(), track)) != playlists.end()) {
583 playlists.erase (i);
584 PlaylistsChanged();
588 void
589 Selection::remove (const list<boost::shared_ptr<Playlist> >& pllist)
591 bool changed = false;
593 for (list<boost::shared_ptr<Playlist> >::const_iterator i = pllist.begin(); i != pllist.end(); ++i) {
595 list<boost::shared_ptr<Playlist> >::iterator x;
597 if ((x = find (playlists.begin(), playlists.end(), (*i))) != playlists.end()) {
598 playlists.erase (x);
599 changed = true;
603 if (changed) {
604 PlaylistsChanged();
608 void
609 Selection::remove (RegionView* r)
611 if (regions.remove (r)) {
612 RegionsChanged ();
615 if (Config->get_link_region_and_track_selection() && !regions.involves (r->get_time_axis_view())) {
616 remove (&r->get_time_axis_view());
620 void
621 Selection::remove (MidiRegionView* mrv)
623 MidiRegionSelection::iterator x;
625 if ((x = find (midi_regions.begin(), midi_regions.end(), mrv)) != midi_regions.end()) {
626 midi_regions.erase (x);
627 MidiRegionsChanged ();
630 #if 0
631 /* XXX fix this up ? */
632 if (Config->get_link_region_and_track_selection() && !regions.involves (r->get_time_axis_view())) {
633 remove (&r->get_time_axis_view());
635 #endif
639 void
640 Selection::remove (uint32_t selection_id)
642 if (time.empty()) {
643 return;
646 for (list<AudioRange>::iterator i = time.begin(); i != time.end(); ++i) {
647 if ((*i).id == selection_id) {
648 time.erase (i);
650 TimeChanged ();
651 break;
656 void
657 Selection::remove (framepos_t /*start*/, framepos_t /*end*/)
661 void
662 Selection::remove (boost::shared_ptr<ARDOUR::AutomationList> ac)
664 AutomationSelection::iterator i;
665 if ((i = find (lines.begin(), lines.end(), ac)) != lines.end()) {
666 lines.erase (i);
667 LinesChanged();
671 void
672 Selection::set (TimeAxisView* track)
674 clear_tracks ();
675 add (track);
678 void
679 Selection::set (const TrackViewList& track_list)
681 clear_tracks ();
682 add (track_list);
685 void
686 Selection::set (const MidiNoteSelection& midi_list)
688 clear_midi_notes ();
689 add (midi_list);
692 void
693 Selection::set (boost::shared_ptr<Playlist> playlist)
695 clear_playlists ();
696 add (playlist);
699 void
700 Selection::set (const list<boost::shared_ptr<Playlist> >& pllist)
702 clear_playlists ();
703 add (pllist);
706 void
707 Selection::set (const RegionSelection& rs)
709 clear_regions();
710 regions = rs;
711 RegionsChanged(); /* EMIT SIGNAL */
714 void
715 Selection::set (MidiRegionView* mrv)
717 clear_midi_regions ();
718 add (mrv);
721 void
722 Selection::set (RegionView* r, bool also_clear_tracks)
724 clear_regions ();
725 if (also_clear_tracks) {
726 clear_tracks ();
728 add (r);
731 void
732 Selection::set (vector<RegionView*>& v)
734 clear_regions ();
735 if (Config->get_link_region_and_track_selection()) {
736 clear_tracks ();
737 // make sure to deselect any automation selections
738 clear_points();
740 add (v);
743 /** Set the start and end time of the time selection, without changing
744 * the list of tracks it applies to.
746 long
747 Selection::set (framepos_t start, framepos_t end)
749 if ((start == 0 && end == 0) || end < start) {
750 return 0;
753 if (time.empty()) {
754 time.push_back (AudioRange (start, end, next_time_id++));
755 } else {
756 /* reuse the first entry, and remove all the rest */
758 while (time.size() > 1) {
759 time.pop_front();
761 time.front().start = start;
762 time.front().end = end;
765 time.consolidate ();
767 TimeChanged ();
769 return time.front().id;
772 /** Set the start and end of the range selection. If more than one range
773 * is currently selected, the start of the earliest range and the end of the
774 * latest range are set. If no range is currently selected, this method
775 * selects a single range from start to end.
777 * @param start New start time.
778 * @param end New end time.
780 void
781 Selection::set_preserving_all_ranges (framepos_t start, framepos_t end)
783 if ((start == 0 && end == 0) || (end < start)) {
784 return;
787 if (time.empty ()) {
788 time.push_back (AudioRange (start, end, next_time_id++));
789 } else {
790 time.sort (AudioRangeComparator ());
791 time.front().start = start;
792 time.back().end = end;
795 time.consolidate ();
797 TimeChanged ();
800 void
801 Selection::set (boost::shared_ptr<Evoral::ControlList> ac)
803 lines.clear();
804 add (ac);
807 bool
808 Selection::selected (Marker* m)
810 return find (markers.begin(), markers.end(), m) != markers.end();
813 bool
814 Selection::selected (TimeAxisView* tv)
816 return find (tracks.begin(), tracks.end(), tv) != tracks.end();
819 bool
820 Selection::selected (RegionView* rv)
822 return find (regions.begin(), regions.end(), rv) != regions.end();
825 bool
826 Selection::empty (bool internal_selection)
828 bool object_level_empty = regions.empty () &&
829 tracks.empty () &&
830 points.empty () &&
831 playlists.empty () &&
832 lines.empty () &&
833 time.empty () &&
834 playlists.empty () &&
835 markers.empty() &&
836 midi_regions.empty()
839 if (!internal_selection) {
840 return object_level_empty;
843 /* this is intended to really only apply when using a Selection
844 as a cut buffer.
847 return object_level_empty && midi_notes.empty();
850 void
851 Selection::toggle (ControlPoint* cp)
853 cp->set_selected (!cp->get_selected ());
854 set_point_selection_from_line (cp->line ());
857 void
858 Selection::toggle (vector<ControlPoint*> const & cps)
860 for (vector<ControlPoint*>::const_iterator i = cps.begin(); i != cps.end(); ++i) {
861 (*i)->set_selected (!(*i)->get_selected ());
864 set_point_selection_from_line (cps.front()->line ());
867 void
868 Selection::toggle (list<Selectable*> const & selectables)
870 RegionView* rv;
871 ControlPoint* cp;
872 vector<RegionView*> rvs;
873 vector<ControlPoint*> cps;
875 for (std::list<Selectable*>::const_iterator i = selectables.begin(); i != selectables.end(); ++i) {
876 if ((rv = dynamic_cast<RegionView*> (*i)) != 0) {
877 rvs.push_back (rv);
878 } else if ((cp = dynamic_cast<ControlPoint*> (*i)) != 0) {
879 cps.push_back (cp);
880 } else {
881 fatal << _("programming error: ")
882 << X_("unknown selectable type passed to Selection::toggle()")
883 << endmsg;
884 /*NOTREACHED*/
888 if (!rvs.empty()) {
889 toggle (rvs);
892 if (!cps.empty()) {
893 toggle (cps);
897 void
898 Selection::set (list<Selectable*> const & selectables)
900 clear_regions();
901 clear_points ();
903 if (Config->get_link_region_and_track_selection ()) {
904 clear_tracks ();
907 add (selectables);
911 void
912 Selection::add (list<Selectable*> const & selectables)
914 RegionView* rv;
915 ControlPoint* cp;
916 vector<RegionView*> rvs;
917 vector<ControlPoint*> cps;
919 for (std::list<Selectable*>::const_iterator i = selectables.begin(); i != selectables.end(); ++i) {
920 if ((rv = dynamic_cast<RegionView*> (*i)) != 0) {
921 rvs.push_back (rv);
922 } else if ((cp = dynamic_cast<ControlPoint*> (*i)) != 0) {
923 cps.push_back (cp);
924 } else {
925 fatal << _("programming error: ")
926 << X_("unknown selectable type passed to Selection::add()")
927 << endmsg;
928 /*NOTREACHED*/
932 if (!rvs.empty()) {
933 add (rvs);
936 if (!cps.empty()) {
937 add (cps);
941 void
942 Selection::clear_points ()
944 if (!points.empty()) {
945 points.clear ();
946 PointsChanged ();
950 void
951 Selection::add (ControlPoint* cp)
953 cp->set_selected (true);
954 set_point_selection_from_line (cp->line ());
957 void
958 Selection::add (vector<ControlPoint*> const & cps)
960 for (vector<ControlPoint*>::const_iterator i = cps.begin(); i != cps.end(); ++i) {
961 (*i)->set_selected (true);
964 set_point_selection_from_line (cps.front()->line ());
967 void
968 Selection::set (ControlPoint* cp)
970 if (cp->get_selected()) {
971 return;
974 /* We're going to set up the PointSelection from the selected ControlPoints
975 on this point's line, so we need to deselect all ControlPoints before
976 we re-add this one.
979 for (uint32_t i = 0; i < cp->line().npoints(); ++i) {
980 cp->line().nth (i)->set_selected (false);
983 vector<ControlPoint*> cps;
984 cps.push_back (cp);
985 add (cps);
988 void
989 Selection::set (Marker* m)
991 clear_markers ();
992 add (m);
995 void
996 Selection::toggle (Marker* m)
998 MarkerSelection::iterator i;
1000 if ((i = find (markers.begin(), markers.end(), m)) == markers.end()) {
1001 add (m);
1002 } else {
1003 remove (m);
1007 void
1008 Selection::remove (Marker* m)
1010 MarkerSelection::iterator i;
1012 if ((i = find (markers.begin(), markers.end(), m)) != markers.end()) {
1013 markers.erase (i);
1014 MarkersChanged();
1018 void
1019 Selection::add (Marker* m)
1021 if (find (markers.begin(), markers.end(), m) == markers.end()) {
1022 markers.push_back (m);
1023 MarkersChanged();
1027 void
1028 Selection::add (const list<Marker*>& m)
1030 markers.insert (markers.end(), m.begin(), m.end());
1031 MarkersChanged ();
1034 void
1035 MarkerSelection::range (framepos_t& s, framepos_t& e)
1037 s = max_framepos;
1038 e = 0;
1040 for (MarkerSelection::iterator i = begin(); i != end(); ++i) {
1042 if ((*i)->position() < s) {
1043 s = (*i)->position();
1046 if ((*i)->position() > e) {
1047 e = (*i)->position();
1051 s = std::min (s, e);
1052 e = std::max (s, e);
1055 /** Automation control point selection is mostly manipulated using the selected state
1056 * of the ControlPoints themselves. For example, to add a point to a selection, its
1057 * ControlPoint is marked as selected and then this method is called. It sets up
1058 * our PointSelection from the selected ControlPoints of a given AutomationLine.
1060 * We can't use ControlPoints directly in the selection, as we need to express a
1061 * selection of not just a visible ControlPoint but also (possibly) some invisible
1062 * points nearby. Hence the selection stores AutomationRanges, and these are synced
1063 * with ControlPoint selection state using AutomationLine::set_selected_points.
1066 void
1067 Selection::set_point_selection_from_line (AutomationLine const & line)
1069 points.clear ();
1071 AutomationRange current (DBL_MAX, 0, 1, 0, &line.trackview);
1073 for (uint32_t i = 0; i < line.npoints(); ++i) {
1074 ControlPoint const * cp = line.nth (i);
1076 if (cp->get_selected()) {
1077 /* x and y position of this control point in coordinates suitable for
1078 an AutomationRange (ie model time and fraction of track height)
1080 double const x = (*(cp->model()))->when;
1081 double const y = 1 - (cp->get_y() / line.trackview.current_height ());
1083 /* work out the position of a rectangle the size of a control point centred
1084 on this point
1087 double const size = cp->size ();
1088 double const x_size = line.time_converter().from (line.trackview.editor().pixel_to_frame (size));
1089 double const y_size = size / line.trackview.current_height ();
1091 double const x1 = max (0.0, x - x_size / 2);
1092 double const x2 = x + x_size / 2;
1093 double const y1 = max (0.0, y - y_size / 2);
1094 double const y2 = y + y_size / 2;
1096 /* extend the current AutomationRange to put this point in */
1097 current.start = min (current.start, x1);
1098 current.end = max (current.end, x2);
1099 current.low_fract = min (current.low_fract, y1);
1100 current.high_fract = max (current.high_fract, y2);
1102 } else {
1103 /* this point isn't selected; if the current AutomationRange has some
1104 stuff in it, push it onto the list and make a new one
1106 if (current.start < DBL_MAX) {
1107 points.push_back (current);
1108 current = AutomationRange (DBL_MAX, 0, 1, 0, &line.trackview);
1113 /* Maybe push the current AutomationRange, as above */
1114 if (current.start < DBL_MAX) {
1115 points.push_back (current);
1116 current = AutomationRange (DBL_MAX, 0, 1, 0, &line.trackview);
1119 PointsChanged (); /* EMIT SIGNAL */
1122 XMLNode&
1123 Selection::get_state () const
1125 /* XXX: not complete; just sufficient to get track selection state
1126 so that re-opening plugin windows for editor mixer strips works
1129 XMLNode* node = new XMLNode (X_("Selection"));
1131 for (TrackSelection::const_iterator i = tracks.begin(); i != tracks.end(); ++i) {
1132 RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*> (*i);
1133 AutomationTimeAxisView* atv = dynamic_cast<AutomationTimeAxisView*> (*i);
1134 if (rtv) {
1135 XMLNode* t = node->add_child (X_("RouteView"));
1136 t->add_property (X_("id"), atoi (rtv->route()->id().to_s().c_str()));
1137 } else if (atv) {
1138 XMLNode* t = node->add_child (X_("AutomationView"));
1139 t->add_property (X_("id"), atoi (atv->parent_route()->id().to_s().c_str()));
1140 t->add_property (X_("parameter"), EventTypeMap::instance().to_symbol (atv->parameter ()));
1144 return *node;
1148 Selection::set_state (XMLNode const & node, int)
1150 if (node.name() != X_("Selection")) {
1151 return -1;
1154 XMLNodeList children = node.children ();
1155 for (XMLNodeList::const_iterator i = children.begin(); i != children.end(); ++i) {
1156 if ((*i)->name() == X_("RouteView")) {
1158 XMLProperty* prop_id = (*i)->property (X_("id"));
1159 assert (prop_id);
1160 PBD::ID id (prop_id->value ());
1161 RouteTimeAxisView* rtv = editor->get_route_view_by_route_id (id);
1162 if (rtv) {
1163 add (rtv);
1166 } else if ((*i)->name() == X_("AutomationView")) {
1168 XMLProperty* prop_id = (*i)->property (X_("id"));
1169 XMLProperty* prop_parameter = (*i)->property (X_("parameter"));
1171 assert (prop_id);
1172 assert (prop_parameter);
1174 PBD::ID id (prop_id->value ());
1175 RouteTimeAxisView* rtv = editor->get_route_view_by_route_id (id);
1177 if (rtv) {
1178 boost::shared_ptr<AutomationTimeAxisView> atv = rtv->automation_child (EventTypeMap::instance().new_parameter (prop_parameter->value ()));
1180 /* the automation could be for an entity that was never saved
1181 in the session file. Don't freak out if we can't find
1185 if (atv) {
1186 add (atv.get());
1192 return 0;
1195 void
1196 Selection::remove_regions (TimeAxisView* t)
1198 RegionSelection::iterator i = regions.begin();
1199 while (i != regions.end ()) {
1200 RegionSelection::iterator tmp = i;
1201 ++tmp;
1203 if (&(*i)->get_time_axis_view() == t) {
1204 remove (*i);
1207 i = tmp;