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