Merge branch 'master' of git.ardour.org:ardour/ardour
[ardour.git] / gtk2_ardour / region_view.cc
1 /*
2     Copyright (C) 2001-2006 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <cmath>
21 #include <cassert>
22 #include <algorithm>
23
24 #include <gtkmm.h>
25
26 #include <gtkmm2ext/gtk_ui.h>
27
28 #include "ardour/playlist.h"
29 #include "ardour/session.h"
30
31 #include "ardour_ui.h"
32 #include "global_signals.h"
33 #include "canvas-noevent-text.h"
34 #include "canvas-noevent-rect.h"
35 #include "streamview.h"
36 #include "region_view.h"
37 #include "automation_region_view.h"
38 #include "route_time_axis.h"
39 #include "simplerect.h"
40 #include "simpleline.h"
41 #include "waveview.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 PBD;
56 using namespace Editing;
57 using namespace Gtk;
58 using namespace ArdourCanvas;
59
60 static const int32_t sync_mark_width = 9;
61
62 PBD::Signal1<void,RegionView*> RegionView::RegionViewGoingAway;
63
64 RegionView::RegionView (ArdourCanvas::Group*              parent,
65                         TimeAxisView&                     tv,
66                         boost::shared_ptr<ARDOUR::Region> r,
67                         double                            spu,
68                         Gdk::Color const &                basic_color,
69                         bool                              automation)
70         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), false, automation,
71                             TimeAxisViewItem::Visibility (TimeAxisViewItem::ShowNameText|
72                                                           TimeAxisViewItem::ShowNameHighlight| TimeAxisViewItem::ShowFrame))
73         , _region (r)
74         , sync_mark(0)
75         , sync_line(0)
76         , editor(0)
77         , current_visible_sync_position(0.0)
78         , valid(false)
79         , _enable_display(false)
80         , _pixel_width(1.0)
81         , in_destructor(false)
82         , wait_for_data(false)
83         , _silence_text (0)
84         , _region_relative_time_converter(r->session().tempo_map(), r->position())
85         , _source_relative_time_converter(r->session().tempo_map(), r->position() - r->start())
86 {
87         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
88 }
89
90 RegionView::RegionView (const RegionView& other)
91         : sigc::trackable(other)
92         , TimeAxisViewItem (other)
93         , _silence_text (0)
94         , _region_relative_time_converter(other.region_relative_time_converter())
95         , _source_relative_time_converter(other.source_relative_time_converter())
96 {
97         /* derived concrete type will call init () */
98
99         _region = other._region;
100         current_visible_sync_position = other.current_visible_sync_position;
101         valid = false;
102         _pixel_width = other._pixel_width;
103
104         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
105 }
106
107 RegionView::RegionView (const RegionView& other, boost::shared_ptr<Region> other_region)
108         : sigc::trackable(other)
109         , TimeAxisViewItem (other)
110         , _silence_text (0)
111         , _region_relative_time_converter(other_region->session().tempo_map(), other_region->position())
112         , _source_relative_time_converter(other_region->session().tempo_map(), other_region->position() - other_region->start())
113 {
114         /* this is a pseudo-copy constructor used when dragging regions
115            around on the canvas.
116         */
117
118         /* derived concrete type will call init () */
119
120         _region = other_region;
121         current_visible_sync_position = other.current_visible_sync_position;
122         valid = false;
123         _pixel_width = other._pixel_width;
124
125         GhostRegion::CatchDeletion.connect (*this, invalidator (*this), boost::bind (&RegionView::remove_ghost, this, _1), gui_context());
126 }
127
128 RegionView::RegionView (ArdourCanvas::Group*         parent,
129                         TimeAxisView&                tv,
130                         boost::shared_ptr<ARDOUR::Region> r,
131                         double                       spu,
132                         Gdk::Color const &           basic_color,
133                         bool                         recording,
134                         TimeAxisViewItem::Visibility visibility)
135         : TimeAxisViewItem (r->name(), *parent, tv, spu, basic_color, r->position(), r->length(), recording, false, visibility)
136         , _region (r)
137         , sync_mark(0)
138         , sync_line(0)
139         , editor(0)
140         , current_visible_sync_position(0.0)
141         , valid(false)
142         , _enable_display(false)
143         , _pixel_width(1.0)
144         , in_destructor(false)
145         , wait_for_data(false)
146         , _silence_text (0)
147         , _region_relative_time_converter(r->session().tempo_map(), r->position())
148         , _source_relative_time_converter(r->session().tempo_map(), r->position() - r->start())
149 {
150 }
151
152 void
153 RegionView::init (Gdk::Color const & basic_color, bool wfd)
154 {
155         editor        = 0;
156         valid         = true;
157         in_destructor = false;
158         wait_for_data = wfd;
159         sync_mark     = 0;
160         sync_line     = 0;
161         sync_mark     = 0;
162         sync_line     = 0;
163
164         compute_colors (basic_color);
165
166         if (name_highlight) {
167                 name_highlight->set_data ("regionview", this);
168                 name_highlight->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_name_highlight_event), name_highlight, this));
169
170                 if (frame_handle_start) {
171                         frame_handle_start->set_data ("regionview", this);
172                         frame_handle_start->set_data ("isleft", (void*) 1);
173                         frame_handle_start->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_start, this));
174                         frame_handle_start->raise_to_top();
175                 }
176
177                 if (frame_handle_end) {
178                         frame_handle_end->set_data ("regionview", this);
179                         frame_handle_end->set_data ("isleft", (void*) 0);
180                         frame_handle_end->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_frame_handle_event), frame_handle_end, this));
181                         frame_handle_end->raise_to_top();
182                 }
183         }
184
185         if (name_pixbuf) {
186                 name_pixbuf->set_data ("regionview", this);
187                 name_pixbuf->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_name_event), name_pixbuf, this));
188         }
189
190         if (wfd) {
191                 _enable_display = true;
192         }
193
194         set_height (trackview.current_height());
195
196         _region->PropertyChanged.connect (*this, invalidator (*this), boost::bind (&RegionView::region_changed, this, _1), gui_context());
197
198         group->signal_event().connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_region_view_event), group, this));
199
200         set_colors ();
201
202         ColorsChanged.connect (sigc::mem_fun (*this, &RegionView::color_handler));
203
204         /* XXX sync mark drag? */
205 }
206
207 RegionView::~RegionView ()
208 {
209         in_destructor = true;
210
211         for (vector<GhostRegion*>::iterator g = ghosts.begin(); g != ghosts.end(); ++g) {
212                 delete *g;
213         }
214
215         for (list<ArdourCanvas::SimpleRect*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
216                 delete *i;
217         }
218
219         drop_silent_frames ();
220
221         delete editor;
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()->canvasvar_Silence.get();
237
238         for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
239
240                 ArdourCanvas::SimpleRect* cr = new ArdourCanvas::NoEventSimpleRect (*group);
241                 _silent_frames.push_back (cr);
242
243                 /* coordinates for the rect are relative to the regionview origin */
244
245                 cr->property_x1() = trackview.editor().frame_to_pixel (i->first - _region->start());
246                 cr->property_x2() = trackview.editor().frame_to_pixel (i->second - _region->start());
247                 cr->property_y1() = 1;
248                 cr->property_y2() = _height - 2;
249                 cr->property_outline_pixels() = 0;
250                 cr->property_fill_color_rgba () = color;
251
252                 shortest = min (shortest, i->second - i->first);
253         }
254
255         /* Find shortest audible segment */
256         framecnt_t shortest_audible = max_framecnt;
257
258         framecnt_t s = _region->start();
259         for (AudioIntervalResult::const_iterator i = silences.begin(); i != silences.end(); ++i) {
260                 framecnt_t const dur = i->first - s;
261                 if (dur > 0) {
262                         shortest_audible = min (shortest_audible, dur);
263                 }
264
265                 s = i->second;
266         }
267
268         framecnt_t const dur = _region->start() + _region->length() - 1 - s;
269         if (dur > 0) {
270                 shortest_audible = min (shortest_audible, dur);
271         }
272
273         _silence_text = new ArdourCanvas::NoEventText (*group);
274         _silence_text->property_font_desc() = get_font_for_style (N_("SilenceText"));
275         _silence_text->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_SilenceText.get();
276         _silence_text->property_anchor() = ANCHOR_NW;
277
278         /* both positions are relative to the region start offset in source */
279
280         _silence_text->property_x() = trackview.editor().frame_to_pixel (silences.front().first - _region->start()) + 10.0;
281         _silence_text->property_y() = 20.0;
282
283         double ms = (float) shortest/_region->session().frame_rate();
284
285         /* ms are now in seconds */
286
287         char const * sunits;
288
289         if (ms >= 60.0) {
290                 sunits = _("minutes");
291                 ms /= 60.0;
292         } else if (ms < 1.0) {
293                 sunits = _("msecs");
294                 ms *= 1000.0;
295         } else {
296                 sunits = _("secs");
297         }
298
299         string text = string_compose (ngettext ("%1 silent segment", "%1 silent segments", silences.size()), silences.size())
300                 + ", "
301                 + string_compose (_("shortest = %1 %2"), ms, sunits);
302
303         if (shortest_audible != max_framepos) {
304                 /* ms are now in seconds */
305                 double ma = (float) shortest_audible / _region->session().frame_rate();
306                 char const * aunits;
307
308                 if (ma >= 60.0) {
309                         aunits = _("minutes");
310                         ma /= 60.0;
311                 } else if (ma < 1.0) {
312                         aunits = _("msecs");
313                         ma *= 1000.0;
314                 } else {
315                         aunits = _("secs");
316                 }
317
318                 text += string_compose (_("\n  (shortest audible segment = %1 %2)"), ma, aunits);
319         }
320
321         _silence_text->property_text() = text.c_str ();
322 }
323
324 void
325 RegionView::hide_silent_frames ()
326 {
327         for (list<ArdourCanvas::SimpleRect*>::iterator i = _silent_frames.begin (); i != _silent_frames.end (); ++i) {
328                 (*i)->hide ();
329         }
330         _silence_text->hide();
331 }
332
333 void
334 RegionView::drop_silent_frames ()
335 {
336         for (list<ArdourCanvas::SimpleRect*>::iterator i = _silent_frames.begin (); i != _silent_frames.end (); ++i) {
337                 delete *i;
338         }
339         _silent_frames.clear ();
340
341         delete _silence_text;
342         _silence_text = 0;
343 }
344
345 gint
346 RegionView::_lock_toggle (ArdourCanvas::Item*, GdkEvent* ev, void* arg)
347 {
348         switch (ev->type) {
349         case GDK_BUTTON_RELEASE:
350                 static_cast<RegionView*>(arg)->lock_toggle ();
351                 return TRUE;
352                 break;
353         default:
354                 break;
355         }
356         return FALSE;
357 }
358
359 void
360 RegionView::lock_toggle ()
361 {
362         _region->set_locked (!_region->locked());
363 }
364
365 void
366 RegionView::region_changed (const PropertyChange& what_changed)
367 {
368         ENSURE_GUI_THREAD (*this, &RegionView::region_changed, what_changed);
369
370         if (what_changed.contains (ARDOUR::bounds_change)) {
371                 region_resized (what_changed);
372                 region_sync_changed ();
373         }
374         if (what_changed.contains (ARDOUR::Properties::muted)) {
375                 region_muted ();
376         }
377         if (what_changed.contains (ARDOUR::Properties::opaque)) {
378                 region_opacity ();
379         }
380         if (what_changed.contains (ARDOUR::Properties::name)) {
381                 region_renamed ();
382         }
383         if (what_changed.contains (ARDOUR::Properties::sync_position)) {
384                 region_sync_changed ();
385         }
386         if (what_changed.contains (ARDOUR::Properties::locked)) {
387                 region_locked ();
388         }
389 #ifdef WITH_VIDEOTIMELINE
390         if (what_changed.contains (ARDOUR::Properties::locked)) {
391                 /* name will show locked status */
392                 region_renamed ();
393         }
394 #endif
395 }
396
397 void
398 RegionView::region_locked ()
399 {
400         /* name will show locked status */
401         region_renamed ();
402 }
403
404 void
405 RegionView::region_resized (const PropertyChange& what_changed)
406 {
407         double unit_length;
408
409         if (what_changed.contains (ARDOUR::Properties::position)) {
410                 set_position (_region->position(), 0);
411                 _region_relative_time_converter.set_origin_b (_region->position());
412         }
413
414         if (what_changed.contains (ARDOUR::Properties::start) || what_changed.contains (ARDOUR::Properties::position)) {
415                 _source_relative_time_converter.set_origin_b (_region->position() - _region->start());
416         }
417
418         PropertyChange s_and_l;
419         s_and_l.add (ARDOUR::Properties::start);
420         s_and_l.add (ARDOUR::Properties::length);
421
422         if (what_changed.contains (s_and_l)) {
423
424                 set_duration (_region->length(), 0);
425
426                 unit_length = _region->length() / samples_per_unit;
427
428                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
429
430                         (*i)->set_duration (unit_length);
431
432                 }
433         }
434 }
435
436 void
437 RegionView::reset_width_dependent_items (double pixel_width)
438 {
439         TimeAxisViewItem::reset_width_dependent_items (pixel_width);
440         _pixel_width = pixel_width;
441 }
442
443 void
444 RegionView::region_muted ()
445 {
446         set_frame_color ();
447         region_renamed ();
448 }
449
450 void
451 RegionView::region_opacity ()
452 {
453         set_frame_color ();
454 }
455
456 void
457 RegionView::raise_to_top ()
458 {
459         _region->raise_to_top ();
460 }
461
462 void
463 RegionView::lower_to_bottom ()
464 {
465         _region->lower_to_bottom ();
466 }
467
468 bool
469 RegionView::set_position (framepos_t pos, void* /*src*/, double* ignored)
470 {
471         double delta;
472         bool ret;
473
474         if (!(ret = TimeAxisViewItem::set_position (pos, this, &delta))) {
475                 return false;
476         }
477
478         if (ignored) {
479                 *ignored = delta;
480         }
481
482         if (delta) {
483                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
484                         (*i)->group->move (delta, 0.0);
485                 }
486         }
487
488         return ret;
489 }
490
491 void
492 RegionView::set_samples_per_unit (gdouble spu)
493 {
494         TimeAxisViewItem::set_samples_per_unit (spu);
495
496         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
497                 (*i)->set_samples_per_unit (spu);
498                 (*i)->set_duration (_region->length() / samples_per_unit);
499         }
500
501         region_sync_changed ();
502 }
503
504 bool
505 RegionView::set_duration (framecnt_t frames, void *src)
506 {
507         if (!TimeAxisViewItem::set_duration (frames, src)) {
508                 return false;
509         }
510
511         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
512                 (*i)->set_duration (_region->length() / samples_per_unit);
513         }
514
515         return true;
516 }
517
518 void
519 RegionView::set_colors ()
520 {
521         TimeAxisViewItem::set_colors ();
522
523         if (sync_mark) {
524                 sync_mark->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
525                 sync_line->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
526         }
527 }
528
529 void
530 RegionView::set_frame_color ()
531 {
532         if (_region->opaque()) {
533                 fill_opacity = 130;
534         } else {
535                 fill_opacity = 60;
536         }
537
538         TimeAxisViewItem::set_frame_color ();
539 }
540
541 void
542 RegionView::fake_set_opaque (bool yn)
543 {
544        if (yn) {
545                fill_opacity = 130;
546        } else {
547                fill_opacity = 60;
548        }
549
550        set_frame_color ();
551 }
552
553 void
554 RegionView::show_region_editor ()
555 {
556         if (editor == 0) {
557                 editor = new RegionEditor (trackview.session(), region());
558         }
559
560         editor->present ();
561         editor->show_all();
562 }
563
564 void
565 RegionView::hide_region_editor()
566 {
567         if (editor) {
568                 editor->hide_all ();
569         }
570 }
571
572 std::string
573 RegionView::make_name () const
574 {
575         std::string str;
576
577         // XXX nice to have some good icons for this
578
579         if (_region->locked()) {
580                 str += '>';
581                 str += _region->name();
582                 str += '<';
583         } else if (_region->position_locked()) {
584                 str += '{';
585                 str += _region->name();
586                 str += '}';
587 #ifdef WITH_VIDEOTIMELINE
588         } else if (_region->video_locked()) {
589                 str += '[';
590                 str += _region->name();
591                 str += ']';
592 #endif
593         } else {
594                 str = _region->name();
595         }
596
597         if (_region->muted()) {
598                 str = string ("!") + str;
599         }
600
601         return str;
602 }
603
604 void
605 RegionView::region_renamed ()
606 {
607         std::string str = make_name ();
608
609         set_item_name (str, this);
610         set_name_text (str);
611         reset_width_dependent_items (_pixel_width);
612 }
613
614 void
615 RegionView::region_sync_changed ()
616 {
617         int sync_dir;
618         framecnt_t sync_offset;
619
620         sync_offset = _region->sync_offset (sync_dir);
621
622         if (sync_offset == 0) {
623                 /* no need for a sync mark */
624                 if (sync_mark) {
625                         sync_mark->hide();
626                         sync_line->hide ();
627                 }
628                 return;
629         }
630
631         if (!sync_mark) {
632
633                 /* points set below */
634
635                 sync_mark = new ArdourCanvas::Polygon (*group);
636                 sync_mark->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
637
638                 sync_line = new ArdourCanvas::Line (*group);
639                 sync_line->property_fill_color_rgba() = RGBA_TO_UINT(0,255,0,255);     // fill_color;                   // FIXME make a themeable colour
640                 sync_line->property_width_pixels() = 1;
641         }
642
643         /* this has to handle both a genuine change of position, a change of samples_per_unit,
644            and a change in the bounds of the _region->
645          */
646
647         if (sync_offset == 0) {
648
649                 /* no sync mark - its the start of the region */
650
651                 sync_mark->hide();
652                 sync_line->hide ();
653
654         } else {
655
656                 if ((sync_dir < 0) || ((sync_dir > 0) && (sync_offset > _region->length()))) {
657
658                         /* no sync mark - its out of the bounds of the region */
659
660                         sync_mark->hide();
661                         sync_line->hide ();
662
663                 } else {
664
665                         /* lets do it */
666
667                         Points points;
668
669                         //points = sync_mark->property_points().get_value();
670
671                         double offset = sync_offset / samples_per_unit;
672                         points.push_back (Gnome::Art::Point (offset - ((sync_mark_width-1)/2), 1));
673                         points.push_back (Gnome::Art::Point (offset + ((sync_mark_width-1)/2), 1));
674                         points.push_back (Gnome::Art::Point (offset, sync_mark_width - 1));
675                         points.push_back (Gnome::Art::Point (offset - ((sync_mark_width-1)/2), 1));
676                         sync_mark->property_points().set_value (points);
677                         sync_mark->show ();
678
679                         points.clear ();
680                         points.push_back (Gnome::Art::Point (offset, 0));
681                         points.push_back (Gnome::Art::Point (offset, trackview.current_height() - NAME_HIGHLIGHT_SIZE));
682
683                         sync_line->property_points().set_value (points);
684                         sync_line->show ();
685                 }
686         }
687 }
688
689 void
690 RegionView::move (double x_delta, double y_delta)
691 {
692         if (!_region->can_move() || (x_delta == 0 && y_delta == 0)) {
693                 return;
694         }
695
696         get_canvas_group()->move (x_delta, y_delta);
697
698         /* note: ghosts never leave their tracks so y_delta for them is always zero */
699
700         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
701                 (*i)->group->move (x_delta, 0.0);
702         }
703 }
704
705 void
706 RegionView::remove_ghost_in (TimeAxisView& tv)
707 {
708         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
709                 if (&(*i)->trackview == &tv) {
710                         delete *i;
711                         break;
712                 }
713         }
714 }
715
716 void
717 RegionView::remove_ghost (GhostRegion* ghost)
718 {
719         if (in_destructor) {
720                 return;
721         }
722
723         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
724                 if (*i == ghost) {
725                         ghosts.erase (i);
726                         break;
727                 }
728         }
729 }
730
731 uint32_t
732 RegionView::get_fill_color ()
733 {
734         return fill_color;
735 }
736
737 void
738 RegionView::set_height (double h)
739 {
740         TimeAxisViewItem::set_height(h);
741
742         if (sync_line) {
743                 Points points;
744                 int sync_dir;
745                 framecnt_t sync_offset;
746                 sync_offset = _region->sync_offset (sync_dir);
747                 double offset = sync_offset / samples_per_unit;
748
749                 points.push_back (Gnome::Art::Point (offset, 0));
750                 points.push_back (Gnome::Art::Point (offset, h - NAME_HIGHLIGHT_SIZE));
751                 sync_line->property_points().set_value (points);
752         }
753
754         for (list<ArdourCanvas::SimpleRect*>::iterator i = _coverage_frames.begin(); i != _coverage_frames.end(); ++i) {
755                 (*i)->property_y2() = h + 1;
756         }
757
758         for (list<ArdourCanvas::SimpleRect*>::iterator i = _silent_frames.begin(); i != _silent_frames.end(); ++i) {
759                 (*i)->property_y2() = h + 1;
760         }
761
762 }
763
764 /** Remove old coverage frames and make new ones, if we're in a LayerDisplay mode
765  *  which uses them. */
766 void
767 RegionView::update_coverage_frames (LayerDisplay d)
768 {
769         /* remove old coverage frames */
770         for (list<ArdourCanvas::SimpleRect*>::iterator i = _coverage_frames.begin (); i != _coverage_frames.end (); ++i) {
771                 delete *i;
772         }
773
774         _coverage_frames.clear ();
775
776         if (d != Stacked) {
777                 /* don't do coverage frames unless we're in stacked mode */
778                 return;
779         }
780
781         boost::shared_ptr<Playlist> pl (_region->playlist ());
782         if (!pl) {
783                 return;
784         }
785
786         framepos_t const position = _region->first_frame ();
787         framepos_t t = position;
788         framepos_t const end = _region->last_frame ();
789
790         ArdourCanvas::SimpleRect* cr = 0;
791         bool me = false;
792
793         /* the color that will be used to show parts of regions that will not be heard */
794         uint32_t const non_playing_color = ARDOUR_UI::config()->canvasvar_CoveredRegion.get ();
795
796         while (t < end) {
797
798                 t++;
799
800                 /* is this region is on top at time t? */
801                 bool const new_me = (pl->top_unmuted_region_at (t) == _region);
802
803                 /* finish off any old rect, if required */
804                 if (cr && me != new_me) {
805                         cr->property_x2() = trackview.editor().frame_to_pixel (t - position);
806                 }
807
808                 /* start off any new rect, if required */
809                 if (cr == 0 || me != new_me) {
810                         cr = new ArdourCanvas::NoEventSimpleRect (*group);
811                         _coverage_frames.push_back (cr);
812                         cr->property_x1() = trackview.editor().frame_to_pixel (t - position);
813                         cr->property_y1() = 1;
814                         cr->property_y2() = _height + 1;
815                         cr->property_outline_pixels() = 0;
816                         if (new_me) {
817                                 cr->property_fill_color_rgba () = UINT_RGBA_CHANGE_A (non_playing_color, 0);
818                         } else {
819                                 cr->property_fill_color_rgba () = non_playing_color;
820                         }
821                 }
822
823                 t = pl->find_next_region_boundary (t, 1);
824                 me = new_me;
825         }
826
827         if (cr) {
828                 /* finish off the last rectangle */
829                 cr->property_x2() = trackview.editor().frame_to_pixel (end - position);
830         }
831
832         if (frame_handle_start) {
833                 frame_handle_start->raise_to_top ();
834         }
835
836         if (frame_handle_end) {
837                 frame_handle_end->raise_to_top ();
838         }
839
840         if (name_highlight) {
841                 name_highlight->raise_to_top ();
842         }
843
844         if (name_pixbuf) {
845                 name_pixbuf->raise_to_top ();
846         }
847 }
848
849 bool
850 RegionView::trim_front (framepos_t new_bound, bool no_overlap)
851 {
852         if (_region->locked()) {
853                 return false;
854         }
855
856         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
857         double const speed = rtv.track()->speed ();
858
859         framepos_t const pre_trim_first_frame = _region->first_frame();
860
861         _region->trim_front ((framepos_t) (new_bound * speed));
862
863         if (no_overlap) {
864                 // Get the next region on the left of this region and shrink/expand it.
865                 boost::shared_ptr<Playlist> playlist (_region->playlist());
866                 boost::shared_ptr<Region> region_left = playlist->find_next_region (pre_trim_first_frame, End, 0);
867
868                 bool regions_touching = false;
869
870                 if (region_left != 0 && (pre_trim_first_frame == region_left->last_frame() + 1)) {
871                         regions_touching = true;
872                 }
873
874                 // Only trim region on the left if the first frame has gone beyond the left region's last frame.
875                 if (region_left != 0 && (region_left->last_frame() > _region->first_frame() || regions_touching)) {
876                         region_left->trim_end (_region->first_frame() - 1);
877                 }
878         }
879
880         region_changed (ARDOUR::bounds_change);
881
882         return (pre_trim_first_frame != _region->first_frame());  //return true if we actually changed something
883 }
884
885 bool
886 RegionView::trim_end (framepos_t new_bound, bool no_overlap)
887 {
888         if (_region->locked()) {
889                 return false;
890         }
891
892         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
893         double const speed = rtv.track()->speed ();
894
895         framepos_t const pre_trim_last_frame = _region->last_frame();
896
897         _region->trim_end ((framepos_t) (new_bound * speed));
898
899         if (no_overlap) {
900                 // Get the next region on the right of this region and shrink/expand it.
901                 boost::shared_ptr<Playlist> playlist (_region->playlist());
902                 boost::shared_ptr<Region> region_right = playlist->find_next_region (pre_trim_last_frame, Start, 1);
903
904                 bool regions_touching = false;
905
906                 if (region_right != 0 && (pre_trim_last_frame == region_right->first_frame() - 1)) {
907                         regions_touching = true;
908                 }
909
910                 // Only trim region on the right if the last frame has gone beyond the right region's first frame.
911                 if (region_right != 0 && (region_right->first_frame() < _region->last_frame() || regions_touching)) {
912                         region_right->trim_front (_region->last_frame() + 1);
913                 }
914
915                 region_changed (ARDOUR::bounds_change);
916
917         } else {
918                 region_changed (PropertyChange (ARDOUR::Properties::length));
919         }
920
921         return (pre_trim_last_frame != _region->last_frame());  //return true if we actually changed something
922 }
923
924
925 void
926 RegionView::thaw_after_trim ()
927 {
928         if (_region->locked()) {
929                 return;
930         }
931
932         _region->resume_property_changes ();
933 }
934
935
936 void
937 RegionView::trim_contents (framepos_t frame_delta, bool left_direction, bool swap_direction)
938 {
939         if (_region->locked()) {
940                 return;
941         }
942
943         framepos_t new_bound;
944
945         RouteTimeAxisView& rtv = dynamic_cast<RouteTimeAxisView&> (trackview);
946         double const speed = rtv.track()->speed ();
947
948         if (left_direction) {
949                 if (swap_direction) {
950                         new_bound = (framepos_t) (_region->position() / speed) + frame_delta;
951                 } else {
952                         new_bound = (framepos_t) (_region->position() / speed) - frame_delta;
953                 }
954         } else {
955                 if (swap_direction) {
956                         new_bound = (framepos_t) (_region->position() / speed) - frame_delta;
957                 } else {
958                         new_bound = (framepos_t) (_region->position() / speed) + frame_delta;
959                 }
960         }
961
962         _region->trim_start ((framepos_t) (new_bound * speed));
963         region_changed (PropertyChange (ARDOUR::Properties::start));
964 }
965
966 /** Snap a frame offset within our region using the current snap settings.
967  *  @param x Frame offset from this region's position.
968  *  @return Snapped frame offset from this region's position.
969  */
970 frameoffset_t
971 RegionView::snap_frame_to_frame (frameoffset_t x) const
972 {
973         PublicEditor& editor = trackview.editor();
974
975         /* x is region relative, convert it to global absolute frames */
976         framepos_t const session_frame = x + _region->position();
977
978         /* try a snap in either direction */
979         framepos_t frame = session_frame;
980         editor.snap_to (frame, 0);
981
982         /* if we went off the beginning of the region, snap forwards */
983         if (frame < _region->position ()) {
984                 frame = session_frame;
985                 editor.snap_to (frame, 1);
986         }
987
988         /* back to region relative */
989         return frame - _region->position();
990 }