Unify the canvases by moving groups around rather than using set_scrolling_region...
[ardour.git] / gtk2_ardour / streamview.cc
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 #include <cmath>
20
21 #include <gtkmm.h>
22
23 #include <gtkmm2ext/gtk_ui.h>
24
25 #include <ardour/playlist.h>
26 #include <ardour/region.h>
27 #include <ardour/source.h>
28 #include <ardour/diskstream.h>
29 #include <ardour/track.h>
30
31 #include "streamview.h"
32 #include "region_view.h"
33 #include "route_time_axis.h"
34 #include "canvas-waveview.h"
35 #include "canvas-simplerect.h"
36 #include "region_selection.h"
37 #include "selection.h"
38 #include "public_editor.h"
39 #include "ardour_ui.h"
40 #include "rgb_macros.h"
41 #include "gui_thread.h"
42 #include "utils.h"
43
44 using namespace ARDOUR;
45 using namespace PBD;
46 using namespace Editing;
47
48 StreamView::StreamView (RouteTimeAxisView& tv)
49         : _trackview (tv)
50         , canvas_group(new ArdourCanvas::Group(*_trackview.canvas_display))
51         , _samples_per_unit(_trackview.editor.get_current_zoom())
52         , rec_updating(false)
53         , rec_active(false)
54         , use_rec_regions(tv.editor.show_waveforms_recording())
55         , region_color(_trackview.color())
56         , stream_base_color(0xFFFFFFFF)
57 {
58         /* set_position() will position the group */
59
60         canvas_rect = new ArdourCanvas::SimpleRect (*canvas_group);
61         canvas_rect->property_x1() = 0.0;
62         canvas_rect->property_y1() = 0.0;
63         canvas_rect->property_x2() = _trackview.editor.frame_to_pixel (max_frames - 1);
64         canvas_rect->property_y2() = (double) tv.current_height();
65
66         canvas_rect->property_outline_what() = (guint32) (0x1|0x2|0x8);  // outline ends and bottom 
67         // (Fill/Outline colours set in derived classes)
68
69         canvas_rect->signal_event().connect (bind (mem_fun (_trackview.editor, &PublicEditor::canvas_stream_view_event), canvas_rect, &_trackview));
70
71         if (_trackview.is_track()) {
72                 _trackview.track()->DiskstreamChanged.connect (mem_fun (*this, &StreamView::diskstream_changed));
73                 _trackview.session().TransportStateChange.connect (mem_fun (*this, &StreamView::transport_changed));
74                 _trackview.session().TransportLooped.connect (mem_fun (*this, &StreamView::transport_looped));
75                 _trackview.get_diskstream()->RecordEnableChanged.connect (mem_fun (*this, &StreamView::rec_enable_changed));
76                 _trackview.session().RecordStateChanged.connect (mem_fun (*this, &StreamView::sess_rec_enable_changed));
77         } 
78
79         ColorsChanged.connect (mem_fun (*this, &StreamView::color_handler));
80 }
81
82 StreamView::~StreamView ()
83 {
84         undisplay_diskstream ();
85         delete canvas_group;
86 }
87
88 void
89 StreamView::attach ()
90 {
91         if (_trackview.is_track()) {
92                 display_diskstream (_trackview.get_diskstream());
93         }
94 }
95
96 int
97 StreamView::set_position (gdouble x, gdouble y)
98
99 {
100         canvas_group->property_x() = x;
101         canvas_group->property_y() = y;
102         return 0;
103 }
104
105 int
106 StreamView::set_height (gdouble h)
107 {
108         /* limit the values to something sane-ish */
109
110         if (h < 10.0 || h > 1000.0) {
111                 return -1;
112         }
113
114         if (canvas_rect->property_y2() == h) {
115                 return 0;
116         }
117
118         canvas_rect->property_y2() = h;
119
120         for (RegionViewList::iterator i = region_views.begin(); i != region_views.end(); ++i) {
121                 (*i)->set_height (h);
122         }
123
124         for (vector<RecBoxInfo>::iterator i = rec_rects.begin(); i != rec_rects.end(); ++i) {
125                 RecBoxInfo &recbox = (*i);
126                 recbox.rectangle->property_y2() = h - 1.0;
127         }
128
129         return 0;
130 }
131
132 int 
133 StreamView::set_samples_per_unit (gdouble spp)
134 {
135         RegionViewList::iterator i;
136
137         if (spp < 1.0) {
138                 return -1;
139         }
140
141         _samples_per_unit = spp;
142
143         for (i = region_views.begin(); i != region_views.end(); ++i) {
144                 (*i)->set_samples_per_unit (spp);
145         }
146
147         for (vector<RecBoxInfo>::iterator xi = rec_rects.begin(); xi != rec_rects.end(); ++xi) {
148                 RecBoxInfo &recbox = (*xi);
149                 
150                 gdouble xstart = _trackview.editor.frame_to_pixel ( recbox.start );
151                 gdouble xend = _trackview.editor.frame_to_pixel ( recbox.start + recbox.length );
152
153                 recbox.rectangle->property_x1() = xstart;
154                 recbox.rectangle->property_x2() = xend;
155         }
156
157         return 0;
158 }
159
160 void
161 StreamView::add_region_view (boost::shared_ptr<Region> r)
162 {
163         add_region_view_internal (r, true);
164 }
165
166 void
167 StreamView::remove_region_view (boost::weak_ptr<Region> weak_r)
168 {
169         ENSURE_GUI_THREAD (bind (mem_fun (*this, &StreamView::remove_region_view), weak_r));
170
171         boost::shared_ptr<Region> r (weak_r.lock());
172
173         if (!r) {
174                 return;
175         }
176
177         for (list<RegionView *>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
178                 if (((*i)->region()) == r) {
179                         delete *i;
180                         region_views.erase (i);
181                         break;
182                 }
183         }
184 }
185
186 void
187 StreamView::undisplay_diskstream ()
188 {
189         for (RegionViewList::iterator i = region_views.begin(); i != region_views.end(); ++i) {
190                 delete *i;
191         }
192
193         region_views.clear();
194 }
195
196 void
197 StreamView::display_diskstream (boost::weak_ptr<Diskstream> wds)
198 {
199         boost::shared_ptr<Diskstream> ds = wds.lock();
200
201         if (!ds) {
202                 return;
203         }
204                 
205         playlist_change_connection.disconnect();
206         playlist_changed (wds);
207         playlist_change_connection = ds->PlaylistChanged.connect (bind (mem_fun (*this, &StreamView::playlist_changed), wds));
208 }
209
210 void
211 StreamView::playlist_modified ()
212 {
213         ENSURE_GUI_THREAD (mem_fun (*this, &StreamView::playlist_modified));
214
215         redisplay_diskstream ();
216 }
217
218 void
219 StreamView::playlist_changed (boost::weak_ptr<Diskstream> wptr)
220 {
221         ENSURE_GUI_THREAD (bind (mem_fun (*this, &StreamView::playlist_changed), wptr));
222
223         boost::shared_ptr<Diskstream> ds = wptr.lock();
224         
225         if (!ds) {
226                 return;
227         }
228
229         /* disconnect from old playlist */
230
231         for (vector<sigc::connection>::iterator i = playlist_connections.begin(); i != playlist_connections.end(); ++i) {
232                 (*i).disconnect();
233         }
234         
235         playlist_connections.clear();
236         undisplay_diskstream ();
237
238         /* draw it */
239
240         redisplay_diskstream ();
241
242         /* catch changes */
243
244         playlist_connections.push_back (ds->playlist()->Modified.connect (mem_fun (*this, &StreamView::playlist_modified)));
245 }
246
247 void
248 StreamView::diskstream_changed ()
249 {
250         boost::shared_ptr<Track> t = _trackview.track();
251
252         if (t) {
253                 Gtkmm2ext::UI::instance()->call_slot (bind (mem_fun (*this, &StreamView::display_diskstream), boost::weak_ptr<Diskstream> (t->diskstream())));
254         } else {
255                 Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::undisplay_diskstream));
256         }
257 }
258
259 void
260 StreamView::apply_color (Gdk::Color& color, ColorTarget target)
261
262 {
263         list<RegionView *>::iterator i;
264
265         switch (target) {
266         case RegionColor:
267                 region_color = color;
268                 for (i = region_views.begin(); i != region_views.end(); ++i) {
269                         (*i)->set_color (region_color);
270                 }
271                 break;
272                 
273         case StreamBaseColor:
274                 stream_base_color = RGBA_TO_UINT (
275                         color.get_red_p(), color.get_green_p(), color.get_blue_p(), 255);
276                 canvas_rect->property_fill_color_rgba() = stream_base_color;
277                 break;
278         }
279 }
280
281 void
282 StreamView::region_layered (RegionView* rv)
283 {
284         rv->get_canvas_group()->lower_to_bottom();
285
286         /* don't ever leave it at the bottom, since then it doesn't
287            get events - the  parent group does instead ...
288            we need to raise it above the streamview's 
289            canvas_rect, hence the layer+1 here
290         */
291         rv->get_canvas_group()->raise (rv->region()->layer() + 1);
292 }
293
294 void
295 StreamView::rec_enable_changed ()
296 {
297         Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
298 }
299
300 void
301 StreamView::sess_rec_enable_changed ()
302 {
303         Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
304 }
305
306 void
307 StreamView::transport_changed()
308 {
309         Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
310 }
311
312 void
313 StreamView::transport_looped()
314 {
315         // to force a new rec region
316         rec_active = false;
317         Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
318 }
319
320 void
321 StreamView::update_rec_box ()
322 {
323         if (rec_active && rec_rects.size() > 0) {
324                 /* only update the last box */
325                 RecBoxInfo & rect = rec_rects.back();
326                 nframes_t at = _trackview.get_diskstream()->current_capture_end();
327                 double xstart;
328                 double xend;
329                 
330                 switch (_trackview.track()->mode()) {
331                 case Normal:
332                         rect.length = at - rect.start;
333                         xstart = _trackview.editor.frame_to_pixel (rect.start);
334                         xend = _trackview.editor.frame_to_pixel (at);
335                         break;
336                         
337                 case Destructive:
338                         rect.length = 2;
339                         xstart = _trackview.editor.frame_to_pixel (_trackview.get_diskstream()->current_capture_start());
340                         xend = _trackview.editor.frame_to_pixel (at);
341                         break;
342                 }
343                 
344                 rect.rectangle->property_x1() = xstart;
345                 rect.rectangle->property_x2() = xend;
346         }
347 }
348         
349 RegionView*
350 StreamView::find_view (boost::shared_ptr<const Region> region)
351 {
352         for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
353
354                 if ((*i)->region() == region) {
355                         return *i;
356                 }
357         }
358         return 0;
359 }
360         
361 void
362 StreamView::foreach_regionview (sigc::slot<void,RegionView*> slot)
363 {
364         for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
365                 slot (*i);
366         }
367 }
368
369 void
370 StreamView::set_selected_regionviews (RegionSelection& regions)
371 {
372         bool selected;
373
374         for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
375                 
376                 selected = false;
377                 
378                 for (RegionSelection::iterator ii = regions.begin(); ii != regions.end(); ++ii) {
379                         if (*i == *ii) {
380                                 selected = true;
381                         }
382                 }
383
384                 (*i)->set_selected (selected);
385         }
386 }
387
388 void
389 StreamView::get_selectables (nframes_t start, nframes_t end, list<Selectable*>& results)
390 {
391         for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
392                 if ((*i)->region()->coverage(start, end) != OverlapNone) {
393                         results.push_back (*i);
394                 }
395         }
396 }
397
398 void
399 StreamView::get_inverted_selectables (Selection& sel, list<Selectable*>& results)
400 {
401         for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
402                 if (!sel.regions.contains (*i)) {
403                         results.push_back (*i);
404                 }
405         }
406 }
407