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