Temporarily fix segfault on show/hide all automation, pending a proper fix.
[ardour.git] / gtk2_ardour / automation_time_axis.cc
1 /*
2     Copyright (C) 2000-2007 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <utility>
21 #include <gtkmm2ext/barcontroller.h>
22 #include "pbd/memento_command.h"
23 #include "ardour/automation_control.h"
24 #include "ardour/event_type_map.h"
25 #include "ardour/route.h"
26 #include "ardour/session.h"
27
28 #include "ardour_ui.h"
29 #include "automation_time_axis.h"
30 #include "automation_streamview.h"
31 #include "gui_thread.h"
32 #include "route_time_axis.h"
33 #include "automation_line.h"
34 #include "public_editor.h"
35 #include "simplerect.h"
36 #include "selection.h"
37 #include "rgb_macros.h"
38 #include "automation_selectable.h"
39 #include "point_selection.h"
40 #include "canvas_impl.h"
41 #include "utils.h"
42
43 #include "i18n.h"
44
45 using namespace std;
46 using namespace ARDOUR;
47 using namespace PBD;
48 using namespace Gtk;
49 using namespace Gtkmm2ext;
50 using namespace Editing;
51
52 Pango::FontDescription* AutomationTimeAxisView::name_font = 0;
53 bool AutomationTimeAxisView::have_name_font = false;
54 const string AutomationTimeAxisView::state_node_name = "AutomationChild";
55
56
57 /** \a a the automatable object this time axis is to display data for.
58  * For route/track automation (e.g. gain) pass the route for both \r and \a.
59  * For route child (e.g. plugin) automation, pass the child for \a.
60  * For region automation (e.g. MIDI CC), pass null for \a.
61  */
62 AutomationTimeAxisView::AutomationTimeAxisView (Session* s, boost::shared_ptr<Route> r,
63                 boost::shared_ptr<Automatable> a, boost::shared_ptr<AutomationControl> c,
64                 PublicEditor& e, TimeAxisView& parent, bool show_regions,
65                 ArdourCanvas::Canvas& canvas, const string & nom, const string & nomparent)
66         : AxisView (s),
67           TimeAxisView (s, e, &parent, canvas),
68           _route (r),
69           _control (c),
70           _automatable (a),
71           _controller(AutomationController::create(a, c->parameter(), c)),
72           _base_rect (0),
73           _view (show_regions ? new AutomationStreamView(*this) : NULL),
74           _name (nom),
75           auto_button (X_("")) /* force addition of a label */
76 {
77         if (!have_name_font) {
78                 name_font = get_font_for_style (X_("AutomationTrackName"));
79                 have_name_font = true;
80         }
81
82         automation_menu = 0;
83         auto_off_item = 0;
84         auto_touch_item = 0;
85         auto_write_item = 0;
86         auto_play_item = 0;
87         mode_discrete_item = 0;
88         mode_line_item = 0;
89
90         ignore_state_request = false;
91         first_call_to_set_height = true;
92
93         _base_rect = new SimpleRect(*_canvas_display);
94         _base_rect->property_x1() = 0.0;
95         _base_rect->property_y1() = 0.0;
96         _base_rect->property_x2() = LONG_MAX - 2;
97         _base_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_AutomationTrackOutline.get();
98
99         /* outline ends and bottom */
100         _base_rect->property_outline_what() = (guint32) (0x1|0x2|0x8);
101         _base_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_AutomationTrackFill.get();
102
103         _base_rect->set_data ("trackview", this);
104
105         _base_rect->signal_event().connect (sigc::bind (
106                         sigc::mem_fun (_editor, &PublicEditor::canvas_automation_track_event),
107                         _base_rect, this));
108
109         if (!a) {
110                 _base_rect->lower_to_bottom();
111         }
112
113         hide_button.add (*(manage (new Gtk::Image (::get_icon("hide")))));
114
115         auto_button.set_name ("TrackVisualButton");
116         hide_button.set_name ("TrackRemoveButton");
117
118         auto_button.unset_flags (Gtk::CAN_FOCUS);
119         hide_button.unset_flags (Gtk::CAN_FOCUS);
120
121         controls_table.set_no_show_all();
122
123         ARDOUR_UI::instance()->tooltips().set_tip(auto_button, _("automation state"));
124         ARDOUR_UI::instance()->tooltips().set_tip(hide_button, _("hide track"));
125
126         /* rearrange the name display */
127
128         /* we never show these for automation tracks, so make
129            life easier and remove them.
130         */
131
132         hide_name_entry();
133
134         /* move the name label over a bit */
135
136         string shortpname = _name;
137         bool shortened = false;
138
139         int ignore_width;
140         shortpname = fit_to_pixels (_name, 60, *name_font, ignore_width, true);
141
142         if (shortpname != _name ){
143                 shortened = true;
144         }
145
146         name_label.set_text (shortpname);
147         name_label.set_alignment (Gtk::ALIGN_CENTER, Gtk::ALIGN_CENTER);
148
149         if (nomparent.length()) {
150
151                 /* limit the plug name string */
152
153                 string pname = fit_to_pixels (nomparent, 60, *name_font, ignore_width, true);
154                 if (pname != nomparent) {
155                         shortened = true;
156                 }
157
158                 plugname = new Label (pname);
159                 plugname->set_name (X_("TrackPlugName"));
160                 plugname->show();
161                 name_label.set_name (X_("TrackParameterName"));
162                 controls_table.remove (name_hbox);
163                 controls_table.attach (*plugname, 1, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
164                 plugname_packed = true;
165                 controls_table.attach (name_hbox, 1, 5, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
166         } else {
167                 plugname = 0;
168                 plugname_packed = false;
169         }
170
171         if (shortened) {
172                 string tipname = nomparent;
173                 if (!tipname.empty()) {
174                         tipname += ": ";
175                 }
176                 tipname += _name;
177                 ARDOUR_UI::instance()->tooltips().set_tip(controls_ebox, tipname);
178         }
179
180         /* add the buttons */
181         controls_table.attach (hide_button, 0, 1, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
182
183         controls_table.attach (auto_button, 5, 8, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
184
185         /* add bar controller */
186         controls_table.attach (*_controller.get(), 0, 8, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
187
188         controls_table.show_all ();
189
190         hide_button.signal_clicked().connect (sigc::mem_fun(*this, &AutomationTimeAxisView::hide_clicked));
191         auto_button.signal_clicked().connect (sigc::mem_fun(*this, &AutomationTimeAxisView::auto_clicked));
192
193         controls_base_selected_name = X_("AutomationTrackControlsBaseSelected");
194         controls_base_unselected_name = X_("AutomationTrackControlsBase");
195         controls_ebox.set_name (controls_base_unselected_name);
196
197         XMLNode* xml_node = get_parent_with_state()->get_automation_child_xml_node (
198                         _control->parameter());
199
200         if (xml_node) {
201                 set_state (*xml_node, Stateful::loading_state_version);
202         }
203
204         /* ask for notifications of any new RegionViews */
205         if (show_regions) {
206
207                 assert(_view);
208                 _view->attach ();
209
210         /* no regions, just a single line for the entire track (e.g. bus gain) */
211         } else {
212                 boost::shared_ptr<AutomationLine> line(new AutomationLine (
213                                         ARDOUR::EventTypeMap::instance().to_symbol(_control->parameter()),
214                                         *this,
215                                         *_canvas_display,
216                                         _control->alist()));
217
218                 line->set_line_color (ARDOUR_UI::config()->canvasvar_ProcessorAutomationLine.get());
219                 line->queue_reset ();
220                 add_line (line);
221         }
222
223         /* make sure labels etc. are correct */
224
225         automation_state_changed ();
226         ColorsChanged.connect (sigc::mem_fun (*this, &AutomationTimeAxisView::color_handler));
227 }
228
229 AutomationTimeAxisView::~AutomationTimeAxisView ()
230 {
231 }
232
233 void
234 AutomationTimeAxisView::auto_clicked ()
235 {
236         using namespace Menu_Helpers;
237
238         if (automation_menu == 0) {
239                 automation_menu = manage (new Menu);
240                 automation_menu->set_name ("ArdourContextMenu");
241                 MenuList& items (automation_menu->items());
242
243                 items.push_back (MenuElem (_("Manual"), sigc::bind (sigc::mem_fun(*this,
244                                 &AutomationTimeAxisView::set_automation_state), (AutoState) Off)));
245                 items.push_back (MenuElem (_("Play"), sigc::bind (sigc::mem_fun(*this,
246                                 &AutomationTimeAxisView::set_automation_state), (AutoState) Play)));
247                 items.push_back (MenuElem (_("Write"), sigc::bind (sigc::mem_fun(*this,
248                                 &AutomationTimeAxisView::set_automation_state), (AutoState) Write)));
249                 items.push_back (MenuElem (_("Touch"), sigc::bind (sigc::mem_fun(*this,
250                                 &AutomationTimeAxisView::set_automation_state), (AutoState) Touch)));
251         }
252
253         automation_menu->popup (1, gtk_get_current_event_time());
254 }
255
256 void
257 AutomationTimeAxisView::set_automation_state (AutoState state)
258 {
259         if (!ignore_state_request) {
260                 if (_automatable) {
261                         _automatable->set_parameter_automation_state (_control->parameter(), state);
262                 }
263 #if 0
264                 if (_route == _automatable) { // This is a time axis for route (not region) automation
265                         _route->set_parameter_automation_state (_control->parameter(), state);
266                 }
267
268                 if (_control->list())
269                         _control->alist()->set_automation_state(state);
270 #endif
271         }
272
273         if (_view) {
274                 _view->set_automation_state (state);
275         }
276 }
277
278 void
279 AutomationTimeAxisView::automation_state_changed ()
280 {
281         AutoState state;
282
283         /* update button label */
284
285         if (!_line) {
286                 state = Off;
287         } else {
288                 state = _control->alist()->automation_state ();
289         }
290
291         switch (state & (Off|Play|Touch|Write)) {
292         case Off:
293                 auto_button.set_label (_("Manual"));
294                 if (auto_off_item) {
295                         ignore_state_request = true;
296                         auto_off_item->set_active (true);
297                         auto_play_item->set_active (false);
298                         auto_touch_item->set_active (false);
299                         auto_write_item->set_active (false);
300                         ignore_state_request = false;
301                 }
302                 break;
303         case Play:
304                 auto_button.set_label (_("Play"));
305                 if (auto_play_item) {
306                         ignore_state_request = true;
307                         auto_play_item->set_active (true);
308                         auto_off_item->set_active (false);
309                         auto_touch_item->set_active (false);
310                         auto_write_item->set_active (false);
311                         ignore_state_request = false;
312                 }
313                 break;
314         case Write:
315                 auto_button.set_label (_("Write"));
316                 if (auto_write_item) {
317                         ignore_state_request = true;
318                         auto_write_item->set_active (true);
319                         auto_off_item->set_active (false);
320                         auto_play_item->set_active (false);
321                         auto_touch_item->set_active (false);
322                         ignore_state_request = false;
323                 }
324                 break;
325         case Touch:
326                 auto_button.set_label (_("Touch"));
327                 if (auto_touch_item) {
328                         ignore_state_request = true;
329                         auto_touch_item->set_active (true);
330                         auto_off_item->set_active (false);
331                         auto_play_item->set_active (false);
332                         auto_write_item->set_active (false);
333                         ignore_state_request = false;
334                 }
335                 break;
336         default:
337                 auto_button.set_label (_("???"));
338                 break;
339         }
340 }
341
342 void
343 AutomationTimeAxisView::interpolation_changed ()
344 {
345         AutomationList::InterpolationStyle style = _control->list()->interpolation();
346
347         if (mode_line_item && mode_discrete_item) {
348                 if (style == AutomationList::Discrete) {
349                         mode_discrete_item->set_active(true);
350                         mode_line_item->set_active(false);
351                 } else {
352                         mode_line_item->set_active(true);
353                         mode_discrete_item->set_active(false);
354                 }
355         }
356
357         if (_line) {
358                 _line->set_interpolation(style);
359         }
360 }
361
362 void
363 AutomationTimeAxisView::set_interpolation (AutomationList::InterpolationStyle style)
364 {
365         _control->list()->set_interpolation(style);
366         if (_line) {
367                 _line->set_interpolation(style);
368         }
369 }
370
371 void
372 AutomationTimeAxisView::clear_clicked ()
373 {
374         _session->begin_reversible_command (_("clear automation"));
375         if (_line) {
376                 _line->clear ();
377         }
378         _session->commit_reversible_command ();
379 }
380
381 void
382 AutomationTimeAxisView::set_height (uint32_t h)
383 {
384         bool changed = (height != (uint32_t) h) || first_call_to_set_height;
385         bool changed_between_small_and_normal = (
386                    (height < hNormal && h >= hNormal)
387                 || (height >= hNormal || h < hNormal) );
388
389         TimeAxisView* state_parent = get_parent_with_state ();
390         assert(state_parent);
391         XMLNode* xml_node = state_parent->get_automation_child_xml_node (_control->parameter());
392
393         TimeAxisView::set_height (h);
394         _base_rect->property_y2() = h;
395
396         if (_line)
397                 _line->set_height(h);
398
399         if (_view) {
400                 _view->set_height(h);
401                 _view->update_contents_height();
402         }
403
404         char buf[32];
405         snprintf (buf, sizeof (buf), "%u", height);
406         if (xml_node) {
407                 xml_node->add_property ("height", buf);
408         }
409
410         if (changed_between_small_and_normal || first_call_to_set_height) {
411
412                 first_call_to_set_height = false;
413
414                 if (h >= hNormal) {
415                         controls_table.remove (name_hbox);
416
417                         if (plugname) {
418                                 if (plugname_packed) {
419                                         controls_table.remove (*plugname);
420                                         plugname_packed = false;
421                                 }
422                                 controls_table.attach (*plugname, 1, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
423                                 plugname_packed = true;
424                                 controls_table.attach (name_hbox, 1, 5, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
425                         } else {
426                                 controls_table.attach (name_hbox, 1, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
427                         }
428                         hide_name_entry ();
429                         show_name_label ();
430                         name_hbox.show_all ();
431
432                         auto_button.show();
433                         hide_button.show_all();
434
435                 } else if (h >= hSmall) {
436                         controls_table.remove (name_hbox);
437                         if (plugname) {
438                                 if (plugname_packed) {
439                                         controls_table.remove (*plugname);
440                                         plugname_packed = false;
441                                 }
442                         }
443                         controls_table.attach (name_hbox, 1, 5, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
444                         controls_table.hide_all ();
445                         hide_name_entry ();
446                         show_name_label ();
447                         name_hbox.show_all ();
448
449                         auto_button.hide();
450                         hide_button.hide();
451                 }
452         } else if (h >= hNormal){
453                 cerr << "track grown, but neither changed_between_small_and_normal nor first_call_to_set_height set!" << endl;
454         }
455
456         if (changed) {
457                 if (canvas_item_visible (_canvas_display)) {
458                         /* only emit the signal if the height really changed and we were visible */
459                         _route->gui_changed ("visible_tracks", (void *) 0); /* EMIT_SIGNAL */
460                 }
461         }
462 }
463
464 void
465 AutomationTimeAxisView::set_samples_per_unit (double spu)
466 {
467         TimeAxisView::set_samples_per_unit (spu);
468
469         if (_line)
470                 _line->reset ();
471
472         if (_view)
473                 _view->set_samples_per_unit (spu);
474 }
475
476 void
477 AutomationTimeAxisView::hide_clicked ()
478 {
479         // LAME fix for refreshing the hide button
480         hide_button.set_sensitive(false);
481
482         set_marked_for_display (false);
483         hide ();
484
485         hide_button.set_sensitive(true);
486 }
487
488 void
489 AutomationTimeAxisView::build_display_menu ()
490 {
491         using namespace Menu_Helpers;
492
493         /* get the size menu ready */
494
495         build_size_menu ();
496
497         /* prepare it */
498
499         TimeAxisView::build_display_menu ();
500
501         /* now fill it with our stuff */
502
503         MenuList& items = display_menu->items();
504
505         items.push_back (MenuElem (_("Height"), *size_menu));
506         items.push_back (SeparatorElem());
507         items.push_back (MenuElem (_("Hide"), sigc::mem_fun(*this, &AutomationTimeAxisView::hide_clicked)));
508         items.push_back (SeparatorElem());
509         items.push_back (MenuElem (_("Clear"), sigc::mem_fun(*this, &AutomationTimeAxisView::clear_clicked)));
510         items.push_back (SeparatorElem());
511
512         /* state menu */
513
514         Menu* auto_state_menu = manage (new Menu);
515         auto_state_menu->set_name ("ArdourContextMenu");
516         MenuList& as_items = auto_state_menu->items();
517
518         as_items.push_back (CheckMenuElem (_("Manual"), sigc::bind (
519                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
520                         (AutoState) Off)));
521         auto_off_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
522
523         as_items.push_back (CheckMenuElem (_("Play"), sigc::bind (
524                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
525                         (AutoState) Play)));
526         auto_play_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
527
528         as_items.push_back (CheckMenuElem (_("Write"), sigc::bind (
529                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
530                         (AutoState) Write)));
531         auto_write_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
532
533         as_items.push_back (CheckMenuElem (_("Touch"), sigc::bind (
534                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
535                         (AutoState) Touch)));
536         auto_touch_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
537
538         items.push_back (MenuElem (_("State"), *auto_state_menu));
539
540         /* mode menu */
541
542         if (EventTypeMap::instance().is_midi_parameter(_control->parameter())) {
543
544                 Menu* auto_mode_menu = manage (new Menu);
545                 auto_mode_menu->set_name ("ArdourContextMenu");
546                 MenuList& am_items = auto_mode_menu->items();
547
548                 RadioMenuItem::Group group;
549
550                 am_items.push_back (RadioMenuElem (group, _("Discrete"), sigc::bind (
551                                 sigc::mem_fun(*this, &AutomationTimeAxisView::set_interpolation),
552                                 AutomationList::Discrete)));
553                 mode_discrete_item = dynamic_cast<CheckMenuItem*>(&am_items.back());
554                 mode_discrete_item->set_active(_control->list()->interpolation() == AutomationList::Discrete);
555
556                 am_items.push_back (RadioMenuElem (group, _("Linear"), sigc::bind (
557                                 sigc::mem_fun(*this, &AutomationTimeAxisView::set_interpolation),
558                                 AutomationList::Linear)));
559                 mode_line_item = dynamic_cast<CheckMenuItem*>(&am_items.back());
560
561                 // Set default interpolation type to linear if this isn't a (usually) discrete controller
562                 if (EventTypeMap::instance().interpolation_of(_control->parameter()) == Evoral::ControlList::Linear) {
563                         mode_line_item->set_active(_control->list()->interpolation() == AutomationList::Linear);
564                 }
565
566                 items.push_back (MenuElem (_("Mode"), *auto_mode_menu));
567         }
568
569         /* make sure the automation menu state is correct */
570
571         automation_state_changed ();
572         interpolation_changed ();
573 }
574
575 void
576 AutomationTimeAxisView::add_automation_event (ArdourCanvas::Item* /*item*/, GdkEvent* /*event*/, nframes_t when, double y)
577 {
578         if (!_line)
579                 return;
580
581         double x = 0;
582
583         _canvas_display->w2i (x, y);
584
585         /* compute vertical fractional position */
586
587         y = 1.0 - (y / height);
588
589         /* map using line */
590
591         _line->view_to_model_coord (x, y);
592
593         _session->begin_reversible_command (_("add automation event"));
594         XMLNode& before = _control->alist()->get_state();
595
596         _control->alist()->add (when, y);
597
598         XMLNode& after = _control->alist()->get_state();
599         _session->commit_reversible_command (new MementoCommand<ARDOUR::AutomationList>(*_control->alist(), &before, &after));
600
601         _session->set_dirty ();
602 }
603
604 bool
605 AutomationTimeAxisView::cut_copy_clear (Selection& selection, CutCopyOp op)
606 {
607         return (_line ? cut_copy_clear_one (*_line, selection, op) : false);
608 }
609
610 bool
611 AutomationTimeAxisView::cut_copy_clear_one (AutomationLine& line, Selection& selection, CutCopyOp op)
612 {
613         boost::shared_ptr<Evoral::ControlList> what_we_got;
614         boost::shared_ptr<AutomationList> alist (line.the_list());
615         bool ret = false;
616
617         XMLNode &before = alist->get_state();
618
619         switch (op) {
620         case Cut:
621                 if ((what_we_got = alist->cut (selection.time.front().start, selection.time.front().end)) != 0) {
622                         _editor.get_cut_buffer().add (what_we_got);
623                         _session->add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
624                         ret = true;
625                 }
626                 break;
627         case Copy:
628                 if ((what_we_got = alist->copy (selection.time.front().start, selection.time.front().end)) != 0) {
629                         _editor.get_cut_buffer().add (what_we_got);
630                 }
631                 break;
632
633         case Clear:
634                 if ((what_we_got = alist->cut (selection.time.front().start, selection.time.front().end)) != 0) {
635                         _session->add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
636                         ret = true;
637                 }
638                 break;
639         }
640
641         if (what_we_got) {
642                 for (AutomationList::iterator x = what_we_got->begin(); x != what_we_got->end(); ++x) {
643                         double when = (*x)->when;
644                         double val  = (*x)->value;
645                         line.model_to_view_coord (when, val);
646                         (*x)->when = when;
647                         (*x)->value = val;
648                 }
649         }
650
651         return ret;
652 }
653
654 void
655 AutomationTimeAxisView::reset_objects (PointSelection& selection)
656 {
657         reset_objects_one (*_line, selection);
658 }
659
660 void
661 AutomationTimeAxisView::reset_objects_one (AutomationLine& line, PointSelection& selection)
662 {
663         boost::shared_ptr<AutomationList> alist(line.the_list());
664
665         _session->add_command (new MementoCommand<AutomationList>(*alist.get(), &alist->get_state(), 0));
666
667         for (PointSelection::iterator i = selection.begin(); i != selection.end(); ++i) {
668
669                 if ((*i).track != this) {
670                         continue;
671                 }
672
673                 alist->reset_range ((*i).start, (*i).end);
674         }
675 }
676
677 bool
678 AutomationTimeAxisView::cut_copy_clear_objects (PointSelection& selection, CutCopyOp op)
679 {
680         return cut_copy_clear_objects_one (*_line, selection, op);
681 }
682
683 bool
684 AutomationTimeAxisView::cut_copy_clear_objects_one (AutomationLine& line, PointSelection& selection, CutCopyOp op)
685 {
686         boost::shared_ptr<Evoral::ControlList> what_we_got;
687         boost::shared_ptr<AutomationList> alist(line.the_list());
688         bool ret = false;
689
690         XMLNode &before = alist->get_state();
691
692         for (PointSelection::iterator i = selection.begin(); i != selection.end(); ++i) {
693
694                 if ((*i).track != this) {
695                         continue;
696                 }
697
698                 switch (op) {
699                 case Cut:
700                         if ((what_we_got = alist->cut ((*i).start, (*i).end)) != 0) {
701                                 _editor.get_cut_buffer().add (what_we_got);
702                                 _session->add_command (new MementoCommand<AutomationList>(*alist.get(), new XMLNode (before), &alist->get_state()));
703                                 ret = true;
704                         }
705                         break;
706                 case Copy:
707                         if ((what_we_got = alist->copy ((*i).start, (*i).end)) != 0) {
708                                 _editor.get_cut_buffer().add (what_we_got);
709                         }
710                         break;
711
712                 case Clear:
713                         if ((what_we_got = alist->cut ((*i).start, (*i).end)) != 0) {
714                                 _session->add_command (new MementoCommand<AutomationList>(*alist.get(), new XMLNode (before), &alist->get_state()));
715                                 ret = true;
716                         }
717                         break;
718                 }
719         }
720
721         delete &before;
722
723         if (what_we_got) {
724                 for (AutomationList::iterator x = what_we_got->begin(); x != what_we_got->end(); ++x) {
725                         double when = (*x)->when;
726                         double val  = (*x)->value;
727                         line.model_to_view_coord (when, val);
728                         (*x)->when = when;
729                         (*x)->value = val;
730                 }
731         }
732
733         return ret;
734 }
735
736 bool
737 AutomationTimeAxisView::paste (nframes_t pos, float times, Selection& selection, size_t nth)
738 {
739         return paste_one (*_line, pos, times, selection, nth);
740 }
741
742 bool
743 AutomationTimeAxisView::paste_one (AutomationLine& line, nframes_t pos, float times, Selection& selection, size_t nth)
744 {
745         AutomationSelection::iterator p;
746         boost::shared_ptr<AutomationList> alist(line.the_list());
747
748         for (p = selection.lines.begin(); p != selection.lines.end() && nth; ++p, --nth) {}
749
750         if (p == selection.lines.end()) {
751                 return false;
752         }
753
754         /* Make a copy of the list because we have to scale the
755            values from view coordinates to model coordinates, and we're
756            not supposed to modify the points in the selection.
757         */
758
759         AutomationList copy (**p);
760
761         for (AutomationList::iterator x = copy.begin(); x != copy.end(); ++x) {
762                 double when = (*x)->when;
763                 double val  = (*x)->value;
764                 line.view_to_model_coord (when, val);
765                 (*x)->when = when;
766                 (*x)->value = val;
767         }
768
769         XMLNode &before = alist->get_state();
770         alist->paste (copy, pos, times);
771         _session->add_command (new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
772
773         return true;
774 }
775
776 void
777 AutomationTimeAxisView::get_selectables (nframes_t start, nframes_t end, double top, double bot, list<Selectable*>& results)
778 {
779         if (_line && touched (top, bot)) {
780                 double topfrac;
781                 double botfrac;
782
783                 /* remember: this is X Window - coordinate space starts in upper left and moves down.
784                    _y_position is the "origin" or "top" of the track.
785                 */
786
787                 double mybot = _y_position + height;
788
789                 if (_y_position >= top && mybot <= bot) {
790
791                         /* _y_position is below top, mybot is above bot, so we're fully
792                            covered vertically.
793                         */
794
795                         topfrac = 1.0;
796                         botfrac = 0.0;
797
798                 } else {
799
800                         /* top and bot are within _y_position .. mybot */
801
802                         topfrac = 1.0 - ((top - _y_position) / height);
803                         botfrac = 1.0 - ((bot - _y_position) / height);
804                 }
805
806                 if (_line)
807                         _line->get_selectables (start, end, botfrac, topfrac, results);
808         }
809 }
810
811 void
812 AutomationTimeAxisView::get_inverted_selectables (Selection& sel, list<Selectable*>& result)
813 {
814         if (_line)
815                 _line->get_inverted_selectables (sel, result);
816 }
817
818 void
819 AutomationTimeAxisView::set_selected_points (PointSelection& points)
820 {
821         if (_line) {
822                 _line->set_selected_points (points);
823         }
824 }
825
826 void
827 AutomationTimeAxisView::clear_lines ()
828 {
829         _line.reset();
830         automation_connection.disconnect ();
831 }
832
833 void
834 AutomationTimeAxisView::add_line (boost::shared_ptr<AutomationLine> line)
835 {
836         assert(line);
837         assert(!_line);
838         assert(line->the_list() == _control->list());
839
840         _control->alist()->automation_state_changed.connect (automation_connection, boost::bind (&AutomationTimeAxisView::automation_state_changed, this), gui_context());
841
842         _line = line;
843         //_controller = AutomationController::create(_session, line->the_list(), _control);
844
845         line->set_height (height);
846
847         /* pick up the current state */
848         automation_state_changed ();
849
850         line->show();
851 }
852
853 void
854 AutomationTimeAxisView::entered()
855 {
856         if (_line)
857                 _line->track_entered();
858 }
859
860 void
861 AutomationTimeAxisView::exited ()
862 {
863         if (_line)
864                 _line->track_exited();
865 }
866
867 void
868 AutomationTimeAxisView::color_handler ()
869 {
870         if (_line) {
871                 _line->set_colors();
872         }
873 }
874
875 int
876 AutomationTimeAxisView::set_state (const XMLNode& node, int version)
877 {
878         TimeAxisView::set_state (node, version);
879
880         XMLProperty const * type = node.property ("automation-id");
881         if (type && type->value () == ARDOUR::EventTypeMap::instance().to_symbol (_control->parameter())) {
882                 XMLProperty const * shown = node.property ("shown");
883                 if (shown && shown->value () == "yes") {
884                         set_marked_for_display (true);
885                         _canvas_display->show (); /* FIXME: necessary? show_at? */
886                 }
887         }
888
889         if (!_marked_for_display) {
890                 hide();
891         }
892
893         return 0;
894 }
895
896 XMLNode*
897 AutomationTimeAxisView::get_state_node ()
898 {
899         TimeAxisView* state_parent = get_parent_with_state ();
900
901         if (state_parent) {
902                 return state_parent->get_automation_child_xml_node (_control->parameter());
903         } else {
904                 return 0;
905         }
906 }
907
908 void
909 AutomationTimeAxisView::update_extra_xml_shown (bool editor_shown)
910 {
911         XMLNode* xml_node = get_state_node();
912         if (xml_node) {
913                 xml_node->add_property ("shown", editor_shown ? "yes" : "no");
914         }
915 }
916
917 guint32
918 AutomationTimeAxisView::show_at (double y, int& nth, Gtk::VBox *parent)
919 {
920         update_extra_xml_shown (true);
921
922         return TimeAxisView::show_at (y, nth, parent);
923 }
924
925 void
926 AutomationTimeAxisView::hide ()
927 {
928         update_extra_xml_shown (false);
929
930         TimeAxisView::hide ();
931 }
932
933 bool
934 AutomationTimeAxisView::set_visibility (bool yn)
935 {
936         bool changed = TimeAxisView::set_visibility (yn);
937
938         if (changed) {
939                 get_state_node()->add_property ("shown", yn ? X_("yes") : X_("no"));
940         }
941
942         return changed;
943 }