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