meterbridge label color
[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 "ardour_ui.h"
32 #include "global_signals.h"
33 #include "canvas-noevent-text.h"
34 #include "canvas-noevent-rect.h"
35 #include "streamview.h"
36 #include "region_view.h"
37 #include "automation_region_view.h"
38 #include "route_time_axis.h"
39 #include "simplerect.h"
40 #include "simpleline.h"
41 #include "waveview.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->signal_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->signal_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->signal_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->signal_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->signal_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::SimpleRect*>::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::SimpleRect* cr = new ArdourCanvas::NoEventSimpleRect (*group);
241                 _silent_frames.push_back (cr);
242
243                 /* coordinates for the rect are relative to the regionview origin */
244
245                 cr->property_x1() = trackview.editor().frame_to_pixel (i->first - _region->start());
246                 cr->property_x2() = trackview.editor().frame_to_pixel (i->second - _region->start());
247                 cr->property_y1() = 1;
248                 cr->property_y2() = _height - 2;
249                 cr->property_outline_pixels() = 0;
250                 cr->property_fill_color_rgba () = color;
251
252                 shortest = min (shortest, i->second - i->first);
253         }
254
255         /* Find shortest audible segment */
256         framecnt_t shortest_audible = max_framecnt;
257
258         framecnt_t s = _region->start();
259         for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
260                 framecnt_t const dur = i->first - s;
261                 if (dur > 0) {
262                         shortest_audible = min (shortest_audible, dur);
263                 }
264
265                 s = i->second;
266         }
267
268         framecnt_t const dur = _region->start() + _region->length() - 1 - s;
269         if (dur > 0) {
270                 shortest_audible = min (shortest_audible, dur);
271         }
272
273         _silence_text = new ArdourCanvas::NoEventText (*group);
274         _silence_text->property_font_desc() = get_font_for_style (N_("SilenceText"));
275         _silence_text->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SilenceText.get();
276         _silence_text->property_anchor() = ANCHOR_NW;
277
278         /* both positions are relative to the region start offset in source */
279
280         _silence_text->property_x() = trackview.editor().frame_to_pixel (silences.front().first - _region->start()) + 10.0;
281         _silence_text->property_y() = 20.0;
282
283         double ms = (float) shortest/_region->session().frame_rate();
284
285         /* ms are now in seconds */
286
287         char const * sunits;
288
289         if (ms >= 60.0) {
290                 sunits = _("minutes");
291                 ms /= 60.0;
292         } else if (ms < 1.0) {
293                 sunits = _("msecs");
294                 ms *= 1000.0;
295         } else {
296                 sunits = _("secs");
297         }
298
299         string text = string_compose (ngettext ("%1 silent segment", "%1 silent segments", silences.size()), silences.size())
300                 + ", "
301                 + string_compose (_("shortest = %1 %2"), ms, sunits);
302
303         if (shortest_audible != max_framepos) {
304                 /* ms are now in seconds */
305                 double ma = (float) shortest_audible / _region->session().frame_rate();
306                 char const * aunits;
307
308                 if (ma >= 60.0) {
309                         aunits = _("minutes");
310                         ma /= 60.0;
311                 } else if (ma < 1.0) {
312                         aunits = _("msecs");
313                         ma *= 1000.0;
314                 } else {
315                         aunits = _("secs");
316                 }
317
318                 text += string_compose (_("\n  (shortest audible segment = %1 %2)"), ma, aunits);
319         }
320
321         _silence_text->property_text() = text.c_str ();
322 }
323
324 void
325 RegionView::hide_silent_frames ()
326 {
327         for (list<ArdourCanvas::SimpleRect*>::iterator i = _silent_frames.begin (); i != _silent_frames.end (); ++i) {
328                 (*i)->hide ();
329         }
330         _silence_text->hide();
331 }
332
333 void
334 RegionView::drop_silent_frames ()
335 {
336         for (list<ArdourCanvas::SimpleRect*>::iterator i = _silent_frames.begin (); i != _silent_frames.end (); ++i) {
337                 delete *i;
338         }
339         _silent_frames.clear ();
340
341         delete _silence_text;
342         _silence_text = 0;
343 }
344
345 gint
346 RegionView::_lock_toggle (ArdourCanvas::Item*, GdkEvent* ev, void* arg)
347 {
348         switch (ev->type) {
349         case GDK_BUTTON_RELEASE:
350                 static_cast<RegionView*>(arg)->lock_toggle ();
351                 return TRUE;
352                 break;
353         default:
354                 break;
355         }
356         return FALSE;
357 }
358
359 void
360 RegionView::lock_toggle ()
361 {
362         _region->set_locked (!_region->locked());
363 }
364
365 void
366 RegionView::region_changed (const PropertyChange& what_changed)
367 {
368         ENSURE_GUI_THREAD (*this, &RegionView::region_changed, what_changed);
369
370         if (what_changed.contains (ARDOUR::bounds_change)) {
371                 region_resized (what_changed);
372                 region_sync_changed ();
373         }
374         if (what_changed.contains (ARDOUR::Properties::muted)) {
375                 region_muted ();
376         }
377         if (what_changed.contains (ARDOUR::Properties::opaque)) {
378                 region_opacity ();
379         }
380         if (what_changed.contains (ARDOUR::Properties::name)) {
381                 region_renamed ();
382         }
383         if (what_changed.contains (ARDOUR::Properties::sync_position)) {
384                 region_sync_changed ();
385         }
386         if (what_changed.contains (ARDOUR::Properties::locked)) {
387                 region_locked ();
388         }
389         if (what_changed.contains (ARDOUR::Properties::locked)) {
390                 /* name will show locked status */
391                 region_renamed ();
392         }
393 }
394
395 void
396 RegionView::region_locked ()
397 {
398         /* name will show locked status */
399         region_renamed ();
400 }
401
402 void
403 RegionView::region_resized (const PropertyChange& what_changed)
404 {
405         double unit_length;
406
407         if (what_changed.contains (ARDOUR::Properties::position)) {
408                 set_position (_region->position(), 0);
409                 _region_relative_time_converter.set_origin_b (_region->position());
410         }
411
412         if (what_changed.contains (ARDOUR::Properties::start) || what_changed.contains (ARDOUR::Properties::position)) {
413                 _source_relative_time_converter.set_origin_b (_region->position() - _region->start());
414         }
415
416         PropertyChange s_and_l;
417         s_and_l.add (ARDOUR::Properties::start);
418         s_and_l.add (ARDOUR::Properties::length);
419
420         if (what_changed.contains (s_and_l)) {
421
422                 set_duration (_region->length(), 0);
423
424                 unit_length = _region->length() / samples_per_unit;
425
426                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
427
428                         (*i)->set_duration (unit_length);
429
430                 }
431         }
432 }
433
434 void
435 RegionView::reset_width_dependent_items (double pixel_width)
436 {
437         TimeAxisViewItem::reset_width_dependent_items (pixel_width);
438         _pixel_width = pixel_width;
439 }
440
441 void
442 RegionView::region_muted ()
443 {
444         set_frame_color ();
445         region_renamed ();
446 }
447
448 void
449 RegionView::region_opacity ()
450 {
451         set_frame_color ();
452 }
453
454 void
455 RegionView::raise_to_top ()
456 {
457         _region->raise_to_top ();
458 }
459
460 void
461 RegionView::lower_to_bottom ()
462 {
463         _region->lower_to_bottom ();
464 }
465
466 bool
467 RegionView::set_position (framepos_t pos, void* /*src*/, double* ignored)
468 {
469         double delta;
470         bool ret;
471
472         if (!(ret = TimeAxisViewItem::set_position (pos, this, &delta))) {
473                 return false;
474         }
475
476         if (ignored) {
477                 *ignored = delta;
478         }
479
480         if (delta) {
481                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
482                         (*i)->group->move (delta, 0.0);
483                 }
484         }
485
486         return ret;
487 }
488
489 void
490 RegionView::set_samples_per_unit (gdouble spu)
491 {
492         TimeAxisViewItem::set_samples_per_unit (spu);
493
494         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
495                 (*i)->set_samples_per_unit (spu);
496                 (*i)->set_duration (_region->length() / samples_per_unit);
497         }
498
499         region_sync_changed ();
500 }
501
502 bool
503 RegionView::set_duration (framecnt_t frames, void *src)
504 {
505         if (!TimeAxisViewItem::set_duration (frames, src)) {
506                 return false;
507         }
508
509         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
510                 (*i)->set_duration (_region->length() / samples_per_unit);
511         }
512
513         return true;
514 }
515
516 void
517 RegionView::set_colors ()
518 {
519         TimeAxisViewItem::set_colors ();
520
521         if (sync_mark) {
522                 sync_mark->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
523                 sync_line->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
524         }
525 }
526
527 void
528 RegionView::set_frame_color ()
529 {
530         if (_region->opaque()) {
531                 fill_opacity = 130;
532         } else {
533                 fill_opacity = 60;
534         }
535
536         TimeAxisViewItem::set_frame_color ();
537 }
538
539 void
540 RegionView::fake_set_opaque (bool yn)
541 {
542        if (yn) {
543                fill_opacity = 130;
544        } else {
545                fill_opacity = 60;
546        }
547
548        set_frame_color ();
549 }
550
551 void
552 RegionView::show_region_editor ()
553 {
554         if (editor == 0) {
555                 editor = new RegionEditor (trackview.session(), region());
556         }
557
558         editor->present ();
559         editor->show_all();
560 }
561
562 void
563 RegionView::hide_region_editor()
564 {
565         if (editor) {
566                 editor->hide_all ();
567         }
568 }
569
570 std::string
571 RegionView::make_name () const
572 {
573         std::string str;
574
575         // XXX nice to have some good icons for this
576
577         if (_region->locked()) {
578                 str += '>';
579                 str += _region->name();
580                 str += '<';
581         } else if (_region->position_locked()) {
582                 str += '{';
583                 str += _region->name();
584                 str += '}';
585         } else if (_region->video_locked()) {
586                 str += '[';
587                 str += _region->name();
588                 str += ']';
589         } else {
590                 str = _region->name();
591         }
592
593         if (_region->muted()) {
594                 str = string ("!") + str;
595         }
596
597         return str;
598 }
599
600 void
601 RegionView::region_renamed ()
602 {
603         std::string str = make_name ();
604
605         set_item_name (str, this);
606         set_name_text (str);
607         reset_width_dependent_items (_pixel_width);
608 }
609
610 void
611 RegionView::region_sync_changed ()
612 {
613         int sync_dir;
614         framecnt_t sync_offset;
615
616         sync_offset = _region->sync_offset (sync_dir);
617
618         if (sync_offset == 0) {
619                 /* no need for a sync mark */
620                 if (sync_mark) {
621                         sync_mark->hide();
622                         sync_line->hide ();
623                 }
624                 return;
625         }
626
627         if (!sync_mark) {
628
629                 /* points set below */
630
631                 sync_mark = new ArdourCanvas::Polygon (*group);
632                 sync_mark->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
633
634                 sync_line = new ArdourCanvas::Line (*group);
635                 sync_line->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
636                 sync_line->property_width_pixels() = 1;
637         }
638
639         /* this has to handle both a genuine change of position, a change of samples_per_unit,
640            and a change in the bounds of the _region->
641          */
642
643         if (sync_offset == 0) {
644
645                 /* no sync mark - its the start of the region */
646
647                 sync_mark->hide();
648                 sync_line->hide ();
649
650         } else {
651
652                 if ((sync_dir < 0) || ((sync_dir > 0) && (sync_offset > _region->length()))) {
653
654                         /* no sync mark - its out of the bounds of the region */
655
656                         sync_mark->hide();
657                         sync_line->hide ();
658
659                 } else {
660
661                         /* lets do it */
662
663                         Points points;
664
665                         //points = sync_mark->property_points().get_value();
666
667                         double offset = sync_offset / samples_per_unit;
668                         points.push_back (Gnome::Art::Point (offset - ((sync_mark_width-1)/2), 1));
669                         points.push_back (Gnome::Art::Point (offset + ((sync_mark_width-1)/2), 1));
670                         points.push_back (Gnome::Art::Point (offset, sync_mark_width - 1));
671                         points.push_back (Gnome::Art::Point (offset - ((sync_mark_width-1)/2), 1));
672                         sync_mark->property_points().set_value (points);
673                         sync_mark->show ();
674
675                         points.clear ();
676                         points.push_back (Gnome::Art::Point (offset, 0));
677                         points.push_back (Gnome::Art::Point (offset, trackview.current_height() - NAME_HIGHLIGHT_SIZE));
678
679                         sync_line->property_points().set_value (points);
680                         sync_line->show ();
681                 }
682         }
683 }
684
685 void
686 RegionView::move (double x_delta, double y_delta)
687 {
688         if (!_region->can_move() || (x_delta == 0 && y_delta == 0)) {
689                 return;
690         }
691
692         get_canvas_group()->move (x_delta, y_delta);
693
694         /* note: ghosts never leave their tracks so y_delta for them is always zero */
695
696         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
697                 (*i)->group->move (x_delta, 0.0);
698         }
699 }
700
701 void
702 RegionView::remove_ghost_in (TimeAxisView& tv)
703 {
704         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
705                 if (&(*i)->trackview == &tv) {
706                         delete *i;
707                         break;
708                 }
709         }
710 }
711
712 void
713 RegionView::remove_ghost (GhostRegion* ghost)
714 {
715         if (in_destructor) {
716                 return;
717         }
718
719         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
720                 if (*i == ghost) {
721                         ghosts.erase (i);
722                         break;
723                 }
724         }
725 }
726
727 uint32_t
728 RegionView::get_fill_color ()
729 {
730         return fill_color;
731 }
732
733 void
734 RegionView::set_height (double h)
735 {
736         TimeAxisViewItem::set_height(h);
737
738         if (sync_line) {
739                 Points points;
740                 int sync_dir;
741                 framecnt_t sync_offset;
742                 sync_offset = _region->sync_offset (sync_dir);
743                 double offset = sync_offset / samples_per_unit;
744
745                 points.push_back (Gnome::Art::Point (offset, 0));
746                 points.push_back (Gnome::Art::Point (offset, h - NAME_HIGHLIGHT_SIZE));
747                 sync_line->property_points().set_value (points);
748         }
749
750         for (list<ArdourCanvas::SimpleRect*>::iterator i = _coverage_frames.begin(); i != _coverage_frames.end(); ++i) {
751                 (*i)->property_y2() = h + 1;
752         }
753
754         for (list<ArdourCanvas::SimpleRect*>::iterator i = _silent_frames.begin(); i != _silent_frames.end(); ++i) {
755                 (*i)->property_y2() = h + 1;
756         }
757
758 }
759
760 /** Remove old coverage frames and make new ones, if we're in a LayerDisplay mode
761  *  which uses them. */
762 void
763 RegionView::update_coverage_frames (LayerDisplay d)
764 {
765         /* remove old coverage frames */
766         for (list<ArdourCanvas::SimpleRect*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
767                 delete *i;
768         }
769
770         _coverage_frames.clear ();
771
772         if (d != Stacked) {
773                 /* don't do coverage frames unless we're in stacked mode */
774                 return;
775         }
776
777         boost::shared_ptr<Playlist> pl (_region->playlist ());
778         if (!pl) {
779                 return;
780         }
781
782         framepos_t const position = _region->first_frame ();
783         framepos_t t = position;
784         framepos_t const end = _region->last_frame ();
785
786         ArdourCanvas::SimpleRect* cr = 0;
787         bool me = false;
788
789         /* the color that will be used to show parts of regions that will not be heard */
790         uint32_t const non_playing_color = ARDOUR_UI::config()->canvasvar_CoveredRegion.get ();
791
792         while (t < end) {
793
794                 t++;
795
796                 /* is this region is on top at time t? */
797                 bool const new_me = (pl->top_unmuted_region_at (t) == _region);
798
799                 /* finish off any old rect, if required */
800                 if (cr && me != new_me) {
801                         cr->property_x2() = trackview.editor().frame_to_pixel (t - position);
802                 }
803
804                 /* start off any new rect, if required */
805                 if (cr == 0 || me != new_me) {
806                         cr = new ArdourCanvas::NoEventSimpleRect (*group);
807                         _coverage_frames.push_back (cr);
808                         cr->property_x1() = trackview.editor().frame_to_pixel (t - position);
809                         cr->property_y1() = 1;
810                         cr->property_y2() = _height + 1;
811                         cr->property_outline_pixels() = 0;
812                         if (new_me) {
813                                 cr->property_fill_color_rgba () = UINT_RGBA_CHANGE_A (non_playing_color, 0);
814                         } else {
815                                 cr->property_fill_color_rgba () = 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->property_x2() = 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 }