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