enough with umpteen "i18n.h" files. Consolidate on pbd/i18n.h
[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 "pbd/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         /* derived class calls set_height () including RegionView::set_height() in ::init() */
182         //set_height (trackview.current_height());
183
184         _region->PropertyChanged.connect (*this, invalidator (*this), boost::bind (&RegionView::region_changed, this, _1), gui_context());
185
186         /* derived class calls set_colors () including RegionView::set_colors() in ::init() */
187         //set_colors ();
188         //UIConfiguration::instance().ColorsChanged.connect (sigc::mem_fun (*this, &RegionView::color_handler));
189
190         /* XXX sync mark drag? */
191 }
192
193 RegionView::~RegionView ()
194 {
195         in_destructor = true;
196
197         for (vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
198                 delete *g;
199         }
200
201         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
202                 delete *i;
203         }
204
205         drop_silent_frames ();
206
207         delete editor;
208 }
209
210 bool
211 RegionView::canvas_group_event (GdkEvent* event)
212 {
213         if (!in_destructor) {
214                 return trackview.editor().canvas_region_view_event (event, group, this);
215         }
216         return false;
217 }
218
219 void
220 RegionView::set_silent_frames (const AudioIntervalResult& silences, double /*threshold*/)
221 {
222         framecnt_t shortest = max_framecnt;
223
224         /* remove old silent frames */
225         drop_silent_frames ();
226
227         if (silences.empty()) {
228                 return;
229         }
230
231         uint32_t const color = UIConfiguration::instance().color_mod ("silence", "silence");
232
233         for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
234
235                 ArdourCanvas::Rectangle* cr = new ArdourCanvas::Rectangle (group);
236                 cr->set_ignore_events (true);
237                 _silent_frames.push_back (cr);
238
239                 /* coordinates for the rect are relative to the regionview origin */
240
241                 cr->set_x0 (trackview.editor().sample_to_pixel (i->first - _region->start()));
242                 cr->set_x1 (trackview.editor().sample_to_pixel (i->second - _region->start()));
243                 cr->set_y0 (1);
244                 cr->set_y1 (_height - 2);
245                 cr->set_outline (false);
246                 cr->set_fill_color (color);
247
248                 shortest = min (shortest, i->second - i->first);
249         }
250
251         /* Find shortest audible segment */
252         framecnt_t shortest_audible = max_framecnt;
253
254         framecnt_t s = _region->start();
255         for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
256                 framecnt_t const dur = i->first - s;
257                 if (dur > 0) {
258                         shortest_audible = min (shortest_audible, dur);
259                 }
260
261                 s = i->second;
262         }
263
264         framecnt_t const dur = _region->start() + _region->length() - 1 - s;
265         if (dur > 0) {
266                 shortest_audible = min (shortest_audible, dur);
267         }
268
269         _silence_text = new ArdourCanvas::Text (group);
270         _silence_text->set_ignore_events (true);
271         _silence_text->set_font_description (get_font_for_style (N_("SilenceText")));
272         _silence_text->set_color (UIConfiguration::instance().color ("silence text"));
273
274         /* both positions are relative to the region start offset in source */
275
276         _silence_text->set_x_position (trackview.editor().sample_to_pixel (silences.front().first - _region->start()) + 10.0);
277         _silence_text->set_y_position (20.0);
278
279         double ms = (float) shortest/_region->session().frame_rate();
280
281         /* ms are now in seconds */
282
283         char const * sunits;
284
285         if (ms >= 60.0) {
286                 sunits = _("minutes");
287                 ms /= 60.0;
288         } else if (ms < 1.0) {
289                 sunits = _("msecs");
290                 ms *= 1000.0;
291         } else {
292                 sunits = _("secs");
293         }
294
295         string text = string_compose (ngettext ("%1 silent segment", "%1 silent segments", silences.size()), silences.size())
296                 + ", "
297                 + string_compose (_("shortest = %1 %2"), ms, sunits);
298
299         if (shortest_audible != max_framepos) {
300                 /* ms are now in seconds */
301                 double ma = (float) shortest_audible / _region->session().frame_rate();
302                 char const * aunits;
303
304                 if (ma >= 60.0) {
305                         aunits = _("minutes");
306                         ma /= 60.0;
307                 } else if (ma < 1.0) {
308                         aunits = _("msecs");
309                         ma *= 1000.0;
310                 } else {
311                         aunits = _("secs");
312                 }
313
314                 text += string_compose (_("\n  (shortest audible segment = %1 %2)"), ma, aunits);
315         }
316
317         _silence_text->set (text);
318 }
319
320 void
321 RegionView::hide_silent_frames ()
322 {
323         for (list<ArdourCanvas::Rectangle*>::iterator i = _silent_frames.begin (); i != _silent_frames.end (); ++i) {
324                 (*i)->hide ();
325         }
326         _silence_text->hide();
327 }
328
329 void
330 RegionView::drop_silent_frames ()
331 {
332         for (list<ArdourCanvas::Rectangle*>::iterator i = _silent_frames.begin (); i != _silent_frames.end (); ++i) {
333                 delete *i;
334         }
335         _silent_frames.clear ();
336
337         delete _silence_text;
338         _silence_text = 0;
339 }
340
341 gint
342 RegionView::_lock_toggle (ArdourCanvas::Item*, GdkEvent* ev, void* arg)
343 {
344         switch (ev->type) {
345         case GDK_BUTTON_RELEASE:
346                 static_cast<RegionView*>(arg)->lock_toggle ();
347                 return TRUE;
348                 break;
349         default:
350                 break;
351         }
352         return FALSE;
353 }
354
355 void
356 RegionView::lock_toggle ()
357 {
358         _region->set_locked (!_region->locked());
359 }
360
361 void
362 RegionView::region_changed (const PropertyChange& what_changed)
363 {
364         ENSURE_GUI_THREAD (*this, &RegionView::region_changed, what_changed);
365
366         if (what_changed.contains (ARDOUR::bounds_change)) {
367                 region_resized (what_changed);
368                 region_sync_changed ();
369         }
370         if (what_changed.contains (ARDOUR::Properties::muted)) {
371                 region_muted ();
372         }
373         if (what_changed.contains (ARDOUR::Properties::opaque)) {
374                 region_opacity ();
375         }
376         if (what_changed.contains (ARDOUR::Properties::name)) {
377                 region_renamed ();
378         }
379         if (what_changed.contains (ARDOUR::Properties::sync_position)) {
380                 region_sync_changed ();
381         }
382         if (what_changed.contains (ARDOUR::Properties::locked)) {
383                 region_locked ();
384         }
385 }
386
387 void
388 RegionView::region_locked ()
389 {
390         /* name will show locked status */
391         region_renamed ();
392 }
393
394 void
395 RegionView::region_resized (const PropertyChange& what_changed)
396 {
397         double unit_length;
398
399         if (what_changed.contains (ARDOUR::Properties::position)) {
400                 set_position (_region->position(), 0);
401         }
402
403         PropertyChange s_and_l;
404         s_and_l.add (ARDOUR::Properties::start);
405         s_and_l.add (ARDOUR::Properties::length);
406
407         if (what_changed.contains (s_and_l)) {
408
409                 set_duration (_region->length(), 0);
410
411                 unit_length = _region->length() / samples_per_pixel;
412
413                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
414
415                         (*i)->set_duration (unit_length);
416
417                 }
418         }
419 }
420
421 void
422 RegionView::reset_width_dependent_items (double pixel_width)
423 {
424         TimeAxisViewItem::reset_width_dependent_items (pixel_width);
425         _pixel_width = pixel_width;
426 }
427
428 void
429 RegionView::region_muted ()
430 {
431         set_frame_color ();
432         region_renamed ();
433 }
434
435 void
436 RegionView::region_opacity ()
437 {
438         set_frame_color ();
439 }
440
441 void
442 RegionView::raise_to_top ()
443 {
444         _region->raise_to_top ();
445 }
446
447 void
448 RegionView::lower_to_bottom ()
449 {
450         _region->lower_to_bottom ();
451 }
452
453 bool
454 RegionView::set_position (framepos_t pos, void* /*src*/, double* ignored)
455 {
456         double delta;
457         bool ret;
458
459         if (!(ret = TimeAxisViewItem::set_position (pos, this, &delta))) {
460                 return false;
461         }
462
463         if (ignored) {
464                 *ignored = delta;
465         }
466
467         if (delta) {
468                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
469                         (*i)->group->move (ArdourCanvas::Duple (delta, 0.0));
470                 }
471         }
472
473         return ret;
474 }
475
476 void
477 RegionView::set_samples_per_pixel (double fpp)
478 {
479         TimeAxisViewItem::set_samples_per_pixel (fpp);
480
481         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
482                 (*i)->set_samples_per_pixel (fpp);
483                 (*i)->set_duration (_region->length() / fpp);
484         }
485
486         region_sync_changed ();
487 }
488
489 bool
490 RegionView::set_duration (framecnt_t frames, void *src)
491 {
492         if (!TimeAxisViewItem::set_duration (frames, src)) {
493                 return false;
494         }
495
496         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
497                 (*i)->set_duration (_region->length() / samples_per_pixel);
498         }
499
500         return true;
501 }
502
503 void
504 RegionView::set_colors ()
505 {
506         TimeAxisViewItem::set_colors ();
507         set_sync_mark_color ();
508 }
509
510 void
511 RegionView::set_sync_mark_color ()
512 {
513         if (sync_mark) {
514                 ArdourCanvas::Color c = UIConfiguration::instance().color ("sync mark");
515                 sync_mark->set_fill_color (c);
516                 sync_mark->set_outline_color (c);
517                 sync_line->set_outline_color (c);
518         }
519 }
520
521 uint32_t
522 RegionView::get_fill_color () const
523 {
524         ArdourCanvas::Color f = TimeAxisViewItem::get_fill_color();
525         char const *modname;
526
527         if (_region->opaque()) {
528                 modname = "opaque region base";
529         } else {
530                 modname = "transparent region base";
531         }
532
533         return HSV(f).mod (UIConfiguration::instance().modifier (modname)).color ();
534 }
535
536 void
537 RegionView::show_region_editor ()
538 {
539         if (editor == 0) {
540                 editor = new RegionEditor (trackview.session(), region());
541         }
542
543         editor->present ();
544         editor->show_all();
545 }
546
547 void
548 RegionView::hide_region_editor()
549 {
550         if (editor) {
551                 editor->hide_all ();
552         }
553 }
554
555 std::string
556 RegionView::make_name () const
557 {
558         std::string str;
559
560         // XXX nice to have some good icons for this
561
562         if (_region->locked()) {
563                 str += '>';
564                 str += _region->name();
565                 str += '<';
566         } else if (_region->position_locked()) {
567                 str += '{';
568                 str += _region->name();
569                 str += '}';
570         } else if (_region->video_locked()) {
571                 str += '[';
572                 str += _region->name();
573                 str += ']';
574         } else {
575                 str = _region->name();
576         }
577
578         if (_region->muted()) {
579                 str = string ("!") + str;
580         }
581
582         return str;
583 }
584
585 void
586 RegionView::region_renamed ()
587 {
588         std::string str = make_name ();
589
590         set_item_name (str, this);
591         set_name_text (str);
592 }
593
594 void
595 RegionView::region_sync_changed ()
596 {
597         int sync_dir;
598         framecnt_t sync_offset;
599
600         sync_offset = _region->sync_offset (sync_dir);
601
602         if (sync_offset == 0) {
603                 /* no need for a sync mark */
604                 if (sync_mark) {
605                         sync_mark->hide();
606                         sync_line->hide ();
607                 }
608                 return;
609         }
610
611         if (!sync_mark) {
612
613                 /* points set below */
614
615                 sync_mark = new ArdourCanvas::Polygon (group);
616                 CANVAS_DEBUG_NAME (sync_mark, string_compose ("sync mark for %1", get_item_name()));
617                 sync_line = new ArdourCanvas::Line (group);
618                 CANVAS_DEBUG_NAME (sync_line, string_compose ("sync mark for %1", get_item_name()));
619
620                 set_sync_mark_color ();
621         }
622
623         /* this has to handle both a genuine change of position, a change of samples_per_pixel
624            and a change in the bounds of the _region->
625          */
626
627         if (sync_offset == 0) {
628
629                 /* no sync mark - its the start of the region */
630
631                 sync_mark->hide();
632                 sync_line->hide ();
633
634         } else {
635
636                 if ((sync_dir < 0) || ((sync_dir > 0) && (sync_offset > _region->length()))) {
637
638                         /* no sync mark - its out of the bounds of the region */
639
640                         sync_mark->hide();
641                         sync_line->hide ();
642
643                 } else {
644
645                         /* lets do it */
646
647                         Points points;
648
649                         //points = sync_mark->property_points().get_value();
650
651                         double offset = sync_offset / samples_per_pixel;
652                         points.push_back (ArdourCanvas::Duple (offset - ((sync_mark_width-1)/2), 1));
653                         points.push_back (ArdourCanvas::Duple (offset + ((sync_mark_width-1)/2), 1));
654                         points.push_back (ArdourCanvas::Duple (offset, sync_mark_width - 1));
655                         points.push_back (ArdourCanvas::Duple (offset - ((sync_mark_width-1)/2), 1));
656                         sync_mark->set (points);
657                         sync_mark->show ();
658
659                         sync_line->set (ArdourCanvas::Duple (offset, 0), ArdourCanvas::Duple (offset, trackview.current_height() - NAME_HIGHLIGHT_SIZE));
660                         sync_line->show ();
661                 }
662         }
663 }
664
665 void
666 RegionView::move (double x_delta, double y_delta)
667 {
668         if (!_region->can_move() || (x_delta == 0 && y_delta == 0)) {
669                 return;
670         }
671
672         /* items will not prevent Item::move() moving
673          * them to a negative x-axis coordinate, which
674          * is legal, but we don't want that here.
675          */
676
677         ArdourCanvas::Item *item = get_canvas_group ();
678
679         if (item->position().x + x_delta < 0) {
680                 x_delta = -item->position().x; /* move it to zero */
681         }
682
683         item->move (ArdourCanvas::Duple (x_delta, y_delta));
684
685         /* note: ghosts never leave their tracks so y_delta for them is always zero */
686
687         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
688                 (*i)->group->move (ArdourCanvas::Duple (x_delta, 0.0));
689         }
690 }
691
692 void
693 RegionView::remove_ghost_in (TimeAxisView& tv)
694 {
695         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
696                 if (&(*i)->trackview == &tv) {
697                         delete *i;
698                         break;
699                 }
700         }
701 }
702
703 void
704 RegionView::remove_ghost (GhostRegion* ghost)
705 {
706         if (in_destructor) {
707                 return;
708         }
709
710         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
711                 if (*i == ghost) {
712                         ghosts.erase (i);
713                         break;
714                 }
715         }
716 }
717
718 void
719 RegionView::set_height (double h)
720 {
721         TimeAxisViewItem::set_height(h);
722
723         if (sync_line) {
724                 Points points;
725                 int sync_dir;
726                 framecnt_t sync_offset;
727                 sync_offset = _region->sync_offset (sync_dir);
728                 double offset = sync_offset / samples_per_pixel;
729
730                 sync_line->set (
731                         ArdourCanvas::Duple (offset, 0),
732                         ArdourCanvas::Duple (offset, h - NAME_HIGHLIGHT_SIZE)
733                         );
734         }
735
736         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin(); i != _coverage_frames.end(); ++i) {
737                 (*i)->set_y1 (h + 1);
738         }
739
740         for (list<ArdourCanvas::Rectangle*>::iterator i = _silent_frames.begin(); i != _silent_frames.end(); ++i) {
741                 (*i)->set_y1 (h + 1);
742         }
743
744 }
745
746 /** Remove old coverage frames and make new ones, if we're in a LayerDisplay mode
747  *  which uses them. */
748 void
749 RegionView::update_coverage_frames (LayerDisplay d)
750 {
751         /* remove old coverage frames */
752         for (list<ArdourCanvas::Rectangle*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
753                 delete *i;
754         }
755
756         _coverage_frames.clear ();
757
758         if (d != Stacked) {
759                 /* don't do coverage frames unless we're in stacked mode */
760                 return;
761         }
762
763         boost::shared_ptr<Playlist> pl (_region->playlist ());
764         if (!pl) {
765                 return;
766         }
767
768         framepos_t const position = _region->first_frame ();
769         framepos_t t = position;
770         framepos_t const end = _region->last_frame ();
771
772         ArdourCanvas::Rectangle* cr = 0;
773         bool me = false;
774
775         /* the color that will be used to show parts of regions that will not be heard */
776         uint32_t const non_playing_color = UIConfiguration::instance().color_mod ("covered region", "covered region base");
777
778
779         while (t < end) {
780
781                 t++;
782
783                 /* is this region is on top at time t? */
784                 bool const new_me = (pl->top_unmuted_region_at (t) == _region);
785                 /* finish off any old rect, if required */
786                 if (cr && me != new_me) {
787                         cr->set_x1 (trackview.editor().sample_to_pixel (t - position));
788                 }
789
790                 /* start off any new rect, if required */
791                 if (cr == 0 || me != new_me) {
792                         cr = new ArdourCanvas::Rectangle (group);
793                         _coverage_frames.push_back (cr);
794                         cr->set_x0 (trackview.editor().sample_to_pixel (t - position));
795                         cr->set_y0 (1);
796                         cr->set_y1 (_height + 1);
797                         cr->set_outline (false);
798                         cr->set_ignore_events (true);
799                         if (new_me) {
800                                 cr->set_fill_color (UINT_RGBA_CHANGE_A (non_playing_color, 0));
801                         } else {
802                                 cr->set_fill_color (non_playing_color);
803                         }
804                 }
805                 t = pl->find_next_region_boundary (t, 1);
806                 if (t < 0) {
807                         break;
808                 }
809                 me = new_me;
810         }
811
812         t = pl->find_next_region_boundary (t, 1);
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, const int32_t sub_num)
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         const framepos_t speed_bound = (framepos_t) (new_bound * speed);
849
850         if (_region->position() == speed_bound) {
851                 return false;
852         }
853
854         _region->trim_front (speed_bound, sub_num);
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, const int32_t sub_num)
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), sub_num);
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, sub_num);
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 }