2 Copyright (C) 2001-2006 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 #ifndef __gtk_ardour_audio_region_view_h__
20 #define __gtk_ardour_audio_region_view_h__
24 #include <libgnomecanvasmm.h>
25 #include <libgnomecanvasmm/polygon.h>
26 #include <sigc++/signal.h>
27 #include "ardour/audioregion.h"
29 #include "region_view.h"
30 #include "time_axis_view_item.h"
31 #include "automation_line.h"
41 class AudioTimeAxisView
;
42 class AudioRegionGainLine
;
44 class AutomationTimeAxisView
;
45 class RouteTimeAxisView
;
47 class AudioRegionView
: public RegionView
50 AudioRegionView (ArdourCanvas::Group
*,
52 boost::shared_ptr
<ARDOUR::AudioRegion
>,
53 double initial_samples_per_unit
,
54 Gdk::Color
const & basic_color
);
56 AudioRegionView (ArdourCanvas::Group
*,
58 boost::shared_ptr
<ARDOUR::AudioRegion
>,
59 double samples_per_unit
,
60 Gdk::Color
const & basic_color
,
62 TimeAxisViewItem::Visibility
);
64 AudioRegionView (const AudioRegionView
& other
);
65 AudioRegionView (const AudioRegionView
& other
, boost::shared_ptr
<ARDOUR::AudioRegion
>);
69 virtual void init (Gdk::Color
const & base_color
, bool wait_for_data
);
71 boost::shared_ptr
<ARDOUR::AudioRegion
> audio_region() const;
75 void set_height (double);
76 void set_samples_per_unit (double);
78 void set_amplitude_above_axis (gdouble spp
);
80 void temporarily_hide_envelope (); ///< Dangerous!
81 void unhide_envelope (); ///< Dangerous!
83 void set_envelope_visible (bool);
84 void set_waveform_visible (bool yn
);
85 void set_waveform_shape (ARDOUR::WaveformShape
);
86 void set_waveform_scale (ARDOUR::WaveformScale
);
88 bool waveform_rectified() const { return _flags
& WaveformRectified
; }
89 bool waveform_logscaled() const { return _flags
& WaveformLogScaled
; }
90 bool waveform_visible() const { return _flags
& WaveformVisible
; }
91 bool envelope_visible() const { return _flags
& EnvelopeVisible
; }
93 void add_gain_point_event (ArdourCanvas::Item
*item
, GdkEvent
*event
);
94 void remove_gain_point_event (ArdourCanvas::Item
*item
, GdkEvent
*event
);
96 AudioRegionGainLine
* get_gain_line() const { return gain_line
; }
98 void region_changed (const PBD::PropertyChange
&);
99 void envelope_active_changed ();
101 GhostRegion
* add_ghost (TimeAxisView
&);
103 void reset_fade_in_shape_width (nframes_t
);
104 void reset_fade_out_shape_width (nframes_t
);
106 void set_fade_visibility (bool);
107 void update_coverage_frames (LayerDisplay
);
109 void update_transient(float old_pos
, float new_pos
);
110 void remove_transient(float pos
);
112 void show_region_editor ();
114 virtual void entered ();
115 virtual void exited ();
119 /* this constructor allows derived types
120 to specify their visibility requirements
121 to the TimeAxisViewItem parent class
125 EnvelopeVisible
= 0x1,
126 WaveformVisible
= 0x4,
127 WaveformRectified
= 0x8,
128 WaveformLogScaled
= 0x10,
131 std::vector
<ArdourCanvas::WaveView
*> waves
;
132 std::vector
<ArdourCanvas::WaveView
*> tmp_waves
; ///< see ::create_waves()
134 std::list
<std::pair
<nframes64_t
, ArdourCanvas::SimpleLine
*> > feature_lines
;
136 ArdourCanvas::Polygon
* sync_mark
; ///< polgyon for sync position
137 ArdourCanvas::SimpleLine
* zero_line
;
138 ArdourCanvas::Polygon
* fade_in_shape
;
139 ArdourCanvas::Polygon
* fade_out_shape
;
140 ArdourCanvas::SimpleRect
* fade_in_handle
;
141 ArdourCanvas::SimpleRect
* fade_out_handle
;
143 AudioRegionGainLine
* gain_line
;
145 double _amplitude_above_axis
;
150 void reset_fade_shapes ();
151 void reset_fade_in_shape ();
152 void reset_fade_out_shape ();
153 void fade_in_changed ();
154 void fade_out_changed ();
155 void fade_in_active_changed ();
156 void fade_out_active_changed ();
158 void region_resized (const PBD::PropertyChange
&);
159 void region_muted ();
160 void region_scale_amplitude_changed ();
161 void region_renamed ();
163 void create_one_wave (uint32_t, bool);
164 void manage_zero_line ();
165 void peaks_ready_handler (uint32_t);
166 void set_flags (XMLNode
*);
170 void compute_colors (Gdk::Color
const &);
171 void reset_width_dependent_items (double pixel_width
);
172 void set_waveview_data_src();
173 void set_frame_color ();
175 void color_handler ();
177 std::vector
<GnomeCanvasWaveViewCache
*> wave_caches
;
179 void transients_changed();
183 void setup_fade_handle_positions ();
185 /** A ScopedConnection for each PeaksReady callback (one per channel). Each member
186 * may be 0 if no connection exists.
188 std::vector
<PBD::ScopedConnection
*> _data_ready_connections
;
191 #endif /* __gtk_ardour_audio_region_view_h__ */