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