2007-08-17 13:25:20 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2007 Paul Davis
|
|
|
|
Author: Dave Robillard
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
#include <pbd/memento_command.h>
|
2007-08-17 13:25:20 -04:00
|
|
|
#include "automation_region_view.h"
|
2007-09-05 22:30:39 -04:00
|
|
|
#include "public_editor.h"
|
|
|
|
|
|
|
|
#include "i18n.h"
|
2007-08-17 13:25:20 -04:00
|
|
|
|
|
|
|
AutomationRegionView::AutomationRegionView(ArdourCanvas::Group* parent,
|
|
|
|
AutomationTimeAxisView& time_axis,
|
|
|
|
boost::shared_ptr<ARDOUR::Region> region,
|
|
|
|
boost::shared_ptr<ARDOUR::AutomationList> list,
|
|
|
|
double spu,
|
|
|
|
Gdk::Color& basic_color)
|
|
|
|
: RegionView(parent, time_axis, region, spu, basic_color)
|
|
|
|
{
|
2007-09-10 23:14:32 -04:00
|
|
|
if (list) {
|
|
|
|
_line = boost::shared_ptr<AutomationLine>(new AutomationLine(
|
|
|
|
list->parameter().to_string(), time_axis, *group, list));
|
|
|
|
_line->set_colors();
|
|
|
|
_line->show();
|
|
|
|
_line->show_all_control_points();
|
|
|
|
}
|
2007-09-03 12:12:07 -04:00
|
|
|
|
|
|
|
group->signal_event().connect (mem_fun (this, &AutomationRegionView::canvas_event), false);
|
|
|
|
}
|
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
void
|
|
|
|
AutomationRegionView::init (Gdk::Color& basic_color, bool wfd)
|
|
|
|
{
|
|
|
|
_enable_display = false;
|
|
|
|
|
|
|
|
RegionView::init(basic_color, false);
|
|
|
|
|
|
|
|
compute_colors (basic_color);
|
|
|
|
|
|
|
|
reset_width_dependent_items ((double) _region->length() / samples_per_unit);
|
|
|
|
|
|
|
|
set_y_position_and_height (0, trackview.height);
|
|
|
|
|
|
|
|
_region->StateChanged.connect (mem_fun(*this, &AutomationRegionView::region_changed));
|
|
|
|
|
|
|
|
set_colors ();
|
|
|
|
|
|
|
|
_enable_display = true;
|
|
|
|
}
|
2007-09-03 12:12:07 -04:00
|
|
|
|
|
|
|
bool
|
|
|
|
AutomationRegionView::canvas_event(GdkEvent* ev)
|
|
|
|
{
|
2007-09-05 22:30:39 -04:00
|
|
|
if (ev->type == GDK_BUTTON_RELEASE) {
|
|
|
|
|
|
|
|
const nframes_t when = trackview.editor.pixel_to_frame((nframes_t)ev->button.x)
|
|
|
|
- _region->position();
|
|
|
|
add_automation_event(ev, when, ev->button.y);
|
|
|
|
}
|
2007-09-03 12:12:07 -04:00
|
|
|
|
|
|
|
return false;
|
2007-08-17 13:25:20 -04:00
|
|
|
}
|
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
void
|
|
|
|
AutomationRegionView::add_automation_event (GdkEvent* event, nframes_t when, double y)
|
|
|
|
{
|
2007-09-10 23:14:32 -04:00
|
|
|
if (!_line) {
|
|
|
|
cerr << "ERROR: AutomationRegionView::add_automation_event called without line" << endl;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
double x = 0;
|
|
|
|
AutomationTimeAxisView* const view = automation_view();
|
|
|
|
|
|
|
|
view->canvas_display->w2i (x, y);
|
|
|
|
|
|
|
|
/* compute vertical fractional position */
|
|
|
|
|
|
|
|
const double height = trackview.height - TimeAxisViewItem::NAME_HIGHLIGHT_SIZE - 2;
|
|
|
|
y = 1.0 - (y / height);
|
|
|
|
|
|
|
|
/* map using line */
|
|
|
|
|
2007-09-10 23:14:32 -04:00
|
|
|
_line->view_to_model_y (y);
|
2007-09-05 22:30:39 -04:00
|
|
|
|
|
|
|
view->session().begin_reversible_command (_("add automation event"));
|
2007-09-10 23:14:32 -04:00
|
|
|
XMLNode& before = _line->the_list()->get_state();
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2007-09-10 23:14:32 -04:00
|
|
|
_line->the_list()->add (when, y);
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2007-09-10 23:14:32 -04:00
|
|
|
XMLNode& after = _line->the_list()->get_state();
|
2007-09-05 22:30:39 -04:00
|
|
|
view->session().commit_reversible_command (new MementoCommand<ARDOUR::AutomationList>(
|
2007-09-10 23:14:32 -04:00
|
|
|
*_line->the_list(), &before, &after));
|
2007-09-05 22:30:39 -04:00
|
|
|
|
|
|
|
view->session().set_dirty ();
|
|
|
|
}
|
|
|
|
|
2007-08-17 13:25:20 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
AutomationRegionView::set_y_position_and_height (double y, double h)
|
|
|
|
{
|
|
|
|
RegionView::set_y_position_and_height(y, h - 1);
|
|
|
|
|
2007-09-10 23:14:32 -04:00
|
|
|
if (_line)
|
|
|
|
_line->set_y_position_and_height ((uint32_t)y, (uint32_t) rint (h - NAME_HIGHLIGHT_SIZE));
|
2007-08-17 13:25:20 -04:00
|
|
|
}
|
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
bool
|
|
|
|
AutomationRegionView::set_position (nframes_t pos, void* src, double* ignored)
|
|
|
|
{
|
|
|
|
// Do nothing, region parent will move us
|
|
|
|
//return false;
|
|
|
|
|
|
|
|
return RegionView::set_position(pos, src, ignored); // FIXME: eventually...
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationRegionView::reset_width_dependent_items (double pixel_width)
|
|
|
|
{
|
|
|
|
RegionView::reset_width_dependent_items(pixel_width);
|
|
|
|
|
2007-09-10 23:14:32 -04:00
|
|
|
if (_line)
|
|
|
|
_line->reset();
|
2007-09-05 22:30:39 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-03 12:12:07 -04:00
|
|
|
void
|
|
|
|
AutomationRegionView::region_resized (ARDOUR::Change what_changed)
|
|
|
|
{
|
2007-09-05 22:30:39 -04:00
|
|
|
RegionView::region_resized(what_changed);
|
|
|
|
|
2007-09-10 23:14:32 -04:00
|
|
|
if (_line)
|
|
|
|
_line->reset();
|
2007-09-03 12:12:07 -04:00
|
|
|
}
|
|
|
|
|
2007-08-17 13:25:20 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
AutomationRegionView::entered()
|
|
|
|
{
|
2007-09-10 23:14:32 -04:00
|
|
|
if (_line)
|
|
|
|
_line->track_entered();
|
2007-08-17 13:25:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationRegionView::exited()
|
|
|
|
{
|
2007-09-10 23:14:32 -04:00
|
|
|
if (_line)
|
|
|
|
_line->track_exited();
|
2007-08-17 13:25:20 -04:00
|
|
|
}
|
|
|
|
|