Merge branch 'master' into cairocanvas
[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
30 namespace Gdk {
31         class Color;
32 }
33
34 namespace ARDOUR {
35         class Crossfade;
36         class Region;
37         class Route;
38         class Source;
39         class Track;
40         struct PeakData;
41 }
42
43 namespace ArdourCanvas {
44         class Rectangle;
45         class Group;
46 }
47
48 struct RecBoxInfo {
49         ArdourCanvas::Rectangle*   rectangle;
50         framepos_t                 start;
51         ARDOUR::framecnt_t         length;
52 };
53
54 class Selectable;
55 class RouteTimeAxisView;
56 class RegionView;
57 class RegionSelection;
58 class CrossfadeView;
59 class Selection;
60
61 class StreamView : public sigc::trackable, public PBD::ScopedConnectionList
62 {
63 public:
64         virtual ~StreamView ();
65
66         RouteTimeAxisView&       trackview()       { return _trackview; }
67         const RouteTimeAxisView& trackview() const { return _trackview; }
68
69         void attach ();
70
71         void set_zoom_all();
72
73         int set_position (gdouble x, gdouble y);
74         virtual int set_height (double);
75
76         virtual int set_samples_per_pixel (double);
77         gdouble     get_samples_per_pixel () const { return _samples_per_pixel; }
78
79         virtual void enter_internal_edit_mode ();
80         virtual void leave_internal_edit_mode ();
81
82         void set_layer_display (LayerDisplay);
83         LayerDisplay layer_display () const { return _layer_display; }
84
85         ArdourCanvas::Group* canvas_item() { return _canvas_group; }
86
87         enum ColorTarget {
88                 RegionColor,
89                 StreamBaseColor
90         };
91
92         Gdk::Color get_region_color () const { return region_color; }
93         void       apply_color (Gdk::Color, ColorTarget t);
94
95         uint32_t     num_selected_regionviews () const;
96
97         RegionView*  find_view (boost::shared_ptr<const ARDOUR::Region>);
98         void         foreach_regionview (sigc::slot<void,RegionView*> slot);
99         void         foreach_selected_regionview (sigc::slot<void,RegionView*> slot);
100
101         void set_selected_regionviews (RegionSelection&);
102         void get_selectables (ARDOUR::framepos_t, ARDOUR::framepos_t, double, double, std::list<Selectable* >&);
103         void get_inverted_selectables (Selection&, std::list<Selectable* >& results);
104
105         virtual void update_contents_metrics(boost::shared_ptr<ARDOUR::Region>) {}
106
107         void add_region_view (boost::weak_ptr<ARDOUR::Region>);
108
109         void region_layered (RegionView*);
110         virtual void update_contents_height ();
111
112         virtual void redisplay_track () = 0;
113         double child_height () const;
114         ARDOUR::layer_t layers () const { return _layers; }
115
116         virtual RegionView* create_region_view (boost::shared_ptr<ARDOUR::Region>, bool, bool) {
117                 return 0;
118         }
119
120         void check_record_layers (boost::shared_ptr<ARDOUR::Region>, ARDOUR::framepos_t);
121
122         virtual void playlist_layered (boost::weak_ptr<ARDOUR::Track>);
123         
124         sigc::signal<void, RegionView*> RegionViewAdded;
125         sigc::signal<void> RegionViewRemoved;
126         /** Emitted when the height of regions has changed */
127         sigc::signal<void> ContentsHeightChanged;
128
129 protected:
130        StreamView (RouteTimeAxisView&, ArdourCanvas::Group* canvas_group = 0);
131
132         void         transport_changed();
133         void         transport_looped();
134         void         rec_enable_changed();
135         void         sess_rec_enable_changed();
136         virtual void setup_rec_box () = 0;
137         virtual void update_rec_box ();
138
139         virtual RegionView* add_region_view_internal (boost::shared_ptr<ARDOUR::Region>,
140                       bool wait_for_waves, bool recording = false) = 0;
141         virtual void remove_region_view (boost::weak_ptr<ARDOUR::Region> );
142
143         void         display_track (boost::shared_ptr<ARDOUR::Track>);
144         virtual void undisplay_track ();
145         void         diskstream_changed ();
146         void         layer_regions ();
147
148         void playlist_switched (boost::weak_ptr<ARDOUR::Track>);
149
150         virtual void color_handler () = 0;
151
152         RouteTimeAxisView&        _trackview;
153         ArdourCanvas::Group*      _canvas_group;
154         ArdourCanvas::Rectangle*   canvas_rect; /* frame around the whole thing */
155
156         typedef std::list<RegionView* > RegionViewList;
157         RegionViewList  region_views;
158
159         double _samples_per_pixel;
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