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