fixups for rebase of show-region-name option
[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 Container;
46 }
47
48 struct RecBoxInfo {
49         ArdourCanvas::Rectangle* rectangle;
50         samplepos_t              start;
51         ARDOUR::samplecnt_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 set_layer_display (LayerDisplay);
80         virtual bool can_change_layer_display() const { return true; }
81         LayerDisplay layer_display () const { return _layer_display; }
82
83         ArdourCanvas::Container* canvas_item() { return _canvas_group; }
84
85         enum ColorTarget {
86                 RegionColor,
87                 StreamBaseColor
88         };
89
90         uint32_t get_region_color () const { return region_color; }
91         void     apply_color (uint32_t, ColorTarget t);
92         void     apply_color (Gdk::Color const &, 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::samplepos_t, ARDOUR::samplepos_t, double, double, std::list<Selectable* >&, bool within = false);
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::samplepos_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         /** Emitted when the height of regions has changed */
126         sigc::signal<void> ContentsHeightChanged;
127
128         virtual void parameter_changed (std::string const &);
129
130 protected:
131         StreamView (RouteTimeAxisView&, ArdourCanvas::Container* canvas_group = 0);
132
133         void         transport_changed();
134         void         transport_looped();
135         void         rec_enable_changed();
136         void         sess_rec_enable_changed();
137         void         create_rec_box(samplepos_t sample_pos, double width);
138         virtual void setup_rec_box () = 0;
139         virtual void update_rec_box ();
140
141         virtual RegionView* add_region_view_internal (boost::shared_ptr<ARDOUR::Region>,
142                       bool wait_for_waves, bool recording = false) = 0;
143         virtual void remove_region_view (boost::weak_ptr<ARDOUR::Region> );
144
145         void         display_track (boost::shared_ptr<ARDOUR::Track>);
146         virtual void undisplay_track ();
147         void         diskstream_changed ();
148         void         layer_regions ();
149
150         void playlist_switched (boost::weak_ptr<ARDOUR::Track>);
151
152         virtual void color_handler () = 0;
153
154         RouteTimeAxisView&       _trackview;
155         ArdourCanvas::Container* _canvas_group;
156         ArdourCanvas::Rectangle*  canvas_rect; /* frame around the whole thing */
157
158         typedef std::list<RegionView* > RegionViewList;
159         RegionViewList region_views;
160
161         double _samples_per_pixel;
162
163         sigc::connection        screen_update_connection;
164         std::vector<RecBoxInfo> rec_rects;
165         std::list< std::pair<boost::shared_ptr<ARDOUR::Region>,RegionView* > > rec_regions;
166         bool                    rec_updating;
167         bool                    rec_active;
168
169         uint32_t region_color;      ///< Contained region color
170         uint32_t stream_base_color; ///< Background color
171
172         PBD::ScopedConnectionList playlist_connections;
173         PBD::ScopedConnection playlist_switched_connection;
174
175         ARDOUR::layer_t _layers;
176         LayerDisplay    _layer_display;
177
178         double height;
179
180         PBD::ScopedConnectionList rec_data_ready_connections;
181         samplepos_t               last_rec_data_sample;
182
183         /* When recording, the session time at which a new layer must be created for the region
184            being recorded, or max_samplepos if not applicable.
185         */
186         samplepos_t _new_rec_layer_time;
187         void setup_new_rec_layer_time (boost::shared_ptr<ARDOUR::Region>);
188
189 private:
190         void update_coverage_frame ();
191 };
192
193 #endif /* __ardour_streamview_h__ */
194