Merge branch 'master' into cairocanvas
[ardour.git] / gtk2_ardour / region_view.cc
1 /*
2     Copyright (C) 2001-2006 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <cmath>
21 #include <cassert>
22 #include <algorithm>
23
24 #include <gtkmm.h>
25
26 #include <gtkmm2ext/gtk_ui.h>
27
28 #include "ardour/playlist.h"
29 #include "ardour/session.h"
30
31 #include "canvas/polygon.h"
32 #include "canvas/debug.h"
33 #include "canvas/pixbuf.h"
34 #include "canvas/text.h"
35 #include "canvas/line.h"
36
37 #include "ardour_ui.h"
38 #include "global_signals.h"
39 #include "streamview.h"
40 #include "region_view.h"
41 #include "automation_region_view.h"
42 #include "route_time_axis.h"
43 #include "public_editor.h"
44 #include "region_editor.h"
45 #include "ghostregion.h"
46 #include "route_time_axis.h"
47 #include "ui_config.h"
48 #include "utils.h"
49 #include "rgb_macros.h"
50 #include "gui_thread.h"
51
52 #include "i18n.h"
53
54 using namespace std;
55 using namespace ARDOUR;
56 using namespace PBD;
57 using namespace Editing;
58 using namespace Gtk;
59 using namespace ArdourCanvas;
60
61 static const int32_t sync_mark_width = 9;
62
63 PBD::Signal1<void,RegionView*> RegionView::RegionViewGoingAway;
64
65 RegionView::RegionView (ArdourCanvas::Group*              parent,
66                         TimeAxisView&                     tv,
67                         boost::shared_ptr<ARDOUR::Region> r,
68                         double                            spu,
69                         Gdk::Color const &                basic_color,
70                         bool                              automation)
71         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), false, automation,
72                             (automation ? TimeAxisViewItem::ShowFrame :
73                              TimeAxisViewItem::Visibility (TimeAxisViewItem::ShowNameText|
74                                                            TimeAxisViewItem::ShowNameHighlight| TimeAxisViewItem::ShowFrame)))
75         , _region (r)
76         , sync_mark(0)
77         , sync_line(0)
78         , editor(0)
79         , current_visible_sync_position(0.0)
80         , valid(false)
81         , _enable_display(false)
82         , _pixel_width(1.0)
83         , in_destructor(false)
84         , wait_for_data(false)
85         , _silence_text (0)
86         , _region_relative_time_converter(r->session().tempo_map(), r->position())
87         , _source_relative_time_converter(r->session().tempo_map(), r->position() - r->start())
88 {
89         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
90 }
91
92 RegionView::RegionView (const RegionView& other)
93         : sigc::trackable(other)
94         , TimeAxisViewItem (other)
95         , _silence_text (0)
96         , _region_relative_time_converter(other.region_relative_time_converter())
97         , _source_relative_time_converter(other.source_relative_time_converter())
98 {
99         /* derived concrete type will call init () */
100
101         _region = other._region;
102         current_visible_sync_position = other.current_visible_sync_position;
103         valid = false;
104         _pixel_width = other._pixel_width;
105
106         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
107 }
108
109 RegionView::RegionView (const RegionView& other, boost::shared_ptr<Region> other_region)
110         : sigc::trackable(other)
111         , TimeAxisViewItem (other)
112         , _silence_text (0)
113         , _region_relative_time_converter(other_region->session().tempo_map(), other_region->position())
114         , _source_relative_time_converter(other_region->session().tempo_map(), other_region->position() - other_region->start())
115 {
116         /* this is a pseudo-copy constructor used when dragging regions
117            around on the canvas.
118         */
119
120         /* derived concrete type will call init () */
121
122         _region = other_region;
123         current_visible_sync_position = other.current_visible_sync_position;
124         valid = false;
125         _pixel_width = other._pixel_width;
126
127         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
128 }
129
130 RegionView::RegionView (ArdourCanvas::Group*         parent,
131                         TimeAxisView&                tv,
132                         boost::shared_ptr<ARDOUR::Region> r,
133                         double                       spu,
134                         Gdk::Color const &           basic_color,
135                         bool                         recording,
136                         TimeAxisViewItem::Visibility visibility)
137         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), recording, false, visibility)
138         , _region (r)
139         , sync_mark(0)
140         , sync_line(0)
141         , editor(0)
142         , current_visible_sync_position(0.0)
143         , valid(false)
144         , _enable_display(false)
145         , _pixel_width(1.0)
146         , in_destructor(false)
147         , wait_for_data(false)
148         , _silence_text (0)
149         , _region_relative_time_converter(r->session().tempo_map(), r->position())
150         , _source_relative_time_converter(r->session().tempo_map(), r->position() - r->start())
151 {
152 }
153
154 void
155 RegionView::init (Gdk::Color const & basic_color, bool wfd)
156 {
157         editor        = 0;
158         valid         = true;
159         in_destructor = false;
160         wait_for_data = wfd;
161         sync_mark     = 0;
162         sync_line     = 0;
163         sync_mark     = 0;
164         sync_line     = 0;
165
166         compute_colors (basic_color);
167
168         if (name_highlight) {
169                 name_highlight->set_data ("regionview", this);
170                 name_highlight->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_name_highlight_event), name_highlight, this));
171
172                 if (frame_handle_start) {
173                         frame_handle_start->set_data ("regionview", this);
174                         frame_handle_start->set_data ("isleft", (void*) 1);
175                         frame_handle_start->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_start, this));
176                         frame_handle_start->raise_to_top();
177                 }
178
179                 if (frame_handle_end) {
180                         frame_handle_end->set_data ("regionview", this);
181                         frame_handle_end->set_data ("isleft", (void*) 0);
182                         frame_handle_end->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_end, this));
183                         frame_handle_end->raise_to_top();
184                 }
185         }
186
187         if (name_text) {
188                 name_text->set_data ("regionview", this);
189                 name_text->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_name_event), name_text, this));
190         }
191
192         if (wfd) {
193                 _enable_display = true;
194         }
195
196         set_height (trackview.current_height());
197
198         _region->PropertyChanged.connect (*this, invalidator (*this), boost::bind (&RegionView::region_changed, this, _1), gui_context());
199
200         set_colors ();
201
202         ColorsChanged.connect (sigc::mem_fun (*this, &RegionView::color_handler));
203
204         /* XXX sync mark drag? */
205 }
206
207 RegionView::~RegionView ()
208 {
209         in_destructor = true;
210
211         for (vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
212                 delete *g;
213         }
214
215         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
216                 delete *i;
217         }
218
219         drop_silent_frames ();
220
221         delete editor;
222 }
223
224 bool
225 RegionView::canvas_group_event (GdkEvent* event)
226 {
227         return trackview.editor().canvas_region_view_event (event, group, this);
228 }
229
230 void
231 RegionView::set_silent_frames (const AudioIntervalResult& silences, double /*threshold*/)
232 {
233         framecnt_t shortest = max_framecnt;
234
235         /* remove old silent frames */
236         drop_silent_frames ();
237
238         if (silences.empty()) {
239                 return;
240         }
241
242         uint32_t const color = ARDOUR_UI::config()->get_canvasvar_Silence();
243
244         for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
245
246                 ArdourCanvas::Rectangle* cr = new ArdourCanvas::Rectangle (group);
247                 cr->set_ignore_events (true);
248                 _silent_frames.push_back (cr);
249
250                 /* coordinates for the rect are relative to the regionview origin */
251
252                 cr->set_x0 (trackview.editor().sample_to_pixel (i->first - _region->start()));
253                 cr->set_x1 (trackview.editor().sample_to_pixel (i->second - _region->start()));
254                 cr->set_y0 (1);
255                 cr->set_y1 (_height - 2);
256                 cr->set_outline (false);
257                 cr->set_fill_color (color);
258
259                 shortest = min (shortest, i->second - i->first);
260         }
261
262         /* Find shortest audible segment */
263         framecnt_t shortest_audible = max_framecnt;
264
265         framecnt_t s = _region->start();
266         for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
267                 framecnt_t const dur = i->first - s;
268                 if (dur > 0) {
269                         shortest_audible = min (shortest_audible, dur);
270                 }
271
272                 s = i->second;
273         }
274
275         framecnt_t const dur = _region->start() + _region->length() - 1 - s;
276         if (dur > 0) {
277                 shortest_audible = min (shortest_audible, dur);
278         }
279
280         _silence_text = new ArdourCanvas::Text (group);
281         _silence_text->set_ignore_events (true);
282         _silence_text->set_font_description (get_font_for_style (N_("SilenceText")));
283         _silence_text->set_color (ARDOUR_UI::config()->get_canvasvar_SilenceText());
284
285         /* both positions are relative to the region start offset in source */
286
287         _silence_text->set_x_position (trackview.editor().sample_to_pixel (silences.front().first - _region->start()) + 10.0);
288         _silence_text->set_y_position (20.0);
289
290         double ms = (float) shortest/_region->session().frame_rate();
291
292         /* ms are now in seconds */
293
294         char const * sunits;
295
296         if (ms >= 60.0) {
297                 sunits = _("minutes");
298                 ms /= 60.0;
299         } else if (ms < 1.0) {
300                 sunits = _("msecs");
301                 ms *= 1000.0;
302         } else {
303                 sunits = _("secs");
304         }
305
306         string text = string_compose (ngettext ("%1 silent segment", "%1 silent segments", silences.size()), silences.size())
307                 + ", "
308                 + string_compose (_("shortest = %1 %2"), ms, sunits);
309
310         if (shortest_audible != max_framepos) {
311                 /* ms are now in seconds */
312                 double ma = (float) shortest_audible / _region->session().frame_rate();
313                 char const * aunits;
314
315                 if (ma >= 60.0) {
316                         aunits = _("minutes");
317                         ma /= 60.0;
318                 } else if (ma < 1.0) {
319                         aunits = _("msecs");
320                         ma *= 1000.0;
321                 } else {
322                         aunits = _("secs");
323                 }
324
325                 text += string_compose (_("\n  (shortest audible segment = %1 %2)"), ma, aunits);
326         }
327
328         _silence_text->set (text);
329 }
330
331 void
332 RegionView::hide_silent_frames ()
333 {
334         for (list<ArdourCanvas::Rectangle*>::iterator i = _silent_frames.begin (); i != _silent_frames.end (); ++i) {
335                 (*i)->hide ();
336         }
337         _silence_text->hide();
338 }
339
340 void
341 RegionView::drop_silent_frames ()
342 {
343         for (list<ArdourCanvas::Rectangle*>::iterator i = _silent_frames.begin (); i != _silent_frames.end (); ++i) {
344                 delete *i;
345         }
346         _silent_frames.clear ();
347
348         delete _silence_text;
349         _silence_text = 0;
350 }
351
352 gint
353 RegionView::_lock_toggle (ArdourCanvas::Item*, GdkEvent* ev, void* arg)
354 {
355         switch (ev->type) {
356         case GDK_BUTTON_RELEASE:
357                 static_cast<RegionView*>(arg)->lock_toggle ();
358                 return TRUE;
359                 break;
360         default:
361                 break;
362         }
363         return FALSE;
364 }
365
366 void
367 RegionView::lock_toggle ()
368 {
369         _region->set_locked (!_region->locked());
370 }
371
372 void
373 RegionView::region_changed (const PropertyChange& what_changed)
374 {
375         ENSURE_GUI_THREAD (*this, &RegionView::region_changed, what_changed);
376
377         if (what_changed.contains (ARDOUR::bounds_change)) {
378                 region_resized (what_changed);
379                 region_sync_changed ();
380         }
381         if (what_changed.contains (ARDOUR::Properties::muted)) {
382                 region_muted ();
383         }
384         if (what_changed.contains (ARDOUR::Properties::opaque)) {
385                 region_opacity ();
386         }
387         if (what_changed.contains (ARDOUR::Properties::name)) {
388                 region_renamed ();
389         }
390         if (what_changed.contains (ARDOUR::Properties::sync_position)) {
391                 region_sync_changed ();
392         }
393         if (what_changed.contains (ARDOUR::Properties::locked)) {
394                 region_locked ();
395         }
396         if (what_changed.contains (ARDOUR::Properties::locked)) {
397                 /* name will show locked status */
398                 region_renamed ();
399         }
400 }
401
402 void
403 RegionView::region_locked ()
404 {
405         /* name will show locked status */
406         region_renamed ();
407 }
408
409 void
410 RegionView::region_resized (const PropertyChange& what_changed)
411 {
412         double unit_length;
413
414         if (what_changed.contains (ARDOUR::Properties::position)) {
415                 set_position (_region->position(), 0);
416                 _region_relative_time_converter.set_origin_b (_region->position());
417         }
418
419         if (what_changed.contains (ARDOUR::Properties::start) || what_changed.contains (ARDOUR::Properties::position)) {
420                 _source_relative_time_converter.set_origin_b (_region->position() - _region->start());
421         }
422
423         PropertyChange s_and_l;
424         s_and_l.add (ARDOUR::Properties::start);
425         s_and_l.add (ARDOUR::Properties::length);
426
427         if (what_changed.contains (s_and_l)) {
428
429                 set_duration (_region->length(), 0);
430
431                 unit_length = _region->length() / samples_per_pixel;
432
433                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
434
435                         (*i)->set_duration (unit_length);
436
437                 }
438         }
439 }
440
441 void
442 RegionView::reset_width_dependent_items (double pixel_width)
443 {
444         TimeAxisViewItem::reset_width_dependent_items (pixel_width);
445         _pixel_width = pixel_width;
446 }
447
448 void
449 RegionView::region_muted ()
450 {
451         set_frame_color ();
452         region_renamed ();
453 }
454
455 void
456 RegionView::region_opacity ()
457 {
458         set_frame_color ();
459 }
460
461 void
462 RegionView::raise_to_top ()
463 {
464         _region->raise_to_top ();
465 }
466
467 void
468 RegionView::lower_to_bottom ()
469 {
470         _region->lower_to_bottom ();
471 }
472
473 bool
474 RegionView::set_position (framepos_t pos, void* /*src*/, double* ignored)
475 {
476         double delta;
477         bool ret;
478
479         if (!(ret = TimeAxisViewItem::set_position (pos, this, &delta))) {
480                 return false;
481         }
482
483         if (ignored) {
484                 *ignored = delta;
485         }
486
487         if (delta) {
488                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
489                         (*i)->group->move (ArdourCanvas::Duple (delta, 0.0));
490                 }
491         }
492
493         return ret;
494 }
495
496 void
497 RegionView::set_samples_per_pixel (double fpp)
498 {
499         TimeAxisViewItem::set_samples_per_pixel (fpp);
500
501         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
502                 (*i)->set_samples_per_pixel (fpp);
503                 (*i)->set_duration (_region->length() / fpp);
504         }
505
506         region_sync_changed ();
507 }
508
509 bool
510 RegionView::set_duration (framecnt_t frames, void *src)
511 {
512         if (!TimeAxisViewItem::set_duration (frames, src)) {
513                 return false;
514         }
515
516         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
517                 (*i)->set_duration (_region->length() / samples_per_pixel);
518         }
519
520         return true;
521 }
522
523 void
524 RegionView::set_colors ()
525 {
526         TimeAxisViewItem::set_colors ();
527
528         if (sync_mark) {
529                 /* XXX: make these colours themable */
530                 sync_mark->set_fill_color (RGBA_TO_UINT (0, 255, 0, 255));
531                 sync_line->set_outline_color (RGBA_TO_UINT (0, 255, 0, 255));
532         }
533 }
534
535 void
536 RegionView::set_frame_color ()
537 {
538         if (_region->opaque()) {
539                 fill_opacity = 130;
540         } else {
541                 fill_opacity = 60;
542         }
543
544         TimeAxisViewItem::set_frame_color ();
545 }
546
547 void
548 RegionView::fake_set_opaque (bool yn)
549 {
550        if (yn) {
551                fill_opacity = 130;
552        } else {
553                fill_opacity = 60;
554        }
555
556        set_frame_color ();
557 }
558
559 void
560 RegionView::show_region_editor ()
561 {
562         if (editor == 0) {
563                 editor = new RegionEditor (trackview.session(), region());
564         }
565
566         editor->present ();
567         editor->show_all();
568 }
569
570 void
571 RegionView::hide_region_editor()
572 {
573         if (editor) {
574                 editor->hide_all ();
575         }
576 }
577
578 std::string
579 RegionView::make_name () const
580 {
581         std::string str;
582
583         // XXX nice to have some good icons for this
584
585         if (_region->locked()) {
586                 str += '>';
587                 str += _region->name();
588                 str += '<';
589         } else if (_region->position_locked()) {
590                 str += '{';
591                 str += _region->name();
592                 str += '}';
593         } else if (_region->video_locked()) {
594                 str += '[';
595                 str += _region->name();
596                 str += ']';
597         } else {
598                 str = _region->name();
599         }
600
601         if (_region->muted()) {
602                 str = string ("!") + str;
603         }
604
605         return str;
606 }
607
608 void
609 RegionView::region_renamed ()
610 {
611         std::string str = make_name ();
612
613         set_item_name (str, this);
614         set_name_text (str);
615         reset_width_dependent_items (_pixel_width);
616 }
617
618 void
619 RegionView::region_sync_changed ()
620 {
621         int sync_dir;
622         framecnt_t sync_offset;
623
624         sync_offset = _region->sync_offset (sync_dir);
625
626         if (sync_offset == 0) {
627                 /* no need for a sync mark */
628                 if (sync_mark) {
629                         sync_mark->hide();
630                         sync_line->hide ();
631                 }
632                 return;
633         }
634
635         if (!sync_mark) {
636
637                 /* points set below */
638
639                 sync_mark = new ArdourCanvas::Polygon (group);
640                 CANVAS_DEBUG_NAME (sync_mark, string_compose ("sync mark for %1", get_item_name()));
641                 sync_mark->set_fill_color (RGBA_TO_UINT(0,255,0,255));    // FIXME make a themeable colour
642
643                 sync_line = new ArdourCanvas::Line (group);
644                 CANVAS_DEBUG_NAME (sync_line, string_compose ("sync mark for %1", get_item_name()));
645                 sync_line->set_outline_color (RGBA_TO_UINT(0,255,0,255)); // FIXME make a themeable colour
646         }
647
648         /* this has to handle both a genuine change of position, a change of samples_per_pixel
649            and a change in the bounds of the _region->
650          */
651
652         if (sync_offset == 0) {
653
654                 /* no sync mark - its the start of the region */
655
656                 sync_mark->hide();
657                 sync_line->hide ();
658
659         } else {
660
661                 if ((sync_dir < 0) || ((sync_dir > 0) && (sync_offset > _region->length()))) {
662
663                         /* no sync mark - its out of the bounds of the region */
664
665                         sync_mark->hide();
666                         sync_line->hide ();
667
668                 } else {
669
670                         /* lets do it */
671
672                         Points points;
673
674                         //points = sync_mark->property_points().get_value();
675
676                         double offset = sync_offset / samples_per_pixel;
677                         points.push_back (ArdourCanvas::Duple (offset - ((sync_mark_width-1)/2), 1));
678                         points.push_back (ArdourCanvas::Duple (offset + ((sync_mark_width-1)/2), 1));
679                         points.push_back (ArdourCanvas::Duple (offset, sync_mark_width - 1));
680                         points.push_back (ArdourCanvas::Duple (offset - ((sync_mark_width-1)/2), 1));
681                         sync_mark->set (points);
682                         sync_mark->show ();
683
684                         sync_line->set (ArdourCanvas::Duple (offset, 0), ArdourCanvas::Duple (offset, trackview.current_height() - NAME_HIGHLIGHT_SIZE));
685                         sync_line->show ();
686                 }
687         }
688 }
689
690 void
691 RegionView::move (double x_delta, double y_delta)
692 {
693         if (!_region->can_move() || (x_delta == 0 && y_delta == 0)) {
694                 return;
695         }
696
697         get_canvas_group()->move (ArdourCanvas::Duple (x_delta, y_delta));
698
699         /* note: ghosts never leave their tracks so y_delta for them is always zero */
700
701         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
702                 (*i)->group->move (ArdourCanvas::Duple (x_delta, 0.0));
703         }
704 }
705
706 void
707 RegionView::remove_ghost_in (TimeAxisView& tv)
708 {
709         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
710                 if (&(*i)->trackview == &tv) {
711                         delete *i;
712                         break;
713                 }
714         }
715 }
716
717 void
718 RegionView::remove_ghost (GhostRegion* ghost)
719 {
720         if (in_destructor) {
721                 return;
722         }
723
724         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
725                 if (*i == ghost) {
726                         ghosts.erase (i);
727                         break;
728                 }
729         }
730 }
731
732 uint32_t
733 RegionView::get_fill_color ()
734 {
735         return fill_color;
736 }
737
738 void
739 RegionView::set_height (double h)
740 {
741         TimeAxisViewItem::set_height(h);
742
743         if (sync_line) {
744                 Points points;
745                 int sync_dir;
746                 framecnt_t sync_offset;
747                 sync_offset = _region->sync_offset (sync_dir);
748                 double offset = sync_offset / samples_per_pixel;
749
750                 sync_line->set (
751                         ArdourCanvas::Duple (offset, 0),
752                         ArdourCanvas::Duple (offset, h - NAME_HIGHLIGHT_SIZE)
753                         );
754         }
755
756         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin(); i != _coverage_frames.end(); ++i) {
757                 (*i)->set_y1 (h + 1);
758         }
759
760         for (list<ArdourCanvas::Rectangle*>::iterator i = _silent_frames.begin(); i != _silent_frames.end(); ++i) {
761                 (*i)->set_y1 (h + 1);
762         }
763
764 }
765
766 /** Remove old coverage frames and make new ones, if we're in a LayerDisplay mode
767  *  which uses them. */
768 void
769 RegionView::update_coverage_frames (LayerDisplay d)
770 {
771         /* remove old coverage frames */
772         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
773                 delete *i;
774         }
775
776         _coverage_frames.clear ();
777
778         if (d != Stacked) {
779                 /* don't do coverage frames unless we're in stacked mode */
780                 return;
781         }
782
783         boost::shared_ptr<Playlist> pl (_region->playlist ());
784         if (!pl) {
785                 return;
786         }
787
788         framepos_t const position = _region->first_frame ();
789         framepos_t t = position;
790         framepos_t const end = _region->last_frame ();
791
792         ArdourCanvas::Rectangle* cr = 0;
793         bool me = false;
794
795         /* the color that will be used to show parts of regions that will not be heard */
796         uint32_t const non_playing_color = ARDOUR_UI::config()->get_canvasvar_CoveredRegion ();
797
798         while (t < end) {
799
800                 t++;
801
802                 /* is this region is on top at time t? */
803                 bool const new_me = (pl->top_unmuted_region_at (t) == _region);
804
805                 /* finish off any old rect, if required */
806                 if (cr && me != new_me) {
807                         cr->set_x1 (trackview.editor().sample_to_pixel (t - position));
808                 }
809
810                 /* start off any new rect, if required */
811                 if (cr == 0 || me != new_me) {
812                         cr = new ArdourCanvas::Rectangle (group);
813                         _coverage_frames.push_back (cr);
814                         cr->set_x0 (trackview.editor().sample_to_pixel (t - position));
815                         cr->set_y0 (1);
816                         cr->set_y1 (_height + 1);
817                         cr->set_outline (false);
818                         cr->set_ignore_events (true);
819                         if (new_me) {
820                                 cr->set_fill_color (UINT_RGBA_CHANGE_A (non_playing_color, 0));
821                         } else {
822                                 cr->set_fill_color (non_playing_color);
823                         }
824                 }
825
826                 t = pl->find_next_region_boundary (t, 1);
827                 me = new_me;
828         }
829
830         if (cr) {
831                 /* finish off the last rectangle */
832                 cr->set_x1 (trackview.editor().sample_to_pixel (end - position));
833         }
834
835         if (frame_handle_start) {
836                 frame_handle_start->raise_to_top ();
837         }
838
839         if (frame_handle_end) {
840                 frame_handle_end->raise_to_top ();
841         }
842
843         if (name_highlight) {
844                 name_highlight->raise_to_top ();
845         }
846
847         if (name_text) {
848                 name_text->raise_to_top ();
849         }
850 }
851
852 bool
853 RegionView::trim_front (framepos_t new_bound, bool no_overlap)
854 {
855         if (_region->locked()) {
856                 return false;
857         }
858
859         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
860         double const speed = rtv.track()->speed ();
861
862         framepos_t const pre_trim_first_frame = _region->first_frame();
863
864         _region->trim_front ((framepos_t) (new_bound * speed));
865
866         if (no_overlap) {
867                 // Get the next region on the left of this region and shrink/expand it.
868                 boost::shared_ptr<Playlist> playlist (_region->playlist());
869                 boost::shared_ptr<Region> region_left = playlist->find_next_region (pre_trim_first_frame, End, 0);
870
871                 bool regions_touching = false;
872
873                 if (region_left != 0 && (pre_trim_first_frame == region_left->last_frame() + 1)) {
874                         regions_touching = true;
875                 }
876
877                 // Only trim region on the left if the first frame has gone beyond the left region's last frame.
878                 if (region_left != 0 && (region_left->last_frame() > _region->first_frame() || regions_touching)) {
879                         region_left->trim_end (_region->first_frame() - 1);
880                 }
881         }
882
883         region_changed (ARDOUR::bounds_change);
884
885         return (pre_trim_first_frame != _region->first_frame());  //return true if we actually changed something
886 }
887
888 bool
889 RegionView::trim_end (framepos_t new_bound, bool no_overlap)
890 {
891         if (_region->locked()) {
892                 return false;
893         }
894
895         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
896         double const speed = rtv.track()->speed ();
897
898         framepos_t const pre_trim_last_frame = _region->last_frame();
899
900         _region->trim_end ((framepos_t) (new_bound * speed));
901
902         if (no_overlap) {
903                 // Get the next region on the right of this region and shrink/expand it.
904                 boost::shared_ptr<Playlist> playlist (_region->playlist());
905                 boost::shared_ptr<Region> region_right = playlist->find_next_region (pre_trim_last_frame, Start, 1);
906
907                 bool regions_touching = false;
908
909                 if (region_right != 0 && (pre_trim_last_frame == region_right->first_frame() - 1)) {
910                         regions_touching = true;
911                 }
912
913                 // Only trim region on the right if the last frame has gone beyond the right region's first frame.
914                 if (region_right != 0 && (region_right->first_frame() < _region->last_frame() || regions_touching)) {
915                         region_right->trim_front (_region->last_frame() + 1);
916                 }
917
918                 region_changed (ARDOUR::bounds_change);
919
920         } else {
921                 region_changed (PropertyChange (ARDOUR::Properties::length));
922         }
923
924         return (pre_trim_last_frame != _region->last_frame());  //return true if we actually changed something
925 }
926
927
928 void
929 RegionView::thaw_after_trim ()
930 {
931         if (_region->locked()) {
932                 return;
933         }
934
935         _region->resume_property_changes ();
936 }
937
938
939 void
940 RegionView::move_contents (frameoffset_t distance)
941 {
942         if (_region->locked()) {
943                 return;
944         }
945         _region->move_start (distance);
946         region_changed (PropertyChange (ARDOUR::Properties::start));
947 }
948
949 /** Snap a frame offset within our region using the current snap settings.
950  *  @param x Frame offset from this region's position.
951  *  @return Snapped frame offset from this region's position.
952  */
953 frameoffset_t
954 RegionView::snap_frame_to_frame (frameoffset_t x) const
955 {
956         PublicEditor& editor = trackview.editor();
957
958         /* x is region relative, convert it to global absolute frames */
959         framepos_t const session_frame = x + _region->position();
960
961         /* try a snap in either direction */
962         framepos_t frame = session_frame;
963         editor.snap_to (frame, 0);
964
965         /* if we went off the beginning of the region, snap forwards */
966         if (frame < _region->position ()) {
967                 frame = session_frame;
968                 editor.snap_to (frame, 1);
969         }
970
971         /* back to region relative */
972         return frame - _region->position();
973 }