Use a list of ControlPoints to hold the automation selection,
[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 <gtkmm2ext/utils.h>
23 #include <boost/algorithm/string.hpp>
24 #include <boost/lexical_cast.hpp>
25
26 #include "pbd/memento_command.h"
27 #include "pbd/stacktrace.h"
28
29 #include "ardour/automation_control.h"
30 #include "ardour/event_type_map.h"
31 #include "ardour/route.h"
32 #include "ardour/session.h"
33
34 #include "ardour_ui.h"
35 #include "automation_time_axis.h"
36 #include "automation_streamview.h"
37 #include "global_signals.h"
38 #include "gui_thread.h"
39 #include "route_time_axis.h"
40 #include "automation_line.h"
41 #include "public_editor.h"
42 #include "simplerect.h"
43 #include "selection.h"
44 #include "rgb_macros.h"
45 #include "point_selection.h"
46 #include "canvas_impl.h"
47 #include "control_point.h"
48 #include "utils.h"
49
50 #include "i18n.h"
51
52 using namespace std;
53 using namespace ARDOUR;
54 using namespace PBD;
55 using namespace Gtk;
56 using namespace Gtkmm2ext;
57 using namespace Editing;
58
59 Pango::FontDescription AutomationTimeAxisView::name_font;
60 bool AutomationTimeAxisView::have_name_font = false;
61
62
63 /** \a a the automatable object this time axis is to display data for.
64  * For route/track automation (e.g. gain) pass the route for both \r and \a.
65  * For route child (e.g. plugin) automation, pass the child for \a.
66  * For region automation (e.g. MIDI CC), pass null for \a.
67  */
68 AutomationTimeAxisView::AutomationTimeAxisView (
69         Session* s,
70         boost::shared_ptr<Route> r,
71         boost::shared_ptr<Automatable> a,
72         boost::shared_ptr<AutomationControl> c,
73         Evoral::Parameter p,
74         PublicEditor& e,
75         TimeAxisView& parent,
76         bool show_regions,
77         ArdourCanvas::Canvas& canvas,
78         const string & nom,
79         const string & nomparent
80         )
81         : AxisView (s)
82         , TimeAxisView (s, e, &parent, canvas)
83         , _route (r)
84         , _control (c)
85         , _automatable (a)
86         , _parameter (p)
87         , _base_rect (0)
88         , _view (show_regions ? new AutomationStreamView (*this) : 0)
89         , _name (nom)
90         , auto_button (X_("")) /* force addition of a label */
91         , _show_regions (show_regions)
92 {
93         if (!have_name_font) {
94                 name_font = get_font_for_style (X_("AutomationTrackName"));
95                 have_name_font = true;
96         }
97
98         if (_automatable && _control) {
99                 _controller = AutomationController::create (_automatable, _control->parameter(), _control);
100         }
101
102         automation_menu = 0;
103         auto_off_item = 0;
104         auto_touch_item = 0;
105         auto_write_item = 0;
106         auto_play_item = 0;
107         mode_discrete_item = 0;
108         mode_line_item = 0;
109
110         ignore_state_request = false;
111         first_call_to_set_height = true;
112
113         _base_rect = new SimpleRect(*_canvas_display);
114         _base_rect->property_x1() = 0.0;
115         _base_rect->property_y1() = 0.0;
116         /** gnomecanvas sometimes converts this value to int or adds 2 to it, so it must be
117             set correctly to avoid overflow.
118         */
119         _base_rect->property_x2() = INT_MAX - 2;
120         _base_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_AutomationTrackOutline.get();
121
122         /* outline ends and bottom */
123         _base_rect->property_outline_what() = (guint32) (0x1|0x2|0x8);
124         _base_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_AutomationTrackFill.get();
125
126         _base_rect->set_data ("trackview", this);
127
128         _base_rect->signal_event().connect (sigc::bind (
129                         sigc::mem_fun (_editor, &PublicEditor::canvas_automation_track_event),
130                         _base_rect, this));
131
132         if (!a) {
133                 _base_rect->lower_to_bottom();
134         }
135
136         hide_button.add (*(manage (new Gtk::Image (::get_icon("hide")))));
137
138         auto_button.set_name ("TrackVisualButton");
139         hide_button.set_name ("TrackRemoveButton");
140
141         auto_button.unset_flags (Gtk::CAN_FOCUS);
142         hide_button.unset_flags (Gtk::CAN_FOCUS);
143
144         controls_table.set_no_show_all();
145
146         ARDOUR_UI::instance()->set_tip(auto_button, _("automation state"));
147         ARDOUR_UI::instance()->set_tip(hide_button, _("hide track"));
148
149         string str = gui_property ("height");
150         if (!str.empty()) {
151                 set_height (atoi (str));
152         } else {
153                 set_height (preset_height (HeightNormal));
154         }
155
156         /* rearrange the name display */
157
158         controls_table.remove (name_hbox);
159         controls_table.attach (name_hbox, 1, 6, 0, 1,  Gtk::FILL|Gtk::EXPAND,  Gtk::FILL|Gtk::EXPAND, 3, 0);
160
161         /* we never show these for automation tracks, so make
162            life easier and remove them.
163         */
164
165         hide_name_entry();
166
167         name_label.set_text (_name);
168         name_label.set_alignment (Gtk::ALIGN_CENTER, Gtk::ALIGN_CENTER);
169         name_label.set_name (X_("TrackParameterName"));
170         name_label.set_ellipsize (Pango::ELLIPSIZE_END);
171
172         string tipname = nomparent;
173         if (!tipname.empty()) {
174                 tipname += ": ";
175         }
176         tipname += _name;
177         ARDOUR_UI::instance()->set_tip(controls_ebox, tipname);
178
179         /* add the buttons */
180         controls_table.attach (hide_button, 0, 1, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
181         controls_table.attach (auto_button, 6, 8, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
182
183         if (_controller) {
184                 /* add bar controller */
185                 controls_table.attach (*_controller.get(), 0, 8, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
186                 /* note that this handler connects *before* the default handler */
187                 _controller->event_widget().signal_scroll_event().connect (mem_fun (*this, &AutomationTimeAxisView::controls_ebox_scroll), false);
188         }
189
190         controls_table.show_all ();
191
192         hide_button.signal_clicked().connect (sigc::mem_fun(*this, &AutomationTimeAxisView::hide_clicked));
193         auto_button.signal_clicked().connect (sigc::mem_fun(*this, &AutomationTimeAxisView::auto_clicked));
194
195         controls_base_selected_name = X_("AutomationTrackControlsBaseSelected");
196         controls_base_unselected_name = X_("AutomationTrackControlsBase");
197         controls_ebox.set_name (controls_base_unselected_name);
198
199         /* ask for notifications of any new RegionViews */
200         if (show_regions) {
201
202                 assert(_view);
203                 _view->attach ();
204
205         } else {
206                 /* no regions, just a single line for the entire track (e.g. bus gain) */
207
208                 assert (_control);
209
210                 boost::shared_ptr<AutomationLine> line (
211                         new AutomationLine (
212                                 ARDOUR::EventTypeMap::instance().to_symbol(_parameter),
213                                 *this,
214                                 *_canvas_display,
215                                 _control->alist()
216                                 )
217                         );
218
219                 line->set_line_color (ARDOUR_UI::config()->canvasvar_ProcessorAutomationLine.get());
220                 line->queue_reset ();
221                 add_line (line);
222         }
223
224         /* make sure labels etc. are correct */
225
226         automation_state_changed ();
227         ColorsChanged.connect (sigc::mem_fun (*this, &AutomationTimeAxisView::color_handler));
228
229         _route->DropReferences.connect (
230                 _route_connections, invalidator (*this), ui_bind (&AutomationTimeAxisView::route_going_away, this), gui_context ()
231                 );
232 }
233
234 AutomationTimeAxisView::~AutomationTimeAxisView ()
235 {
236         delete _view;
237 }
238
239 void
240 AutomationTimeAxisView::route_going_away ()
241 {
242         _route.reset ();
243 }
244
245 void
246 AutomationTimeAxisView::auto_clicked ()
247 {
248         using namespace Menu_Helpers;
249
250         if (automation_menu == 0) {
251                 automation_menu = manage (new Menu);
252                 automation_menu->set_name ("ArdourContextMenu");
253                 MenuList& items (automation_menu->items());
254
255                 items.push_back (MenuElem (S_("Automation|Manual"), sigc::bind (sigc::mem_fun(*this,
256                                                                                               &AutomationTimeAxisView::set_automation_state), (AutoState) ARDOUR::Off)));
257                 items.push_back (MenuElem (_("Play"), sigc::bind (sigc::mem_fun(*this,
258                                 &AutomationTimeAxisView::set_automation_state), (AutoState) Play)));
259                 items.push_back (MenuElem (_("Write"), sigc::bind (sigc::mem_fun(*this,
260                                 &AutomationTimeAxisView::set_automation_state), (AutoState) Write)));
261                 items.push_back (MenuElem (_("Touch"), sigc::bind (sigc::mem_fun(*this,
262                                 &AutomationTimeAxisView::set_automation_state), (AutoState) Touch)));
263         }
264
265         automation_menu->popup (1, gtk_get_current_event_time());
266 }
267
268 void
269 AutomationTimeAxisView::set_automation_state (AutoState state)
270 {
271         if (ignore_state_request) {
272                 return;
273         }
274
275         if (_automatable) {
276                 _automatable->set_parameter_automation_state (_parameter, state);
277         }
278
279         if (_view) {
280                 _view->set_automation_state (state);
281
282                 /* AutomationStreamViews don't signal when their automation state changes, so handle
283                    our updates `manually'.
284                 */
285                 automation_state_changed ();
286         }
287 }
288
289 void
290 AutomationTimeAxisView::automation_state_changed ()
291 {
292         AutoState state;
293
294         /* update button label */
295
296         if (_view) {
297                 state = _view->automation_state ();
298         } else if (_line) {
299                 assert (_control);
300                 state = _control->alist()->automation_state ();
301         } else {
302                 state = ARDOUR::Off;
303         }
304
305         switch (state & (ARDOUR::Off|Play|Touch|Write)) {
306         case ARDOUR::Off:
307                 auto_button.set_label (S_("Automation|Manual"));
308                 if (auto_off_item) {
309                         ignore_state_request = true;
310                         auto_off_item->set_active (true);
311                         auto_play_item->set_active (false);
312                         auto_touch_item->set_active (false);
313                         auto_write_item->set_active (false);
314                         ignore_state_request = false;
315                 }
316                 break;
317         case Play:
318                 auto_button.set_label (_("Play"));
319                 if (auto_play_item) {
320                         ignore_state_request = true;
321                         auto_play_item->set_active (true);
322                         auto_off_item->set_active (false);
323                         auto_touch_item->set_active (false);
324                         auto_write_item->set_active (false);
325                         ignore_state_request = false;
326                 }
327                 break;
328         case Write:
329                 auto_button.set_label (_("Write"));
330                 if (auto_write_item) {
331                         ignore_state_request = true;
332                         auto_write_item->set_active (true);
333                         auto_off_item->set_active (false);
334                         auto_play_item->set_active (false);
335                         auto_touch_item->set_active (false);
336                         ignore_state_request = false;
337                 }
338                 break;
339         case Touch:
340                 auto_button.set_label (_("Touch"));
341                 if (auto_touch_item) {
342                         ignore_state_request = true;
343                         auto_touch_item->set_active (true);
344                         auto_off_item->set_active (false);
345                         auto_play_item->set_active (false);
346                         auto_write_item->set_active (false);
347                         ignore_state_request = false;
348                 }
349                 break;
350         default:
351                 auto_button.set_label (_("???"));
352                 break;
353         }
354 }
355
356 /** The interpolation style of our AutomationList has changed, so update */
357 void
358 AutomationTimeAxisView::interpolation_changed (AutomationList::InterpolationStyle s)
359 {
360         if (mode_line_item && mode_discrete_item) {
361                 if (s == AutomationList::Discrete) {
362                         mode_discrete_item->set_active(true);
363                         mode_line_item->set_active(false);
364                 } else {
365                         mode_line_item->set_active(true);
366                         mode_discrete_item->set_active(false);
367                 }
368         }
369 }
370
371 /** A menu item has been selected to change our interpolation mode */
372 void
373 AutomationTimeAxisView::set_interpolation (AutomationList::InterpolationStyle style)
374 {
375         /* Tell our view's list, if we have one, otherwise tell our own.
376          * Everything else will be signalled back from that.
377          */
378
379         if (_view) {
380                 _view->set_interpolation (style);
381         } else {
382                 assert (_control);
383                 _control->list()->set_interpolation (style);
384         }
385 }
386
387 void
388 AutomationTimeAxisView::clear_clicked ()
389 {
390         assert (_line || _view);
391
392         _session->begin_reversible_command (_("clear automation"));
393
394         if (_line) {
395                 _line->clear ();
396         } else if (_view) {
397                 _view->clear ();
398         }
399
400         _session->commit_reversible_command ();
401         _session->set_dirty ();
402 }
403
404 void
405 AutomationTimeAxisView::set_height (uint32_t h)
406 {
407         bool const changed = (height != (uint32_t) h) || first_call_to_set_height;
408         uint32_t const normal = preset_height (HeightNormal);
409         bool const changed_between_small_and_normal = ( (height < normal && h >= normal) || (height >= normal || h < normal) );
410
411         TimeAxisView::set_height (h);
412
413         _base_rect->property_y2() = h;
414
415         if (_line) {
416                 _line->set_height(h);
417         }
418
419         if (_view) {
420                 _view->set_height(h);
421                 _view->update_contents_height();
422         }
423
424         if (changed_between_small_and_normal || first_call_to_set_height) {
425
426                 first_call_to_set_height = false;
427
428                 if (h >= preset_height (HeightNormal)) {
429                         hide_name_entry ();
430                         show_name_label ();
431                         name_hbox.show_all ();
432
433                         auto_button.show();
434                         hide_button.show_all();
435
436                 } else if (h >= preset_height (HeightSmall)) {
437                         controls_table.hide_all ();
438                         hide_name_entry ();
439                         show_name_label ();
440                         name_hbox.show_all ();
441
442                         auto_button.hide();
443                         hide_button.hide();
444                 }
445         } else if (h >= preset_height (HeightNormal)) {
446                 cerr << "track grown, but neither changed_between_small_and_normal nor first_call_to_set_height set!" << endl;
447         }
448
449         if (changed) {
450                 if (canvas_item_visible (_canvas_display) && _route) {
451                         /* only emit the signal if the height really changed and we were visible */
452                         _route->gui_changed ("visible_tracks", (void *) 0); /* EMIT_SIGNAL */
453                 }
454         }
455 }
456
457 void
458 AutomationTimeAxisView::set_samples_per_unit (double spu)
459 {
460         TimeAxisView::set_samples_per_unit (spu);
461
462         if (_line) {
463                 _line->reset ();
464         }
465
466         if (_view) {
467                 _view->set_samples_per_unit (spu);
468         }
469 }
470
471 void
472 AutomationTimeAxisView::hide_clicked ()
473 {
474         hide_button.set_sensitive(false);
475         set_marked_for_display (false);
476         RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(parent);
477         if (rtv) {
478                 rtv->request_redraw ();
479         }
480         hide_button.set_sensitive(true);
481 }
482
483 void
484 AutomationTimeAxisView::build_display_menu ()
485 {
486         using namespace Menu_Helpers;
487
488         /* prepare it */
489
490         TimeAxisView::build_display_menu ();
491
492         /* now fill it with our stuff */
493
494         MenuList& items = display_menu->items();
495
496         items.push_back (MenuElem (_("Hide"), sigc::mem_fun(*this, &AutomationTimeAxisView::hide_clicked)));
497         items.push_back (SeparatorElem());
498         items.push_back (MenuElem (_("Clear"), sigc::mem_fun(*this, &AutomationTimeAxisView::clear_clicked)));
499         items.push_back (SeparatorElem());
500
501         /* state menu */
502
503         Menu* auto_state_menu = manage (new Menu);
504         auto_state_menu->set_name ("ArdourContextMenu");
505         MenuList& as_items = auto_state_menu->items();
506
507         as_items.push_back (CheckMenuElem (S_("Automation|Manual"), sigc::bind (
508                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
509                         (AutoState) ARDOUR::Off)));
510         auto_off_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
511
512         as_items.push_back (CheckMenuElem (_("Play"), sigc::bind (
513                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
514                         (AutoState) Play)));
515         auto_play_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
516
517         as_items.push_back (CheckMenuElem (_("Write"), sigc::bind (
518                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
519                         (AutoState) Write)));
520         auto_write_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
521
522         as_items.push_back (CheckMenuElem (_("Touch"), sigc::bind (
523                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
524                         (AutoState) Touch)));
525         auto_touch_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
526
527         items.push_back (MenuElem (_("State"), *auto_state_menu));
528
529         /* mode menu */
530
531         /* current interpolation state */
532         AutomationList::InterpolationStyle const s = _view ? _view->interpolation() : _control->list()->interpolation ();
533
534         if (EventTypeMap::instance().is_midi_parameter(_parameter)) {
535
536                 Menu* auto_mode_menu = manage (new Menu);
537                 auto_mode_menu->set_name ("ArdourContextMenu");
538                 MenuList& am_items = auto_mode_menu->items();
539
540                 RadioMenuItem::Group group;
541
542                 am_items.push_back (RadioMenuElem (group, _("Discrete"), sigc::bind (
543                                 sigc::mem_fun(*this, &AutomationTimeAxisView::set_interpolation),
544                                 AutomationList::Discrete)));
545                 mode_discrete_item = dynamic_cast<CheckMenuItem*>(&am_items.back());
546                 mode_discrete_item->set_active (s == AutomationList::Discrete);
547
548                 am_items.push_back (RadioMenuElem (group, _("Linear"), sigc::bind (
549                                 sigc::mem_fun(*this, &AutomationTimeAxisView::set_interpolation),
550                                 AutomationList::Linear)));
551                 mode_line_item = dynamic_cast<CheckMenuItem*>(&am_items.back());
552                 mode_line_item->set_active (s == AutomationList::Linear);
553
554                 items.push_back (MenuElem (_("Mode"), *auto_mode_menu));
555         }
556
557         /* make sure the automation menu state is correct */
558
559         automation_state_changed ();
560         interpolation_changed (s);
561 }
562
563 void
564 AutomationTimeAxisView::add_automation_event (GdkEvent* event, framepos_t when, double y)
565 {
566         if (!_line) {
567                 return;
568         }
569
570         double x = 0;
571
572         _canvas_display->w2i (x, y);
573
574         /* compute vertical fractional position */
575
576         y = 1.0 - (y / height);
577
578         /* map using line */
579
580         _line->view_to_model_coord (x, y);
581
582         boost::shared_ptr<AutomationList> list = _line->the_list ();
583
584         _editor.snap_to_with_modifier (when, event);
585
586         _session->begin_reversible_command (_("add automation event"));
587         XMLNode& before = list->get_state();
588
589         list->add (when, y);
590
591         XMLNode& after = list->get_state();
592         _session->commit_reversible_command (new MementoCommand<ARDOUR::AutomationList> (*list, &before, &after));
593         _session->set_dirty ();
594 }
595
596 /** Paste a selection.
597  *  @param pos Position to paste to (session frames).
598  *  @param times Number of times to paste.
599  *  @param selection Selection to paste.
600  *  @param nth Index of the AutomationList within the selection to paste from.
601  */
602 bool
603 AutomationTimeAxisView::paste (framepos_t pos, float times, Selection& selection, size_t nth)
604 {
605         boost::shared_ptr<AutomationLine> line;
606
607         if (_line) {
608                 line = _line;
609         } else if (_view) {
610                 line = _view->paste_line (pos);
611         }
612
613         if (!line) {
614                 return false;
615         }
616
617         return paste_one (*line, pos, times, selection, nth);
618 }
619
620 bool
621 AutomationTimeAxisView::paste_one (AutomationLine& line, framepos_t pos, float times, Selection& selection, size_t nth)
622 {
623         AutomationSelection::iterator p;
624         boost::shared_ptr<AutomationList> alist(line.the_list());
625
626         for (p = selection.lines.begin(); p != selection.lines.end() && nth; ++p, --nth) {}
627
628         if (p == selection.lines.end()) {
629                 return false;
630         }
631
632         double const model_pos = line.time_converter().from (pos - line.time_converter().origin_b ());
633
634         XMLNode &before = alist->get_state();
635         alist->paste (**p, model_pos, times);
636         _session->add_command (new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
637
638         return true;
639 }
640
641 void
642 AutomationTimeAxisView::get_selectables (framepos_t start, framepos_t end, double top, double bot, list<Selectable*>& results)
643 {
644         if (!_line && !_view) {
645                 return;
646         }
647
648         if (touched (top, bot)) {
649
650                 /* remember: this is X Window - coordinate space starts in upper left and moves down.
651                    _y_position is the "origin" or "top" of the track.
652                 */
653
654                 /* bottom of our track */
655                 double const mybot = _y_position + height;
656
657                 double topfrac;
658                 double botfrac;
659
660                 if (_y_position >= top && mybot <= bot) {
661
662                         /* _y_position is below top, mybot is above bot, so we're fully
663                            covered vertically.
664                         */
665
666                         topfrac = 1.0;
667                         botfrac = 0.0;
668
669                 } else {
670
671                         /* top and bot are within _y_position .. mybot */
672
673                         topfrac = 1.0 - ((top - _y_position) / height);
674                         botfrac = 1.0 - ((bot - _y_position) / height);
675
676                 }
677
678                 if (_line) {
679                         _line->get_selectables (start, end, botfrac, topfrac, results);
680                 } else if (_view) {
681                         _view->get_selectables (start, end, botfrac, topfrac, results);
682                 }
683         }
684 }
685
686 void
687 AutomationTimeAxisView::get_inverted_selectables (Selection& sel, list<Selectable*>& result)
688 {
689         if (_line) {
690                 _line->get_inverted_selectables (sel, result);
691         }
692 }
693
694 void
695 AutomationTimeAxisView::set_selected_points (PointSelection& points)
696 {
697         if (_line) {
698                 _line->set_selected_points (points);
699         } else if (_view) {
700                 _view->set_selected_points (points);
701         }
702 }
703
704 void
705 AutomationTimeAxisView::clear_lines ()
706 {
707         _line.reset();
708         _list_connections.drop_connections ();
709 }
710
711 void
712 AutomationTimeAxisView::add_line (boost::shared_ptr<AutomationLine> line)
713 {
714         assert(line);
715         assert(!_line);
716         if (_control) {
717                 assert(line->the_list() == _control->list());
718                 
719                 _control->alist()->automation_state_changed.connect (
720                         _list_connections, invalidator (*this), boost::bind (&AutomationTimeAxisView::automation_state_changed, this), gui_context()
721                         );
722                 
723                 _control->alist()->InterpolationChanged.connect (
724                         _list_connections, invalidator (*this), boost::bind (&AutomationTimeAxisView::interpolation_changed, this, _1), gui_context()
725                         );
726         }
727
728         _line = line;
729
730         line->set_height (height);
731
732         /* pick up the current state */
733         automation_state_changed ();
734
735         line->show();
736 }
737
738 void
739 AutomationTimeAxisView::entered()
740 {
741         if (_line) {
742                 _line->track_entered();
743         }
744 }
745
746 void
747 AutomationTimeAxisView::exited ()
748 {
749         if (_line) {
750                 _line->track_exited();
751         }
752 }
753
754 void
755 AutomationTimeAxisView::color_handler ()
756 {
757         if (_line) {
758                 _line->set_colors();
759         }
760 }
761
762 int
763 AutomationTimeAxisView::set_state_2X (const XMLNode& node, int /*version*/)
764 {
765         if (node.name() == X_("gain") && _parameter == Evoral::Parameter (GainAutomation)) {
766                 XMLProperty const * shown = node.property (X_("shown"));
767                 if (shown) {
768                         bool yn = string_is_affirmative (shown->value ());
769                         if (yn) {
770                                 _canvas_display->show (); /* FIXME: necessary? show_at? */
771                         }
772                         set_gui_property ("visible", yn);
773                 } else {
774                         set_gui_property ("visible", false);
775                 }
776         }
777
778         return 0;
779 }
780
781 int
782 AutomationTimeAxisView::set_state (const XMLNode&, int /*version*/)
783 {
784         return 0;
785 }
786
787 void
788 AutomationTimeAxisView::what_has_visible_automation (const boost::shared_ptr<Automatable>& automatable, set<Evoral::Parameter>& visible)
789 {
790         /* this keeps "knowledge" of how we store visibility information
791            in XML private to this class.
792         */
793
794         assert (automatable);
795
796         Automatable::Controls& controls (automatable->controls());
797         
798         for (Automatable::Controls::iterator i = controls.begin(); i != controls.end(); ++i) {
799                 
800                 boost::shared_ptr<AutomationControl> ac = boost::dynamic_pointer_cast<AutomationControl> (i->second);
801
802                 if (ac) {
803                         
804                         const XMLNode* gui_node = ac->extra_xml ("GUI");
805                         
806                         if (gui_node) {
807                                 const XMLProperty* prop = gui_node->property ("shown");
808                                 if (prop) {
809                                         if (string_is_affirmative (prop->value())) {
810                                                 visible.insert (i->first);
811                                         }
812                                 }
813                         }
814                 }
815         }
816 }
817
818
819 /** @return true if this view has any automation data to display */
820 bool
821 AutomationTimeAxisView::has_automation () const
822 {
823         return ( (_line && _line->npoints() > 0) || (_view && _view->has_automation()) );
824 }
825
826 list<boost::shared_ptr<AutomationLine> >
827 AutomationTimeAxisView::lines () const
828 {
829         list<boost::shared_ptr<AutomationLine> > lines;
830
831         if (_line) {
832                 lines.push_back (_line);
833         } else if (_view) {
834                 lines = _view->get_lines ();
835         }
836
837         return lines;
838 }
839
840 string
841 AutomationTimeAxisView::state_id() const
842 {
843         if (_control) {
844                 return string_compose ("automation %1", _control->id().to_s());
845         } else {
846                 assert (_parameter);
847                 return string_compose ("automation %1 %2/%3/%4", 
848                                        _route->id(), 
849                                        _parameter.type(),
850                                        _parameter.id(),
851                                        (int) _parameter.channel());
852         }
853 }
854
855 /** Given a state id string, see if it is one generated by
856  *  this class.  If so, parse it into its components.
857  *  @param state_id State ID string to parse.
858  *  @param route_id Filled in with the route's ID if the state ID string is parsed.
859  *  @param has_parameter Filled in with true if the state ID has a parameter, otherwise false.
860  *  @param parameter Filled in with the state ID's parameter, if it has one.
861  *  @return true if this is a state ID generated by this class, otherwise false.
862  */
863
864 bool
865 AutomationTimeAxisView::parse_state_id (
866         string const & state_id,
867         PBD::ID & route_id,
868         bool & has_parameter,
869         Evoral::Parameter & parameter)
870 {
871         stringstream s;
872         s << state_id;
873
874         string a, b, c;
875         s >> a >> b >> c;
876
877         if (a != X_("automation")) {
878                 return false;
879         }
880
881         route_id = PBD::ID (b);
882
883         if (c.empty ()) {
884                 has_parameter = false;
885                 return true;
886         }
887
888         has_parameter = true;
889
890         vector<string> p;
891         boost::split (p, c, boost::is_any_of ("/"));
892
893         assert (p.size() == 3);
894
895         parameter = Evoral::Parameter (
896                 boost::lexical_cast<int> (p[0]),
897                 boost::lexical_cast<int> (p[2]),
898                 boost::lexical_cast<int> (p[1])
899                 );
900
901         return true;
902 }