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