2006-07-23 08:03:19 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2001, 2006 Paul Davis
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
#include <cassert>
|
2007-05-31 17:37:20 -04:00
|
|
|
#include <utility>
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
#include <gtkmm.h>
|
|
|
|
|
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
|
|
|
|
2010-01-25 15:34:09 -05:00
|
|
|
#include "pbd/stacktrace.h"
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/audioplaylist.h"
|
|
|
|
#include "ardour/audioregion.h"
|
|
|
|
#include "ardour/audiofilesource.h"
|
|
|
|
#include "ardour/audio_diskstream.h"
|
|
|
|
#include "ardour/audio_track.h"
|
|
|
|
#include "ardour/source.h"
|
|
|
|
#include "ardour/region_factory.h"
|
|
|
|
#include "ardour/profile.h"
|
2009-10-30 11:30:22 -04:00
|
|
|
#include "ardour/rc_configuration.h"
|
|
|
|
#include "ardour/session.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
#include "audio_streamview.h"
|
2006-08-01 13:19:38 -04:00
|
|
|
#include "audio_region_view.h"
|
|
|
|
#include "tape_region_view.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
#include "audio_time_axis.h"
|
|
|
|
#include "canvas-waveview.h"
|
|
|
|
#include "canvas-simplerect.h"
|
|
|
|
#include "region_selection.h"
|
|
|
|
#include "selection.h"
|
|
|
|
#include "public_editor.h"
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "crossfade_view.h"
|
|
|
|
#include "rgb_macros.h"
|
|
|
|
#include "gui_thread.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
2007-01-28 12:44:13 -05:00
|
|
|
#include "i18n.h"
|
|
|
|
|
2007-05-31 17:37:20 -04:00
|
|
|
using namespace std;
|
2006-07-23 08:03:19 -04:00
|
|
|
using namespace ARDOUR;
|
|
|
|
using namespace PBD;
|
|
|
|
using namespace Editing;
|
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
AudioStreamView::AudioStreamView (AudioTimeAxisView& tv)
|
2006-07-23 08:03:19 -04:00
|
|
|
: StreamView (tv)
|
|
|
|
{
|
|
|
|
crossfades_visible = true;
|
2008-09-29 16:35:44 -04:00
|
|
|
color_handler ();
|
2006-07-23 08:03:19 -04:00
|
|
|
_amplitude_above_axis = 1.0;
|
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
use_rec_regions = tv.editor().show_waveforms_recording ();
|
2009-06-10 17:58:25 -04:00
|
|
|
|
2009-12-21 13:23:07 -05:00
|
|
|
Config->ParameterChanged.connect (*this, ui_bind (&AudioStreamView::parameter_changed, this, _1), gui_context());
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
AudioStreamView::~AudioStreamView ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
int
|
2006-07-23 08:03:19 -04:00
|
|
|
AudioStreamView::set_samples_per_unit (gdouble spp)
|
|
|
|
{
|
|
|
|
StreamView::set_samples_per_unit(spp);
|
|
|
|
|
|
|
|
for (CrossfadeViewList::iterator xi = crossfade_views.begin(); xi != crossfade_views.end(); ++xi) {
|
2009-08-23 15:42:01 -04:00
|
|
|
xi->second->set_samples_per_unit (spp);
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
int
|
2006-07-23 08:03:19 -04:00
|
|
|
AudioStreamView::set_amplitude_above_axis (gdouble app)
|
|
|
|
{
|
|
|
|
RegionViewList::iterator i;
|
|
|
|
|
|
|
|
if (app < 1.0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
_amplitude_above_axis = app;
|
|
|
|
|
|
|
|
for (i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
|
|
|
|
if (arv)
|
|
|
|
arv->set_amplitude_above_axis (app);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-05-31 17:37:20 -04:00
|
|
|
RegionView*
|
2009-06-08 15:28:51 -04:00
|
|
|
AudioStreamView::create_region_view (boost::shared_ptr<Region> r, bool wait_for_waves, bool recording)
|
2006-07-23 08:03:19 -04:00
|
|
|
{
|
2007-01-28 12:44:13 -05:00
|
|
|
AudioRegionView *region_view = 0;
|
2006-08-29 17:21:48 -04:00
|
|
|
boost::shared_ptr<AudioRegion> region = boost::dynamic_pointer_cast<AudioRegion> (r);
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
if (region == 0) {
|
2009-06-08 15:28:51 -04:00
|
|
|
return 0;
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
switch (_trackview.audio_track()->mode()) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-04-20 17:02:46 -04:00
|
|
|
case NonLayered:
|
2006-07-23 08:03:19 -04:00
|
|
|
case Normal:
|
2008-09-10 11:03:30 -04:00
|
|
|
if (recording) {
|
2009-10-14 12:10:01 -04:00
|
|
|
region_view = new AudioRegionView (canvas_group, _trackview, region,
|
2009-02-15 14:44:27 -05:00
|
|
|
_samples_per_unit, region_color, recording, TimeAxisViewItem::Visibility(
|
|
|
|
TimeAxisViewItem::ShowFrame | TimeAxisViewItem::HideFrameRight));
|
2008-09-10 11:03:30 -04:00
|
|
|
} else {
|
2009-10-14 12:10:01 -04:00
|
|
|
region_view = new AudioRegionView (canvas_group, _trackview, region,
|
2009-02-15 14:44:27 -05:00
|
|
|
_samples_per_unit, region_color);
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
2006-07-23 08:03:19 -04:00
|
|
|
break;
|
|
|
|
case Destructive:
|
2009-10-14 12:10:01 -04:00
|
|
|
region_view = new TapeAudioRegionView (canvas_group, _trackview, region,
|
2009-02-15 14:44:27 -05:00
|
|
|
_samples_per_unit, region_color);
|
2006-07-23 08:03:19 -04:00
|
|
|
break;
|
2007-01-28 12:44:13 -05:00
|
|
|
default:
|
|
|
|
fatal << string_compose (_("programming error: %1"), "illegal track mode in ::add_region_view_internal") << endmsg;
|
|
|
|
/*NOTREACHED*/
|
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
region_view->init (region_color, wait_for_waves);
|
|
|
|
region_view->set_amplitude_above_axis(_amplitude_above_axis);
|
2009-01-01 12:45:09 -05:00
|
|
|
region_view->set_height (child_height ());
|
2007-01-09 18:24:54 -05:00
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
/* if its the special single-sample length that we use for rec-regions, make it
|
|
|
|
insensitive to events
|
2007-04-12 19:20:37 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (region->length() == 1) {
|
|
|
|
region_view->set_sensitive (false);
|
|
|
|
}
|
|
|
|
|
2009-06-10 17:58:25 -04:00
|
|
|
region_view->set_waveform_scale (Config->get_waveform_scale ());
|
|
|
|
region_view->set_waveform_shape (Config->get_waveform_shape ());
|
|
|
|
region_view->set_waveform_visible (Config->get_show_waveforms ());
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
return region_view;
|
2009-06-08 15:28:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
RegionView*
|
|
|
|
AudioStreamView::add_region_view_internal (boost::shared_ptr<Region> r, bool wait_for_waves, bool recording)
|
|
|
|
{
|
|
|
|
RegionView *region_view = create_region_view (r, wait_for_waves, recording);
|
|
|
|
if (region_view == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if(!recording){
|
|
|
|
// for (list<RegionView *>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
// if ((*i)->region() == r) {
|
|
|
|
// cerr << "audio_streamview in add_region_view_internal region found" << endl;
|
|
|
|
/* great. we already have a AudioRegionView for this Region. use it again. */
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-08 15:28:51 -04:00
|
|
|
// (*i)->set_valid (true);
|
|
|
|
|
|
|
|
// this might not be necessary
|
|
|
|
// AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
|
|
|
|
|
|
|
|
// if (arv) {
|
|
|
|
// arv->set_waveform_scale (_waveform_scale);
|
|
|
|
// arv->set_waveform_shape (_waveform_shape);
|
|
|
|
// }
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-08 15:28:51 -04:00
|
|
|
// return NULL;
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
region_views.push_front (region_view);
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
/* catch region going away */
|
|
|
|
|
2009-12-22 15:21:43 -05:00
|
|
|
r->DropReferences.connect (*this, boost::bind (&AudioStreamView::remove_region_view, this, boost::weak_ptr<Region> (r)), gui_context());
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
RegionViewAdded (region_view);
|
2007-05-31 17:37:20 -04:00
|
|
|
|
|
|
|
return region_view;
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-10-21 15:01:50 -04:00
|
|
|
AudioStreamView::remove_region_view (boost::weak_ptr<Region> weak_r)
|
2006-07-23 08:03:19 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
ENSURE_GUI_THREAD (*this, &AudioStreamView::remove_region_view, weak_r);
|
2009-12-11 18:29:48 -05:00
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
boost::shared_ptr<Region> r (weak_r.lock());
|
|
|
|
|
|
|
|
if (!r) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
if (!_trackview.session()->deletion_in_progress()) {
|
2006-10-21 15:01:50 -04:00
|
|
|
|
2009-08-23 15:42:01 -04:00
|
|
|
for (CrossfadeViewList::iterator i = crossfade_views.begin(); i != crossfade_views.end();) {
|
|
|
|
CrossfadeViewList::iterator tmp;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
tmp = i;
|
|
|
|
++tmp;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
boost::shared_ptr<AudioRegion> ar = boost::dynamic_pointer_cast<AudioRegion>(r);
|
2009-08-23 15:42:01 -04:00
|
|
|
if (ar && i->second->crossfade->involves (ar)) {
|
|
|
|
delete i->second;
|
2006-10-21 15:01:50 -04:00
|
|
|
crossfade_views.erase (i);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
i = tmp;
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
}
|
2006-07-29 23:25:38 -04:00
|
|
|
|
|
|
|
StreamView::remove_region_view(r);
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::undisplay_diskstream ()
|
|
|
|
{
|
|
|
|
StreamView::undisplay_diskstream();
|
|
|
|
|
|
|
|
for (CrossfadeViewList::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
|
2009-08-23 15:42:01 -04:00
|
|
|
delete i->second;
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
crossfade_views.clear ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-01-25 15:34:09 -05:00
|
|
|
AudioStreamView::playlist_layered (boost::weak_ptr<Diskstream> wds)
|
2006-07-23 08:03:19 -04:00
|
|
|
{
|
2010-01-25 15:34:09 -05:00
|
|
|
boost::shared_ptr<Diskstream> ds (wds.lock());
|
|
|
|
|
|
|
|
if (!ds) {
|
|
|
|
return;
|
2007-05-17 06:41:14 -04:00
|
|
|
}
|
|
|
|
|
2010-01-25 15:34:09 -05:00
|
|
|
StreamView::playlist_layered (wds);
|
2007-05-17 06:41:14 -04:00
|
|
|
|
2006-09-18 23:29:16 -04:00
|
|
|
/* make sure xfades are on top and all the regionviews are stacked correctly. */
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-08-23 15:42:01 -04:00
|
|
|
for (CrossfadeViewList::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
|
|
|
|
i->second->get_canvas_group()->raise_to_top();
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-16 00:13:05 -05:00
|
|
|
void
|
2010-01-25 15:34:09 -05:00
|
|
|
AudioStreamView::playlist_switched (boost::weak_ptr<Diskstream> wds)
|
2009-02-16 00:13:05 -05:00
|
|
|
{
|
2010-01-25 15:34:09 -05:00
|
|
|
boost::shared_ptr<Diskstream> ds (wds.lock());
|
2009-02-16 00:13:05 -05:00
|
|
|
|
2010-01-25 15:34:09 -05:00
|
|
|
if (!ds) {
|
|
|
|
return;
|
|
|
|
}
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-12-19 15:26:31 -05:00
|
|
|
playlist_connections.drop_connections ();
|
|
|
|
|
2010-01-25 15:34:09 -05:00
|
|
|
StreamView::playlist_switched (ds);
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2007-01-09 18:24:54 -05:00
|
|
|
boost::shared_ptr<AudioPlaylist> apl = boost::dynamic_pointer_cast<AudioPlaylist>(ds->playlist());
|
2009-12-17 13:24:23 -05:00
|
|
|
|
2009-02-16 00:13:05 -05:00
|
|
|
if (apl) {
|
2009-12-21 13:23:07 -05:00
|
|
|
apl->NewCrossfade.connect (playlist_connections, ui_bind (&AudioStreamView::add_crossfade, this, _1), gui_context());
|
2009-02-16 00:13:05 -05:00
|
|
|
}
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
2007-04-29 13:23:11 -04:00
|
|
|
void
|
2010-01-25 15:34:09 -05:00
|
|
|
AudioStreamView::add_crossfade (boost::weak_ptr<Crossfade> wc)
|
2007-04-29 13:23:11 -04:00
|
|
|
{
|
2010-01-25 15:34:09 -05:00
|
|
|
boost::shared_ptr<Crossfade> crossfade (wc.lock());
|
2007-04-29 13:23:11 -04:00
|
|
|
|
2010-01-25 15:34:09 -05:00
|
|
|
if (!crossfade) {
|
2007-04-29 13:23:11 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
AudioRegionView* lview = 0;
|
|
|
|
AudioRegionView* rview = 0;
|
2007-04-29 13:23:11 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
/* first see if we already have a CrossfadeView for this Crossfade */
|
|
|
|
|
2009-08-23 15:42:01 -04:00
|
|
|
CrossfadeViewList::iterator i = crossfade_views.find (crossfade);
|
|
|
|
if (i != crossfade_views.end()) {
|
2009-08-25 21:49:08 -04:00
|
|
|
if (!crossfades_visible) {
|
2009-08-23 15:42:01 -04:00
|
|
|
i->second->hide();
|
|
|
|
} else {
|
|
|
|
i->second->show ();
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
2009-08-23 15:42:01 -04:00
|
|
|
i->second->set_valid (true);
|
|
|
|
return;
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* create a new one */
|
|
|
|
|
|
|
|
for (list<RegionView *>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
AudioRegionView* arv = dynamic_cast<AudioRegionView*>(*i);
|
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
if (!lview && arv && (arv->region() == crossfade->out())) {
|
2006-07-23 08:03:19 -04:00
|
|
|
lview = arv;
|
|
|
|
}
|
2006-08-29 17:21:48 -04:00
|
|
|
if (!rview && arv && (arv->region() == crossfade->in())) {
|
2006-07-23 08:03:19 -04:00
|
|
|
rview = arv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
CrossfadeView *cv = new CrossfadeView (_trackview.canvas_display (),
|
2006-07-23 08:03:19 -04:00
|
|
|
_trackview,
|
2007-01-11 14:50:49 -05:00
|
|
|
crossfade,
|
2006-07-23 08:03:19 -04:00
|
|
|
_samples_per_unit,
|
|
|
|
region_color,
|
|
|
|
*lview, *rview);
|
use filechooser widget in export dialog, selected files set format combos, hide progress bar until use in export dialog, speed up 'separate regions in range' operation on larger sessions, ruler scale now calculated separately to mark generation, fix for non-stacked layering regression, try not to generate 'buried' crossfades, use playlist->freeze() to speed up copying/moving regions on large playlists (not done for undo), width dependent items now reset on regionview init, get rid of jack_port_ensure_monitor check, remove audiosourse _length (only source has a length.. i think), make overlapend differ to overlapexternal where start points coincide.
git-svn-id: svn://localhost/ardour2/trunk@2576 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-10-26 09:32:24 -04:00
|
|
|
cv->set_valid (true);
|
2009-12-21 13:23:07 -05:00
|
|
|
crossfade->Invalidated.connect (*this, ui_bind (&AudioStreamView::remove_crossfade, this, _1), gui_context());
|
2009-08-23 15:42:01 -04:00
|
|
|
crossfade_views[cv->crossfade] = cv;
|
2009-12-17 13:24:23 -05:00
|
|
|
if (!_trackview.session()->config.get_xfades_visible() || !crossfades_visible) {
|
2006-07-23 08:03:19 -04:00
|
|
|
cv->hide ();
|
|
|
|
}
|
2009-08-25 21:49:08 -04:00
|
|
|
|
|
|
|
update_content_height (cv);
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-05-21 18:12:06 -04:00
|
|
|
AudioStreamView::remove_crossfade (boost::shared_ptr<Region> r)
|
2006-07-23 08:03:19 -04:00
|
|
|
{
|
2009-12-11 18:29:48 -05:00
|
|
|
ENSURE_GUI_THREAD (*this, &AudioStreamView::remove_crossfade, r)
|
2007-05-21 18:12:06 -04:00
|
|
|
|
|
|
|
boost::shared_ptr<Crossfade> xfade = boost::dynamic_pointer_cast<Crossfade> (r);
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-08-23 15:42:01 -04:00
|
|
|
for (CrossfadeViewList::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
|
|
|
|
if (i->second->crossfade == xfade) {
|
|
|
|
delete i->second;
|
2006-07-23 08:03:19 -04:00
|
|
|
crossfade_views.erase (i);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::redisplay_diskstream ()
|
|
|
|
{
|
2009-02-15 15:31:05 -05:00
|
|
|
list<RegionView *>::iterator i;
|
2009-08-23 15:42:01 -04:00
|
|
|
CrossfadeViewList::iterator xi, tmpx;
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-02-15 15:31:05 -05:00
|
|
|
// Flag region views as invalid and disable drawing
|
2006-07-23 08:03:19 -04:00
|
|
|
for (i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
(*i)->set_valid (false);
|
2009-02-15 15:31:05 -05:00
|
|
|
(*i)->enable_display (false);
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
2009-02-15 15:31:05 -05:00
|
|
|
// Flag crossfade views as invalid
|
2006-07-23 08:03:19 -04:00
|
|
|
for (xi = crossfade_views.begin(); xi != crossfade_views.end(); ++xi) {
|
2009-08-23 15:42:01 -04:00
|
|
|
xi->second->set_valid (false);
|
2009-08-25 21:49:08 -04:00
|
|
|
if (xi->second->visible()) {
|
2009-08-23 15:42:01 -04:00
|
|
|
xi->second->show ();
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-15 15:31:05 -05:00
|
|
|
// Add and display region and crossfade views, and flag them as valid
|
2009-05-13 17:34:09 -04:00
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
if (_trackview.is_audio_track()) {
|
|
|
|
_trackview.get_diskstream()->playlist()->foreach_region(
|
2009-06-08 15:28:51 -04:00
|
|
|
sigc::hide_return (sigc::mem_fun (*this, &StreamView::add_region_view))
|
2009-06-02 20:23:34 -04:00
|
|
|
);
|
2006-10-21 18:59:29 -04:00
|
|
|
|
2009-02-15 14:44:27 -05:00
|
|
|
boost::shared_ptr<AudioPlaylist> apl = boost::dynamic_pointer_cast<AudioPlaylist>(
|
2009-07-09 13:58:13 -04:00
|
|
|
_trackview.get_diskstream()->playlist()
|
2009-06-02 20:23:34 -04:00
|
|
|
);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-02 20:23:34 -04:00
|
|
|
if (apl) {
|
|
|
|
apl->foreach_crossfade (sigc::mem_fun (*this, &AudioStreamView::add_crossfade));
|
|
|
|
}
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-02-15 15:31:05 -05:00
|
|
|
// Remove invalid crossfade views
|
2006-07-23 08:03:19 -04:00
|
|
|
for (xi = crossfade_views.begin(); xi != crossfade_views.end();) {
|
|
|
|
tmpx = xi;
|
|
|
|
tmpx++;
|
|
|
|
|
2009-08-23 15:42:01 -04:00
|
|
|
if (!xi->second->valid()) {
|
|
|
|
delete xi->second;
|
2006-07-23 08:03:19 -04:00
|
|
|
crossfade_views.erase (xi);
|
|
|
|
}
|
|
|
|
|
|
|
|
xi = tmpx;
|
|
|
|
}
|
2009-02-15 15:31:05 -05:00
|
|
|
|
|
|
|
// Stack regions by layer, and remove invalid regions
|
|
|
|
layer_regions();
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::set_show_waveforms (bool yn)
|
|
|
|
{
|
|
|
|
for (list<RegionView *>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
|
2008-03-17 16:54:03 -04:00
|
|
|
if (arv) {
|
2006-07-23 08:03:19 -04:00
|
|
|
arv->set_waveform_visible (yn);
|
2008-03-17 16:54:03 -04:00
|
|
|
}
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::set_waveform_shape (WaveformShape shape)
|
|
|
|
{
|
|
|
|
for (RegionViewList::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
|
|
|
|
if (arv)
|
|
|
|
arv->set_waveform_shape (shape);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2007-01-09 18:24:54 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::set_waveform_scale (WaveformScale scale)
|
|
|
|
{
|
|
|
|
for (RegionViewList::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
|
2009-06-10 17:58:25 -04:00
|
|
|
if (arv) {
|
2007-01-09 18:24:54 -05:00
|
|
|
arv->set_waveform_scale (scale);
|
2009-06-10 17:58:25 -04:00
|
|
|
}
|
2007-01-09 18:24:54 -05:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2007-01-09 18:24:54 -05:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
void
|
|
|
|
AudioStreamView::setup_rec_box ()
|
|
|
|
{
|
2009-07-09 13:58:13 -04:00
|
|
|
//cerr << _trackview.name() << " streamview SRB region_views.size() = " << region_views.size() << endl;
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
if (_trackview.session()->transport_rolling()) {
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
// cerr << "\trolling\n";
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
if (!rec_active &&
|
2009-12-17 13:24:23 -05:00
|
|
|
_trackview.session()->record_status() == Session::Recording &&
|
2009-07-09 13:58:13 -04:00
|
|
|
_trackview.get_diskstream()->record_enabled()) {
|
|
|
|
if (_trackview.audio_track()->mode() == Normal && use_rec_regions && rec_regions.size() == rec_rects.size()) {
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
/* add a new region, but don't bother if they set use_rec_regions mid-record */
|
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
SourceList sources;
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
rec_data_ready_connections.drop_connections ();
|
2009-10-21 12:26:18 -04:00
|
|
|
boost::shared_ptr<AudioDiskstream> ads = _trackview.audio_track()->audio_diskstream();
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2007-05-09 23:50:17 -04:00
|
|
|
for (uint32_t n=0; n < ads->n_channels().n_audio(); ++n) {
|
2009-10-21 12:26:18 -04:00
|
|
|
boost::shared_ptr<AudioFileSource> src = ads->write_source (n);
|
2006-07-23 08:03:19 -04:00
|
|
|
if (src) {
|
|
|
|
sources.push_back (src);
|
2009-12-21 13:23:07 -05:00
|
|
|
src->PeakRangeReady.connect (rec_data_ready_connections,
|
|
|
|
ui_bind (&AudioStreamView::rec_peak_range_ready, this, _1, _2, boost::weak_ptr<Source>(src)),
|
|
|
|
gui_context());
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// handle multi
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
nframes_t start = 0;
|
2006-07-23 08:03:19 -04:00
|
|
|
if (rec_regions.size() > 0) {
|
2009-10-21 12:26:18 -04:00
|
|
|
start = rec_regions.back().first->start()
|
|
|
|
+ _trackview.get_diskstream()->get_captured_frames(rec_regions.size()-1);
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-02-18 08:59:49 -05:00
|
|
|
PropertyList plist;
|
|
|
|
|
|
|
|
plist.add (Properties::start, start);
|
|
|
|
plist.add (Properties::length, 1);
|
|
|
|
plist.add (Properties::name, string());
|
|
|
|
plist.add (Properties::layer, 0);
|
|
|
|
|
|
|
|
boost::shared_ptr<AudioRegion> region (
|
|
|
|
boost::dynamic_pointer_cast<AudioRegion>(RegionFactory::create (sources, plist, false)));
|
|
|
|
|
2006-09-18 23:29:16 -04:00
|
|
|
assert(region);
|
2009-06-16 10:58:33 -04:00
|
|
|
region->block_property_changes ();
|
2009-12-17 13:24:23 -05:00
|
|
|
region->set_position (_trackview.session()->transport_frame(), this);
|
2007-05-31 17:37:20 -04:00
|
|
|
rec_regions.push_back (make_pair(region, (RegionView*)0));
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
/* start a new rec box */
|
|
|
|
|
2007-06-15 18:05:07 -04:00
|
|
|
boost::shared_ptr<AudioTrack> at;
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
at = _trackview.audio_track(); /* we know what it is already */
|
2006-08-24 03:37:17 -04:00
|
|
|
boost::shared_ptr<AudioDiskstream> ds = at->audio_diskstream();
|
2006-10-21 15:01:50 -04:00
|
|
|
nframes_t frame_pos = ds->current_capture_start ();
|
2009-07-09 13:58:13 -04:00
|
|
|
gdouble xstart = _trackview.editor().frame_to_pixel (frame_pos);
|
2006-07-23 08:03:19 -04:00
|
|
|
gdouble xend;
|
|
|
|
uint32_t fill_color;
|
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
switch (_trackview.audio_track()->mode()) {
|
2006-07-23 08:03:19 -04:00
|
|
|
case Normal:
|
2009-04-20 17:02:46 -04:00
|
|
|
case NonLayered:
|
2006-07-23 08:03:19 -04:00
|
|
|
xend = xstart;
|
2007-06-29 13:13:09 -04:00
|
|
|
fill_color = ARDOUR_UI::config()->canvasvar_RecordingRect.get();
|
2006-07-23 08:03:19 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Destructive:
|
|
|
|
xend = xstart + 2;
|
2007-06-29 13:13:09 -04:00
|
|
|
fill_color = ARDOUR_UI::config()->canvasvar_RecordingRect.get();
|
2006-07-23 08:03:19 -04:00
|
|
|
/* make the recording rect translucent to allow
|
|
|
|
the user to see the peak data coming in, etc.
|
|
|
|
*/
|
|
|
|
fill_color = UINT_RGBA_CHANGE_A (fill_color, 120);
|
|
|
|
break;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
ArdourCanvas::SimpleRect * rec_rect = new Gnome::Canvas::SimpleRect (*canvas_group);
|
|
|
|
rec_rect->property_x1() = xstart;
|
|
|
|
rec_rect->property_y1() = 1.0;
|
|
|
|
rec_rect->property_x2() = xend;
|
2009-01-01 12:45:09 -05:00
|
|
|
rec_rect->property_y2() = child_height ();
|
2008-09-10 11:03:30 -04:00
|
|
|
rec_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TimeAxisFrame.get();
|
|
|
|
rec_rect->property_outline_what() = 0x1 | 0x2 | 0x4 | 0x8;
|
2006-07-23 08:03:19 -04:00
|
|
|
rec_rect->property_fill_color_rgba() = fill_color;
|
2007-05-31 17:37:20 -04:00
|
|
|
rec_rect->lower_to_bottom();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
RecBoxInfo recbox;
|
|
|
|
recbox.rectangle = rec_rect;
|
2009-12-17 13:24:23 -05:00
|
|
|
recbox.start = _trackview.session()->transport_frame();
|
2006-07-23 08:03:19 -04:00
|
|
|
recbox.length = 0;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
rec_rects.push_back (recbox);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
screen_update_connection.disconnect();
|
2009-10-21 12:26:18 -04:00
|
|
|
screen_update_connection = ARDOUR_UI::instance()->SuperRapidScreenUpdate.connect (
|
2009-12-11 18:29:48 -05:00
|
|
|
sigc::mem_fun (*this, &AudioStreamView::update_rec_box));
|
2006-07-23 08:03:19 -04:00
|
|
|
rec_updating = true;
|
|
|
|
rec_active = true;
|
|
|
|
|
|
|
|
} else if (rec_active &&
|
2009-12-17 13:24:23 -05:00
|
|
|
(_trackview.session()->record_status() != Session::Recording ||
|
2009-07-09 13:58:13 -04:00
|
|
|
!_trackview.get_diskstream()->record_enabled())) {
|
2006-07-23 08:03:19 -04:00
|
|
|
screen_update_connection.disconnect();
|
|
|
|
rec_active = false;
|
|
|
|
rec_updating = false;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
} else {
|
|
|
|
|
|
|
|
// cerr << "\tNOT rolling, rec_rects = " << rec_rects.size() << " rec_regions = " << rec_regions.size() << endl;
|
|
|
|
|
|
|
|
if (!rec_rects.empty() || !rec_regions.empty()) {
|
|
|
|
|
|
|
|
/* disconnect rapid update */
|
|
|
|
screen_update_connection.disconnect();
|
2009-12-17 13:24:23 -05:00
|
|
|
rec_data_ready_connections.drop_connections ();
|
2006-07-23 08:03:19 -04:00
|
|
|
rec_updating = false;
|
|
|
|
rec_active = false;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
/* remove temp regions */
|
2006-10-21 15:01:50 -04:00
|
|
|
|
2007-05-31 17:37:20 -04:00
|
|
|
for (list<pair<boost::shared_ptr<Region>,RegionView*> >::iterator iter = rec_regions.begin(); iter != rec_regions.end(); ) {
|
|
|
|
list<pair<boost::shared_ptr<Region>,RegionView*> >::iterator tmp;
|
2006-10-21 15:01:50 -04:00
|
|
|
|
2006-09-18 23:29:16 -04:00
|
|
|
tmp = iter;
|
|
|
|
++tmp;
|
2006-10-21 15:01:50 -04:00
|
|
|
|
2007-05-31 17:37:20 -04:00
|
|
|
(*iter).first->drop_references ();
|
2006-10-21 15:01:50 -04:00
|
|
|
|
2006-09-18 23:29:16 -04:00
|
|
|
iter = tmp;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
rec_regions.clear();
|
|
|
|
|
|
|
|
// cerr << "\tclear " << rec_rects.size() << " rec rects\n";
|
|
|
|
|
|
|
|
/* transport stopped, clear boxes */
|
|
|
|
for (vector<RecBoxInfo>::iterator iter=rec_rects.begin(); iter != rec_rects.end(); ++iter) {
|
|
|
|
RecBoxInfo &rect = (*iter);
|
|
|
|
delete rect.rectangle;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
rec_rects.clear();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::foreach_crossfadeview (void (CrossfadeView::*pmf)(void))
|
|
|
|
{
|
2009-08-23 15:42:01 -04:00
|
|
|
for (CrossfadeViewList::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
|
|
|
|
(i->second->*pmf) ();
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-10-21 15:01:50 -04:00
|
|
|
AudioStreamView::rec_peak_range_ready (nframes_t start, nframes_t cnt, boost::weak_ptr<Source> weak_src)
|
2006-07-23 08:03:19 -04:00
|
|
|
{
|
2009-12-11 18:29:48 -05:00
|
|
|
ENSURE_GUI_THREAD (*this, &AudioStreamView::rec_peak_range_ready, start, cnt, weak_src)
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
boost::shared_ptr<Source> src (weak_src.lock());
|
|
|
|
|
|
|
|
if (!src) {
|
2009-10-14 12:10:01 -04:00
|
|
|
return;
|
2006-10-21 15:01:50 -04:00
|
|
|
}
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
// this is called from the peak building thread
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-10-21 12:26:18 -04:00
|
|
|
if (rec_data_ready_map.size() == 0 || start + cnt > last_rec_data_frame) {
|
2006-08-14 04:44:14 -04:00
|
|
|
last_rec_data_frame = start + cnt;
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-14 04:44:14 -04:00
|
|
|
rec_data_ready_map[src] = true;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
if (rec_data_ready_map.size() == _trackview.get_diskstream()->n_channels().n_audio()) {
|
2006-07-23 08:03:19 -04:00
|
|
|
this->update_rec_regions ();
|
2006-08-14 04:44:14 -04:00
|
|
|
rec_data_ready_map.clear();
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::update_rec_regions ()
|
|
|
|
{
|
|
|
|
if (use_rec_regions) {
|
|
|
|
uint32_t n = 0;
|
|
|
|
|
2009-10-21 12:26:18 -04:00
|
|
|
for (list<pair<boost::shared_ptr<Region>,RegionView*> >::iterator iter = rec_regions.begin();
|
|
|
|
iter != rec_regions.end(); n++) {
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-10-21 12:26:18 -04:00
|
|
|
list<pair<boost::shared_ptr<Region>,RegionView*> >::iterator tmp = iter;
|
2006-07-23 08:03:19 -04:00
|
|
|
++tmp;
|
|
|
|
|
|
|
|
if (!canvas_item_visible (rec_rects[n].rectangle)) {
|
|
|
|
/* rect already hidden, this region is done */
|
|
|
|
iter = tmp;
|
|
|
|
continue;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-05-31 17:37:20 -04:00
|
|
|
boost::shared_ptr<AudioRegion> region = boost::dynamic_pointer_cast<AudioRegion>(iter->first);
|
2006-09-18 23:29:16 -04:00
|
|
|
if (!region) {
|
2009-10-21 12:26:18 -04:00
|
|
|
iter = tmp;
|
2006-09-18 23:29:16 -04:00
|
|
|
continue;
|
|
|
|
}
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
nframes_t origlen = region->length();
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2007-05-31 17:37:20 -04:00
|
|
|
if (region == rec_regions.back().first && rec_active) {
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2006-08-14 04:44:14 -04:00
|
|
|
if (last_rec_data_frame > region->start()) {
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
nframes_t nlen = last_rec_data_frame - region->start();
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
if (nlen != region->length()) {
|
|
|
|
|
2010-03-02 13:05:26 -05:00
|
|
|
region->suspend_property_changes ();
|
2009-07-09 13:58:13 -04:00
|
|
|
region->set_position (_trackview.get_diskstream()->get_capture_start_frame(n), this);
|
2006-07-23 08:03:19 -04:00
|
|
|
region->set_length (nlen, this);
|
2010-03-02 13:05:26 -05:00
|
|
|
region->resume_property_changes ();
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
if (origlen == 1) {
|
|
|
|
/* our special initial length */
|
2008-09-10 11:03:30 -04:00
|
|
|
add_region_view_internal (region, false, true);
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* also update rect */
|
|
|
|
ArdourCanvas::SimpleRect * rect = rec_rects[n].rectangle;
|
2009-07-09 13:58:13 -04:00
|
|
|
gdouble xend = _trackview.editor().frame_to_pixel (region->position() + region->length());
|
2006-07-23 08:03:19 -04:00
|
|
|
rect->property_x2() = xend;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
nframes_t nlen = _trackview.get_diskstream()->get_captured_frames(n);
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
if (nlen != region->length()) {
|
|
|
|
|
2009-02-19 19:30:42 -05:00
|
|
|
if (region->source_length(0) >= region->start() + nlen) {
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2010-03-02 13:05:26 -05:00
|
|
|
region->suspend_property_changes ();
|
2009-07-09 13:58:13 -04:00
|
|
|
region->set_position (_trackview.get_diskstream()->get_capture_start_frame(n), this);
|
2006-07-23 08:03:19 -04:00
|
|
|
region->set_length (nlen, this);
|
2010-03-02 13:05:26 -05:00
|
|
|
region->resume_property_changes ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
if (origlen == 1) {
|
|
|
|
/* our special initial length */
|
2008-09-10 11:03:30 -04:00
|
|
|
add_region_view_internal (region, false, true);
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
/* also hide rect */
|
|
|
|
ArdourCanvas::Item * rect = rec_rects[n].rectangle;
|
|
|
|
rect->hide();
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
iter = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-09 17:55:05 -04:00
|
|
|
void
|
|
|
|
AudioStreamView::show_all_fades ()
|
|
|
|
{
|
|
|
|
for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
|
|
|
|
if (arv) {
|
|
|
|
arv->set_fade_visibility (true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::hide_all_fades ()
|
|
|
|
{
|
|
|
|
for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
AudioRegionView* const arv = dynamic_cast<AudioRegionView*>(*i);
|
|
|
|
if (arv) {
|
|
|
|
arv->set_fade_visibility (false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
void
|
|
|
|
AudioStreamView::show_all_xfades ()
|
|
|
|
{
|
|
|
|
foreach_crossfadeview (&CrossfadeView::show);
|
|
|
|
crossfades_visible = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::hide_all_xfades ()
|
|
|
|
{
|
|
|
|
foreach_crossfadeview (&CrossfadeView::hide);
|
|
|
|
crossfades_visible = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::hide_xfades_involving (AudioRegionView& rv)
|
|
|
|
{
|
2009-08-23 15:42:01 -04:00
|
|
|
for (CrossfadeViewList::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
|
|
|
|
if (i->second->crossfade->involves (rv.audio_region())) {
|
|
|
|
i->second->fake_hide ();
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::reveal_xfades_involving (AudioRegionView& rv)
|
|
|
|
{
|
2009-08-23 15:42:01 -04:00
|
|
|
for (CrossfadeViewList::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
|
2009-08-25 21:49:08 -04:00
|
|
|
if (i->second->crossfade->involves (rv.audio_region()) && i->second->visible()) {
|
2009-08-23 15:42:01 -04:00
|
|
|
i->second->show ();
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-06-15 18:08:27 -04:00
|
|
|
AudioStreamView::color_handler ()
|
2006-07-23 08:03:19 -04:00
|
|
|
{
|
2007-06-15 18:08:27 -04:00
|
|
|
//case cAudioTrackBase:
|
2009-07-09 13:58:13 -04:00
|
|
|
if (_trackview.is_track()) {
|
2007-06-29 13:13:09 -04:00
|
|
|
canvas_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_AudioTrackBase.get();
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2007-06-15 18:08:27 -04:00
|
|
|
//case cAudioBusBase:
|
2009-07-09 13:58:13 -04:00
|
|
|
if (!_trackview.is_track()) {
|
|
|
|
if (Profile->get_sae() && _trackview.route()->is_master()) {
|
2008-12-12 09:43:24 -05:00
|
|
|
canvas_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_AudioMasterBusBase.get();
|
|
|
|
} else {
|
|
|
|
canvas_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_AudioBusBase.get();
|
|
|
|
}
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
}
|
2006-08-01 20:22:16 -04:00
|
|
|
|
2007-05-17 06:41:14 -04:00
|
|
|
void
|
2008-09-19 15:32:10 -04:00
|
|
|
AudioStreamView::update_contents_height ()
|
2007-05-17 06:41:14 -04:00
|
|
|
{
|
2008-09-19 15:32:10 -04:00
|
|
|
StreamView::update_contents_height ();
|
2009-08-25 21:49:08 -04:00
|
|
|
|
2007-05-17 06:41:14 -04:00
|
|
|
for (CrossfadeViewList::iterator i = crossfade_views.begin(); i != crossfade_views.end(); ++i) {
|
2009-08-25 21:49:08 -04:00
|
|
|
update_content_height (i->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::update_content_height (CrossfadeView* cv)
|
|
|
|
{
|
|
|
|
cv->show ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-08-25 21:49:08 -04:00
|
|
|
if (_layer_display == Overlaid) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-08-25 21:49:08 -04:00
|
|
|
cv->set_y (0);
|
|
|
|
cv->set_height (height);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-08-25 21:49:08 -04:00
|
|
|
} else {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-08-25 21:49:08 -04:00
|
|
|
layer_t const inl = cv->crossfade->in()->layer ();
|
|
|
|
layer_t const outl = cv->crossfade->out()->layer ();
|
|
|
|
|
|
|
|
layer_t const high = max (inl, outl);
|
|
|
|
layer_t const low = min (inl, outl);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-08-25 21:49:08 -04:00
|
|
|
const double h = child_height ();
|
|
|
|
|
|
|
|
cv->set_y ((_layers - high - 1) * h);
|
|
|
|
cv->set_height ((high - low + 1) * h);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-05-17 06:41:14 -04:00
|
|
|
}
|
|
|
|
}
|
2009-06-10 17:58:25 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
AudioStreamView::parameter_changed (string const & p)
|
|
|
|
{
|
|
|
|
if (p == "show-waveforms") {
|
|
|
|
set_show_waveforms (Config->get_show_waveforms ());
|
|
|
|
} else if (p == "waveform-scale") {
|
|
|
|
set_waveform_scale (Config->get_waveform_scale ());
|
|
|
|
} else if (p == "waveform-shape") {
|
|
|
|
set_waveform_shape (Config->get_waveform_shape ());
|
|
|
|
}
|
|
|
|
}
|