fiddle with single pixel adjustments to time axis view item heights; fix region gain...
[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 48
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 = 0.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;
571         } else {
572                 effective_height = _height;
573         }
574
575         effective_height -= 1.0;
576
577         Points points;
578
579         points.assign (npoints, Duple());
580
581         /* points *MUST* be in anti-clockwise order */
582
583         uint32_t pi, pc;
584         double xdelta = pwidth/npoints;
585
586         for (pi = 0, pc = 0; pc < npoints; ++pc) {
587                 points[pi].x = 1.0 + (pc * xdelta);
588                 points[pi++].y =  1.0 + effective_height - (curve[pc] * effective_height);
589         }
590
591         /* draw the line */
592
593         redraw_start_xfade_to (ar, width, points, effective_height, handle_left);
594
595         // fade_in_shape->set (points);
596
597         /* ensure trim handle stays on top */
598         if (frame_handle_start) {
599                 frame_handle_start->raise_to_top();
600         }
601
602 }
603
604 void
605 AudioRegionView::reset_fade_out_shape ()
606 {
607         reset_fade_out_shape_width (audio_region(), (framecnt_t) audio_region()->fade_out()->back()->when);
608 }
609
610 void
611 AudioRegionView::reset_fade_out_shape_width (boost::shared_ptr<AudioRegion> ar, framecnt_t width)
612 {
613         if (fade_out_handle == 0) {
614                 return;
615         }
616
617         /* smallest size for a fade is 64 frames */
618
619         width = std::max ((framecnt_t) 64, width);
620
621         double const pwidth = trackview.editor().sample_to_pixel (width);
622
623         /* the right edge should be right on the region frame is the pixel
624          * width is zero. Hence the additional + 1.0 at the end.
625          */
626
627         double const handle_right = trackview.editor().sample_to_pixel (_region->length()) + TimeAxisViewItem::RIGHT_EDGE_SHIFT - pwidth + 1.0;
628
629         /* Put the fade out handle so that its right side is at the end-of-fade line;
630          */
631         fade_out_handle->set_x0 (handle_right - handle_size);
632         fade_out_handle->set_x1 (handle_right);
633
634         /* don't show shape if its too small */
635
636         if (pwidth < 5) {
637                 hide_end_xfade();
638                 fade_out_shape->hide();
639                 return;
640         }
641
642         if (trackview.session()->config.get_show_region_fades()) {
643                 fade_out_shape->show();
644         }
645
646         uint32_t npoints = std::min (gdk_screen_width(), (int) pwidth);
647         double effective_height;
648         std::vector<float> curve(npoints);
649
650         audio_region()->fade_out()->curve().get_vector (0, audio_region()->fade_out()->back()->when, &curve[0], npoints);
651
652         if (_height >= NAME_HIGHLIGHT_THRESH) {
653                 effective_height = _height - NAME_HIGHLIGHT_SIZE;
654         } else {
655                 effective_height = _height;
656         }
657
658         effective_height -= 1.0;
659
660         /* points *MUST* be in anti-clockwise order */
661         
662         Points points;
663         
664         uint32_t pi, pc;
665         double xdelta = pwidth/npoints;
666         
667         points.assign (npoints, Duple ());
668         
669         for (pi = 0, pc = 0; pc < npoints; ++pc, ++pi) {
670                 points[pi].x = 1.0 + _pixel_width - pwidth + (pc * xdelta);
671                 points[pi].y = 1.0 + effective_height - (curve[pc] * effective_height);
672         }
673
674         /* draw the line */
675
676         redraw_end_xfade_to (ar, width, points, effective_height, handle_right, pwidth-1);
677
678         // fade_out_shape->set (points);
679
680         /* ensure trim handle stays on top */
681         if (frame_handle_end) {
682                 frame_handle_end->raise_to_top();
683         }
684
685 }
686
687 framepos_t
688 AudioRegionView::get_fade_in_shape_width ()
689 {
690         return audio_region()->fade_in()->back()->when;
691 }
692
693 framepos_t
694 AudioRegionView::get_fade_out_shape_width ()
695 {
696         return audio_region()->fade_out()->back()->when;
697 }
698
699
700 void
701 AudioRegionView::redraw_start_xfade ()
702 {
703         boost::shared_ptr<AudioRegion> ar (audio_region());
704
705         if (!ar->fade_in() || ar->fade_in()->empty()) {
706                 return;
707         }
708
709         show_start_xfade();
710         reset_fade_in_shape_width (ar, ar->fade_in()->back()->when);
711 }
712
713 void
714 AudioRegionView::redraw_start_xfade_to (boost::shared_ptr<AudioRegion> ar, framecnt_t /*width*/, Points& points, double effective_height,
715                                         double rect_width)
716 {
717         if (points.size() < 3) {
718                 return;
719         }
720
721         if (!start_xfade_in) {
722                 start_xfade_in = new ArdourCanvas::PolyLine (group);
723                 CANVAS_DEBUG_NAME (start_xfade_in, string_compose ("xfade start in line for %1", region()->name()));
724                 start_xfade_in->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
725                 start_xfade_in->set_outline_width (1.5);
726         }
727
728         if (!start_xfade_out) {
729                 start_xfade_out = new ArdourCanvas::PolyLine (group);
730                 CANVAS_DEBUG_NAME (start_xfade_out, string_compose ("xfade start out line for %1", region()->name()));
731                 uint32_t col = UINT_RGBA_CHANGE_A (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine(), 128);
732                 start_xfade_out->set_outline_color (col);
733                 start_xfade_out->set_outline_width (2.0);
734         }
735
736         if (!start_xfade_rect) {
737                 start_xfade_rect = new ArdourCanvas::Rectangle (group);
738                 CANVAS_DEBUG_NAME (start_xfade_rect, string_compose ("xfade start rect for %1", region()->name()));
739                 start_xfade_rect->set_fill (true);
740                 start_xfade_rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
741                 start_xfade_rect->set_outline (false);
742                 start_xfade_rect->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_start_xfade_event), start_xfade_rect, this));
743                 start_xfade_rect->set_data ("regionview", this);
744         }
745
746         start_xfade_rect->set (ArdourCanvas::Rect (1.0, 0.0, rect_width, effective_height));
747         start_xfade_rect->show ();
748
749         start_xfade_in->set (points);
750         start_xfade_in->show ();
751
752         /* fade out line */
753
754         boost::shared_ptr<AutomationList> inverse = ar->inverse_fade_in();
755         Points ipoints;
756         Points::size_type npoints = points.size();
757
758         ipoints.assign (npoints, Duple());
759
760         if (!inverse) {
761
762                 /* no inverse curve defined, show the inverse of the normal one */
763
764                 for (Points::size_type i = 0, pci = 0; i < npoints; ++i, ++pci) {
765                         ArdourCanvas::Duple &p (ipoints[pci]);
766                         p.x = 1.0 + i;
767                         /* invert with respect to y-axis */
768                         p.y = 1.0 + effective_height - points[pci].y;
769                 }
770
771         } else {
772
773                 std::vector<float> vec(npoints);
774                 inverse->curve().get_vector (0, inverse->back()->when, &vec[0], npoints);
775                 
776                 for (Points::size_type i = 0, pci = 0; i < npoints; ++i, ++pci) {
777                         ArdourCanvas::Duple &p (ipoints[pci]);
778                         p.x = 1.0 + i;
779                         p.y = 1.0 + effective_height - (effective_height * vec[i]);
780                 }
781         }
782
783         start_xfade_out->set (ipoints);
784         start_xfade_out->show ();
785
786         show_start_xfade();
787 }
788
789 void
790 AudioRegionView::redraw_end_xfade ()
791 {
792         boost::shared_ptr<AudioRegion> ar (audio_region());
793
794         if (!ar->fade_out() || ar->fade_out()->empty()) {
795                 return;
796         }
797
798         show_end_xfade();
799         
800         reset_fade_out_shape_width (ar, ar->fade_out()->back()->when);
801 }
802
803 void
804 AudioRegionView::redraw_end_xfade_to (boost::shared_ptr<AudioRegion> ar, framecnt_t width, Points& points, double effective_height,
805                                       double rect_edge, double rect_width)
806 {
807         if (points.size() < 3) {
808                 return;
809         }
810
811         if (!end_xfade_in) {
812                 end_xfade_in = new ArdourCanvas::PolyLine (group);
813                 CANVAS_DEBUG_NAME (end_xfade_in, string_compose ("xfade end in line for %1", region()->name()));
814                 uint32_t col UINT_RGBA_CHANGE_A (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine(), 128);
815                 end_xfade_in->set_outline_color (col);
816                 end_xfade_in->set_outline_width (1.5);
817         }
818
819         if (!end_xfade_out) {
820                 end_xfade_out = new ArdourCanvas::PolyLine (group);
821                 CANVAS_DEBUG_NAME (end_xfade_out, string_compose ("xfade end out line for %1", region()->name()));
822                 end_xfade_out->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
823                 end_xfade_out->set_outline_width (2.0);
824         }
825
826         if (!end_xfade_rect) {
827                 end_xfade_rect = new ArdourCanvas::Rectangle (group);
828                 CANVAS_DEBUG_NAME (end_xfade_rect, string_compose ("xfade end rect for %1", region()->name()));
829                 end_xfade_rect->set_fill (true);
830                 end_xfade_rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
831                 end_xfade_rect->set_outline (0);
832                 end_xfade_rect->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_end_xfade_event), end_xfade_rect, this));
833                 end_xfade_rect->set_data ("regionview", this);
834         }
835
836         end_xfade_rect->set (ArdourCanvas::Rect (rect_edge, 0.0, rect_edge + rect_width + TimeAxisViewItem::RIGHT_EDGE_SHIFT, effective_height));
837         end_xfade_rect->show ();
838
839         end_xfade_in->set (points);
840         end_xfade_in->show ();
841         end_xfade_in->raise_to_top ();
842
843         /* fade in line */
844
845         boost::shared_ptr<AutomationList> inverse = ar->inverse_fade_out ();
846         Points ipoints;
847         Points::size_type npoints = points.size();
848
849         ipoints.assign (npoints, Duple());
850
851         if (!inverse) {
852
853                 const double rend = trackview.editor().sample_to_pixel (_region->length() - points.back().y);
854
855                 for (Points::size_type i = 0, pci = 0; i < npoints; ++i, ++pci) {
856                         ArdourCanvas::Duple &p (ipoints[pci]);
857                         p.x = 1.0 + rend + i;
858                         p.y = 1.0 + effective_height - points[pci].y;
859                 }
860
861         } else {
862
863                 boost::scoped_array<float> vec (new float[npoints]);
864                 inverse->curve().get_vector (inverse->front()->when, inverse->back()->when, vec.get(), npoints);
865
866                 const double rend = trackview.editor().sample_to_pixel (_region->length() - width);
867
868                 float* vp = vec.get();
869
870                 for (Points::size_type i = 0, pci = 0; i < npoints; ++i) {
871                         ArdourCanvas::Duple& p (ipoints[pci++]);
872                         p.x = 1.0 + rend + i;
873                         p.y = 1.0 + effective_height - (effective_height * vp[i]);
874                 }
875         }
876
877         end_xfade_out->set (ipoints);
878         end_xfade_out->show ();
879         end_xfade_out->raise_to_top ();
880
881         end_xfade_rect->raise_to_top ();  //this needs to be topmost so the lines don't steal mouse focus
882
883         show_end_xfade();
884 }
885
886 void
887 AudioRegionView::hide_xfades ()
888 {
889         hide_start_xfade ();
890         hide_end_xfade ();
891 }
892
893 void
894 AudioRegionView::hide_start_xfade ()
895 {
896         if (start_xfade_in) {
897                 start_xfade_in->hide();
898         }
899         if (start_xfade_out) {
900                 start_xfade_out->hide();
901         }
902         if (start_xfade_rect) {
903                 start_xfade_rect->hide ();
904         }
905
906         _start_xfade_visible = false;
907 }
908
909 void
910 AudioRegionView::hide_end_xfade ()
911 {
912         if (end_xfade_in) {
913                 end_xfade_in->hide();
914         }
915         if (end_xfade_out) {
916                 end_xfade_out->hide();
917         }
918         if (end_xfade_rect) {
919                 end_xfade_rect->hide ();
920         }
921
922         _end_xfade_visible = false;
923 }
924
925 void
926 AudioRegionView::show_start_xfade ()
927 {
928         if (start_xfade_in) {
929                 start_xfade_in->show();
930         }
931         if (start_xfade_out) {
932                 start_xfade_out->show();
933         }
934         if (start_xfade_rect) {
935                 start_xfade_rect->show ();
936         }
937
938         _start_xfade_visible = true;
939 }
940
941 void
942 AudioRegionView::show_end_xfade ()
943 {
944         if (end_xfade_in) {
945                 end_xfade_in->show();
946         }
947         if (end_xfade_out) {
948                 end_xfade_out->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_in) {
1007                 start_xfade_in->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
1008         }
1009         if (start_xfade_out) {
1010                 uint32_t col UINT_RGBA_CHANGE_A (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine(), 128);
1011                 start_xfade_out->set_outline_color (col);
1012         }
1013         if (end_xfade_in) {
1014                 end_xfade_in->set_outline_color (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine());
1015         }
1016         if (end_xfade_out) {
1017                 uint32_t col UINT_RGBA_CHANGE_A (ARDOUR_UI::config()->get_canvasvar_CrossfadeLine(), 128);
1018                 end_xfade_out->set_outline_color (col);
1019         }
1020
1021         if (start_xfade_rect) {
1022                 start_xfade_rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
1023         }
1024         if (end_xfade_rect) {
1025                 end_xfade_rect->set_fill_color (ARDOUR_UI::config()->get_canvasvar_ActiveCrossfade());
1026         }
1027 }
1028
1029 void
1030 AudioRegionView::setup_waveform_visibility ()
1031 {
1032         if (Config->get_show_waveforms ()) {
1033                 for (uint32_t n = 0; n < waves.size(); ++n) {
1034                         /* make sure the zoom level is correct, since we don't update
1035                            this when waveforms are hidden.
1036                         */
1037                         // CAIROCANVAS
1038                         // waves[n]->set_samples_per_pixel (_samples_per_pixel);
1039                         waves[n]->show();
1040                 }
1041         } else {
1042                 for (uint32_t n = 0; n < waves.size(); ++n) {
1043                         waves[n]->hide();
1044                 }
1045         }
1046 }
1047
1048 void
1049 AudioRegionView::temporarily_hide_envelope ()
1050 {
1051         if (gain_line) {
1052                 gain_line->hide ();
1053         }
1054 }
1055
1056 void
1057 AudioRegionView::unhide_envelope ()
1058 {
1059         update_envelope_visibility ();
1060 }
1061
1062 void
1063 AudioRegionView::update_envelope_visibility ()
1064 {
1065         if (!gain_line) {
1066                 return;
1067         }
1068
1069         if (Config->get_show_region_gain() || trackview.editor().current_mouse_mode() == Editing::MouseGain) {
1070                 gain_line->add_visibility (AutomationLine::Line);
1071         } else {
1072                 gain_line->hide ();
1073         }
1074 }
1075
1076 void
1077 AudioRegionView::create_waves ()
1078 {
1079         // cerr << "AudioRegionView::create_waves() called on " << this << endl;//DEBUG
1080         RouteTimeAxisView& atv (*(dynamic_cast<RouteTimeAxisView*>(&trackview))); // ick
1081
1082         if (!atv.track()) {
1083                 return;
1084         }
1085
1086         ChanCount nchans = atv.track()->n_channels();
1087
1088         // cerr << "creating waves for " << _region->name() << " with wfd = " << wait_for_data
1089         //              << " and channels = " << nchans.n_audio() << endl;
1090
1091         /* in tmp_waves, set up null pointers for each channel so the vector is allocated */
1092         for (uint32_t n = 0; n < nchans.n_audio(); ++n) {
1093                 tmp_waves.push_back (0);
1094         }
1095
1096         for (vector<ScopedConnection*>::iterator i = _data_ready_connections.begin(); i != _data_ready_connections.end(); ++i) {
1097                 delete *i;
1098         }
1099
1100         _data_ready_connections.clear ();
1101
1102         for (uint32_t i = 0; i < nchans.n_audio(); ++i) {
1103                 _data_ready_connections.push_back (0);
1104         }
1105
1106         for (uint32_t n = 0; n < nchans.n_audio(); ++n) {
1107
1108                 if (n >= audio_region()->n_channels()) {
1109                         break;
1110                 }
1111
1112                 // cerr << "\tchannel " << n << endl;
1113
1114                 if (wait_for_data) {
1115                         if (audio_region()->audio_source(n)->peaks_ready (boost::bind (&AudioRegionView::peaks_ready_handler, this, n), &_data_ready_connections[n], gui_context())) {
1116                                 // cerr << "\tData is ready\n";
1117                                 create_one_wave (n, true);
1118                         } else {
1119                                 // cerr << "\tdata is not ready\n";
1120                                 // we'll get a PeaksReady signal from the source in the future
1121                                 // and will call create_one_wave(n) then.
1122                         }
1123
1124                 } else {
1125                         // cerr << "\tdon't delay, display today!\n";
1126                         create_one_wave (n, true);
1127                 }
1128
1129         }
1130 }
1131
1132 void
1133 AudioRegionView::create_one_wave (uint32_t which, bool /*direct*/)
1134 {
1135         //cerr << "AudioRegionView::create_one_wave() called which: " << which << " this: " << this << endl;//DEBUG
1136         RouteTimeAxisView& atv (*(dynamic_cast<RouteTimeAxisView*>(&trackview))); // ick
1137         uint32_t nchans = atv.track()->n_channels().n_audio();
1138         uint32_t n;
1139         uint32_t nwaves = std::min (nchans, audio_region()->n_channels());
1140         gdouble ht;
1141
1142         if (trackview.current_height() < NAME_HIGHLIGHT_THRESH) {
1143                 ht = ((trackview.current_height()) / (double) nchans);
1144         } else {
1145                 ht = ((trackview.current_height() - NAME_HIGHLIGHT_SIZE) / (double) nchans);
1146         }
1147
1148         gdouble yoff = which * ht;
1149
1150         WaveView *wave = new WaveView (group, audio_region ());
1151         CANVAS_DEBUG_NAME (wave, string_compose ("wave view for chn %1 of %2", which, get_item_name()));
1152         
1153         wave->set_channel (which);
1154         wave->set_y_position (yoff);
1155         wave->set_height (ht);
1156         wave->set_samples_per_pixel (samples_per_pixel);
1157         wave->set_show_zero_line (true);
1158         
1159         switch (Config->get_waveform_shape()) {
1160         case Rectified:
1161                 wave->set_shape (WaveView::Rectified);
1162                 break;
1163         default:
1164                 wave->set_shape (WaveView::Normal);
1165         }
1166                 
1167         wave->set_logscaled (Config->get_waveform_scale() == Logarithmic);
1168
1169         if (!Config->get_show_waveforms ()) {
1170                 wave->hide();
1171         }
1172
1173         /* note: calling this function is serialized by the lock
1174            held in the peak building thread that signals that
1175            peaks are ready for use *or* by the fact that it is
1176            called one by one from the GUI thread.
1177         */
1178
1179         if (which < nchans) {
1180                 tmp_waves[which] = wave;
1181         } else {
1182                 /* n-channel track, >n-channel source */
1183         }
1184
1185         /* see if we're all ready */
1186
1187         for (n = 0; n < nchans; ++n) {
1188                 if (tmp_waves[n] == 0) {
1189                         break;
1190                 }
1191         }
1192
1193         if (n == nwaves && waves.empty()) {
1194                 /* all waves are ready */
1195                 tmp_waves.resize(nwaves);
1196
1197                 waves = tmp_waves;
1198                 tmp_waves.clear ();
1199
1200                 /* all waves created, don't hook into peaks ready anymore */
1201                 delete _data_ready_connections[which];
1202                 _data_ready_connections[which] = 0;
1203         }
1204 }
1205
1206 void
1207 AudioRegionView::peaks_ready_handler (uint32_t which)
1208 {
1209         Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&AudioRegionView::create_one_wave, this, which, false));
1210         // cerr << "AudioRegionView::peaks_ready_handler() called on " << which << " this: " << this << endl;
1211 }
1212
1213 void
1214 AudioRegionView::add_gain_point_event (ArdourCanvas::Item *item, GdkEvent *ev, bool with_guard_points)
1215 {
1216         if (!gain_line) {
1217                 return;
1218         }
1219
1220         double x, y;
1221
1222         /* don't create points that can't be seen */
1223
1224         update_envelope_visibility ();
1225
1226         x = ev->button.x;
1227         y = ev->button.y;
1228
1229         item->canvas_to_item (x, y);
1230
1231         framepos_t fx = trackview.editor().pixel_to_sample (x);
1232
1233         if (fx > _region->length()) {
1234                 return;
1235         }
1236
1237         /* compute vertical fractional position */
1238
1239         y = 1.0 - (y / (_height - NAME_HIGHLIGHT_SIZE));
1240
1241         /* map using gain line */
1242
1243         gain_line->view_to_model_coord (x, y);
1244
1245         /* XXX STATEFUL: can't convert to stateful diff until we
1246            can represent automation data with it.
1247         */
1248
1249         trackview.session()->begin_reversible_command (_("add gain control point"));
1250         XMLNode &before = audio_region()->envelope()->get_state();
1251
1252         if (!audio_region()->envelope_active()) {
1253                 XMLNode &region_before = audio_region()->get_state();
1254                 audio_region()->set_envelope_active(true);
1255                 XMLNode &region_after = audio_region()->get_state();
1256                 trackview.session()->add_command (new MementoCommand<AudioRegion>(*(audio_region().get()), &region_before, &region_after));
1257         }
1258
1259         audio_region()->envelope()->add (fx, y, with_guard_points);
1260
1261         XMLNode &after = audio_region()->envelope()->get_state();
1262         trackview.session()->add_command (new MementoCommand<AutomationList>(*audio_region()->envelope().get(), &before, &after));
1263         trackview.session()->commit_reversible_command ();
1264 }
1265
1266 void
1267 AudioRegionView::remove_gain_point_event (ArdourCanvas::Item *item, GdkEvent* /*ev*/)
1268 {
1269         ControlPoint *cp = reinterpret_cast<ControlPoint *> (item->get_data ("control_point"));
1270         audio_region()->envelope()->erase (cp->model());
1271 }
1272
1273 void
1274 AudioRegionView::setup_waveform_shape ()
1275 {
1276         WaveView::Shape shape;
1277
1278         switch (Config->get_waveform_shape()) {
1279         case Rectified:
1280                 shape = WaveView::Rectified;
1281                 break;
1282         default:
1283                 shape = WaveView::Normal;
1284         }
1285         for (vector<WaveView *>::iterator wave = waves.begin(); wave != waves.end() ; ++wave) {
1286                 (*wave)->set_shape (shape);
1287         }
1288 }
1289
1290 void
1291 AudioRegionView::setup_waveform_scale ()
1292 {
1293         WaveView::set_global_logscaled (Config->get_waveform_scale() == Logarithmic);
1294 }
1295
1296 void
1297 AudioRegionView::setup_waveform_clipping ()
1298 {
1299         WaveView::set_global_show_waveform_clipping (ARDOUR_UI::config()->get_show_waveform_clipping());
1300 }
1301
1302 GhostRegion*
1303 AudioRegionView::add_ghost (TimeAxisView& tv)
1304 {
1305         RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(&trackview);
1306         assert(rtv);
1307
1308         double unit_position = _region->position () / samples_per_pixel;
1309         AudioGhostRegion* ghost = new AudioGhostRegion (tv, trackview, unit_position);
1310         uint32_t nchans;
1311
1312         nchans = rtv->track()->n_channels().n_audio();
1313
1314         for (uint32_t n = 0; n < nchans; ++n) {
1315
1316                 if (n >= audio_region()->n_channels()) {
1317                         break;
1318                 }
1319
1320                 WaveView *wave = new WaveView (ghost->group, audio_region());
1321                 CANVAS_DEBUG_NAME (wave, string_compose ("ghost wave for %1", get_item_name()));
1322
1323                 wave->set_channel (n);
1324                 wave->set_samples_per_pixel (samples_per_pixel);
1325                 wave->set_amplitude_above_axis (_amplitude_above_axis);
1326
1327                 ghost->waves.push_back(wave);
1328         }
1329
1330         ghost->set_height ();
1331         ghost->set_duration (_region->length() / samples_per_pixel);
1332         ghost->set_colors();
1333         ghosts.push_back (ghost);
1334
1335         return ghost;
1336 }
1337
1338 void
1339 AudioRegionView::entered (bool internal_editing)
1340 {
1341         trackview.editor().set_current_trimmable (_region);
1342         trackview.editor().set_current_movable (_region);
1343         
1344         if (gain_line) {
1345                 /* these may or may not be visible depending on mouse mode */
1346                 gain_line->add_visibility (AutomationLine::ControlPoints);
1347         }
1348
1349         if (fade_in_handle && !internal_editing) {
1350                 fade_in_handle->show ();
1351                 fade_out_handle->show ();
1352                 fade_out_handle->raise_to_top ();
1353                 fade_in_handle->raise_to_top ();
1354         }
1355 }
1356
1357 void
1358 AudioRegionView::exited ()
1359 {
1360         trackview.editor().set_current_trimmable (boost::shared_ptr<Trimmable>());
1361         trackview.editor().set_current_movable (boost::shared_ptr<Movable>());
1362
1363         if (gain_line) {
1364                 gain_line->remove_visibility (AutomationLine::ControlPoints);
1365         }
1366
1367         if (fade_in_handle) {
1368                 fade_in_handle->hide ();
1369                 fade_out_handle->hide ();
1370         }
1371 }
1372
1373 void
1374 AudioRegionView::envelope_active_changed ()
1375 {
1376         if (gain_line) {
1377                 gain_line->set_line_color (audio_region()->envelope_active() ? 
1378                                            ARDOUR_UI::config()->get_canvasvar_GainLine() : 
1379                                            ARDOUR_UI::config()->get_canvasvar_GainLineInactive());
1380                 update_envelope_visibility ();
1381         }
1382 }
1383
1384 void
1385 AudioRegionView::color_handler ()
1386 {
1387         //case cMutedWaveForm:
1388         //case cWaveForm:
1389         //case cWaveFormClip:
1390         //case cZeroLine:
1391         set_colors ();
1392
1393         //case cGainLineInactive:
1394         //case cGainLine:
1395         envelope_active_changed();
1396
1397 }
1398
1399 void
1400 AudioRegionView::set_waveform_colors ()
1401 {
1402         for (vector<ArdourCanvas::WaveView*>::iterator w = waves.begin(); w != waves.end(); ++w) {
1403                 set_one_waveform_color (*w);
1404         }
1405 }
1406
1407 void
1408 AudioRegionView::set_one_waveform_color (ArdourCanvas::WaveView* wave)
1409 {
1410         ArdourCanvas::Color fill;
1411         ArdourCanvas::Color outline;
1412         
1413         if (_selected) {
1414                 if (_region->muted()) {
1415                         /* hide outline with zero alpha */
1416                         outline = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->get_canvasvar_SelectedWaveForm(), 0);
1417                         fill = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->get_canvasvar_SelectedWaveFormFill(), MUTED_ALPHA);
1418                 } else {
1419                         outline = ARDOUR_UI::config()->get_canvasvar_SelectedWaveForm();
1420                         fill = ARDOUR_UI::config()->get_canvasvar_SelectedWaveFormFill();
1421                 }
1422         } else {
1423                 if (_recregion) {
1424                         outline = ARDOUR_UI::config()->get_canvasvar_RecWaveForm();
1425                         fill = ARDOUR_UI::config()->get_canvasvar_RecWaveFormFill();
1426                 } else {
1427                         if (_region->muted()) {
1428                                 /* hide outline with zero alpha */
1429                                 outline = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->get_canvasvar_WaveForm(), 0); 
1430                                 fill = UINT_RGBA_CHANGE_A(ARDOUR_UI::config()->get_canvasvar_WaveFormFill(), MUTED_ALPHA);
1431                         } else {
1432                                 outline = ARDOUR_UI::config()->get_canvasvar_WaveForm();
1433                                 fill = ARDOUR_UI::config()->get_canvasvar_WaveFormFill();
1434                         }
1435                 }
1436         }
1437
1438         if (ARDOUR_UI::config()->get_color_regions_using_track_color()) {
1439
1440                 /* just use a slightly transparent version of the selected
1441                  * color so that some of the track color bleeds through
1442                  */
1443
1444                 double r, g, b, a;
1445                 ArdourCanvas::color_to_rgba (fill, r, g, b, a);
1446                 fill = ArdourCanvas::rgba_to_color (r, g, b, 0.85); /* magic number, not user controllable */
1447                 outline = ARDOUR_UI::config()->get_canvasvar_WaveForm();
1448         }
1449
1450         wave->set_fill_color (fill);
1451         wave->set_outline_color (outline);
1452         wave->set_clip_color (ARDOUR_UI::config()->get_canvasvar_WaveFormClip());
1453         wave->set_zero_color (ARDOUR_UI::config()->get_canvasvar_ZeroLine());
1454 }
1455
1456 void
1457 AudioRegionView::set_frame_color ()
1458 {
1459         if (!frame) {
1460                 return;
1461         }
1462
1463         if (_region->opaque()) {
1464                 fill_opacity = 130;
1465         } else {
1466                 fill_opacity = 0;
1467         }
1468
1469         TimeAxisViewItem::set_frame_color ();
1470
1471         set_waveform_colors ();
1472 }
1473
1474 void
1475 AudioRegionView::set_fade_visibility (bool yn)
1476 {
1477         if (yn) {
1478                 if (fade_in_shape) {
1479                         fade_in_shape->show();
1480                 }
1481                 if (fade_out_shape) {
1482                         fade_out_shape->show ();
1483                 }
1484                 if (fade_in_handle) {
1485                         fade_in_handle->show ();
1486                 }
1487                 if (fade_out_handle) {
1488                         fade_out_handle->show ();
1489                 }
1490         } else {
1491                 if (fade_in_shape) {
1492                         fade_in_shape->hide();
1493                 }
1494                 if (fade_out_shape) {
1495                         fade_out_shape->hide ();
1496                 }
1497                 if (fade_in_handle) {
1498                         fade_in_handle->hide ();
1499                 }
1500                 if (fade_out_handle) {
1501                         fade_out_handle->hide ();
1502                 }
1503         }
1504 }
1505
1506 void
1507 AudioRegionView::update_coverage_frames (LayerDisplay d)
1508 {
1509         RegionView::update_coverage_frames (d);
1510
1511         if (fade_in_handle) {
1512                 fade_in_handle->raise_to_top ();
1513                 fade_out_handle->raise_to_top ();
1514         }
1515 }
1516
1517 void
1518 AudioRegionView::show_region_editor ()
1519 {
1520         if (editor == 0) {
1521                 editor = new AudioRegionEditor (trackview.session(), audio_region());
1522         }
1523
1524         editor->present ();
1525         editor->show_all();
1526 }
1527
1528 void
1529 AudioRegionView::transients_changed ()
1530 {
1531         AnalysisFeatureList analysis_features = _region->transients();
1532
1533         while (feature_lines.size() < analysis_features.size()) {
1534
1535                 ArdourCanvas::Line* canvas_item = new ArdourCanvas::Line(group);
1536                 CANVAS_DEBUG_NAME (canvas_item, string_compose ("transient group for %1", region()->name()));
1537
1538                 canvas_item->set (ArdourCanvas::Duple (-1.0, 2.0),
1539                                   ArdourCanvas::Duple (1.0, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1));
1540
1541                 canvas_item->raise_to_top ();
1542                 canvas_item->show ();
1543
1544                 canvas_item->set_data ("regionview", this);
1545                 canvas_item->Event.connect (sigc::bind (sigc::mem_fun (PublicEditor::instance(), &PublicEditor::canvas_feature_line_event), canvas_item, this));
1546
1547                 feature_lines.push_back (make_pair(0, canvas_item));
1548         }
1549
1550         while (feature_lines.size() > analysis_features.size()) {
1551                 ArdourCanvas::Line* line = feature_lines.back().second;
1552                 feature_lines.pop_back ();
1553                 delete line;
1554         }
1555
1556         AnalysisFeatureList::const_iterator i;
1557         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
1558
1559         for (i = analysis_features.begin(), l = feature_lines.begin(); i != analysis_features.end() && l != feature_lines.end(); ++i, ++l) {
1560
1561                 float *pos = new float;
1562                 *pos = trackview.editor().sample_to_pixel (*i);
1563
1564                 (*l).second->set (
1565                         ArdourCanvas::Duple (*pos, 2.0),
1566                         ArdourCanvas::Duple (*pos, _height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 1)
1567                         );
1568
1569                 (*l).second->set_data ("position", pos);
1570                 (*l).first = *i;
1571         }
1572 }
1573
1574 void
1575 AudioRegionView::update_transient(float /*old_pos*/, float new_pos)
1576 {
1577         /* Find frame at old pos, calulate new frame then update region transients*/
1578         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
1579
1580         for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
1581
1582                 /* Line has been updated in drag so we compare to new_pos */
1583
1584                 float* pos = (float*) (*l).second->get_data ("position");
1585
1586                 if (rint(new_pos) == rint(*pos)) {
1587
1588                     framepos_t old_frame = (*l).first;
1589                     framepos_t new_frame = trackview.editor().pixel_to_sample (new_pos);
1590
1591                     _region->update_transient (old_frame, new_frame);
1592
1593                     break;
1594                 }
1595         }
1596 }
1597
1598 void
1599 AudioRegionView::remove_transient(float pos)
1600 {
1601         /* Find frame at old pos, calulate new frame then update region transients*/
1602         list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
1603
1604         for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
1605
1606                 /* Line has been updated in drag so we compare to new_pos */
1607                 float *line_pos = (float*) (*l).second->get_data ("position");
1608
1609                 if (rint(pos) == rint(*line_pos)) {
1610                     _region->remove_transient ((*l).first);
1611                     break;
1612                 }
1613         }
1614 }
1615
1616 void
1617 AudioRegionView::thaw_after_trim ()
1618 {
1619         RegionView::thaw_after_trim ();
1620         unhide_envelope ();
1621         drag_end ();
1622 }
1623
1624
1625 void
1626 AudioRegionView::show_xfades ()
1627 {
1628         show_start_xfade ();
1629         show_end_xfade ();
1630 }
1631
1632 void
1633 AudioRegionView::drag_start ()
1634 {
1635         TimeAxisViewItem::drag_start ();
1636
1637         //we used to hide xfades here.  I don't see the point with the new model, but we can re-implement if needed
1638 }
1639
1640 void
1641 AudioRegionView::drag_end ()
1642 {
1643         TimeAxisViewItem::drag_end ();
1644
1645         //see comment for drag_start
1646 }
1647
1648 void
1649 AudioRegionView::parameter_changed (string const & p)
1650 {
1651         if (p == "show-waveforms") {
1652                 setup_waveform_visibility ();
1653         } else if (p == "waveform-scale") {
1654                 setup_waveform_scale ();
1655         } else if (p == "waveform-shape") {
1656                 setup_waveform_shape ();
1657         } else if (p == "show-waveform-clipping") {
1658                 setup_waveform_clipping ();
1659         }
1660 }