remove instances of RGBA_TO_UINT() macro from region_view.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 #include "canvas/utils.h"
37
38 #include "ardour_ui.h"
39 #include "global_signals.h"
40 #include "streamview.h"
41 #include "region_view.h"
42 #include "automation_region_view.h"
43 #include "route_time_axis.h"
44 #include "public_editor.h"
45 #include "region_editor.h"
46 #include "ghostregion.h"
47 #include "route_time_axis.h"
48 #include "ui_config.h"
49 #include "utils.h"
50 #include "rgb_macros.h"
51 #include "gui_thread.h"
52
53 #include "i18n.h"
54
55 using namespace std;
56 using namespace ARDOUR;
57 using namespace PBD;
58 using namespace Editing;
59 using namespace Gtk;
60 using namespace ArdourCanvas;
61
62 static const int32_t sync_mark_width = 9;
63
64 PBD::Signal1<void,RegionView*> RegionView::RegionViewGoingAway;
65
66 RegionView::RegionView (ArdourCanvas::Group*              parent,
67                         TimeAxisView&                     tv,
68                         boost::shared_ptr<ARDOUR::Region> r,
69                         double                            spu,
70                         uint32_t                          basic_color,
71                         bool                              automation)
72         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), false, automation,
73                             (automation ? TimeAxisViewItem::ShowFrame :
74                              TimeAxisViewItem::Visibility (TimeAxisViewItem::ShowNameText|
75                                                            TimeAxisViewItem::ShowNameHighlight| TimeAxisViewItem::ShowFrame)))
76         , _region (r)
77         , sync_mark(0)
78         , sync_line(0)
79         , editor(0)
80         , current_visible_sync_position(0.0)
81         , valid(false)
82         , _enable_display(false)
83         , _pixel_width(1.0)
84         , in_destructor(false)
85         , wait_for_data(false)
86         , _silence_text (0)
87         , _region_relative_time_converter(r->session().tempo_map(), r->position())
88         , _source_relative_time_converter(r->session().tempo_map(), r->position() - r->start())
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         , _region_relative_time_converter(other.region_relative_time_converter())
98         , _source_relative_time_converter(other.source_relative_time_converter())
99 {
100         /* derived concrete type will call init () */
101
102         _region = other._region;
103         current_visible_sync_position = other.current_visible_sync_position;
104         valid = false;
105         _pixel_width = other._pixel_width;
106
107         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
108 }
109
110 RegionView::RegionView (const RegionView& other, boost::shared_ptr<Region> other_region)
111         : sigc::trackable(other)
112         , TimeAxisViewItem (other)
113         , _silence_text (0)
114         , _region_relative_time_converter(other_region->session().tempo_map(), other_region->position())
115         , _source_relative_time_converter(other_region->session().tempo_map(), other_region->position() - other_region->start())
116 {
117         /* this is a pseudo-copy constructor used when dragging regions
118            around on the canvas.
119         */
120
121         /* derived concrete type will call init () */
122
123         _region = other_region;
124         current_visible_sync_position = other.current_visible_sync_position;
125         valid = false;
126         _pixel_width = other._pixel_width;
127
128         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
129 }
130
131 RegionView::RegionView (ArdourCanvas::Group*         parent,
132                         TimeAxisView&                tv,
133                         boost::shared_ptr<ARDOUR::Region> r,
134                         double                       spu,
135                         uint32_t                     basic_color,
136                         bool                         recording,
137                         TimeAxisViewItem::Visibility visibility)
138         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), recording, false, visibility)
139         , _region (r)
140         , sync_mark(0)
141         , sync_line(0)
142         , editor(0)
143         , current_visible_sync_position(0.0)
144         , valid(false)
145         , _enable_display(false)
146         , _pixel_width(1.0)
147         , in_destructor(false)
148         , wait_for_data(false)
149         , _silence_text (0)
150         , _region_relative_time_converter(r->session().tempo_map(), r->position())
151         , _source_relative_time_converter(r->session().tempo_map(), r->position() - r->start())
152 {
153 }
154
155 void
156 RegionView::init (bool wfd)
157 {
158         editor        = 0;
159         valid         = true;
160         in_destructor = false;
161         wait_for_data = wfd;
162         sync_mark     = 0;
163         sync_line     = 0;
164         sync_mark     = 0;
165         sync_line     = 0;
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         
172         if (frame_handle_start) {
173                 frame_handle_start->set_data ("regionview", this);
174                 frame_handle_start->set_data ("isleft", (void*) 1);
175                 frame_handle_start->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_start, this));
176                 frame_handle_start->raise_to_top();
177         }
178         
179         if (frame_handle_end) {
180                 frame_handle_end->set_data ("regionview", this);
181                 frame_handle_end->set_data ("isleft", (void*) 0);
182                 frame_handle_end->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_end, this));
183                 frame_handle_end->raise_to_top();
184         }
185
186         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 (ArdourCanvas::rgba_to_color (0, 1.0, 0, 1.0));
530                 sync_line->set_outline_color (ArdourCanvas::rgba_to_color (0, 1.0, 0, 1.0));
531         }
532 }
533
534 void
535 RegionView::set_frame_color ()
536 {
537         if (!frame) {
538                 return;
539         }
540
541         if (!_region->opaque()) {
542                 fill_opacity = 60;
543         }
544
545         TimeAxisViewItem::set_frame_color ();
546 }
547
548 void
549 RegionView::show_region_editor ()
550 {
551         if (editor == 0) {
552                 editor = new RegionEditor (trackview.session(), region());
553         }
554
555         editor->present ();
556         editor->show_all();
557 }
558
559 void
560 RegionView::hide_region_editor()
561 {
562         if (editor) {
563                 editor->hide_all ();
564         }
565 }
566
567 std::string
568 RegionView::make_name () const
569 {
570         std::string str;
571
572         // XXX nice to have some good icons for this
573
574         if (_region->locked()) {
575                 str += '>';
576                 str += _region->name();
577                 str += '<';
578         } else if (_region->position_locked()) {
579                 str += '{';
580                 str += _region->name();
581                 str += '}';
582         } else if (_region->video_locked()) {
583                 str += '[';
584                 str += _region->name();
585                 str += ']';
586         } else {
587                 str = _region->name();
588         }
589
590         if (_region->muted()) {
591                 str = string ("!") + str;
592         }
593
594         return str;
595 }
596
597 void
598 RegionView::region_renamed ()
599 {
600         std::string str = make_name ();
601
602         set_item_name (str, this);
603         set_name_text (str);
604         reset_width_dependent_items (_pixel_width);
605 }
606
607 void
608 RegionView::region_sync_changed ()
609 {
610         int sync_dir;
611         framecnt_t sync_offset;
612
613         sync_offset = _region->sync_offset (sync_dir);
614
615         if (sync_offset == 0) {
616                 /* no need for a sync mark */
617                 if (sync_mark) {
618                         sync_mark->hide();
619                         sync_line->hide ();
620                 }
621                 return;
622         }
623
624         if (!sync_mark) {
625
626                 /* points set below */
627
628                 sync_mark = new ArdourCanvas::Polygon (group);
629                 CANVAS_DEBUG_NAME (sync_mark, string_compose ("sync mark for %1", get_item_name()));
630                 sync_mark->set_fill_color (ArdourCanvas::rgba_to_color (0, 1.0, 0, 1.0));    // FIXME make a themeable colour
631
632                 sync_line = new ArdourCanvas::Line (group);
633                 CANVAS_DEBUG_NAME (sync_line, string_compose ("sync mark for %1", get_item_name()));
634                 sync_line->set_outline_color (ArdourCanvas::rgba_to_color (0, 1.0, 0, 1.0)); // FIXME make a themeable colour
635         }
636
637         /* this has to handle both a genuine change of position, a change of samples_per_pixel
638            and a change in the bounds of the _region->
639          */
640
641         if (sync_offset == 0) {
642
643                 /* no sync mark - its the start of the region */
644
645                 sync_mark->hide();
646                 sync_line->hide ();
647
648         } else {
649
650                 if ((sync_dir < 0) || ((sync_dir > 0) && (sync_offset > _region->length()))) {
651
652                         /* no sync mark - its out of the bounds of the region */
653
654                         sync_mark->hide();
655                         sync_line->hide ();
656
657                 } else {
658
659                         /* lets do it */
660
661                         Points points;
662
663                         //points = sync_mark->property_points().get_value();
664
665                         double offset = sync_offset / samples_per_pixel;
666                         points.push_back (ArdourCanvas::Duple (offset - ((sync_mark_width-1)/2), 1));
667                         points.push_back (ArdourCanvas::Duple (offset + ((sync_mark_width-1)/2), 1));
668                         points.push_back (ArdourCanvas::Duple (offset, sync_mark_width - 1));
669                         points.push_back (ArdourCanvas::Duple (offset - ((sync_mark_width-1)/2), 1));
670                         sync_mark->set (points);
671                         sync_mark->show ();
672
673                         sync_line->set (ArdourCanvas::Duple (offset, 0), ArdourCanvas::Duple (offset, trackview.current_height() - NAME_HIGHLIGHT_SIZE));
674                         sync_line->show ();
675                 }
676         }
677 }
678
679 void
680 RegionView::move (double x_delta, double y_delta)
681 {
682         if (!_region->can_move() || (x_delta == 0 && y_delta == 0)) {
683                 return;
684         }
685
686         /* items will not prevent Item::move() moving
687          * them to a negative x-axis coordinate, which
688          * is legal, but we don't want that here.
689          */
690
691         ArdourCanvas::Item *item = get_canvas_group ();
692         
693         if (item->position().x + x_delta < 0) {
694                 x_delta = -item->position().x; /* move it to zero */
695         }
696
697         item->move (ArdourCanvas::Duple (x_delta, y_delta));
698
699         /* note: ghosts never leave their tracks so y_delta for them is always zero */
700
701         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
702                 (*i)->group->move (ArdourCanvas::Duple (x_delta, 0.0));
703         }
704 }
705
706 void
707 RegionView::remove_ghost_in (TimeAxisView& tv)
708 {
709         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
710                 if (&(*i)->trackview == &tv) {
711                         delete *i;
712                         break;
713                 }
714         }
715 }
716
717 void
718 RegionView::remove_ghost (GhostRegion* ghost)
719 {
720         if (in_destructor) {
721                 return;
722         }
723
724         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
725                 if (*i == ghost) {
726                         ghosts.erase (i);
727                         break;
728                 }
729         }
730 }
731
732 void
733 RegionView::set_height (double h)
734 {
735         TimeAxisViewItem::set_height(h);
736
737         if (sync_line) {
738                 Points points;
739                 int sync_dir;
740                 framecnt_t sync_offset;
741                 sync_offset = _region->sync_offset (sync_dir);
742                 double offset = sync_offset / samples_per_pixel;
743
744                 sync_line->set (
745                         ArdourCanvas::Duple (offset, 0),
746                         ArdourCanvas::Duple (offset, h - NAME_HIGHLIGHT_SIZE)
747                         );
748         }
749
750         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin(); i != _coverage_frames.end(); ++i) {
751                 (*i)->set_y1 (h + 1);
752         }
753
754         for (list<ArdourCanvas::Rectangle*>::iterator i = _silent_frames.begin(); i != _silent_frames.end(); ++i) {
755                 (*i)->set_y1 (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::Rectangle*>::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::Rectangle* 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()->get_canvasvar_CoveredRegion ();
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->set_x1 (trackview.editor().sample_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::Rectangle (group);
807                         _coverage_frames.push_back (cr);
808                         cr->set_x0 (trackview.editor().sample_to_pixel (t - position));
809                         cr->set_y0 (1);
810                         cr->set_y1 (_height + 1);
811                         cr->set_outline (false);
812                         cr->set_ignore_events (true);
813                         if (new_me) {
814                                 cr->set_fill_color (UINT_RGBA_CHANGE_A (non_playing_color, 0));
815                         } else {
816                                 cr->set_fill_color (non_playing_color);
817                         }
818                 }
819
820                 t = pl->find_next_region_boundary (t, 1);
821                 me = new_me;
822         }
823
824         if (cr) {
825                 /* finish off the last rectangle */
826                 cr->set_x1 (trackview.editor().sample_to_pixel (end - position));
827         }
828
829         if (frame_handle_start) {
830                 frame_handle_start->raise_to_top ();
831         }
832
833         if (frame_handle_end) {
834                 frame_handle_end->raise_to_top ();
835         }
836
837         if (name_highlight) {
838                 name_highlight->raise_to_top ();
839         }
840
841         if (name_text) {
842                 name_text->raise_to_top ();
843         }
844 }
845
846 bool
847 RegionView::trim_front (framepos_t new_bound, bool no_overlap)
848 {
849         if (_region->locked()) {
850                 return false;
851         }
852
853         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
854         double const speed = rtv.track()->speed ();
855
856         framepos_t const pre_trim_first_frame = _region->first_frame();
857
858         _region->trim_front ((framepos_t) (new_bound * speed));
859
860         if (no_overlap) {
861                 // Get the next region on the left of this region and shrink/expand it.
862                 boost::shared_ptr<Playlist> playlist (_region->playlist());
863                 boost::shared_ptr<Region> region_left = playlist->find_next_region (pre_trim_first_frame, End, 0);
864
865                 bool regions_touching = false;
866
867                 if (region_left != 0 && (pre_trim_first_frame == region_left->last_frame() + 1)) {
868                         regions_touching = true;
869                 }
870
871                 // Only trim region on the left if the first frame has gone beyond the left region's last frame.
872                 if (region_left != 0 && (region_left->last_frame() > _region->first_frame() || regions_touching)) {
873                         region_left->trim_end (_region->first_frame() - 1);
874                 }
875         }
876
877         region_changed (ARDOUR::bounds_change);
878
879         return (pre_trim_first_frame != _region->first_frame());  //return true if we actually changed something
880 }
881
882 bool
883 RegionView::trim_end (framepos_t new_bound, bool no_overlap)
884 {
885         if (_region->locked()) {
886                 return false;
887         }
888
889         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
890         double const speed = rtv.track()->speed ();
891
892         framepos_t const pre_trim_last_frame = _region->last_frame();
893
894         _region->trim_end ((framepos_t) (new_bound * speed));
895
896         if (no_overlap) {
897                 // Get the next region on the right of this region and shrink/expand it.
898                 boost::shared_ptr<Playlist> playlist (_region->playlist());
899                 boost::shared_ptr<Region> region_right = playlist->find_next_region (pre_trim_last_frame, Start, 1);
900
901                 bool regions_touching = false;
902
903                 if (region_right != 0 && (pre_trim_last_frame == region_right->first_frame() - 1)) {
904                         regions_touching = true;
905                 }
906
907                 // Only trim region on the right if the last frame has gone beyond the right region's first frame.
908                 if (region_right != 0 && (region_right->first_frame() < _region->last_frame() || regions_touching)) {
909                         region_right->trim_front (_region->last_frame() + 1);
910                 }
911
912                 region_changed (ARDOUR::bounds_change);
913
914         } else {
915                 region_changed (PropertyChange (ARDOUR::Properties::length));
916         }
917
918         return (pre_trim_last_frame != _region->last_frame());  //return true if we actually changed something
919 }
920
921
922 void
923 RegionView::thaw_after_trim ()
924 {
925         if (_region->locked()) {
926                 return;
927         }
928
929         _region->resume_property_changes ();
930 }
931
932
933 void
934 RegionView::move_contents (frameoffset_t distance)
935 {
936         if (_region->locked()) {
937                 return;
938         }
939         _region->move_start (distance);
940         region_changed (PropertyChange (ARDOUR::Properties::start));
941 }
942
943 /** Snap a frame offset within our region using the current snap settings.
944  *  @param x Frame offset from this region's position.
945  *  @return Snapped frame offset from this region's position.
946  */
947 frameoffset_t
948 RegionView::snap_frame_to_frame (frameoffset_t x) const
949 {
950         PublicEditor& editor = trackview.editor();
951
952         /* x is region relative, convert it to global absolute frames */
953         framepos_t const session_frame = x + _region->position();
954
955         /* try a snap in either direction */
956         framepos_t frame = session_frame;
957         editor.snap_to (frame, 0);
958
959         /* if we went off the beginning of the region, snap forwards */
960         if (frame < _region->position ()) {
961                 frame = session_frame;
962                 editor.snap_to (frame, 1);
963         }
964
965         /* back to region relative */
966         return frame - _region->position();
967 }