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