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