summaryrefslogtreecommitdiff
path: root/gtk2_ardour/automation_time_axis.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-04-27 21:34:44 +0000
committerCarl Hetherington <carl@carlh.net>2012-04-27 21:34:44 +0000
commite65d84d37c965dfe4cd6f3dbc91a1e3ddea08fe6 (patch)
tree04249c65f4d424cd3bed03ef333547a668d513bc /gtk2_ardour/automation_time_axis.cc
parentf78913cc99ffd13001b4c4daf625391be77e79d0 (diff)
Re-add erroneously-removed methods related to cut/copy of
automation time ranges. git-svn-id: svn://localhost/ardour2/branches/3.0@12114 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/automation_time_axis.cc')
-rw-r--r--gtk2_ardour/automation_time_axis.cc66
1 files changed, 66 insertions, 0 deletions
diff --git a/gtk2_ardour/automation_time_axis.cc b/gtk2_ardour/automation_time_axis.cc
index 4b10ea5cb5..3332a066d9 100644
--- a/gtk2_ardour/automation_time_axis.cc
+++ b/gtk2_ardour/automation_time_axis.cc
@@ -900,3 +900,69 @@ AutomationTimeAxisView::parse_state_id (
return true;
}
+
+void
+AutomationTimeAxisView::cut_copy_clear (Selection& selection, CutCopyOp op)
+{
+ list<boost::shared_ptr<AutomationLine> > lines;
+ if (_line) {
+ lines.push_back (_line);
+ } else if (_view) {
+ lines = _view->get_lines ();
+ }
+
+ for (list<boost::shared_ptr<AutomationLine> >::iterator i = lines.begin(); i != lines.end(); ++i) {
+ cut_copy_clear_one (**i, selection, op);
+ }
+}
+
+void
+AutomationTimeAxisView::cut_copy_clear_one (AutomationLine& line, Selection& selection, CutCopyOp op)
+{
+ boost::shared_ptr<Evoral::ControlList> what_we_got;
+ boost::shared_ptr<AutomationList> alist (line.the_list());
+
+ XMLNode &before = alist->get_state();
+
+ /* convert time selection to automation list model coordinates */
+ const Evoral::TimeConverter<double, ARDOUR::framepos_t>& tc = line.time_converter ();
+ double const start = tc.from (selection.time.front().start - tc.origin_b ());
+ double const end = tc.from (selection.time.front().end - tc.origin_b ());
+
+ switch (op) {
+ case Delete:
+ if (alist->cut (start, end) != 0) {
+ _session->add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
+ }
+ break;
+
+ case Cut:
+
+ if ((what_we_got = alist->cut (start, end)) != 0) {
+ _editor.get_cut_buffer().add (what_we_got);
+ _session->add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
+ }
+ break;
+ case Copy:
+ if ((what_we_got = alist->copy (start, end)) != 0) {
+ _editor.get_cut_buffer().add (what_we_got);
+ }
+ break;
+
+ case Clear:
+ if ((what_we_got = alist->cut (start, end)) != 0) {
+ _session->add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
+ }
+ break;
+ }
+
+ if (what_we_got) {
+ for (AutomationList::iterator x = what_we_got->begin(); x != what_we_got->end(); ++x) {
+ double when = (*x)->when;
+ double val = (*x)->value;
+ line.model_to_view_coord (when, val);
+ (*x)->when = when;
+ (*x)->value = val;
+ }
+ }
+}