fixes for OS X compile of last commit
[ardour2.git] / gtk2_ardour / streamview.cc
blobce532ba97a29e86c8f74e44bd353ef6a92f97ee2
1 /*
2 Copyright (C) 2001, 2006 Paul Davis
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.
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.
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.
19 #include <cmath>
21 #include <gtkmm.h>
23 #include <gtkmm2ext/gtk_ui.h>
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>
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"
44 using namespace ARDOUR;
45 using namespace PBD;
46 using namespace Editing;
48 StreamView::StreamView (RouteTimeAxisView& tv)
49 : _trackview (tv)
50 , _background_group(new ArdourCanvas::Group(*_trackview.canvas_background))
51 , canvas_group(new ArdourCanvas::Group(*_trackview.canvas_display))
52 , _samples_per_unit(_trackview.editor.get_current_zoom())
53 , rec_updating(false)
54 , rec_active(false)
55 , use_rec_regions(tv.editor.show_waveforms_recording())
56 , region_color(_trackview.color())
57 , stream_base_color(0xFFFFFFFF)
59 /* set_position() will position the group */
61 canvas_rect = new ArdourCanvas::SimpleRect (*_background_group);
62 canvas_rect->property_x1() = 0.0;
63 canvas_rect->property_y1() = 0.0;
64 canvas_rect->property_x2() = _trackview.editor.get_physical_screen_width();
65 canvas_rect->property_y2() = (double) tv.current_height();
67 canvas_rect->property_outline_what() = (guint32) (0x1|0x2|0x8); // outline ends and bottom
68 // (Fill/Outline colours set in derived classes)
70 canvas_rect->signal_event().connect (bind (mem_fun (_trackview.editor, &PublicEditor::canvas_stream_view_event), canvas_rect, &_trackview));
72 if (_trackview.is_track()) {
73 _trackview.track()->DiskstreamChanged.connect (mem_fun (*this, &StreamView::diskstream_changed));
74 _trackview.session().TransportStateChange.connect (mem_fun (*this, &StreamView::transport_changed));
75 _trackview.session().TransportLooped.connect (mem_fun (*this, &StreamView::transport_looped));
76 _trackview.get_diskstream()->RecordEnableChanged.connect (mem_fun (*this, &StreamView::rec_enable_changed));
77 _trackview.session().RecordStateChanged.connect (mem_fun (*this, &StreamView::sess_rec_enable_changed));
80 ColorsChanged.connect (mem_fun (*this, &StreamView::color_handler));
83 StreamView::~StreamView ()
85 undisplay_diskstream ();
86 delete canvas_group;
89 void
90 StreamView::attach ()
92 if (_trackview.is_track()) {
93 display_diskstream (_trackview.get_diskstream());
97 int
98 StreamView::set_position (gdouble x, gdouble y)
101 canvas_group->property_x() = x;
102 canvas_group->property_y() = y;
103 return 0;
107 StreamView::set_height (gdouble h)
109 /* limit the values to something sane-ish */
111 if (h < 10.0 || h > 1000.0) {
112 return -1;
115 if (canvas_rect->property_y2() == h) {
116 return 0;
119 canvas_rect->property_y2() = h;
121 for (RegionViewList::iterator i = region_views.begin(); i != region_views.end(); ++i) {
122 (*i)->set_height (h);
125 for (vector<RecBoxInfo>::iterator i = rec_rects.begin(); i != rec_rects.end(); ++i) {
126 RecBoxInfo &recbox = (*i);
127 recbox.rectangle->property_y2() = h - 1.0;
130 return 0;
133 int
134 StreamView::set_samples_per_unit (gdouble spp)
136 RegionViewList::iterator i;
138 if (spp < 1.0) {
139 return -1;
142 _samples_per_unit = spp;
144 for (i = region_views.begin(); i != region_views.end(); ++i) {
145 (*i)->set_samples_per_unit (spp);
148 for (vector<RecBoxInfo>::iterator xi = rec_rects.begin(); xi != rec_rects.end(); ++xi) {
149 RecBoxInfo &recbox = (*xi);
151 gdouble xstart = _trackview.editor.frame_to_pixel ( recbox.start );
152 gdouble xend = _trackview.editor.frame_to_pixel ( recbox.start + recbox.length );
154 recbox.rectangle->property_x1() = xstart;
155 recbox.rectangle->property_x2() = xend;
158 return 0;
161 void
162 StreamView::add_region_view (boost::shared_ptr<Region> r)
164 add_region_view_internal (r, true);
167 void
168 StreamView::remove_region_view (boost::weak_ptr<Region> weak_r)
170 ENSURE_GUI_THREAD (bind (mem_fun (*this, &StreamView::remove_region_view), weak_r));
172 boost::shared_ptr<Region> r (weak_r.lock());
174 if (!r) {
175 return;
178 for (list<RegionView *>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
179 if (((*i)->region()) == r) {
180 delete *i;
181 region_views.erase (i);
182 break;
187 void
188 StreamView::undisplay_diskstream ()
190 for (RegionViewList::iterator i = region_views.begin(); i != region_views.end(); ++i) {
191 delete *i;
194 region_views.clear();
197 void
198 StreamView::display_diskstream (boost::weak_ptr<Diskstream> wds)
200 boost::shared_ptr<Diskstream> ds = wds.lock();
202 if (!ds) {
203 return;
206 playlist_change_connection.disconnect();
207 playlist_changed (wds);
208 playlist_change_connection = ds->PlaylistChanged.connect (bind (mem_fun (*this, &StreamView::playlist_changed), wds));
211 void
212 StreamView::playlist_modified ()
214 ENSURE_GUI_THREAD (mem_fun (*this, &StreamView::playlist_modified));
216 redisplay_diskstream ();
219 void
220 StreamView::playlist_changed (boost::weak_ptr<Diskstream> wptr)
222 ENSURE_GUI_THREAD (bind (mem_fun (*this, &StreamView::playlist_changed), wptr));
224 boost::shared_ptr<Diskstream> ds = wptr.lock();
226 if (!ds) {
227 return;
230 /* disconnect from old playlist */
232 for (vector<sigc::connection>::iterator i = playlist_connections.begin(); i != playlist_connections.end(); ++i) {
233 (*i).disconnect();
236 playlist_connections.clear();
237 undisplay_diskstream ();
239 /* draw it */
241 redisplay_diskstream ();
243 /* catch changes */
245 playlist_connections.push_back (ds->playlist()->Modified.connect (mem_fun (*this, &StreamView::playlist_modified)));
248 void
249 StreamView::diskstream_changed ()
251 boost::shared_ptr<Track> t = _trackview.track();
253 if (t) {
254 Gtkmm2ext::UI::instance()->call_slot (bind (mem_fun (*this, &StreamView::display_diskstream), boost::weak_ptr<Diskstream> (t->diskstream())));
255 } else {
256 Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::undisplay_diskstream));
260 void
261 StreamView::apply_color (Gdk::Color& color, ColorTarget target)
264 list<RegionView *>::iterator i;
266 switch (target) {
267 case RegionColor:
268 region_color = color;
269 for (i = region_views.begin(); i != region_views.end(); ++i) {
270 (*i)->set_color (region_color);
272 break;
274 case StreamBaseColor:
275 stream_base_color = RGBA_TO_UINT (
276 color.get_red_p(), color.get_green_p(), color.get_blue_p(), 255);
277 canvas_rect->property_fill_color_rgba() = stream_base_color;
278 break;
282 void
283 StreamView::region_layered (RegionView* rv)
285 rv->get_canvas_group()->lower_to_bottom();
287 /* don't ever leave it at the bottom, since then it doesn't
288 get events - the parent group does instead ...
290 rv->get_canvas_group()->raise (rv->region()->layer());
293 void
294 StreamView::rec_enable_changed ()
296 Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
299 void
300 StreamView::sess_rec_enable_changed ()
302 Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
305 void
306 StreamView::transport_changed()
308 Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
311 void
312 StreamView::transport_looped()
314 // to force a new rec region
315 rec_active = false;
316 Gtkmm2ext::UI::instance()->call_slot (mem_fun (*this, &StreamView::setup_rec_box));
319 void
320 StreamView::update_rec_box ()
322 if (rec_active && rec_rects.size() > 0) {
323 /* only update the last box */
324 RecBoxInfo & rect = rec_rects.back();
325 nframes_t at = _trackview.get_diskstream()->current_capture_end();
326 double xstart;
327 double xend;
329 switch (_trackview.track()->mode()) {
330 case Normal:
331 rect.length = at - rect.start;
332 xstart = _trackview.editor.frame_to_pixel (rect.start);
333 xend = _trackview.editor.frame_to_pixel (at);
334 break;
336 case Destructive:
337 rect.length = 2;
338 xstart = _trackview.editor.frame_to_pixel (_trackview.get_diskstream()->current_capture_start());
339 xend = _trackview.editor.frame_to_pixel (at);
340 break;
343 rect.rectangle->property_x1() = xstart;
344 rect.rectangle->property_x2() = xend;
348 RegionView*
349 StreamView::find_view (boost::shared_ptr<const Region> region)
351 for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
353 if ((*i)->region() == region) {
354 return *i;
357 return 0;
360 void
361 StreamView::foreach_regionview (sigc::slot<void,RegionView*> slot)
363 for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
364 slot (*i);
368 void
369 StreamView::set_selected_regionviews (RegionSelection& regions)
371 bool selected;
373 for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
375 selected = false;
377 for (RegionSelection::iterator ii = regions.begin(); ii != regions.end(); ++ii) {
378 if (*i == *ii) {
379 selected = true;
383 (*i)->set_selected (selected);
387 void
388 StreamView::get_selectables (nframes_t start, nframes_t end, list<Selectable*>& results)
390 for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
391 if ((*i)->region()->coverage(start, end) != OverlapNone) {
392 results.push_back (*i);
397 void
398 StreamView::get_inverted_selectables (Selection& sel, list<Selectable*>& results)
400 for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
401 if (!sel.regions.contains (*i)) {
402 results.push_back (*i);