Fairly major change to the way in which crossfades are handled;
[ardour.git] / gtk2_ardour / 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_streamview_h__
20 #define __ardour_streamview_h__
21
22 #include <list>
23 #include <cmath>
24
25 #include "pbd/signals.h"
26
27 #include "ardour/location.h"
28 #include "enums.h"
29 #include "simplerect.h"
30 #include "canvas.h"
31
32 namespace Gdk {
33         class Color;
34 }
35
36 namespace ARDOUR {
37         class Route;
38         class Crossfade;
39         class PeakData;
40         class Region;
41         class Source;
42         class Track;
43 }
44
45 struct RecBoxInfo {
46         ArdourCanvas::SimpleRect*  rectangle;
47         framepos_t                 start;
48         ARDOUR::framecnt_t         length;
49 };
50
51 class Selectable;
52 class RouteTimeAxisView;
53 class RegionView;
54 class RegionSelection;
55 class CrossfadeView;
56 class Selection;
57
58 class StreamView : public sigc::trackable, public PBD::ScopedConnectionList
59 {
60 public:
61         virtual ~StreamView ();
62
63         RouteTimeAxisView&       trackview()       { return _trackview; }
64         const RouteTimeAxisView& trackview() const { return _trackview; }
65
66         void attach ();
67
68         void set_zoom_all();
69
70         int set_position (gdouble x, gdouble y);
71         virtual int set_height (double);
72
73         virtual int set_samples_per_unit (gdouble spp);
74         gdouble     get_samples_per_unit () { return _samples_per_unit; }
75         virtual void horizontal_position_changed () {}
76
77         virtual void enter_internal_edit_mode ();
78         virtual void leave_internal_edit_mode ();
79
80         void set_layer_display (LayerDisplay);
81         LayerDisplay layer_display () const { return _layer_display; }
82
83         ArdourCanvas::Group* background_group() { return _background_group; }
84         ArdourCanvas::Group* canvas_item() { return _canvas_group; }
85
86         enum ColorTarget {
87                 RegionColor,
88                 StreamBaseColor
89         };
90
91         Gdk::Color get_region_color () const { return region_color; }
92         void       apply_color (Gdk::Color, ColorTarget t);
93
94         uint32_t     num_selected_regionviews () const;
95
96         RegionView*  find_view (boost::shared_ptr<const ARDOUR::Region>);
97         void         foreach_regionview (sigc::slot<void,RegionView*> slot);
98         void         foreach_selected_regionview (sigc::slot<void,RegionView*> slot);
99
100         void set_selected_regionviews (RegionSelection&);
101         void get_selectables (ARDOUR::framepos_t, ARDOUR::framepos_t, double, double, std::list<Selectable* >&);
102         void get_inverted_selectables (Selection&, std::list<Selectable* >& results);
103
104         virtual void update_contents_metrics(boost::shared_ptr<ARDOUR::Region>) {}
105
106         void add_region_view (boost::weak_ptr<ARDOUR::Region>);
107
108         void region_layered (RegionView*);
109         virtual void update_contents_height ();
110
111         virtual void redisplay_track () = 0;
112         double child_height () const;
113         ARDOUR::layer_t layers () const { return _layers; }
114
115         virtual RegionView* create_region_view (boost::shared_ptr<ARDOUR::Region>, bool, bool) {
116                 return 0;
117         }
118
119         void check_record_layers (boost::shared_ptr<ARDOUR::Region>, ARDOUR::framepos_t);
120
121         virtual void playlist_layered (boost::weak_ptr<ARDOUR::Track>);
122         
123         sigc::signal<void, RegionView*> RegionViewAdded;
124         sigc::signal<void> RegionViewRemoved;
125
126 protected:
127         StreamView (RouteTimeAxisView&, ArdourCanvas::Group* background_group = 0, ArdourCanvas::Group* canvas_group = 0);
128
129         void         transport_changed();
130         void         transport_looped();
131         void         rec_enable_changed();
132         void         sess_rec_enable_changed();
133         virtual void setup_rec_box () = 0;
134         virtual void update_rec_box ();
135
136         virtual RegionView* add_region_view_internal (boost::shared_ptr<ARDOUR::Region>,
137                       bool wait_for_waves, bool recording = false) = 0;
138         virtual void remove_region_view (boost::weak_ptr<ARDOUR::Region> );
139
140         void         display_track (boost::shared_ptr<ARDOUR::Track>);
141         virtual void undisplay_track ();
142         void         diskstream_changed ();
143         void         layer_regions ();
144
145         void playlist_switched (boost::weak_ptr<ARDOUR::Track>);
146
147         virtual void color_handler () = 0;
148
149         RouteTimeAxisView&        _trackview;
150         bool                      owns_background_group;
151         bool                      owns_canvas_group;
152         ArdourCanvas::Group*      _background_group;
153         ArdourCanvas::Group*      _canvas_group;
154         ArdourCanvas::SimpleRect* canvas_rect; /* frame around the whole thing */
155
156         typedef std::list<RegionView* > RegionViewList;
157         RegionViewList  region_views;
158
159         double _samples_per_unit;
160
161         sigc::connection       screen_update_connection;
162         std::vector<RecBoxInfo>     rec_rects;
163         std::list< std::pair<boost::shared_ptr<ARDOUR::Region>,RegionView* > > rec_regions;
164         bool                   rec_updating;
165         bool                   rec_active;
166
167         Gdk::Color region_color;      ///< Contained region color
168         uint32_t   stream_base_color; ///< Background color
169
170         PBD::ScopedConnectionList playlist_connections;
171         PBD::ScopedConnection playlist_switched_connection;
172
173         ARDOUR::layer_t _layers;
174         LayerDisplay    _layer_display;
175
176         double height;
177
178         PBD::ScopedConnectionList rec_data_ready_connections;
179         framepos_t                last_rec_data_frame;
180
181         /* When recording, the session time at which a new layer must be created for the region
182            being recorded, or max_framepos if not applicable.
183         */
184         framepos_t _new_rec_layer_time;
185         void setup_new_rec_layer_time (boost::shared_ptr<ARDOUR::Region>);
186
187 private:
188         void update_coverage_frames ();
189 };
190
191 #endif /* __ardour_streamview_h__ */
192