2021-02-12 10:49:26 -07:00
|
|
|
/*
|
2019-08-02 23:26:43 +02:00
|
|
|
* Copyright (C) 2007-2015 David Robillard <d@drobilla.net>
|
|
|
|
|
* Copyright (C) 2008-2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
|
* Copyright (C) 2009-2011 Carl Hetherington <carl@carlh.net>
|
|
|
|
|
* Copyright (C) 2014-2017 Nick Mainsbridge <mainsbridge@gmail.com>
|
|
|
|
|
* Copyright (C) 2017-2019 Robin Gareus <robin@gareus.org>
|
|
|
|
|
*
|
|
|
|
|
* 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.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
*/
|
2007-08-17 17:25:20 +00:00
|
|
|
|
2011-10-19 21:53:09 +00:00
|
|
|
#include <utility>
|
|
|
|
|
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "pbd/memento_command.h"
|
2011-10-19 21:53:09 +00:00
|
|
|
|
2009-02-25 18:26:51 +00:00
|
|
|
#include "ardour/automation_control.h"
|
|
|
|
|
#include "ardour/event_type_map.h"
|
2010-07-14 12:27:37 +00:00
|
|
|
#include "ardour/midi_automation_list_binder.h"
|
|
|
|
|
#include "ardour/midi_region.h"
|
2020-10-04 22:18:54 +02:00
|
|
|
#include "ardour/midi_track.h"
|
2011-10-19 21:53:09 +00:00
|
|
|
#include "ardour/session.h"
|
2009-12-21 18:23:07 +00:00
|
|
|
|
2014-02-19 23:37:46 -05:00
|
|
|
#include "gtkmm2ext/keyboard.h"
|
|
|
|
|
|
2007-08-17 17:25:20 +00:00
|
|
|
#include "automation_region_view.h"
|
2011-10-19 21:53:09 +00:00
|
|
|
#include "editing.h"
|
|
|
|
|
#include "editor.h"
|
|
|
|
|
#include "editor_drag.h"
|
2009-12-21 18:23:07 +00:00
|
|
|
#include "gui_thread.h"
|
2023-09-30 11:09:01 -06:00
|
|
|
#include "mergeable_line.h"
|
2010-07-14 12:27:37 +00:00
|
|
|
#include "midi_automation_line.h"
|
2011-10-19 21:53:09 +00:00
|
|
|
#include "public_editor.h"
|
2015-01-02 21:44:54 +07:00
|
|
|
#include "ui_config.h"
|
2007-09-06 02:30:39 +00:00
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2007-08-17 17:25:20 +00:00
|
|
|
|
2020-09-26 09:14:59 -06:00
|
|
|
using namespace Temporal;
|
|
|
|
|
|
2014-11-20 17:36:09 -05:00
|
|
|
AutomationRegionView::AutomationRegionView (ArdourCanvas::Container* parent,
|
|
|
|
|
AutomationTimeAxisView& time_axis,
|
2023-02-16 16:33:28 -07:00
|
|
|
std::shared_ptr<ARDOUR::Region> region,
|
2014-11-20 17:36:09 -05:00
|
|
|
const Evoral::Parameter& param,
|
2023-02-16 16:33:28 -07:00
|
|
|
std::shared_ptr<ARDOUR::AutomationList> list,
|
2014-11-20 17:36:09 -05:00
|
|
|
double spu,
|
|
|
|
|
uint32_t basic_color)
|
2010-09-01 22:35:46 +00:00
|
|
|
: RegionView(parent, time_axis, region, spu, basic_color, true)
|
2008-09-19 06:30:49 +00:00
|
|
|
, _parameter(param)
|
2009-10-14 16:10:01 +00:00
|
|
|
{
|
2020-11-30 10:59:17 -07:00
|
|
|
TimeAxisViewItem::set_position (_region->position(), this);
|
2016-10-15 23:17:19 +11:00
|
|
|
|
2007-09-11 03:14:32 +00:00
|
|
|
if (list) {
|
2008-09-19 06:30:49 +00:00
|
|
|
assert(list->parameter() == param);
|
|
|
|
|
create_line(list);
|
2007-09-11 03:14:32 +00:00
|
|
|
}
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2009-10-23 20:17:41 +00:00
|
|
|
group->raise_to_top();
|
2014-12-16 20:37:16 -05:00
|
|
|
|
|
|
|
|
trackview.editor().MouseModeChanged.connect(_mouse_mode_connection, invalidator (*this),
|
|
|
|
|
boost::bind (&AutomationRegionView::mouse_mode_changed, this),
|
|
|
|
|
gui_context ());
|
2007-09-03 16:12:07 +00:00
|
|
|
}
|
|
|
|
|
|
2011-07-10 15:28:36 +00:00
|
|
|
AutomationRegionView::~AutomationRegionView ()
|
|
|
|
|
{
|
2016-11-23 15:29:57 +11:00
|
|
|
in_destructor = true;
|
2014-11-13 22:18:15 -05:00
|
|
|
RegionViewGoingAway (this); /* EMIT_SIGNAL */
|
2011-07-10 15:28:36 +00:00
|
|
|
}
|
|
|
|
|
|
2007-09-06 02:30:39 +00:00
|
|
|
void
|
2014-06-09 23:28:32 -04:00
|
|
|
AutomationRegionView::init (bool /*wfd*/)
|
2007-09-06 02:30:39 +00:00
|
|
|
{
|
2022-03-30 16:44:04 -06:00
|
|
|
DisplaySuspender (*this);
|
|
|
|
|
|
2014-06-09 23:28:32 -04:00
|
|
|
RegionView::init (false);
|
2007-09-06 02:30:39 +00:00
|
|
|
|
2020-09-26 09:14:59 -06:00
|
|
|
reset_width_dependent_items ((double) _region->length_samples() / samples_per_pixel);
|
2007-09-06 02:30:39 +00:00
|
|
|
|
2009-07-09 17:58:13 +00:00
|
|
|
set_height (trackview.current_height());
|
2007-09-06 02:30:39 +00:00
|
|
|
|
|
|
|
|
set_colors ();
|
2023-09-30 11:09:01 -06:00
|
|
|
|
|
|
|
|
get_canvas_frame()->set_data ("linemerger", (LineMerger*) this);
|
2007-09-06 02:30:39 +00:00
|
|
|
}
|
2007-09-03 16:12:07 +00:00
|
|
|
|
2008-09-19 06:30:49 +00:00
|
|
|
void
|
2023-02-16 16:33:28 -07:00
|
|
|
AutomationRegionView::create_line (std::shared_ptr<ARDOUR::AutomationList> list)
|
2008-09-19 06:30:49 +00:00
|
|
|
{
|
2023-02-16 16:33:28 -07:00
|
|
|
_line = std::shared_ptr<AutomationLine> (new MidiAutomationLine(
|
2008-09-29 22:47:40 +00:00
|
|
|
ARDOUR::EventTypeMap::instance().to_symbol(list->parameter()),
|
2010-07-14 12:27:37 +00:00
|
|
|
trackview, *get_canvas_group(), list,
|
2023-02-16 16:33:28 -07:00
|
|
|
std::dynamic_pointer_cast<ARDOUR::MidiRegion> (_region),
|
2020-09-26 09:14:59 -06:00
|
|
|
_parameter));
|
2008-09-19 06:30:49 +00:00
|
|
|
_line->set_colors();
|
2015-03-26 11:48:13 -04:00
|
|
|
_line->set_height ((uint32_t)rint(trackview.current_height() - 2.5 - NAME_HIGHLIGHT_SIZE));
|
2012-05-29 18:30:10 +00:00
|
|
|
_line->set_visibility (AutomationLine::VisibleAspects (AutomationLine::Line|AutomationLine::ControlPoints));
|
2020-11-30 10:59:17 -07:00
|
|
|
_line->set_maximum_time (timepos_t (_region->length()));
|
|
|
|
|
_line->set_offset (_region->start ());
|
2008-09-19 06:30:49 +00:00
|
|
|
}
|
|
|
|
|
|
2014-12-16 20:37:16 -05:00
|
|
|
uint32_t
|
|
|
|
|
AutomationRegionView::get_fill_color() const
|
|
|
|
|
{
|
|
|
|
|
const std::string mod_name = (_dragging ? "dragging region" :
|
2022-12-09 23:10:51 +01:00
|
|
|
trackview.editor().internal_editing() ? "editable region" : fill_color_name);
|
2014-12-16 20:37:16 -05:00
|
|
|
if (_selected) {
|
2015-01-02 21:44:54 +07:00
|
|
|
return UIConfiguration::instance().color_mod ("selected region base", mod_name);
|
|
|
|
|
} else if (high_enough_for_name || !UIConfiguration::instance().get_color_regions_using_track_color()) {
|
2022-12-09 23:10:51 +01:00
|
|
|
return UIConfiguration::instance().color_mod (fill_color_name, mod_name);
|
2014-12-16 20:37:16 -05:00
|
|
|
}
|
2015-01-02 21:44:54 +07:00
|
|
|
return UIConfiguration::instance().color_mod (fill_color, mod_name);
|
2014-12-16 20:37:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
AutomationRegionView::mouse_mode_changed ()
|
|
|
|
|
{
|
2019-04-09 00:27:05 +02:00
|
|
|
/* Adjust frame colour (become more transparent for internal tools) */
|
2019-04-08 20:00:02 +02:00
|
|
|
set_frame_color();
|
2014-12-16 20:37:16 -05:00
|
|
|
}
|
|
|
|
|
|
2007-09-03 16:12:07 +00:00
|
|
|
bool
|
2014-11-15 02:58:39 -05:00
|
|
|
AutomationRegionView::canvas_group_event (GdkEvent* ev)
|
2007-09-03 16:12:07 +00:00
|
|
|
{
|
2014-11-15 15:56:56 -05:00
|
|
|
if (in_destructor) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-30 11:09:01 -06:00
|
|
|
return RegionView::canvas_group_event (ev);
|
|
|
|
|
}
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2023-09-30 11:09:01 -06:00
|
|
|
void
|
|
|
|
|
AutomationRegionView::add_automation_event (GdkEvent* ev)
|
|
|
|
|
{
|
|
|
|
|
double x = ev->button.x;
|
|
|
|
|
double y = ev->button.y;
|
2010-05-22 00:56:39 +00:00
|
|
|
|
2023-09-30 11:09:01 -06:00
|
|
|
/* convert to item coordinates in the time axis view */
|
|
|
|
|
automation_view()->canvas_display()->canvas_to_item (x, y);
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2023-09-30 11:09:01 -06:00
|
|
|
/* clamp y */
|
|
|
|
|
y = std::max (y, 0.0);
|
|
|
|
|
y = std::min (y, _height - NAME_HIGHLIGHT_SIZE);
|
2021-01-19 14:54:13 -07:00
|
|
|
|
2023-09-30 11:09:01 -06:00
|
|
|
/* the time domain doesn't matter here, because the automation
|
|
|
|
|
* list will force the position to its own time domain when
|
|
|
|
|
* adding the point.
|
|
|
|
|
*/
|
2021-01-19 14:54:13 -07:00
|
|
|
|
2023-09-30 11:09:01 -06:00
|
|
|
PublicEditor& e = trackview.editor ();
|
2007-09-03 16:12:07 +00:00
|
|
|
|
2023-09-30 11:09:01 -06:00
|
|
|
add_automation_event (timepos_t (e.pixel_to_sample (x)), y, false);
|
2007-08-17 17:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
2022-12-05 14:54:40 -07:00
|
|
|
/** @param when Position is global time position
|
2010-05-22 00:56:39 +00:00
|
|
|
* @param y y position, relative to our TimeAxisView.
|
|
|
|
|
*/
|
2007-09-06 02:30:39 +00:00
|
|
|
void
|
2023-09-30 11:09:01 -06:00
|
|
|
AutomationRegionView::add_automation_event (timepos_t const & w, double y, bool with_guard_points)
|
2007-09-06 02:30:39 +00:00
|
|
|
{
|
2023-02-16 16:33:28 -07:00
|
|
|
std::shared_ptr<Evoral::Control> c = _region->control(_parameter, true);
|
|
|
|
|
std::shared_ptr<ARDOUR::AutomationControl> ac = std::dynamic_pointer_cast<ARDOUR::AutomationControl>(c);
|
2020-09-26 09:14:59 -06:00
|
|
|
timepos_t when (w); /* the non-const copy */
|
2021-02-11 00:29:44 +01:00
|
|
|
|
2007-09-11 03:14:32 +00:00
|
|
|
if (!_line) {
|
2008-09-19 06:30:49 +00:00
|
|
|
assert(ac);
|
|
|
|
|
create_line(ac->alist());
|
2007-09-11 03:14:32 +00:00
|
|
|
}
|
2008-09-19 06:30:49 +00:00
|
|
|
assert(_line);
|
2007-09-11 03:14:32 +00:00
|
|
|
|
2010-05-22 00:56:39 +00:00
|
|
|
AutomationTimeAxisView* const view = automation_view ();
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2007-09-06 02:30:39 +00:00
|
|
|
/* compute vertical fractional position */
|
2020-10-04 22:18:54 +02:00
|
|
|
y = 1.0 - (y / _line->height());
|
2007-09-06 02:30:39 +00:00
|
|
|
|
2020-09-26 09:14:59 -06:00
|
|
|
/* snap time */
|
|
|
|
|
|
2024-01-04 18:16:24 -07:00
|
|
|
when = view->editor().snap_relative_time_to_relative_time (_region->position(), _region->source_position().distance (when), false);
|
2007-09-06 02:30:39 +00:00
|
|
|
|
2020-09-26 09:14:59 -06:00
|
|
|
/* map using line */
|
|
|
|
|
|
|
|
|
|
_line->view_to_model_coord_y (y);
|
2007-09-06 02:30:39 +00:00
|
|
|
|
2022-04-25 18:28:58 +02:00
|
|
|
if (c->list()->size () == 0) {
|
|
|
|
|
/* we need the MidiTrack::MidiControl, not the region's (midi model source) control */
|
2023-02-16 16:33:28 -07:00
|
|
|
std::shared_ptr<ARDOUR::MidiTrack> mt = std::dynamic_pointer_cast<ARDOUR::MidiTrack> (view->parent_stripable ());
|
2022-04-25 18:28:58 +02:00
|
|
|
assert (mt);
|
2023-02-16 16:33:28 -07:00
|
|
|
std::shared_ptr<Evoral::Control> mc = mt->control(_parameter);
|
2022-04-25 18:28:58 +02:00
|
|
|
assert (mc);
|
2022-06-29 01:17:13 +02:00
|
|
|
y = mc->get_double ();
|
2022-04-25 18:28:58 +02:00
|
|
|
} else if (UIConfiguration::instance().get_new_automation_points_on_lane()) {
|
|
|
|
|
y = c->list()->eval (when);
|
2020-10-04 22:18:54 +02:00
|
|
|
}
|
|
|
|
|
|
2007-09-11 03:14:32 +00:00
|
|
|
XMLNode& before = _line->the_list()->get_state();
|
2007-09-06 02:30:39 +00:00
|
|
|
|
2021-02-12 10:49:26 -07:00
|
|
|
if (_line->the_list()->editor_add (when, y, with_guard_points)) {
|
2021-02-11 00:29:44 +01:00
|
|
|
|
2021-02-23 22:00:27 +01:00
|
|
|
if (ac->automation_state () == ARDOUR::Off) {
|
2022-07-22 03:37:57 +02:00
|
|
|
view->set_automation_state (ARDOUR::Play);
|
2021-02-11 00:29:44 +01:00
|
|
|
}
|
2021-03-02 19:00:23 +01:00
|
|
|
if (UIConfiguration::instance().get_automation_edit_cancels_auto_hide () && ac == view->session()->recently_touched_controllable ()) {
|
|
|
|
|
RouteTimeAxisView::signal_ctrl_touched (false);
|
|
|
|
|
}
|
2021-02-11 00:29:44 +01:00
|
|
|
|
2015-09-14 05:24:28 +10:00
|
|
|
view->editor().begin_reversible_command (_("add automation event"));
|
2007-09-06 02:30:39 +00:00
|
|
|
|
2015-09-14 05:24:28 +10:00
|
|
|
XMLNode& after = _line->the_list()->get_state();
|
2010-07-14 12:27:37 +00:00
|
|
|
|
2015-09-14 05:24:28 +10:00
|
|
|
view->session()->add_command (new MementoCommand<ARDOUR::AutomationList> (_line->memento_command_binder(), &before, &after));
|
|
|
|
|
view->editor().commit_reversible_command ();
|
2007-09-06 02:30:39 +00:00
|
|
|
|
2015-09-14 05:24:28 +10:00
|
|
|
view->session()->set_dirty ();
|
|
|
|
|
}
|
2007-09-06 02:30:39 +00:00
|
|
|
}
|
|
|
|
|
|
2014-11-16 17:04:27 -05:00
|
|
|
bool
|
2020-09-26 09:14:59 -06:00
|
|
|
AutomationRegionView::paste (timepos_t const & pos,
|
2014-11-16 17:04:27 -05:00
|
|
|
unsigned paste_count,
|
|
|
|
|
float times,
|
2023-02-16 16:33:28 -07:00
|
|
|
std::shared_ptr<const ARDOUR::AutomationList> slist)
|
2014-11-16 17:04:27 -05:00
|
|
|
{
|
2017-04-26 16:21:39 +02:00
|
|
|
using namespace ARDOUR;
|
|
|
|
|
|
2014-11-16 17:04:27 -05:00
|
|
|
AutomationTimeAxisView* const view = automation_view();
|
2023-02-16 16:33:28 -07:00
|
|
|
std::shared_ptr<ARDOUR::AutomationList> my_list = _line->the_list();
|
2014-11-16 17:04:27 -05:00
|
|
|
|
|
|
|
|
if (view->session()->transport_rolling() && my_list->automation_write()) {
|
|
|
|
|
/* do not paste if this control is in write mode and we're rolling */
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-26 09:14:59 -06:00
|
|
|
timecnt_t len = slist->length();
|
|
|
|
|
timepos_t p (pos);
|
2017-04-26 16:21:39 +02:00
|
|
|
|
2014-11-16 17:04:27 -05:00
|
|
|
/* add multi-paste offset if applicable */
|
2020-09-26 09:14:59 -06:00
|
|
|
p += view->editor ().get_paste_offset (pos, paste_count > 0 ? 1 : 0, len);
|
2014-11-16 17:04:27 -05:00
|
|
|
|
2022-10-26 22:23:14 -06:00
|
|
|
timepos_t model_pos = pos;
|
|
|
|
|
|
|
|
|
|
/* potentially snap */
|
|
|
|
|
|
|
|
|
|
view->editor().snap_to (model_pos, Temporal::RoundNearest);
|
|
|
|
|
|
|
|
|
|
/* convert timeline position to model's (source-relative) position */
|
|
|
|
|
|
|
|
|
|
model_pos = timepos_t (_region->source_position().distance (model_pos));
|
2014-11-16 17:04:27 -05:00
|
|
|
|
|
|
|
|
XMLNode& before = my_list->get_state();
|
2020-12-07 19:16:25 -07:00
|
|
|
my_list->paste (*slist, model_pos);
|
2022-10-26 22:26:29 -06:00
|
|
|
view->session()->add_command(new MementoCommand<ARDOUR::AutomationList>(_line->memento_command_binder(), &before, &my_list->get_state()));
|
2014-11-16 17:04:27 -05:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2008-09-19 06:30:49 +00:00
|
|
|
void
|
|
|
|
|
AutomationRegionView::set_height (double h)
|
|
|
|
|
{
|
|
|
|
|
RegionView::set_height(h);
|
2008-09-19 19:32:10 +00:00
|
|
|
|
2010-07-21 00:15:43 +00:00
|
|
|
if (_line) {
|
2015-03-26 11:48:13 -04:00
|
|
|
_line->set_height ((uint32_t)rint(h - 2.5 - NAME_HIGHLIGHT_SIZE));
|
2010-07-21 00:15:43 +00:00
|
|
|
}
|
2007-08-17 17:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
2007-09-06 02:30:39 +00:00
|
|
|
bool
|
2020-09-26 09:14:59 -06:00
|
|
|
AutomationRegionView::set_position (timepos_t const & pos, void* src, double* ignored)
|
2007-09-06 02:30:39 +00:00
|
|
|
{
|
2010-08-20 22:43:10 +00:00
|
|
|
if (_line) {
|
2020-11-30 10:59:17 -07:00
|
|
|
_line->set_maximum_time (timepos_t (_region->length ()));
|
2010-08-20 22:43:10 +00:00
|
|
|
}
|
2011-06-01 17:00:29 +00:00
|
|
|
|
2009-02-16 07:04:27 +00:00
|
|
|
return RegionView::set_position(pos, src, ignored);
|
2007-09-06 02:30:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
AutomationRegionView::reset_width_dependent_items (double pixel_width)
|
|
|
|
|
{
|
|
|
|
|
RegionView::reset_width_dependent_items(pixel_width);
|
2009-10-14 16:10:01 +00:00
|
|
|
|
2010-08-20 22:43:10 +00:00
|
|
|
if (_line) {
|
2022-10-25 11:10:32 -06:00
|
|
|
_line->reset ();
|
2010-08-20 22:43:10 +00:00
|
|
|
}
|
2007-09-06 02:30:39 +00:00
|
|
|
}
|
|
|
|
|
|
2007-09-03 16:12:07 +00:00
|
|
|
void
|
2010-02-19 18:09:08 +00:00
|
|
|
AutomationRegionView::region_resized (const PBD::PropertyChange& what_changed)
|
2007-09-03 16:12:07 +00:00
|
|
|
{
|
2010-12-12 22:25:27 +00:00
|
|
|
RegionView::region_resized (what_changed);
|
2007-09-06 02:30:39 +00:00
|
|
|
|
2010-12-12 22:25:27 +00:00
|
|
|
if (!_line) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (what_changed.contains (ARDOUR::Properties::start)) {
|
2020-11-30 10:59:17 -07:00
|
|
|
_line->set_offset (_region->start ());
|
2010-12-12 22:25:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (what_changed.contains (ARDOUR::Properties::length)) {
|
2020-11-30 10:59:17 -07:00
|
|
|
_line->set_maximum_time (timepos_t (_region->length()));
|
2010-08-20 22:43:10 +00:00
|
|
|
}
|
2007-09-03 16:12:07 +00:00
|
|
|
}
|
|
|
|
|
|
2022-10-25 11:10:32 -06:00
|
|
|
void
|
|
|
|
|
AutomationRegionView::tempo_map_changed ()
|
|
|
|
|
{
|
|
|
|
|
if (_line) {
|
|
|
|
|
_line->tempo_map_changed ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
set_position (_region->position(), 0, 0);
|
|
|
|
|
set_duration (_region->length(), 0);
|
|
|
|
|
}
|
2007-08-17 17:25:20 +00:00
|
|
|
|
|
|
|
|
void
|
2014-12-08 23:00:00 -05:00
|
|
|
AutomationRegionView::entered ()
|
2007-08-17 17:25:20 +00:00
|
|
|
{
|
2011-02-17 16:18:36 +00:00
|
|
|
if (_line) {
|
2007-09-11 03:14:32 +00:00
|
|
|
_line->track_entered();
|
2011-02-17 16:18:36 +00:00
|
|
|
}
|
2007-08-17 17:25:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2011-02-17 16:18:36 +00:00
|
|
|
AutomationRegionView::exited ()
|
2007-08-17 17:25:20 +00:00
|
|
|
{
|
2011-02-17 16:18:36 +00:00
|
|
|
if (_line) {
|
2007-09-11 03:14:32 +00:00
|
|
|
_line->track_exited();
|
2011-02-17 16:18:36 +00:00
|
|
|
}
|
2007-08-17 17:25:20 +00:00
|
|
|
}
|
2024-09-20 19:44:25 -06:00
|
|
|
|
2023-06-28 13:40:49 -06:00
|
|
|
void
|
|
|
|
|
AutomationRegionView::set_selected (bool yn)
|
|
|
|
|
{
|
|
|
|
|
/* don't call RegionView::set_selected() because for automation
|
|
|
|
|
* regionviews, we don't use visual "clues" to indicate selection.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
if (yn && _parameter.type() == ARDOUR::MidiCCAutomation) {
|
|
|
|
|
group->raise_to_top ();
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-09-30 11:09:01 -06:00
|
|
|
|
|
|
|
|
timepos_t
|
|
|
|
|
AutomationRegionView::drawn_time_filter (timepos_t const & t)
|
|
|
|
|
{
|
|
|
|
|
return timepos_t (_region->absolute_time_to_source_beats (t));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MergeableLine*
|
|
|
|
|
AutomationRegionView::make_merger()
|
|
|
|
|
{
|
|
|
|
|
std::shared_ptr<Evoral::Control> c = _region->control(_parameter, true);
|
|
|
|
|
std::shared_ptr<ARDOUR::AutomationControl> ac = std::dynamic_pointer_cast<ARDOUR::AutomationControl>(c);
|
|
|
|
|
return new MergeableLine (_line, ac, boost::bind (&AutomationRegionView::drawn_time_filter, this, _1), nullptr, nullptr);
|
|
|
|
|
}
|