2006-02-12 15:20:01 -05:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2006 Paul Davis
|
2006-02-12 15:20:01 -05: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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __gtk_ardour_tape_audio_region_view_h__
|
|
|
|
#define __gtk_ardour_tape_audio_region_view_h__
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2006-07-31 23:23:35 -04:00
|
|
|
#include "audio_region_view.h"
|
2006-02-12 15:20:01 -05:00
|
|
|
|
|
|
|
class TapeAudioRegionView : public AudioRegionView
|
|
|
|
{
|
|
|
|
public:
|
2014-06-22 11:41:05 -04:00
|
|
|
TapeAudioRegionView (ArdourCanvas::Container *,
|
2009-07-09 13:58:13 -04:00
|
|
|
RouteTimeAxisView&,
|
2006-08-24 21:07:15 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AudioRegion>,
|
2013-04-12 11:31:50 -04:00
|
|
|
double initial_samples_per_pixel,
|
2014-06-09 23:28:32 -04:00
|
|
|
uint32_t base_color);
|
2006-02-12 15:20:01 -05:00
|
|
|
~TapeAudioRegionView ();
|
|
|
|
|
|
|
|
protected:
|
2014-06-09 23:28:32 -04:00
|
|
|
void init (bool wait_for_waves);
|
2006-02-12 15:20:01 -05:00
|
|
|
|
2006-02-21 00:05:59 -05:00
|
|
|
void update (uint32_t n);
|
2006-07-13 09:58:05 -04:00
|
|
|
|
|
|
|
static const TimeAxisViewItem::Visibility default_tape_visibility;
|
2006-02-12 15:20:01 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_tape_audio_region_view_h__ */
|