6bf76c84e8788e0425897428c64a615153476cf6
[ardour.git] / gtk2_ardour / audio_region_view.cc
1 /*
2     Copyright (C) 2001-2006 Paul Davis
3
4     This program is free software; you can r>edistribute 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 #include <cmath>
20 #include <cassert>
21 #include <algorithm>
22
23 #include <boost/scoped_array.hpp>
24
25 #include <gtkmm.h>
26
27 #include <gtkmm2ext/gtk_ui.h>
28
29 #include "ardour/playlist.h"
30 #include "ardour/audioregion.h"
31 #include "ardour/audiosource.h"
32 #include "ardour/profile.h"
33 #include "ardour/session.h"
34
35 #include "pbd/memento_command.h"
36 #include "pbd/stacktrace.h"
37
38 #include "evoral/Curve.hpp"
39
40 #include "canvas/rectangle.h"
41 #include "canvas/polygon.h"
42 #include "canvas/poly_line.h"
43 #include "canvas/line.h"
44 #include "canvas/text.h"
45 #include "canvas/debug.h"
46 #include "canvas/utils.h"
47
48 #include "streamview.h"
49 #include "audio_region_view.h"
50 #include "audio_time_axis.h"
51 #include "public_editor.h"
52 #include "audio_region_editor.h"
53 #include "audio_streamview.h"
54 #include "region_gain_line.h"
55 #include "control_point.h"
56 #include "ghostregion.h"
57 #include "audio_time_axis.h"
58 #include "utils.h"
59 #include "rgb_macros.h"
60 #include "gui_thread.h"
61 #include "ardour_ui.h"
62
63 #include "i18n.h"
64
65 #define MUTED_ALPHA 10
66
67 using namespace std;
68 using namespace ARDOUR;
69 using namespace PBD;
70 using namespace Editing;
71 using namespace ArdourCanvas;
72
73 static const int32_t sync_mark_width = 9;
74 static double const handle_size = 15; /* height of fade handles */
75
76 AudioRegionView::AudioRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv, boost::shared_ptr<AudioRegion> r, double spu,
77                                   Gdk::Color const & basic_color)
78         : RegionView (parent, tv, r, spu, basic_color)
79         , sync_mark(0)
80         , fade_in_shape(0)
81         , fade_out_shape(0)
82         , fade_in_handle(0)
83         , fade_out_handle(0)
84         , start_xfade_in (0)
85         , start_xfade_out (0)
86         , start_xfade_rect (0)
87         , _start_xfade_visible (false)
88         , end_xfade_in (0)
89         , end_xfade_out (0)
90         , end_xfade_rect (0)
91         , _end_xfade_visible (false)
92         , _amplitude_above_axis(1.0)
93         , fade_color(0)
94 {
95         Config->ParameterChanged.connect (*this, invalidator (*this), boost::bind (&AudioRegionView::parameter_changed, this, _1), gui_context());
96 }
97
98 AudioRegionView::AudioRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv, boost::shared_ptr<AudioRegion> r, double spu,
99                                   Gdk::Color const & basic_color, bool recording, TimeAxisViewItem::Visibility visibility)
100         : RegionView (parent, tv, r, spu, basic_color, recording, visibility)
101         , sync_mark(0)
102         , fade_in_shape(0)
103         , fade_out_shape(0)
104         , fade_in_handle(0)
105         , fade_out_handle(0)
106         , start_xfade_in (0)
107         , start_xfade_out (0)
108         , start_xfade_rect (0)
109         , _start_xfade_visible (false)
110         , end_xfade_in (0)
111         , end_xfade_out (0)
112         , end_xfade_rect (0)
113         , _end_xfade_visible (false)
114         , _amplitude_above_axis(1.0)
115         , fade_color(0)
116 {
117         Config->ParameterChanged.connect (*this, invalidator (*this), boost::bind (&AudioRegionView::parameter_changed, this, _1), gui_context());
118 }
119
120 AudioRegionView::AudioRegionView (const AudioRegionView& other, boost::shared_ptr<AudioRegion> other_region)
121         : RegionView (other, boost::shared_ptr<Region> (other_region))
122         , fade_in_shape(0)
123         , fade_out_shape(0)
124         , fade_in_handle(0)
125         , fade_out_handle(0)
126         , start_xfade_in (0)
127         , start_xfade_out (0)
128         , start_xfade_rect (0)
129         , _start_xfade_visible (false)
130         , end_xfade_in (0)
131         , end_xfade_out (0)
132         , end_xfade_rect (0)
133         , _end_xfade_visible (false)
134         , _amplitude_above_axis (other._amplitude_above_axis)
135         , fade_color(0)
136 {
137         Gdk::Color c;
138         int r,g,b,a;
139
140         UINT_TO_RGBA (other.fill_color, &r, &g, &b, &a);
141         c.set_rgb_p (r/255.0, g/255.0, b/255.0);
142
143         init (c, true);
144
145         Config->ParameterChanged.connect (*this, invalidator (*this), boost::bind (&AudioRegionView::parameter_changed, this, _1), gui_context());
146 }
147
148 void
149 AudioRegionView::init (Gdk::Color const & basic_color, bool wfd)
150 {
151         // FIXME: Some redundancy here with RegionView::init.  Need to figure out
152         // where order is important and where it isn't...
153
154         RegionView::init (basic_color, wfd);
155
156         _amplitude_above_axis = 1.0;
157
158         compute_colors (basic_color);
159
160         create_waves ();
161
162         fade_in_shape = new ArdourCanvas::PolyLine (group);
163         CANVAS_DEBUG_NAME (fade_in_shape, string_compose ("fade in shape for %1", region()->name()));
164         fade_in_shape->set_outline_color (fade_color);
165         fade_in_shape->set_data ("regionview", this);
166
167         fade_out_shape = new ArdourCanvas::PolyLine (group);
168         CANVAS_DEBUG_NAME (fade_out_shape, string_compose ("fade out shape for %1", region()->name()));
169         fade_out_shape->set_outline_color (fade_color);
170         fade_out_shape->set_data ("regionview", this);
171
172         if (!_recregion) {
173                 fade_in_handle = new ArdourCanvas::Rectangle (group);
174                 CANVAS_DEBUG_NAME (fade_in_handle, string_compose ("fade in handle for %1", region()->name()));
175                 fade_in_handle->set_outline_color (RGBA_TO_UINT (0, 0, 0, 255));
176                 fade_in_handle->set_fill_color (ARDOUR_UI::config()->get_canvasvar_InactiveFadeHandle());
177                 fade_in_handle->set_data ("regionview", this);
178                 fade_in_handle->hide ();
179
180                 fade_out_handle = new ArdourCanvas::Rectangle (group);
181                 CANVAS_DEBUG_NAME (fade_out_handle, string_compose ("fade out handle for %1", region()->name()));
182                 fade_out_handle->set_outline_color (RGBA_TO_UINT (0, 0, 0, 255));
183                 fade_out_handle->set_fill_color (ARDOUR_UI::config()->get_canvasvar_InactiveFadeHandle());
184                 fade_out_handle->set_data ("regionview", this);
185                 fade_out_handle->hide ();
186         }
187
188         setup_fade_handle_positions ();
189
190         if (!trackview.session()->config.get_show_region_fades()) {
191                 set_fade_visibility (false);
192         }
193
194         const string line_name = _region->name() + ":gain";
195
196         if (!Profile->get_sae()) {
197                 gain_line.reset (new AudioRegionGainLine (line_name, *this, *group, audio_region()->envelope()));
198         }
199         
200         update_envelope_visibility ();
201         gain_line->reset ();
202
203         set_height (trackview.current_height());
204
205         region_muted ();
206         region_sync_changed ();
207
208         region_resized (ARDOUR::bounds_change);
209
210         for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
211                 (*i)->set_duration (_region->length() / samples_per_pixel);
212         }
213
214         region_locked ();
215         envelope_active_changed ();
216         fade_in_active_changed ();
217         fade_out_active_changed ();
218
219         reset_width_dependent_items (_pixel_width);
220
221         fade_in_shape->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_fade_in_event), fade_in_shape, this));
222         if (fade_in_handle) {
223                 fade_in_handle->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_fade_in_handle_event), fade_in_handle, this));
224         }
225
226         fade_out_shape->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_fade_out_event), fade_out_shape, this));
227
228         if (fade_out_handle) {
229                 fade_out_handle->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_fade_out_handle_event), fade_out_handle, this));
230         }
231
232         set_colors ();
233
234         setup_waveform_visibility ();
235         setup_waveform_shape ();
236
237         if (frame_handle_start) {
238                 frame_handle_start->raise_to_top ();
239         }
240         if (frame_handle_end) {
241                 frame_handle_end->raise_to_top ();
242         }
243
244         /* XXX sync mark drag? */
245 }
246
247 AudioRegionView::~AudioRegionView ()
248 {
249         in_destructor = true;
250
251         RegionViewGoingAway (this); /* EMIT_SIGNAL */
252
253         for (vector<ScopedConnection*>::iterator i = _data_ready_connections.begin(); i != _data_ready_connections.end(); ++i) {
254                 delete *i;
255         }
256
257         for (list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator i = feature_lines.begin(); i != feature_lines.end(); ++i) {
258                 delete ((*i).second);
259         }
260
261         /* all waveviews etc will be destroyed when the group is destroyed */
262 }
263
264 boost::shared_ptr<ARDOUR::AudioRegion>
265 AudioRegionView::audio_region() const
266 {
267         // "Guaranteed" to succeed...
268         return boost::dynamic_pointer_cast<AudioRegion>(_region);
269 }
270
271 void
272 AudioRegionView::region_changed (const PropertyChange& what_changed)
273 {
274         ENSURE_GUI_THREAD (*this, &AudioRegionView::region_changed, what_changed);
275
276         RegionView::region_changed (what_changed);
277
278         if (what_changed.contains (ARDOUR::Properties::scale_amplitude)) {
279                 region_scale_amplitude_changed ();
280         }
281         if (what_changed.contains (ARDOUR::Properties::fade_in)) {
282                 fade_in_changed ();
283         }
284         if (what_changed.contains (ARDOUR::Properties::fade_out)) {
285                 fade_out_changed ();
286         }
287         if (what_changed.contains (ARDOUR::Properties::fade_in_active)) {
288                 fade_in_active_changed ();
289         }
290         if (what_changed.contains (ARDOUR::Properties::fade_out_active)) {
291                 fade_out_active_changed ();
292         }
293         if (what_changed.contains (ARDOUR::Properties::envelope_active)) {
294                 envelope_active_changed ();
295         }
296         if (what_changed.contains (ARDOUR::Properties::valid_transients)) {
297                 transients_changed ();
298         }
299 }
300
301 void
302 AudioRegionView::fade_in_changed ()
303 {
304         reset_fade_in_shape ();
305 }
306
307 void
308 AudioRegionView::fade_out_changed ()
309 {
310         reset_fade_out_shape ();
311 }
312
313 void
314 AudioRegionView::fade_in_active_changed ()
315 {
316         if (audio_region()->fade_in_active()) {
317                 /* XXX: make a themable colour */
318                 fade_in_shape->set_outline_color (RGBA_TO_UINT (45, 45, 45, 90));
319         } else {
320                 /* XXX: make a themable colour */
321                 fade_in_shape->set_outline_color (RGBA_TO_UINT (45, 45, 45, 20));
322         }
323 }
324
325 void
326 AudioRegionView::fade_out_active_changed ()
327 {
328         if (audio_region()->fade_out_active()) {
329                 /* XXX: make a themable colour */
330                 fade_out_shape->set_outline_color (RGBA_TO_UINT (45, 45, 45, 90));
331         } else {
332                 /* XXX: make a themable colour */
333                 fade_out_shape->set_outline_color (RGBA_TO_UINT (45, 45, 45, 20));
334         }
335 }
336
337
338 void
339 AudioRegionView::region_scale_amplitude_changed ()
340 {
341         for (uint32_t n = 0; n < waves.size(); ++n) {
342                 waves[n]->gain_changed ();
343         }
344 }
345
346 void
347 AudioRegionView::region_renamed ()
348 {
349         std::string str = RegionView::make_name ();
350
351         if (audio_region()->speed_mismatch (trackview.session()->frame_rate())) {
352                 str = string ("*") + str;
353         }
354
355         if (_region->muted()) {
356                 str = string ("!") + str;
357         }
358
359         set_item_name (str, this);
360         set_name_text (str);
361 }
362
363 void
364 AudioRegionView::region_resized (const PropertyChange& what_changed)
365 {
366         AudioGhostRegion* agr;
367
368         RegionView::region_resized(what_changed);
369         PropertyChange interesting_stuff;
370
371         interesting_stuff.add (ARDOUR::Properties::start);
372         interesting_stuff.add (ARDOUR::Properties::length);
373
374         if (what_changed.contains (interesting_stuff)) {
375                 
376                 for (uint32_t n = 0; n < waves.size(); ++n) {
377                         waves[n]->region_resized ();
378                 }
379
380                 for (vector<GhostRegion*>::iterator i = ghosts.begin(); i != ghosts.end(); ++i) {
381                         if ((agr = dynamic_cast<AudioGhostRegion*>(*i)) != 0) {
382
383                                 for (vector<WaveView*>::iterator w = agr->waves.begin(); w != agr->waves.end(); ++w) {
384                                         (*w)->region_resized ();
385                                 }
386                         }
387                 }
388
389                 /* hide transient lines that extend beyond the region end */
390
391                 list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
392
393                 for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
394                         if (l->first > _region->length() - 1) {
395                                 l->second->hide();
396                         } else {
397                                 l->second->show();
398                         }
399                 }
400         }
401 }
402
403 void
404 AudioRegionView::reset_width_dependent_items (double pixel_width)
405 {
406         RegionView::reset_width_dependent_items(pixel_width);
407         assert(_pixel_width == pixel_width);
408
409         if (fade_in_handle) {
410                 if (pixel_width <= 6.0 || _height < 5.0 || !trackview.session()->config.get_show_region_fades()) {
411                         fade_in_handle->hide();
412                         fade_out_handle->hide();
413                 } else {
414                         //fade_in_handle->show();
415                         //fade_out_handle->show();
416                 }
417         }
418
419         AnalysisFeatureList analysis_features = _region->transients();
420         AnalysisFeatureList::const_iterator i;
421
422         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
423
424         for (i = analysis_features.begin(), l = feature_lines.begin(); i != analysis_features.end() && l != feature_lines.end(); ++i, ++l) {
425
426                 float x_pos = trackview.editor().sample_to_pixel (*i);
427
428                 (*l).second->set (ArdourCanvas::Duple (x_pos, 2.0),
429                                   ArdourCanvas::Duple (x_pos, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1));
430
431                 (*l).first = *i;
432
433                 (*l).second->set (ArdourCanvas::Duple (x_pos, 2.0),
434                                   ArdourCanvas::Duple (x_pos, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1));
435         }
436
437         reset_fade_shapes ();
438 }
439
440 void
441 AudioRegionView::region_muted ()
442 {
443         RegionView::region_muted();
444         set_waveform_colors ();
445 }
446
447 void
448 AudioRegionView::setup_fade_handle_positions()
449 {
450         /* position of fade handle offset from the top of the region view */
451         double const handle_pos = 2;
452
453         if (fade_in_handle) {
454                 fade_in_handle->set_y0 (handle_pos);
455                 fade_in_handle->set_y1 (handle_pos + handle_size);
456         }
457
458         if (fade_out_handle) {
459                 fade_out_handle->set_y0 (handle_pos);
460                 fade_out_handle->set_y1 (handle_pos + handle_size);
461         }
462 }
463
464 void
465 AudioRegionView::set_height (gdouble height)
466 {
467         RegionView::set_height (height);
468
469         uint32_t wcnt = waves.size();
470
471         for (uint32_t n = 0; n < wcnt; ++n) {
472                 gdouble ht;
473
474                 if (height < NAME_HIGHLIGHT_THRESH) {
475                         ht = ((height - 2 * wcnt) / (double) wcnt);
476                 } else {
477                         ht = (((height - 2 * wcnt) - NAME_HIGHLIGHT_SIZE) / (double) wcnt);
478                 }
479
480                 gdouble yoff = n * (ht + 1);
481
482                 waves[n]->set_height (ht);
483                 waves[n]->set_y_position (yoff + 2);
484         }
485
486         if (gain_line) {
487
488                 if ((height/wcnt) < NAME_HIGHLIGHT_THRESH) {
489                         gain_line->hide ();
490                 } else {
491                         update_envelope_visibility ();
492                 }
493
494                 gain_line->set_height ((uint32_t) rint (height - NAME_HIGHLIGHT_SIZE) - 2);
495         }
496
497         reset_fade_shapes ();
498
499         /* Update hights for any active feature lines */
500         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
501
502         for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
503
504                 float pos_x = trackview.editor().sample_to_pixel((*l).first);
505
506                 (*l).second->set (ArdourCanvas::Duple (pos_x, 2.0),
507                                   ArdourCanvas::Duple (pos_x, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1));
508         }
509
510         if (name_text) {
511                 name_text->raise_to_top();
512         }
513 }
514
515 void
516 AudioRegionView::reset_fade_shapes ()
517 {
518         reset_fade_in_shape ();
519         reset_fade_out_shape ();
520 }
521
522 void
523 AudioRegionView::reset_fade_in_shape ()
524 {
525         reset_fade_in_shape_width (audio_region(), (framecnt_t) audio_region()->fade_in()->back()->when);
526 }
527
528 void
529 AudioRegionView::reset_fade_in_shape_width (boost::shared_ptr<AudioRegion> ar, framecnt_t width)
530 {
531         if (fade_in_handle == 0) {
532                 return;
533         }
534
535         /* smallest size for a fade is 64 frames */
536
537         width = std::max ((framecnt_t) 64, width);
538
539         /* round here to prevent little visual glitches with sub-pixel placement */
540         double const pwidth = rint (width / samples_per_pixel);
541         double const handle_left = pwidth;
542
543         /* Put the fade in handle so that its left side is at the end-of-fade line */
544         fade_in_handle->set_x0 (handle_left);
545         fade_in_handle->set_x1 (handle_left + handle_size);
546
547         if (pwidth < 5) {
548                 hide_start_xfade();
549                 fade_in_shape->hide();
550                 return;
551         }
552
553         if (trackview.session()->config.get_show_region_fades()) {
554                 fade_in_shape->show();
555         }
556
557         uint32_t npoints = std::min (gdk_screen_width(), (int) pwidth);
558         double effective_height;
559         float curve[npoints];
560
561         audio_region()->fade_in()->curve().get_vector (0, audio_region()->fade_in()->back()->when, curve, npoints);
562
563         if (_height >= NAME_HIGHLIGHT_THRESH) {
564                 effective_height = _height - NAME_HIGHLIGHT_SIZE - 2;
565         } else {
566                 effective_height = _height - 2;
567         }
568
569         Points points;
570
571         points.assign (npoints, Duple());
572
573         /* points *MUST* be in anti-clockwise order */
574
575         uint32_t pi, pc;
576         double xdelta = pwidth/npoints;
577
578         for (pi = 0, pc = 0; pc < npoints; ++pc) {
579                 points[pi].x = 1 + (pc * xdelta);
580                 points[pi++].y = 2 + (effective_height - (curve[pc] * effective_height));
581         }
582
583         /* draw the line */
584
585         redraw_start_xfade_to (ar, width, points, effective_height);
586
587         fade_in_shape->set (points);
588
589         /* ensure trim handle stays on top */
590         if (frame_handle_start) {
591                 frame_handle_start->raise_to_top();
592         }
593
594 }
595
596 void
597 AudioRegionView::reset_fade_out_shape ()
598 {
599         reset_fade_out_shape_width (audio_region(), (framecnt_t) audio_region()->fade_out()->back()->when);
600 }
601
602 void
603 AudioRegionView::reset_fade_out_shape_width (boost::shared_ptr<AudioRegion> ar, framecnt_t width)
604 {
605         if (fade_out_handle == 0) {
606                 return;
607         }
608
609         /* smallest size for a fade is 64 frames */
610
611         width = std::max ((framecnt_t) 64, width);
612
613         /* round here to prevent little visual glitches with sub-pixel placement */
614         double const pwidth = rint (width / samples_per_pixel);
615
616         double const handle_right = (_region->length() / samples_per_pixel) - pwidth;
617
618         /* Put the fade out handle so that its right side is at the end-of-fade line;
619          */
620         fade_out_handle->set_x0 (handle_right - handle_size);
621         fade_out_handle->set_x1 (handle_right);
622
623         /* don't show shape if its too small */
624
625         if (pwidth < 5) {
626                 hide_end_xfade();
627                 fade_out_shape->hide();
628                 return;
629         }
630
631         if (trackview.session()->config.get_show_region_fades()) {
632                 fade_out_shape->show();
633         }
634
635         uint32_t npoints = std::min (gdk_screen_width(), (int) pwidth);
636         double effective_height;
637         float curve[npoints];
638
639         audio_region()->fade_out()->curve().get_vector (0, audio_region()->fade_out()->back()->when, curve, npoints);
640
641         if (_height >= NAME_HIGHLIGHT_THRESH) {
642                 effective_height = _height - NAME_HIGHLIGHT_SIZE - 2;
643         } else {
644                 effective_height = _height - 2;
645         }
646
647         /* points *MUST* be in anti-clockwise order */
648
649         Points points;
650
651         uint32_t pi, pc;
652         double xdelta = pwidth/npoints;
653
654         points.assign (npoints, Duple ());
655
656         for (pi = 0, pc = 0; pc < npoints; ++pc, ++pi) {
657                 points[pi].x = _pixel_width - pwidth + (pc * xdelta);
658                 points[pi].y = 2 + (effective_height - (curve[pc] * effective_height));
659         }
660
661         /* draw the line */
662
663         redraw_end_xfade_to (ar, width, points, effective_height);
664
665         fade_out_shape->set (points);
666
667         /* ensure trim handle stays on top */
668         if (frame_handle_end) {
669                 frame_handle_end->raise_to_top();
670         }
671
672 }
673
674 framepos_t
675 AudioRegionView::get_fade_in_shape_width ()
676 {
677         return audio_region()->fade_in()->back()->when;
678 }
679
680 framepos_t
681 AudioRegionView::get_fade_out_shape_width ()
682 {
683         return audio_region()->fade_out()->back()->when;
684 }
685
686
687 void
688 AudioRegionView::redraw_start_xfade ()
689 {
690         boost::shared_ptr<AudioRegion> ar (audio_region());
691
692         if (!ar->fade_in() || ar->fade_in()->empty()) {
693                 return;
694         }
695
696         show_start_xfade();
697         reset_fade_in_shape_width (ar, ar->fade_in()->back()->when);
698 }
699
700 void
701 AudioRegionView::redraw_start_xfade_to (boost::shared_ptr<AudioRegion> ar, framecnt_t /*width*/, Points& points, double effective_height)
702 {
703         if (points.size() < 3) {
704                 return;
705         }
706
707         if (!start_xfade_in) {
708                 start_xfade_in = new ArdourCanvas::PolyLine (group);
709                 CANVAS_DEBUG_NAME (start_xfade_in, string_compose ("xfade start in line for %1", region()->name()));
710                 start_xfade_in->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
711                 start_xfade_in->set_outline_width (1.5);
712         }
713
714         if (!start_xfade_out) {
715                 start_xfade_out = new ArdourCanvas::PolyLine (group);
716                 CANVAS_DEBUG_NAME (start_xfade_out, string_compose ("xfade start out line for %1", region()->name()));
717                 uint32_t col = UINT_RGBA_CHANGE_A (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine(), 128);
718                 start_xfade_out->set_outline_color (col);
719                 start_xfade_out->set_outline_width (2.0);
720         }
721
722         if (!start_xfade_rect) {
723                 start_xfade_rect = new ArdourCanvas::Rectangle (group);
724                 CANVAS_DEBUG_NAME (start_xfade_rect, string_compose ("xfade start rect for %1", region()->name()));
725                 start_xfade_rect->set_fill (true);
726                 start_xfade_rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
727                 start_xfade_rect->set_outline (false);
728                 start_xfade_rect->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_start_xfade_event), start_xfade_rect, this));
729                 start_xfade_rect->set_data ("regionview", this);
730         }
731
732         start_xfade_rect->set (ArdourCanvas::Rect (points.front().x, 1.0, points.back().x, effective_height));
733         start_xfade_rect->show ();
734
735         start_xfade_in->set (points);
736         start_xfade_in->show ();
737
738         /* fade out line */
739
740         boost::shared_ptr<AutomationList> inverse = ar->inverse_fade_in();
741         Points ipoints;
742         Points::size_type npoints = points.size();
743
744         ipoints.assign (npoints, Duple());
745
746         if (!inverse) {
747
748                 for (Points::size_type i = 0, pci = 0; i < npoints; ++i, ++pci) {
749                         ArdourCanvas::Duple &p (ipoints[pci]);
750                         p.x = i;
751                         p.y = effective_height - points[pci].y;
752                 }
753
754         } else {
755
756                 float vec[npoints];
757                 inverse->curve().get_vector (0, inverse->back()->when, vec, npoints);
758                 
759                 for (Points::size_type i = 0, pci = 0; i < npoints; ++i, ++pci) {
760                         ArdourCanvas::Duple &p (ipoints[pci]);
761                         p.x = i;
762                         p.y = 1.0 + effective_height - (effective_height * vec[i]);
763                 }
764         }
765
766         start_xfade_out->set (ipoints);
767         start_xfade_out->show ();
768
769         show_start_xfade();
770 }
771
772 void
773 AudioRegionView::redraw_end_xfade ()
774 {
775         boost::shared_ptr<AudioRegion> ar (audio_region());
776
777         if (!ar->fade_out() || ar->fade_out()->empty()) {
778                 return;
779         }
780
781         show_end_xfade();
782         
783         reset_fade_out_shape_width (ar, ar->fade_out()->back()->when);
784 }
785
786 void
787 AudioRegionView::redraw_end_xfade_to (boost::shared_ptr<AudioRegion> ar, framecnt_t width, Points& points, double effective_height)
788 {
789         if (points.size() < 3) {
790                 return;
791         }
792
793         if (!end_xfade_in) {
794                 end_xfade_in = new ArdourCanvas::PolyLine (group);
795                 CANVAS_DEBUG_NAME (end_xfade_in, string_compose ("xfade end in line for %1", region()->name()));
796                 uint32_t col UINT_RGBA_CHANGE_A (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine(), 128);
797                 end_xfade_in->set_outline_color (col);
798                 end_xfade_in->set_outline_width (1.5);
799         }
800
801         if (!end_xfade_out) {
802                 end_xfade_out = new ArdourCanvas::PolyLine (group);
803                 CANVAS_DEBUG_NAME (end_xfade_out, string_compose ("xfade end out line for %1", region()->name()));
804                 end_xfade_out->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
805                 end_xfade_out->set_outline_width (2.0);
806         }
807
808         if (!end_xfade_rect) {
809                 end_xfade_rect = new ArdourCanvas::Rectangle (group);
810                 CANVAS_DEBUG_NAME (end_xfade_rect, string_compose ("xfade end rect for %1", region()->name()));
811                 end_xfade_rect->set_fill (true);
812                 end_xfade_rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
813                 end_xfade_rect->set_outline (0);
814                 end_xfade_rect->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_end_xfade_event), end_xfade_rect, this));
815                 end_xfade_rect->set_data ("regionview", this);
816         }
817
818         end_xfade_rect->set (ArdourCanvas::Rect (points.front().x, 1.0, points.back().x, effective_height));
819         end_xfade_rect->show ();
820
821         end_xfade_in->set (points);
822         end_xfade_in->show ();
823         end_xfade_in->raise_to_top ();
824
825         /* fade in line */
826
827         boost::shared_ptr<AutomationList> inverse = ar->inverse_fade_out ();
828         Points ipoints;
829         Points::size_type npoints = points.size();
830
831         ipoints.assign (npoints, Duple());
832
833         if (!inverse) {
834
835                 const double rend = trackview.editor().sample_to_pixel (_region->length() - points.back().y);
836
837                 for (Points::size_type i = 0, pci = 0; i < npoints; ++i, ++pci) {
838                         ArdourCanvas::Duple &p (ipoints[pci]);
839                         p.x = rend + i;
840                         p.y = effective_height - points[pci].y;
841                 }
842
843         } else {
844
845                 boost::scoped_array<float> vec (new float[npoints]);
846                 inverse->curve().get_vector (inverse->front()->when, inverse->back()->when, vec.get(), npoints);
847
848                 const double rend = trackview.editor().sample_to_pixel (_region->length() - width);
849
850                 float* vp = vec.get();
851
852                 for (Points::size_type i = 0, pci = 0; i < npoints; ++i) {
853                         ArdourCanvas::Duple& p (ipoints[pci++]);
854                         p.x = rend + i;
855                         p.y = 1.0 + effective_height - (effective_height * vp[i]);
856                 }
857         }
858
859         end_xfade_out->set (ipoints);
860         end_xfade_out->show ();
861         end_xfade_out->raise_to_top ();
862
863         end_xfade_rect->raise_to_top ();  //this needs to be topmost so the lines don't steal mouse focus
864
865         show_end_xfade();
866 }
867
868 void
869 AudioRegionView::hide_xfades ()
870 {
871         hide_start_xfade ();
872         hide_end_xfade ();
873 }
874
875 void
876 AudioRegionView::hide_start_xfade ()
877 {
878         if (start_xfade_in) {
879                 start_xfade_in->hide();
880         }
881         if (start_xfade_out) {
882                 start_xfade_out->hide();
883         }
884         if (start_xfade_rect) {
885                 start_xfade_rect->hide ();
886         }
887
888         _start_xfade_visible = false;
889 }
890
891 void
892 AudioRegionView::hide_end_xfade ()
893 {
894         if (end_xfade_in) {
895                 end_xfade_in->hide();
896         }
897         if (end_xfade_out) {
898                 end_xfade_out->hide();
899         }
900         if (end_xfade_rect) {
901                 end_xfade_rect->hide ();
902         }
903
904         _end_xfade_visible = false;
905 }
906
907 void
908 AudioRegionView::show_start_xfade ()
909 {
910         if (start_xfade_in) {
911                 start_xfade_in->show();
912         }
913         if (start_xfade_out) {
914                 start_xfade_out->show();
915         }
916         if (start_xfade_rect) {
917                 start_xfade_rect->show ();
918         }
919
920         _start_xfade_visible = true;
921 }
922
923 void
924 AudioRegionView::show_end_xfade ()
925 {
926         if (end_xfade_in) {
927                 end_xfade_in->show();
928         }
929         if (end_xfade_out) {
930                 end_xfade_out->show();
931         }
932         if (end_xfade_rect) {
933                 end_xfade_rect->show ();
934         }
935
936         _end_xfade_visible = true;
937 }
938
939 void
940 AudioRegionView::set_samples_per_pixel (gdouble fpp)
941 {
942         RegionView::set_samples_per_pixel (fpp);
943
944         if (Config->get_show_waveforms ()) {
945                 for (uint32_t n = 0; n < waves.size(); ++n) {
946                         waves[n]->set_samples_per_pixel (fpp);
947                 }
948         }
949
950         if (gain_line) {
951                 gain_line->reset ();
952         }
953
954         reset_fade_shapes ();
955 }
956
957 void
958 AudioRegionView::set_amplitude_above_axis (gdouble a)
959 {
960         for (uint32_t n=0; n < waves.size(); ++n) {
961                 waves[n]->set_amplitude_above_axis (a);
962         }
963 }
964
965 void
966 AudioRegionView::compute_colors (Gdk::Color const & basic_color)
967 {
968         RegionView::compute_colors (basic_color);
969
970         /* gain color computed in envelope_active_changed() */
971
972         fade_color = UINT_RGBA_CHANGE_A (fill_color, 120);
973 }
974
975 void
976 AudioRegionView::set_colors ()
977 {
978         RegionView::set_colors();
979
980         if (gain_line) {
981                 gain_line->set_line_color (audio_region()->envelope_active() ? 
982                                            ARDOUR_UI::config()->get_canvasvar_GainLine() : 
983                                            ARDOUR_UI::config()->get_canvasvar_GainLineInactive());
984         }
985
986         set_waveform_colors ();
987
988         if (start_xfade_in) {
989                 start_xfade_in->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
990         }
991         if (start_xfade_out) {
992                 uint32_t col UINT_RGBA_CHANGE_A (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine(), 128);
993                 start_xfade_out->set_outline_color (col);
994         }
995         if (end_xfade_in) {
996                 end_xfade_in->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
997         }
998         if (end_xfade_out) {
999                 uint32_t col UINT_RGBA_CHANGE_A (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine(), 128);
1000                 end_xfade_out->set_outline_color (col);
1001         }
1002
1003         if (start_xfade_rect) {
1004                 start_xfade_rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
1005         }
1006         if (end_xfade_rect) {
1007                 end_xfade_rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
1008         }
1009 }
1010
1011 void
1012 AudioRegionView::setup_waveform_visibility ()
1013 {
1014         if (Config->get_show_waveforms ()) {
1015                 for (uint32_t n = 0; n < waves.size(); ++n) {
1016                         /* make sure the zoom level is correct, since we don't update
1017                            this when waveforms are hidden.
1018                         */
1019                         // CAIROCANVAS
1020                         // waves[n]->set_samples_per_pixel (_samples_per_pixel);
1021                         waves[n]->show();
1022                 }
1023         } else {
1024                 for (uint32_t n = 0; n < waves.size(); ++n) {
1025                         waves[n]->hide();
1026                 }
1027         }
1028 }
1029
1030 void
1031 AudioRegionView::temporarily_hide_envelope ()
1032 {
1033         if (gain_line) {
1034                 gain_line->hide ();
1035         }
1036 }
1037
1038 void
1039 AudioRegionView::unhide_envelope ()
1040 {
1041         update_envelope_visibility ();
1042 }
1043
1044 void
1045 AudioRegionView::update_envelope_visibility ()
1046 {
1047         if (!gain_line) {
1048                 return;
1049         }
1050
1051         if (Config->get_show_region_gain() || trackview.editor().current_mouse_mode() == Editing::MouseGain) {
1052                 gain_line->add_visibility (AutomationLine::Line);
1053         } else {
1054                 gain_line->hide ();
1055         }
1056 }
1057
1058 void
1059 AudioRegionView::create_waves ()
1060 {
1061         // cerr << "AudioRegionView::create_waves() called on " << this << endl;//DEBUG
1062         RouteTimeAxisView& atv (*(dynamic_cast<RouteTimeAxisView*>(&trackview))); // ick
1063
1064         if (!atv.track()) {
1065                 return;
1066         }
1067
1068         ChanCount nchans = atv.track()->n_channels();
1069
1070         // cerr << "creating waves for " << _region->name() << " with wfd = " << wait_for_data
1071         //              << " and channels = " << nchans.n_audio() << endl;
1072
1073         /* in tmp_waves, set up null pointers for each channel so the vector is allocated */
1074         for (uint32_t n = 0; n < nchans.n_audio(); ++n) {
1075                 tmp_waves.push_back (0);
1076         }
1077
1078         for (vector<ScopedConnection*>::iterator i = _data_ready_connections.begin(); i != _data_ready_connections.end(); ++i) {
1079                 delete *i;
1080         }
1081
1082         _data_ready_connections.clear ();
1083
1084         for (uint32_t i = 0; i < nchans.n_audio(); ++i) {
1085                 _data_ready_connections.push_back (0);
1086         }
1087
1088         for (uint32_t n = 0; n < nchans.n_audio(); ++n) {
1089
1090                 if (n >= audio_region()->n_channels()) {
1091                         break;
1092                 }
1093
1094                 // cerr << "\tchannel " << n << endl;
1095
1096                 if (wait_for_data) {
1097                         if (audio_region()->audio_source(n)->peaks_ready (boost::bind (&AudioRegionView::peaks_ready_handler, this, n), &_data_ready_connections[n], gui_context())) {
1098                                 // cerr << "\tData is ready\n";
1099                                 create_one_wave (n, true);
1100                         } else {
1101                                 // cerr << "\tdata is not ready\n";
1102                                 // we'll get a PeaksReady signal from the source in the future
1103                                 // and will call create_one_wave(n) then.
1104                         }
1105
1106                 } else {
1107                         // cerr << "\tdon't delay, display today!\n";
1108                         create_one_wave (n, true);
1109                 }
1110
1111         }
1112 }
1113
1114 void
1115 AudioRegionView::create_one_wave (uint32_t which, bool /*direct*/)
1116 {
1117         //cerr << "AudioRegionView::create_one_wave() called which: " << which << " this: " << this << endl;//DEBUG
1118         RouteTimeAxisView& atv (*(dynamic_cast<RouteTimeAxisView*>(&trackview))); // ick
1119         uint32_t nchans = atv.track()->n_channels().n_audio();
1120         uint32_t n;
1121         uint32_t nwaves = std::min (nchans, audio_region()->n_channels());
1122         gdouble ht;
1123
1124         if (trackview.current_height() < NAME_HIGHLIGHT_THRESH) {
1125                 ht = ((trackview.current_height()) / (double) nchans);
1126         } else {
1127                 ht = ((trackview.current_height() - NAME_HIGHLIGHT_SIZE) / (double) nchans);
1128         }
1129
1130         gdouble yoff = which * ht;
1131
1132         WaveView *wave = new WaveView (group, audio_region ());
1133         CANVAS_DEBUG_NAME (wave, string_compose ("wave view for chn %1 of %2", which, get_item_name()));
1134         
1135         wave->set_channel (which);
1136         wave->set_y_position (yoff);
1137         wave->set_height (ht);
1138         wave->set_samples_per_pixel (samples_per_pixel);
1139         wave->set_show_zero_line (true);
1140
1141         switch (Config->get_waveform_shape()) {
1142         case Rectified:
1143                 wave->set_shape (WaveView::Rectified);
1144                 break;
1145         default:
1146                 wave->set_shape (WaveView::Normal);
1147         }
1148                 
1149         wave->set_logscaled (Config->get_waveform_scale() == Logarithmic);
1150
1151         if (!Config->get_show_waveforms ()) {
1152                 wave->hide();
1153         }
1154
1155         /* note: calling this function is serialized by the lock
1156            held in the peak building thread that signals that
1157            peaks are ready for use *or* by the fact that it is
1158            called one by one from the GUI thread.
1159         */
1160
1161         if (which < nchans) {
1162                 tmp_waves[which] = wave;
1163         } else {
1164                 /* n-channel track, >n-channel source */
1165         }
1166
1167         /* see if we're all ready */
1168
1169         for (n = 0; n < nchans; ++n) {
1170                 if (tmp_waves[n] == 0) {
1171                         break;
1172                 }
1173         }
1174
1175         if (n == nwaves && waves.empty()) {
1176                 /* all waves are ready */
1177                 tmp_waves.resize(nwaves);
1178
1179                 waves = tmp_waves;
1180                 tmp_waves.clear ();
1181
1182                 /* all waves created, don't hook into peaks ready anymore */
1183                 delete _data_ready_connections[which];
1184                 _data_ready_connections[which] = 0;
1185         }
1186 }
1187
1188 void
1189 AudioRegionView::peaks_ready_handler (uint32_t which)
1190 {
1191         Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&AudioRegionView::create_one_wave, this, which, false));
1192         // cerr << "AudioRegionView::peaks_ready_handler() called on " << which << " this: " << this << endl;
1193 }
1194
1195 void
1196 AudioRegionView::add_gain_point_event (ArdourCanvas::Item *item, GdkEvent *ev)
1197 {
1198         if (!gain_line) {
1199                 return;
1200         }
1201
1202         double x, y;
1203
1204         /* don't create points that can't be seen */
1205
1206         update_envelope_visibility ();
1207
1208         x = ev->button.x;
1209         y = ev->button.y;
1210
1211         item->canvas_to_item (x, y);
1212
1213         framepos_t fx = trackview.editor().pixel_to_sample (x);
1214
1215         if (fx > _region->length()) {
1216                 return;
1217         }
1218
1219         /* compute vertical fractional position */
1220
1221         y = 1.0 - (y / (_height - NAME_HIGHLIGHT_SIZE));
1222
1223         /* map using gain line */
1224
1225         gain_line->view_to_model_coord (x, y);
1226
1227         /* XXX STATEFUL: can't convert to stateful diff until we
1228            can represent automation data with it.
1229         */
1230
1231         trackview.session()->begin_reversible_command (_("add gain control point"));
1232         XMLNode &before = audio_region()->envelope()->get_state();
1233
1234         if (!audio_region()->envelope_active()) {
1235                 XMLNode &region_before = audio_region()->get_state();
1236                 audio_region()->set_envelope_active(true);
1237                 XMLNode &region_after = audio_region()->get_state();
1238                 trackview.session()->add_command (new MementoCommand<AudioRegion>(*(audio_region().get()), &region_before, &region_after));
1239         }
1240
1241         audio_region()->envelope()->add (fx, y);
1242
1243         XMLNode &after = audio_region()->envelope()->get_state();
1244         trackview.session()->add_command (new MementoCommand<AutomationList>(*audio_region()->envelope().get(), &before, &after));
1245         trackview.session()->commit_reversible_command ();
1246 }
1247
1248 void
1249 AudioRegionView::remove_gain_point_event (ArdourCanvas::Item *item, GdkEvent */*ev*/)
1250 {
1251         ControlPoint *cp = reinterpret_cast<ControlPoint *> (item->get_data ("control_point"));
1252         audio_region()->envelope()->erase (cp->model());
1253 }
1254
1255 void
1256 AudioRegionView::setup_waveform_shape ()
1257 {
1258         WaveView::Shape shape;
1259
1260         switch (Config->get_waveform_shape()) {
1261         case Rectified:
1262                 shape = WaveView::Rectified;
1263                 break;
1264         default:
1265                 shape = WaveView::Normal;
1266         }
1267         for (vector<WaveView *>::iterator wave = waves.begin(); wave != waves.end() ; ++wave) {
1268                 (*wave)->set_shape (shape);
1269         }
1270 }
1271
1272 void
1273 AudioRegionView::setup_waveform_scale ()
1274 {
1275         WaveView::set_global_logscaled (Config->get_waveform_scale() == Logarithmic);
1276 }
1277
1278 void
1279 AudioRegionView::setup_waveform_clipping ()
1280 {
1281         WaveView::set_global_show_waveform_clipping (ARDOUR_UI::config()->get_show_waveform_clipping());
1282 }
1283
1284 GhostRegion*
1285 AudioRegionView::add_ghost (TimeAxisView& tv)
1286 {
1287         RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(&trackview);
1288         assert(rtv);
1289
1290         double unit_position = _region->position () / samples_per_pixel;
1291         AudioGhostRegion* ghost = new AudioGhostRegion (tv, trackview, unit_position);
1292         uint32_t nchans;
1293
1294         nchans = rtv->track()->n_channels().n_audio();
1295
1296         for (uint32_t n = 0; n < nchans; ++n) {
1297
1298                 if (n >= audio_region()->n_channels()) {
1299                         break;
1300                 }
1301
1302                 WaveView *wave = new WaveView (ghost->group, audio_region());
1303                 CANVAS_DEBUG_NAME (wave, string_compose ("ghost wave for %1", get_item_name()));
1304
1305                 wave->set_channel (n);
1306                 wave->set_samples_per_pixel (samples_per_pixel);
1307                 wave->set_amplitude_above_axis (_amplitude_above_axis);
1308
1309                 ghost->waves.push_back(wave);
1310         }
1311
1312         ghost->set_height ();
1313         ghost->set_duration (_region->length() / samples_per_pixel);
1314         ghost->set_colors();
1315         ghosts.push_back (ghost);
1316
1317         return ghost;
1318 }
1319
1320 void
1321 AudioRegionView::entered (bool internal_editing)
1322 {
1323         trackview.editor().set_current_trimmable (_region);
1324         trackview.editor().set_current_movable (_region);
1325         
1326         if (gain_line) {
1327                 /* these may or may not be visible depending on mouse mode */
1328                 gain_line->add_visibility (AutomationLine::ControlPoints);
1329         }
1330
1331         if (fade_in_handle && !internal_editing) {
1332                 fade_in_handle->show ();
1333                 fade_out_handle->show ();
1334                 fade_out_handle->raise_to_top ();
1335                 fade_in_handle->raise_to_top ();
1336         }
1337 }
1338
1339 void
1340 AudioRegionView::exited ()
1341 {
1342         trackview.editor().set_current_trimmable (boost::shared_ptr<Trimmable>());
1343         trackview.editor().set_current_movable (boost::shared_ptr<Movable>());
1344
1345         if (gain_line) {
1346                 gain_line->remove_visibility (AutomationLine::ControlPoints);
1347         }
1348
1349         if (fade_in_handle) {
1350                 fade_in_handle->hide ();
1351                 fade_out_handle->hide ();
1352         }
1353 }
1354
1355 void
1356 AudioRegionView::envelope_active_changed ()
1357 {
1358         if (gain_line) {
1359                 gain_line->set_line_color (audio_region()->envelope_active() ? 
1360                                            ARDOUR_UI::config()->get_canvasvar_GainLine() : 
1361                                            ARDOUR_UI::config()->get_canvasvar_GainLineInactive());
1362         }
1363 }
1364
1365 void
1366 AudioRegionView::color_handler ()
1367 {
1368         //case cMutedWaveForm:
1369         //case cWaveForm:
1370         //case cWaveFormClip:
1371         //case cZeroLine:
1372         set_colors ();
1373
1374         //case cGainLineInactive:
1375         //case cGainLine:
1376         envelope_active_changed();
1377
1378 }
1379
1380 void
1381 AudioRegionView::set_waveform_colors ()
1382 {
1383         for (vector<ArdourCanvas::WaveView*>::iterator w = waves.begin(); w != waves.end(); ++w) {
1384                 set_one_waveform_color (*w);
1385         }
1386 }
1387
1388 void
1389 AudioRegionView::set_one_waveform_color (ArdourCanvas::WaveView* wave)
1390 {
1391         ArdourCanvas::Color fill;
1392         ArdourCanvas::Color outline;
1393         
1394         if (_selected) {
1395                 if (_region->muted()) {
1396                         outline = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->get_canvasvar_SelectedWaveForm(), MUTED_ALPHA);
1397                 } else {
1398                         outline = ARDOUR_UI::config()->get_canvasvar_SelectedWaveForm();
1399                 }
1400                 fill = ARDOUR_UI::config()->get_canvasvar_SelectedWaveFormFill();
1401         } else {
1402                 if (_recregion) {
1403                         outline = ARDOUR_UI::config()->get_canvasvar_RecWaveForm();
1404                         fill = ARDOUR_UI::config()->get_canvasvar_RecWaveFormFill();
1405                 } else {
1406                         if (_region->muted()) {
1407                                 outline = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->get_canvasvar_WaveForm(), MUTED_ALPHA);
1408                         } else {
1409                                 outline = ARDOUR_UI::config()->get_canvasvar_WaveForm();
1410                         }
1411                         fill = ARDOUR_UI::config()->get_canvasvar_WaveFormFill();
1412                 }
1413         }
1414
1415         if (ARDOUR_UI::config()->get_color_regions_using_track_color()) {
1416
1417                 /* just use a slightly transparent version of the selected
1418                  * color so that some of the track color bleeds through
1419                  */
1420
1421                 double r, g, b, a;
1422                 ArdourCanvas::color_to_rgba (fill, r, g, b, a);
1423                 fill = ArdourCanvas::rgba_to_color (r, g, b, 0.85); /* magic number, not user controllable */
1424                 
1425         }
1426                 
1427         wave->set_fill_color (fill);
1428         wave->set_outline_color (outline);
1429         wave->set_clip_color (ARDOUR_UI::config()->get_canvasvar_WaveFormClip());
1430         wave->set_zero_color (ARDOUR_UI::config()->get_canvasvar_ZeroLine());
1431 }
1432
1433 void
1434 AudioRegionView::set_frame_color ()
1435 {
1436         if (!frame) {
1437                 return;
1438         }
1439
1440         if (_region->opaque()) {
1441                 fill_opacity = 130;
1442         } else {
1443                 fill_opacity = 0;
1444         }
1445
1446         TimeAxisViewItem::set_frame_color ();
1447
1448         set_waveform_colors ();
1449 }
1450
1451 void
1452 AudioRegionView::set_fade_visibility (bool yn)
1453 {
1454         if (yn) {
1455                 if (fade_in_shape) {
1456                         fade_in_shape->show();
1457                 }
1458                 if (fade_out_shape) {
1459                         fade_out_shape->show ();
1460                 }
1461                 if (fade_in_handle) {
1462                         fade_in_handle->show ();
1463                 }
1464                 if (fade_out_handle) {
1465                         fade_out_handle->show ();
1466                 }
1467         } else {
1468                 if (fade_in_shape) {
1469                         fade_in_shape->hide();
1470                 }
1471                 if (fade_out_shape) {
1472                         fade_out_shape->hide ();
1473                 }
1474                 if (fade_in_handle) {
1475                         fade_in_handle->hide ();
1476                 }
1477                 if (fade_out_handle) {
1478                         fade_out_handle->hide ();
1479                 }
1480         }
1481 }
1482
1483 void
1484 AudioRegionView::update_coverage_frames (LayerDisplay d)
1485 {
1486         RegionView::update_coverage_frames (d);
1487
1488         if (fade_in_handle) {
1489                 fade_in_handle->raise_to_top ();
1490                 fade_out_handle->raise_to_top ();
1491         }
1492 }
1493
1494 void
1495 AudioRegionView::show_region_editor ()
1496 {
1497         if (editor == 0) {
1498                 editor = new AudioRegionEditor (trackview.session(), audio_region());
1499         }
1500
1501         editor->present ();
1502         editor->show_all();
1503 }
1504
1505 void
1506 AudioRegionView::transients_changed ()
1507 {
1508         AnalysisFeatureList analysis_features = _region->transients();
1509
1510         while (feature_lines.size() < analysis_features.size()) {
1511
1512                 ArdourCanvas::Line* canvas_item = new ArdourCanvas::Line(group);
1513                 CANVAS_DEBUG_NAME (canvas_item, string_compose ("transient group for %1", region()->name()));
1514
1515                 canvas_item->set (ArdourCanvas::Duple (-1.0, 2.0),
1516                                   ArdourCanvas::Duple (1.0, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1));
1517
1518                 canvas_item->raise_to_top ();
1519                 canvas_item->show ();
1520
1521                 canvas_item->set_data ("regionview", this);
1522                 canvas_item->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_feature_line_event), canvas_item, this));
1523
1524                 feature_lines.push_back (make_pair(0, canvas_item));
1525         }
1526
1527         while (feature_lines.size() > analysis_features.size()) {
1528                 ArdourCanvas::Line* line = feature_lines.back().second;
1529                 feature_lines.pop_back ();
1530                 delete line;
1531         }
1532
1533         AnalysisFeatureList::const_iterator i;
1534         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
1535
1536         for (i = analysis_features.begin(), l = feature_lines.begin(); i != analysis_features.end() && l != feature_lines.end(); ++i, ++l) {
1537
1538                 float *pos = new float;
1539                 *pos = trackview.editor().sample_to_pixel (*i);
1540
1541                 (*l).second->set (
1542                         ArdourCanvas::Duple (*pos, 2.0),
1543                         ArdourCanvas::Duple (*pos, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1)
1544                         );
1545
1546                 (*l).second->set_data ("position", pos);
1547                 (*l).first = *i;
1548         }
1549 }
1550
1551 void
1552 AudioRegionView::update_transient(float /*old_pos*/, float new_pos)
1553 {
1554         /* Find frame at old pos, calulate new frame then update region transients*/
1555         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
1556
1557         for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
1558
1559                 /* Line has been updated in drag so we compare to new_pos */
1560
1561                 float* pos = (float*) (*l).second->get_data ("position");
1562
1563                 if (rint(new_pos) == rint(*pos)) {
1564
1565                     framepos_t old_frame = (*l).first;
1566                     framepos_t new_frame = trackview.editor().pixel_to_sample (new_pos);
1567
1568                     _region->update_transient (old_frame, new_frame);
1569
1570                     break;
1571                 }
1572         }
1573 }
1574
1575 void
1576 AudioRegionView::remove_transient(float pos)
1577 {
1578         /* Find frame at old pos, calulate new frame then update region transients*/
1579         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
1580
1581         for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
1582
1583                 /* Line has been updated in drag so we compare to new_pos */
1584                 float *line_pos = (float*) (*l).second->get_data ("position");
1585
1586                 if (rint(pos) == rint(*line_pos)) {
1587                     _region->remove_transient ((*l).first);
1588                     break;
1589                 }
1590         }
1591 }
1592
1593 void
1594 AudioRegionView::thaw_after_trim ()
1595 {
1596         RegionView::thaw_after_trim ();
1597         unhide_envelope ();
1598         drag_end ();
1599 }
1600
1601
1602 void
1603 AudioRegionView::show_xfades ()
1604 {
1605         show_start_xfade ();
1606         show_end_xfade ();
1607 }
1608
1609 void
1610 AudioRegionView::drag_start ()
1611 {
1612         TimeAxisViewItem::drag_start ();
1613
1614         //we used to hide xfades here.  I don't see the point with the new model, but we can re-implement if needed
1615 }
1616
1617 void
1618 AudioRegionView::drag_end ()
1619 {
1620         TimeAxisViewItem::drag_end ();
1621
1622         //see comment for drag_start
1623 }
1624
1625 void
1626 AudioRegionView::parameter_changed (string const & p)
1627 {
1628         if (p == "show-waveforms") {
1629                 setup_waveform_visibility ();
1630         } else if (p == "waveform-scale") {
1631                 setup_waveform_scale ();
1632         } else if (p == "waveform-shape") {
1633                 setup_waveform_shape ();
1634         } else if (p == "show-waveform-clipping") {
1635                 setup_waveform_clipping ();
1636         }
1637 }