added logarithmic option for waveform scaling. added save/restore of rectified and...
[ardour.git] / gtk2_ardour / audio_streamview.cc
1 /*
2     Copyright (C) 2001, 2006 Paul Davis 
3
4     This program is free software; you can redistribute 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
22 #include <gtkmm.h>
23
24 #include <gtkmm2ext/gtk_ui.h>
25
26 #include <ardour/audioplaylist.h>
27 #include <ardour/audioregion.h>
28 #include <ardour/audiofilesource.h>
29 #include <ardour/audio_diskstream.h>
30 #include <ardour/audio_track.h>
31 #include <ardour/playlist_templates.h>
32 #include <ardour/source.h>
33 #include <ardour/region_factory.h>
34
35 #include "audio_streamview.h"
36 #include "audio_region_view.h"
37 #include "tape_region_view.h"
38 #include "audio_time_axis.h"
39 #include "canvas-waveview.h"
40 #include "canvas-simplerect.h"
41 #include "region_selection.h"
42 #include "selection.h"
43 #include "public_editor.h"
44 #include "ardour_ui.h"
45 #include "crossfade_view.h"
46 #include "rgb_macros.h"
47 #include "gui_thread.h"
48 #include "utils.h"
49 #include "color.h"
50
51 using namespace ARDOUR;
52 using namespace PBD;
53 using namespace Editing;
54
55 AudioStreamView::AudioStreamView (AudioTimeAxisView& tv)
56         : StreamView (tv)
57 {
58         crossfades_visible = true;
59
60         if (tv.is_audio_track())
61                 stream_base_color = color_map[cAudioTrackBase];
62         else
63                 stream_base_color = color_map[cAudioBusBase];
64         
65         canvas_rect->property_fill_color_rgba() = stream_base_color;
66         canvas_rect->property_outline_color_rgba() = color_map[cAudioTrackOutline];
67
68         _amplitude_above_axis = 1.0;
69
70         use_rec_regions = tv.editor.show_waveforms_recording ();
71         last_rec_peak_frame = 0;
72
73 }
74
75 AudioStreamView::~AudioStreamView ()
76 {
77 }
78
79 int
80 AudioStreamView::set_height (gdouble h)
81 {
82         /* limit the values to something sane-ish */
83         if (h < 10.0 || h > 1000.0) {
84                 return -1;
85         }
86
87         StreamView::set_height(h);
88
89         for (CrossfadeViewList::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
90                 (*i)->set_height (h);
91         }
92
93         return 0;
94 }
95
96 int 
97 AudioStreamView::set_samples_per_unit (gdouble spp)
98 {
99         StreamView::set_samples_per_unit(spp);
100
101         for (CrossfadeViewList::iterator xi = crossfade_views.begin(); xi != crossfade_views.end(); ++xi) {
102                 (*xi)->set_samples_per_unit (spp);
103         }
104
105         return 0;
106 }
107
108 int 
109 AudioStreamView::set_amplitude_above_axis (gdouble app)
110 {
111         RegionViewList::iterator i;
112
113         if (app < 1.0) {
114                 return -1;
115         }
116
117         _amplitude_above_axis = app;
118
119         for (i = region_views.begin(); i != region_views.end(); ++i) {
120                 AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
121                 if (arv)
122                         arv->set_amplitude_above_axis (app);
123         }
124
125         return 0;
126 }
127
128 void
129 AudioStreamView::add_region_view_internal (boost::shared_ptr<Region> r, bool wait_for_waves)
130 {
131         AudioRegionView *region_view;
132
133         ENSURE_GUI_THREAD (bind (mem_fun (*this, &AudioStreamView::add_region_view), r));
134
135         boost::shared_ptr<AudioRegion> region = boost::dynamic_pointer_cast<AudioRegion> (r);
136
137         if (region == 0) {
138                 return;
139         }
140
141         for (list<RegionView *>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
142                 if ((*i)->region() == r) {
143                         
144                         /* great. we already have a AudioRegionView for this Region. use it again. */
145                         
146                         (*i)->set_valid (true);
147                         return;
148                 }
149         }
150
151         switch (_trackview.audio_track()->mode()) {
152         case Normal:
153                 region_view = new AudioRegionView (canvas_group, _trackview, region, 
154                                                    _samples_per_unit, region_color);
155                 break;
156         case Destructive:
157                 region_view = new TapeAudioRegionView (canvas_group, _trackview, region, 
158                                                        _samples_per_unit, region_color);
159                 break;
160         }
161
162         region_view->init (region_color, wait_for_waves);
163         region_view->set_amplitude_above_axis(_amplitude_above_axis);
164         region_views.push_front (region_view);
165         
166         /* follow global waveform setting */
167
168         region_view->set_waveform_visible(_trackview.editor.show_waveforms());
169
170         /* catch regionview going away */
171         region->GoingAway.connect (bind (mem_fun (*this, &AudioStreamView::remove_region_view), boost::weak_ptr<Region> (r)));
172
173         RegionViewAdded (region_view);
174 }
175
176 void
177 AudioStreamView::remove_region_view (boost::weak_ptr<Region> weak_r)
178 {
179         ENSURE_GUI_THREAD (bind (mem_fun (*this, &AudioStreamView::remove_region_view), weak_r));
180
181         boost::shared_ptr<Region> r (weak_r.lock());
182
183         if (!r) {
184                 return;
185         }
186
187         if (!_trackview.session().deletion_in_progress()) {
188
189                 for (list<CrossfadeView *>::iterator i = crossfade_views.begin(); i != crossfade_views.end();) {
190                         list<CrossfadeView*>::iterator tmp;
191                         
192                         tmp = i;
193                         ++tmp;
194                         
195                         boost::shared_ptr<AudioRegion> ar = boost::dynamic_pointer_cast<AudioRegion>(r);
196                         if (ar && (*i)->crossfade.involves (ar)) {
197                                 delete *i;
198                                 crossfade_views.erase (i);
199                         }
200                         
201                         i = tmp;
202                 }
203         }
204
205
206         StreamView::remove_region_view(r);
207 }
208
209 void
210 AudioStreamView::undisplay_diskstream ()
211 {
212         StreamView::undisplay_diskstream();
213
214         for (CrossfadeViewList::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
215                 delete *i;
216         }
217
218         crossfade_views.clear ();
219 }
220
221 void
222 AudioStreamView::playlist_modified ()
223 {
224         ENSURE_GUI_THREAD (mem_fun (*this, &AudioStreamView::playlist_modified));
225
226         StreamView::playlist_modified();
227         
228         /* make sure xfades are on top and all the regionviews are stacked correctly. */
229
230         for (list<CrossfadeView *>::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
231                 (*i)->get_canvas_group()->raise_to_top();
232         }
233 }
234
235 void
236 AudioStreamView::playlist_changed (boost::shared_ptr<Diskstream> ds)
237 {
238         ENSURE_GUI_THREAD (bind (mem_fun (*this, &AudioStreamView::playlist_changed), ds));
239
240         StreamView::playlist_changed(ds);
241
242         boost::shared_ptr<AudioPlaylist> apl = boost::dynamic_pointer_cast<AudioPlaylist>(ds->playlist());
243         if (apl)
244                 playlist_connections.push_back (apl->NewCrossfade.connect (mem_fun (*this, &AudioStreamView::add_crossfade)));
245 }
246
247 void
248 AudioStreamView::add_crossfade (Crossfade *crossfade)
249 {
250         AudioRegionView* lview = 0;
251         AudioRegionView* rview = 0;
252
253         ENSURE_GUI_THREAD (bind (mem_fun (*this, &AudioStreamView::add_crossfade), crossfade));
254
255         /* first see if we already have a CrossfadeView for this Crossfade */
256
257         for (list<CrossfadeView *>::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
258                 if ((*i)->crossfade == *crossfade) {
259                         if (!crossfades_visible) {
260                                 (*i)->hide();
261                         } else {
262                                 (*i)->show ();
263                         }
264                         (*i)->set_valid (true);
265                         return;
266                 }
267         }
268
269         /* create a new one */
270
271         for (list<RegionView *>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
272                 AudioRegionView* arv = dynamic_cast<AudioRegionView*>(*i);
273
274                 if (!lview && arv && (arv->region() == crossfade->out())) {
275                         lview = arv;
276                 }
277                 if (!rview && arv && (arv->region() == crossfade->in())) {
278                         rview = arv;
279                 }
280         }
281
282         CrossfadeView *cv = new CrossfadeView (_trackview.canvas_display,
283                                                _trackview,
284                                                *crossfade,
285                                                _samples_per_unit,
286                                                region_color,
287                                                *lview, *rview);
288
289         crossfade->Invalidated.connect (mem_fun (*this, &AudioStreamView::remove_crossfade));
290         crossfade_views.push_back (cv);
291
292         if (!Config->get_xfades_visible() || !crossfades_visible) {
293                 cv->hide ();
294         }
295 }
296
297 void
298 AudioStreamView::remove_crossfade (Crossfade *xfade)
299 {
300         ENSURE_GUI_THREAD (bind (mem_fun (*this, &AudioStreamView::remove_crossfade), xfade));
301
302         for (list<CrossfadeView*>::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
303                 if (&(*i)->crossfade == xfade) {
304                         delete *i;
305                         crossfade_views.erase (i);
306                         break;
307                 }
308         }
309 }
310
311 void
312 AudioStreamView::redisplay_diskstream ()
313 {
314         list<RegionView *>::iterator i, tmp;
315         list<CrossfadeView*>::iterator xi, tmpx;
316
317         for (i = region_views.begin(); i != region_views.end(); ++i) {
318                 (*i)->set_valid (false);
319         }
320
321         for (xi = crossfade_views.begin(); xi != crossfade_views.end(); ++xi) {
322                 (*xi)->set_valid (false);
323                 if ((*xi)->visible()) {
324                         (*xi)->show ();
325                 }
326         }
327
328         if (_trackview.is_audio_track()) {
329                 _trackview.get_diskstream()->playlist()->foreach_region (static_cast<StreamView*>(this), &StreamView::add_region_view);
330
331                 boost::shared_ptr<AudioPlaylist> apl = boost::dynamic_pointer_cast<AudioPlaylist>(_trackview.get_diskstream()->playlist());
332                 if (apl)
333                         apl->foreach_crossfade (this, &AudioStreamView::add_crossfade);
334         }
335
336         for (i = region_views.begin(); i != region_views.end(); ) {
337                 tmp = i;
338                 tmp++;
339
340                 if (!(*i)->is_valid()) {
341                         delete *i;
342                         region_views.erase (i);
343                 } 
344
345                 i = tmp;
346         }
347
348         for (xi = crossfade_views.begin(); xi != crossfade_views.end();) {
349                 tmpx = xi;
350                 tmpx++;
351
352                 if (!(*xi)->valid()) {
353                         delete *xi;
354                         crossfade_views.erase (xi);
355                 }
356
357                 xi = tmpx;
358         }
359
360         /* now fix layering */
361
362         for (RegionViewList::iterator i = region_views.begin(); i != region_views.end(); ++i) {
363                 region_layered (*i);
364         }
365 }
366
367 void
368 AudioStreamView::set_show_waveforms (bool yn)
369 {
370         for (list<RegionView *>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
371                 AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
372                 if (arv)
373                         arv->set_waveform_visible (yn);
374         }
375 }
376
377 void
378 AudioStreamView::set_waveform_shape (WaveformShape shape)
379 {
380         for (RegionViewList::iterator i = region_views.begin(); i != region_views.end(); ++i) {
381                 AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
382                 if (arv)
383                         arv->set_waveform_shape (shape);
384         }
385 }               
386
387 WaveformShape
388 AudioStreamView::get_waveform_shape () const
389 {
390         // assumes that the first represents all for our purposes
391
392         if (region_views.size() > 0) {
393                 AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(region_views.front());
394                 if (arv) {
395                         if (arv->waveform_rectified())
396                                 return Rectified;
397                 }
398         }
399         return Traditional;
400 }
401
402 void
403 AudioStreamView::set_waveform_scale (WaveformScale scale)
404 {
405         for (RegionViewList::iterator i = region_views.begin(); i != region_views.end(); ++i) {
406                 AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
407                 if (arv)
408                         arv->set_waveform_scale (scale);
409         }
410 }               
411
412 WaveformScale
413 AudioStreamView::get_waveform_scale () const
414 {
415         // assumes that the first represents all for our purposes
416
417         if (region_views.size() > 0) {
418                 AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(region_views.front());
419                 if (arv) {
420                         if (arv->waveform_logscaled())
421                                 return LogWaveform;
422                 }
423         }
424         return LinearWaveform;
425 }
426
427 void
428 AudioStreamView::setup_rec_box ()
429 {
430         // cerr << _trackview.name() << " streamview SRB\n";
431
432         if (_trackview.session().transport_rolling()) {
433
434                 // cerr << "\trolling\n";
435
436                 if (!rec_active && 
437                     _trackview.session().record_status() == Session::Recording && 
438                     _trackview.get_diskstream()->record_enabled()) {
439
440                         if (_trackview.audio_track()->mode() == Normal && use_rec_regions && rec_regions.size() == rec_rects.size()) {
441
442                                 /* add a new region, but don't bother if they set use_rec_regions mid-record */
443
444                                 SourceList sources;
445
446                                 for (list<sigc::connection>::iterator prc = peak_ready_connections.begin(); prc != peak_ready_connections.end(); ++prc) {
447                                         (*prc).disconnect();
448                                 }
449                                 peak_ready_connections.clear();
450                                         
451                                 // FIXME
452                                 boost::shared_ptr<AudioDiskstream> ads = boost::dynamic_pointer_cast<AudioDiskstream>(_trackview.get_diskstream());
453                                 assert(ads);
454
455                                 for (uint32_t n=0; n < ads->n_channels(); ++n) {
456                                         boost::shared_ptr<AudioFileSource> src = boost::static_pointer_cast<AudioFileSource> (ads->write_source (n));
457                                         if (src) {
458                                                 sources.push_back (src);
459                                                 peak_ready_connections.push_back (src->PeakRangeReady.connect (bind (mem_fun (*this, &AudioStreamView::rec_peak_range_ready), boost::weak_ptr<Source>(src))));
460                                         }
461                                 }
462
463                                 // handle multi
464                                 
465                                 nframes_t start = 0;
466                                 if (rec_regions.size() > 0) {
467                                         start = rec_regions.back()->start() + _trackview.get_diskstream()->get_captured_frames(rec_regions.size()-1);
468                                 }
469                                 
470                                 boost::shared_ptr<AudioRegion> region (boost::dynamic_pointer_cast<AudioRegion>
471                                                                        (RegionFactory::create (sources, start, 1 , "", 0, (Region::Flag)(Region::DefaultFlags | Region::DoNotSaveState), false)));
472                                 region->set_position (_trackview.session().transport_frame(), this);
473
474                                 rec_regions.push_back (region);
475                         }
476                         
477                         /* start a new rec box */
478
479                         AudioTrack* at;
480
481                         at = _trackview.audio_track(); /* we know what it is already */
482                         boost::shared_ptr<AudioDiskstream> ds = at->audio_diskstream();
483                         nframes_t frame_pos = ds->current_capture_start ();
484                         gdouble xstart = _trackview.editor.frame_to_pixel (frame_pos);
485                         gdouble xend;
486                         uint32_t fill_color;
487
488                         switch (_trackview.audio_track()->mode()) {
489                         case Normal:
490                                 xend = xstart;
491                                 fill_color = color_map[cRecordingRectFill];
492                                 break;
493
494                         case Destructive:
495                                 xend = xstart + 2;
496                                 fill_color = color_map[cRecordingRectFill];
497                                 /* make the recording rect translucent to allow
498                                    the user to see the peak data coming in, etc.
499                                 */
500                                 fill_color = UINT_RGBA_CHANGE_A (fill_color, 120);
501                                 break;
502                         }
503                         
504                         ArdourCanvas::SimpleRect * rec_rect = new Gnome::Canvas::SimpleRect (*canvas_group);
505                         rec_rect->property_x1() = xstart;
506                         rec_rect->property_y1() = 1.0;
507                         rec_rect->property_x2() = xend;
508                         rec_rect->property_y2() = (double) _trackview.height - 1;
509                         rec_rect->property_outline_color_rgba() = color_map[cRecordingRectOutline];
510                         rec_rect->property_fill_color_rgba() = fill_color;
511                         
512                         RecBoxInfo recbox;
513                         recbox.rectangle = rec_rect;
514                         recbox.start = _trackview.session().transport_frame();
515                         recbox.length = 0;
516                         
517                         rec_rects.push_back (recbox);
518                         
519                         screen_update_connection.disconnect();
520                         screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect (mem_fun (*this, &AudioStreamView::update_rec_box));   
521                         rec_updating = true;
522                         rec_active = true;
523
524                 } else if (rec_active &&
525                            (_trackview.session().record_status() != Session::Recording ||
526                             !_trackview.get_diskstream()->record_enabled())) {
527
528                         screen_update_connection.disconnect();
529                         rec_active = false;
530                         rec_updating = false;
531
532                 }
533                 
534         } else {
535
536                 // cerr << "\tNOT rolling, rec_rects = " << rec_rects.size() << " rec_regions = " << rec_regions.size() << endl;
537
538                 if (!rec_rects.empty() || !rec_regions.empty()) {
539
540                         /* disconnect rapid update */
541                         screen_update_connection.disconnect();
542
543                         for (list<sigc::connection>::iterator prc = peak_ready_connections.begin(); prc != peak_ready_connections.end(); ++prc) {
544                                 (*prc).disconnect();
545                         }
546                         peak_ready_connections.clear();
547
548                         rec_updating = false;
549                         rec_active = false;
550                         last_rec_peak_frame = 0;
551                         
552                         /* remove temp regions */
553
554                         for (list<boost::shared_ptr<Region> >::iterator iter = rec_regions.begin(); iter != rec_regions.end(); ) {
555                                 list<boost::shared_ptr<Region> >::iterator tmp;
556
557                                 tmp = iter;
558                                 ++tmp;
559
560                                 (*iter)->drop_references ();
561
562                                 iter = tmp;
563                         }
564                                 
565                         rec_regions.clear();
566
567                         // cerr << "\tclear " << rec_rects.size() << " rec rects\n";
568
569                         /* transport stopped, clear boxes */
570                         for (vector<RecBoxInfo>::iterator iter=rec_rects.begin(); iter != rec_rects.end(); ++iter) {
571                                 RecBoxInfo &rect = (*iter);
572                                 delete rect.rectangle;
573                         }
574                         
575                         rec_rects.clear();
576                         
577                 }
578         }
579 }
580
581 void
582 AudioStreamView::foreach_crossfadeview (void (CrossfadeView::*pmf)(void))
583 {
584         for (list<CrossfadeView*>::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
585                 ((*i)->*pmf) ();
586         }
587 }
588
589 void
590 AudioStreamView::rec_peak_range_ready (nframes_t start, nframes_t cnt, boost::weak_ptr<Source> weak_src)
591 {
592         ENSURE_GUI_THREAD(bind (mem_fun (*this, &AudioStreamView::rec_peak_range_ready), start, cnt, weak_src));
593         
594         boost::shared_ptr<Source> src (weak_src.lock());
595
596         if (!src) {
597                 return; 
598         }
599
600         // this is called from the peak building thread
601         
602         if (rec_peak_ready_map.size() == 0 || start+cnt > last_rec_peak_frame) {
603                 last_rec_peak_frame = start + cnt;
604         }
605         
606         rec_peak_ready_map[src] = true;
607         
608         if (rec_peak_ready_map.size() == _trackview.get_diskstream()->n_channels()) {
609                 this->update_rec_regions ();
610                 rec_peak_ready_map.clear();
611         }
612 }
613
614 void
615 AudioStreamView::update_rec_regions ()
616 {
617         if (use_rec_regions) {
618
619                 uint32_t n = 0;
620
621                 for (list<boost::shared_ptr<Region> >::iterator iter = rec_regions.begin(); iter != rec_regions.end(); n++) {
622
623                         list<boost::shared_ptr<Region> >::iterator tmp;
624
625                         tmp = iter;
626                         ++tmp;
627
628                         if (!canvas_item_visible (rec_rects[n].rectangle)) {
629                                 /* rect already hidden, this region is done */
630                                 iter = tmp;
631                                 continue;
632                         }
633                         
634                         boost::shared_ptr<AudioRegion> region = boost::dynamic_pointer_cast<AudioRegion>(*iter);
635                         if (!region) {
636                                 continue;
637                         }
638
639                         nframes_t origlen = region->length();
640
641                         if (region == rec_regions.back() && rec_active) {
642
643                                 if (last_rec_peak_frame > region->start()) {
644
645                                         nframes_t nlen = last_rec_peak_frame - region->start();
646
647                                         if (nlen != region->length()) {
648
649                                                 region->freeze ();
650                                                 region->set_position (_trackview.get_diskstream()->get_capture_start_frame(n), this);
651                                                 region->set_length (nlen, this);
652                                                 region->thaw ("updated");
653
654                                                 if (origlen == 1) {
655                                                         /* our special initial length */
656                                                         add_region_view_internal (region, false);
657                                                 }
658
659                                                 /* also update rect */
660                                                 ArdourCanvas::SimpleRect * rect = rec_rects[n].rectangle;
661                                                 gdouble xend = _trackview.editor.frame_to_pixel (region->position() + region->length());
662                                                 rect->property_x2() = xend;
663                                         }
664                                 }
665
666                         } else {
667
668                                 nframes_t nlen = _trackview.get_diskstream()->get_captured_frames(n);
669
670                                 if (nlen != region->length()) {
671
672                                         if (region->source(0)->length() >= region->start() + nlen) {
673
674                                                 region->freeze ();
675                                                 region->set_position (_trackview.get_diskstream()->get_capture_start_frame(n), this);
676                                                 region->set_length (nlen, this);
677                                                 region->thaw ("updated");
678                                                 
679                                                 if (origlen == 1) {
680                                                         /* our special initial length */
681                                                         add_region_view_internal (region, false);
682                                                 }
683                                                 
684                                                 /* also hide rect */
685                                                 ArdourCanvas::Item * rect = rec_rects[n].rectangle;
686                                                 rect->hide();
687
688                                         }
689                                 }
690                         }
691
692                         iter = tmp;
693                 }
694         }
695 }
696
697 void
698 AudioStreamView::show_all_xfades ()
699 {
700         foreach_crossfadeview (&CrossfadeView::show);
701         crossfades_visible = true;
702 }
703
704 void
705 AudioStreamView::hide_all_xfades ()
706 {
707         foreach_crossfadeview (&CrossfadeView::hide);
708         crossfades_visible = false;
709 }
710
711 void
712 AudioStreamView::hide_xfades_involving (AudioRegionView& rv)
713 {
714         for (list<CrossfadeView *>::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
715                 if ((*i)->crossfade.involves (rv.audio_region())) {
716                         (*i)->fake_hide ();
717                 }
718         }
719 }
720
721 void
722 AudioStreamView::reveal_xfades_involving (AudioRegionView& rv)
723 {
724         for (list<CrossfadeView *>::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
725                 if ((*i)->crossfade.involves (rv.audio_region()) && (*i)->visible()) {
726                         (*i)->show ();
727                 }
728         }
729 }
730
731 void
732 AudioStreamView::color_handler (ColorID id, uint32_t val)
733 {
734         switch (id) {
735         case cAudioTrackBase:
736                 if (_trackview.is_track()) {
737                         canvas_rect->property_fill_color_rgba() = val;
738                 } 
739                 break;
740         case cAudioBusBase:
741                 if (!_trackview.is_track()) {
742                         canvas_rect->property_fill_color_rgba() = val;
743                 }
744                 break;
745         case cAudioTrackOutline:
746                 canvas_rect->property_outline_color_rgba() = val;
747                 break;
748
749         default:
750                 break;
751         }
752 }
753