2006-07-23 12:03:19 +00:00
|
|
|
/*
|
2009-10-14 16:10:01 +00:00
|
|
|
Copyright (C) 2001, 2006 Paul Davis
|
2006-07-23 12:03:19 +00: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 19:01:50 +00:00
|
|
|
#include <boost/weak_ptr.hpp>
|
|
|
|
|
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/location.h"
|
2015-06-21 05:27:45 +10:00
|
|
|
#include "point_selection.h"
|
2008-03-17 20:54:03 +00:00
|
|
|
#include "editing.h"
|
2006-07-23 12:03:19 +00:00
|
|
|
#include "streamview.h"
|
|
|
|
|
|
|
|
|
|
namespace Gdk {
|
|
|
|
|
class Color;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
|
class AudioRegion;
|
2012-05-24 02:54:10 +00:00
|
|
|
class Route;
|
2006-07-23 12:03:19 +00:00
|
|
|
class Source;
|
2012-05-24 02:54:10 +00:00
|
|
|
struct PeakData;
|
2006-07-23 12:03:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class PublicEditor;
|
|
|
|
|
class Selectable;
|
|
|
|
|
class AudioTimeAxisView;
|
|
|
|
|
class AudioRegionView;
|
|
|
|
|
class RegionSelection;
|
|
|
|
|
class Selection;
|
|
|
|
|
|
|
|
|
|
class AudioStreamView : public StreamView
|
|
|
|
|
{
|
2017-07-01 21:11:14 +02:00
|
|
|
public:
|
2009-07-09 17:58:13 +00:00
|
|
|
AudioStreamView (AudioTimeAxisView&);
|
2006-07-23 12:03:19 +00:00
|
|
|
|
2006-07-30 03:25:38 +00:00
|
|
|
int set_amplitude_above_axis (gdouble app);
|
2006-07-23 12:03:19 +00:00
|
|
|
gdouble get_amplitude_above_axis () { return _amplitude_above_axis; }
|
|
|
|
|
|
2008-10-09 21:55:05 +00:00
|
|
|
void show_all_fades ();
|
|
|
|
|
void hide_all_fades ();
|
|
|
|
|
|
2012-07-04 21:09:32 +00:00
|
|
|
std::pair<std::list<AudioRegionView*>, std::list<AudioRegionView*> > hide_xfades_with (boost::shared_ptr<ARDOUR::AudioRegion> ar);
|
2012-05-10 13:48:23 +00:00
|
|
|
|
2009-06-08 19:28:51 +00:00
|
|
|
RegionView* create_region_view (boost::shared_ptr<ARDOUR::Region>, bool, bool);
|
2015-06-21 05:27:45 +10:00
|
|
|
void set_selected_points (PointSelection&);
|
2009-06-08 19:28:51 +00:00
|
|
|
|
2017-07-01 21:11:14 +02:00
|
|
|
private:
|
2006-07-23 12:03:19 +00:00
|
|
|
void setup_rec_box ();
|
2017-09-18 12:39:17 -04:00
|
|
|
void rec_peak_range_ready (samplepos_t start, ARDOUR::samplecnt_t cnt, boost::weak_ptr<ARDOUR::Source> src);
|
|
|
|
|
void update_rec_regions (ARDOUR::samplepos_t, ARDOUR::samplecnt_t);
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2008-09-10 15:03:30 +00:00
|
|
|
RegionView* add_region_view_internal (boost::shared_ptr<ARDOUR::Region>, bool wait_for_waves, bool recording = false);
|
2006-08-29 21:21:48 +00:00
|
|
|
void remove_audio_region_view (boost::shared_ptr<ARDOUR::AudioRegion> );
|
2006-07-23 12:03:19 +00:00
|
|
|
|
2010-04-21 20:42:22 +00:00
|
|
|
void redisplay_track ();
|
2006-07-23 12:03:19 +00:00
|
|
|
|
2007-06-15 22:08:27 +00:00
|
|
|
void color_handler ();
|
2007-05-17 10:41:14 +00:00
|
|
|
|
2006-07-30 03:25:38 +00:00
|
|
|
double _amplitude_above_axis;
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-05-12 17:03:42 +00:00
|
|
|
std::map<boost::shared_ptr<ARDOUR::Source>, bool> rec_data_ready_map;
|
2008-09-10 15:03:30 +00:00
|
|
|
|
|
|
|
|
bool outline_region;
|
2006-07-23 12:03:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_audio_streamview_h__ */
|