reset [trim] fade handle position if track-height changes
[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         }
421
422         AnalysisFeatureList analysis_features = _region->transients();
423         AnalysisFeatureList::const_iterator i;
424
425         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
426
427         for (i = analysis_features.begin(), l = feature_lines.begin(); i != analysis_features.end() && l != feature_lines.end(); ++i, ++l) {
428
429                 float x_pos = trackview.editor().sample_to_pixel (*i);
430
431                 (*l).second->set (ArdourCanvas::Duple (x_pos, 2.0),
432                                   ArdourCanvas::Duple (x_pos, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1));
433
434                 (*l).first = *i;
435
436                 (*l).second->set (ArdourCanvas::Duple (x_pos, 2.0),
437                                   ArdourCanvas::Duple (x_pos, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1));
438         }
439
440         reset_fade_shapes ();
441 }
442
443 void
444 AudioRegionView::region_muted ()
445 {
446         RegionView::region_muted();
447         set_waveform_colors ();
448 }
449
450 void
451 AudioRegionView::setup_fade_handle_positions()
452 {
453         /* position of fade handle offset from the top of the region view */
454         double const handle_pos = 0.0;
455
456         if (fade_in_handle) {
457                 fade_in_handle->set_y0 (handle_pos);
458                 fade_in_handle->set_y1 (handle_pos + handle_size);
459         }
460
461         if (fade_out_handle) {
462                 fade_out_handle->set_y0 (handle_pos);
463                 fade_out_handle->set_y1 (handle_pos + handle_size);
464         }
465
466         if (fade_in_trim_handle) {
467                 fade_in_trim_handle->set_y0 (_height - handle_size);
468                 fade_in_trim_handle->set_y1 (_height);
469         }
470
471         if (fade_out_trim_handle) {
472                 fade_out_trim_handle->set_y0 (_height - handle_size );
473                 fade_out_trim_handle->set_y1 (_height);
474         }
475 }
476
477 void
478 AudioRegionView::set_height (gdouble height)
479 {
480         RegionView::set_height (height);
481
482         uint32_t wcnt = waves.size();
483
484         for (uint32_t n = 0; n < wcnt; ++n) {
485                 gdouble ht;
486
487                 if (height < NAME_HIGHLIGHT_THRESH) {
488                         ht = ((height - 2 * wcnt) / (double) wcnt);
489                 } else {
490                         ht = (((height - 2 * wcnt) - NAME_HIGHLIGHT_SIZE) / (double) wcnt);
491                 }
492
493                 gdouble yoff = n * (ht + 1);
494
495                 waves[n]->set_height (ht);
496                 waves[n]->set_y_position (yoff + 2);
497         }
498
499         if (gain_line) {
500
501                 if ((height/wcnt) < NAME_HIGHLIGHT_THRESH) {
502                         gain_line->hide ();
503                 } else {
504                         update_envelope_visibility ();
505                 }
506
507                 gain_line->set_height ((uint32_t) rint (height - NAME_HIGHLIGHT_SIZE) - 2);
508         }
509
510         reset_fade_shapes ();
511
512         /* Update hights for any active feature lines */
513         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
514
515         for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
516
517                 float pos_x = trackview.editor().sample_to_pixel((*l).first);
518
519                 if (height >= NAME_HIGHLIGHT_THRESH) {
520                         (*l).second->set (ArdourCanvas::Duple (pos_x, 2.0),
521                                           ArdourCanvas::Duple (pos_x, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1));
522                 } else {
523                         (*l).second->set (ArdourCanvas::Duple (pos_x, 2.0),
524                                           ArdourCanvas::Duple (pos_x, _height - 1));
525                 }
526         }
527
528         if (name_text) {
529                 name_text->raise_to_top();
530         }
531
532         setup_fade_handle_positions();
533 }
534
535 void
536 AudioRegionView::reset_fade_shapes ()
537 {
538         if (!trim_fade_in_drag_active) { reset_fade_in_shape (); }
539         if (!trim_fade_out_drag_active) { reset_fade_out_shape (); }
540 }
541
542 void
543 AudioRegionView::reset_fade_in_shape ()
544 {
545         reset_fade_in_shape_width (audio_region(), (framecnt_t) audio_region()->fade_in()->back()->when);
546 }
547
548 void
549 AudioRegionView::reset_fade_in_shape_width (boost::shared_ptr<AudioRegion> ar, framecnt_t width, bool drag_active)
550 {
551         trim_fade_in_drag_active = drag_active;
552         if (fade_in_handle == 0) {
553                 return;
554         }
555
556         /* smallest size for a fade is 64 frames */
557
558         width = std::max ((framecnt_t) 64, width);
559
560         /* round here to prevent little visual glitches with sub-pixel placement */
561         double const pwidth = rint (width / samples_per_pixel);
562         double const handle_left = pwidth;
563
564         /* Put the fade in handle so that its left side is at the end-of-fade line */
565         fade_in_handle->set_x0 (handle_left);
566         fade_in_handle->set_x1 (handle_left + handle_size);
567
568         if (fade_in_trim_handle) {
569                 fade_in_trim_handle->set_x0 (0);
570                 fade_in_trim_handle->set_x1 (handle_size);
571         }
572
573         if (pwidth < 5) {
574                 hide_start_xfade();
575                 return;
576         }
577
578         if (!trackview.session()->config.get_show_region_fades()) {
579                 hide_start_xfade ();
580                 return;
581         }
582         
583         double effective_height;
584
585         if (_height >= NAME_HIGHLIGHT_THRESH) {
586                 effective_height = _height - NAME_HIGHLIGHT_SIZE;
587         } else {
588                 effective_height = _height;
589         }
590
591         /* points *MUST* be in anti-clockwise order */
592
593         Points points;
594         Points::size_type npoints;
595         Points::size_type pi;
596         boost::shared_ptr<const Evoral::ControlList> list (audio_region()->fade_in());
597         Evoral::ControlList::const_iterator x;
598         double length = list->length();
599         npoints = list->size();
600
601         points.assign (list->size(), Duple());
602
603         for (x = list->begin(), pi = 0; x != list->end(); ++x, ++pi) {
604                 points[pi].x = 1.0 + (pwidth * ((*x)->when/length));
605                 points[pi].y = effective_height - ((*x)->value * effective_height);
606         }
607
608         /* draw the line */
609
610         redraw_start_xfade_to (ar, width, points, effective_height, handle_left);
611
612         /* ensure trim handle stays on top */
613         if (frame_handle_start) {
614                 frame_handle_start->raise_to_top();
615         }
616 }
617
618 void
619 AudioRegionView::reset_fade_out_shape ()
620 {
621         reset_fade_out_shape_width (audio_region(), (framecnt_t) audio_region()->fade_out()->back()->when);
622 }
623
624 void
625 AudioRegionView::reset_fade_out_shape_width (boost::shared_ptr<AudioRegion> ar, framecnt_t width, bool drag_active)
626 {
627         trim_fade_out_drag_active = drag_active;
628         if (fade_out_handle == 0) {
629                 return;
630         }
631
632         /* smallest size for a fade is 64 frames */
633
634         width = std::max ((framecnt_t) 64, width);
635
636         double const pwidth = rint(trackview.editor().sample_to_pixel (width));
637
638         /* the right edge should be right on the region frame is the pixel
639          * width is zero. Hence the additional + 1.0 at the end.
640          */
641
642         double const handle_right = rint(trackview.editor().sample_to_pixel (_region->length()) + TimeAxisViewItem::RIGHT_EDGE_SHIFT - pwidth);
643         double const trim_handle_right = rint(trackview.editor().sample_to_pixel (_region->length()) + TimeAxisViewItem::RIGHT_EDGE_SHIFT);
644
645         /* Put the fade out handle so that its right side is at the end-of-fade line;
646          */
647         fade_out_handle->set_x0 (1 + handle_right - handle_size);
648         fade_out_handle->set_x1 (1 + handle_right);
649         if (fade_out_trim_handle) {
650                 fade_out_trim_handle->set_x0 (1 + trim_handle_right - handle_size);
651                 fade_out_trim_handle->set_x1 (1 + trim_handle_right);
652         }
653
654         /* don't show shape if its too small */
655
656         if (pwidth < 5) {
657                 hide_end_xfade();
658                 return;
659         }
660
661         if (!trackview.session()->config.get_show_region_fades()) {
662                 hide_end_xfade();
663                 return;
664         }
665
666         double effective_height;
667
668         if (_height >= NAME_HIGHLIGHT_THRESH) {
669                 effective_height = _height - NAME_HIGHLIGHT_SIZE;
670         } else {
671                 effective_height = _height;
672         }
673
674         /* points *MUST* be in anti-clockwise order */
675         
676         Points points;
677         Points::size_type npoints;
678         Points::size_type pi;
679         boost::shared_ptr<const Evoral::ControlList> list (audio_region()->fade_out());
680         Evoral::ControlList::const_iterator x;
681         double length = list->length();
682         npoints = list->size();
683
684         points.assign (list->size(), Duple());
685
686         for (x = list->begin(), pi = 0; x != list->end(); ++x, ++pi) {
687                 points[pi].x = 1.0 + _pixel_width - pwidth + (pwidth * ((*x)->when/length));
688                 points[pi].y = effective_height - ((*x)->value * effective_height);
689         }
690
691         /* draw the line */
692
693         redraw_end_xfade_to (ar, width, points, effective_height, handle_right, pwidth);
694
695         /* ensure trim handle stays on top */
696         if (frame_handle_end) {
697                 frame_handle_end->raise_to_top();
698         }
699 }
700
701 framepos_t
702 AudioRegionView::get_fade_in_shape_width ()
703 {
704         return audio_region()->fade_in()->back()->when;
705 }
706
707 framepos_t
708 AudioRegionView::get_fade_out_shape_width ()
709 {
710         return audio_region()->fade_out()->back()->when;
711 }
712
713
714 void
715 AudioRegionView::redraw_start_xfade ()
716 {
717         boost::shared_ptr<AudioRegion> ar (audio_region());
718
719         if (!ar->fade_in() || ar->fade_in()->empty()) {
720                 return;
721         }
722
723         show_start_xfade();
724         reset_fade_in_shape_width (ar, ar->fade_in()->back()->when);
725 }
726
727 void
728 AudioRegionView::redraw_start_xfade_to (boost::shared_ptr<AudioRegion> ar, framecnt_t /*width*/, Points& points, double effective_height,
729                                         double rect_width)
730 {
731         if (points.size() < 2) {
732                 return;
733         }
734
735         if (!start_xfade_curve) {
736                 start_xfade_curve = new ArdourCanvas::XFadeCurve (group, ArdourCanvas::XFadeCurve::Start);
737                 CANVAS_DEBUG_NAME (start_xfade_curve, string_compose ("xfade start out line for %1", region()->name()));
738                 start_xfade_curve->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
739                 start_xfade_curve->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
740                 start_xfade_curve->set_ignore_events (true);
741         }
742         if (!start_xfade_rect) {
743                 start_xfade_rect = new ArdourCanvas::Rectangle (group);
744                 CANVAS_DEBUG_NAME (start_xfade_rect, string_compose ("xfade start rect for %1", region()->name()));
745                 start_xfade_rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
746                 start_xfade_rect->set_fill (false);
747                 start_xfade_rect->set_outline (true);
748                 start_xfade_rect->set_outline_width (0.5);
749                 start_xfade_rect->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_start_xfade_event), start_xfade_rect, this));
750                 start_xfade_rect->set_data ("regionview", this);
751         }
752
753         start_xfade_rect->set (ArdourCanvas::Rect (0.0, 0.0, rect_width + TimeAxisViewItem::RIGHT_EDGE_SHIFT, effective_height));
754
755         /* fade out line */
756
757         boost::shared_ptr<AutomationList> inverse = ar->inverse_fade_in ();
758         Points ipoints;
759         Points::size_type npoints;
760
761         if (!inverse) {
762
763                 /* there is no explicit inverse fade in curve, so take the
764                  * regular fade in curve given to use as "points" (already a
765                  * set of coordinates), and convert to the inverse shape.
766                  */
767
768                 npoints = points.size();
769                 ipoints.assign (npoints, Duple());
770
771                 for (Points::size_type i = 0, pci = 0; i < npoints; ++i, ++pci) {
772                         ArdourCanvas::Duple &p (ipoints[pci]);
773                         /* leave x-axis alone but invert with respect to y-axis */
774                         p.y = effective_height - points[pci].y;
775                 }
776
777         } else {
778
779                 /* there is an explicit inverse fade in curve. Grab the points
780                    and convert them into coordinates for the inverse fade in
781                    line.
782                 */
783
784                 npoints = inverse->size();
785                 ipoints.assign (npoints, Duple());
786                 
787                 Evoral::ControlList::const_iterator x;
788                 Points::size_type pi;
789                 double length = inverse->length();
790
791                 for (x = inverse->begin(), pi = 0; x != inverse->end(); ++x, ++pi) {
792                         ArdourCanvas::Duple& p (ipoints[pi]);
793                         p.x = 1.0 + (rect_width * ((*x)->when/length));
794                         p.y = effective_height - ((*x)->value * effective_height);
795                 }
796         }
797
798         start_xfade_curve->set_inout (points, ipoints);
799
800         show_start_xfade();
801 }
802
803 void
804 AudioRegionView::redraw_end_xfade ()
805 {
806         boost::shared_ptr<AudioRegion> ar (audio_region());
807
808         if (!ar->fade_out() || ar->fade_out()->empty()) {
809                 return;
810         }
811
812         show_end_xfade();
813         
814         reset_fade_out_shape_width (ar, ar->fade_out()->back()->when);
815 }
816
817 void
818 AudioRegionView::redraw_end_xfade_to (boost::shared_ptr<AudioRegion> ar, framecnt_t width, Points& points, double effective_height,
819                                       double rect_edge, double rect_width)
820 {
821         if (points.size() < 2) {
822                 return;
823         }
824
825         if (!end_xfade_curve) {
826                 end_xfade_curve = new ArdourCanvas::XFadeCurve (group, ArdourCanvas::XFadeCurve::End);
827                 CANVAS_DEBUG_NAME (end_xfade_curve, string_compose ("xfade end out line for %1", region()->name()));
828                 end_xfade_curve->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
829                 end_xfade_curve->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
830                 end_xfade_curve->set_ignore_events (true);
831         }
832
833         if (!end_xfade_rect) {
834                 end_xfade_rect = new ArdourCanvas::Rectangle (group);
835                 CANVAS_DEBUG_NAME (end_xfade_rect, string_compose ("xfade end rect for %1", region()->name()));
836                 end_xfade_rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
837                 end_xfade_rect->set_fill (false);
838                 end_xfade_rect->set_outline (true);
839                 end_xfade_rect->set_outline_width (0.5);
840                 end_xfade_rect->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_end_xfade_event), end_xfade_rect, this));
841                 end_xfade_rect->set_data ("regionview", this);
842         }
843
844         end_xfade_rect->set (ArdourCanvas::Rect (rect_edge, 0.0, rect_edge + rect_width + TimeAxisViewItem::RIGHT_EDGE_SHIFT, effective_height));
845
846         /* fade in line */
847
848         boost::shared_ptr<AutomationList> inverse = ar->inverse_fade_out ();
849         Points ipoints;
850         Points::size_type npoints;
851
852         if (!inverse) {
853
854                 /* there is no explicit inverse fade out curve, so take the
855                  * regular fade out curve given to use as "points" (already a
856                  * set of coordinates), and convert to the inverse shape.
857                  */
858
859                 npoints = points.size();
860                 ipoints.assign (npoints, Duple());
861
862                 Points::size_type pci;
863
864                 for (pci = 0; pci < npoints; ++pci) {
865                         ArdourCanvas::Duple &p (ipoints[pci]);
866                         p.y = effective_height - points[pci].y;
867                 }
868
869         } else {
870
871                 /* there is an explicit inverse fade out curve. Grab the points
872                    and convert them into coordinates for the inverse fade out
873                    line.
874                 */
875
876                 npoints = inverse->size();
877                 ipoints.assign (npoints, Duple());
878                 
879                 const double rend = trackview.editor().sample_to_pixel (_region->length() - width);
880                 
881                 Evoral::ControlList::const_iterator x;
882                 Points::size_type i;
883                 Points::size_type pi;
884                 double length = inverse->length();
885
886                 for (x = inverse->begin(), i = 0, pi = 0; x != inverse->end(); ++x, ++pi, ++i) {
887                         ArdourCanvas::Duple& p (ipoints[pi]);
888                         p.x = 1.0 + (rect_width * ((*x)->when/length)) + rend;
889                         p.y = effective_height - ((*x)->value * effective_height);
890                 }
891         }
892
893         end_xfade_curve->set_inout (ipoints, points);
894
895         show_end_xfade();
896 }
897
898 void
899 AudioRegionView::hide_xfades ()
900 {
901         hide_start_xfade ();
902         hide_end_xfade ();
903 }
904
905 void
906 AudioRegionView::hide_start_xfade ()
907 {
908         if (start_xfade_curve) {
909                 start_xfade_curve->hide();
910         }
911         if (start_xfade_rect) {
912                 start_xfade_rect->hide ();
913         }
914
915         _start_xfade_visible = false;
916 }
917
918 void
919 AudioRegionView::hide_end_xfade ()
920 {
921         if (end_xfade_curve) {
922                 end_xfade_curve->hide();
923         }
924         if (end_xfade_rect) {
925                 end_xfade_rect->hide ();
926         }
927
928         _end_xfade_visible = false;
929 }
930
931 void
932 AudioRegionView::show_start_xfade ()
933 {
934         if (start_xfade_curve) {
935                 start_xfade_curve->show();
936         }
937         if (start_xfade_rect) {
938                 start_xfade_rect->show ();
939         }
940
941         _start_xfade_visible = true;
942 }
943
944 void
945 AudioRegionView::show_end_xfade ()
946 {
947         if (end_xfade_curve) {
948                 end_xfade_curve->show();
949         }
950         if (end_xfade_rect) {
951                 end_xfade_rect->show ();
952         }
953
954         _end_xfade_visible = true;
955 }
956
957 void
958 AudioRegionView::set_samples_per_pixel (gdouble fpp)
959 {
960         RegionView::set_samples_per_pixel (fpp);
961
962         if (Config->get_show_waveforms ()) {
963                 for (uint32_t n = 0; n < waves.size(); ++n) {
964                         waves[n]->set_samples_per_pixel (fpp);
965                 }
966         }
967
968         if (gain_line) {
969                 gain_line->reset ();
970         }
971
972         reset_fade_shapes ();
973 }
974
975 void
976 AudioRegionView::set_amplitude_above_axis (gdouble a)
977 {
978         for (uint32_t n=0; n < waves.size(); ++n) {
979                 waves[n]->set_amplitude_above_axis (a);
980         }
981 }
982
983 void
984 AudioRegionView::compute_colors (Gdk::Color const & basic_color)
985 {
986         RegionView::compute_colors (basic_color);
987
988         /* gain color computed in envelope_active_changed() */
989
990         fade_color = UINT_RGBA_CHANGE_A (fill_color, 120);
991 }
992
993 void
994 AudioRegionView::set_colors ()
995 {
996         RegionView::set_colors();
997
998         if (gain_line) {
999                 gain_line->set_line_color (audio_region()->envelope_active() ? 
1000                                            ARDOUR_UI::config()->get_canvasvar_GainLine() : 
1001                                            ARDOUR_UI::config()->get_canvasvar_GainLineInactive());
1002         }
1003
1004         set_waveform_colors ();
1005
1006         if (start_xfade_curve) {
1007                 start_xfade_curve->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
1008                 start_xfade_curve->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
1009         }
1010         if (end_xfade_curve) {
1011                 end_xfade_curve->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
1012                 end_xfade_curve->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
1013         }
1014
1015         if (start_xfade_rect) {
1016                 start_xfade_rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
1017         }
1018         if (end_xfade_rect) {
1019                 end_xfade_rect->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
1020         }
1021 }
1022
1023 void
1024 AudioRegionView::setup_waveform_visibility ()
1025 {
1026         if (Config->get_show_waveforms ()) {
1027                 for (uint32_t n = 0; n < waves.size(); ++n) {
1028                         /* make sure the zoom level is correct, since we don't update
1029                            this when waveforms are hidden.
1030                         */
1031                         // CAIROCANVAS
1032                         // waves[n]->set_samples_per_pixel (_samples_per_pixel);
1033                         waves[n]->show();
1034                 }
1035         } else {
1036                 for (uint32_t n = 0; n < waves.size(); ++n) {
1037                         waves[n]->hide();
1038                 }
1039         }
1040 }
1041
1042 void
1043 AudioRegionView::temporarily_hide_envelope ()
1044 {
1045         if (gain_line) {
1046                 gain_line->hide ();
1047         }
1048 }
1049
1050 void
1051 AudioRegionView::unhide_envelope ()
1052 {
1053         update_envelope_visibility ();
1054 }
1055
1056 void
1057 AudioRegionView::update_envelope_visibility ()
1058 {
1059         if (!gain_line) {
1060                 return;
1061         }
1062
1063         if (Config->get_show_region_gain() || trackview.editor().current_mouse_mode() == Editing::MouseGain) {
1064                 gain_line->add_visibility (AutomationLine::Line);
1065         } else {
1066                 gain_line->hide ();
1067         }
1068 }
1069
1070 void
1071 AudioRegionView::create_waves ()
1072 {
1073         // cerr << "AudioRegionView::create_waves() called on " << this << endl;//DEBUG
1074         RouteTimeAxisView& atv (*(dynamic_cast<RouteTimeAxisView*>(&trackview))); // ick
1075
1076         if (!atv.track()) {
1077                 return;
1078         }
1079
1080         ChanCount nchans = atv.track()->n_channels();
1081
1082         // cerr << "creating waves for " << _region->name() << " with wfd = " << wait_for_data
1083         //              << " and channels = " << nchans.n_audio() << endl;
1084
1085         /* in tmp_waves, set up null pointers for each channel so the vector is allocated */
1086         for (uint32_t n = 0; n < nchans.n_audio(); ++n) {
1087                 tmp_waves.push_back (0);
1088         }
1089
1090         for (vector<ScopedConnection*>::iterator i = _data_ready_connections.begin(); i != _data_ready_connections.end(); ++i) {
1091                 delete *i;
1092         }
1093
1094         _data_ready_connections.clear ();
1095
1096         for (uint32_t i = 0; i < nchans.n_audio(); ++i) {
1097                 _data_ready_connections.push_back (0);
1098         }
1099
1100         for (uint32_t n = 0; n < nchans.n_audio(); ++n) {
1101
1102                 if (n >= audio_region()->n_channels()) {
1103                         break;
1104                 }
1105
1106                 // cerr << "\tchannel " << n << endl;
1107
1108                 if (wait_for_data) {
1109                         if (audio_region()->audio_source(n)->peaks_ready (boost::bind (&AudioRegionView::peaks_ready_handler, this, n), &_data_ready_connections[n], gui_context())) {
1110                                 // cerr << "\tData is ready\n";
1111                                 create_one_wave (n, true);
1112                         } else {
1113                                 // cerr << "\tdata is not ready\n";
1114                                 // we'll get a PeaksReady signal from the source in the future
1115                                 // and will call create_one_wave(n) then.
1116                         }
1117
1118                 } else {
1119                         // cerr << "\tdon't delay, display today!\n";
1120                         create_one_wave (n, true);
1121                 }
1122
1123         }
1124 }
1125
1126 void
1127 AudioRegionView::create_one_wave (uint32_t which, bool /*direct*/)
1128 {
1129         //cerr << "AudioRegionView::create_one_wave() called which: " << which << " this: " << this << endl;//DEBUG
1130         RouteTimeAxisView& atv (*(dynamic_cast<RouteTimeAxisView*>(&trackview))); // ick
1131         uint32_t nchans = atv.track()->n_channels().n_audio();
1132         uint32_t n;
1133         uint32_t nwaves = std::min (nchans, audio_region()->n_channels());
1134         gdouble ht;
1135
1136         if (trackview.current_height() < NAME_HIGHLIGHT_THRESH) {
1137                 ht = ((trackview.current_height()) / (double) nchans);
1138         } else {
1139                 ht = ((trackview.current_height() - NAME_HIGHLIGHT_SIZE) / (double) nchans);
1140         }
1141
1142         gdouble yoff = which * ht;
1143
1144         WaveView *wave = new WaveView (group, audio_region ());
1145         CANVAS_DEBUG_NAME (wave, string_compose ("wave view for chn %1 of %2", which, get_item_name()));
1146         
1147         wave->set_channel (which);
1148         wave->set_y_position (yoff);
1149         wave->set_height (ht);
1150         wave->set_samples_per_pixel (samples_per_pixel);
1151         wave->set_show_zero_line (true);
1152         
1153         switch (Config->get_waveform_shape()) {
1154         case Rectified:
1155                 wave->set_shape (WaveView::Rectified);
1156                 break;
1157         default:
1158                 wave->set_shape (WaveView::Normal);
1159         }
1160                 
1161         wave->set_logscaled (Config->get_waveform_scale() == Logarithmic);
1162
1163         if (!Config->get_show_waveforms ()) {
1164                 wave->hide();
1165         }
1166
1167         /* note: calling this function is serialized by the lock
1168            held in the peak building thread that signals that
1169            peaks are ready for use *or* by the fact that it is
1170            called one by one from the GUI thread.
1171         */
1172
1173         if (which < nchans) {
1174                 tmp_waves[which] = wave;
1175         } else {
1176                 /* n-channel track, >n-channel source */
1177         }
1178
1179         /* see if we're all ready */
1180
1181         for (n = 0; n < nchans; ++n) {
1182                 if (tmp_waves[n] == 0) {
1183                         break;
1184                 }
1185         }
1186
1187         if (n == nwaves && waves.empty()) {
1188                 /* all waves are ready */
1189                 tmp_waves.resize(nwaves);
1190
1191                 waves = tmp_waves;
1192                 tmp_waves.clear ();
1193
1194                 /* all waves created, don't hook into peaks ready anymore */
1195                 delete _data_ready_connections[which];
1196                 _data_ready_connections[which] = 0;
1197         }
1198 }
1199
1200 void
1201 AudioRegionView::peaks_ready_handler (uint32_t which)
1202 {
1203         Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&AudioRegionView::create_one_wave, this, which, false));
1204         // cerr << "AudioRegionView::peaks_ready_handler() called on " << which << " this: " << this << endl;
1205 }
1206
1207 void
1208 AudioRegionView::add_gain_point_event (ArdourCanvas::Item *item, GdkEvent *ev, bool with_guard_points)
1209 {
1210         if (!gain_line) {
1211                 return;
1212         }
1213
1214         double x, y;
1215
1216         /* don't create points that can't be seen */
1217
1218         update_envelope_visibility ();
1219
1220         x = ev->button.x;
1221         y = ev->button.y;
1222
1223         item->canvas_to_item (x, y);
1224
1225         framepos_t fx = trackview.editor().pixel_to_sample (x);
1226
1227         if (fx > _region->length()) {
1228                 return;
1229         }
1230
1231         /* compute vertical fractional position */
1232
1233         y = 1.0 - (y / (_height - NAME_HIGHLIGHT_SIZE));
1234
1235         /* map using gain line */
1236
1237         gain_line->view_to_model_coord (x, y);
1238
1239         /* XXX STATEFUL: can't convert to stateful diff until we
1240            can represent automation data with it.
1241         */
1242
1243         trackview.session()->begin_reversible_command (_("add gain control point"));
1244         XMLNode &before = audio_region()->envelope()->get_state();
1245
1246         if (!audio_region()->envelope_active()) {
1247                 XMLNode &region_before = audio_region()->get_state();
1248                 audio_region()->set_envelope_active(true);
1249                 XMLNode &region_after = audio_region()->get_state();
1250                 trackview.session()->add_command (new MementoCommand<AudioRegion>(*(audio_region().get()), &region_before, &region_after));
1251         }
1252
1253         audio_region()->envelope()->add (fx, y, with_guard_points);
1254
1255         XMLNode &after = audio_region()->envelope()->get_state();
1256         trackview.session()->add_command (new MementoCommand<AutomationList>(*audio_region()->envelope().get(), &before, &after));
1257         trackview.session()->commit_reversible_command ();
1258 }
1259
1260 void
1261 AudioRegionView::remove_gain_point_event (ArdourCanvas::Item *item, GdkEvent* /*ev*/)
1262 {
1263         ControlPoint *cp = reinterpret_cast<ControlPoint *> (item->get_data ("control_point"));
1264         audio_region()->envelope()->erase (cp->model());
1265 }
1266
1267 GhostRegion*
1268 AudioRegionView::add_ghost (TimeAxisView& tv)
1269 {
1270         RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(&trackview);
1271         assert(rtv);
1272
1273         double unit_position = _region->position () / samples_per_pixel;
1274         AudioGhostRegion* ghost = new AudioGhostRegion (tv, trackview, unit_position);
1275         uint32_t nchans;
1276
1277         nchans = rtv->track()->n_channels().n_audio();
1278
1279         for (uint32_t n = 0; n < nchans; ++n) {
1280
1281                 if (n >= audio_region()->n_channels()) {
1282                         break;
1283                 }
1284
1285                 WaveView *wave = new WaveView (ghost->group, audio_region());
1286                 CANVAS_DEBUG_NAME (wave, string_compose ("ghost wave for %1", get_item_name()));
1287
1288                 wave->set_channel (n);
1289                 wave->set_samples_per_pixel (samples_per_pixel);
1290                 wave->set_amplitude_above_axis (_amplitude_above_axis);
1291
1292                 ghost->waves.push_back(wave);
1293         }
1294
1295         ghost->set_height ();
1296         ghost->set_duration (_region->length() / samples_per_pixel);
1297         ghost->set_colors();
1298         ghosts.push_back (ghost);
1299
1300         return ghost;
1301 }
1302
1303 void
1304 AudioRegionView::entered (bool internal_editing)
1305 {
1306         trackview.editor().set_current_trimmable (_region);
1307         trackview.editor().set_current_movable (_region);
1308         
1309         if (gain_line) {
1310                 /* these may or may not be visible depending on mouse mode */
1311                 gain_line->add_visibility (AutomationLine::ControlPoints);
1312         }
1313
1314         if (!internal_editing) {
1315                 if (fade_in_handle) {
1316                         fade_in_handle->show ();
1317                         fade_in_handle->raise_to_top ();
1318                 }
1319                 if (fade_out_handle) {
1320                         fade_out_handle->show ();
1321                         fade_out_handle->raise_to_top ();
1322                 }
1323                 if (fade_in_trim_handle) {
1324                         fade_in_trim_handle->show ();
1325                         fade_in_trim_handle->raise_to_top ();
1326                 }
1327                 if (fade_out_trim_handle) {
1328                         fade_out_trim_handle->show ();
1329                         fade_out_trim_handle->raise_to_top ();
1330                 }
1331         }
1332 }
1333
1334 void
1335 AudioRegionView::exited ()
1336 {
1337         trackview.editor().set_current_trimmable (boost::shared_ptr<Trimmable>());
1338         trackview.editor().set_current_movable (boost::shared_ptr<Movable>());
1339
1340         if (gain_line) {
1341                 gain_line->remove_visibility (AutomationLine::ControlPoints);
1342         }
1343
1344         if (fade_in_handle)       { fade_in_handle->hide(); }
1345         if (fade_out_handle)      { fade_out_handle->hide(); }
1346         if (fade_in_trim_handle)  { fade_in_trim_handle->hide(); }
1347         if (fade_out_trim_handle) { fade_out_trim_handle->hide(); }
1348 }
1349
1350 void
1351 AudioRegionView::envelope_active_changed ()
1352 {
1353         if (gain_line) {
1354                 gain_line->set_line_color (audio_region()->envelope_active() ? 
1355                                            ARDOUR_UI::config()->get_canvasvar_GainLine() : 
1356                                            ARDOUR_UI::config()->get_canvasvar_GainLineInactive());
1357                 update_envelope_visibility ();
1358         }
1359 }
1360
1361 void
1362 AudioRegionView::color_handler ()
1363 {
1364         //case cMutedWaveForm:
1365         //case cWaveForm:
1366         //case cWaveFormClip:
1367         //case cZeroLine:
1368         set_colors ();
1369
1370         //case cGainLineInactive:
1371         //case cGainLine:
1372         envelope_active_changed();
1373
1374 }
1375
1376 void
1377 AudioRegionView::set_waveform_colors ()
1378 {
1379         for (vector<ArdourCanvas::WaveView*>::iterator w = waves.begin(); w != waves.end(); ++w) {
1380                 set_one_waveform_color (*w);
1381         }
1382 }
1383
1384 void
1385 AudioRegionView::set_one_waveform_color (ArdourCanvas::WaveView* wave)
1386 {
1387         ArdourCanvas::Color fill;
1388         ArdourCanvas::Color outline;
1389         
1390         if (_selected) {
1391                 if (_region->muted()) {
1392                         /* hide outline with zero alpha */
1393                         outline = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->get_canvasvar_SelectedWaveForm(), 0);
1394                         fill = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->get_canvasvar_SelectedWaveFormFill(), MUTED_ALPHA);
1395                 } else {
1396                         outline = ARDOUR_UI::config()->get_canvasvar_SelectedWaveForm();
1397                         fill = ARDOUR_UI::config()->get_canvasvar_SelectedWaveFormFill();
1398                 }
1399         } else {
1400                 if (_recregion) {
1401                         outline = ARDOUR_UI::config()->get_canvasvar_RecWaveForm();
1402                         fill = ARDOUR_UI::config()->get_canvasvar_RecWaveFormFill();
1403                 } else {
1404                         if (_region->muted()) {
1405                                 /* hide outline with zero alpha */
1406                                 outline = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->get_canvasvar_WaveForm(), 0); 
1407                                 fill = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->get_canvasvar_WaveFormFill(), MUTED_ALPHA);
1408                         } else {
1409                                 outline = ARDOUR_UI::config()->get_canvasvar_WaveForm();
1410                                 fill = ARDOUR_UI::config()->get_canvasvar_WaveFormFill();
1411                         }
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                 outline = ARDOUR_UI::config()->get_canvasvar_WaveForm();
1425
1426                 if (!Config->get_show_name_highlight()) {
1427                         /* recolor name text because it needs to contrast with
1428                            the waveform background, not the name highlight.
1429                         */
1430                 }
1431         }
1432
1433         wave->set_fill_color (fill);
1434         wave->set_outline_color (outline);
1435         wave->set_clip_color (ARDOUR_UI::config()->get_canvasvar_WaveFormClip());
1436         wave->set_zero_color (ARDOUR_UI::config()->get_canvasvar_ZeroLine());
1437 }
1438
1439 void
1440 AudioRegionView::set_frame_color ()
1441 {
1442         if (!frame) {
1443                 return;
1444         }
1445
1446         if (_region->opaque()) {
1447                 fill_opacity = 130;
1448         } else {
1449                 fill_opacity = 0;
1450         }
1451
1452         TimeAxisViewItem::set_frame_color ();
1453
1454         set_waveform_colors ();
1455 }
1456
1457 void
1458 AudioRegionView::set_fade_visibility (bool yn)
1459 {
1460         if (yn) {
1461                 if (fade_in_handle)       { fade_in_handle->show(); }
1462                 if (fade_out_handle)      { fade_out_handle->show(); }
1463                 if (fade_in_trim_handle)  { fade_in_trim_handle->show(); }
1464                 if (fade_out_trim_handle) { fade_out_trim_handle->show(); }
1465         } else {
1466                 if (fade_in_handle)       { fade_in_handle->hide(); }
1467                 if (fade_out_handle)      { fade_out_handle->hide(); }
1468                 if (fade_in_trim_handle)  { fade_in_trim_handle->hide(); }
1469                 if (fade_out_trim_handle) { fade_out_trim_handle->hide(); }
1470         }
1471 }
1472
1473 void
1474 AudioRegionView::update_coverage_frames (LayerDisplay d)
1475 {
1476         RegionView::update_coverage_frames (d);
1477
1478         if (fade_in_handle)       { fade_in_handle->raise_to_top (); }
1479         if (fade_out_handle)      { fade_out_handle->raise_to_top (); }
1480         if (fade_in_trim_handle)  { fade_in_trim_handle->raise_to_top (); }
1481         if (fade_out_trim_handle) { fade_out_trim_handle->raise_to_top (); }
1482 }
1483
1484 void
1485 AudioRegionView::show_region_editor ()
1486 {
1487         if (editor == 0) {
1488                 editor = new AudioRegionEditor (trackview.session(), audio_region());
1489         }
1490
1491         editor->present ();
1492         editor->show_all();
1493 }
1494
1495 void
1496 AudioRegionView::transients_changed ()
1497 {
1498         AnalysisFeatureList analysis_features = _region->transients();
1499
1500         while (feature_lines.size() < analysis_features.size()) {
1501
1502                 ArdourCanvas::Line* canvas_item = new ArdourCanvas::Line(group);
1503                 CANVAS_DEBUG_NAME (canvas_item, string_compose ("transient group for %1", region()->name()));
1504
1505                 canvas_item->set (ArdourCanvas::Duple (-1.0, 2.0),
1506                                   ArdourCanvas::Duple (1.0, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1));
1507
1508                 canvas_item->raise_to_top ();
1509                 canvas_item->show ();
1510
1511                 canvas_item->set_data ("regionview", this);
1512                 canvas_item->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_feature_line_event), canvas_item, this));
1513
1514                 feature_lines.push_back (make_pair(0, canvas_item));
1515         }
1516
1517         while (feature_lines.size() > analysis_features.size()) {
1518                 ArdourCanvas::Line* line = feature_lines.back().second;
1519                 feature_lines.pop_back ();
1520                 delete line;
1521         }
1522
1523         AnalysisFeatureList::const_iterator i;
1524         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
1525
1526         for (i = analysis_features.begin(), l = feature_lines.begin(); i != analysis_features.end() && l != feature_lines.end(); ++i, ++l) {
1527
1528                 float *pos = new float;
1529                 *pos = trackview.editor().sample_to_pixel (*i);
1530
1531                 (*l).second->set (
1532                         ArdourCanvas::Duple (*pos, 2.0),
1533                         ArdourCanvas::Duple (*pos, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1)
1534                         );
1535
1536                 (*l).second->set_data ("position", pos);
1537                 (*l).first = *i;
1538         }
1539 }
1540
1541 void
1542 AudioRegionView::update_transient(float /*old_pos*/, float new_pos)
1543 {
1544         /* Find frame at old pos, calulate new frame then update region transients*/
1545         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
1546
1547         for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
1548
1549                 /* Line has been updated in drag so we compare to new_pos */
1550
1551                 float* pos = (float*) (*l).second->get_data ("position");
1552
1553                 if (rint(new_pos) == rint(*pos)) {
1554
1555                     framepos_t old_frame = (*l).first;
1556                     framepos_t new_frame = trackview.editor().pixel_to_sample (new_pos);
1557
1558                     _region->update_transient (old_frame, new_frame);
1559
1560                     break;
1561                 }
1562         }
1563 }
1564
1565 void
1566 AudioRegionView::remove_transient(float pos)
1567 {
1568         /* Find frame at old pos, calulate new frame then update region transients*/
1569         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
1570
1571         for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
1572
1573                 /* Line has been updated in drag so we compare to new_pos */
1574                 float *line_pos = (float*) (*l).second->get_data ("position");
1575
1576                 if (rint(pos) == rint(*line_pos)) {
1577                     _region->remove_transient ((*l).first);
1578                     break;
1579                 }
1580         }
1581 }
1582
1583 void
1584 AudioRegionView::thaw_after_trim ()
1585 {
1586         RegionView::thaw_after_trim ();
1587         unhide_envelope ();
1588         drag_end ();
1589 }
1590
1591
1592 void
1593 AudioRegionView::show_xfades ()
1594 {
1595         show_start_xfade ();
1596         show_end_xfade ();
1597 }
1598
1599 void
1600 AudioRegionView::drag_start ()
1601 {
1602         TimeAxisViewItem::drag_start ();
1603
1604         //we used to hide xfades here.  I don't see the point with the new model, but we can re-implement if needed
1605 }
1606
1607 void
1608 AudioRegionView::drag_end ()
1609 {
1610         TimeAxisViewItem::drag_end ();
1611
1612         //see comment for drag_start
1613 }
1614
1615 void
1616 AudioRegionView::parameter_changed (string const & p)
1617 {
1618         if (p == "show-waveforms") {
1619                 setup_waveform_visibility ();
1620         }
1621 }