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