Add select all / deselect all to timespan section of export dialogue (#4273).
[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/audioregion.h"
30 #include "ardour/audiosource.h"
31 #include "ardour/session.h"
32
33 #include "ardour_ui.h"
34 #include "global_signals.h"
35 #include "canvas-noevent-text.h"
36 #include "streamview.h"
37 #include "region_view.h"
38 #include "automation_region_view.h"
39 #include "route_time_axis.h"
40 #include "simplerect.h"
41 #include "simpleline.h"
42 #include "waveview.h"
43 #include "public_editor.h"
44 #include "region_editor.h"
45 #include "ghostregion.h"
46 #include "route_time_axis.h"
47 #include "ui_config.h"
48 #include "utils.h"
49 #include "rgb_macros.h"
50 #include "gui_thread.h"
51
52 #include "i18n.h"
53
54 using namespace std;
55 using namespace ARDOUR;
56 using namespace PBD;
57 using namespace Editing;
58 using namespace Gtk;
59 using namespace ArdourCanvas;
60
61 static const int32_t sync_mark_width = 9;
62
63 PBD::Signal1<void,RegionView*> RegionView::RegionViewGoingAway;
64
65 RegionView::RegionView (ArdourCanvas::Group*              parent,
66                         TimeAxisView&                     tv,
67                         boost::shared_ptr<ARDOUR::Region> r,
68                         double                            spu,
69                         Gdk::Color const &                basic_color,
70                         bool                              automation)
71         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), false, automation,
72                             TimeAxisViewItem::Visibility (TimeAxisViewItem::ShowNameText|
73                                                           TimeAxisViewItem::ShowNameHighlight| TimeAxisViewItem::ShowFrame))
74         , _region (r)
75         , sync_mark(0)
76         , sync_line(0)
77         , editor(0)
78         , current_visible_sync_position(0.0)
79         , valid(false)
80         , _enable_display(false)
81         , _pixel_width(1.0)
82         , in_destructor(false)
83         , wait_for_data(false)
84         , _silence_text (0)
85         , _region_relative_time_converter(r->session().tempo_map(), r->position())
86         , _source_relative_time_converter(r->session().tempo_map(), r->position() - r->start())
87 {
88         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), ui_bind (&RegionView::remove_ghost, this, _1), gui_context());
89 }
90
91 RegionView::RegionView (const RegionView& other)
92         : sigc::trackable(other)
93         , TimeAxisViewItem (other)
94         , _silence_text (0)
95         , _region_relative_time_converter(other.region_relative_time_converter())
96         , _source_relative_time_converter(other.source_relative_time_converter())
97 {
98         /* derived concrete type will call init () */
99
100         _region = other._region;
101         current_visible_sync_position = other.current_visible_sync_position;
102         valid = false;
103         _pixel_width = other._pixel_width;
104
105         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), ui_bind (&RegionView::remove_ghost, this, _1), gui_context());
106 }
107
108 RegionView::RegionView (const RegionView& other, boost::shared_ptr<Region> other_region)
109         : sigc::trackable(other)
110         , TimeAxisViewItem (other)
111         , _silence_text (0)
112         , _region_relative_time_converter(other_region->session().tempo_map(), other_region->position())
113         , _source_relative_time_converter(other_region->session().tempo_map(), other_region->position() - other_region->start())
114 {
115         /* this is a pseudo-copy constructor used when dragging regions
116            around on the canvas.
117         */
118
119         /* derived concrete type will call init () */
120
121         _region = other_region;
122         current_visible_sync_position = other.current_visible_sync_position;
123         valid = false;
124         _pixel_width = other._pixel_width;
125
126         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), ui_bind (&RegionView::remove_ghost, this, _1), gui_context());
127 }
128
129 RegionView::RegionView (ArdourCanvas::Group*         parent,
130                         TimeAxisView&                tv,
131                         boost::shared_ptr<ARDOUR::Region> r,
132                         double                       spu,
133                         Gdk::Color const &           basic_color,
134                         bool                         recording,
135                         TimeAxisViewItem::Visibility visibility)
136         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), recording, false, visibility)
137         , _region (r)
138         , sync_mark(0)
139         , sync_line(0)
140         , editor(0)
141         , current_visible_sync_position(0.0)
142         , valid(false)
143         , _enable_display(false)
144         , _pixel_width(1.0)
145         , in_destructor(false)
146         , wait_for_data(false)
147         , _silence_text (0)
148         , _region_relative_time_converter(r->session().tempo_map(), r->position())
149         , _source_relative_time_converter(r->session().tempo_map(), r->position() - r->start())
150 {
151 }
152
153 void
154 RegionView::init (Gdk::Color const & basic_color, bool wfd)
155 {
156         editor        = 0;
157         valid         = true;
158         in_destructor = false;
159         wait_for_data = wfd;
160         sync_mark     = 0;
161         sync_line     = 0;
162         sync_mark     = 0;
163         sync_line     = 0;
164
165         compute_colors (basic_color);
166
167         if (name_highlight) {
168                 name_highlight->set_data ("regionview", this);
169                 name_highlight->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_name_highlight_event), name_highlight, this));
170
171                 if (frame_handle_start) {
172                         frame_handle_start->set_data ("regionview", this);
173                         frame_handle_start->set_data ("isleft", (void*) 1);
174                         frame_handle_start->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_start, this));
175                         frame_handle_start->raise_to_top();
176                 }
177
178                 if (frame_handle_end) {
179                         frame_handle_end->set_data ("regionview", this);
180                         frame_handle_end->set_data ("isleft", (void*) 0);
181                         frame_handle_end->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_end, this));
182                         frame_handle_end->raise_to_top();
183                 }
184         }
185
186         if (name_pixbuf) {
187                 name_pixbuf->set_data ("regionview", this);
188                 name_pixbuf->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_name_event), name_pixbuf, 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), ui_bind (&RegionView::region_changed, this, _1), gui_context());
198
199         group->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_event), group, this));
200
201         set_colors ();
202
203         ColorsChanged.connect (sigc::mem_fun (*this, &RegionView::color_handler));
204
205         /* XXX sync mark drag? */
206 }
207
208 RegionView::~RegionView ()
209 {
210         in_destructor = true;
211
212         for (vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
213                 delete *g;
214         }
215
216         for (list<ArdourCanvas::SimpleRect*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
217                 delete *i;
218         }
219
220         drop_silent_frames ();
221
222         delete editor;
223 }
224
225 void
226 RegionView::set_silent_frames (const AudioIntervalResult& silences, double /*threshold*/)
227 {
228         framecnt_t shortest = max_framecnt;
229
230         /* remove old silent frames */
231         drop_silent_frames ();
232
233         if (silences.empty()) {
234                 return;
235         }
236
237         uint32_t const color = ARDOUR_UI::config()->canvasvar_Silence.get();
238
239         for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
240
241                 ArdourCanvas::SimpleRect* cr = new ArdourCanvas::SimpleRect (*group);
242                 _silent_frames.push_back (cr);
243
244                 /* coordinates for the rect are relative to the regionview origin */
245
246                 cr->property_x1() = trackview.editor().frame_to_pixel (i->first - _region->start());
247                 cr->property_x2() = trackview.editor().frame_to_pixel (i->second - _region->start());
248                 cr->property_y1() = 1;
249                 cr->property_y2() = _height - 2;
250                 cr->property_outline_pixels() = 0;
251                 cr->property_fill_color_rgba () = 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::NoEventText (*group);
275         _silence_text->property_font_desc() = get_font_for_style (N_("SilenceText"));
276         _silence_text->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SilenceText.get();
277         _silence_text->property_anchor() = ANCHOR_NW;
278
279         /* both positions are relative to the region start offset in source */
280
281         _silence_text->property_x() = trackview.editor().frame_to_pixel (silences.front().first - _region->start()) + 10.0;
282         _silence_text->property_y() = 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->property_text() = text.c_str ();
323 }
324
325 void
326 RegionView::hide_silent_frames ()
327 {
328         for (list<ArdourCanvas::SimpleRect*>::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::SimpleRect*>::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 }
391
392 void
393 RegionView::region_locked ()
394 {
395         /* name will show locked status */
396         region_renamed ();
397 }
398
399 void
400 RegionView::region_resized (const PropertyChange& what_changed)
401 {
402         double unit_length;
403
404         if (what_changed.contains (ARDOUR::Properties::position)) {
405                 set_position (_region->position(), 0);
406                 _region_relative_time_converter.set_origin_b (_region->position());
407         }
408
409         if (what_changed.contains (ARDOUR::Properties::start) || what_changed.contains (ARDOUR::Properties::position)) {
410                 _source_relative_time_converter.set_origin_b (_region->position() - _region->start());
411         }
412
413         PropertyChange s_and_l;
414         s_and_l.add (ARDOUR::Properties::start);
415         s_and_l.add (ARDOUR::Properties::length);
416
417         if (what_changed.contains (s_and_l)) {
418
419                 set_duration (_region->length(), 0);
420
421                 unit_length = _region->length() / samples_per_unit;
422
423                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
424
425                         (*i)->set_duration (unit_length);
426
427                 }
428         }
429 }
430
431 void
432 RegionView::reset_width_dependent_items (double pixel_width)
433 {
434         TimeAxisViewItem::reset_width_dependent_items (pixel_width);
435         _pixel_width = pixel_width;
436 }
437
438 void
439 RegionView::region_muted ()
440 {
441         set_frame_color ();
442         region_renamed ();
443 }
444
445 void
446 RegionView::region_opacity ()
447 {
448         set_frame_color ();
449 }
450
451 void
452 RegionView::raise_to_top ()
453 {
454         _region->raise_to_top ();
455 }
456
457 void
458 RegionView::lower_to_bottom ()
459 {
460         _region->lower_to_bottom ();
461 }
462
463 bool
464 RegionView::set_position (framepos_t pos, void* /*src*/, double* ignored)
465 {
466         double delta;
467         bool ret;
468
469         if (!(ret = TimeAxisViewItem::set_position (pos, this, &delta))) {
470                 return false;
471         }
472
473         if (ignored) {
474                 *ignored = delta;
475         }
476
477         if (delta) {
478                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
479                         (*i)->group->move (delta, 0.0);
480                 }
481         }
482
483         return ret;
484 }
485
486 void
487 RegionView::set_samples_per_unit (gdouble spu)
488 {
489         TimeAxisViewItem::set_samples_per_unit (spu);
490
491         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
492                 (*i)->set_samples_per_unit (spu);
493                 (*i)->set_duration (_region->length() / samples_per_unit);
494         }
495
496         region_sync_changed ();
497 }
498
499 bool
500 RegionView::set_duration (framecnt_t frames, void *src)
501 {
502         if (!TimeAxisViewItem::set_duration (frames, src)) {
503                 return false;
504         }
505
506         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
507                 (*i)->set_duration (_region->length() / samples_per_unit);
508         }
509
510         return true;
511 }
512
513 void
514 RegionView::set_colors ()
515 {
516         TimeAxisViewItem::set_colors ();
517
518         if (sync_mark) {
519                 sync_mark->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
520                 sync_line->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
521         }
522 }
523
524 void
525 RegionView::set_frame_color ()
526 {
527         if (_region->opaque()) {
528                 fill_opacity = 130;
529         } else {
530                 fill_opacity = 60;
531         }
532
533         TimeAxisViewItem::set_frame_color ();
534 }
535
536 void
537 RegionView::fake_set_opaque (bool yn)
538 {
539        if (yn) {
540                fill_opacity = 130;
541        } else {
542                fill_opacity = 60;
543        }
544
545        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 {
583                 str = _region->name();
584         }
585
586         if (_region->muted()) {
587                 str = string ("!") + str;
588         }
589
590         return str;
591 }
592
593 void
594 RegionView::region_renamed ()
595 {
596         std::string str = make_name ();
597
598         set_item_name (str, this);
599         set_name_text (str);
600         reset_width_dependent_items (_pixel_width);
601 }
602
603 void
604 RegionView::region_sync_changed ()
605 {
606         int sync_dir;
607         framecnt_t sync_offset;
608
609         sync_offset = _region->sync_offset (sync_dir);
610
611         if (sync_offset == 0) {
612                 /* no need for a sync mark */
613                 if (sync_mark) {
614                         sync_mark->hide();
615                         sync_line->hide ();
616                 }
617                 return;
618         }
619
620         if (!sync_mark) {
621
622                 /* points set below */
623
624                 sync_mark = new ArdourCanvas::Polygon (*group);
625                 sync_mark->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
626
627                 sync_line = new ArdourCanvas::Line (*group);
628                 sync_line->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
629                 sync_line->property_width_pixels() = 1;
630         }
631
632         /* this has to handle both a genuine change of position, a change of samples_per_unit,
633            and a change in the bounds of the _region->
634          */
635
636         if (sync_offset == 0) {
637
638                 /* no sync mark - its the start of the region */
639
640                 sync_mark->hide();
641                 sync_line->hide ();
642
643         } else {
644
645                 if ((sync_dir < 0) || ((sync_dir > 0) && (sync_offset > _region->length()))) {
646
647                         /* no sync mark - its out of the bounds of the region */
648
649                         sync_mark->hide();
650                         sync_line->hide ();
651
652                 } else {
653
654                         /* lets do it */
655
656                         Points points;
657
658                         //points = sync_mark->property_points().get_value();
659
660                         double offset = sync_offset / samples_per_unit;
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)/2), 1));
663                         points.push_back (Gnome::Art::Point (offset, sync_mark_width - 1));
664                         points.push_back (Gnome::Art::Point (offset - ((sync_mark_width-1)/2), 1));
665                         sync_mark->property_points().set_value (points);
666                         sync_mark->show ();
667
668                         points.clear ();
669                         points.push_back (Gnome::Art::Point (offset, 0));
670                         points.push_back (Gnome::Art::Point (offset, trackview.current_height() - NAME_HIGHLIGHT_SIZE));
671
672                         sync_line->property_points().set_value (points);
673                         sync_line->show ();
674                 }
675         }
676 }
677
678 void
679 RegionView::move (double x_delta, double y_delta)
680 {
681         if (!_region->can_move() || (x_delta == 0 && y_delta == 0)) {
682                 return;
683         }
684
685         get_canvas_group()->move (x_delta, y_delta);
686
687         /* note: ghosts never leave their tracks so y_delta for them is always zero */
688
689         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
690                 (*i)->group->move (x_delta, 0.0);
691         }
692 }
693
694 void
695 RegionView::remove_ghost_in (TimeAxisView& tv)
696 {
697         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
698                 if (&(*i)->trackview == &tv) {
699                         delete *i;
700                         break;
701                 }
702         }
703 }
704
705 void
706 RegionView::remove_ghost (GhostRegion* ghost)
707 {
708         if (in_destructor) {
709                 return;
710         }
711
712         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
713                 if (*i == ghost) {
714                         ghosts.erase (i);
715                         break;
716                 }
717         }
718 }
719
720 uint32_t
721 RegionView::get_fill_color ()
722 {
723         return fill_color;
724 }
725
726 void
727 RegionView::set_height (double h)
728 {
729         TimeAxisViewItem::set_height(h);
730
731         if (sync_line) {
732                 Points points;
733                 int sync_dir;
734                 framecnt_t sync_offset;
735                 sync_offset = _region->sync_offset (sync_dir);
736                 double offset = sync_offset / samples_per_unit;
737
738                 points.push_back (Gnome::Art::Point (offset, 0));
739                 points.push_back (Gnome::Art::Point (offset, h - NAME_HIGHLIGHT_SIZE));
740                 sync_line->property_points().set_value (points);
741         }
742
743         for (list<ArdourCanvas::SimpleRect*>::iterator i = _coverage_frames.begin(); i != _coverage_frames.end(); ++i) {
744                 (*i)->property_y2() = h + 1;
745         }
746
747         for (list<ArdourCanvas::SimpleRect*>::iterator i = _silent_frames.begin(); i != _silent_frames.end(); ++i) {
748                 (*i)->property_y2() = h + 1;
749         }
750
751 }
752
753 /** Remove old coverage frames and make new ones, if we're in a LayerDisplay mode
754  *  which uses them. */
755 void
756 RegionView::update_coverage_frames (LayerDisplay d)
757 {
758         /* remove old coverage frames */
759         for (list<ArdourCanvas::SimpleRect*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
760                 delete *i;
761         }
762
763         _coverage_frames.clear ();
764
765         if (d != Stacked) {
766                 /* don't do coverage frames unless we're in stacked mode */
767                 return;
768         }
769
770         boost::shared_ptr<Playlist> pl (_region->playlist ());
771         if (!pl) {
772                 return;
773         }
774
775         framepos_t const position = _region->first_frame ();
776         framepos_t t = position;
777         framepos_t const end = _region->last_frame ();
778
779         ArdourCanvas::SimpleRect* cr = 0;
780         bool me = false;
781
782         uint32_t const color = frame->property_fill_color_rgba ();
783         uint32_t const base_alpha = UINT_RGBA_A (color);
784
785         while (t < end) {
786
787                 t++;
788
789                 /* is this region is on top at time t? */
790                 bool const new_me = (pl->top_unmuted_region_at (t) == _region);
791
792                 /* finish off any old rect, if required */
793                 if (cr && me != new_me) {
794                         cr->property_x2() = trackview.editor().frame_to_pixel (t - position);
795                 }
796
797                 /* start off any new rect, if required */
798                 if (cr == 0 || me != new_me) {
799                         cr = new ArdourCanvas::SimpleRect (*group);
800                         _coverage_frames.push_back (cr);
801                         cr->property_x1() = trackview.editor().frame_to_pixel (t - position);
802                         cr->property_y1() = 1;
803                         cr->property_y2() = _height + 1;
804                         cr->property_outline_pixels() = 0;
805                         /* areas that will be played get a lower alpha */
806                         uint32_t alpha = base_alpha;
807                         if (new_me) {
808                                 alpha /= 2;
809                         }
810                         cr->property_fill_color_rgba () = UINT_RGBA_CHANGE_A (color, alpha);
811                 }
812
813                 t = pl->find_next_region_boundary (t, 1);
814                 me = new_me;
815         }
816
817         if (cr) {
818                 /* finish off the last rectangle */
819                 cr->property_x2() = trackview.editor().frame_to_pixel (end - position);
820         }
821
822         if (frame_handle_start) {
823                 frame_handle_start->raise_to_top ();
824         }
825
826         if (frame_handle_end) {
827                 frame_handle_end->raise_to_top ();
828         }
829
830         if (name_highlight) {
831                 name_highlight->raise_to_top ();
832         }
833
834         if (name_pixbuf) {
835                 name_pixbuf->raise_to_top ();
836         }
837 }
838
839 void
840 RegionView::trim_front (framepos_t new_bound, bool no_overlap)
841 {
842         if (_region->locked()) {
843                 return;
844         }
845
846         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
847         double const speed = rtv.track()->speed ();
848
849         framepos_t const pre_trim_first_frame = _region->first_frame();
850
851         _region->trim_front ((framepos_t) (new_bound * speed));
852
853         if (no_overlap) {
854                 // Get the next region on the left of this region and shrink/expand it.
855                 boost::shared_ptr<Playlist> playlist (_region->playlist());
856                 boost::shared_ptr<Region> region_left = playlist->find_next_region (pre_trim_first_frame, End, 0);
857
858                 bool regions_touching = false;
859
860                 if (region_left != 0 && (pre_trim_first_frame == region_left->last_frame() + 1)) {
861                         regions_touching = true;
862                 }
863
864                 // Only trim region on the left if the first frame has gone beyond the left region's last frame.
865                 if (region_left != 0 && (region_left->last_frame() > _region->first_frame() || regions_touching)) {
866                         region_left->trim_end (_region->first_frame() - 1);
867                 }
868         }
869
870         region_changed (ARDOUR::bounds_change);
871 }
872
873 void
874 RegionView::trim_end (framepos_t new_bound, bool no_overlap)
875 {
876         if (_region->locked()) {
877                 return;
878         }
879
880         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
881         double const speed = rtv.track()->speed ();
882
883         framepos_t const pre_trim_last_frame = _region->last_frame();
884
885         _region->trim_end ((framepos_t) (new_bound * speed));
886
887         if (no_overlap) {
888                 // Get the next region on the right of this region and shrink/expand it.
889                 boost::shared_ptr<Playlist> playlist (_region->playlist());
890                 boost::shared_ptr<Region> region_right = playlist->find_next_region (pre_trim_last_frame, Start, 1);
891
892                 bool regions_touching = false;
893
894                 if (region_right != 0 && (pre_trim_last_frame == region_right->first_frame() - 1)) {
895                         regions_touching = true;
896                 }
897
898                 // Only trim region on the right if the last frame has gone beyond the right region's first frame.
899                 if (region_right != 0 && (region_right->first_frame() < _region->last_frame() || regions_touching)) {
900                         region_right->trim_front (_region->last_frame() + 1);
901                 }
902
903                 region_changed (ARDOUR::bounds_change);
904
905         } else {
906                 region_changed (PropertyChange (ARDOUR::Properties::length));
907         }
908 }
909
910
911 void
912 RegionView::thaw_after_trim ()
913 {
914         if (_region->locked()) {
915                 return;
916         }
917
918         _region->resume_property_changes ();
919 }
920
921
922 void
923 RegionView::trim_contents (framepos_t frame_delta, bool left_direction, bool swap_direction)
924 {
925         if (_region->locked()) {
926                 return;
927         }
928
929         framepos_t new_bound;
930
931         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
932         double const speed = rtv.track()->speed ();
933
934         if (left_direction) {
935                 if (swap_direction) {
936                         new_bound = (framepos_t) (_region->position() / speed) + frame_delta;
937                 } else {
938                         new_bound = (framepos_t) (_region->position() / speed) - frame_delta;
939                 }
940         } else {
941                 if (swap_direction) {
942                         new_bound = (framepos_t) (_region->position() / speed) - frame_delta;
943                 } else {
944                         new_bound = (framepos_t) (_region->position() / speed) + frame_delta;
945                 }
946         }
947
948         _region->trim_start ((framepos_t) (new_bound * speed));
949         region_changed (PropertyChange (ARDOUR::Properties::start));
950 }
951
952 /** Snap a frame offset within our region using the current snap settings.
953  *  @param x Frame offset from this region's position.
954  *  @return Snapped frame offset from this region's position.
955  */
956 frameoffset_t
957 RegionView::snap_frame_to_frame (frameoffset_t x) const
958 {
959         PublicEditor& editor = trackview.editor();
960
961         /* x is region relative, convert it to global absolute frames */
962         framepos_t const session_frame = x + _region->position();
963
964         /* try a snap in either direction */
965         framepos_t frame = session_frame;
966         editor.snap_to (frame, 0);
967
968         /* if we went off the beginning of the region, snap forwards */
969         if (frame < _region->position ()) {
970                 frame = session_frame;
971                 editor.snap_to (frame, 1);
972         }
973
974         /* back to region relative */
975         return frame - _region->position();
976 }