2006-07-23 08:03:19 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2001, 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_audio_streamview_h__
|
|
|
|
#define __ardour_audio_streamview_h__
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
#include <map>
|
|
|
|
#include <cmath>
|
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
#include <boost/weak_ptr.hpp>
|
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
#include <ardour/location.h>
|
2008-03-17 16:54:03 -04:00
|
|
|
#include "editing.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
#include "simplerect.h"
|
|
|
|
#include "streamview.h"
|
|
|
|
|
|
|
|
namespace Gdk {
|
|
|
|
class Color;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Route;
|
|
|
|
class Diskstream;
|
|
|
|
class Crossfade;
|
|
|
|
class PeakData;
|
|
|
|
class AudioRegion;
|
|
|
|
class Source;
|
|
|
|
}
|
|
|
|
|
|
|
|
class PublicEditor;
|
|
|
|
class Selectable;
|
|
|
|
class AudioTimeAxisView;
|
|
|
|
class AudioRegionView;
|
|
|
|
class RegionSelection;
|
|
|
|
class CrossfadeView;
|
|
|
|
class Selection;
|
|
|
|
|
|
|
|
class AudioStreamView : public StreamView
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AudioStreamView (AudioTimeAxisView&);
|
|
|
|
~AudioStreamView ();
|
|
|
|
|
2008-03-17 16:54:03 -04:00
|
|
|
void set_waveform_shape (Editing::WaveformShape);
|
|
|
|
Editing::WaveformShape get_waveform_shape () const { return _waveform_shape; }
|
|
|
|
void set_waveform_scale (Editing::WaveformScale);
|
|
|
|
Editing::WaveformScale get_waveform_scale () const { return _waveform_scale; }
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
int set_samples_per_unit (gdouble spp);
|
|
|
|
|
2006-07-29 23:25:38 -04:00
|
|
|
int set_amplitude_above_axis (gdouble app);
|
2006-07-23 08:03:19 -04:00
|
|
|
gdouble get_amplitude_above_axis () { return _amplitude_above_axis; }
|
|
|
|
|
|
|
|
void set_show_waveforms (bool yn);
|
|
|
|
void set_show_waveforms_recording (bool yn) { use_rec_regions = yn; }
|
|
|
|
|
|
|
|
void foreach_crossfadeview (void (CrossfadeView::*pmf)(void));
|
|
|
|
|
2008-10-09 17:55:05 -04:00
|
|
|
void show_all_fades ();
|
|
|
|
void hide_all_fades ();
|
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
void show_all_xfades ();
|
|
|
|
void hide_all_xfades ();
|
|
|
|
void hide_xfades_involving (AudioRegionView&);
|
|
|
|
void reveal_xfades_involving (AudioRegionView&);
|
|
|
|
|
|
|
|
private:
|
|
|
|
void setup_rec_box ();
|
2006-10-21 15:01:50 -04:00
|
|
|
void rec_peak_range_ready (nframes_t start, nframes_t cnt, boost::weak_ptr<ARDOUR::Source> src);
|
2006-07-23 08:03:19 -04:00
|
|
|
void update_rec_regions ();
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
RegionView* add_region_view_internal (boost::shared_ptr<ARDOUR::Region>, bool wait_for_waves, bool recording = false);
|
2006-10-21 15:01:50 -04:00
|
|
|
void remove_region_view (boost::weak_ptr<ARDOUR::Region> );
|
2006-08-29 17:21:48 -04:00
|
|
|
void remove_audio_region_view (boost::shared_ptr<ARDOUR::AudioRegion> );
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
void undisplay_diskstream ();
|
|
|
|
void redisplay_diskstream ();
|
2007-05-17 06:41:14 -04:00
|
|
|
void playlist_modified_weak (boost::weak_ptr<ARDOUR::Diskstream>);
|
|
|
|
void playlist_modified (boost::shared_ptr<ARDOUR::Diskstream>);
|
2006-08-24 03:37:17 -04:00
|
|
|
void playlist_changed (boost::shared_ptr<ARDOUR::Diskstream>);
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2007-01-11 14:50:49 -05:00
|
|
|
void add_crossfade (boost::shared_ptr<ARDOUR::Crossfade>);
|
2007-04-29 13:23:11 -04:00
|
|
|
void add_crossfade_weak (boost::weak_ptr<ARDOUR::Crossfade>);
|
2007-05-21 18:12:06 -04:00
|
|
|
void remove_crossfade (boost::shared_ptr<ARDOUR::Region>);
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2007-06-15 18:08:27 -04:00
|
|
|
void color_handler ();
|
2007-05-17 06:41:14 -04:00
|
|
|
|
2008-09-19 15:32:10 -04:00
|
|
|
void update_contents_height ();
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2006-07-29 23:25:38 -04:00
|
|
|
double _amplitude_above_axis;
|
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
typedef list<CrossfadeView*> CrossfadeViewList;
|
|
|
|
CrossfadeViewList crossfade_views;
|
2006-07-29 23:25:38 -04:00
|
|
|
bool crossfades_visible;
|
2007-01-09 18:24:54 -05:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
|
|
|
|
std::list<sigc::connection> rec_data_ready_connections;
|
|
|
|
nframes_t last_rec_data_frame;
|
|
|
|
map<boost::shared_ptr<ARDOUR::Source>, bool> rec_data_ready_map;
|
|
|
|
|
|
|
|
bool outline_region;
|
|
|
|
|
2008-03-17 16:54:03 -04:00
|
|
|
Editing::WaveformShape _waveform_shape;
|
|
|
|
Editing::WaveformScale _waveform_scale;
|
2006-07-23 08:03:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_audio_streamview_h__ */
|