2006-07-23 08:03:19 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2001, 2006 Paul Davis
|
2006-07-23 08:03:19 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*/
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <cmath>
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
2010-09-26 09:33:39 -04:00
|
|
|
#include <gtkmm2ext/utils.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/playlist.h"
|
|
|
|
#include "ardour/region.h"
|
|
|
|
#include "ardour/track.h"
|
2009-10-30 11:30:22 -04:00
|
|
|
#include "ardour/session.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "streamview.h"
|
2010-12-02 10:51:42 -05:00
|
|
|
#include "global_signals.h"
|
2006-08-01 13:19:38 -04:00
|
|
|
#include "region_view.h"
|
2006-07-23 08:03:19 -04:00
|
|
|
#include "route_time_axis.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "canvas-waveview.h"
|
|
|
|
#include "canvas-simplerect.h"
|
|
|
|
#include "region_selection.h"
|
|
|
|
#include "selection.h"
|
|
|
|
#include "public_editor.h"
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "rgb_macros.h"
|
|
|
|
#include "gui_thread.h"
|
2005-11-28 17:36:26 -05:00
|
|
|
#include "utils.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-05-12 13:03:42 -04:00
|
|
|
using namespace std;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace ARDOUR;
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 12:01:34 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Editing;
|
|
|
|
|
2010-05-22 22:42:37 -04:00
|
|
|
StreamView::StreamView (RouteTimeAxisView& tv, ArdourCanvas::Group* background_group, ArdourCanvas::Group* canvas_group)
|
2005-09-25 14:42:24 -04:00
|
|
|
: _trackview (tv)
|
2010-05-22 22:42:37 -04:00
|
|
|
, owns_background_group (background_group == 0)
|
|
|
|
, owns_canvas_group (canvas_group == 0)
|
|
|
|
, _background_group (background_group ? background_group : new ArdourCanvas::Group (*_trackview.canvas_background()))
|
|
|
|
, _canvas_group (canvas_group ? canvas_group : new ArdourCanvas::Group(*_trackview.canvas_display()))
|
2009-07-09 13:58:13 -04:00
|
|
|
, _samples_per_unit (_trackview.editor().get_current_zoom ())
|
2006-08-01 20:22:16 -04:00
|
|
|
, rec_updating(false)
|
|
|
|
, rec_active(false)
|
|
|
|
, stream_base_color(0xFFFFFFFF)
|
2009-01-05 22:18:09 -05:00
|
|
|
, _layers (1)
|
|
|
|
, _layer_display (Overlaid)
|
2009-07-09 13:58:13 -04:00
|
|
|
, height(tv.height)
|
2006-08-14 04:44:14 -04:00
|
|
|
, last_rec_data_frame(0)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
/* set_position() will position the group */
|
2005-11-12 22:53:51 -05:00
|
|
|
|
2010-05-22 22:42:37 -04:00
|
|
|
canvas_rect = new ArdourCanvas::SimpleRect (*_background_group);
|
2005-11-27 17:35:04 -05:00
|
|
|
canvas_rect->property_x1() = 0.0;
|
|
|
|
canvas_rect->property_y1() = 0.0;
|
2010-09-26 09:33:39 -04:00
|
|
|
canvas_rect->property_x2() = Gtkmm2ext::physical_screen_width (_trackview.editor().get_window());
|
2009-07-09 13:58:13 -04:00
|
|
|
canvas_rect->property_y2() = (double) tv.current_height();
|
2008-09-14 19:08:19 -04:00
|
|
|
canvas_rect->raise(1); // raise above tempo lines
|
2008-09-10 17:27:39 -04:00
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
canvas_rect->property_outline_what() = (guint32) (0x2|0x8); // outline RHS and bottom
|
2011-03-14 13:41:02 -04:00
|
|
|
canvas_rect->property_outline_color_rgba() = RGBA_TO_UINT (0, 0, 0, 255);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
canvas_rect->signal_event().connect (sigc::bind (
|
|
|
|
sigc::mem_fun (_trackview.editor(), &PublicEditor::canvas_stream_view_event),
|
2009-07-09 13:58:13 -04:00
|
|
|
canvas_rect, &_trackview));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
if (_trackview.is_track()) {
|
2010-03-30 11:18:43 -04:00
|
|
|
_trackview.track()->DiskstreamChanged.connect (*this, invalidator (*this), boost::bind (&StreamView::diskstream_changed, this), gui_context());
|
2010-04-21 16:42:22 -04:00
|
|
|
_trackview.track()->RecordEnableChanged.connect (*this, invalidator (*this), boost::bind (&StreamView::rec_enable_changed, this), gui_context());
|
2009-12-17 13:24:23 -05:00
|
|
|
|
2010-03-30 11:18:43 -04:00
|
|
|
_trackview.session()->TransportStateChange.connect (*this, invalidator (*this), boost::bind (&StreamView::transport_changed, this), gui_context());
|
|
|
|
_trackview.session()->TransportLooped.connect (*this, invalidator (*this), boost::bind (&StreamView::transport_looped, this), gui_context());
|
|
|
|
_trackview.session()->RecordStateChanged.connect (*this, invalidator (*this), boost::bind (&StreamView::sess_rec_enable_changed, this), gui_context());
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-12-11 18:29:48 -05:00
|
|
|
ColorsChanged.connect (sigc::mem_fun (*this, &StreamView::color_handler));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
StreamView::~StreamView ()
|
|
|
|
{
|
2010-04-21 16:42:22 -04:00
|
|
|
undisplay_track ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-02-21 20:45:29 -05:00
|
|
|
delete canvas_rect;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-05-22 22:42:37 -04:00
|
|
|
if (owns_background_group) {
|
|
|
|
delete _background_group;
|
|
|
|
}
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2008-02-21 20:45:29 -05:00
|
|
|
if (owns_canvas_group) {
|
2010-05-22 22:42:37 -04:00
|
|
|
delete _canvas_group;
|
2008-02-21 20:45:29 -05:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StreamView::attach ()
|
|
|
|
{
|
2009-07-09 13:58:13 -04:00
|
|
|
if (_trackview.is_track()) {
|
2010-04-21 16:42:22 -04:00
|
|
|
display_track (_trackview.track ());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
StreamView::set_position (gdouble x, gdouble y)
|
|
|
|
{
|
2010-05-22 22:42:37 -04:00
|
|
|
_canvas_group->property_x() = x;
|
|
|
|
_canvas_group->property_y() = y;
|
2005-09-25 14:42:24 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2007-05-17 06:41:14 -04:00
|
|
|
StreamView::set_height (double h)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
/* limit the values to something sane-ish */
|
|
|
|
if (h < 10.0 || h > 1000.0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2007-04-29 13:23:11 -04:00
|
|
|
if (canvas_rect->property_y2() == h) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-05-17 06:41:14 -04:00
|
|
|
height = h;
|
2009-05-13 11:33:41 -04:00
|
|
|
canvas_rect->property_y2() = height;
|
2008-09-19 15:32:10 -04:00
|
|
|
update_contents_height ();
|
2009-06-13 13:52:51 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
int
|
2005-09-25 14:42:24 -04:00
|
|
|
StreamView::set_samples_per_unit (gdouble spp)
|
|
|
|
{
|
2006-07-23 08:03:19 -04:00
|
|
|
RegionViewList::iterator i;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
if (spp < 1.0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
_samples_per_unit = spp;
|
|
|
|
|
|
|
|
for (i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
(*i)->set_samples_per_unit (spp);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (vector<RecBoxInfo>::iterator xi = rec_rects.begin(); xi != rec_rects.end(); ++xi) {
|
|
|
|
RecBoxInfo &recbox = (*xi);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
gdouble xstart = _trackview.editor().frame_to_pixel (recbox.start);
|
|
|
|
gdouble xend = _trackview.editor().frame_to_pixel (recbox.start + recbox.length);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 17:35:04 -05:00
|
|
|
recbox.rectangle->property_x1() = xstart;
|
|
|
|
recbox.rectangle->property_x2() = xend;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2009-01-01 13:07:41 -05:00
|
|
|
update_coverage_frames ();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-05-13 17:34:09 -04:00
|
|
|
void
|
2010-01-25 15:34:09 -05:00
|
|
|
StreamView::add_region_view (boost::weak_ptr<Region> wr)
|
2009-05-13 17:34:09 -04:00
|
|
|
{
|
2010-01-25 15:34:09 -05:00
|
|
|
boost::shared_ptr<Region> r (wr.lock());
|
|
|
|
if (!r) {
|
|
|
|
return;
|
2009-05-13 17:34:09 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-08-02 17:08:18 -04:00
|
|
|
add_region_view_internal (r, true);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2011-12-29 17:14:15 -05:00
|
|
|
if (_layer_display == Stacked || _layer_display == Expanded) {
|
2009-05-13 11:33:41 -04:00
|
|
|
update_contents_height ();
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-10-21 15:01:50 -04:00
|
|
|
StreamView::remove_region_view (boost::weak_ptr<Region> weak_r)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-12-11 18:29:48 -05:00
|
|
|
ENSURE_GUI_THREAD (*this, &StreamView::remove_region_view, weak_r)
|
2006-10-21 15:01:50 -04:00
|
|
|
|
|
|
|
boost::shared_ptr<Region> r (weak_r.lock());
|
|
|
|
|
|
|
|
if (!r) {
|
|
|
|
return;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
for (list<RegionView *>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
2006-08-29 17:21:48 -04:00
|
|
|
if (((*i)->region()) == r) {
|
2008-02-21 20:45:29 -05:00
|
|
|
RegionView* rv = *i;
|
2005-09-25 14:42:24 -04:00
|
|
|
region_views.erase (i);
|
2008-02-21 20:45:29 -05:00
|
|
|
delete rv;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-01-30 08:24:41 -05:00
|
|
|
|
|
|
|
RegionViewRemoved (); /* EMIT SIGNAL */
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-04-21 16:42:22 -04:00
|
|
|
StreamView::undisplay_track ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-02-21 20:45:29 -05:00
|
|
|
for (RegionViewList::iterator i = region_views.begin(); i != region_views.end() ; ) {
|
|
|
|
RegionViewList::iterator next = i;
|
|
|
|
++next;
|
2005-09-25 14:42:24 -04:00
|
|
|
delete *i;
|
2008-02-21 20:45:29 -05:00
|
|
|
i = next;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
region_views.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2010-04-21 16:42:22 -04:00
|
|
|
StreamView::display_track (boost::shared_ptr<Track> tr)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-01-25 15:34:09 -05:00
|
|
|
playlist_switched_connection.disconnect();
|
2010-04-21 16:42:22 -04:00
|
|
|
playlist_switched (tr);
|
|
|
|
tr->PlaylistChanged.connect (playlist_switched_connection, invalidator (*this), boost::bind (&StreamView::playlist_switched, this, boost::weak_ptr<Track> (tr)), gui_context());
|
2007-05-17 06:41:14 -04:00
|
|
|
}
|
|
|
|
|
2009-02-15 15:31:05 -05:00
|
|
|
void
|
|
|
|
StreamView::layer_regions()
|
|
|
|
{
|
|
|
|
// In one traversal of the region view list:
|
|
|
|
// - Build a list of region views sorted by layer
|
|
|
|
// - Remove invalid views from the actual region view list
|
|
|
|
RegionViewList copy;
|
|
|
|
list<RegionView*>::iterator i, tmp;
|
|
|
|
for (i = region_views.begin(); i != region_views.end(); ) {
|
|
|
|
tmp = i;
|
|
|
|
tmp++;
|
|
|
|
|
|
|
|
if (!(*i)->is_valid()) {
|
|
|
|
delete *i;
|
|
|
|
region_views.erase (i);
|
|
|
|
i = tmp;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
(*i)->enable_display(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (copy.size() == 0) {
|
|
|
|
copy.push_front((*i));
|
|
|
|
i = tmp;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
RegionViewList::iterator k = copy.begin();
|
|
|
|
RegionViewList::iterator l = copy.end();
|
|
|
|
l--;
|
|
|
|
|
|
|
|
if ((*i)->region()->layer() <= (*k)->region()->layer()) {
|
|
|
|
copy.push_front((*i));
|
|
|
|
i = tmp;
|
|
|
|
continue;
|
|
|
|
} else if ((*i)->region()->layer() >= (*l)->region()->layer()) {
|
|
|
|
copy.push_back((*i));
|
|
|
|
i = tmp;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (RegionViewList::iterator j = copy.begin(); j != copy.end(); ++j) {
|
|
|
|
if ((*j)->region()->layer() >= (*i)->region()->layer()) {
|
|
|
|
copy.insert(j, (*i));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
i = tmp;
|
|
|
|
}
|
|
|
|
|
2009-12-12 07:33:36 -05:00
|
|
|
// Fix canvas layering by raising each to the top in the sorted order.
|
2009-02-15 15:31:05 -05:00
|
|
|
for (RegionViewList::iterator i = copy.begin(); i != copy.end(); ++i) {
|
2009-12-12 07:33:36 -05:00
|
|
|
(*i)->get_canvas_group()->raise_to_top ();
|
2009-02-15 15:31:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-16 00:13:05 -05:00
|
|
|
void
|
2010-04-21 16:42:22 -04:00
|
|
|
StreamView::playlist_layered (boost::weak_ptr<Track> wtr)
|
2009-02-16 00:13:05 -05:00
|
|
|
{
|
2010-04-21 16:42:22 -04:00
|
|
|
boost::shared_ptr<Track> tr (wtr.lock());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-04-21 16:42:22 -04:00
|
|
|
if (!tr) {
|
2010-01-25 15:34:09 -05:00
|
|
|
return;
|
2009-02-16 00:13:05 -05:00
|
|
|
}
|
2007-05-17 06:41:14 -04:00
|
|
|
|
|
|
|
/* update layers count and the y positions and heights of our regions */
|
2010-04-21 16:42:22 -04:00
|
|
|
if (tr->playlist()) {
|
|
|
|
_layers = tr->playlist()->top_layer() + 1;
|
2009-08-23 21:01:18 -04:00
|
|
|
}
|
|
|
|
|
2011-12-29 17:14:15 -05:00
|
|
|
if (_layer_display == Stacked) {
|
2008-09-19 15:32:10 -04:00
|
|
|
update_contents_height ();
|
2008-12-31 13:44:32 -05:00
|
|
|
update_coverage_frames ();
|
2009-12-12 07:33:36 -05:00
|
|
|
} else {
|
|
|
|
/* layering has probably been modified. reflect this in the canvas. */
|
|
|
|
layer_regions();
|
2011-06-01 13:00:29 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2009-02-16 00:13:05 -05:00
|
|
|
void
|
2010-04-21 16:42:22 -04:00
|
|
|
StreamView::playlist_switched (boost::weak_ptr<Track> wtr)
|
2009-02-16 00:13:05 -05:00
|
|
|
{
|
2010-04-21 16:42:22 -04:00
|
|
|
boost::shared_ptr<Track> tr (wtr.lock());
|
2009-02-16 00:13:05 -05:00
|
|
|
|
2010-04-21 16:42:22 -04:00
|
|
|
if (!tr) {
|
2010-01-25 15:34:09 -05:00
|
|
|
return;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* disconnect from old playlist */
|
|
|
|
|
2009-12-17 13:24:23 -05:00
|
|
|
playlist_connections.drop_connections ();
|
2010-04-21 16:42:22 -04:00
|
|
|
undisplay_track ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2011-12-30 16:56:11 -05:00
|
|
|
/* draw it */
|
|
|
|
|
|
|
|
redisplay_track ();
|
|
|
|
|
2007-10-04 12:26:02 -04:00
|
|
|
/* update layers count and the y positions and heights of our regions */
|
2010-04-21 16:42:22 -04:00
|
|
|
_layers = tr->playlist()->top_layer() + 1;
|
2008-09-19 15:32:10 -04:00
|
|
|
update_contents_height ();
|
2008-12-31 13:44:32 -05:00
|
|
|
update_coverage_frames ();
|
2009-08-25 20:06:21 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
/* catch changes */
|
|
|
|
|
2010-04-21 16:42:22 -04:00
|
|
|
tr->playlist()->LayeringChanged.connect (playlist_connections, invalidator (*this), boost::bind (&StreamView::playlist_layered, this, boost::weak_ptr<Track> (tr)), gui_context());
|
2012-04-25 08:58:19 -04:00
|
|
|
tr->playlist()->RegionAdded.connect (playlist_connections, invalidator (*this), boost::bind (&StreamView::add_region_view, this, _1), gui_context());
|
|
|
|
tr->playlist()->RegionRemoved.connect (playlist_connections, invalidator (*this), boost::bind (&StreamView::remove_region_view, this, _1), gui_context());
|
|
|
|
tr->playlist()->ContentsChanged.connect (playlist_connections, invalidator (*this), boost::bind (&StreamView::update_coverage_frames, this), gui_context());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2011-12-30 19:19:08 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2006-08-01 13:19:38 -04:00
|
|
|
StreamView::diskstream_changed ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2007-06-15 18:05:07 -04:00
|
|
|
boost::shared_ptr<Track> t;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
if ((t = _trackview.track()) != 0) {
|
2010-04-21 16:42:22 -04:00
|
|
|
Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&StreamView::display_track, this, t));
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
2010-04-21 16:42:22 -04:00
|
|
|
Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&StreamView::undisplay_track, this));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-08-31 15:14:12 -04:00
|
|
|
StreamView::apply_color (Gdk::Color color, ColorTarget target)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2006-07-23 08:03:19 -04:00
|
|
|
list<RegionView *>::iterator i;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
switch (target) {
|
|
|
|
case RegionColor:
|
|
|
|
region_color = color;
|
|
|
|
for (i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
(*i)->set_color (region_color);
|
|
|
|
}
|
|
|
|
break;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
case StreamBaseColor:
|
2006-08-01 20:22:16 -04:00
|
|
|
stream_base_color = RGBA_TO_UINT (
|
|
|
|
color.get_red_p(), color.get_green_p(), color.get_blue_p(), 255);
|
|
|
|
canvas_rect->property_fill_color_rgba() = stream_base_color;
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-07-23 08:03:19 -04:00
|
|
|
StreamView::region_layered (RegionView* rv)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-09-10 17:27:39 -04:00
|
|
|
/* don't ever leave it at the bottom, since then it doesn't
|
|
|
|
get events - the parent group does instead ...
|
|
|
|
*/
|
2008-12-12 09:43:24 -05:00
|
|
|
rv->get_canvas_group()->raise (rv->region()->layer());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-08-01 13:19:38 -04:00
|
|
|
StreamView::rec_enable_changed ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2010-01-04 13:15:05 -05:00
|
|
|
setup_rec_box ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StreamView::sess_rec_enable_changed ()
|
|
|
|
{
|
2010-01-04 13:15:05 -05:00
|
|
|
setup_rec_box ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StreamView::transport_changed()
|
|
|
|
{
|
2010-01-04 13:15:05 -05:00
|
|
|
setup_rec_box ();
|
2007-06-25 22:16:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StreamView::transport_looped()
|
|
|
|
{
|
|
|
|
// to force a new rec region
|
|
|
|
rec_active = false;
|
2010-03-30 11:18:43 -04:00
|
|
|
Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&StreamView::setup_rec_box, this));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StreamView::update_rec_box ()
|
|
|
|
{
|
|
|
|
if (rec_active && rec_rects.size() > 0) {
|
2006-03-13 22:43:54 -05:00
|
|
|
/* only update the last box */
|
2005-09-25 14:42:24 -04:00
|
|
|
RecBoxInfo & rect = rec_rects.back();
|
2010-10-08 10:54:16 -04:00
|
|
|
framepos_t const at = _trackview.track()->current_capture_end ();
|
2006-03-13 22:43:54 -05:00
|
|
|
double xstart;
|
|
|
|
double xend;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-07-09 13:58:13 -04:00
|
|
|
switch (_trackview.track()->mode()) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-04-20 17:02:46 -04:00
|
|
|
case NonLayered:
|
2006-03-13 22:43:54 -05:00
|
|
|
case Normal:
|
|
|
|
rect.length = at - rect.start;
|
2009-07-09 13:58:13 -04:00
|
|
|
xstart = _trackview.editor().frame_to_pixel (rect.start);
|
|
|
|
xend = _trackview.editor().frame_to_pixel (at);
|
2006-03-13 22:43:54 -05:00
|
|
|
break;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-03-13 22:43:54 -05:00
|
|
|
case Destructive:
|
|
|
|
rect.length = 2;
|
2010-04-21 16:42:22 -04:00
|
|
|
xstart = _trackview.editor().frame_to_pixel (_trackview.track()->current_capture_start());
|
2009-07-09 13:58:13 -04:00
|
|
|
xend = _trackview.editor().frame_to_pixel (at);
|
2006-03-13 22:43:54 -05:00
|
|
|
break;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-11-27 17:35:04 -05:00
|
|
|
rect.rectangle->property_x1() = xstart;
|
|
|
|
rect.rectangle->property_x2() = xend;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
RegionView*
|
2006-08-29 17:21:48 -04:00
|
|
|
StreamView::find_view (boost::shared_ptr<const Region> region)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2006-07-23 08:03:19 -04:00
|
|
|
for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-08-29 17:21:48 -04:00
|
|
|
if ((*i)->region() == region) {
|
2005-09-25 14:42:24 -04:00
|
|
|
return *i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2010-01-07 14:15:33 -05:00
|
|
|
uint32_t
|
|
|
|
StreamView::num_selected_regionviews () const
|
|
|
|
{
|
|
|
|
uint32_t cnt = 0;
|
|
|
|
|
|
|
|
for (list<RegionView*>::const_iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
if ((*i)->get_selected()) {
|
|
|
|
++cnt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return cnt;
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2006-07-23 08:03:19 -04:00
|
|
|
StreamView::foreach_regionview (sigc::slot<void,RegionView*> slot)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2006-07-23 08:03:19 -04:00
|
|
|
for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
2005-09-25 14:42:24 -04:00
|
|
|
slot (*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-07 14:15:33 -05:00
|
|
|
void
|
|
|
|
StreamView::foreach_selected_regionview (sigc::slot<void,RegionView*> slot)
|
|
|
|
{
|
|
|
|
for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
if ((*i)->get_selected()) {
|
|
|
|
slot (*i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2006-07-23 08:03:19 -04:00
|
|
|
StreamView::set_selected_regionviews (RegionSelection& regions)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2006-07-23 08:03:19 -04:00
|
|
|
bool selected;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
selected = false;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
for (RegionSelection::iterator ii = regions.begin(); ii != regions.end(); ++ii) {
|
|
|
|
if (*i == *ii) {
|
|
|
|
selected = true;
|
2009-01-18 05:41:56 -05:00
|
|
|
break;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
2008-01-10 16:20:59 -05:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
(*i)->set_selected (selected);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-06 19:28:44 -04:00
|
|
|
|
|
|
|
/** Get selectable things within a given range.
|
|
|
|
* @param start Start time in session frames.
|
|
|
|
* @param end End time in session frames.
|
|
|
|
* @param top Top y range, in trackview coordinates (ie 0 is the top of the track view)
|
|
|
|
* @param bot Bottom y range, in trackview coordinates (ie 0 is the top of the track view)
|
|
|
|
* @param result Filled in with selectable things.
|
|
|
|
*/
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2010-08-06 19:28:44 -04:00
|
|
|
StreamView::get_selectables (framepos_t start, framepos_t end, double top, double bottom, list<Selectable*>& results)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-08-31 18:49:26 -04:00
|
|
|
layer_t min_layer = 0;
|
|
|
|
layer_t max_layer = 0;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-08-31 18:49:26 -04:00
|
|
|
if (_layer_display == Stacked) {
|
|
|
|
double const c = child_height ();
|
2011-10-22 18:10:37 -04:00
|
|
|
|
|
|
|
int const mi = _layers - ((bottom - _trackview.y_position()) / c);
|
|
|
|
if (mi < 0) {
|
|
|
|
min_layer = 0;
|
|
|
|
} else {
|
|
|
|
min_layer = mi;
|
|
|
|
}
|
|
|
|
|
|
|
|
int const ma = _layers - ((top - _trackview.y_position()) / c);
|
2011-10-23 17:31:21 -04:00
|
|
|
if (ma > (int) _layers) {
|
2011-10-22 18:10:37 -04:00
|
|
|
max_layer = _layers - 1;
|
|
|
|
} else {
|
|
|
|
max_layer = ma;
|
|
|
|
}
|
|
|
|
|
2009-08-31 18:49:26 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-07-23 08:03:19 -04:00
|
|
|
for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
2009-08-31 18:49:26 -04:00
|
|
|
|
|
|
|
bool layer_ok = true;
|
|
|
|
|
|
|
|
if (_layer_display == Stacked) {
|
|
|
|
layer_t const l = (*i)->region()->layer ();
|
|
|
|
layer_ok = (min_layer <= l && l <= max_layer);
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2012-04-16 12:32:22 -04:00
|
|
|
if ((*i)->region()->coverage (start, end) != Evoral::OverlapNone && layer_ok) {
|
2006-07-23 08:03:19 -04:00
|
|
|
results.push_back (*i);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-07-23 08:03:19 -04:00
|
|
|
StreamView::get_inverted_selectables (Selection& sel, list<Selectable*>& results)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2006-07-23 08:03:19 -04:00
|
|
|
for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
if (!sel.regions.contains (*i)) {
|
|
|
|
results.push_back (*i);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2006-02-14 12:19:58 -05:00
|
|
|
|
2009-01-01 12:45:09 -05:00
|
|
|
/** @return height of a child region view, depending on stacked / overlaid mode */
|
|
|
|
double
|
|
|
|
StreamView::child_height () const
|
|
|
|
{
|
2011-12-26 20:42:49 -05:00
|
|
|
switch (_layer_display) {
|
|
|
|
case Overlaid:
|
|
|
|
return height;
|
|
|
|
case Stacked:
|
2009-01-05 22:18:09 -05:00
|
|
|
return height / _layers;
|
2011-12-26 20:42:49 -05:00
|
|
|
case Expanded:
|
|
|
|
return height / (_layers * 2 + 1);
|
2009-01-01 12:45:09 -05:00
|
|
|
}
|
2011-12-29 17:14:15 -05:00
|
|
|
|
2011-12-26 20:42:49 -05:00
|
|
|
/* NOTREACHED */
|
2009-01-01 12:45:09 -05:00
|
|
|
return height;
|
|
|
|
}
|
|
|
|
|
2007-05-17 06:41:14 -04:00
|
|
|
void
|
2008-09-19 15:32:10 -04:00
|
|
|
StreamView::update_contents_height ()
|
2007-05-17 06:41:14 -04:00
|
|
|
{
|
2009-01-01 12:45:09 -05:00
|
|
|
const double h = child_height ();
|
2007-05-17 06:41:14 -04:00
|
|
|
|
|
|
|
for (RegionViewList::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
2009-01-05 22:18:09 -05:00
|
|
|
switch (_layer_display) {
|
2007-05-17 06:41:14 -04:00
|
|
|
case Overlaid:
|
2008-12-23 09:05:37 -05:00
|
|
|
(*i)->set_y (0);
|
2007-05-17 06:41:14 -04:00
|
|
|
break;
|
|
|
|
case Stacked:
|
2009-01-01 12:45:09 -05:00
|
|
|
(*i)->set_y (height - ((*i)->region()->layer() + 1) * h);
|
2007-05-17 06:41:14 -04:00
|
|
|
break;
|
2011-12-26 20:42:49 -05:00
|
|
|
case Expanded:
|
|
|
|
(*i)->set_y (height - ((*i)->region()->layer() + 1) * 2 * h);
|
|
|
|
break;
|
2007-05-17 06:41:14 -04:00
|
|
|
}
|
2009-01-01 12:45:09 -05:00
|
|
|
|
|
|
|
(*i)->set_height (h);
|
2007-05-17 06:41:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
for (vector<RecBoxInfo>::iterator i = rec_rects.begin(); i != rec_rects.end(); ++i) {
|
2010-11-14 10:01:53 -05:00
|
|
|
switch (_layer_display) {
|
|
|
|
case Overlaid:
|
|
|
|
i->rectangle->property_y2() = height;
|
|
|
|
break;
|
|
|
|
case Stacked:
|
2011-12-26 20:42:49 -05:00
|
|
|
case Expanded:
|
2010-11-14 10:01:53 -05:00
|
|
|
/* In stacked displays, the recregion is always at the top */
|
|
|
|
i->rectangle->property_y1() = 0;
|
|
|
|
i->rectangle->property_y2() = h;
|
|
|
|
break;
|
|
|
|
}
|
2007-05-17 06:41:14 -04:00
|
|
|
}
|
2012-06-13 16:37:34 -04:00
|
|
|
|
|
|
|
ContentsHeightChanged (); /* EMIT SIGNAL */
|
2007-05-17 06:41:14 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StreamView::set_layer_display (LayerDisplay d)
|
|
|
|
{
|
2009-01-05 22:18:09 -05:00
|
|
|
_layer_display = d;
|
2011-12-27 13:33:54 -05:00
|
|
|
|
|
|
|
if (_layer_display == Overlaid) {
|
|
|
|
layer_regions ();
|
|
|
|
}
|
|
|
|
|
2008-09-19 15:32:10 -04:00
|
|
|
update_contents_height ();
|
2008-12-31 13:44:32 -05:00
|
|
|
update_coverage_frames ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StreamView::update_coverage_frames ()
|
|
|
|
{
|
|
|
|
for (RegionViewList::iterator i = region_views.begin (); i != region_views.end (); ++i) {
|
2009-01-05 22:18:09 -05:00
|
|
|
(*i)->update_coverage_frames (_layer_display);
|
2008-12-31 13:44:32 -05:00
|
|
|
}
|
2007-05-17 06:41:14 -04:00
|
|
|
}
|
2010-11-14 10:01:53 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
StreamView::check_record_layers (boost::shared_ptr<Region> region, framepos_t to)
|
|
|
|
{
|
|
|
|
if (_new_rec_layer_time < to) {
|
|
|
|
/* The region being recorded has overlapped the start of a top-layered region, so
|
|
|
|
`fake' a new visual layer for the recording. This is only a visual thing for now,
|
|
|
|
as the proper layering will get sorted out when the recorded region is added to
|
|
|
|
its playlist.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Stop this happening again */
|
|
|
|
_new_rec_layer_time = max_framepos;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-11-14 10:01:53 -05:00
|
|
|
/* Make space in the view for the new layer */
|
|
|
|
++_layers;
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-11-14 10:01:53 -05:00
|
|
|
/* Set the temporary region to the correct layer so that it gets drawn correctly */
|
|
|
|
region->set_layer (_layers - 1);
|
2011-06-01 13:00:29 -04:00
|
|
|
|
2010-11-14 10:01:53 -05:00
|
|
|
/* and reset the view */
|
|
|
|
update_contents_height ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StreamView::setup_new_rec_layer_time (boost::shared_ptr<Region> region)
|
|
|
|
{
|
|
|
|
/* If we are in Stacked mode, we may need to (visually) create a new layer to put the
|
|
|
|
recorded region in. To work out where this needs to happen, find the start of the next
|
|
|
|
top-layered region after the start of the region we are recording and make a note of it.
|
|
|
|
*/
|
|
|
|
if (_layer_display == Stacked) {
|
|
|
|
_new_rec_layer_time = _trackview.track()->playlist()->find_next_top_layer_position (region->start());
|
|
|
|
} else {
|
|
|
|
_new_rec_layer_time = max_framepos;
|
|
|
|
}
|
|
|
|
}
|
2011-03-03 13:32:06 -05:00
|
|
|
|
|
|
|
void
|
|
|
|
StreamView::enter_internal_edit_mode ()
|
|
|
|
{
|
|
|
|
for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
(*i)->hide_rect ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
StreamView::leave_internal_edit_mode ()
|
|
|
|
{
|
|
|
|
for (list<RegionView*>::iterator i = region_views.begin(); i != region_views.end(); ++i) {
|
|
|
|
(*i)->show_rect ();
|
|
|
|
}
|
|
|
|
}
|