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