2006-02-12 15:20:01 -05:00
|
|
|
/*
|
|
|
|
Copyright (C) 2006 Paul Davis
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include <gtkmm.h>
|
|
|
|
|
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
|
|
|
|
|
|
|
#include <ardour/playlist.h>
|
|
|
|
#include <ardour/audioregion.h>
|
2006-06-14 17:17:32 -04:00
|
|
|
#include <ardour/audiosource.h>
|
|
|
|
#include <ardour/audio_diskstream.h>
|
2006-02-12 15:20:01 -05:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
#include "tape_region_view.h"
|
2006-02-12 15:20:01 -05:00
|
|
|
#include "audio_time_axis.h"
|
2006-02-21 00:05:59 -05:00
|
|
|
#include "gui_thread.h"
|
2006-02-12 15:20:01 -05:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace sigc;
|
|
|
|
using namespace ARDOUR;
|
2006-06-21 19:01:03 -04:00
|
|
|
using namespace PBD;
|
2006-02-12 15:20:01 -05:00
|
|
|
using namespace Editing;
|
|
|
|
using namespace ArdourCanvas;
|
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
const TimeAxisViewItem::Visibility TapeAudioRegionView::default_tape_visibility
|
|
|
|
= TimeAxisViewItem::Visibility (
|
|
|
|
TimeAxisViewItem::ShowNameHighlight |
|
|
|
|
TimeAxisViewItem::ShowFrame |
|
|
|
|
TimeAxisViewItem::HideFrameRight |
|
|
|
|
TimeAxisViewItem::FullWidthNameHighlight);
|
2006-07-13 09:58:05 -04:00
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
TapeAudioRegionView::TapeAudioRegionView (ArdourCanvas::Group *parent, RouteTimeAxisView &tv,
|
2006-08-24 21:07:15 -04:00
|
|
|
boost::shared_ptr<AudioRegion> r,
|
2006-02-12 15:20:01 -05:00
|
|
|
double spu,
|
|
|
|
Gdk::Color& basic_color)
|
|
|
|
|
|
|
|
: AudioRegionView (parent, tv, r, spu, basic_color,
|
2006-08-24 21:07:15 -04:00
|
|
|
TimeAxisViewItem::Visibility ((r->position() != 0) ? default_tape_visibility :
|
2006-07-13 09:58:05 -04:00
|
|
|
TimeAxisViewItem::Visibility (default_tape_visibility|TimeAxisViewItem::HideFrameLeft)))
|
2006-02-12 15:20:01 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-07-31 23:23:35 -04:00
|
|
|
TapeAudioRegionView::init (Gdk::Color& basic_color, bool wfw)
|
2006-02-12 15:20:01 -05:00
|
|
|
{
|
2006-07-31 23:23:35 -04:00
|
|
|
AudioRegionView::init(basic_color, wfw);
|
2006-02-21 00:05:59 -05:00
|
|
|
|
|
|
|
/* every time the wave data changes and peaks are ready, redraw */
|
2006-03-28 14:22:29 -05:00
|
|
|
|
2006-08-24 21:07:15 -04:00
|
|
|
for (uint32_t n = 0; n < audio_region()->n_channels(); ++n) {
|
2006-08-28 20:23:45 -04:00
|
|
|
audio_region()->source(n)->PeaksReady.connect (bind (mem_fun(*this, &TapeAudioRegionView::update), n));
|
2006-02-21 00:05:59 -05:00
|
|
|
}
|
|
|
|
|
2006-02-12 15:20:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
TapeAudioRegionView::~TapeAudioRegionView()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2006-02-21 00:05:59 -05:00
|
|
|
void
|
|
|
|
TapeAudioRegionView::update (uint32_t n)
|
|
|
|
{
|
|
|
|
/* check that all waves are build and ready */
|
|
|
|
|
|
|
|
if (!tmp_waves.empty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ENSURE_GUI_THREAD (bind (mem_fun(*this, &TapeAudioRegionView::update), n));
|
|
|
|
|
|
|
|
/* this triggers a cache invalidation and redraw in the waveview */
|
|
|
|
|
2006-08-24 21:07:15 -04:00
|
|
|
waves[n]->property_data_src() = _region.get();
|
2006-02-21 00:05:59 -05:00
|
|
|
}
|
|
|
|
|
2006-02-12 15:20:01 -05:00
|
|
|
void
|
|
|
|
TapeAudioRegionView::set_frame_color ()
|
|
|
|
{
|
|
|
|
fill_opacity = 255;
|
|
|
|
TimeAxisViewItem::set_frame_color ();
|
|
|
|
}
|