Move UIConfiguration Singleton into UIConfiguration header
[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 <algorithm>
22
23 #include <gtkmm.h>
24
25 #include <gtkmm2ext/gtk_ui.h>
26
27 #include "ardour/playlist.h"
28 #include "ardour/session.h"
29
30 #include "canvas/polygon.h"
31 #include "canvas/debug.h"
32 #include "canvas/pixbuf.h"
33 #include "canvas/text.h"
34 #include "canvas/line.h"
35 #include "canvas/utils.h"
36 #include "canvas/colors.h"
37
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 ARDOUR_UI_UTILS;
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::Container*          parent,
66                         TimeAxisView&                     tv,
67                         boost::shared_ptr<ARDOUR::Region> r,
68                         double                            spu,
69                         uint32_t                          basic_color,
70                         bool                              automation)
71         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), false, automation,
72                             (automation ? TimeAxisViewItem::ShowFrame :
73                              TimeAxisViewItem::Visibility (TimeAxisViewItem::ShowNameText|
74                                                            TimeAxisViewItem::ShowNameHighlight| TimeAxisViewItem::ShowFrame)))
75         , _region (r)
76         , sync_mark(0)
77         , sync_line(0)
78         , editor(0)
79         , current_visible_sync_position(0.0)
80         , valid(false)
81         , _enable_display(false)
82         , _pixel_width(1.0)
83         , in_destructor(false)
84         , wait_for_data(false)
85         , _silence_text (0)
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 {
95         /* derived concrete type will call init () */
96
97         _region = other._region;
98         current_visible_sync_position = other.current_visible_sync_position;
99         valid = false;
100         _pixel_width = other._pixel_width;
101
102         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
103 }
104
105 RegionView::RegionView (const RegionView& other, boost::shared_ptr<Region> other_region)
106         : sigc::trackable(other)
107         , TimeAxisViewItem (other)
108         , _silence_text (0)
109 {
110         /* this is a pseudo-copy constructor used when dragging regions
111            around on the canvas.
112         */
113
114         /* derived concrete type will call init () */
115
116         _region = other_region;
117         current_visible_sync_position = other.current_visible_sync_position;
118         valid = false;
119         _pixel_width = other._pixel_width;
120
121         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
122 }
123
124 RegionView::RegionView (ArdourCanvas::Container*          parent,
125                         TimeAxisView&                     tv,
126                         boost::shared_ptr<ARDOUR::Region> r,
127                         double                            spu,
128                         uint32_t                          basic_color,
129                         bool                              recording,
130                         TimeAxisViewItem::Visibility      visibility)
131         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), recording, false, visibility)
132         , _region (r)
133         , sync_mark(0)
134         , sync_line(0)
135         , editor(0)
136         , current_visible_sync_position(0.0)
137         , valid(false)
138         , _enable_display(false)
139         , _pixel_width(1.0)
140         , in_destructor(false)
141         , wait_for_data(false)
142         , _silence_text (0)
143 {
144 }
145
146 void
147 RegionView::init (bool wfd)
148 {
149         editor        = 0;
150         valid         = true;
151         in_destructor = false;
152         wait_for_data = wfd;
153         sync_mark     = 0;
154         sync_line     = 0;
155         sync_mark     = 0;
156         sync_line     = 0;
157
158         if (name_highlight) {
159                 name_highlight->set_data ("regionview", this);
160                 name_highlight->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_name_highlight_event), name_highlight, this));
161         }
162         
163         if (frame_handle_start) {
164                 frame_handle_start->set_data ("regionview", this);
165                 frame_handle_start->set_data ("isleft", (void*) 1);
166                 frame_handle_start->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_start, this));
167                 frame_handle_start->raise_to_top();
168         }
169         
170         if (frame_handle_end) {
171                 frame_handle_end->set_data ("regionview", this);
172                 frame_handle_end->set_data ("isleft", (void*) 0);
173                 frame_handle_end->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_end, this));
174                 frame_handle_end->raise_to_top();
175         }
176
177         if (name_text) {
178                 name_text->set_data ("regionview", this);
179                 name_text->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_name_event), name_text, this));
180         }
181
182         if (wfd) {
183                 _enable_display = true;
184         }
185
186         set_height (trackview.current_height());
187
188         _region->PropertyChanged.connect (*this, invalidator (*this), boost::bind (&RegionView::region_changed, this, _1), gui_context());
189
190         set_colors ();
191
192         UIConfiguration::instance().ColorsChanged.connect (sigc::mem_fun (*this, &RegionView::color_handler));
193
194         /* XXX sync mark drag? */
195 }
196
197 RegionView::~RegionView ()
198 {
199         in_destructor = true;
200
201         for (vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
202                 delete *g;
203         }
204
205         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
206                 delete *i;
207         }
208
209         drop_silent_frames ();
210
211         delete editor;
212 }
213
214 bool
215 RegionView::canvas_group_event (GdkEvent* event)
216 {
217         if (!in_destructor) {
218                 return trackview.editor().canvas_region_view_event (event, group, this);
219         }
220         return false;
221 }
222
223 void
224 RegionView::set_silent_frames (const AudioIntervalResult& silences, double /*threshold*/)
225 {
226         framecnt_t shortest = max_framecnt;
227
228         /* remove old silent frames */
229         drop_silent_frames ();
230
231         if (silences.empty()) {
232                 return;
233         }
234
235         uint32_t const color = UIConfiguration::instance().color_mod ("silence", "silence");
236
237         for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
238
239                 ArdourCanvas::Rectangle* cr = new ArdourCanvas::Rectangle (group);
240                 cr->set_ignore_events (true);
241                 _silent_frames.push_back (cr);
242
243                 /* coordinates for the rect are relative to the regionview origin */
244
245                 cr->set_x0 (trackview.editor().sample_to_pixel (i->first - _region->start()));
246                 cr->set_x1 (trackview.editor().sample_to_pixel (i->second - _region->start()));
247                 cr->set_y0 (1);
248                 cr->set_y1 (_height - 2);
249                 cr->set_outline (false);
250                 cr->set_fill_color (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::Text (group);
274         _silence_text->set_ignore_events (true);
275         _silence_text->set_font_description (get_font_for_style (N_("SilenceText")));
276         _silence_text->set_color (UIConfiguration::instance().color ("silence text"));
277
278         /* both positions are relative to the region start offset in source */
279
280         _silence_text->set_x_position (trackview.editor().sample_to_pixel (silences.front().first - _region->start()) + 10.0);
281         _silence_text->set_y_position (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->set (text);
322 }
323
324 void
325 RegionView::hide_silent_frames ()
326 {
327         for (list<ArdourCanvas::Rectangle*>::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::Rectangle*>::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         if (what_changed.contains (ARDOUR::Properties::locked)) {
390                 /* name will show locked status */
391                 region_renamed ();
392         }
393 }
394
395 void
396 RegionView::region_locked ()
397 {
398         /* name will show locked status */
399         region_renamed ();
400 }
401
402 void
403 RegionView::region_resized (const PropertyChange& what_changed)
404 {
405         double unit_length;
406
407         if (what_changed.contains (ARDOUR::Properties::position)) {
408                 set_position (_region->position(), 0);
409         }
410
411         PropertyChange s_and_l;
412         s_and_l.add (ARDOUR::Properties::start);
413         s_and_l.add (ARDOUR::Properties::length);
414
415         if (what_changed.contains (s_and_l)) {
416
417                 set_duration (_region->length(), 0);
418
419                 unit_length = _region->length() / samples_per_pixel;
420
421                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
422
423                         (*i)->set_duration (unit_length);
424
425                 }
426         }
427 }
428
429 void
430 RegionView::reset_width_dependent_items (double pixel_width)
431 {
432         TimeAxisViewItem::reset_width_dependent_items (pixel_width);
433         _pixel_width = pixel_width;
434 }
435
436 void
437 RegionView::region_muted ()
438 {
439         set_frame_color ();
440         region_renamed ();
441 }
442
443 void
444 RegionView::region_opacity ()
445 {
446         set_frame_color ();
447 }
448
449 void
450 RegionView::raise_to_top ()
451 {
452         _region->raise_to_top ();
453 }
454
455 void
456 RegionView::lower_to_bottom ()
457 {
458         _region->lower_to_bottom ();
459 }
460
461 bool
462 RegionView::set_position (framepos_t pos, void* /*src*/, double* ignored)
463 {
464         double delta;
465         bool ret;
466
467         if (!(ret = TimeAxisViewItem::set_position (pos, this, &delta))) {
468                 return false;
469         }
470
471         if (ignored) {
472                 *ignored = delta;
473         }
474
475         if (delta) {
476                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
477                         (*i)->group->move (ArdourCanvas::Duple (delta, 0.0));
478                 }
479         }
480
481         return ret;
482 }
483
484 void
485 RegionView::set_samples_per_pixel (double fpp)
486 {
487         TimeAxisViewItem::set_samples_per_pixel (fpp);
488
489         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
490                 (*i)->set_samples_per_pixel (fpp);
491                 (*i)->set_duration (_region->length() / fpp);
492         }
493
494         region_sync_changed ();
495 }
496
497 bool
498 RegionView::set_duration (framecnt_t frames, void *src)
499 {
500         if (!TimeAxisViewItem::set_duration (frames, src)) {
501                 return false;
502         }
503
504         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
505                 (*i)->set_duration (_region->length() / samples_per_pixel);
506         }
507
508         return true;
509 }
510
511 void
512 RegionView::set_colors ()
513 {
514         TimeAxisViewItem::set_colors ();
515         set_sync_mark_color ();
516 }
517
518 void
519 RegionView::set_sync_mark_color ()
520 {
521         if (sync_mark) {
522                 ArdourCanvas::Color c = UIConfiguration::instance().color ("sync mark");
523                 sync_mark->set_fill_color (c);
524                 sync_mark->set_outline_color (c);
525                 sync_line->set_outline_color (c);
526         }
527 }
528
529 uint32_t
530 RegionView::get_fill_color () const
531 {
532         ArdourCanvas::Color f = TimeAxisViewItem::get_fill_color();
533         char const *modname;
534         
535         if (_region->opaque()) {
536                 modname = "opaque region base";
537         } else {
538                 modname = "transparent region base";
539         }
540
541         return HSV(f).mod (UIConfiguration::instance().modifier (modname)).color ();
542 }
543
544 void
545 RegionView::show_region_editor ()
546 {
547         if (editor == 0) {
548                 editor = new RegionEditor (trackview.session(), region());
549         }
550
551         editor->present ();
552         editor->show_all();
553 }
554
555 void
556 RegionView::hide_region_editor()
557 {
558         if (editor) {
559                 editor->hide_all ();
560         }
561 }
562
563 std::string
564 RegionView::make_name () const
565 {
566         std::string str;
567
568         // XXX nice to have some good icons for this
569
570         if (_region->locked()) {
571                 str += '>';
572                 str += _region->name();
573                 str += '<';
574         } else if (_region->position_locked()) {
575                 str += '{';
576                 str += _region->name();
577                 str += '}';
578         } else if (_region->video_locked()) {
579                 str += '[';
580                 str += _region->name();
581                 str += ']';
582         } else {
583                 str = _region->name();
584         }
585
586         if (_region->muted()) {
587                 str = string ("!") + str;
588         }
589
590         return str;
591 }
592
593 void
594 RegionView::region_renamed ()
595 {
596         std::string str = make_name ();
597
598         set_item_name (str, this);
599         set_name_text (str);
600         reset_width_dependent_items (_pixel_width);
601 }
602
603 void
604 RegionView::region_sync_changed ()
605 {
606         int sync_dir;
607         framecnt_t sync_offset;
608
609         sync_offset = _region->sync_offset (sync_dir);
610
611         if (sync_offset == 0) {
612                 /* no need for a sync mark */
613                 if (sync_mark) {
614                         sync_mark->hide();
615                         sync_line->hide ();
616                 }
617                 return;
618         }
619
620         if (!sync_mark) {
621
622                 /* points set below */
623
624                 sync_mark = new ArdourCanvas::Polygon (group);
625                 CANVAS_DEBUG_NAME (sync_mark, string_compose ("sync mark for %1", get_item_name()));
626                 sync_line = new ArdourCanvas::Line (group);
627                 CANVAS_DEBUG_NAME (sync_line, string_compose ("sync mark for %1", get_item_name()));
628
629                 set_sync_mark_color ();
630         }
631
632         /* this has to handle both a genuine change of position, a change of samples_per_pixel
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_pixel;
661                         points.push_back (ArdourCanvas::Duple (offset - ((sync_mark_width-1)/2), 1));
662                         points.push_back (ArdourCanvas::Duple (offset + ((sync_mark_width-1)/2), 1));
663                         points.push_back (ArdourCanvas::Duple (offset, sync_mark_width - 1));
664                         points.push_back (ArdourCanvas::Duple (offset - ((sync_mark_width-1)/2), 1));
665                         sync_mark->set (points);
666                         sync_mark->show ();
667
668                         sync_line->set (ArdourCanvas::Duple (offset, 0), ArdourCanvas::Duple (offset, trackview.current_height() - NAME_HIGHLIGHT_SIZE));
669                         sync_line->show ();
670                 }
671         }
672 }
673
674 void
675 RegionView::move (double x_delta, double y_delta)
676 {
677         if (!_region->can_move() || (x_delta == 0 && y_delta == 0)) {
678                 return;
679         }
680
681         /* items will not prevent Item::move() moving
682          * them to a negative x-axis coordinate, which
683          * is legal, but we don't want that here.
684          */
685
686         ArdourCanvas::Item *item = get_canvas_group ();
687         
688         if (item->position().x + x_delta < 0) {
689                 x_delta = -item->position().x; /* move it to zero */
690         }
691
692         item->move (ArdourCanvas::Duple (x_delta, y_delta));
693
694         /* note: ghosts never leave their tracks so y_delta for them is always zero */
695
696         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
697                 (*i)->group->move (ArdourCanvas::Duple (x_delta, 0.0));
698         }
699 }
700
701 void
702 RegionView::remove_ghost_in (TimeAxisView& tv)
703 {
704         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
705                 if (&(*i)->trackview == &tv) {
706                         delete *i;
707                         break;
708                 }
709         }
710 }
711
712 void
713 RegionView::remove_ghost (GhostRegion* ghost)
714 {
715         if (in_destructor) {
716                 return;
717         }
718
719         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
720                 if (*i == ghost) {
721                         ghosts.erase (i);
722                         break;
723                 }
724         }
725 }
726
727 void
728 RegionView::set_height (double h)
729 {
730         TimeAxisViewItem::set_height(h);
731
732         if (sync_line) {
733                 Points points;
734                 int sync_dir;
735                 framecnt_t sync_offset;
736                 sync_offset = _region->sync_offset (sync_dir);
737                 double offset = sync_offset / samples_per_pixel;
738
739                 sync_line->set (
740                         ArdourCanvas::Duple (offset, 0),
741                         ArdourCanvas::Duple (offset, h - NAME_HIGHLIGHT_SIZE)
742                         );
743         }
744
745         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin(); i != _coverage_frames.end(); ++i) {
746                 (*i)->set_y1 (h + 1);
747         }
748
749         for (list<ArdourCanvas::Rectangle*>::iterator i = _silent_frames.begin(); i != _silent_frames.end(); ++i) {
750                 (*i)->set_y1 (h + 1);
751         }
752
753 }
754
755 /** Remove old coverage frames and make new ones, if we're in a LayerDisplay mode
756  *  which uses them. */
757 void
758 RegionView::update_coverage_frames (LayerDisplay d)
759 {
760         /* remove old coverage frames */
761         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
762                 delete *i;
763         }
764
765         _coverage_frames.clear ();
766
767         if (d != Stacked) {
768                 /* don't do coverage frames unless we're in stacked mode */
769                 return;
770         }
771
772         boost::shared_ptr<Playlist> pl (_region->playlist ());
773         if (!pl) {
774                 return;
775         }
776
777         framepos_t const position = _region->first_frame ();
778         framepos_t t = position;
779         framepos_t const end = _region->last_frame ();
780
781         ArdourCanvas::Rectangle* cr = 0;
782         bool me = false;
783
784         /* the color that will be used to show parts of regions that will not be heard */
785         uint32_t const non_playing_color = UIConfiguration::instance().color_mod ("covered region", "covered region base");
786
787         while (t < end) {
788
789                 t++;
790
791                 /* is this region is on top at time t? */
792                 bool const new_me = (pl->top_unmuted_region_at (t) == _region);
793
794                 /* finish off any old rect, if required */
795                 if (cr && me != new_me) {
796                         cr->set_x1 (trackview.editor().sample_to_pixel (t - position));
797                 }
798
799                 /* start off any new rect, if required */
800                 if (cr == 0 || me != new_me) {
801                         cr = new ArdourCanvas::Rectangle (group);
802                         _coverage_frames.push_back (cr);
803                         cr->set_x0 (trackview.editor().sample_to_pixel (t - position));
804                         cr->set_y0 (1);
805                         cr->set_y1 (_height + 1);
806                         cr->set_outline (false);
807                         cr->set_ignore_events (true);
808                         if (new_me) {
809                                 cr->set_fill_color (UINT_RGBA_CHANGE_A (non_playing_color, 0));
810                         } else {
811                                 cr->set_fill_color (non_playing_color);
812                         }
813                 }
814
815                 t = pl->find_next_region_boundary (t, 1);
816                 me = new_me;
817         }
818
819         if (cr) {
820                 /* finish off the last rectangle */
821                 cr->set_x1 (trackview.editor().sample_to_pixel (end - position));
822         }
823
824         if (frame_handle_start) {
825                 frame_handle_start->raise_to_top ();
826         }
827
828         if (frame_handle_end) {
829                 frame_handle_end->raise_to_top ();
830         }
831
832         if (name_highlight) {
833                 name_highlight->raise_to_top ();
834         }
835
836         if (name_text) {
837                 name_text->raise_to_top ();
838         }
839 }
840
841 bool
842 RegionView::trim_front (framepos_t new_bound, bool no_overlap)
843 {
844         if (_region->locked()) {
845                 return false;
846         }
847
848         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
849         double const speed = rtv.track()->speed ();
850
851         framepos_t const pre_trim_first_frame = _region->first_frame();
852
853         _region->trim_front ((framepos_t) (new_bound * speed));
854
855         if (no_overlap) {
856                 // Get the next region on the left of this region and shrink/expand it.
857                 boost::shared_ptr<Playlist> playlist (_region->playlist());
858                 boost::shared_ptr<Region> region_left = playlist->find_next_region (pre_trim_first_frame, End, 0);
859
860                 bool regions_touching = false;
861
862                 if (region_left != 0 && (pre_trim_first_frame == region_left->last_frame() + 1)) {
863                         regions_touching = true;
864                 }
865
866                 // Only trim region on the left if the first frame has gone beyond the left region's last frame.
867                 if (region_left != 0 && (region_left->last_frame() > _region->first_frame() || regions_touching)) {
868                         region_left->trim_end (_region->first_frame() - 1);
869                 }
870         }
871
872         region_changed (ARDOUR::bounds_change);
873
874         return (pre_trim_first_frame != _region->first_frame());  //return true if we actually changed something
875 }
876
877 bool
878 RegionView::trim_end (framepos_t new_bound, bool no_overlap)
879 {
880         if (_region->locked()) {
881                 return false;
882         }
883
884         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
885         double const speed = rtv.track()->speed ();
886
887         framepos_t const pre_trim_last_frame = _region->last_frame();
888
889         _region->trim_end ((framepos_t) (new_bound * speed));
890
891         if (no_overlap) {
892                 // Get the next region on the right of this region and shrink/expand it.
893                 boost::shared_ptr<Playlist> playlist (_region->playlist());
894                 boost::shared_ptr<Region> region_right = playlist->find_next_region (pre_trim_last_frame, Start, 1);
895
896                 bool regions_touching = false;
897
898                 if (region_right != 0 && (pre_trim_last_frame == region_right->first_frame() - 1)) {
899                         regions_touching = true;
900                 }
901
902                 // Only trim region on the right if the last frame has gone beyond the right region's first frame.
903                 if (region_right != 0 && (region_right->first_frame() < _region->last_frame() || regions_touching)) {
904                         region_right->trim_front (_region->last_frame() + 1);
905                 }
906
907                 region_changed (ARDOUR::bounds_change);
908
909         } else {
910                 region_changed (PropertyChange (ARDOUR::Properties::length));
911         }
912
913         return (pre_trim_last_frame != _region->last_frame());  //return true if we actually changed something
914 }
915
916
917 void
918 RegionView::thaw_after_trim ()
919 {
920         if (_region->locked()) {
921                 return;
922         }
923
924         _region->resume_property_changes ();
925 }
926
927
928 void
929 RegionView::move_contents (frameoffset_t distance)
930 {
931         if (_region->locked()) {
932                 return;
933         }
934         _region->move_start (distance);
935         region_changed (PropertyChange (ARDOUR::Properties::start));
936 }
937
938 /** Snap a frame offset within our region using the current snap settings.
939  *  @param x Frame offset from this region's position.
940  *  @param ensure_snap whether to ignore snap_mode (in the case of SnapOff) and magnetic snap.
941  *  Used when inverting snap mode logic with key modifiers, or snap distance calculation.
942  *  @return Snapped frame offset from this region's position.
943  */
944 frameoffset_t
945 RegionView::snap_frame_to_frame (frameoffset_t x, bool ensure_snap) const
946 {
947         PublicEditor& editor = trackview.editor();
948
949         /* x is region relative, convert it to global absolute frames */
950         framepos_t const session_frame = x + _region->position();
951
952         /* try a snap in either direction */
953         framepos_t frame = session_frame;
954         editor.snap_to (frame, RoundNearest, false, ensure_snap);
955
956         /* if we went off the beginning of the region, snap forwards */
957         if (frame < _region->position ()) {
958                 frame = session_frame;
959                 editor.snap_to (frame, RoundUpAlways, false, ensure_snap);
960         }
961
962         /* back to region relative */
963         return frame - _region->position();
964 }