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 __gtk_ardour_audio_region_view_h__
|
|
|
|
#define __gtk_ardour_audio_region_view_h__
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <libgnomecanvasmm.h>
|
|
|
|
#include <libgnomecanvasmm/polygon.h>
|
|
|
|
#include <sigc++/signal.h>
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/audioregion.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2006-08-01 13:19:38 -04:00
|
|
|
#include "region_view.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
#include "time_axis_view_item.h"
|
|
|
|
#include "automation_line.h"
|
|
|
|
#include "enums.h"
|
|
|
|
#include "waveview.h"
|
|
|
|
#include "canvas.h"
|
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class AudioRegion;
|
|
|
|
class PeakData;
|
|
|
|
};
|
|
|
|
|
|
|
|
class AudioTimeAxisView;
|
|
|
|
class AudioRegionGainLine;
|
|
|
|
class GhostRegion;
|
|
|
|
class AutomationTimeAxisView;
|
2009-06-28 20:38:32 -04:00
|
|
|
class RouteTimeAxisView;
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
class AudioRegionView : public RegionView
|
|
|
|
{
|
|
|
|
public:
|
2009-10-14 12:10:01 -04:00
|
|
|
AudioRegionView (ArdourCanvas::Group *,
|
2009-07-09 13:58:13 -04:00
|
|
|
RouteTimeAxisView&,
|
2006-08-29 17:21:48 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AudioRegion>,
|
2006-07-23 08:03:19 -04:00
|
|
|
double initial_samples_per_unit,
|
2009-06-08 15:28:51 -04:00
|
|
|
Gdk::Color const & basic_color);
|
2006-07-23 08:03:19 -04:00
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
AudioRegionView (ArdourCanvas::Group *,
|
2009-07-09 13:58:13 -04:00
|
|
|
RouteTimeAxisView&,
|
2009-06-08 15:28:51 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AudioRegion>,
|
|
|
|
double samples_per_unit,
|
|
|
|
Gdk::Color const & basic_color,
|
2008-09-10 11:03:30 -04:00
|
|
|
bool recording,
|
2009-06-08 15:28:51 -04:00
|
|
|
TimeAxisViewItem::Visibility);
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2008-09-26 13:18:22 -04:00
|
|
|
AudioRegionView (const AudioRegionView& other);
|
|
|
|
AudioRegionView (const AudioRegionView& other, boost::shared_ptr<ARDOUR::AudioRegion>);
|
2007-03-18 02:07:08 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
~AudioRegionView ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-06-08 15:28:51 -04:00
|
|
|
virtual void init (Gdk::Color const & base_color, bool wait_for_data);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AudioRegion> audio_region() const;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-03-17 16:54:03 -04:00
|
|
|
void create_waves ();
|
|
|
|
|
2008-09-19 15:32:10 -04:00
|
|
|
void set_height (double);
|
2006-08-29 17:21:48 -04:00
|
|
|
void set_samples_per_unit (double);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
void set_amplitude_above_axis (gdouble spp);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
void temporarily_hide_envelope (); ///< Dangerous!
|
|
|
|
void unhide_envelope (); ///< Dangerous!
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
void set_envelope_visible (bool);
|
|
|
|
void set_waveform_visible (bool yn);
|
2009-06-10 17:58:25 -04:00
|
|
|
void set_waveform_shape (ARDOUR::WaveformShape);
|
|
|
|
void set_waveform_scale (ARDOUR::WaveformScale);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
bool waveform_rectified() const { return _flags & WaveformRectified; }
|
2007-01-09 18:24:54 -05:00
|
|
|
bool waveform_logscaled() const { return _flags & WaveformLogScaled; }
|
2006-08-29 17:21:48 -04:00
|
|
|
bool waveform_visible() const { return _flags & WaveformVisible; }
|
|
|
|
bool envelope_visible() const { return _flags & EnvelopeVisible; }
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
void add_gain_point_event (ArdourCanvas::Item *item, GdkEvent *event);
|
|
|
|
void remove_gain_point_event (ArdourCanvas::Item *item, GdkEvent *event);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
AudioRegionGainLine* get_gain_line() const { return gain_line; }
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-02-19 13:09:08 -05:00
|
|
|
void region_changed (const PBD::PropertyChange&);
|
2006-08-29 17:21:48 -04:00
|
|
|
void envelope_active_changed ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
GhostRegion* add_ghost (TimeAxisView&);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-12-03 17:26:29 -05:00
|
|
|
void reset_fade_in_shape_width (framecnt_t);
|
|
|
|
void reset_fade_out_shape_width (framecnt_t);
|
2010-09-07 07:41:16 -04:00
|
|
|
|
2010-09-17 14:20:37 -04:00
|
|
|
void show_fade_line(framepos_t pos);
|
2010-09-07 07:41:16 -04:00
|
|
|
void hide_fade_line();
|
|
|
|
|
2008-10-09 17:55:05 -04:00
|
|
|
void set_fade_visibility (bool);
|
2009-08-25 17:53:21 -04:00
|
|
|
void update_coverage_frames (LayerDisplay);
|
2010-07-06 07:33:27 -04:00
|
|
|
|
|
|
|
void update_transient(float old_pos, float new_pos);
|
|
|
|
void remove_transient(float pos);
|
2008-10-09 17:55:05 -04:00
|
|
|
|
2010-05-21 20:26:26 -04:00
|
|
|
void show_region_editor ();
|
|
|
|
|
2010-07-16 17:12:06 -04:00
|
|
|
virtual void entered (bool);
|
2006-08-29 17:21:48 -04:00
|
|
|
virtual void exited ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-11-08 20:58:12 -05:00
|
|
|
void thaw_after_trim ();
|
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
protected:
|
|
|
|
|
2010-11-16 09:41:17 -05:00
|
|
|
/* this constructor allows derived types
|
|
|
|
to specify their visibility requirements
|
|
|
|
to the TimeAxisViewItem parent class
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum Flags {
|
|
|
|
EnvelopeVisible = 0x1,
|
|
|
|
WaveformVisible = 0x4,
|
|
|
|
WaveformRectified = 0x8,
|
|
|
|
WaveformLogScaled = 0x10,
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<ArdourCanvas::WaveView *> waves;
|
|
|
|
std::vector<ArdourCanvas::WaveView *> tmp_waves; ///< see ::create_waves()
|
2011-02-14 16:49:43 -05:00
|
|
|
|
|
|
|
std::list<std::pair<framepos_t, ArdourCanvas::Line*> > feature_lines;
|
2010-11-16 09:41:17 -05:00
|
|
|
|
|
|
|
ArdourCanvas::Polygon* sync_mark; ///< polgyon for sync position
|
|
|
|
ArdourCanvas::SimpleLine* zero_line;
|
|
|
|
ArdourCanvas::Polygon* fade_in_shape;
|
|
|
|
ArdourCanvas::Polygon* fade_out_shape;
|
|
|
|
ArdourCanvas::SimpleRect* fade_in_handle; ///< fade in handle, or 0
|
|
|
|
ArdourCanvas::SimpleRect* fade_out_handle; ///< fade out handle, or 0
|
|
|
|
ArdourCanvas::SimpleLine* fade_position_line;
|
|
|
|
|
|
|
|
AudioRegionGainLine * gain_line;
|
|
|
|
|
|
|
|
double _amplitude_above_axis;
|
|
|
|
|
|
|
|
uint32_t _flags;
|
|
|
|
uint32_t fade_color;
|
|
|
|
|
|
|
|
void reset_fade_shapes ();
|
|
|
|
void reset_fade_in_shape ();
|
|
|
|
void reset_fade_out_shape ();
|
|
|
|
void fade_in_changed ();
|
|
|
|
void fade_out_changed ();
|
|
|
|
void fade_in_active_changed ();
|
|
|
|
void fade_out_active_changed ();
|
|
|
|
|
|
|
|
void region_resized (const PBD::PropertyChange&);
|
|
|
|
void region_muted ();
|
|
|
|
void region_scale_amplitude_changed ();
|
|
|
|
void region_renamed ();
|
|
|
|
|
|
|
|
void create_one_wave (uint32_t, bool);
|
|
|
|
void manage_zero_line ();
|
|
|
|
void peaks_ready_handler (uint32_t);
|
|
|
|
void set_flags (XMLNode *);
|
|
|
|
void store_flags ();
|
|
|
|
|
|
|
|
void set_colors ();
|
|
|
|
void compute_colors (Gdk::Color const &);
|
|
|
|
void reset_width_dependent_items (double pixel_width);
|
|
|
|
void set_waveview_data_src();
|
|
|
|
void set_frame_color ();
|
|
|
|
|
|
|
|
void color_handler ();
|
|
|
|
|
|
|
|
std::vector<GnomeCanvasWaveViewCache*> wave_caches;
|
|
|
|
|
|
|
|
void transients_changed();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void setup_fade_handle_positions ();
|
|
|
|
|
2010-04-21 21:40:33 -04:00
|
|
|
/** A ScopedConnection for each PeaksReady callback (one per channel). Each member
|
|
|
|
* may be 0 if no connection exists.
|
|
|
|
*/
|
|
|
|
std::vector<PBD::ScopedConnection*> _data_ready_connections;
|
2006-07-23 08:03:19 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_audio_region_view_h__ */
|