Move DPIReset and ColorsChanged signals into UIConfiguration
[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 "ardour_ui.h"
39 #include "streamview.h"
40 #include "region_view.h"
41 #include "automation_region_view.h"
42 #include "route_time_axis.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 ARDOUR_UI_UTILS;
57 using namespace PBD;
58 using namespace Editing;
59 using namespace Gtk;
60 using namespace ArdourCanvas;
61
62 static const int32_t sync_mark_width = 9;
63
64 PBD::Signal1<void,RegionView*> RegionView::RegionViewGoingAway;
65
66 RegionView::RegionView (ArdourCanvas::Container*          parent,
67                         TimeAxisView&                     tv,
68                         boost::shared_ptr<ARDOUR::Region> r,
69                         double                            spu,
70                         uint32_t                          basic_color,
71                         bool                              automation)
72         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), false, automation,
73                             (automation ? TimeAxisViewItem::ShowFrame :
74                              TimeAxisViewItem::Visibility (TimeAxisViewItem::ShowNameText|
75                                                            TimeAxisViewItem::ShowNameHighlight| TimeAxisViewItem::ShowFrame)))
76         , _region (r)
77         , sync_mark(0)
78         , sync_line(0)
79         , editor(0)
80         , current_visible_sync_position(0.0)
81         , valid(false)
82         , _enable_display(false)
83         , _pixel_width(1.0)
84         , in_destructor(false)
85         , wait_for_data(false)
86         , _silence_text (0)
87 {
88         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::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 {
96         /* derived concrete type will call init () */
97
98         _region = other._region;
99         current_visible_sync_position = other.current_visible_sync_position;
100         valid = false;
101         _pixel_width = other._pixel_width;
102
103         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
104 }
105
106 RegionView::RegionView (const RegionView& other, boost::shared_ptr<Region> other_region)
107         : sigc::trackable(other)
108         , TimeAxisViewItem (other)
109         , _silence_text (0)
110 {
111         /* this is a pseudo-copy constructor used when dragging regions
112            around on the canvas.
113         */
114
115         /* derived concrete type will call init () */
116
117         _region = other_region;
118         current_visible_sync_position = other.current_visible_sync_position;
119         valid = false;
120         _pixel_width = other._pixel_width;
121
122         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
123 }
124
125 RegionView::RegionView (ArdourCanvas::Container*          parent,
126                         TimeAxisView&                     tv,
127                         boost::shared_ptr<ARDOUR::Region> r,
128                         double                            spu,
129                         uint32_t                          basic_color,
130                         bool                              recording,
131                         TimeAxisViewItem::Visibility      visibility)
132         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), recording, false, visibility)
133         , _region (r)
134         , sync_mark(0)
135         , sync_line(0)
136         , editor(0)
137         , current_visible_sync_position(0.0)
138         , valid(false)
139         , _enable_display(false)
140         , _pixel_width(1.0)
141         , in_destructor(false)
142         , wait_for_data(false)
143         , _silence_text (0)
144 {
145 }
146
147 void
148 RegionView::init (bool wfd)
149 {
150         editor        = 0;
151         valid         = true;
152         in_destructor = false;
153         wait_for_data = wfd;
154         sync_mark     = 0;
155         sync_line     = 0;
156         sync_mark     = 0;
157         sync_line     = 0;
158
159         if (name_highlight) {
160                 name_highlight->set_data ("regionview", this);
161                 name_highlight->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_name_highlight_event), name_highlight, this));
162         }
163         
164         if (frame_handle_start) {
165                 frame_handle_start->set_data ("regionview", this);
166                 frame_handle_start->set_data ("isleft", (void*) 1);
167                 frame_handle_start->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_start, this));
168                 frame_handle_start->raise_to_top();
169         }
170         
171         if (frame_handle_end) {
172                 frame_handle_end->set_data ("regionview", this);
173                 frame_handle_end->set_data ("isleft", (void*) 0);
174                 frame_handle_end->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_end, this));
175                 frame_handle_end->raise_to_top();
176         }
177
178         if (name_text) {
179                 name_text->set_data ("regionview", this);
180                 name_text->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_name_event), name_text, this));
181         }
182
183         if (wfd) {
184                 _enable_display = true;
185         }
186
187         set_height (trackview.current_height());
188
189         _region->PropertyChanged.connect (*this, invalidator (*this), boost::bind (&RegionView::region_changed, this, _1), gui_context());
190
191         set_colors ();
192
193         UIConfiguration::ColorsChanged.connect (sigc::mem_fun (*this, &RegionView::color_handler));
194
195         /* XXX sync mark drag? */
196 }
197
198 RegionView::~RegionView ()
199 {
200         in_destructor = true;
201
202         for (vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
203                 delete *g;
204         }
205
206         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
207                 delete *i;
208         }
209
210         drop_silent_frames ();
211
212         delete editor;
213 }
214
215 bool
216 RegionView::canvas_group_event (GdkEvent* event)
217 {
218         if (!in_destructor) {
219                 return trackview.editor().canvas_region_view_event (event, group, this);
220         }
221         return false;
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()->color_mod ("silence", "silence");
237
238         for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
239
240                 ArdourCanvas::Rectangle* cr = new ArdourCanvas::Rectangle (group);
241                 cr->set_ignore_events (true);
242                 _silent_frames.push_back (cr);
243
244                 /* coordinates for the rect are relative to the regionview origin */
245
246                 cr->set_x0 (trackview.editor().sample_to_pixel (i->first - _region->start()));
247                 cr->set_x1 (trackview.editor().sample_to_pixel (i->second - _region->start()));
248                 cr->set_y0 (1);
249                 cr->set_y1 (_height - 2);
250                 cr->set_outline (false);
251                 cr->set_fill_color (color);
252
253                 shortest = min (shortest, i->second - i->first);
254         }
255
256         /* Find shortest audible segment */
257         framecnt_t shortest_audible = max_framecnt;
258
259         framecnt_t s = _region->start();
260         for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
261                 framecnt_t const dur = i->first - s;
262                 if (dur > 0) {
263                         shortest_audible = min (shortest_audible, dur);
264                 }
265
266                 s = i->second;
267         }
268
269         framecnt_t const dur = _region->start() + _region->length() - 1 - s;
270         if (dur > 0) {
271                 shortest_audible = min (shortest_audible, dur);
272         }
273
274         _silence_text = new ArdourCanvas::Text (group);
275         _silence_text->set_ignore_events (true);
276         _silence_text->set_font_description (get_font_for_style (N_("SilenceText")));
277         _silence_text->set_color (ARDOUR_UI::config()->color ("silence text"));
278
279         /* both positions are relative to the region start offset in source */
280
281         _silence_text->set_x_position (trackview.editor().sample_to_pixel (silences.front().first - _region->start()) + 10.0);
282         _silence_text->set_y_position (20.0);
283
284         double ms = (float) shortest/_region->session().frame_rate();
285
286         /* ms are now in seconds */
287
288         char const * sunits;
289
290         if (ms >= 60.0) {
291                 sunits = _("minutes");
292                 ms /= 60.0;
293         } else if (ms < 1.0) {
294                 sunits = _("msecs");
295                 ms *= 1000.0;
296         } else {
297                 sunits = _("secs");
298         }
299
300         string text = string_compose (ngettext ("%1 silent segment", "%1 silent segments", silences.size()), silences.size())
301                 + ", "
302                 + string_compose (_("shortest = %1 %2"), ms, sunits);
303
304         if (shortest_audible != max_framepos) {
305                 /* ms are now in seconds */
306                 double ma = (float) shortest_audible / _region->session().frame_rate();
307                 char const * aunits;
308
309                 if (ma >= 60.0) {
310                         aunits = _("minutes");
311                         ma /= 60.0;
312                 } else if (ma < 1.0) {
313                         aunits = _("msecs");
314                         ma *= 1000.0;
315                 } else {
316                         aunits = _("secs");
317                 }
318
319                 text += string_compose (_("\n  (shortest audible segment = %1 %2)"), ma, aunits);
320         }
321
322         _silence_text->set (text);
323 }
324
325 void
326 RegionView::hide_silent_frames ()
327 {
328         for (list<ArdourCanvas::Rectangle*>::iterator i = _silent_frames.begin (); i != _silent_frames.end (); ++i) {
329                 (*i)->hide ();
330         }
331         _silence_text->hide();
332 }
333
334 void
335 RegionView::drop_silent_frames ()
336 {
337         for (list<ArdourCanvas::Rectangle*>::iterator i = _silent_frames.begin (); i != _silent_frames.end (); ++i) {
338                 delete *i;
339         }
340         _silent_frames.clear ();
341
342         delete _silence_text;
343         _silence_text = 0;
344 }
345
346 gint
347 RegionView::_lock_toggle (ArdourCanvas::Item*, GdkEvent* ev, void* arg)
348 {
349         switch (ev->type) {
350         case GDK_BUTTON_RELEASE:
351                 static_cast<RegionView*>(arg)->lock_toggle ();
352                 return TRUE;
353                 break;
354         default:
355                 break;
356         }
357         return FALSE;
358 }
359
360 void
361 RegionView::lock_toggle ()
362 {
363         _region->set_locked (!_region->locked());
364 }
365
366 void
367 RegionView::region_changed (const PropertyChange& what_changed)
368 {
369         ENSURE_GUI_THREAD (*this, &RegionView::region_changed, what_changed);
370
371         if (what_changed.contains (ARDOUR::bounds_change)) {
372                 region_resized (what_changed);
373                 region_sync_changed ();
374         }
375         if (what_changed.contains (ARDOUR::Properties::muted)) {
376                 region_muted ();
377         }
378         if (what_changed.contains (ARDOUR::Properties::opaque)) {
379                 region_opacity ();
380         }
381         if (what_changed.contains (ARDOUR::Properties::name)) {
382                 region_renamed ();
383         }
384         if (what_changed.contains (ARDOUR::Properties::sync_position)) {
385                 region_sync_changed ();
386         }
387         if (what_changed.contains (ARDOUR::Properties::locked)) {
388                 region_locked ();
389         }
390         if (what_changed.contains (ARDOUR::Properties::locked)) {
391                 /* name will show locked status */
392                 region_renamed ();
393         }
394 }
395
396 void
397 RegionView::region_locked ()
398 {
399         /* name will show locked status */
400         region_renamed ();
401 }
402
403 void
404 RegionView::region_resized (const PropertyChange& what_changed)
405 {
406         double unit_length;
407
408         if (what_changed.contains (ARDOUR::Properties::position)) {
409                 set_position (_region->position(), 0);
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_pixel;
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 (ArdourCanvas::Duple (delta, 0.0));
479                 }
480         }
481
482         return ret;
483 }
484
485 void
486 RegionView::set_samples_per_pixel (double fpp)
487 {
488         TimeAxisViewItem::set_samples_per_pixel (fpp);
489
490         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
491                 (*i)->set_samples_per_pixel (fpp);
492                 (*i)->set_duration (_region->length() / fpp);
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_pixel);
507         }
508
509         return true;
510 }
511
512 void
513 RegionView::set_colors ()
514 {
515         TimeAxisViewItem::set_colors ();
516         set_sync_mark_color ();
517 }
518
519 void
520 RegionView::set_sync_mark_color ()
521 {
522         if (sync_mark) {
523                 ArdourCanvas::Color c = ARDOUR_UI::config()->color ("sync mark");
524                 sync_mark->set_fill_color (c);
525                 sync_mark->set_outline_color (c);
526                 sync_line->set_outline_color (c);
527         }
528 }
529
530 uint32_t
531 RegionView::get_fill_color () const
532 {
533         ArdourCanvas::Color f = TimeAxisViewItem::get_fill_color();
534         char const *modname;
535         
536         if (_region->opaque()) {
537                 modname = "opaque region base";
538         } else {
539                 modname = "transparent region base";
540         }
541
542         return HSV(f).mod (ARDOUR_UI::config()->modifier (modname)).color ();
543 }
544
545 void
546 RegionView::show_region_editor ()
547 {
548         if (editor == 0) {
549                 editor = new RegionEditor (trackview.session(), region());
550         }
551
552         editor->present ();
553         editor->show_all();
554 }
555
556 void
557 RegionView::hide_region_editor()
558 {
559         if (editor) {
560                 editor->hide_all ();
561         }
562 }
563
564 std::string
565 RegionView::make_name () const
566 {
567         std::string str;
568
569         // XXX nice to have some good icons for this
570
571         if (_region->locked()) {
572                 str += '>';
573                 str += _region->name();
574                 str += '<';
575         } else if (_region->position_locked()) {
576                 str += '{';
577                 str += _region->name();
578                 str += '}';
579         } else if (_region->video_locked()) {
580                 str += '[';
581                 str += _region->name();
582                 str += ']';
583         } else {
584                 str = _region->name();
585         }
586
587         if (_region->muted()) {
588                 str = string ("!") + str;
589         }
590
591         return str;
592 }
593
594 void
595 RegionView::region_renamed ()
596 {
597         std::string str = make_name ();
598
599         set_item_name (str, this);
600         set_name_text (str);
601         reset_width_dependent_items (_pixel_width);
602 }
603
604 void
605 RegionView::region_sync_changed ()
606 {
607         int sync_dir;
608         framecnt_t sync_offset;
609
610         sync_offset = _region->sync_offset (sync_dir);
611
612         if (sync_offset == 0) {
613                 /* no need for a sync mark */
614                 if (sync_mark) {
615                         sync_mark->hide();
616                         sync_line->hide ();
617                 }
618                 return;
619         }
620
621         if (!sync_mark) {
622
623                 /* points set below */
624
625                 sync_mark = new ArdourCanvas::Polygon (group);
626                 CANVAS_DEBUG_NAME (sync_mark, string_compose ("sync mark for %1", get_item_name()));
627                 sync_line = new ArdourCanvas::Line (group);
628                 CANVAS_DEBUG_NAME (sync_line, string_compose ("sync mark for %1", get_item_name()));
629
630                 set_sync_mark_color ();
631         }
632
633         /* this has to handle both a genuine change of position, a change of samples_per_pixel
634            and a change in the bounds of the _region->
635          */
636
637         if (sync_offset == 0) {
638
639                 /* no sync mark - its the start of the region */
640
641                 sync_mark->hide();
642                 sync_line->hide ();
643
644         } else {
645
646                 if ((sync_dir < 0) || ((sync_dir > 0) && (sync_offset > _region->length()))) {
647
648                         /* no sync mark - its out of the bounds of the region */
649
650                         sync_mark->hide();
651                         sync_line->hide ();
652
653                 } else {
654
655                         /* lets do it */
656
657                         Points points;
658
659                         //points = sync_mark->property_points().get_value();
660
661                         double offset = sync_offset / samples_per_pixel;
662                         points.push_back (ArdourCanvas::Duple (offset - ((sync_mark_width-1)/2), 1));
663                         points.push_back (ArdourCanvas::Duple (offset + ((sync_mark_width-1)/2), 1));
664                         points.push_back (ArdourCanvas::Duple (offset, sync_mark_width - 1));
665                         points.push_back (ArdourCanvas::Duple (offset - ((sync_mark_width-1)/2), 1));
666                         sync_mark->set (points);
667                         sync_mark->show ();
668
669                         sync_line->set (ArdourCanvas::Duple (offset, 0), ArdourCanvas::Duple (offset, trackview.current_height() - NAME_HIGHLIGHT_SIZE));
670                         sync_line->show ();
671                 }
672         }
673 }
674
675 void
676 RegionView::move (double x_delta, double y_delta)
677 {
678         if (!_region->can_move() || (x_delta == 0 && y_delta == 0)) {
679                 return;
680         }
681
682         /* items will not prevent Item::move() moving
683          * them to a negative x-axis coordinate, which
684          * is legal, but we don't want that here.
685          */
686
687         ArdourCanvas::Item *item = get_canvas_group ();
688         
689         if (item->position().x + x_delta < 0) {
690                 x_delta = -item->position().x; /* move it to zero */
691         }
692
693         item->move (ArdourCanvas::Duple (x_delta, y_delta));
694
695         /* note: ghosts never leave their tracks so y_delta for them is always zero */
696
697         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
698                 (*i)->group->move (ArdourCanvas::Duple (x_delta, 0.0));
699         }
700 }
701
702 void
703 RegionView::remove_ghost_in (TimeAxisView& tv)
704 {
705         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
706                 if (&(*i)->trackview == &tv) {
707                         delete *i;
708                         break;
709                 }
710         }
711 }
712
713 void
714 RegionView::remove_ghost (GhostRegion* ghost)
715 {
716         if (in_destructor) {
717                 return;
718         }
719
720         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
721                 if (*i == ghost) {
722                         ghosts.erase (i);
723                         break;
724                 }
725         }
726 }
727
728 void
729 RegionView::set_height (double h)
730 {
731         TimeAxisViewItem::set_height(h);
732
733         if (sync_line) {
734                 Points points;
735                 int sync_dir;
736                 framecnt_t sync_offset;
737                 sync_offset = _region->sync_offset (sync_dir);
738                 double offset = sync_offset / samples_per_pixel;
739
740                 sync_line->set (
741                         ArdourCanvas::Duple (offset, 0),
742                         ArdourCanvas::Duple (offset, h - NAME_HIGHLIGHT_SIZE)
743                         );
744         }
745
746         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin(); i != _coverage_frames.end(); ++i) {
747                 (*i)->set_y1 (h + 1);
748         }
749
750         for (list<ArdourCanvas::Rectangle*>::iterator i = _silent_frames.begin(); i != _silent_frames.end(); ++i) {
751                 (*i)->set_y1 (h + 1);
752         }
753
754 }
755
756 /** Remove old coverage frames and make new ones, if we're in a LayerDisplay mode
757  *  which uses them. */
758 void
759 RegionView::update_coverage_frames (LayerDisplay d)
760 {
761         /* remove old coverage frames */
762         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
763                 delete *i;
764         }
765
766         _coverage_frames.clear ();
767
768         if (d != Stacked) {
769                 /* don't do coverage frames unless we're in stacked mode */
770                 return;
771         }
772
773         boost::shared_ptr<Playlist> pl (_region->playlist ());
774         if (!pl) {
775                 return;
776         }
777
778         framepos_t const position = _region->first_frame ();
779         framepos_t t = position;
780         framepos_t const end = _region->last_frame ();
781
782         ArdourCanvas::Rectangle* cr = 0;
783         bool me = false;
784
785         /* the color that will be used to show parts of regions that will not be heard */
786         uint32_t const non_playing_color = ARDOUR_UI::config()->color_mod ("covered region", "covered region base");
787
788         while (t < end) {
789
790                 t++;
791
792                 /* is this region is on top at time t? */
793                 bool const new_me = (pl->top_unmuted_region_at (t) == _region);
794
795                 /* finish off any old rect, if required */
796                 if (cr && me != new_me) {
797                         cr->set_x1 (trackview.editor().sample_to_pixel (t - position));
798                 }
799
800                 /* start off any new rect, if required */
801                 if (cr == 0 || me != new_me) {
802                         cr = new ArdourCanvas::Rectangle (group);
803                         _coverage_frames.push_back (cr);
804                         cr->set_x0 (trackview.editor().sample_to_pixel (t - position));
805                         cr->set_y0 (1);
806                         cr->set_y1 (_height + 1);
807                         cr->set_outline (false);
808                         cr->set_ignore_events (true);
809                         if (new_me) {
810                                 cr->set_fill_color (UINT_RGBA_CHANGE_A (non_playing_color, 0));
811                         } else {
812                                 cr->set_fill_color (non_playing_color);
813                         }
814                 }
815
816                 t = pl->find_next_region_boundary (t, 1);
817                 me = new_me;
818         }
819
820         if (cr) {
821                 /* finish off the last rectangle */
822                 cr->set_x1 (trackview.editor().sample_to_pixel (end - position));
823         }
824
825         if (frame_handle_start) {
826                 frame_handle_start->raise_to_top ();
827         }
828
829         if (frame_handle_end) {
830                 frame_handle_end->raise_to_top ();
831         }
832
833         if (name_highlight) {
834                 name_highlight->raise_to_top ();
835         }
836
837         if (name_text) {
838                 name_text->raise_to_top ();
839         }
840 }
841
842 bool
843 RegionView::trim_front (framepos_t new_bound, bool no_overlap)
844 {
845         if (_region->locked()) {
846                 return false;
847         }
848
849         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
850         double const speed = rtv.track()->speed ();
851
852         framepos_t const pre_trim_first_frame = _region->first_frame();
853
854         _region->trim_front ((framepos_t) (new_bound * speed));
855
856         if (no_overlap) {
857                 // Get the next region on the left of this region and shrink/expand it.
858                 boost::shared_ptr<Playlist> playlist (_region->playlist());
859                 boost::shared_ptr<Region> region_left = playlist->find_next_region (pre_trim_first_frame, End, 0);
860
861                 bool regions_touching = false;
862
863                 if (region_left != 0 && (pre_trim_first_frame == region_left->last_frame() + 1)) {
864                         regions_touching = true;
865                 }
866
867                 // Only trim region on the left if the first frame has gone beyond the left region's last frame.
868                 if (region_left != 0 && (region_left->last_frame() > _region->first_frame() || regions_touching)) {
869                         region_left->trim_end (_region->first_frame() - 1);
870                 }
871         }
872
873         region_changed (ARDOUR::bounds_change);
874
875         return (pre_trim_first_frame != _region->first_frame());  //return true if we actually changed something
876 }
877
878 bool
879 RegionView::trim_end (framepos_t new_bound, bool no_overlap)
880 {
881         if (_region->locked()) {
882                 return false;
883         }
884
885         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
886         double const speed = rtv.track()->speed ();
887
888         framepos_t const pre_trim_last_frame = _region->last_frame();
889
890         _region->trim_end ((framepos_t) (new_bound * speed));
891
892         if (no_overlap) {
893                 // Get the next region on the right of this region and shrink/expand it.
894                 boost::shared_ptr<Playlist> playlist (_region->playlist());
895                 boost::shared_ptr<Region> region_right = playlist->find_next_region (pre_trim_last_frame, Start, 1);
896
897                 bool regions_touching = false;
898
899                 if (region_right != 0 && (pre_trim_last_frame == region_right->first_frame() - 1)) {
900                         regions_touching = true;
901                 }
902
903                 // Only trim region on the right if the last frame has gone beyond the right region's first frame.
904                 if (region_right != 0 && (region_right->first_frame() < _region->last_frame() || regions_touching)) {
905                         region_right->trim_front (_region->last_frame() + 1);
906                 }
907
908                 region_changed (ARDOUR::bounds_change);
909
910         } else {
911                 region_changed (PropertyChange (ARDOUR::Properties::length));
912         }
913
914         return (pre_trim_last_frame != _region->last_frame());  //return true if we actually changed something
915 }
916
917
918 void
919 RegionView::thaw_after_trim ()
920 {
921         if (_region->locked()) {
922                 return;
923         }
924
925         _region->resume_property_changes ();
926 }
927
928
929 void
930 RegionView::move_contents (frameoffset_t distance)
931 {
932         if (_region->locked()) {
933                 return;
934         }
935         _region->move_start (distance);
936         region_changed (PropertyChange (ARDOUR::Properties::start));
937 }
938
939 /** Snap a frame offset within our region using the current snap settings.
940  *  @param x Frame offset from this region's position.
941  *  @param ensure_snap whether to ignore snap_mode (in the case of SnapOff) and magnetic snap.
942  *  Used when inverting snap mode logic with key modifiers, or snap distance calculation.
943  *  @return Snapped frame offset from this region's position.
944  */
945 frameoffset_t
946 RegionView::snap_frame_to_frame (frameoffset_t x, bool ensure_snap) const
947 {
948         PublicEditor& editor = trackview.editor();
949
950         /* x is region relative, convert it to global absolute frames */
951         framepos_t const session_frame = x + _region->position();
952
953         /* try a snap in either direction */
954         framepos_t frame = session_frame;
955         editor.snap_to (frame, RoundNearest, false, ensure_snap);
956
957         /* if we went off the beginning of the region, snap forwards */
958         if (frame < _region->position ()) {
959                 frame = session_frame;
960                 editor.snap_to (frame, RoundUpAlways, false, ensure_snap);
961         }
962
963         /* back to region relative */
964         return frame - _region->position();
965 }