most of the 2.X->3.0 commit (up to rev 4299) except for gtk2_ardour/editor_canvas...
[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, ArdourCanvas::Group* group)
49         : _trackview (tv)
50         , owns_canvas_group(group == 0)
51         , _background_group(new ArdourCanvas::Group(*_trackview.canvas_background))
52         , canvas_group(group ? group : new ArdourCanvas::Group(*_trackview.canvas_display))
53         , _samples_per_unit(_trackview.editor.get_current_zoom())
54         , rec_updating(false)
55         , rec_active(false)
56         , use_rec_regions(tv.editor.show_waveforms_recording())
57         , region_color(_trackview.color())
58         , stream_base_color(0xFFFFFFFF)
59         , layers(1)
60         , height(tv.height)
61         , layer_display(Overlaid)
62         , last_rec_data_frame(0)
63 {
64         /* set_position() will position the group */
65
66         canvas_rect = new ArdourCanvas::SimpleRect (*_background_group);
67         canvas_rect->property_x1() = 0.0;
68         canvas_rect->property_y1() = 0.0;
69         canvas_rect->property_x2() = _trackview.editor.get_physical_screen_width();
70         canvas_rect->property_y2() = (double) tv.current_height();
71         canvas_rect->raise(1); // raise above tempo lines
72
73         // DR-way
74         canvas_rect->property_outline_what() = (guint32) (0x2|0x8);  // outline RHS and bottom 
75         // 2.0 way
76         //canvas_rect->property_outline_what() = (guint32) (0x1|0x2|0x8);  // outline ends and bottom 
77         // (Fill/Outline colours set in derived classes)
78
79         canvas_rect->signal_event().connect (bind (mem_fun (_trackview.editor, &PublicEditor::canvas_stream_view_event), canvas_rect, &_trackview));
80
81         if (_trackview.is_track()) {
82                 _trackview.track()->DiskstreamChanged.connect (mem_fun (*this, &StreamView::diskstream_changed));
83                 _trackview.session().TransportStateChange.connect (mem_fun (*this, &StreamView::transport_changed));
84                 _trackview.session().TransportLooped.connect (mem_fun (*this, &StreamView::transport_looped));
85                 _trackview.get_diskstream()->RecordEnableChanged.connect (mem_fun (*this, &StreamView::rec_enable_changed));
86                 _trackview.session().RecordStateChanged.connect (mem_fun (*this, &StreamView::sess_rec_enable_changed));
87         } 
88
89         ColorsChanged.connect (mem_fun (*this, &StreamView::color_handler));
90 }
91
92 StreamView::~StreamView ()
93 {
94         undisplay_diskstream ();
95         
96         delete canvas_rect;
97         
98         if (owns_canvas_group) {
99                 delete canvas_group;
100         }
101 }
102
103 void
104 StreamView::attach ()
105 {
106         if (_trackview.is_track()) {
107                 display_diskstream (_trackview.get_diskstream());
108         }
109 }
110
111 int
112 StreamView::set_position (gdouble x, gdouble y)
113 {
114         canvas_group->property_x() = x;
115         canvas_group->property_y() = y;
116         return 0;
117 }
118
119 int
120 StreamView::set_height (double h)
121 {
122         /* limit the values to something sane-ish */
123         if (h < 10.0 || h > 1000.0) {
124                 return -1;
125         }
126
127         if (canvas_rect->property_y2() == h) {
128                 return 0;
129         }
130
131         height = h;
132         update_contents_height ();
133         return 0;
134 }
135
136 int 
137 StreamView::set_samples_per_unit (gdouble spp)
138 {
139         RegionViewList::iterator i;
140
141         if (spp < 1.0) {
142                 return -1;
143         }
144
145         _samples_per_unit = spp;
146
147         for (i = region_views.begin(); i != region_views.end(); ++i) {
148                 (*i)->set_samples_per_unit (spp);
149         }
150
151         for (vector<RecBoxInfo>::iterator xi = rec_rects.begin(); xi != rec_rects.end(); ++xi) {
152                 RecBoxInfo &recbox = (*xi);
153                 
154                 gdouble xstart = _trackview.editor.frame_to_pixel ( recbox.start );
155                 gdouble xend = _trackview.editor.frame_to_pixel ( recbox.start + recbox.length );
156
157                 recbox.rectangle->property_x1() = xstart;
158                 recbox.rectangle->property_x2() = xend;
159         }
160
161         return 0;
162 }
163
164 void
165 StreamView::add_region_view (boost::shared_ptr<Region> r)
166 {
167         // ENSURE_GUI_THREAD (bind (mem_fun (*this, &AudioStreamView::add_region_view), r));
168
169         add_region_view_internal (r, true);
170 }
171
172 void
173 StreamView::remove_region_view (boost::weak_ptr<Region> weak_r)
174 {
175         ENSURE_GUI_THREAD (bind (mem_fun (*this, &StreamView::remove_region_view), weak_r));
176
177         boost::shared_ptr<Region> r (weak_r.lock());
178
179         if (!r) {
180                 return;
181         }
182
183         for (list<RegionView *>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
184                 if (((*i)->region()) == r) {
185                         RegionView* rv = *i;
186                         region_views.erase (i);
187                         delete rv;
188                         break;
189                 }
190         }
191 }
192
193 void
194 StreamView::undisplay_diskstream ()
195 {
196         for (RegionViewList::iterator i = region_views.begin(); i != region_views.end() ; ) {
197                 RegionViewList::iterator next = i;
198                 ++next;
199                 delete *i;
200                 i = next;
201         }
202
203         region_views.clear();
204 }
205
206 void
207 StreamView::display_diskstream (boost::shared_ptr<Diskstream> ds)
208 {
209         playlist_change_connection.disconnect();
210         playlist_changed (ds);
211         playlist_change_connection = ds->PlaylistChanged.connect (bind (mem_fun (*this, &StreamView::playlist_changed), ds));
212 }
213
214 void
215 StreamView::playlist_modified_weak (boost::weak_ptr<Diskstream> ds)
216 {
217         boost::shared_ptr<Diskstream> sp (ds.lock());
218         if (!sp) {
219                 return;
220         }
221
222         playlist_modified (sp);
223 }
224
225 void
226 StreamView::playlist_modified (boost::shared_ptr<Diskstream> ds)
227 {
228         /* we do not allow shared_ptr<T> to be bound to slots */
229         ENSURE_GUI_THREAD (bind (mem_fun (*this, &StreamView::playlist_modified_weak), ds));
230
231         /* update layers count and the y positions and heights of our regions */
232         if (ds->playlist()) {
233                 layers = ds->playlist()->top_layer() + 1;
234                 update_contents_height ();
235                 redisplay_diskstream ();
236         }
237 }
238
239 void
240 StreamView::playlist_changed (boost::shared_ptr<Diskstream> ds)
241 {
242         /* XXX: binding to a shared_ptr, is this ok? */
243         ENSURE_GUI_THREAD (bind (mem_fun (*this, &StreamView::playlist_changed), ds));
244
245         /* disconnect from old playlist */
246
247         for (vector<sigc::connection>::iterator i = playlist_connections.begin(); i != playlist_connections.end(); ++i) {
248                 (*i).disconnect();
249         }
250         
251         playlist_connections.clear();
252         undisplay_diskstream ();
253
254         /* update layers count and the y positions and heights of our regions */
255         layers = ds->playlist()->top_layer() + 1;
256         update_contents_height ();
257         
258         /* draw it */
259         redisplay_diskstream ();
260
261         /* catch changes */
262
263         playlist_connections.push_back (ds->playlist()->Modified.connect (bind (mem_fun (*this, &StreamView::playlist_modified_weak), ds)));
264 }
265
266 void
267 StreamView::diskstream_changed ()
268 {
269         boost::shared_ptr<Track> t;
270
271         if ((t = _trackview.track()) != 0) {
272                 Gtkmm2ext::UI::instance()->call_slot (bind (mem_fun (*this, &StreamView::display_diskstream), t->diskstream()));
273         } else {
274                 Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::undisplay_diskstream));
275         }
276 }
277
278 void
279 StreamView::apply_color (Gdk::Color& color, ColorTarget target)
280
281 {
282         list<RegionView *>::iterator i;
283
284         switch (target) {
285         case RegionColor:
286                 region_color = color;
287                 for (i = region_views.begin(); i != region_views.end(); ++i) {
288                         (*i)->set_color (region_color);
289                 }
290                 break;
291                 
292         case StreamBaseColor:
293                 stream_base_color = RGBA_TO_UINT (
294                         color.get_red_p(), color.get_green_p(), color.get_blue_p(), 255);
295                 canvas_rect->property_fill_color_rgba() = stream_base_color;
296                 break;
297         }
298 }
299
300 void
301 StreamView::region_layered (RegionView* rv)
302 {
303         /* don't ever leave it at the bottom, since then it doesn't
304            get events - the  parent group does instead ...
305         */
306         rv->get_canvas_group()->raise (rv->region()->layer());
307 }
308
309 void
310 StreamView::rec_enable_changed ()
311 {
312         Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
313 }
314
315 void
316 StreamView::sess_rec_enable_changed ()
317 {
318         Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
319 }
320
321 void
322 StreamView::transport_changed()
323 {
324         Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
325 }
326
327 void
328 StreamView::transport_looped()
329 {
330         // to force a new rec region
331         rec_active = false;
332         Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
333 }
334
335 void
336 StreamView::update_rec_box ()
337 {
338         if (rec_active && rec_rects.size() > 0) {
339                 /* only update the last box */
340                 RecBoxInfo & rect = rec_rects.back();
341                 nframes_t at = _trackview.get_diskstream()->current_capture_end();
342                 double xstart;
343                 double xend;
344                 
345                 switch (_trackview.track()->mode()) {
346                 case Normal:
347                         rect.length = at - rect.start;
348                         xstart = _trackview.editor.frame_to_pixel (rect.start);
349                         xend = _trackview.editor.frame_to_pixel (at);
350                         break;
351                         
352                 case Destructive:
353                         rect.length = 2;
354                         xstart = _trackview.editor.frame_to_pixel (_trackview.get_diskstream()->current_capture_start());
355                         xend = _trackview.editor.frame_to_pixel (at);
356                         break;
357                 }
358                 
359                 rect.rectangle->property_x1() = xstart;
360                 rect.rectangle->property_x2() = xend;
361         }
362 }
363         
364 RegionView*
365 StreamView::find_view (boost::shared_ptr<const Region> region)
366 {
367         for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
368
369                 if ((*i)->region() == region) {
370                         return *i;
371                 }
372         }
373         return 0;
374 }
375         
376 void
377 StreamView::foreach_regionview (sigc::slot<void,RegionView*> slot)
378 {
379         for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
380                 slot (*i);
381         }
382 }
383
384 void
385 StreamView::set_selected_regionviews (RegionSelection& regions)
386 {
387         bool selected;
388
389         for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
390                 
391                 selected = false;
392                 
393                 for (RegionSelection::iterator ii = regions.begin(); ii != regions.end(); ++ii) {
394                         if (*i == *ii) {
395                                 selected = true;
396                         }
397                 }
398
399                 (*i)->set_selected (selected);
400         }
401 }
402
403 void
404 StreamView::get_selectables (nframes_t start, nframes_t end, list<Selectable*>& results)
405 {
406         for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
407                 if ((*i)->region()->coverage(start, end) != OverlapNone) {
408                         results.push_back (*i);
409                 }
410         }
411 }
412
413 void
414 StreamView::get_inverted_selectables (Selection& sel, list<Selectable*>& results)
415 {
416         for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
417                 if (!sel.regions.contains (*i)) {
418                         results.push_back (*i);
419                 }
420         }
421 }
422
423 void
424 StreamView::update_contents_height ()
425 {
426         canvas_rect->property_y2() = height;
427
428         const double lh = height / layers;
429
430         for (RegionViewList::iterator i = region_views.begin(); i != region_views.end(); ++i) {
431                 switch (layer_display) {
432                 case Overlaid:
433                         (*i)->set_height (height);
434                         break;
435                 case Stacked:
436                         cout << "FIXME: Stacked regions: set y position" << endl;
437                         //double const y = (*i)->region()->layer() * lh;
438                         (*i)->set_height (lh);
439                         break;
440                 }
441         }
442
443         for (vector<RecBoxInfo>::iterator i = rec_rects.begin(); i != rec_rects.end(); ++i) {
444                 i->rectangle->property_y2() = height - 1.0;
445         }
446 }
447
448 void
449 StreamView::set_layer_display (LayerDisplay d)
450 {
451         layer_display = d;
452         update_contents_height ();
453 }