bind() call involving shared_ptr<Crossfade> fixed
[ardour.git] / gtk2_ardour / audio_streamview.h
1 /*
2     Copyright (C) 2001, 2006 Paul Davis 
3
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.
8
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.
13
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.
17 */
18
19 #ifndef __ardour_audio_streamview_h__
20 #define __ardour_audio_streamview_h__
21
22 #include <list>
23 #include <map>
24 #include <cmath>
25
26 #include <boost/weak_ptr.hpp>
27
28 #include <ardour/location.h>
29 #include "enums.h"
30 #include "simplerect.h"
31 #include "color.h"
32 #include "streamview.h"
33
34 namespace Gdk {
35         class Color;
36 }
37
38 namespace ARDOUR {
39         class Route;
40         class Diskstream;
41         class Crossfade;
42         class PeakData;
43         class AudioRegion;
44         class Source;
45 }
46
47 class PublicEditor;
48 class Selectable;
49 class AudioTimeAxisView;
50 class AudioRegionView;
51 class RegionSelection;
52 class CrossfadeView;
53 class Selection;
54
55 class AudioStreamView : public StreamView
56 {
57   public:
58         AudioStreamView (AudioTimeAxisView&);
59         ~AudioStreamView ();
60
61         void set_waveform_shape (WaveformShape);
62         WaveformShape get_waveform_shape () const { return _waveform_shape; }
63         void set_waveform_scale (WaveformScale);
64         WaveformScale get_waveform_scale () const { return _waveform_scale; }
65
66         int set_height (gdouble h);
67         int set_samples_per_unit (gdouble spp);
68
69         int     set_amplitude_above_axis (gdouble app);
70         gdouble get_amplitude_above_axis () { return _amplitude_above_axis; }
71
72         void set_show_waveforms (bool yn);
73         void set_show_waveforms_recording (bool yn) { use_rec_regions = yn; }
74
75         void foreach_crossfadeview (void (CrossfadeView::*pmf)(void));
76
77         void show_all_xfades ();
78         void hide_all_xfades ();
79         void hide_xfades_involving (AudioRegionView&);
80         void reveal_xfades_involving (AudioRegionView&);
81
82   private:
83         void setup_rec_box ();
84         void rec_peak_range_ready (nframes_t start, nframes_t cnt, boost::weak_ptr<ARDOUR::Source> src); 
85         void update_rec_regions ();
86         
87         void add_region_view_internal (boost::shared_ptr<ARDOUR::Region>, bool wait_for_waves);
88         void remove_region_view (boost::weak_ptr<ARDOUR::Region> );
89         void remove_audio_region_view (boost::shared_ptr<ARDOUR::AudioRegion> );
90
91         void undisplay_diskstream ();
92         void redisplay_diskstream ();
93         void playlist_modified ();
94         void playlist_changed (boost::shared_ptr<ARDOUR::Diskstream>);
95
96         void add_crossfade (boost::shared_ptr<ARDOUR::Crossfade>);
97         void add_crossfade_weak (boost::weak_ptr<ARDOUR::Crossfade>);
98         void remove_crossfade (boost::shared_ptr<ARDOUR::Crossfade>);
99
100         void color_handler (ColorID id, uint32_t val);
101         
102
103         double _amplitude_above_axis;
104         
105         typedef list<CrossfadeView*> CrossfadeViewList;
106         CrossfadeViewList crossfade_views;
107         bool              crossfades_visible;
108
109         list<sigc::connection>     peak_ready_connections;
110         nframes_t             last_rec_peak_frame;
111         map<boost::shared_ptr<ARDOUR::Source>, bool> rec_peak_ready_map;
112
113         WaveformShape     _waveform_shape;
114         WaveformScale     _waveform_scale;
115 };
116
117 #endif /* __ardour_audio_streamview_h__ */