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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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>
|
|
|
|
|
2009-02-25 13:26:51 -05: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 "streamview.h"
|
|
|
|
|
|
|
|
namespace Gdk {
|
|
|
|
class Color;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class AudioRegion;
|
2012-05-23 22:54:10 -04:00
|
|
|
class Route;
|
2006-07-23 08:03:19 -04:00
|
|
|
class Source;
|
2012-05-23 22:54:10 -04:00
|
|
|
struct PeakData;
|
2006-07-23 08:03:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
class PublicEditor;
|
|
|
|
class Selectable;
|
|
|
|
class AudioTimeAxisView;
|
|
|
|
class AudioRegionView;
|
|
|
|
class RegionSelection;
|
|
|
|
class Selection;
|
|
|
|
|
|
|
|
class AudioStreamView : public StreamView
|
|
|
|
{
|
|
|
|
public:
|
2009-07-09 13:58:13 -04:00
|
|
|
AudioStreamView (AudioTimeAxisView&);
|
2006-07-23 08:03:19 -04:00
|
|
|
|
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; }
|
|
|
|
|
2008-10-09 17:55:05 -04:00
|
|
|
void show_all_fades ();
|
|
|
|
void hide_all_fades ();
|
|
|
|
|
2012-07-04 17:09:32 -04:00
|
|
|
std::pair<std::list<AudioRegionView*>, std::list<AudioRegionView*> > hide_xfades_with (boost::shared_ptr<ARDOUR::AudioRegion> ar);
|
2012-05-10 09:48:23 -04:00
|
|
|
|
2009-06-08 15:28:51 -04:00
|
|
|
RegionView* create_region_view (boost::shared_ptr<ARDOUR::Region>, bool, bool);
|
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
private:
|
|
|
|
void setup_rec_box ();
|
2010-12-03 17:26:29 -05:00
|
|
|
void rec_peak_range_ready (framepos_t start, ARDOUR::framecnt_t cnt, boost::weak_ptr<ARDOUR::Source> src);
|
2010-11-14 10:01:53 -05:00
|
|
|
void update_rec_regions (ARDOUR::framepos_t, ARDOUR::framecnt_t);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
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-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
|
|
|
|
2010-04-21 16:42:22 -04:00
|
|
|
void redisplay_track ();
|
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
|
|
|
|
2006-07-29 23:25:38 -04:00
|
|
|
double _amplitude_above_axis;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
std::map<boost::shared_ptr<ARDOUR::Source>, bool> rec_data_ready_map;
|
2008-09-10 11:03:30 -04:00
|
|
|
|
|
|
|
bool outline_region;
|
2006-07-23 08:03:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_audio_streamview_h__ */
|