2007-04-26 16:54:31 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2000-2007 Paul Davis
|
|
|
|
|
|
|
|
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-06-29 00:02:58 -04:00
|
|
|
#include <utility>
|
|
|
|
#include <gtkmm2ext/barcontroller.h>
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/memento_command.h"
|
|
|
|
#include "ardour/automation_control.h"
|
|
|
|
#include "ardour/event_type_map.h"
|
|
|
|
#include "ardour/route.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "ardour_ui.h"
|
|
|
|
#include "automation_time_axis.h"
|
2007-09-05 22:30:39 -04:00
|
|
|
#include "automation_streamview.h"
|
2007-07-03 20:39:00 -04:00
|
|
|
#include "route_time_axis.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "automation_line.h"
|
|
|
|
#include "public_editor.h"
|
2005-11-15 21:57:22 -05:00
|
|
|
#include "simplerect.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "selection.h"
|
|
|
|
#include "rgb_macros.h"
|
|
|
|
#include "automation_selectable.h"
|
|
|
|
#include "point_selection.h"
|
2005-11-15 21:57:22 -05:00
|
|
|
#include "canvas_impl.h"
|
2006-03-15 11:33:00 -05:00
|
|
|
#include "utils.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#include "i18n.h"
|
|
|
|
|
|
|
|
using namespace ARDOUR;
|
2006-06-22 19:40:55 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Gtk;
|
2007-06-29 00:02:58 -04:00
|
|
|
using namespace Gtkmm2ext;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Editing;
|
|
|
|
|
2007-07-03 17:02:29 -04:00
|
|
|
Pango::FontDescription* AutomationTimeAxisView::name_font = 0;
|
2006-12-14 11:21:43 -05:00
|
|
|
bool AutomationTimeAxisView::have_name_font = false;
|
2007-07-03 20:39:00 -04:00
|
|
|
const string AutomationTimeAxisView::state_node_name = "AutomationChild";
|
2006-12-14 11:21:43 -05:00
|
|
|
|
2008-12-19 13:08:35 -05:00
|
|
|
|
2008-09-21 12:17:02 -04:00
|
|
|
/** \a a the automatable object this time axis is to display data for.
|
|
|
|
* For route/track automation (e.g. gain) pass the route for both \r and \a.
|
|
|
|
* For route child (e.g. plugin) automation, pass the child for \a.
|
|
|
|
* For region automation (e.g. MIDI CC), pass null for \a.
|
|
|
|
*/
|
2007-06-30 14:41:50 -04:00
|
|
|
AutomationTimeAxisView::AutomationTimeAxisView (Session& s, boost::shared_ptr<Route> r,
|
|
|
|
boost::shared_ptr<Automatable> a, boost::shared_ptr<AutomationControl> c,
|
2007-09-05 22:30:39 -04:00
|
|
|
PublicEditor& e, TimeAxisView& parent, bool show_regions,
|
2007-07-03 20:39:00 -04:00
|
|
|
ArdourCanvas::Canvas& canvas, const string & nom, const string & nomparent)
|
2005-09-25 14:42:24 -04:00
|
|
|
: AxisView (s),
|
2007-09-05 22:30:39 -04:00
|
|
|
TimeAxisView (s, e, &parent, canvas),
|
2007-06-30 14:41:50 -04:00
|
|
|
_route (r),
|
|
|
|
_control (c),
|
|
|
|
_automatable (a),
|
2008-09-21 12:17:02 -04:00
|
|
|
_controller(AutomationController::create(a, c->parameter(), c)),
|
2007-06-30 14:41:50 -04:00
|
|
|
_base_rect (0),
|
2007-09-05 22:30:39 -04:00
|
|
|
_view (show_regions ? new AutomationStreamView(*this) : NULL),
|
2005-09-25 14:42:24 -04:00
|
|
|
_name (nom),
|
|
|
|
auto_button (X_("")) /* force addition of a label */
|
|
|
|
{
|
2006-12-14 11:21:43 -05:00
|
|
|
if (!have_name_font) {
|
|
|
|
name_font = get_font_for_style (X_("AutomationTrackName"));
|
|
|
|
have_name_font = true;
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
automation_menu = 0;
|
|
|
|
auto_off_item = 0;
|
|
|
|
auto_touch_item = 0;
|
|
|
|
auto_write_item = 0;
|
|
|
|
auto_play_item = 0;
|
2007-07-06 23:19:04 -04:00
|
|
|
mode_discrete_item = 0;
|
|
|
|
mode_line_item = 0;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
ignore_state_request = false;
|
2006-08-03 22:18:45 -04:00
|
|
|
first_call_to_set_height = true;
|
2007-06-29 00:02:58 -04:00
|
|
|
|
2009-01-01 19:17:55 -05:00
|
|
|
_base_rect = new SimpleRect(*_canvas_display);
|
2007-06-30 14:41:50 -04:00
|
|
|
_base_rect->property_x1() = 0.0;
|
|
|
|
_base_rect->property_y1() = 0.0;
|
2008-12-12 09:43:24 -05:00
|
|
|
_base_rect->property_x2() = LONG_MAX - 2;
|
2007-06-30 14:41:50 -04:00
|
|
|
_base_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_AutomationTrackOutline.get();
|
|
|
|
|
2005-11-12 22:53:51 -05:00
|
|
|
/* outline ends and bottom */
|
2007-06-30 14:41:50 -04:00
|
|
|
_base_rect->property_outline_what() = (guint32) (0x1|0x2|0x8);
|
|
|
|
_base_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_AutomationTrackFill.get();
|
2005-11-12 22:53:51 -05:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
_base_rect->set_data ("trackview", this);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-18 19:15:54 -05:00
|
|
|
_base_rect->signal_event().connect (bind (
|
|
|
|
mem_fun (_editor, &PublicEditor::canvas_automation_track_event),
|
|
|
|
_base_rect, this));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-09-05 23:38:28 -04:00
|
|
|
_base_rect->lower_to_bottom();
|
|
|
|
|
2006-11-13 12:56:43 -05:00
|
|
|
hide_button.add (*(manage (new Gtk::Image (::get_icon("hide")))));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
auto_button.set_name ("TrackVisualButton");
|
|
|
|
hide_button.set_name ("TrackRemoveButton");
|
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
auto_button.unset_flags (Gtk::CAN_FOCUS);
|
|
|
|
hide_button.unset_flags (Gtk::CAN_FOCUS);
|
|
|
|
|
2006-08-03 22:18:45 -04:00
|
|
|
controls_table.set_no_show_all();
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip(auto_button, _("automation state"));
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip(hide_button, _("hide track"));
|
|
|
|
|
|
|
|
/* rearrange the name display */
|
|
|
|
|
|
|
|
/* we never show these for automation tracks, so make
|
|
|
|
life easier and remove them.
|
|
|
|
*/
|
|
|
|
|
2006-01-17 21:56:51 -05:00
|
|
|
hide_name_entry();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* move the name label over a bit */
|
|
|
|
|
|
|
|
string shortpname = _name;
|
|
|
|
bool shortened = false;
|
2006-12-14 11:21:43 -05:00
|
|
|
|
|
|
|
int ignore_width;
|
2007-07-03 17:02:29 -04:00
|
|
|
shortpname = fit_to_pixels (_name, 60, *name_font, ignore_width, true);
|
2006-12-14 11:21:43 -05:00
|
|
|
|
|
|
|
if (shortpname != _name ){
|
|
|
|
shortened = true;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2006-12-14 11:21:43 -05:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
name_label.set_text (shortpname);
|
2006-08-09 17:31:36 -04:00
|
|
|
name_label.set_alignment (Gtk::ALIGN_CENTER, Gtk::ALIGN_CENTER);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
if (nomparent.length()) {
|
|
|
|
|
|
|
|
/* limit the plug name string */
|
|
|
|
|
2007-07-03 17:02:29 -04:00
|
|
|
string pname = fit_to_pixels (nomparent, 60, *name_font, ignore_width, true);
|
2006-12-14 11:21:43 -05:00
|
|
|
if (pname != nomparent) {
|
2005-09-25 14:42:24 -04:00
|
|
|
shortened = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
plugname = new Label (pname);
|
|
|
|
plugname->set_name (X_("TrackPlugName"));
|
2006-08-03 22:18:45 -04:00
|
|
|
plugname->show();
|
2005-09-25 14:42:24 -04:00
|
|
|
name_label.set_name (X_("TrackParameterName"));
|
|
|
|
controls_table.remove (name_hbox);
|
2006-01-19 22:03:15 -05:00
|
|
|
controls_table.attach (*plugname, 1, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
|
2005-09-25 14:42:24 -04:00
|
|
|
plugname_packed = true;
|
2006-01-19 22:03:15 -05:00
|
|
|
controls_table.attach (name_hbox, 1, 5, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
|
|
|
plugname = 0;
|
|
|
|
plugname_packed = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shortened) {
|
|
|
|
string tipname = nomparent;
|
|
|
|
if (!tipname.empty()) {
|
|
|
|
tipname += ": ";
|
|
|
|
}
|
|
|
|
tipname += _name;
|
|
|
|
ARDOUR_UI::instance()->tooltips().set_tip(controls_ebox, tipname);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add the buttons */
|
2005-09-25 16:33:00 -04:00
|
|
|
controls_table.attach (hide_button, 0, 1, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-08-03 22:18:45 -04:00
|
|
|
controls_table.attach (auto_button, 5, 8, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
|
2007-06-30 18:08:39 -04:00
|
|
|
|
|
|
|
/* add bar controller */
|
2009-02-18 19:37:18 -05:00
|
|
|
controls_table.attach (*_controller.get(), 0, 8, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
|
2006-08-03 22:18:45 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
controls_table.show_all ();
|
|
|
|
|
2005-09-25 17:19:23 -04:00
|
|
|
hide_button.signal_clicked().connect (mem_fun(*this, &AutomationTimeAxisView::hide_clicked));
|
|
|
|
auto_button.signal_clicked().connect (mem_fun(*this, &AutomationTimeAxisView::auto_clicked));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
controls_base_selected_name = X_("AutomationTrackControlsBaseSelected");
|
|
|
|
controls_base_unselected_name = X_("AutomationTrackControlsBase");
|
|
|
|
controls_ebox.set_name (controls_base_unselected_name);
|
|
|
|
|
2005-10-09 01:03:29 -04:00
|
|
|
controls_frame.set_shadow_type (Gtk::SHADOW_ETCHED_OUT);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-07-03 20:39:00 -04:00
|
|
|
XMLNode* xml_node = get_parent_with_state()->get_automation_child_xml_node (
|
|
|
|
_control->parameter());
|
2006-11-20 13:57:21 -05:00
|
|
|
|
|
|
|
if (xml_node) {
|
|
|
|
set_state (*xml_node);
|
2006-11-27 14:31:33 -05:00
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
/* ask for notifications of any new RegionViews */
|
|
|
|
if (show_regions) {
|
|
|
|
|
|
|
|
assert(_view);
|
|
|
|
_view->attach ();
|
|
|
|
|
|
|
|
/* no regions, just a single line for the entire track (e.g. bus gain) */
|
|
|
|
} else {
|
|
|
|
boost::shared_ptr<AutomationLine> line(new AutomationLine (
|
2008-09-29 18:47:40 -04:00
|
|
|
ARDOUR::EventTypeMap::instance().to_symbol(_control->parameter()),
|
2007-09-05 22:30:39 -04:00
|
|
|
*this,
|
2009-01-01 19:17:55 -05:00
|
|
|
*_canvas_display,
|
2009-02-16 18:32:59 -05:00
|
|
|
_control->alist()));
|
2007-09-05 22:30:39 -04:00
|
|
|
|
|
|
|
line->set_line_color (ARDOUR_UI::config()->canvasvar_ProcessorAutomationLine.get());
|
|
|
|
line->queue_reset ();
|
|
|
|
add_line (line);
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* make sure labels etc. are correct */
|
|
|
|
|
|
|
|
automation_state_changed ();
|
2007-06-15 18:08:27 -04:00
|
|
|
ColorsChanged.connect (mem_fun (*this, &AutomationTimeAxisView::color_handler));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
AutomationTimeAxisView::~AutomationTimeAxisView ()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::auto_clicked ()
|
|
|
|
{
|
|
|
|
using namespace Menu_Helpers;
|
|
|
|
|
|
|
|
if (automation_menu == 0) {
|
|
|
|
automation_menu = manage (new Menu);
|
|
|
|
automation_menu->set_name ("ArdourContextMenu");
|
|
|
|
MenuList& items (automation_menu->items());
|
|
|
|
|
2008-09-21 12:17:02 -04:00
|
|
|
items.push_back (MenuElem (_("Manual"), bind (mem_fun(*this,
|
|
|
|
&AutomationTimeAxisView::set_automation_state), (AutoState) Off)));
|
|
|
|
items.push_back (MenuElem (_("Play"), bind (mem_fun(*this,
|
|
|
|
&AutomationTimeAxisView::set_automation_state), (AutoState) Play)));
|
|
|
|
items.push_back (MenuElem (_("Write"), bind (mem_fun(*this,
|
|
|
|
&AutomationTimeAxisView::set_automation_state), (AutoState) Write)));
|
|
|
|
items.push_back (MenuElem (_("Touch"), bind (mem_fun(*this,
|
|
|
|
&AutomationTimeAxisView::set_automation_state), (AutoState) Touch)));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2006-11-21 19:58:22 -05:00
|
|
|
automation_menu->popup (1, gtk_get_current_event_time());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
void
|
|
|
|
AutomationTimeAxisView::set_automation_state (AutoState state)
|
|
|
|
{
|
|
|
|
if (!ignore_state_request) {
|
2008-09-21 12:17:02 -04:00
|
|
|
if (_route == _automatable) { // This is a time axis for route (not region) automation
|
|
|
|
_route->set_parameter_automation_state (_control->parameter(), state);
|
2007-06-29 00:02:58 -04:00
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
|
2008-09-21 12:17:02 -04:00
|
|
|
if (_control->list())
|
|
|
|
_control->alist()->set_automation_state(state);
|
2007-06-29 00:02:58 -04:00
|
|
|
}
|
2008-09-26 17:02:33 -04:00
|
|
|
if (_view)
|
|
|
|
_view->set_automation_state (state);
|
2007-06-29 00:02:58 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::automation_state_changed ()
|
|
|
|
{
|
|
|
|
AutoState state;
|
|
|
|
|
|
|
|
/* update button label */
|
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
if (!_line) {
|
2005-09-25 14:42:24 -04:00
|
|
|
state = Off;
|
|
|
|
} else {
|
2008-09-18 20:47:49 -04:00
|
|
|
state = _control->alist()->automation_state ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2008-09-21 12:17:02 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
switch (state & (Off|Play|Touch|Write)) {
|
|
|
|
case Off:
|
2006-05-21 06:11:59 -04:00
|
|
|
auto_button.set_label (_("Manual"));
|
2005-09-25 14:42:24 -04:00
|
|
|
if (auto_off_item) {
|
|
|
|
ignore_state_request = true;
|
|
|
|
auto_off_item->set_active (true);
|
|
|
|
auto_play_item->set_active (false);
|
|
|
|
auto_touch_item->set_active (false);
|
|
|
|
auto_write_item->set_active (false);
|
|
|
|
ignore_state_request = false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Play:
|
2006-05-17 08:07:16 -04:00
|
|
|
auto_button.set_label (_("Play"));
|
2005-09-25 14:42:24 -04:00
|
|
|
if (auto_play_item) {
|
|
|
|
ignore_state_request = true;
|
|
|
|
auto_play_item->set_active (true);
|
|
|
|
auto_off_item->set_active (false);
|
|
|
|
auto_touch_item->set_active (false);
|
|
|
|
auto_write_item->set_active (false);
|
|
|
|
ignore_state_request = false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Write:
|
2006-05-17 08:07:16 -04:00
|
|
|
auto_button.set_label (_("Write"));
|
2005-09-25 14:42:24 -04:00
|
|
|
if (auto_write_item) {
|
|
|
|
ignore_state_request = true;
|
|
|
|
auto_write_item->set_active (true);
|
|
|
|
auto_off_item->set_active (false);
|
|
|
|
auto_play_item->set_active (false);
|
|
|
|
auto_touch_item->set_active (false);
|
|
|
|
ignore_state_request = false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Touch:
|
2006-05-17 08:07:16 -04:00
|
|
|
auto_button.set_label (_("Touch"));
|
2005-09-25 14:42:24 -04:00
|
|
|
if (auto_touch_item) {
|
|
|
|
ignore_state_request = true;
|
|
|
|
auto_touch_item->set_active (true);
|
|
|
|
auto_off_item->set_active (false);
|
|
|
|
auto_play_item->set_active (false);
|
|
|
|
auto_write_item->set_active (false);
|
|
|
|
ignore_state_request = false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2006-04-22 12:49:51 -04:00
|
|
|
auto_button.set_label (_("???"));
|
2005-09-25 14:42:24 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-06 23:19:04 -04:00
|
|
|
void
|
|
|
|
AutomationTimeAxisView::interpolation_changed ()
|
|
|
|
{
|
|
|
|
AutomationList::InterpolationStyle style = _control->list()->interpolation();
|
|
|
|
|
|
|
|
if (mode_line_item && mode_discrete_item) {
|
|
|
|
if (style == AutomationList::Discrete) {
|
|
|
|
mode_discrete_item->set_active(true);
|
|
|
|
mode_line_item->set_active(false);
|
|
|
|
} else {
|
|
|
|
mode_line_item->set_active(true);
|
|
|
|
mode_discrete_item->set_active(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-21 05:20:27 -05:00
|
|
|
if (_line) {
|
2007-09-05 22:30:39 -04:00
|
|
|
_line->set_interpolation(style);
|
2009-01-21 05:20:27 -05:00
|
|
|
}
|
2007-07-06 23:19:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::set_interpolation (AutomationList::InterpolationStyle style)
|
|
|
|
{
|
|
|
|
_control->list()->set_interpolation(style);
|
2009-01-21 05:20:27 -05:00
|
|
|
if (_line) {
|
2008-09-21 13:11:11 -04:00
|
|
|
_line->set_interpolation(style);
|
2009-01-21 05:20:27 -05:00
|
|
|
}
|
2007-07-06 23:19:04 -04:00
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
|
|
|
AutomationTimeAxisView::clear_clicked ()
|
|
|
|
{
|
|
|
|
_session.begin_reversible_command (_("clear automation"));
|
2009-01-21 05:20:27 -05:00
|
|
|
if (_line) {
|
2007-09-05 22:30:39 -04:00
|
|
|
_line->clear ();
|
2009-01-21 05:20:27 -05:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
_session.commit_reversible_command ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-09-10 11:03:30 -04:00
|
|
|
AutomationTimeAxisView::set_height (uint32_t h)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2007-07-03 20:39:00 -04:00
|
|
|
bool changed = (height != (uint32_t) h) || first_call_to_set_height;
|
2009-01-27 23:55:31 -05:00
|
|
|
bool changed_between_small_and_normal = (
|
2009-02-16 00:13:05 -05:00
|
|
|
(height < hNormal && h >= hNormal)
|
|
|
|
|| (height >= hNormal || h < hNormal) );
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
TimeAxisView* state_parent = get_parent_with_state ();
|
|
|
|
assert(state_parent);
|
|
|
|
XMLNode* xml_node = state_parent->get_automation_child_xml_node (_control->parameter());
|
|
|
|
|
|
|
|
TimeAxisView::set_height (h);
|
2007-06-30 14:41:50 -04:00
|
|
|
_base_rect->property_y2() = h;
|
2007-09-05 22:30:39 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
if (_line)
|
2008-09-19 15:32:10 -04:00
|
|
|
_line->set_height(h);
|
2007-09-05 22:30:39 -04:00
|
|
|
|
|
|
|
if (_view) {
|
|
|
|
_view->set_height(h);
|
2008-09-19 15:32:10 -04:00
|
|
|
_view->update_contents_height();
|
2007-09-05 22:30:39 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
char buf[32];
|
|
|
|
snprintf (buf, sizeof (buf), "%u", height);
|
2008-10-14 09:35:17 -04:00
|
|
|
if (xml_node) {
|
|
|
|
xml_node->add_property ("height", buf);
|
|
|
|
}
|
2007-07-03 20:39:00 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
if (changed_between_small_and_normal || first_call_to_set_height) {
|
2008-09-12 05:01:52 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
first_call_to_set_height = false;
|
2006-08-03 22:18:45 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
if (h >= hNormal) {
|
2007-07-03 20:39:00 -04:00
|
|
|
controls_table.remove (name_hbox);
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2007-07-03 20:39:00 -04:00
|
|
|
if (plugname) {
|
|
|
|
if (plugname_packed) {
|
|
|
|
controls_table.remove (*plugname);
|
|
|
|
plugname_packed = false;
|
2006-08-03 22:18:45 -04:00
|
|
|
}
|
2007-07-03 20:39:00 -04:00
|
|
|
controls_table.attach (*plugname, 1, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
|
|
|
|
plugname_packed = true;
|
|
|
|
controls_table.attach (name_hbox, 1, 5, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
|
|
|
|
} else {
|
2006-08-03 22:18:45 -04:00
|
|
|
controls_table.attach (name_hbox, 1, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
|
2007-07-03 20:39:00 -04:00
|
|
|
}
|
|
|
|
hide_name_entry ();
|
|
|
|
show_name_label ();
|
|
|
|
name_hbox.show_all ();
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2007-07-03 20:39:00 -04:00
|
|
|
auto_button.show();
|
|
|
|
hide_button.show_all();
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
} else if (h >= hSmall) {
|
2007-07-03 20:39:00 -04:00
|
|
|
controls_table.remove (name_hbox);
|
|
|
|
if (plugname) {
|
|
|
|
if (plugname_packed) {
|
|
|
|
controls_table.remove (*plugname);
|
|
|
|
plugname_packed = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
controls_table.attach (name_hbox, 1, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
|
|
|
|
controls_table.hide_all ();
|
|
|
|
hide_name_entry ();
|
|
|
|
show_name_label ();
|
|
|
|
name_hbox.show_all ();
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2007-07-03 20:39:00 -04:00
|
|
|
auto_button.hide();
|
|
|
|
hide_button.hide();
|
2008-09-10 11:03:30 -04:00
|
|
|
}
|
2008-12-12 09:43:24 -05:00
|
|
|
} else if (h >= hNormal){
|
|
|
|
cerr << "track grown, but neither changed_between_small_and_normal nor first_call_to_set_height set!" << endl;
|
2007-07-03 20:39:00 -04:00
|
|
|
}
|
2006-08-03 22:18:45 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (changed) {
|
|
|
|
/* only emit the signal if the height really changed */
|
2008-09-10 11:03:30 -04:00
|
|
|
_route->gui_changed ("visible_tracks", (void *) 0); /* EMIT_SIGNAL */
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::set_samples_per_unit (double spu)
|
|
|
|
{
|
2007-09-05 22:30:39 -04:00
|
|
|
TimeAxisView::set_samples_per_unit (spu);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
if (_line)
|
|
|
|
_line->reset ();
|
|
|
|
|
|
|
|
if (_view)
|
|
|
|
_view->set_samples_per_unit (spu);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::hide_clicked ()
|
|
|
|
{
|
2006-11-12 22:49:00 -05:00
|
|
|
// LAME fix for refreshing the hide button
|
|
|
|
hide_button.set_sensitive(false);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
set_marked_for_display (false);
|
|
|
|
hide ();
|
2006-11-12 22:49:00 -05:00
|
|
|
|
|
|
|
hide_button.set_sensitive(true);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::build_display_menu ()
|
|
|
|
{
|
|
|
|
using namespace Menu_Helpers;
|
|
|
|
|
|
|
|
/* get the size menu ready */
|
|
|
|
|
|
|
|
build_size_menu ();
|
|
|
|
|
|
|
|
/* prepare it */
|
|
|
|
|
|
|
|
TimeAxisView::build_display_menu ();
|
|
|
|
|
|
|
|
/* now fill it with our stuff */
|
|
|
|
|
|
|
|
MenuList& items = display_menu->items();
|
|
|
|
|
|
|
|
items.push_back (MenuElem (_("Height"), *size_menu));
|
|
|
|
items.push_back (SeparatorElem());
|
2005-09-25 17:19:23 -04:00
|
|
|
items.push_back (MenuElem (_("Hide"), mem_fun(*this, &AutomationTimeAxisView::hide_clicked)));
|
2005-09-25 14:42:24 -04:00
|
|
|
items.push_back (SeparatorElem());
|
2005-09-25 17:19:23 -04:00
|
|
|
items.push_back (MenuElem (_("Clear"), mem_fun(*this, &AutomationTimeAxisView::clear_clicked)));
|
2005-09-25 14:42:24 -04:00
|
|
|
items.push_back (SeparatorElem());
|
|
|
|
|
2007-07-06 23:19:04 -04:00
|
|
|
/* state menu */
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
Menu* auto_state_menu = manage (new Menu);
|
|
|
|
auto_state_menu->set_name ("ArdourContextMenu");
|
|
|
|
MenuList& as_items = auto_state_menu->items();
|
|
|
|
|
2009-02-16 00:13:05 -05:00
|
|
|
as_items.push_back (CheckMenuElem (_("Manual"), bind (
|
|
|
|
mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
|
|
|
|
(AutoState) Off)));
|
2005-10-09 01:03:29 -04:00
|
|
|
auto_off_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-16 00:13:05 -05:00
|
|
|
as_items.push_back (CheckMenuElem (_("Play"), bind (
|
|
|
|
mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
|
|
|
|
(AutoState) Play)));
|
2005-10-09 01:03:29 -04:00
|
|
|
auto_play_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-16 00:13:05 -05:00
|
|
|
as_items.push_back (CheckMenuElem (_("Write"), bind (
|
|
|
|
mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
|
|
|
|
(AutoState) Write)));
|
2005-10-09 01:03:29 -04:00
|
|
|
auto_write_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-16 00:13:05 -05:00
|
|
|
as_items.push_back (CheckMenuElem (_("Touch"), bind (
|
|
|
|
mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
|
|
|
|
(AutoState) Touch)));
|
2005-10-09 01:03:29 -04:00
|
|
|
auto_touch_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
items.push_back (MenuElem (_("State"), *auto_state_menu));
|
2007-07-06 23:19:04 -04:00
|
|
|
|
|
|
|
/* mode menu */
|
2009-01-27 23:55:31 -05:00
|
|
|
|
2009-01-21 05:20:27 -05:00
|
|
|
if ( EventTypeMap::instance().is_midi_parameter(_control->parameter()) ) {
|
|
|
|
|
2007-07-06 23:19:04 -04:00
|
|
|
Menu* auto_mode_menu = manage (new Menu);
|
|
|
|
auto_mode_menu->set_name ("ArdourContextMenu");
|
|
|
|
MenuList& am_items = auto_mode_menu->items();
|
|
|
|
|
|
|
|
RadioMenuItem::Group group;
|
2009-01-28 02:40:43 -05:00
|
|
|
|
2007-07-06 23:19:04 -04:00
|
|
|
am_items.push_back (RadioMenuElem (group, _("Discrete"), bind (
|
|
|
|
mem_fun(*this, &AutomationTimeAxisView::set_interpolation),
|
|
|
|
AutomationList::Discrete)));
|
|
|
|
mode_discrete_item = dynamic_cast<CheckMenuItem*>(&am_items.back());
|
2009-01-27 23:55:31 -05:00
|
|
|
mode_discrete_item->set_active(_control->list()->interpolation() == AutomationList::Discrete);
|
2007-07-06 23:19:04 -04:00
|
|
|
|
2009-01-28 02:40:43 -05:00
|
|
|
// For discrete types we dont allow the linear option since it makes no sense for those Controls
|
|
|
|
if (EventTypeMap::instance().interpolation_of(_control->parameter()) == Evoral::ControlList::Linear) {
|
|
|
|
am_items.push_back (RadioMenuElem (group, _("Line"), bind (
|
|
|
|
mem_fun(*this, &AutomationTimeAxisView::set_interpolation),
|
|
|
|
AutomationList::Linear)));
|
|
|
|
mode_line_item = dynamic_cast<CheckMenuItem*>(&am_items.back());
|
|
|
|
mode_line_item->set_active(_control->list()->interpolation() == AutomationList::Linear);
|
|
|
|
}
|
2007-07-06 23:19:04 -04:00
|
|
|
|
|
|
|
items.push_back (MenuElem (_("Mode"), *auto_mode_menu));
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
/* make sure the automation menu state is correct */
|
|
|
|
|
|
|
|
automation_state_changed ();
|
2007-07-06 23:19:04 -04:00
|
|
|
interpolation_changed ();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
void
|
|
|
|
AutomationTimeAxisView::add_automation_event (ArdourCanvas::Item* item, GdkEvent* event, nframes_t when, double y)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2007-09-05 22:30:39 -04:00
|
|
|
if (!_line)
|
|
|
|
return;
|
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
double x = 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-01-01 19:17:55 -05:00
|
|
|
_canvas_display->w2i (x, y);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
/* compute vertical fractional position */
|
|
|
|
|
|
|
|
y = 1.0 - (y / height);
|
|
|
|
|
|
|
|
/* map using line */
|
|
|
|
|
2009-02-15 23:46:45 -05:00
|
|
|
_line->view_to_model_coord (x, y);
|
2007-06-30 14:41:50 -04:00
|
|
|
|
|
|
|
_session.begin_reversible_command (_("add automation event"));
|
2008-09-18 20:47:49 -04:00
|
|
|
XMLNode& before = _control->alist()->get_state();
|
2007-06-30 14:41:50 -04:00
|
|
|
|
2008-09-18 20:47:49 -04:00
|
|
|
_control->alist()->add (when, y);
|
2007-06-30 14:41:50 -04:00
|
|
|
|
2008-09-18 20:47:49 -04:00
|
|
|
XMLNode& after = _control->alist()->get_state();
|
|
|
|
_session.commit_reversible_command (new MementoCommand<ARDOUR::AutomationList>(*_control->alist(), &before, &after));
|
2007-06-30 14:41:50 -04:00
|
|
|
|
|
|
|
_session.set_dirty ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool
|
|
|
|
AutomationTimeAxisView::cut_copy_clear (Selection& selection, CutCopyOp op)
|
|
|
|
{
|
2008-05-03 17:55:43 -04:00
|
|
|
return (_line ? cut_copy_clear_one (*_line, selection, op) : false);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AutomationTimeAxisView::cut_copy_clear_one (AutomationLine& line, Selection& selection, CutCopyOp op)
|
|
|
|
{
|
2008-09-18 20:47:49 -04:00
|
|
|
boost::shared_ptr<Evoral::ControlList> what_we_got;
|
2007-06-29 00:02:58 -04:00
|
|
|
boost::shared_ptr<AutomationList> alist (line.the_list());
|
2005-09-25 14:42:24 -04:00
|
|
|
bool ret = false;
|
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
XMLNode &before = alist->get_state();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
switch (op) {
|
|
|
|
case Cut:
|
2007-06-29 00:02:58 -04:00
|
|
|
if ((what_we_got = alist->cut (selection.time.front().start, selection.time.front().end)) != 0) {
|
2009-01-01 19:17:55 -05:00
|
|
|
_editor.get_cut_buffer().add (what_we_got);
|
2007-06-29 00:02:58 -04:00
|
|
|
_session.add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
|
2005-09-25 14:42:24 -04:00
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Copy:
|
2007-06-29 00:02:58 -04:00
|
|
|
if ((what_we_got = alist->copy (selection.time.front().start, selection.time.front().end)) != 0) {
|
2009-01-01 19:17:55 -05:00
|
|
|
_editor.get_cut_buffer().add (what_we_got);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Clear:
|
2007-06-29 00:02:58 -04:00
|
|
|
if ((what_we_got = alist->cut (selection.time.front().start, selection.time.front().end)) != 0) {
|
|
|
|
_session.add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
|
2005-09-25 14:42:24 -04:00
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (what_we_got) {
|
|
|
|
for (AutomationList::iterator x = what_we_got->begin(); x != what_we_got->end(); ++x) {
|
2009-02-15 23:46:45 -05:00
|
|
|
double when = (*x)->when;
|
|
|
|
double val = (*x)->value;
|
|
|
|
line.model_to_view_coord (when, val);
|
|
|
|
(*x)->when = when;
|
|
|
|
(*x)->value = val;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-05-19 16:10:35 -04:00
|
|
|
void
|
|
|
|
AutomationTimeAxisView::reset_objects (PointSelection& selection)
|
|
|
|
{
|
2007-06-30 14:41:50 -04:00
|
|
|
reset_objects_one (*_line, selection);
|
2006-05-19 16:10:35 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::reset_objects_one (AutomationLine& line, PointSelection& selection)
|
|
|
|
{
|
2007-06-29 00:02:58 -04:00
|
|
|
boost::shared_ptr<AutomationList> alist(line.the_list());
|
2006-05-19 16:10:35 -04:00
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
_session.add_command (new MementoCommand<AutomationList>(*alist.get(), &alist->get_state(), 0));
|
2006-05-19 16:10:35 -04:00
|
|
|
|
|
|
|
for (PointSelection::iterator i = selection.begin(); i != selection.end(); ++i) {
|
|
|
|
|
|
|
|
if (&(*i).track != this) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
alist->reset_range ((*i).start, (*i).end);
|
2006-05-19 16:10:35 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
bool
|
|
|
|
AutomationTimeAxisView::cut_copy_clear_objects (PointSelection& selection, CutCopyOp op)
|
|
|
|
{
|
2007-06-30 14:41:50 -04:00
|
|
|
return cut_copy_clear_objects_one (*_line, selection, op);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
AutomationTimeAxisView::cut_copy_clear_objects_one (AutomationLine& line, PointSelection& selection, CutCopyOp op)
|
|
|
|
{
|
2008-09-18 20:47:49 -04:00
|
|
|
boost::shared_ptr<Evoral::ControlList> what_we_got;
|
2007-06-29 00:02:58 -04:00
|
|
|
boost::shared_ptr<AutomationList> alist(line.the_list());
|
2005-09-25 14:42:24 -04:00
|
|
|
bool ret = false;
|
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
XMLNode &before = alist->get_state();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
for (PointSelection::iterator i = selection.begin(); i != selection.end(); ++i) {
|
|
|
|
|
|
|
|
if (&(*i).track != this) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (op) {
|
|
|
|
case Cut:
|
2007-06-29 00:02:58 -04:00
|
|
|
if ((what_we_got = alist->cut ((*i).start, (*i).end)) != 0) {
|
2009-01-01 19:17:55 -05:00
|
|
|
_editor.get_cut_buffer().add (what_we_got);
|
2007-06-29 00:02:58 -04:00
|
|
|
_session.add_command (new MementoCommand<AutomationList>(*alist.get(), new XMLNode (before), &alist->get_state()));
|
2005-09-25 14:42:24 -04:00
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case Copy:
|
2007-06-29 00:02:58 -04:00
|
|
|
if ((what_we_got = alist->copy ((*i).start, (*i).end)) != 0) {
|
2009-01-01 19:17:55 -05:00
|
|
|
_editor.get_cut_buffer().add (what_we_got);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Clear:
|
2007-06-29 00:02:58 -04:00
|
|
|
if ((what_we_got = alist->cut ((*i).start, (*i).end)) != 0) {
|
|
|
|
_session.add_command (new MementoCommand<AutomationList>(*alist.get(), new XMLNode (before), &alist->get_state()));
|
2005-09-25 14:42:24 -04:00
|
|
|
ret = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-01-23 16:45:05 -05:00
|
|
|
|
|
|
|
delete &before;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
if (what_we_got) {
|
|
|
|
for (AutomationList::iterator x = what_we_got->begin(); x != what_we_got->end(); ++x) {
|
2009-02-15 23:46:45 -05:00
|
|
|
double when = (*x)->when;
|
|
|
|
double val = (*x)->value;
|
|
|
|
line.model_to_view_coord (when, val);
|
|
|
|
(*x)->when = when;
|
|
|
|
(*x)->value = val;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2006-09-28 13:23:52 -04:00
|
|
|
AutomationTimeAxisView::paste (nframes_t pos, float times, Selection& selection, size_t nth)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2007-06-30 14:41:50 -04:00
|
|
|
return paste_one (*_line, pos, times, selection, nth);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2006-09-28 13:23:52 -04:00
|
|
|
AutomationTimeAxisView::paste_one (AutomationLine& line, nframes_t pos, float times, Selection& selection, size_t nth)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
AutomationSelection::iterator p;
|
2007-06-29 00:02:58 -04:00
|
|
|
boost::shared_ptr<AutomationList> alist(line.the_list());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-25 19:58:35 -05:00
|
|
|
for (p = selection.lines.begin(); p != selection.lines.end() && nth; ++p, --nth) {}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
if (p == selection.lines.end()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make a copy of the list because we have to scale the
|
|
|
|
values from view coordinates to model coordinates, and we're
|
|
|
|
not supposed to modify the points in the selection.
|
|
|
|
*/
|
|
|
|
|
|
|
|
AutomationList copy (**p);
|
|
|
|
|
|
|
|
for (AutomationList::iterator x = copy.begin(); x != copy.end(); ++x) {
|
2009-02-15 23:46:45 -05:00
|
|
|
double when = (*x)->when;
|
|
|
|
double val = (*x)->value;
|
|
|
|
line.view_to_model_coord (when, val);
|
|
|
|
(*x)->when = when;
|
|
|
|
(*x)->value = val;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
XMLNode &before = alist->get_state();
|
|
|
|
alist->paste (copy, pos, times);
|
|
|
|
_session.add_command (new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-09-28 13:23:52 -04:00
|
|
|
AutomationTimeAxisView::get_selectables (nframes_t start, nframes_t end, double top, double bot, list<Selectable*>& results)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2007-06-30 14:41:50 -04:00
|
|
|
if (_line && touched (top, bot)) {
|
2005-09-25 14:42:24 -04:00
|
|
|
double topfrac;
|
|
|
|
double botfrac;
|
|
|
|
|
|
|
|
/* remember: this is X Window - coordinate space starts in upper left and moves down.
|
2009-01-01 19:17:55 -05:00
|
|
|
_y_position is the "origin" or "top" of the track.
|
2005-09-25 14:42:24 -04:00
|
|
|
*/
|
|
|
|
|
2009-01-01 19:17:55 -05:00
|
|
|
double mybot = _y_position + height;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-01-01 19:17:55 -05:00
|
|
|
if (_y_position >= top && mybot <= bot) {
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-01-01 19:17:55 -05:00
|
|
|
/* _y_position is below top, mybot is above bot, so we're fully
|
2005-09-25 14:42:24 -04:00
|
|
|
covered vertically.
|
|
|
|
*/
|
|
|
|
|
|
|
|
topfrac = 1.0;
|
|
|
|
botfrac = 0.0;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2009-01-01 19:17:55 -05:00
|
|
|
/* top and bot are within _y_position .. mybot */
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-01-01 19:17:55 -05:00
|
|
|
topfrac = 1.0 - ((top - _y_position) / height);
|
|
|
|
botfrac = 1.0 - ((bot - _y_position) / height);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2007-09-05 22:30:39 -04:00
|
|
|
if (_line)
|
|
|
|
_line->get_selectables (start, end, botfrac, topfrac, results);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::get_inverted_selectables (Selection& sel, list<Selectable*>& result)
|
|
|
|
{
|
2007-09-05 22:30:39 -04:00
|
|
|
if (_line)
|
|
|
|
_line->get_inverted_selectables (sel, result);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::set_selected_points (PointSelection& points)
|
|
|
|
{
|
2007-09-05 22:30:39 -04:00
|
|
|
if (_line)
|
|
|
|
_line->set_selected_points (points);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::clear_lines ()
|
|
|
|
{
|
2007-06-30 14:41:50 -04:00
|
|
|
_line.reset();
|
2005-09-25 14:42:24 -04:00
|
|
|
automation_connection.disconnect ();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-06-30 14:41:50 -04:00
|
|
|
AutomationTimeAxisView::add_line (boost::shared_ptr<AutomationLine> line)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2007-06-30 14:41:50 -04:00
|
|
|
assert(line);
|
|
|
|
assert(!_line);
|
|
|
|
assert(line->the_list() == _control->list());
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-09-18 20:47:49 -04:00
|
|
|
automation_connection = _control->alist()->automation_state_changed.connect
|
2007-06-30 14:41:50 -04:00
|
|
|
(mem_fun(*this, &AutomationTimeAxisView::automation_state_changed));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
_line = line;
|
|
|
|
//_controller = AutomationController::create(_session, line->the_list(), _control);
|
2007-06-29 00:02:58 -04:00
|
|
|
|
2008-09-19 15:32:10 -04:00
|
|
|
line->set_height (height);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
/* pick up the current state */
|
|
|
|
automation_state_changed ();
|
2007-06-29 00:02:58 -04:00
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
line->show();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::entered()
|
|
|
|
{
|
2007-09-05 22:30:39 -04:00
|
|
|
if (_line)
|
|
|
|
_line->track_entered();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::exited ()
|
|
|
|
{
|
2007-09-05 22:30:39 -04:00
|
|
|
if (_line)
|
|
|
|
_line->track_exited();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
2007-04-11 09:07:51 -04:00
|
|
|
void
|
2007-06-15 18:08:27 -04:00
|
|
|
AutomationTimeAxisView::color_handler ()
|
|
|
|
{
|
2008-02-10 13:16:25 -05:00
|
|
|
if (_line) {
|
|
|
|
_line->set_colors();
|
|
|
|
}
|
2007-04-11 09:07:51 -04:00
|
|
|
}
|
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
int
|
2005-09-25 14:42:24 -04:00
|
|
|
AutomationTimeAxisView::set_state (const XMLNode& node)
|
|
|
|
{
|
2008-09-19 13:24:52 -04:00
|
|
|
TimeAxisView::set_state (node);
|
2007-07-03 20:39:00 -04:00
|
|
|
|
2008-12-19 13:08:35 -05:00
|
|
|
XMLProperty const * type = node.property ("automation-id");
|
|
|
|
if (type && type->value () == ARDOUR::EventTypeMap::instance().to_symbol (_control->parameter())) {
|
|
|
|
XMLProperty const * shown = node.property ("shown");
|
|
|
|
if (shown && shown->value () == "yes") {
|
|
|
|
set_marked_for_display (true);
|
2009-01-01 19:17:55 -05:00
|
|
|
_canvas_display->show (); /* FIXME: necessary? show_at? */
|
2007-06-30 14:41:50 -04:00
|
|
|
}
|
|
|
|
}
|
2008-12-19 13:08:35 -05:00
|
|
|
|
|
|
|
if (!_marked_for_display) {
|
2007-06-30 14:41:50 -04:00
|
|
|
hide();
|
2008-12-19 13:08:35 -05:00
|
|
|
}
|
2008-09-19 13:24:52 -04:00
|
|
|
|
|
|
|
return 0;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
XMLNode*
|
|
|
|
AutomationTimeAxisView::get_state_node ()
|
|
|
|
{
|
|
|
|
TimeAxisView* state_parent = get_parent_with_state ();
|
|
|
|
|
|
|
|
if (state_parent) {
|
2007-07-03 20:39:00 -04:00
|
|
|
return state_parent->get_automation_child_xml_node (_control->parameter());
|
2005-09-25 14:42:24 -04:00
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::update_extra_xml_shown (bool editor_shown)
|
|
|
|
{
|
2007-07-03 20:39:00 -04:00
|
|
|
XMLNode* xml_node = get_state_node();
|
2008-09-12 05:01:52 -04:00
|
|
|
if (xml_node) {
|
2008-09-10 11:03:30 -04:00
|
|
|
xml_node->add_property ("shown", editor_shown ? "yes" : "no");
|
2008-09-12 05:01:52 -04:00
|
|
|
}
|
2007-06-30 14:41:50 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
guint32
|
|
|
|
AutomationTimeAxisView::show_at (double y, int& nth, Gtk::VBox *parent)
|
|
|
|
{
|
|
|
|
update_extra_xml_shown (true);
|
|
|
|
|
|
|
|
return TimeAxisView::show_at (y, nth, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
AutomationTimeAxisView::hide ()
|
|
|
|
{
|
|
|
|
update_extra_xml_shown (false);
|
|
|
|
|
|
|
|
TimeAxisView::hide ();
|
|
|
|
}
|
|
|
|
|