split sfdb_v3 into 3 classes.
[ardour.git] / gtk2_ardour / editor_ops.cc
1 /*
2     Copyright (C) 2000-2004 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     $Id$
19 */
20
21 #include <unistd.h>
22
23 #include <cstdlib>
24 #include <cmath>
25 #include <string>
26 #include <map>
27
28 #include <sndfile.h>
29
30 #include <pbd/error.h>
31 #include <pbd/basename.h>
32 #include <pbd/pthread_utils.h>
33
34 #include <gtkmm2ext/utils.h>
35 #include <gtkmm2ext/choice.h>
36
37 #include <ardour/audioengine.h>
38 #include <ardour/session.h>
39 #include <ardour/audioplaylist.h>
40 #include <ardour/audioregion.h>
41 #include <ardour/diskstream.h>
42 #include <ardour/filesource.h>
43 #include <ardour/sndfilesource.h>
44 #include <ardour/utils.h>
45 #include <ardour/location.h>
46 #include <ardour/named_selection.h>
47 #include <ardour/audio_track.h>
48 #include <ardour/audioplaylist.h>
49 #include <ardour/region_factory.h>
50 #include <ardour/reverse.h>
51
52 #include "ardour_ui.h"
53 #include "editor.h"
54 #include "time_axis_view.h"
55 #include "audio_time_axis.h"
56 #include "automation_time_axis.h"
57 #include "streamview.h"
58 #include "regionview.h"
59 #include "rgb_macros.h"
60 #include "selection_templates.h"
61 #include "selection.h"
62 #include "sfdb_ui.h"
63 #include "editing.h"
64 #include "gtk-custom-hruler.h"
65
66 #include "i18n.h"
67
68 using namespace std;
69 using namespace ARDOUR;
70 using namespace sigc;
71 using namespace Gtk;
72 using namespace Editing;
73
74 /***********************************************************************
75   Editor operations
76  ***********************************************************************/
77
78 void
79 Editor::undo (uint32_t n)
80 {
81         if (session) {
82                 session->undo (n);
83         }
84 }
85
86 void
87 Editor::redo (uint32_t n)
88 {
89         if (session) {
90                 session->redo (n);
91         }
92 }
93
94 int
95 Editor::ensure_cursor (jack_nframes_t *pos)
96 {
97         *pos = edit_cursor->current_frame;
98         return 0;
99 }
100
101 void
102 Editor::split_region ()
103 {
104         split_region_at (edit_cursor->current_frame);
105 }
106
107 void
108 Editor::split_region_at (jack_nframes_t where)
109 {
110         split_regions_at (where, selection->audio_regions);
111 }
112
113 void
114 Editor::split_regions_at (jack_nframes_t where, AudioRegionSelection& regions)
115 {
116         begin_reversible_command (_("split"));
117
118         snap_to (where);
119         for (AudioRegionSelection::iterator a = regions.begin(); a != regions.end(); ) {
120
121                 AudioRegionSelection::iterator tmp;
122                 
123                 tmp = a;
124                 ++tmp;
125
126                 Playlist* pl = (*a)->region.playlist();
127
128                 _new_regionviews_show_envelope = (*a)->envelope_visible();
129                 
130                 if (pl) {
131                         session->add_undo (pl->get_memento());
132                         pl->split_region ((*a)->region, where);
133                         session->add_redo_no_execute (pl->get_memento());
134                 }
135
136                 a = tmp;
137     }
138
139         commit_reversible_command ();
140         _new_regionviews_show_envelope = false;
141 }
142
143 void
144 Editor::remove_clicked_region ()
145 {
146         if (clicked_audio_trackview == 0 || clicked_regionview == 0) {
147                 return;
148         }
149
150         Playlist* playlist = clicked_audio_trackview->playlist();
151         
152         begin_reversible_command (_("remove region"));
153         session->add_undo (playlist->get_memento());
154         playlist->remove_region (&clicked_regionview->region);
155         session->add_redo_no_execute (playlist->get_memento());
156         commit_reversible_command ();
157 }
158
159 void
160 Editor::destroy_clicked_region ()
161 {
162         int32_t selected = selection->audio_regions.size();
163
164         if (!session || clicked_regionview == 0 && selected == 0) {
165                 return;
166         }
167
168         vector<string> choices;
169         string prompt;
170         
171         prompt  = string_compose (_(" This is destructive, will possibly delete audio files\n\
172 It cannot be undone\n\
173 Do you really want to destroy %1 ?"),
174                            (selected > 1 ? 
175                             _("these regions") : _("this region")));
176
177         if (selected > 1) {
178                 choices.push_back (_("Yes, destroy them."));
179         } else {
180                 choices.push_back (_("Yes, destroy it."));
181         }
182
183         choices.push_back (_("No, do nothing."));
184
185         Gtkmm2ext::Choice prompter (prompt, choices);
186
187         prompter.chosen.connect (Gtk::Main::quit.slot());
188         prompter.show_all ();
189
190         Gtk::Main::run ();
191
192         if (prompter.get_choice() != 0) {
193                 return;
194         }
195
196         if (selected > 0) {
197                 list<Region*> r;
198
199                 for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
200                         r.push_back (&(*i)->region);
201                 }
202
203                 session->destroy_regions (r);
204
205         } else if (clicked_regionview) {
206                 session->destroy_region (&clicked_regionview->region);
207         } 
208 }
209
210 AudioRegion *
211 Editor::select_region_for_operation (int dir, TimeAxisView **tv)
212 {
213         AudioRegionView* rv;
214         AudioRegion *region;
215         jack_nframes_t start = 0;
216
217         if (selection->time.start () == selection->time.end_frame ()) {
218                 
219                 /* no current selection-> is there a selected regionview? */
220
221                 if (selection->audio_regions.empty()) {
222                         return 0;
223                 }
224
225         } 
226
227         region = 0;
228
229         if (!selection->audio_regions.empty()) {
230
231                 rv = *(selection->audio_regions.begin());
232                 (*tv) = &rv->get_time_axis_view();
233                 region = &rv->region;
234
235         } else if (!selection->tracks.empty()) {
236
237                 (*tv) = selection->tracks.front();
238
239                 AudioTimeAxisView* atv;
240
241                 if ((atv = dynamic_cast<AudioTimeAxisView*> (*tv)) != 0) {
242                         Playlist *pl;
243                         
244                         if ((pl = atv->playlist()) == 0) {
245                                 return 0;
246                         }
247                         
248                         region = dynamic_cast<AudioRegion*> (pl->top_region_at (start));
249                 }
250         } 
251         
252         return region;
253 }
254         
255 void
256 Editor::extend_selection_to_end_of_region (bool next)
257 {
258         TimeAxisView *tv;
259         Region *region;
260         jack_nframes_t start;
261
262         if ((region = select_region_for_operation (next ? 1 : 0, &tv)) == 0) {
263                 return;
264         }
265
266         if (region && selection->time.start () == selection->time.end_frame ()) {
267                 start = region->position();
268         } else {
269                 start = selection->time.start ();
270         }
271
272         /* Try to leave the selection with the same route if possible */
273
274         if ((tv = selection->time.track) == 0) {
275                 return;
276         }
277
278         begin_reversible_command (_("extend selection"));
279         selection->set (tv, start, region->position() + region->length());
280         commit_reversible_command ();
281 }
282
283 void
284 Editor::extend_selection_to_start_of_region (bool previous)
285 {
286         TimeAxisView *tv;
287         Region *region;
288         jack_nframes_t end;
289
290         if ((region = select_region_for_operation (previous ? -1 : 0, &tv)) == 0) {
291                 return;
292         }
293
294         if (region && selection->time.start () == selection->time.end_frame ()) {
295                 end = region->position() + region->length();
296         } else {
297                 end = selection->time.end_frame ();
298         }
299
300         /* Try to leave the selection with the same route if possible */
301         
302         if ((tv = selection->time.track) == 0) {
303                 return;
304         }
305
306         begin_reversible_command (_("extend selection"));
307         selection->set (tv, region->position(), end);
308         commit_reversible_command ();
309 }
310
311
312 void
313 Editor::nudge_forward (bool next)
314 {
315         jack_nframes_t distance;
316         jack_nframes_t next_distance;
317
318         if (!session) return;
319         
320         if (!selection->audio_regions.empty()) {
321
322                 begin_reversible_command (_("nudge forward"));
323
324                 for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
325                         AudioRegion& r ((*i)->region);
326                         
327                         distance = get_nudge_distance (r.position(), next_distance);
328
329                         if (next) {
330                                 distance = next_distance;
331                         }
332
333                         session->add_undo (r.playlist()->get_memento());
334                         r.set_position (r.position() + distance, this);
335                         session->add_redo_no_execute (r.playlist()->get_memento());
336                 }
337
338                 commit_reversible_command ();
339
340         } else {
341                 distance = get_nudge_distance (playhead_cursor->current_frame, next_distance);
342                 session->request_locate (playhead_cursor->current_frame + distance);
343         }
344 }
345                 
346 void
347 Editor::nudge_backward (bool next)
348 {
349         jack_nframes_t distance;
350         jack_nframes_t next_distance;
351
352         if (!session) return;
353         
354         if (!selection->audio_regions.empty()) {
355
356                 begin_reversible_command (_("nudge forward"));
357
358                 for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
359                         AudioRegion& r ((*i)->region);
360
361                         distance = get_nudge_distance (r.position(), next_distance);
362                         
363                         if (next) {
364                                 distance = next_distance;
365                         }
366
367                         session->add_undo (r.playlist()->get_memento());
368                         
369                         if (r.position() > distance) {
370                                 r.set_position (r.position() - distance, this);
371                         } else {
372                                 r.set_position (0, this);
373                         }
374                         session->add_redo_no_execute (r.playlist()->get_memento());
375                 }
376
377                 commit_reversible_command ();
378
379         } else {
380
381                 distance = get_nudge_distance (playhead_cursor->current_frame, next_distance);
382
383                 if (playhead_cursor->current_frame > distance) {
384                         session->request_locate (playhead_cursor->current_frame - distance);
385                 } else {
386                         session->request_locate (0);
387                 }
388         }
389 }
390
391 void
392 Editor::nudge_forward_capture_offset ()
393 {
394         jack_nframes_t distance;
395
396         if (!session) return;
397         
398         if (!selection->audio_regions.empty()) {
399
400                 begin_reversible_command (_("nudge forward"));
401
402                 distance = session->worst_output_latency();
403
404                 for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
405                         AudioRegion& r ((*i)->region);
406                         
407                         session->add_undo (r.playlist()->get_memento());
408                         r.set_position (r.position() + distance, this);
409                         session->add_redo_no_execute (r.playlist()->get_memento());
410                 }
411
412                 commit_reversible_command ();
413
414         } 
415 }
416                 
417 void
418 Editor::nudge_backward_capture_offset ()
419 {
420         jack_nframes_t distance;
421
422         if (!session) return;
423         
424         if (!selection->audio_regions.empty()) {
425
426                 begin_reversible_command (_("nudge forward"));
427
428                 distance = session->worst_output_latency();
429
430                 for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
431                         AudioRegion& r ((*i)->region);
432
433                         session->add_undo (r.playlist()->get_memento());
434                         
435                         if (r.position() > distance) {
436                                 r.set_position (r.position() - distance, this);
437                         } else {
438                                 r.set_position (0, this);
439                         }
440                         session->add_redo_no_execute (r.playlist()->get_memento());
441                 }
442
443                 commit_reversible_command ();
444         }
445 }
446
447 /* DISPLAY MOTION */
448
449 void
450 Editor::move_to_start ()
451 {
452         session->request_locate (0);
453 }
454
455 void
456 Editor::move_to_end ()
457 {
458
459         session->request_locate (session->current_end_frame());
460 }
461
462 void
463 Editor::build_region_boundary_cache ()
464 {
465         jack_nframes_t pos = 0;
466         RegionPoint point;
467         Region *r;
468         TrackViewList tracks;
469
470         region_boundary_cache.clear ();
471
472         if (session == 0) {
473                 return;
474         }
475         
476         switch (snap_type) {
477         case SnapToRegionStart:
478                 point = Start;
479                 break;
480         case SnapToRegionEnd:
481                 point = End;
482                 break;  
483         case SnapToRegionSync:
484                 point = SyncPoint;
485                 break;  
486         case SnapToRegionBoundary:
487                 point = Start;
488                 break;  
489         default:
490                 fatal << string_compose (_("build_region_boundary_cache called with snap_type = %1"), snap_type) << endmsg;
491                 /*NOTREACHED*/
492                 return;
493         }
494         
495         TimeAxisView *ontrack = 0;
496
497         while (pos < session->current_end_frame()) {
498
499                 if (!selection->tracks.empty()) {
500
501                         if ((r = find_next_region (pos, point, 1, selection->tracks, &ontrack)) == 0) {
502                                 break;
503                         }
504
505                 } else if (clicked_trackview) {
506
507                         TrackViewList t;
508                         t.push_back (clicked_trackview);
509
510                         if ((r = find_next_region (pos, point, 1, t, &ontrack)) == 0) {
511                                 break;
512                         }
513
514                 } else {
515
516                         if ((r = find_next_region (pos, point, 1, track_views, &ontrack)) == 0) {
517                                 break;
518                         }
519                 }
520
521                 jack_nframes_t rpos;
522                 
523                 switch (snap_type) {
524                 case SnapToRegionStart:
525                         rpos = r->first_frame();
526                         break;
527                 case SnapToRegionEnd:
528                         rpos = r->last_frame();
529                         break;  
530                 case SnapToRegionSync:
531                         rpos = r->adjust_to_sync (r->first_frame());
532                         break;
533
534                 case SnapToRegionBoundary:
535                         rpos = r->last_frame();
536                         break;  
537                 default:
538                         break;
539                 }
540                 
541                 float speed = 1.0f;
542                 AudioTimeAxisView *atav;
543
544                 if ( ontrack != 0 && (atav = dynamic_cast<AudioTimeAxisView*>(ontrack)) != 0 ) {
545                         if (atav->get_diskstream() != 0) {
546                                 speed = atav->get_diskstream()->speed();
547                         }
548                 }
549
550                 rpos = (jack_nframes_t) floor ( (float) rpos / speed );
551
552                 if (region_boundary_cache.empty() || rpos != region_boundary_cache.back()) {
553                         if (snap_type == SnapToRegionBoundary) {
554                                 region_boundary_cache.push_back (r->first_frame());
555                         }
556                         region_boundary_cache.push_back (rpos);
557                 }
558
559                 pos = rpos + 1;
560         }
561 }
562
563 Region*
564 Editor::find_next_region (jack_nframes_t frame, RegionPoint point, int32_t dir, TrackViewList& tracks, TimeAxisView **ontrack)
565 {
566         TrackViewList::iterator i;
567         jack_nframes_t closest = max_frames;
568         Region* ret = 0;
569         jack_nframes_t rpos = 0;
570
571         float track_speed;
572         jack_nframes_t track_frame;
573         AudioTimeAxisView *atav;
574
575         for (i = tracks.begin(); i != tracks.end(); ++i) {
576
577                 jack_nframes_t distance;
578                 Region* r;
579
580                 track_speed = 1.0f;
581                 if ( (atav = dynamic_cast<AudioTimeAxisView*>(*i)) != 0 ) {
582                         if (atav->get_diskstream()!=0)
583                                 track_speed = atav->get_diskstream()->speed();
584                 }
585
586                 track_frame = (jack_nframes_t) floor ( (float) frame * track_speed );
587
588                 if ((r = (*i)->find_next_region (track_frame, point, dir)) == 0) {
589                         continue;
590                 }
591
592                 switch (point) {
593                 case Start:
594                         rpos = r->first_frame ();
595                         break;
596
597                 case End:
598                         rpos = r->last_frame ();
599                         break;
600
601                 case SyncPoint:
602                         rpos = r->adjust_to_sync (r->first_frame());
603                         break;
604                 }
605                 // rpos is a "track frame", converting it to "time frame"
606                 rpos = (jack_nframes_t) floor ( (float) rpos / track_speed );
607
608                 if (rpos > frame) {
609                         distance = rpos - frame;
610                 } else {
611                         distance = frame - rpos;
612                 }
613
614                 if (distance < closest) {
615                         closest = distance;
616                         if (ontrack != 0)
617                                 *ontrack = (*i);
618                         ret = r;
619                 }
620         }
621
622         return ret;
623 }
624
625 void
626 Editor::cursor_to_region_point (Cursor* cursor, RegionPoint point, int32_t dir)
627 {
628         Region* r;
629         jack_nframes_t pos = cursor->current_frame;
630
631         if (!session) {
632                 return;
633         }
634
635         TimeAxisView *ontrack = 0;
636
637         // so we don't find the current region again..
638         if (dir>0 || pos>0)
639                 pos+=dir;
640
641         if (!selection->tracks.empty()) {
642                 
643                 r = find_next_region (pos, point, dir, selection->tracks, &ontrack);
644                 
645         } else if (clicked_trackview) {
646                 
647                 TrackViewList t;
648                 t.push_back (clicked_trackview);
649                 
650                 r = find_next_region (pos, point, dir, t, &ontrack);
651                 
652         } else {
653                 
654                 r = find_next_region (pos, point, dir, track_views, &ontrack);
655         }
656
657         if (r == 0) {
658                 return;
659         }
660         
661         switch (point){
662         case Start:
663                 pos = r->first_frame ();
664                 break;
665
666         case End:
667                 pos = r->last_frame ();
668                 break;
669
670         case SyncPoint:
671                 pos = r->adjust_to_sync (r->first_frame());
672                 break;  
673         }
674         
675         float speed = 1.0f;
676         AudioTimeAxisView *atav;
677
678         if ( ontrack != 0 && (atav = dynamic_cast<AudioTimeAxisView*>(ontrack)) != 0 ) {
679                 if (atav->get_diskstream() != 0) {
680                         speed = atav->get_diskstream()->speed();
681                 }
682         }
683
684         pos = (jack_nframes_t) floor ( (float) pos / speed );
685         
686         
687         if (cursor == playhead_cursor) {
688                 session->request_locate (pos);
689         } else {
690                 cursor->set_position (pos);
691         }
692 }
693
694 void
695 Editor::cursor_to_next_region_point (Cursor* cursor, RegionPoint point)
696 {
697         cursor_to_region_point (cursor, point, 1);
698 }
699
700 void
701 Editor::cursor_to_previous_region_point (Cursor* cursor, RegionPoint point)
702 {
703         cursor_to_region_point (cursor, point, -1);
704 }
705
706 void
707 Editor::cursor_to_selection_start (Cursor *cursor)
708 {
709         jack_nframes_t pos = 0;
710         switch (mouse_mode) {
711         case MouseObject:
712                 if (!selection->audio_regions.empty()) {
713                         pos = selection->audio_regions.start();
714                 }
715                 break;
716
717         case MouseRange:
718                 if (!selection->time.empty()) {
719                         pos = selection->time.start ();
720                 }
721                 break;
722
723         default:
724                 return;
725         }
726
727         if (cursor == playhead_cursor) {
728                 session->request_locate (pos);
729         } else {
730                 cursor->set_position (pos);
731         }
732 }
733
734 void
735 Editor::cursor_to_selection_end (Cursor *cursor)
736 {
737         jack_nframes_t pos = 0;
738
739         switch (mouse_mode) {
740         case MouseObject:
741                 if (!selection->audio_regions.empty()) {
742                         pos = selection->audio_regions.end_frame();
743                 }
744                 break;
745
746         case MouseRange:
747                 if (!selection->time.empty()) {
748                         pos = selection->time.end_frame ();
749                 }
750                 break;
751
752         default:
753                 return;
754         }
755
756         if (cursor == playhead_cursor) {
757                 session->request_locate (pos);
758         } else {
759                 cursor->set_position (pos);
760         }
761 }
762
763 void
764 Editor::playhead_backward ()
765 {
766         jack_nframes_t pos;
767         jack_nframes_t cnt;
768         float prefix;
769         bool was_floating;
770
771         if (get_prefix (prefix, was_floating)) {
772                 cnt = 1;
773         } else {
774                 if (was_floating) {
775                         cnt = (jack_nframes_t) floor (prefix * session->frame_rate ());
776                 } else {
777                         cnt = (jack_nframes_t) prefix;
778                 }
779         }
780
781         pos = playhead_cursor->current_frame;
782
783         if ((jack_nframes_t) pos < cnt) {
784                 pos = 0;
785         } else {
786                 pos -= cnt;
787         }
788         
789         /* XXX this is completely insane. with the current buffering
790            design, we'll force a complete track buffer flush and
791            reload, just to move 1 sample !!!
792         */
793
794         session->request_locate (pos);
795 }
796
797 void
798 Editor::playhead_forward ()
799 {
800         jack_nframes_t pos;
801         jack_nframes_t cnt;
802         bool was_floating;
803         float prefix;
804
805         if (get_prefix (prefix, was_floating)) {
806                 cnt = 1;
807         } else {
808                 if (was_floating) {
809                         cnt = (jack_nframes_t) floor (prefix * session->frame_rate ());
810                 } else {
811                         cnt = (jack_nframes_t) floor (prefix);
812                 }
813         }
814
815         pos = playhead_cursor->current_frame;
816         
817         /* XXX this is completely insane. with the current buffering
818            design, we'll force a complete track buffer flush and
819            reload, just to move 1 sample !!!
820         */
821
822         session->request_locate (pos+cnt);
823 }
824
825 void
826 Editor::cursor_align (bool playhead_to_edit)
827 {
828         if (playhead_to_edit) {
829                 if (session) {
830                         session->request_locate (edit_cursor->current_frame);
831                 }
832         } else {
833                 edit_cursor->set_position (playhead_cursor->current_frame);
834         }
835 }
836
837 void
838 Editor::edit_cursor_backward ()
839 {
840         jack_nframes_t pos;
841         jack_nframes_t cnt;
842         float prefix;
843         bool was_floating;
844
845         if (get_prefix (prefix, was_floating)) {
846                 cnt = 1;
847         } else {
848                 if (was_floating) {
849                         cnt = (jack_nframes_t) floor (prefix * session->frame_rate ());
850                 } else {
851                         cnt = (jack_nframes_t) prefix;
852                 }
853         }
854
855         pos = edit_cursor->current_frame;
856
857         if ((jack_nframes_t) pos < cnt) {
858                 pos = 0;
859         } else {
860                 pos -= cnt;
861         }
862         
863         edit_cursor->set_position (pos);
864 }
865
866 void
867 Editor::edit_cursor_forward ()
868 {
869         jack_nframes_t pos;
870         jack_nframes_t cnt;
871         bool was_floating;
872         float prefix;
873
874         if (get_prefix (prefix, was_floating)) {
875                 cnt = 1;
876         } else {
877                 if (was_floating) {
878                         cnt = (jack_nframes_t) floor (prefix * session->frame_rate ());
879                 } else {
880                         cnt = (jack_nframes_t) floor (prefix);
881                 }
882         }
883
884         pos = edit_cursor->current_frame;
885         edit_cursor->set_position (pos+cnt);
886 }
887
888 void
889 Editor::goto_frame ()
890 {
891         float prefix;
892         bool was_floating;
893         jack_nframes_t frame;
894
895         if (get_prefix (prefix, was_floating)) {
896                 return;
897         }
898
899         if (was_floating) {
900                 frame = (jack_nframes_t) floor (prefix * session->frame_rate());
901         } else {
902                 frame = (jack_nframes_t) floor (prefix);
903         }
904
905         session->request_locate (frame);
906 }
907
908 void
909 Editor::scroll_backward (float pages)
910 {
911         jack_nframes_t frame;
912         jack_nframes_t one_page = (jack_nframes_t) rint (canvas_width * frames_per_unit);
913         bool was_floating;
914         float prefix;
915         jack_nframes_t cnt;
916         
917         if (get_prefix (prefix, was_floating)) {
918                 cnt = (jack_nframes_t) floor (pages * one_page);
919         } else {
920                 if (was_floating) {
921                         cnt = (jack_nframes_t) floor (prefix * session->frame_rate());
922                 } else {
923                         cnt = (jack_nframes_t) floor (prefix * one_page);
924                 }
925         }
926
927         if (leftmost_frame < cnt) {
928                 frame = 0;
929         } else {
930                 frame = leftmost_frame - cnt;
931         }
932
933         reposition_x_origin (frame);
934 }
935
936 void
937 Editor::scroll_forward (float pages)
938 {
939         jack_nframes_t frame;
940         jack_nframes_t one_page = (jack_nframes_t) rint (canvas_width * frames_per_unit);
941         bool was_floating;
942         float prefix;
943         jack_nframes_t cnt;
944         
945         if (get_prefix (prefix, was_floating)) {
946                 cnt = (jack_nframes_t) floor (pages * one_page);
947         } else {
948                 if (was_floating) {
949                         cnt = (jack_nframes_t) floor (prefix * session->frame_rate());
950                 } else {
951                         cnt = (jack_nframes_t) floor (prefix * one_page);
952                 }
953         }
954
955         if (ULONG_MAX - cnt < leftmost_frame) {
956                 frame = ULONG_MAX - cnt;
957         } else {
958                 frame = leftmost_frame + cnt;
959         }
960
961         reposition_x_origin (frame);
962 }
963
964 void
965 Editor::scroll_tracks_down ()
966 {
967         float prefix;
968         bool was_floating;
969         int cnt;
970
971         if (get_prefix (prefix, was_floating)) {
972                 cnt = 1;
973         } else {
974                 cnt = (int) floor (prefix);
975         }
976
977         Gtk::Adjustment *adj = track_canvas_scroller.get_vadjustment();
978         adj->set_value (adj->get_value() + (cnt * adj->get_page_size()));
979 }
980
981 void
982 Editor::scroll_tracks_up ()
983 {
984         float prefix;
985         bool was_floating;
986         int cnt;
987
988         if (get_prefix (prefix, was_floating)) {
989                 cnt = 1;
990         } else {
991                 cnt = (int) floor (prefix);
992         }
993
994         Gtk::Adjustment *adj = track_canvas_scroller.get_vadjustment();
995         adj->set_value (adj->get_value() - (cnt * adj->get_page_size()));
996 }
997
998 void
999 Editor::scroll_tracks_down_line ()
1000 {
1001         edit_vscrollbar.default_vmotion (0, 10);
1002 }
1003
1004 void
1005 Editor::scroll_tracks_up_line ()
1006 {
1007         edit_vscrollbar.default_vmotion (0, -10);
1008 }
1009
1010 /* ZOOM */
1011
1012 void
1013 Editor::temporal_zoom_step (bool coarser)
1014 {
1015         double nfpu;
1016
1017         nfpu = frames_per_unit;
1018         
1019         if (coarser) { 
1020                 nfpu *= 2.0;
1021         } else { 
1022                 nfpu = max(1.0,(nfpu/2.0));
1023         }
1024
1025         temporal_zoom (nfpu);
1026 }       
1027
1028 void
1029 Editor::temporal_zoom (gdouble fpu)
1030 {
1031         if (!session) return;
1032         
1033         jack_nframes_t current_page = current_page_frames();
1034         jack_nframes_t current_leftmost = leftmost_frame;
1035         jack_nframes_t current_rightmost;
1036         jack_nframes_t current_center;
1037         jack_nframes_t new_page;
1038         jack_nframes_t leftmost_after_zoom = 0;
1039         double nfpu;
1040
1041         nfpu = fpu;
1042         
1043         new_page = (jack_nframes_t) floor (canvas_width * nfpu);
1044
1045         switch (zoom_focus) {
1046         case ZoomFocusLeft:
1047                 leftmost_after_zoom = current_leftmost;
1048                 break;
1049                 
1050         case ZoomFocusRight:
1051                 current_rightmost = leftmost_frame + current_page;
1052                 if (current_rightmost > new_page) {
1053                         leftmost_after_zoom = current_rightmost - new_page;
1054                 } else {
1055                         leftmost_after_zoom = 0;
1056                 }
1057                 break;
1058                 
1059         case ZoomFocusCenter:
1060                 current_center = current_leftmost + (current_page/2); 
1061                 if (current_center > (new_page/2)) {
1062                         leftmost_after_zoom = current_center - (new_page / 2);
1063                 } else {
1064                         leftmost_after_zoom = 0;
1065                 }
1066                 break;
1067                 
1068         case ZoomFocusPlayhead:
1069                 /* try to keep the playhead in the center */
1070                 if (playhead_cursor->current_frame > new_page/2) {
1071                         leftmost_after_zoom = playhead_cursor->current_frame - (new_page/2);
1072                 } else {
1073                         leftmost_after_zoom = 0;
1074                 }
1075                 break;
1076
1077         case ZoomFocusEdit:
1078                 /* try to keep the edit cursor in the center */
1079                 if (edit_cursor->current_frame > leftmost_frame + (new_page/2)) {
1080                         leftmost_after_zoom = edit_cursor->current_frame - (new_page/2);
1081                 } else {
1082                         leftmost_after_zoom = 0;
1083                 }
1084                 break;
1085                 
1086         }
1087  
1088         // leftmost_after_zoom = min (leftmost_after_zoom, session->current_end_frame());
1089
1090 //      begin_reversible_command (_("zoom"));
1091 //      session->add_undo (bind (mem_fun(*this, &Editor::reposition_and_zoom), current_leftmost, frames_per_unit));
1092 //      session->add_redo (bind (mem_fun(*this, &Editor::reposition_and_zoom), leftmost_after_zoom, nfpu));
1093 //      commit_reversible_command ();
1094
1095         reposition_and_zoom (leftmost_after_zoom, nfpu);
1096 }       
1097
1098 void
1099 Editor::temporal_zoom_selection ()
1100 {
1101         if (!selection) return;
1102         
1103         if (selection->time.empty()) {
1104                 return;
1105         }
1106
1107         jack_nframes_t start = selection->time[clicked_selection].start;
1108         jack_nframes_t end = selection->time[clicked_selection].end;
1109
1110         temporal_zoom_by_frame (start, end, "zoom to selection");
1111 }
1112
1113 void
1114 Editor::temporal_zoom_session ()
1115 {
1116         if (session) {
1117                 temporal_zoom_by_frame (0, session->current_end_frame(), "zoom to session");
1118         }
1119 }
1120
1121 void
1122 Editor::temporal_zoom_by_frame (jack_nframes_t start, jack_nframes_t end, string op)
1123 {
1124         if (!session) return;
1125
1126         if ((start == 0 && end == 0) || end < start) {
1127                 return;
1128         }
1129
1130         jack_nframes_t range = end - start;
1131
1132         double new_fpu = (double)range / (double)canvas_width;
1133 //      double p2 = 1.0;
1134
1135 //      while (p2 < new_fpu) {
1136 //              p2 *= 2.0;
1137 //      }
1138 //      new_fpu = p2;
1139         
1140         jack_nframes_t new_page = (jack_nframes_t) floor (canvas_width * new_fpu);
1141         jack_nframes_t middle = (jack_nframes_t) floor( (double)start + ((double)range / 2.0f ));
1142         jack_nframes_t new_leftmost = (jack_nframes_t) floor( (double)middle - ((double)new_page/2.0f));
1143
1144         if (new_leftmost > middle) new_leftmost = 0;
1145
1146 //      begin_reversible_command (op);
1147 //      session->add_undo (bind (mem_fun(*this, &Editor::reposition_and_zoom), leftmost_frame, frames_per_unit));
1148 //      session->add_redo (bind (mem_fun(*this, &Editor::reposition_and_zoom), new_leftmost, new_fpu));
1149 //      commit_reversible_command ();
1150
1151         reposition_and_zoom (new_leftmost, new_fpu);
1152 }
1153
1154 void 
1155 Editor::temporal_zoom_to_frame (bool coarser, jack_nframes_t frame)
1156 {
1157         if (!session) return;
1158         
1159         jack_nframes_t range_before = frame - leftmost_frame;
1160         double new_fpu;
1161         
1162         new_fpu = frames_per_unit;
1163         
1164         if (coarser) { 
1165                 new_fpu *= 2.0;
1166                 range_before *= 2;
1167         } else { 
1168                 new_fpu = max(1.0,(new_fpu/2.0));
1169                 range_before /= 2;
1170         }
1171
1172         if (new_fpu == frames_per_unit) return;
1173
1174         jack_nframes_t new_leftmost = frame - range_before;
1175
1176         if (new_leftmost > frame) new_leftmost = 0;
1177
1178 //      begin_reversible_command (_("zoom to frame"));
1179 //      session->add_undo (bind (mem_fun(*this, &Editor::reposition_and_zoom), leftmost_frame, frames_per_unit));
1180 //      session->add_redo (bind (mem_fun(*this, &Editor::reposition_and_zoom), new_leftmost, new_fpu));
1181 //      commit_reversible_command ();
1182
1183         reposition_and_zoom (new_leftmost, new_fpu);
1184 }
1185
1186 void
1187 Editor::select_all_in_track (bool add)
1188 {
1189         list<Selectable *> touched;
1190
1191         if (!clicked_trackview) {
1192                 return;
1193         }
1194         
1195         clicked_trackview->get_selectables (0, max_frames, 0, DBL_MAX, touched);
1196
1197         if (add) {
1198                 selection->add (touched);
1199         } else {
1200                 selection->set (touched);
1201         }
1202 }
1203
1204 void
1205 Editor::select_all (bool add)
1206 {
1207         list<Selectable *> touched;
1208         
1209         for (TrackViewList::iterator iter = track_views.begin(); iter != track_views.end(); ++iter) {
1210                 if ((*iter)->hidden()) {
1211                         continue;
1212                 }
1213                 (*iter)->get_selectables (0, max_frames, 0, DBL_MAX, touched);
1214         }
1215
1216         if (add) {
1217                 selection->add (touched);
1218         } else {
1219                 selection->set (touched);
1220         }
1221
1222 }
1223
1224 void
1225 Editor::invert_selection_in_track ()
1226 {
1227         list<Selectable *> touched;
1228
1229         if (!clicked_trackview) {
1230                 return;
1231         }
1232         
1233         clicked_trackview->get_inverted_selectables (*selection, touched);
1234         selection->set (touched);
1235 }
1236
1237 void
1238 Editor::invert_selection ()
1239 {
1240         list<Selectable *> touched;
1241         
1242         for (TrackViewList::iterator iter = track_views.begin(); iter != track_views.end(); ++iter) {
1243                 if ((*iter)->hidden()) {
1244                         continue;
1245                 }
1246                 (*iter)->get_inverted_selectables (*selection, touched);
1247         }
1248
1249         selection->set (touched);
1250 }
1251
1252 bool
1253 Editor::select_all_within (jack_nframes_t start, jack_nframes_t end, double top, double bot, bool add)
1254 {
1255         list<Selectable *> touched;
1256         
1257         for (TrackViewList::iterator iter = track_views.begin(); iter != track_views.end(); ++iter) {
1258                 if ((*iter)->hidden()) {
1259                         continue;
1260                 }
1261                 (*iter)->get_selectables (start, end, top, bot, touched);
1262         }
1263
1264         if (add) {
1265                 selection->add (touched);
1266         } else {
1267                 selection->set (touched);
1268         }
1269
1270         return !touched.empty();
1271 }
1272
1273 void
1274 Editor::set_selection_from_punch()
1275 {
1276         Location* location;
1277
1278         if ((location = session->locations()->auto_punch_location()) == 0)  {
1279                 return;
1280         }
1281
1282         set_selection_from_range (*location);
1283 }
1284
1285 void
1286 Editor::set_selection_from_loop()
1287 {
1288         Location* location;
1289
1290         if ((location = session->locations()->auto_loop_location()) == 0)  {
1291                 return;
1292         }
1293
1294         set_selection_from_range (*location);
1295 }
1296
1297 void
1298 Editor::set_selection_from_range (Location& range)
1299 {
1300         if (clicked_trackview == 0) {
1301                 return;
1302         }
1303         
1304         begin_reversible_command (_("set selection from range"));
1305         selection->set (0, range.start(), range.end());
1306         commit_reversible_command ();
1307 }
1308
1309 void
1310 Editor::amplitude_zoom_step (bool in)
1311 {
1312         gdouble zoom = 1.0;
1313
1314         if (in) {
1315                 zoom *= 2.0;
1316         } else {
1317                 if (zoom > 2.0) {
1318                         zoom /= 2.0;
1319                 } else {
1320                         zoom = 1.0;
1321                 }
1322         }
1323
1324 #ifdef FIX_FOR_CANVAS
1325         /* XXX DO SOMETHING */
1326 #endif
1327 }       
1328
1329
1330 /* DELETION */
1331
1332
1333 void
1334 Editor::delete_sample_forward ()
1335 {
1336 }
1337
1338 void
1339 Editor::delete_sample_backward ()
1340 {
1341 }
1342
1343 void
1344 Editor::delete_screen ()
1345 {
1346 }
1347
1348 /* SEARCH */
1349
1350 void
1351 Editor::search_backwards ()
1352 {
1353         /* what ? */
1354 }
1355
1356 void
1357 Editor::search_forwards ()
1358 {
1359         /* what ? */
1360 }
1361
1362 /* MARKS */
1363
1364 void
1365 Editor::jump_forward_to_mark ()
1366 {
1367         if (!session) {
1368                 return;
1369         }
1370         
1371         Location *location = session->locations()->first_location_after (playhead_cursor->current_frame);
1372
1373         if (location) {
1374                 session->request_locate (location->start(), session->transport_rolling());
1375         } else {
1376                 session->request_locate (session->current_end_frame());
1377         }
1378 }
1379
1380 void
1381 Editor::jump_backward_to_mark ()
1382 {
1383         if (!session) {
1384                 return;
1385         }
1386
1387         Location *location = session->locations()->first_location_before (playhead_cursor->current_frame);
1388         
1389         if (location) {
1390                 session->request_locate (location->start(), session->transport_rolling());
1391         } else {
1392                 session->request_locate (0);
1393         }
1394 }
1395
1396 void
1397 Editor::set_mark ()
1398 {
1399         jack_nframes_t pos;
1400         float prefix;
1401         bool was_floating;
1402
1403         if (get_prefix (prefix, was_floating)) {
1404                 pos = session->audible_frame ();
1405         } else {
1406                 if (was_floating) {
1407                         pos = (jack_nframes_t) floor (prefix * session->frame_rate ());
1408                 } else {
1409                         pos = (jack_nframes_t) floor (prefix);
1410                 }
1411         }
1412
1413         session->locations()->add (new Location (pos, 0, "mark", Location::IsMark), true);
1414 }
1415
1416 void
1417 Editor::clear_markers ()
1418 {
1419         if (session) {
1420                 session->begin_reversible_command (_("clear markers"));
1421                 session->add_undo (session->locations()->get_memento());
1422                 session->locations()->clear_markers ();
1423                 session->add_redo_no_execute (session->locations()->get_memento());
1424                 session->commit_reversible_command ();
1425         }
1426 }
1427
1428 void
1429 Editor::clear_ranges ()
1430 {
1431         if (session) {
1432                 session->begin_reversible_command (_("clear ranges"));
1433                 session->add_undo (session->locations()->get_memento());
1434                 
1435                 Location * looploc = session->locations()->auto_loop_location();
1436                 Location * punchloc = session->locations()->auto_punch_location();
1437                 
1438                 session->locations()->clear_ranges ();
1439                 // re-add these
1440                 if (looploc) session->locations()->add (looploc);
1441                 if (punchloc) session->locations()->add (punchloc);
1442                 
1443                 session->add_redo_no_execute (session->locations()->get_memento());
1444                 session->commit_reversible_command ();
1445         }
1446 }
1447
1448 void
1449 Editor::clear_locations ()
1450 {
1451         session->begin_reversible_command (_("clear locations"));
1452         session->add_undo (session->locations()->get_memento());
1453         session->locations()->clear ();
1454         session->add_redo_no_execute (session->locations()->get_memento());
1455         session->commit_reversible_command ();
1456         session->locations()->clear ();
1457 }
1458
1459 /* INSERT/REPLACE */
1460
1461 void
1462 Editor::insert_region_list_drag (AudioRegion& region)
1463 {
1464         gint x, y;
1465         double wx, wy;
1466         double cx, cy;
1467         TimeAxisView *tv;
1468         jack_nframes_t where;
1469         AudioTimeAxisView *atv = 0;
1470         Playlist *playlist;
1471         
1472         track_canvas->get_pointer (x, y);
1473
1474         gnome_canvas_window_to_world (GNOME_CANVAS(track_gnome_canvas), x, y, &wx, &wy);
1475         
1476         GdkEvent event;
1477         event.type = GDK_BUTTON_RELEASE;
1478         event.button.x = wx;
1479         event.button.y = wy;
1480         
1481         where = event_frame (&event, &cx, &cy);
1482
1483         if (where < leftmost_frame || where > leftmost_frame + current_page_frames()) {
1484                 /* clearly outside canvas area */
1485                 return;
1486         }
1487         
1488         if ((tv = trackview_by_y_position (cy)) == 0) {
1489                 return;
1490         }
1491         
1492         if ((atv = dynamic_cast<AudioTimeAxisView*>(tv)) == 0) {
1493                 return;
1494         }
1495
1496         if ((playlist = atv->playlist()) == 0) {
1497                 return;
1498         }
1499         
1500         snap_to (where);
1501         
1502         begin_reversible_command (_("insert dragged region"));
1503         session->add_undo (playlist->get_memento());
1504         playlist->add_region (*(new AudioRegion (region)), where, 1.0);
1505         session->add_redo_no_execute (playlist->get_memento());
1506         commit_reversible_command ();
1507 }
1508
1509 void
1510 Editor::insert_region_list_selection (float times)
1511 {
1512         AudioTimeAxisView *tv = 0;
1513         Playlist *playlist;
1514
1515         if (clicked_audio_trackview != 0) {
1516                 tv = clicked_audio_trackview;
1517         } else if (!selection->tracks.empty()) {
1518                 if ((tv = dynamic_cast<AudioTimeAxisView*>(selection->tracks.front())) == 0) {
1519                         return;
1520                 }
1521         } else {
1522                 return;
1523         }
1524
1525         if ((playlist = tv->playlist()) == 0) {
1526                 return;
1527         }
1528         
1529         Gtk::CTree_Helpers::SelectionList& selected = region_list_display.selection();
1530         
1531         if (selected.empty()) {
1532                 return;
1533         }
1534         
1535         Region* region = reinterpret_cast<Region *> (selected.front().get_data ());
1536
1537         begin_reversible_command (_("insert region"));
1538         session->add_undo (playlist->get_memento());
1539         playlist->add_region (*(createRegion (*region)), edit_cursor->current_frame, times);
1540         session->add_redo_no_execute (playlist->get_memento());
1541         commit_reversible_command ();
1542 }
1543
1544
1545 /* BUILT-IN EFFECTS */
1546
1547 void
1548 Editor::reverse_selection ()
1549 {
1550
1551 }
1552
1553 /* GAIN ENVELOPE EDITING */
1554
1555 void
1556 Editor::edit_envelope ()
1557 {
1558 }
1559
1560 /* PLAYBACK */
1561
1562 void
1563 Editor::toggle_playback (bool with_abort)
1564 {
1565         if (!session) {
1566                 return;
1567         }
1568
1569         switch (session->slave_source()) {
1570         case Session::None:
1571         case Session::JACK:
1572                 break;
1573         default:
1574                 /* transport controlled by the master */
1575                 return;
1576         }
1577
1578         if (session->is_auditioning()) {
1579                 session->cancel_audition ();
1580                 return;
1581         }
1582         
1583         if (session->transport_rolling()) {
1584                 session->request_stop (with_abort);
1585                 if (session->get_auto_loop()) {
1586                         session->request_auto_loop (false);
1587                 }
1588         } else {
1589                 session->request_transport_speed (1.0f);
1590         }
1591 }
1592
1593 void
1594 Editor::play_from_start ()
1595 {
1596         session->request_locate (0, true);
1597 }
1598
1599 void
1600 Editor::play_selection ()
1601 {
1602         if (selection->time.empty()) {
1603                 return;
1604         }
1605
1606         session->request_play_range (true);
1607 }
1608
1609 void
1610 Editor::play_selected_region ()
1611 {
1612         if (!selection->audio_regions.empty()) {
1613                 AudioRegionView *rv = *(selection->audio_regions.begin());
1614
1615                 session->request_bounded_roll (rv->region.position(), rv->region.last_frame()); 
1616         }
1617 }
1618
1619 void
1620 Editor::toggle_loop_playback ()
1621 {
1622         if (session) {
1623                 session->request_auto_loop (true);
1624         }
1625 }
1626
1627 void
1628 Editor::loop_selected_region ()
1629 {
1630         if (!selection->audio_regions.empty()) {
1631                 AudioRegionView *rv = *(selection->audio_regions.begin());
1632                 Location* tll;
1633
1634                 if ((tll = transport_loop_location()) != 0)  {
1635
1636                         tll->set (rv->region.position(), rv->region.last_frame());
1637                         
1638                         // enable looping, reposition and start rolling
1639
1640                         session->request_auto_loop (true);
1641                         session->request_locate (tll->start(), false);
1642                         session->request_transport_speed (1.0f);
1643                 }
1644         }
1645 }
1646
1647 void
1648 Editor::play_location (Location& location)
1649 {
1650         if (location.start() <= location.end()) {
1651                 return;
1652         }
1653
1654         session->request_bounded_roll (location.start(), location.end());
1655 }
1656
1657 void
1658 Editor::loop_location (Location& location)
1659 {
1660         if (location.start() <= location.end()) {
1661                 return;
1662         }
1663
1664         Location* tll;
1665
1666         if ((tll = transport_loop_location()) != 0) {
1667                 tll->set (location.start(), location.end());
1668
1669                 // enable looping, reposition and start rolling
1670                 session->request_auto_loop (true);
1671                 session->request_locate (tll->start(), true);
1672         }
1673 }
1674
1675 void 
1676 Editor::toggle_region_mute ()
1677 {
1678         if (clicked_regionview) {
1679                 clicked_regionview->region.set_muted (!clicked_regionview->region.muted());
1680         } else if (!selection->audio_regions.empty()) {
1681                 bool yn = ! (*selection->audio_regions.begin())->region.muted();
1682                 selection->foreach_audio_region (&AudioRegion::set_muted, yn);
1683         }
1684 }
1685
1686 void
1687 Editor::toggle_region_opaque ()
1688 {
1689         if (clicked_regionview) {
1690                 clicked_regionview->region.set_opaque (!clicked_regionview->region.opaque());
1691         } else if (!selection->audio_regions.empty()) {
1692                 bool yn = ! (*selection->audio_regions.begin())->region.opaque();
1693                 selection->foreach_audio_region (&Region::set_opaque, yn);
1694         }
1695 }
1696
1697 void
1698 Editor::raise_region ()
1699 {
1700         selection->foreach_audio_region (&Region::raise);
1701 }
1702
1703 void
1704 Editor::raise_region_to_top ()
1705 {
1706         selection->foreach_audio_region (&Region::raise_to_top);
1707 }
1708
1709 void
1710 Editor::lower_region ()
1711 {
1712         selection->foreach_audio_region (&Region::lower);
1713 }
1714
1715 void
1716 Editor::lower_region_to_bottom ()
1717 {
1718         selection->foreach_audio_region (&Region::lower_to_bottom);
1719 }
1720
1721 void
1722 Editor::edit_region ()
1723 {
1724         if (clicked_regionview == 0) {
1725                 return;
1726         }
1727         
1728         clicked_regionview->show_region_editor ();
1729 }
1730
1731 void
1732 Editor::rename_region ()
1733 {
1734         Dialog dialog;
1735         Entry  entry;
1736         Button ok_button (_("OK"));
1737         Button cancel_button (_("Cancel"));
1738
1739         if (selection->audio_regions.empty()) {
1740                 return;
1741         }
1742
1743         dialog.set_title (_("ardour: rename region"));
1744         dialog.set_name ("RegionRenameWindow");
1745         dialog.set_size_request (300, -1);
1746         dialog.set_position (Gtk::WIN_POS_MOUSE);
1747         dialog.set_modal (true);
1748
1749         dialog.get_vbox()->set_border_width (10);
1750         dialog.get_vbox()->pack_start (entry);
1751         dialog.get_action_area()->pack_start (ok_button);
1752         dialog.get_action_area()->pack_start (cancel_button);
1753
1754         entry.set_name ("RegionNameDisplay");
1755         ok_button.set_name ("EditorGTKButton");
1756         cancel_button.set_name ("EditorGTKButton");
1757
1758         region_renamed = false;
1759
1760         entry.signal_activate().connect (bind (mem_fun(*this, &Editor::rename_region_finished), true));
1761         ok_button.signal_clicked().connect (bind (mem_fun(*this, &Editor::rename_region_finished), true));
1762         cancel_button.signal_clicked().connect (bind (mem_fun(*this, &Editor::rename_region_finished), false));
1763
1764         /* recurse */
1765
1766         dialog.show_all ();
1767         ARDOUR_UI::instance()->allow_focus (true);
1768         Main::run ();
1769         ARDOUR_UI::instance()->allow_focus (false);
1770
1771         if (region_renamed) {
1772                 (*selection->audio_regions.begin())->region.set_name (entry.get_text());
1773                 redisplay_regions ();
1774         }
1775 }
1776
1777 void
1778 Editor::rename_region_finished (bool status)
1779
1780 {
1781         region_renamed = status;
1782         Main::quit ();
1783 }
1784
1785 void
1786 Editor::audition_playlist_region_via_route (AudioRegion& region, Route& route)
1787 {
1788         if (session->is_auditioning()) {
1789                 session->cancel_audition ();
1790         } 
1791
1792         // note: some potential for creativity here, because region doesn't
1793         // have to belong to the playlist that Route is handling
1794
1795         // bool was_soloed = route.soloed();
1796
1797         route.set_solo (true, this);
1798         
1799         session->request_bounded_roll (region.position(), region.position() + region.length());
1800         
1801         /* XXX how to unset the solo state ? */
1802 }
1803
1804 void
1805 Editor::audition_selected_region ()
1806 {
1807         if (!selection->audio_regions.empty()) {
1808                 AudioRegionView* rv = *(selection->audio_regions.begin());
1809                 session->audition_region (rv->region);
1810         }
1811 }
1812
1813 void
1814 Editor::audition_playlist_region_standalone (AudioRegion& region)
1815 {
1816         session->audition_region (region);
1817 }
1818
1819 void
1820 Editor::build_interthread_progress_window ()
1821 {
1822         interthread_progress_window = new ArdourDialog (X_("interthread progress"));
1823
1824         interthread_progress_bar.set_orientation (Gtk::PROGRESS_LEFT_TO_RIGHT);
1825         
1826         interthread_progress_vbox.set_border_width (10);
1827         interthread_progress_vbox.set_spacing (5);
1828         interthread_progress_vbox.pack_start (interthread_progress_label, false, false);
1829         interthread_progress_vbox.pack_start (interthread_progress_bar,false, false);
1830         interthread_progress_vbox.pack_start (interthread_cancel_button,false, false);
1831
1832         interthread_cancel_button.add (interthread_cancel_label);
1833
1834         interthread_cancel_button.signal_clicked().connect (mem_fun(*this, &Editor::interthread_cancel_clicked));
1835         
1836         interthread_progress_window->set_modal (true);
1837         interthread_progress_window->set_default_size (200, 100);
1838         interthread_progress_window->add (interthread_progress_vbox);
1839 }
1840
1841 void
1842 Editor::interthread_cancel_clicked ()
1843 {
1844         if (current_interthread_info) {
1845                 current_interthread_info->cancel = true;
1846         }
1847 }
1848
1849 void *
1850 Editor::_import_thread (void *arg)
1851 {
1852         PBD::ThreadCreated (pthread_self(), X_("Import"));
1853
1854         Editor *ed = (Editor *) arg;
1855         return ed->import_thread ();
1856 }
1857
1858 void *
1859 Editor::import_thread ()
1860 {
1861         session->import_audiofile (import_status);
1862         return 0;
1863 }
1864
1865 gint
1866 Editor::import_progress_timeout (void *arg)
1867 {
1868         interthread_progress_label.set_text (import_status.doing_what);
1869
1870         if (import_status.freeze) {
1871                 interthread_cancel_button.set_sensitive(false);
1872         } else {
1873                 interthread_cancel_button.set_sensitive(true);
1874         }
1875
1876         if (import_status.doing_what == "building peak files") {
1877                 interthread_progress_bar.set_activity_mode (true);
1878                 return FALSE;
1879         } else {
1880                 interthread_progress_bar.set_fraction (import_status.progress/100);
1881         }
1882
1883         return !(import_status.done || import_status.cancel);
1884 }
1885
1886 void
1887 Editor::import_audio (bool as_tracks)
1888 {
1889         if (session == 0) {
1890                 warning << _("You can't import an audiofile until you have a session loaded.") << endmsg;
1891                 return;
1892         }
1893
1894         string str;
1895
1896         if (as_tracks) {
1897                 str =_("Import selected as tracks");
1898         } else {
1899                 str = _("Import selected to region list");
1900         }
1901
1902         SoundFileChooser sfdb (str, true, true);
1903
1904         int result = sfdb.run();
1905
1906         if (result == Gtk::RESULT_ACCEPTED) {
1907                 do_import(sfdb.get_filenames, sfdb.get_split(), as_tracks);
1908         }
1909 }
1910
1911 void
1912 Editor::catch_new_audio_region (AudioRegion* ar)
1913 {
1914         last_audio_region = ar;
1915 }
1916
1917 void
1918 Editor::do_import (vector<string> paths, bool split, bool as_tracks)
1919 {
1920         sigc::connection c;
1921         
1922         /* SFDB sets "multichan" to true to indicate "split channels"
1923            so reverse the setting to match the way libardour
1924            interprets it.
1925         */
1926         
1927         import_status.multichan = !split;
1928
1929         if (interthread_progress_window == 0) {
1930                 build_interthread_progress_window ();
1931         }
1932         
1933         interthread_progress_window->set_title (_("ardour: audio import in progress"));
1934         interthread_progress_window->set_position (Gtk::WIN_POS_MOUSE);
1935         interthread_progress_window->show_all ();
1936         interthread_progress_bar.set_fraction (0.0f);
1937         interthread_cancel_label.set_text (_("Cancel Import"));
1938         current_interthread_info = &import_status;
1939
1940         c = session->AudioRegionAdded.connect (mem_fun(*this, &Editor::catch_new_audio_region));
1941
1942         for (vector<string>::iterator i = paths.begin(); i != paths.end(); ++i ) {
1943
1944                 interthread_progress_window->set_title (string_compose (_("ardour: importing %1"), (*i)));
1945         
1946                 import_status.pathname = (*i);
1947                 import_status.done = false;
1948                 import_status.cancel = false;
1949                 import_status.freeze = false;
1950                 import_status.done = 0.0;
1951                 
1952                 interthread_progress_connection = 
1953                   Glib::signal_timeout().connect (bind (mem_fun(*this, &Editor::import_progress_timeout), (gpointer) 0), 100);
1954                 
1955                 last_audio_region = 0;
1956                 
1957                 pthread_create_and_store ("import", &import_status.thread, 0, _import_thread, this);
1958                 pthread_detach (import_status.thread);
1959                 
1960                 while (!(import_status.done || import_status.cancel)) {
1961                         gtk_main_iteration ();
1962                 }
1963                 
1964                 import_status.done = true;
1965                 interthread_progress_connection.disconnect ();
1966
1967                 if (as_tracks && last_audio_region != 0) {
1968                         uint32_t channels = last_audio_region->n_channels();
1969
1970                         AudioTrack* at = session->new_audio_track (channels, channels);
1971                         AudioRegion* copy = new AudioRegion (*last_audio_region);
1972                         at->disk_stream().playlist()->add_region (*copy, 0);
1973                 }
1974         }
1975
1976         c.disconnect ();
1977         interthread_progress_window->hide_all ();
1978 }
1979
1980 int
1981 Editor::reject_because_rate_differs (string path, SF_INFO& finfo, string action, bool multiple_pending)
1982 {
1983         if (!session) {
1984                 return 1;
1985         }
1986
1987         if (finfo.samplerate != (int) session->frame_rate()) {
1988                 vector<string> choices;
1989
1990                 choices.push_back (string_compose (_("%1 it anyway"), action));
1991
1992                 if (multiple_pending) {
1993                         /* XXX assumptions about sentence structure
1994                            here for translators. Sorry.
1995                         */
1996                         choices.push_back (string_compose (_("Don't %1 it"), action));
1997                         choices.push_back (string_compose (_("%1 all without questions"), action));
1998                         choices.push_back (_("Cancel entire import"));
1999                 } else {
2000                         choices.push_back (_("Cancel"));
2001                 }
2002
2003                 Gtkmm2ext::Choice rate_choice (
2004                         string_compose (_("%1\nThis audiofile's sample rate doesn't match the session sample rate!"), path),
2005                         choices);
2006
2007                 rate_choice.chosen.connect (Main::quit.slot());
2008                 rate_choice.show_all ();
2009
2010                 Main::run ();
2011
2012                 switch (rate_choice.get_choice()) {
2013                 case 0: /* do it anyway */
2014                         return 0;
2015                 case 1: /* don't import this one */
2016                         return 1;
2017                 case 2: /* do the rest without asking */
2018                         return -1;
2019                 case 3: /* stop a multi-file import */
2020                 default:
2021                         return -2;
2022                 }
2023         }
2024
2025         return 0;
2026 }
2027
2028 void 
2029 Editor::embed_audio ()
2030 {
2031         if (session == 0) {
2032                 warning << _("You can't embed an audiofile until you have a session loaded.") << endmsg;
2033                 return;
2034         }
2035
2036         SoundFileSelector sfdb (_("Add to External Region list"), true, true);
2037
2038         int result = sfdb.run ();
2039 }
2040
2041 void
2042 Editor::do_embed_sndfiles (vector<string> paths, bool split)
2043 {
2044         bool multiple_files = paths.size() > 1;
2045         bool check_sample_rate = true;
2046
2047         for (vector<string>::iterator i = paths.begin(); i != paths.end(); ++i) {
2048                 embed_sndfile (*i, split, multiple_files, check_sample_rate);
2049         }
2050
2051         session->save_state ("");
2052 }
2053
2054 void
2055 Editor::embed_sndfile (string path, bool split, bool multiple_files, bool& check_sample_rate)
2056 {
2057         SndFileSource *source = 0; /* keep g++ quiet */
2058         AudioRegion::SourceList sources;
2059         string idspec;
2060         string linked_path;
2061         SNDFILE *sf;
2062         SF_INFO finfo;
2063
2064         /* lets see if we can link it into the session */
2065         
2066         linked_path = session->sound_dir();
2067         linked_path += PBD::basename (path);
2068
2069         if (link (path.c_str(), linked_path.c_str()) == 0) {
2070
2071                 /* there are many reasons why link(2) might have failed.
2072                    but if it succeeds, we now have a link in the
2073                    session sound dir that will protect against
2074                    unlinking of the original path. nice.
2075                 */
2076
2077                 path = linked_path;
2078         }
2079
2080         memset (&finfo, 0, sizeof(finfo));
2081
2082         /* note that we temporarily truncated _id at the colon */
2083         
2084         if ((sf = sf_open (path.c_str(), SFM_READ, &finfo)) == 0) {
2085                 char errbuf[256];
2086                 sf_error_str (0, errbuf, sizeof (errbuf) - 1);
2087                 error << string_compose(_("Editor: cannot open file \"%1\" (%2)"), selection, errbuf) << endmsg;
2088                 return;
2089         }
2090         sf_close (sf);
2091         sf = 0;
2092         
2093         if (check_sample_rate) {
2094                 switch (reject_because_rate_differs (path, finfo, "Embed", multiple_files)) {
2095                 case 0:
2096                         break;
2097                 case 1:
2098                         return;
2099                 case -1:
2100                         check_sample_rate = false;
2101                         break;
2102                         
2103                 case -2:
2104                 default:
2105                         return;
2106                 }
2107         }
2108
2109         track_canvas_scroller.get_window()->set_cursor (GDK_WATCH);
2110         ARDOUR_UI::instance()->flush_pending ();
2111
2112         /* make the proper number of channels in the region */
2113
2114         for (int n=0; n < finfo.channels; ++n)
2115         {
2116                 idspec = path;
2117                 idspec += string_compose(":%1", n);
2118                 
2119                 try {
2120                         source = new SndFileSource (idspec.c_str());
2121                         sources.push_back(source);
2122                 } 
2123
2124                 catch (failed_constructor& err) {
2125                         error << string_compose(_("could not open %1"), path) << endmsg;
2126                         goto out;
2127                 }
2128
2129                 ARDOUR_UI::instance()->flush_pending ();
2130         }
2131
2132         if (sources.size() > 0) {
2133
2134                 string region_name = PBD::basename_nosuffix (path);
2135                 region_name += "-0";
2136
2137                 /* The created region isn't dropped.  It emits a signal
2138                    that is picked up by the session. 
2139                 */
2140
2141                 new AudioRegion (sources, 0, sources[0]->length(), region_name, 0,
2142                                  Region::Flag (Region::DefaultFlags|Region::WholeFile|Region::External));
2143                 
2144                 /* make sure we can see it in the list */
2145
2146                 Gtk::CTree_Helpers::RowList::iterator external_node;
2147                 external_node = region_list_display.rows().begin();
2148                 ++external_node; /* its the second node, always */
2149                 external_node->expand_recursive ();
2150
2151                 ARDOUR_UI::instance()->flush_pending ();
2152         }
2153
2154   out:
2155         track_canvas_scroller.get_window()->set_cursor (current_canvas_cursor);
2156 }
2157
2158 void
2159 Editor::insert_sndfile (bool as_tracks)
2160 {
2161         SoundFileSelector& sfdb (ARDOUR_UI::instance()->get_sfdb_window());
2162         sigc::connection c;
2163         string str;
2164
2165         if (as_tracks) {
2166
2167                 c = sfdb.Action.connect (mem_fun(*this, &Editor::insert_paths_as_new_tracks));
2168                 str = _("Insert selected as new tracks");
2169
2170         } else {
2171
2172                 jack_nframes_t pos;
2173
2174                 if (clicked_audio_trackview == 0) {
2175                         return;
2176                 }
2177
2178                 if (ensure_cursor (&pos)) {
2179                         return;
2180                 }
2181
2182                 c = sfdb.Action.connect (bind (mem_fun(*this, &Editor::do_insert_sndfile), pos));
2183                 str = _("Insert selected");
2184         }
2185
2186         sfdb.run (str, false);
2187         c.disconnect ();
2188 }
2189
2190 void
2191 Editor::insert_paths_as_new_tracks (vector<string> paths, bool split)
2192 {
2193         SNDFILE *sf;
2194         SF_INFO finfo;
2195         bool multiple_files;
2196         bool check_sample_rate = true;
2197
2198         multiple_files = paths.size() > 1;      
2199
2200         for (vector<string>::iterator p = paths.begin(); p != paths.end(); ++p) {
2201                 
2202                 memset (&finfo, 0, sizeof(finfo));
2203                 
2204                 if ((sf = sf_open ((*p).c_str(), SFM_READ, &finfo)) == 0) {
2205                         char errbuf[256];
2206                         sf_error_str (0, errbuf, sizeof (errbuf) - 1);
2207                         error << string_compose(_("Editor: cannot open file \"%1\" (%2)"), (*p), errbuf) << endmsg;
2208                         continue;
2209                 }
2210                 
2211                 sf_close (sf);
2212                 sf = 0;
2213                 
2214                 /* add a new track */
2215                 
2216                 if (check_sample_rate) {
2217                         switch (reject_because_rate_differs (*p, finfo, "Insert", multiple_files)) {
2218                         case 0:
2219                                 break;
2220                         case 1:
2221                                 continue;
2222                         case -1:
2223                                 check_sample_rate = false;
2224                                 break;
2225                                 
2226                         case -2:
2227                                 return;
2228                         }
2229                 }
2230                 
2231                 uint32_t input_chan = finfo.channels;
2232                 uint32_t output_chan;
2233                 
2234                 if (session->get_output_auto_connect() & Session::AutoConnectMaster) {
2235                         output_chan = (session->master_out() ? session->master_out()->n_inputs() : input_chan);
2236                 } else {
2237                         output_chan = input_chan;
2238                 }
2239                 
2240                 (void) session->new_audio_track (input_chan, output_chan);
2241
2242
2243                 /* get the last (most recently added) track view */
2244         
2245                 AudioTimeAxisView* tv;
2246         
2247                 if ((tv = dynamic_cast<AudioTimeAxisView*>(track_views.back())) == 0) {
2248                         fatal << _("programming error: ")
2249                               << X_("last trackview after new_audio_track is not an audio track!")
2250                               << endmsg;
2251                         /*NOTREACHED*/
2252                 }
2253                 
2254                 jack_nframes_t pos = 0;
2255                 insert_sndfile_into (*p, true, tv, pos, false);
2256         }
2257 }
2258
2259 void
2260 Editor::do_insert_sndfile (vector<string> paths, bool split, jack_nframes_t pos)
2261 {
2262         for (vector<string>::iterator x = paths.begin(); x != paths.end(); ++x) {
2263                 insert_sndfile_into (*x, !split, clicked_audio_trackview, pos);
2264         }
2265 }
2266
2267 void
2268 Editor::insert_sndfile_into (string path, bool multi, AudioTimeAxisView* tv, jack_nframes_t& pos, bool prompt)
2269 {
2270         SndFileSource *source = 0; /* keep g++ quiet */
2271         AudioRegion::SourceList sources;
2272         string idspec;
2273         SNDFILE *sf;
2274         SF_INFO finfo;
2275
2276         memset (&finfo, 0, sizeof(finfo));
2277
2278         /* note that we temporarily truncated _id at the colon */
2279         
2280         if ((sf = sf_open (path.c_str(), SFM_READ, &finfo)) == 0) {
2281                 char errbuf[256];
2282                 sf_error_str (0, errbuf, sizeof (errbuf) - 1);
2283                 error << string_compose(_("Editor: cannot open file \"%1\" (%2)"), path, errbuf) << endmsg;
2284                 return;
2285         }
2286         sf_close (sf);
2287         sf = 0;
2288         
2289         if (prompt && (reject_because_rate_differs (path, finfo, "Insert", false) != 0)) {
2290                 return;
2291         }
2292
2293         track_canvas_scroller.get_window()->set_cursor (GDK_WATCH);
2294         ARDOUR_UI::instance()->flush_pending ();
2295
2296         /* make the proper number of channels in the region */
2297
2298         for (int n=0; n < finfo.channels; ++n)
2299         {
2300                 idspec = path;
2301                 idspec += string_compose(":%1", n);
2302
2303                 try {
2304                         source = new SndFileSource (idspec.c_str());
2305                         sources.push_back(source);
2306                 } 
2307
2308                 catch (failed_constructor& err) {
2309                         error << string_compose(_("could not open %1"), path) << endmsg;
2310                         goto out;
2311                 }
2312
2313                 ARDOUR_UI::instance()->flush_pending ();
2314         }
2315
2316         if (sources.size() > 0) {
2317
2318                 string region_name = region_name_from_path (PBD::basename (path));
2319                 
2320                 AudioRegion *region = new AudioRegion (sources, 0, sources[0]->length(), region_name, 
2321                                                        0, /* irrelevant these days */
2322                                                        Region::Flag (Region::DefaultFlags|Region::WholeFile|Region::External));
2323
2324                 begin_reversible_command (_("insert sndfile"));
2325                 session->add_undo (tv->playlist()->get_memento());
2326                 tv->playlist()->add_region (*region, pos);
2327                 session->add_redo_no_execute (tv->playlist()->get_memento());
2328                 commit_reversible_command ();
2329                 
2330                 pos += sources[0]->length();
2331
2332                 ARDOUR_UI::instance()->flush_pending ();
2333         }
2334
2335   out:
2336         track_canvas_scroller.get_window()->set_cursor (current_canvas_cursor);
2337         return;
2338 }
2339
2340 void
2341 Editor::region_from_selection ()
2342 {
2343         if (clicked_trackview == 0) {
2344                 return;
2345         }
2346
2347         if (selection->time.empty()) {
2348                 return;
2349         }
2350
2351         jack_nframes_t start = selection->time[clicked_selection].start;
2352         jack_nframes_t end = selection->time[clicked_selection].end;
2353
2354         jack_nframes_t selection_cnt = end - start + 1;
2355         
2356         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
2357
2358                 AudioRegion *region;
2359                 AudioRegion *current;
2360                 Region* current_r;
2361                 Playlist *pl;
2362
2363                 jack_nframes_t internal_start;
2364                 string new_name;
2365
2366                 if ((pl = (*i)->playlist()) == 0) {
2367                         continue;
2368                 }
2369
2370                 if ((current_r = pl->top_region_at (start)) == 0) {
2371                         continue;
2372                 }
2373
2374                 if ((current = dynamic_cast<AudioRegion*> (current_r)) != 0) {
2375                         internal_start = start - current->position();
2376                         session->region_name (new_name, current->name(), true);
2377                         region = new AudioRegion (*current, internal_start, selection_cnt, new_name);
2378                 }
2379         }
2380 }       
2381
2382 void
2383 Editor::create_region_from_selection (vector<AudioRegion *>& new_regions)
2384 {
2385         if (selection->time.empty() || selection->tracks.empty()) {
2386                 return;
2387         }
2388
2389         jack_nframes_t start = selection->time[clicked_selection].start;
2390         jack_nframes_t end = selection->time[clicked_selection].end;
2391         
2392         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
2393
2394                 AudioRegion* current;
2395                 Region* current_r;
2396                 Playlist* playlist;
2397                 jack_nframes_t internal_start;
2398                 string new_name;
2399
2400                 if ((playlist = (*i)->playlist()) == 0) {
2401                         continue;
2402                 }
2403
2404                 if ((current_r = playlist->top_region_at(start)) == 0) {
2405                         continue;
2406                 }
2407
2408                 if ((current = dynamic_cast<AudioRegion*>(current_r)) == 0) {
2409                         continue;
2410                 }
2411         
2412                 internal_start = start - current->position();
2413                 session->region_name (new_name, current->name(), true);
2414                 
2415                 new_regions.push_back (new AudioRegion (*current, internal_start, end - start + 1, new_name));
2416         }
2417 }
2418
2419 void
2420 Editor::split_multichannel_region ()
2421 {
2422         vector<AudioRegion*> v;
2423
2424         if (!clicked_regionview || clicked_regionview->region.n_channels() < 2) {
2425                 return;
2426         }
2427
2428         clicked_regionview->region.separate_by_channel (*session, v);
2429
2430         /* nothing else to do, really */
2431 }
2432
2433 void
2434 Editor::new_region_from_selection ()
2435 {
2436         region_from_selection ();
2437         cancel_selection ();
2438 }
2439
2440 void
2441 Editor::separate_region_from_selection ()
2442 {
2443         bool doing_undo = false;
2444
2445         if (selection->time.empty()) {
2446                 return;
2447         }
2448
2449         Playlist *playlist;
2450                 
2451         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
2452
2453                 AudioTimeAxisView* atv;
2454
2455                 if ((atv = dynamic_cast<AudioTimeAxisView*> ((*i))) != 0) {
2456
2457                         if (atv->is_audio_track()) {
2458                                         
2459                                 if ((playlist = atv->playlist()) != 0) {
2460                                         if (!doing_undo) {
2461                                                 begin_reversible_command (_("separate"));
2462                                                 doing_undo = true;
2463                                         }
2464                                         if (doing_undo) session->add_undo ((playlist)->get_memento());
2465                         
2466                                         /* XXX need to consider musical time selections here at some point */
2467
2468                                         double speed = atv->get_diskstream()->speed();
2469
2470                                         for (list<AudioRange>::iterator t = selection->time.begin(); t != selection->time.end(); ++t) {
2471                                                 playlist->partition ((jack_nframes_t)((*t).start * speed), (jack_nframes_t)((*t).end * speed), true);
2472                                         }
2473
2474                                         if (doing_undo) session->add_redo_no_execute (playlist->get_memento());
2475                                 }
2476                         }
2477                 }
2478         }
2479
2480         if (doing_undo) commit_reversible_command ();
2481 }
2482
2483 void
2484 Editor::crop_region_to_selection ()
2485 {
2486         if (selection->time.empty()) {
2487                 return;
2488         }
2489
2490         vector<Playlist*> playlists;
2491         Playlist *playlist;
2492
2493         if (clicked_trackview != 0) {
2494
2495                 if ((playlist = clicked_trackview->playlist()) == 0) {
2496                         return;
2497                 }
2498
2499                 playlists.push_back (playlist);
2500
2501         } else {
2502                 
2503                 for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
2504
2505                         AudioTimeAxisView* atv;
2506
2507                         if ((atv = dynamic_cast<AudioTimeAxisView*> ((*i))) != 0) {
2508
2509                                 if (atv->is_audio_track()) {
2510                                         
2511                                         if ((playlist = atv->playlist()) != 0) {
2512                                                 playlists.push_back (playlist);
2513                                         }
2514                                 }
2515                         }
2516                 }
2517         }
2518
2519         if (!playlists.empty()) {
2520
2521                 jack_nframes_t start;
2522                 jack_nframes_t end;
2523                 jack_nframes_t cnt;
2524
2525                 begin_reversible_command (_("trim to selection"));
2526
2527                 for (vector<Playlist*>::iterator i = playlists.begin(); i != playlists.end(); ++i) {
2528                         
2529                         Region *region;
2530                         
2531                         start = selection->time.start();
2532
2533                         if ((region = (*i)->top_region_at(start)) == 0) {
2534                                 continue;
2535                         }
2536                         
2537                         /* now adjust lengths to that we do the right thing
2538                            if the selection extends beyond the region
2539                         */
2540                         
2541                         start = max (start, region->position());
2542                         end = min (selection->time.end_frame(), start + region->length() - 1);
2543                         cnt = end - start + 1;
2544
2545                         session->add_undo ((*i)->get_memento());
2546                         region->trim_to (start, cnt, this);
2547                         session->add_redo_no_execute ((*i)->get_memento());
2548                 }
2549
2550                 commit_reversible_command ();
2551         }
2552 }               
2553
2554 void
2555 Editor::region_fill_track ()
2556 {
2557         jack_nframes_t end;
2558
2559         if (!session || selection->audio_regions.empty()) {
2560                 return;
2561         }
2562
2563         end = session->current_end_frame ();
2564
2565         begin_reversible_command (_("region fill"));
2566
2567         for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
2568
2569                 AudioRegion& region ((*i)->region);
2570                 Playlist* pl = region.playlist();
2571
2572                 if (end <= region.last_frame()) {
2573                         return;
2574                 }
2575
2576                 double times = (double) (end - region.last_frame()) / (double) region.length();
2577
2578                 if (times == 0) {
2579                         return;
2580                 }
2581
2582                 session->add_undo (pl->get_memento());
2583                 pl->add_region (*(new AudioRegion (region)), region.last_frame(), times);
2584                 session->add_redo_no_execute (pl->get_memento());
2585         }
2586
2587         commit_reversible_command ();
2588 }
2589
2590 void
2591 Editor::region_fill_selection ()
2592 {
2593         if (clicked_audio_trackview == 0 || !clicked_audio_trackview->is_audio_track()) {
2594                 return;
2595         }
2596
2597         if (selection->time.empty()) {
2598                 return;
2599         }
2600
2601         Region *region;
2602
2603         Gtk::CTree_Helpers::SelectionList& selected = region_list_display.selection();
2604         
2605         if (selected.empty()) {
2606                 return;
2607         }
2608
2609         region = reinterpret_cast<Region *> (selected.front().get_data());
2610
2611         jack_nframes_t start = selection->time[clicked_selection].start;
2612         jack_nframes_t end = selection->time[clicked_selection].end;
2613
2614         Playlist *playlist; 
2615
2616         if (selection->tracks.empty()) {
2617                 return;
2618         }
2619
2620         jack_nframes_t selection_length = end - start;
2621         float times = (float)selection_length / region->length();
2622         
2623         begin_reversible_command (_("fill selection"));
2624         
2625         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
2626
2627                 if ((playlist = (*i)->playlist()) == 0) {
2628                         continue;
2629                 }               
2630                 
2631                 session->add_undo (playlist->get_memento());
2632                 playlist->add_region (*(createRegion (*region)), start, times);
2633                 session->add_redo_no_execute (playlist->get_memento());
2634         }
2635         
2636         commit_reversible_command ();                   
2637 }
2638         
2639 void
2640 Editor::set_region_sync_from_edit_cursor ()
2641 {
2642         if (clicked_regionview == 0) {
2643                 return;
2644         }
2645
2646         if (!clicked_regionview->region.covers (edit_cursor->current_frame)) {
2647                 error << _("Place the edit cursor at the desired sync point") << endmsg;
2648                 return;
2649         }
2650
2651         Region& region (clicked_regionview->region);
2652
2653         begin_reversible_command (_("set sync from edit cursor"));
2654         session->add_undo (region.playlist()->get_memento());
2655         region.set_sync_position (edit_cursor->current_frame);
2656         session->add_redo_no_execute (region.playlist()->get_memento());
2657         commit_reversible_command ();
2658 }
2659
2660 void
2661 Editor::remove_region_sync ()
2662 {
2663         if (clicked_regionview) {
2664                 Region& region (clicked_regionview->region);
2665                 begin_reversible_command (_("remove sync"));
2666                 session->add_undo (region.playlist()->get_memento());
2667                 region.clear_sync_position ();
2668                 session->add_redo_no_execute (region.playlist()->get_memento());
2669                 commit_reversible_command ();
2670         }
2671 }
2672
2673 void
2674 Editor::naturalize ()
2675 {
2676         if (selection->audio_regions.empty()) {
2677                 return;
2678         }
2679         begin_reversible_command (_("naturalize"));
2680         for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
2681                 session->add_undo ((*i)->region.get_memento());
2682                 (*i)->region.move_to_natural_position (this);
2683                 session->add_redo_no_execute ((*i)->region.get_memento());
2684         }
2685         commit_reversible_command ();
2686 }
2687
2688 void
2689 Editor::align (RegionPoint what)
2690 {
2691         align_selection (what, edit_cursor->current_frame);
2692 }
2693
2694 void
2695 Editor::align_relative (RegionPoint what)
2696 {
2697         align_selection_relative (what, edit_cursor->current_frame);
2698 }
2699
2700 struct RegionSortByTime {
2701     bool operator() (const AudioRegionView* a, const AudioRegionView* b) {
2702             return a->region.position() < b->region.position();
2703     }
2704 };
2705
2706 void
2707 Editor::align_selection_relative (RegionPoint point, jack_nframes_t position)
2708 {
2709         if (selection->audio_regions.empty()) {
2710                 return;
2711         }
2712
2713         jack_nframes_t distance;
2714         jack_nframes_t pos = 0;
2715         int dir;
2716
2717         list<AudioRegionView*> sorted;
2718         selection->audio_regions.by_position (sorted);
2719         Region& r ((*sorted.begin())->region);
2720
2721         switch (point) {
2722         case Start:
2723                 pos = r.first_frame ();
2724                 break;
2725
2726         case End:
2727                 pos = r.last_frame();
2728                 break;
2729
2730         case SyncPoint:
2731                 pos = r.adjust_to_sync (r.first_frame());
2732                 break;  
2733         }
2734
2735         if (pos > position) {
2736                 distance = pos - position;
2737                 dir = -1;
2738         } else {
2739                 distance = position - pos;
2740                 dir = 1;
2741         }
2742
2743         begin_reversible_command (_("align selection (relative)"));
2744
2745         for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
2746
2747                 Region& region ((*i)->region);
2748
2749                 session->add_undo (region.playlist()->get_memento());
2750                 
2751                 if (dir > 0) {
2752                         region.set_position (region.position() + distance, this);
2753                 } else {
2754                         region.set_position (region.position() - distance, this);
2755                 }
2756
2757                 session->add_redo_no_execute (region.playlist()->get_memento());
2758
2759         }
2760
2761         commit_reversible_command ();
2762 }
2763
2764 void
2765 Editor::align_selection (RegionPoint point, jack_nframes_t position)
2766 {
2767         if (selection->audio_regions.empty()) {
2768                 return;
2769         }
2770
2771         begin_reversible_command (_("align selection"));
2772
2773         for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
2774                 align_region_internal ((*i)->region, point, position);
2775         }
2776
2777         commit_reversible_command ();
2778 }
2779
2780 void
2781 Editor::align_region (Region& region, RegionPoint point, jack_nframes_t position)
2782 {
2783         begin_reversible_command (_("align region"));
2784         align_region_internal (region, point, position);
2785         commit_reversible_command ();
2786 }
2787
2788 void
2789 Editor::align_region_internal (Region& region, RegionPoint point, jack_nframes_t position)
2790 {
2791         session->add_undo (region.playlist()->get_memento());
2792
2793         switch (point) {
2794         case SyncPoint:
2795                 region.set_position (region.adjust_to_sync (position), this);
2796                 break;
2797
2798         case End:
2799                 if (position > region.length()) {
2800                         region.set_position (position - region.length(), this);
2801                 }
2802                 break;
2803
2804         case Start:
2805                 region.set_position (position, this);
2806                 break;
2807         }
2808
2809         session->add_redo_no_execute (region.playlist()->get_memento());
2810 }       
2811
2812 void
2813 Editor::trim_region_to_edit_cursor ()
2814 {
2815         if (clicked_regionview == 0) {
2816                 return;
2817         }
2818
2819         Region& region (clicked_regionview->region);
2820
2821         float speed = 1.0f;
2822         AudioTimeAxisView *atav;
2823
2824         if ( clicked_trackview != 0 && (atav = dynamic_cast<AudioTimeAxisView*>(clicked_trackview)) != 0 ) {
2825                 if (atav->get_diskstream() != 0) {
2826                         speed = atav->get_diskstream()->speed();
2827                 }
2828         }
2829
2830         begin_reversible_command (_("trim to edit"));
2831         session->add_undo (region.playlist()->get_memento());
2832         region.trim_end ( (jack_nframes_t) floor( (float)edit_cursor->current_frame * speed), this);
2833         session->add_redo_no_execute (region.playlist()->get_memento());
2834         commit_reversible_command ();
2835 }
2836
2837 void
2838 Editor::trim_region_from_edit_cursor ()
2839 {
2840         if (clicked_regionview == 0) {
2841                 return;
2842         }
2843
2844         Region& region (clicked_regionview->region);
2845
2846         float speed = 1.0f;
2847         AudioTimeAxisView *atav;
2848
2849         if ( clicked_trackview != 0 && (atav = dynamic_cast<AudioTimeAxisView*>(clicked_trackview)) != 0 ) {
2850                 if (atav->get_diskstream() != 0) {
2851                         speed = atav->get_diskstream()->speed();
2852                 }
2853         }
2854
2855         begin_reversible_command (_("trim to edit"));
2856         session->add_undo (region.playlist()->get_memento());
2857         region.trim_front ( (jack_nframes_t) floor( (float)edit_cursor->current_frame * speed), this);
2858         session->add_redo_no_execute (region.playlist()->get_memento());
2859         commit_reversible_command ();
2860 }
2861
2862 void
2863 Editor::unfreeze_route ()
2864 {
2865         if (clicked_audio_trackview == 0 || !clicked_audio_trackview->is_audio_track()) {
2866                 return;
2867         }
2868         
2869         clicked_audio_trackview->audio_track()->unfreeze ();
2870 }
2871
2872 void*
2873 Editor::_freeze_thread (void* arg)
2874 {
2875         PBD::ThreadCreated (pthread_self(), X_("Freeze"));
2876         return static_cast<Editor*>(arg)->freeze_thread ();
2877 }
2878
2879 void*
2880 Editor::freeze_thread ()
2881 {
2882         clicked_audio_trackview->audio_track()->freeze (*current_interthread_info);
2883         return 0;
2884 }
2885
2886 gint
2887 Editor::freeze_progress_timeout (void *arg)
2888 {
2889         interthread_progress_bar.set_fraction (current_interthread_info->progress/100);
2890         return !(current_interthread_info->done || current_interthread_info->cancel);
2891 }
2892
2893 void
2894 Editor::freeze_route ()
2895 {
2896         if (clicked_audio_trackview == 0 || !clicked_audio_trackview->is_audio_track()) {
2897                 return;
2898         }
2899         
2900         InterThreadInfo itt;
2901
2902         if (interthread_progress_window == 0) {
2903                 build_interthread_progress_window ();
2904         }
2905         
2906         interthread_progress_window->set_title (_("ardour: freeze"));
2907         interthread_progress_window->set_position (Gtk::WIN_POS_MOUSE);
2908         interthread_progress_window->show_all ();
2909         interthread_progress_bar.set_percentage (0.0f);
2910         interthread_progress_label.set_text ("");
2911         interthread_cancel_label.set_text (_("Cancel Freeze"));
2912         current_interthread_info = &itt;
2913
2914         interthread_progress_connection = 
2915           Glib::signal_timeout().connect (bind (mem_fun(*this, &Editor::freeze_progress_timeout), (gpointer) 0), 100);
2916
2917         itt.done = false;
2918         itt.cancel = false;
2919         itt.progress = 0.0f;
2920
2921         pthread_create (&itt.thread, 0, _freeze_thread, this);
2922
2923         track_canvas_scroller.get_window()->set_cursor (GDK_WATCH);
2924
2925         while (!itt.done && !itt.cancel) {
2926                 gtk_main_iteration ();
2927         }
2928
2929         interthread_progress_connection.disconnect ();
2930         interthread_progress_window->hide_all ();
2931         current_interthread_info = 0;
2932         track_canvas_scroller.get_window()->set_cursor (current_canvas_cursor);
2933 }
2934
2935 void
2936 Editor::bounce_range_selection ()
2937 {
2938         if (selection->time.empty()) {
2939                 return;
2940         }
2941
2942         TrackViewList *views = get_valid_views (selection->time.track, selection->time.group);
2943
2944         jack_nframes_t start = selection->time[clicked_selection].start;
2945         jack_nframes_t end = selection->time[clicked_selection].end;
2946         jack_nframes_t cnt = end - start + 1;
2947         
2948         begin_reversible_command (_("bounce range"));
2949
2950         for (TrackViewList::iterator i = views->begin(); i != views->end(); ++i) {
2951
2952                 AudioTimeAxisView* atv;
2953
2954                 if ((atv = dynamic_cast<AudioTimeAxisView*> (*i)) == 0) {
2955                         continue;
2956                 }
2957                 
2958                 Playlist* playlist;
2959                 
2960                 if ((playlist = atv->playlist()) == 0) {
2961                         return;
2962                 }
2963
2964                 InterThreadInfo itt;
2965                 
2966                 itt.done = false;
2967                 itt.cancel = false;
2968                 itt.progress = false;
2969                 
2970                 session->add_undo (playlist->get_memento());
2971                 atv->audio_track()->bounce_range (start, cnt, itt);
2972                 session->add_redo_no_execute (playlist->get_memento());
2973         }
2974         
2975         commit_reversible_command ();
2976         
2977         delete views;
2978 }
2979
2980 void
2981 Editor::cut ()
2982 {
2983         cut_copy (Cut);
2984 }
2985
2986 void
2987 Editor::copy ()
2988 {
2989         cut_copy (Copy);
2990 }
2991
2992 void 
2993 Editor::cut_copy (CutCopyOp op)
2994 {
2995         /* only cancel selection if cut/copy is successful.*/
2996
2997         string opname;
2998
2999         switch (op) {
3000         case Cut:
3001                 opname = _("cut");
3002                 break;
3003         case Copy:
3004                 opname = _("copy");
3005                 break;
3006         case Clear:
3007                 opname = _("clear");
3008                 break;
3009         }
3010         
3011         cut_buffer->clear ();
3012
3013         switch (current_mouse_mode()) {
3014         case MouseObject: 
3015                 if (!selection->audio_regions.empty() || !selection->points.empty()) {
3016
3017                         begin_reversible_command (opname + _(" objects"));
3018
3019                         if (!selection->audio_regions.empty()) {
3020                                 
3021                                 cut_copy_regions (op);
3022                                 
3023                                 if (op == Cut) {
3024                                         selection->clear_audio_regions ();
3025                                 }
3026                         }
3027
3028                         if (!selection->points.empty()) {
3029                                 cut_copy_points (op);
3030
3031                                 if (op == Cut) {
3032                                         selection->clear_points ();
3033                                 }
3034                         }
3035
3036                         commit_reversible_command ();   
3037                 }
3038                 break;
3039                 
3040         case MouseRange:
3041                 if (!selection->time.empty()) {
3042
3043                         begin_reversible_command (opname + _(" range"));
3044                         cut_copy_ranges (op);
3045                         commit_reversible_command ();
3046
3047                         if (op == Cut) {
3048                                 selection->clear_time ();
3049                         }
3050                         
3051                 }
3052                 break;
3053                 
3054         default:
3055                 break;
3056         }
3057 }
3058
3059 void
3060 Editor::cut_copy_points (CutCopyOp op)
3061 {
3062         for (PointSelection::iterator i = selection->points.begin(); i != selection->points.end(); ++i) {
3063
3064                 AutomationTimeAxisView* atv = dynamic_cast<AutomationTimeAxisView*>(&(*i).track);
3065
3066                 if (atv) {
3067                         atv->cut_copy_clear_objects (selection->points, op);
3068                 } 
3069         }
3070 }
3071
3072 void
3073 Editor::cut_copy_regions (CutCopyOp op)
3074 {
3075         typedef map<AudioPlaylist*,AudioPlaylist*> PlaylistMapping;
3076         PlaylistMapping pmap;
3077         jack_nframes_t first_position = max_frames;
3078         set<Playlist*> freezelist;
3079         pair<set<Playlist*>::iterator,bool> insert_result;
3080
3081         for (AudioRegionSelection::iterator x = selection->audio_regions.begin(); x != selection->audio_regions.end(); ++x) {
3082                 first_position = min ((*x)->region.position(), first_position);
3083
3084                 if (op == Cut || op == Clear) {
3085                         AudioPlaylist *pl = dynamic_cast<AudioPlaylist*>((*x)->region.playlist());
3086                         if (pl) {
3087                                 insert_result = freezelist.insert (pl);
3088                                 if (insert_result.second) {
3089                                         pl->freeze ();
3090                                         session->add_undo (pl->get_memento());
3091                                 }
3092                         }
3093                 }
3094         }
3095
3096         for (AudioRegionSelection::iterator x = selection->audio_regions.begin(); x != selection->audio_regions.end(); ) {
3097
3098                 AudioPlaylist *pl = dynamic_cast<AudioPlaylist*>((*x)->region.playlist());
3099                 AudioPlaylist* npl;
3100                 AudioRegionSelection::iterator tmp;
3101                 
3102                 tmp = x;
3103                 ++tmp;
3104
3105                 if (pl) {
3106
3107                         PlaylistMapping::iterator pi = pmap.find (pl);
3108                         
3109                         if (pi == pmap.end()) {
3110                                 npl = new AudioPlaylist (*session, "cutlist", true);
3111                                 npl->freeze();
3112                                 pmap[pl] = npl;
3113                         } else {
3114                                 npl = pi->second;
3115                         }
3116
3117                         switch (op) {
3118                         case Cut:
3119                                 npl->add_region (*(new AudioRegion ((*x)->region)), (*x)->region.position() - first_position);
3120                                 pl->remove_region (&((*x)->region));
3121                                 break;
3122
3123                         case Copy:
3124                                 npl->add_region (*(new AudioRegion ((*x)->region)), (*x)->region.position() - first_position);
3125                                 break;
3126
3127                         case Clear:
3128                                 pl->remove_region (&((*x)->region));
3129                                 break;
3130                         }
3131                 }
3132
3133                 x = tmp;
3134         }
3135
3136         list<Playlist*> foo;
3137
3138         for (PlaylistMapping::iterator i = pmap.begin(); i != pmap.end(); ++i) {
3139                 foo.push_back (i->second);
3140         }
3141
3142         if (!foo.empty()) {
3143                 cut_buffer->set (foo);
3144         }
3145         
3146         for (set<Playlist*>::iterator pl = freezelist.begin(); pl != freezelist.end(); ++pl) {
3147                 (*pl)->thaw ();
3148                 session->add_redo_no_execute ((*pl)->get_memento());
3149         }
3150 }
3151
3152 void
3153 Editor::cut_copy_ranges (CutCopyOp op)
3154 {
3155         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
3156                 (*i)->cut_copy_clear (*selection, op);
3157         }
3158 }
3159
3160 void
3161 Editor::paste (float times)
3162 {
3163         paste_internal (edit_cursor->current_frame, times);
3164 }
3165
3166 void
3167 Editor::mouse_paste ()
3168 {
3169         gint x, y;
3170         double wx, wy;
3171         track_canvas->get_pointer (x, y);
3172
3173         gnome_canvas_window_to_world (GNOME_CANVAS(track_gnome_canvas), x, y, &wx, &wy);
3174         
3175         GdkEvent event;
3176         event.type = GDK_BUTTON_RELEASE;
3177         event.button.x = wx;
3178         event.button.y = wy;
3179         
3180         jack_nframes_t where = event_frame (&event, 0, 0);
3181         snap_to (where);
3182         paste_internal (where, 1);
3183 }
3184
3185 void
3186 Editor::paste_internal (jack_nframes_t position, float times)
3187 {
3188         bool commit = false;
3189
3190         if (cut_buffer->empty() || selection->tracks.empty()) {
3191                 return;
3192         }
3193
3194         if (position == max_frames) {
3195                 position = edit_cursor->current_frame;
3196         }
3197
3198         begin_reversible_command (_("paste"));
3199
3200         TrackSelection::iterator i;
3201         size_t nth;
3202
3203         for (nth = 0, i = selection->tracks.begin(); i != selection->tracks.end(); ++i, ++nth) {
3204                 
3205                 /* undo/redo is handled by individual tracks */
3206
3207                 if ((*i)->paste (position, times, *cut_buffer, nth)) {
3208                         commit = true;
3209                 }
3210         }
3211
3212         if (commit) {
3213                 commit_reversible_command ();
3214         }
3215 }
3216
3217 void
3218 Editor::paste_named_selection (float times)
3219 {
3220         Gtk::CList_Helpers::SelectionList& selected = named_selection_display.selection();
3221         TrackSelection::iterator i;
3222
3223         if (selected.empty() || selection->tracks.empty()) {
3224                 return;
3225         }
3226
3227         NamedSelection* ns = static_cast<NamedSelection*> (selected.front()->get_data ());
3228         list<Playlist*>::iterator chunk;
3229         list<Playlist*>::iterator tmp;
3230
3231         chunk = ns->playlists.begin();
3232                 
3233         begin_reversible_command (_("paste chunk"));
3234
3235         for (i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
3236                 
3237                 AudioTimeAxisView* atv;
3238                 Playlist* pl;
3239                 AudioPlaylist* apl;
3240
3241                 if ((atv = dynamic_cast<AudioTimeAxisView*> (*i)) == 0) {
3242                         continue;
3243                 }
3244
3245                 if ((pl = atv->playlist()) == 0) {
3246                         continue;
3247                 }
3248
3249                 if ((apl = dynamic_cast<AudioPlaylist*> (pl)) == 0) {
3250                         continue;
3251                 }
3252
3253                 tmp = chunk;
3254                 ++tmp;
3255
3256                 session->add_undo (apl->get_memento());
3257                 apl->paste (**chunk, edit_cursor->current_frame, times);
3258                 session->add_redo_no_execute (apl->get_memento());
3259
3260                 if (tmp != ns->playlists.end()) {
3261                         chunk = tmp;
3262                 }
3263         }
3264
3265         commit_reversible_command();
3266 }
3267
3268 void
3269 Editor::duplicate_some_regions (AudioRegionSelection& regions, float times)
3270 {
3271         Playlist *playlist; 
3272         
3273         begin_reversible_command (_("duplicate region"));
3274
3275         for (AudioRegionSelection::iterator i = regions.begin(); i != regions.end(); ++i) {
3276
3277                 Region& r ((*i)->region);
3278                 
3279                 playlist = (*i)->region.playlist();
3280                 session->add_undo (playlist->get_memento());
3281                 playlist->duplicate (r, r.last_frame(), times);
3282                 session->add_redo_no_execute (playlist->get_memento());
3283
3284         }
3285
3286         commit_reversible_command ();
3287 }
3288
3289 void
3290 Editor::duplicate_selection (float times)
3291 {
3292         if (selection->time.empty() || selection->tracks.empty()) {
3293                 return;
3294         }
3295
3296         Playlist *playlist; 
3297         vector<AudioRegion*> new_regions;
3298         vector<AudioRegion*>::iterator ri;
3299                 
3300         create_region_from_selection (new_regions);
3301
3302         if (new_regions.empty()) {
3303                 return;
3304         }
3305         
3306         begin_reversible_command (_("duplicate selection"));
3307
3308         ri = new_regions.begin();
3309
3310         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
3311                 if ((playlist = (*i)->playlist()) == 0) {
3312                         continue;
3313                 }
3314                 session->add_undo (playlist->get_memento());
3315                 playlist->duplicate (**ri, selection->time[clicked_selection].end, times);
3316                 session->add_redo_no_execute (playlist->get_memento());
3317
3318                 ++ri;
3319                 if (ri == new_regions.end()) {
3320                         --ri;
3321                 }
3322         }
3323
3324         commit_reversible_command ();
3325 }
3326
3327 void
3328 Editor::center_playhead ()
3329 {
3330         float page = canvas_width * frames_per_unit;
3331
3332         center_screen_internal (playhead_cursor->current_frame, page);
3333 }
3334
3335 void
3336 Editor::center_edit_cursor ()
3337 {
3338         float page = canvas_width * frames_per_unit;
3339
3340         center_screen_internal (edit_cursor->current_frame, page);
3341 }
3342
3343 void
3344 Editor::clear_playlist (Playlist& playlist)
3345 {
3346         begin_reversible_command (_("clear playlist"));
3347         session->add_undo (playlist.get_memento());
3348         playlist.clear ();
3349         session->add_redo_no_execute (playlist.get_memento());
3350         commit_reversible_command ();
3351 }
3352
3353 void
3354 Editor::nudge_track (bool use_edit_cursor, bool forwards)
3355 {
3356         Playlist *playlist; 
3357         jack_nframes_t distance;
3358         jack_nframes_t next_distance;
3359         jack_nframes_t start;
3360
3361         if (use_edit_cursor) {
3362                 start = edit_cursor->current_frame;
3363         } else {
3364                 start = 0;
3365         }
3366
3367         if ((distance = get_nudge_distance (start, next_distance)) == 0) {
3368                 return;
3369         }
3370         
3371         if (selection->tracks.empty()) {
3372                 return;
3373         }
3374         
3375         begin_reversible_command (_("nudge track"));
3376         
3377         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
3378
3379                 if ((playlist = (*i)->playlist()) == 0) {
3380                         continue;
3381                 }               
3382                 
3383                 session->add_undo (playlist->get_memento());
3384                 playlist->nudge_after (start, distance, forwards);
3385                 session->add_redo_no_execute (playlist->get_memento());
3386         }
3387         
3388         commit_reversible_command ();                   
3389 }
3390
3391 void
3392 Editor::toggle_xfades_active ()
3393 {
3394         if (session) {
3395                 session->set_crossfades_active (!session->get_crossfades_active());
3396         }
3397 }
3398
3399 void
3400 Editor::toggle_follow_playhead ()
3401 {
3402         set_follow_playhead (!_follow_playhead);
3403 }
3404
3405 void
3406 Editor::set_xfade_visibility (bool yn)
3407 {
3408         
3409 }
3410
3411 void
3412 Editor::toggle_xfade_visibility ()
3413 {
3414         set_xfade_visibility (!xfade_visibility());
3415 }
3416
3417 void
3418 Editor::remove_last_capture ()
3419 {
3420         vector<string> choices;
3421         string prompt;
3422         
3423         if (!session) {
3424                 return;
3425         }
3426
3427         if (Config->get_verify_remove_last_capture()) {
3428                 prompt  = _("Do you really want to destroy the last capture?"
3429                             "\n(This is destructive and cannot be undone)");
3430
3431                 choices.push_back (_("Yes, destroy it."));
3432                 choices.push_back (_("No, do nothing."));
3433
3434                 Gtkmm2ext::Choice prompter (prompt, choices);
3435
3436                 prompter.chosen.connect (Gtk::Main::quit.slot());
3437                 prompter.show_all ();
3438
3439                 Gtk::Main::run ();
3440
3441                 if (prompter.get_choice() == 0) {
3442                         session->remove_last_capture ();
3443                 }
3444         } else {
3445                 session->remove_last_capture();
3446         }
3447 }
3448
3449 void
3450 Editor::normalize_region ()
3451 {
3452         if (!session) {
3453                 return;
3454         }
3455
3456         if (selection->audio_regions.empty()) {
3457                 return;
3458         }
3459
3460         begin_reversible_command (_("normalize"));
3461
3462         track_canvas_scroller.get_window()->set_cursor (wait_cursor);
3463         gdk_flush ();
3464
3465         for (AudioRegionSelection::iterator r = selection->audio_regions.begin(); r != selection->audio_regions.end(); ++r) {
3466                 session->add_undo ((*r)->region.get_memento());
3467                 (*r)->region.normalize_to (0.0f);
3468                 session->add_redo_no_execute ((*r)->region.get_memento());
3469         }
3470
3471         commit_reversible_command ();
3472         gdk_window_set_cursor (track_canvas_scroller.get_window()->gobj(), current_canvas_cursor);
3473 }
3474
3475
3476 void
3477 Editor::denormalize_region ()
3478 {
3479         if (!session) {
3480                 return;
3481         }
3482
3483         if (selection->audio_regions.empty()) {
3484                 return;
3485         }
3486
3487         begin_reversible_command ("denormalize");
3488
3489         for (AudioRegionSelection::iterator r = selection->audio_regions.begin(); r != selection->audio_regions.end(); ++r) {
3490                 session->add_undo ((*r)->region.get_memento());
3491                 (*r)->region.set_scale_amplitude (1.0f);
3492                 session->add_redo_no_execute ((*r)->region.get_memento());
3493         }
3494
3495         commit_reversible_command ();
3496 }
3497
3498
3499 void
3500 Editor::reverse_region ()
3501 {
3502         if (!session) {
3503                 return;
3504         }
3505
3506         Reverse rev (*session);
3507         apply_filter (rev, _("reverse regions"));
3508 }
3509
3510 void
3511 Editor::apply_filter (AudioFilter& filter, string command)
3512 {
3513         if (selection->audio_regions.empty()) {
3514                 return;
3515         }
3516
3517         begin_reversible_command (command);
3518
3519         track_canvas_scroller.get_window()->set_cursor (wait_cursor);
3520         gdk_flush ();
3521
3522         for (AudioRegionSelection::iterator r = selection->audio_regions.begin(); r != selection->audio_regions.end(); ) {
3523
3524                 AudioRegion& region ((*r)->region);
3525                 Playlist* playlist = region.playlist();
3526
3527                 AudioRegionSelection::iterator tmp;
3528                 
3529                 tmp = r;
3530                 ++tmp;
3531
3532                 if (region.apply (filter) == 0) {
3533
3534                         session->add_undo (playlist->get_memento());
3535                         playlist->replace_region (region, *(filter.results.front()), region.position());
3536                         session->add_redo_no_execute (playlist->get_memento());
3537                 } else {
3538                         goto out;
3539                 }
3540
3541                 r = tmp;
3542         }
3543
3544         commit_reversible_command ();
3545         selection->audio_regions.clear ();
3546
3547   out:
3548         gdk_window_set_cursor (track_canvas_scroller.get_window()->gobj(), current_canvas_cursor);
3549 }
3550
3551 void
3552 Editor::region_selection_op (void (Region::*pmf)(void))
3553 {
3554         for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
3555                 ((*i)->region.*pmf)();
3556         }
3557 }
3558
3559
3560 void
3561 Editor::region_selection_op (void (Region::*pmf)(void*), void *arg)
3562 {
3563         for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
3564                 ((*i)->region.*pmf)(arg);
3565         }
3566 }
3567
3568 void
3569 Editor::region_selection_op (void (Region::*pmf)(bool), bool yn)
3570 {
3571         for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
3572                 ((*i)->region.*pmf)(yn);
3573         }
3574 }
3575
3576 void
3577 Editor::external_edit_region ()
3578 {
3579         if (!clicked_regionview) {
3580                 return;
3581         }
3582
3583         /* more to come */
3584 }
3585
3586 void
3587 Editor::brush (jack_nframes_t pos)
3588 {
3589         AudioRegionSelection sel;
3590         snap_to (pos);
3591
3592         if (selection->audio_regions.empty()) {
3593                 /* XXX get selection from region list */
3594         } else { 
3595                 sel = selection->audio_regions;
3596         }
3597
3598         if (sel.empty()) {
3599                 return;
3600         }
3601
3602         for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
3603                 mouse_brush_insert_region ((*i), pos);
3604         }
3605 }
3606
3607 void
3608 Editor::toggle_gain_envelope_visibility ()
3609 {
3610         for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
3611                 (*i)->set_envelope_visible (!(*i)->envelope_visible());
3612         }
3613 }
3614
3615 void
3616 Editor::toggle_gain_envelope_active ()
3617 {
3618         for (AudioRegionSelection::iterator i = selection->audio_regions.begin(); i != selection->audio_regions.end(); ++i) {
3619                 AudioRegion* ar = dynamic_cast<AudioRegion*>(&(*i)->region);
3620                 if (ar) {
3621                         ar->set_envelope_active (true);
3622                 }
3623         }
3624 }