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