Grey-out patch changes on inactive channels rather than not
[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), boost::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         }
446
447         if (changed) {
448                 if (canvas_item_visible (_canvas_display) && _route) {
449                         /* only emit the signal if the height really changed and we were visible */
450                         _route->gui_changed ("visible_tracks", (void *) 0); /* EMIT_SIGNAL */
451                 }
452         }
453 }
454
455 void
456 AutomationTimeAxisView::set_samples_per_unit (double spu)
457 {
458         TimeAxisView::set_samples_per_unit (spu);
459
460         if (_line) {
461                 _line->reset ();
462         }
463
464         if (_view) {
465                 _view->set_samples_per_unit (spu);
466         }
467 }
468
469 void
470 AutomationTimeAxisView::hide_clicked ()
471 {
472         hide_button.set_sensitive(false);
473         set_marked_for_display (false);
474         RouteTimeAxisView* rtv = dynamic_cast<RouteTimeAxisView*>(parent);
475         if (rtv) {
476                 rtv->request_redraw ();
477         }
478         hide_button.set_sensitive(true);
479 }
480
481 void
482 AutomationTimeAxisView::build_display_menu ()
483 {
484         using namespace Menu_Helpers;
485
486         /* prepare it */
487
488         TimeAxisView::build_display_menu ();
489
490         /* now fill it with our stuff */
491
492         MenuList& items = display_menu->items();
493
494         items.push_back (MenuElem (_("Hide"), sigc::mem_fun(*this, &AutomationTimeAxisView::hide_clicked)));
495         items.push_back (SeparatorElem());
496         items.push_back (MenuElem (_("Clear"), sigc::mem_fun(*this, &AutomationTimeAxisView::clear_clicked)));
497         items.push_back (SeparatorElem());
498
499         /* state menu */
500
501         Menu* auto_state_menu = manage (new Menu);
502         auto_state_menu->set_name ("ArdourContextMenu");
503         MenuList& as_items = auto_state_menu->items();
504
505         as_items.push_back (CheckMenuElem (S_("Automation|Manual"), sigc::bind (
506                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
507                         (AutoState) ARDOUR::Off)));
508         auto_off_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
509
510         as_items.push_back (CheckMenuElem (_("Play"), sigc::bind (
511                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
512                         (AutoState) Play)));
513         auto_play_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
514
515         as_items.push_back (CheckMenuElem (_("Write"), sigc::bind (
516                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
517                         (AutoState) Write)));
518         auto_write_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
519
520         as_items.push_back (CheckMenuElem (_("Touch"), sigc::bind (
521                         sigc::mem_fun(*this, &AutomationTimeAxisView::set_automation_state),
522                         (AutoState) Touch)));
523         auto_touch_item = dynamic_cast<CheckMenuItem*>(&as_items.back());
524
525         items.push_back (MenuElem (_("State"), *auto_state_menu));
526
527         /* mode menu */
528
529         /* current interpolation state */
530         AutomationList::InterpolationStyle const s = _view ? _view->interpolation() : _control->list()->interpolation ();
531
532         if (EventTypeMap::instance().is_midi_parameter(_parameter)) {
533
534                 Menu* auto_mode_menu = manage (new Menu);
535                 auto_mode_menu->set_name ("ArdourContextMenu");
536                 MenuList& am_items = auto_mode_menu->items();
537
538                 RadioMenuItem::Group group;
539
540                 am_items.push_back (RadioMenuElem (group, _("Discrete"), sigc::bind (
541                                 sigc::mem_fun(*this, &AutomationTimeAxisView::set_interpolation),
542                                 AutomationList::Discrete)));
543                 mode_discrete_item = dynamic_cast<CheckMenuItem*>(&am_items.back());
544                 mode_discrete_item->set_active (s == AutomationList::Discrete);
545
546                 am_items.push_back (RadioMenuElem (group, _("Linear"), sigc::bind (
547                                 sigc::mem_fun(*this, &AutomationTimeAxisView::set_interpolation),
548                                 AutomationList::Linear)));
549                 mode_line_item = dynamic_cast<CheckMenuItem*>(&am_items.back());
550                 mode_line_item->set_active (s == AutomationList::Linear);
551
552                 items.push_back (MenuElem (_("Mode"), *auto_mode_menu));
553         }
554
555         /* make sure the automation menu state is correct */
556
557         automation_state_changed ();
558         interpolation_changed (s);
559 }
560
561 void
562 AutomationTimeAxisView::add_automation_event (GdkEvent* event, framepos_t when, double y)
563 {
564         if (!_line) {
565                 return;
566         }
567
568         double x = 0;
569
570         _canvas_display->w2i (x, y);
571
572         /* compute vertical fractional position */
573
574         y = 1.0 - (y / height);
575
576         /* map using line */
577
578         _line->view_to_model_coord (x, y);
579
580         boost::shared_ptr<AutomationList> list = _line->the_list ();
581
582         _editor.snap_to_with_modifier (when, event);
583
584         _session->begin_reversible_command (_("add automation event"));
585         XMLNode& before = list->get_state();
586
587         list->add (when, y);
588
589         XMLNode& after = list->get_state();
590         _session->commit_reversible_command (new MementoCommand<ARDOUR::AutomationList> (*list, &before, &after));
591         _session->set_dirty ();
592 }
593
594 /** Paste a selection.
595  *  @param pos Position to paste to (session frames).
596  *  @param times Number of times to paste.
597  *  @param selection Selection to paste.
598  *  @param nth Index of the AutomationList within the selection to paste from.
599  */
600 bool
601 AutomationTimeAxisView::paste (framepos_t pos, float times, Selection& selection, size_t nth)
602 {
603         boost::shared_ptr<AutomationLine> line;
604
605         if (_line) {
606                 line = _line;
607         } else if (_view) {
608                 line = _view->paste_line (pos);
609         }
610
611         if (!line) {
612                 return false;
613         }
614
615         return paste_one (*line, pos, times, selection, nth);
616 }
617
618 bool
619 AutomationTimeAxisView::paste_one (AutomationLine& line, framepos_t pos, float times, Selection& selection, size_t nth)
620 {
621         AutomationSelection::iterator p;
622         boost::shared_ptr<AutomationList> alist(line.the_list());
623
624         for (p = selection.lines.begin(); p != selection.lines.end() && nth; ++p, --nth) {}
625
626         if (p == selection.lines.end()) {
627                 return false;
628         }
629
630         double const model_pos = line.time_converter().from (pos - line.time_converter().origin_b ());
631
632         XMLNode &before = alist->get_state();
633         alist->paste (**p, model_pos, times);
634         _session->add_command (new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
635
636         return true;
637 }
638
639 void
640 AutomationTimeAxisView::get_selectables (framepos_t start, framepos_t end, double top, double bot, list<Selectable*>& results)
641 {
642         if (!_line && !_view) {
643                 return;
644         }
645
646         if (touched (top, bot)) {
647
648                 /* remember: this is X Window - coordinate space starts in upper left and moves down.
649                    _y_position is the "origin" or "top" of the track.
650                 */
651
652                 /* bottom of our track */
653                 double const mybot = _y_position + height;
654
655                 double topfrac;
656                 double botfrac;
657
658                 if (_y_position >= top && mybot <= bot) {
659
660                         /* _y_position is below top, mybot is above bot, so we're fully
661                            covered vertically.
662                         */
663
664                         topfrac = 1.0;
665                         botfrac = 0.0;
666
667                 } else {
668
669                         /* top and bot are within _y_position .. mybot */
670
671                         topfrac = 1.0 - ((top - _y_position) / height);
672                         botfrac = 1.0 - ((bot - _y_position) / height);
673
674                 }
675
676                 if (_line) {
677                         _line->get_selectables (start, end, botfrac, topfrac, results);
678                 } else if (_view) {
679                         _view->get_selectables (start, end, botfrac, topfrac, results);
680                 }
681         }
682 }
683
684 void
685 AutomationTimeAxisView::get_inverted_selectables (Selection& sel, list<Selectable*>& result)
686 {
687         if (_line) {
688                 _line->get_inverted_selectables (sel, result);
689         }
690 }
691
692 void
693 AutomationTimeAxisView::set_selected_points (PointSelection& points)
694 {
695         if (_line) {
696                 _line->set_selected_points (points);
697         } else if (_view) {
698                 _view->set_selected_points (points);
699         }
700 }
701
702 void
703 AutomationTimeAxisView::clear_lines ()
704 {
705         _line.reset();
706         _list_connections.drop_connections ();
707 }
708
709 void
710 AutomationTimeAxisView::add_line (boost::shared_ptr<AutomationLine> line)
711 {
712         assert(line);
713         assert(!_line);
714         if (_control) {
715                 assert(line->the_list() == _control->list());
716                 
717                 _control->alist()->automation_state_changed.connect (
718                         _list_connections, invalidator (*this), boost::bind (&AutomationTimeAxisView::automation_state_changed, this), gui_context()
719                         );
720                 
721                 _control->alist()->InterpolationChanged.connect (
722                         _list_connections, invalidator (*this), boost::bind (&AutomationTimeAxisView::interpolation_changed, this, _1), gui_context()
723                         );
724         }
725
726         _line = line;
727
728         line->set_height (height);
729
730         /* pick up the current state */
731         automation_state_changed ();
732
733         line->add_visibility (AutomationLine::Line);
734 }
735
736 void
737 AutomationTimeAxisView::entered()
738 {
739         if (_line) {
740                 _line->track_entered();
741         }
742 }
743
744 void
745 AutomationTimeAxisView::exited ()
746 {
747         if (_line) {
748                 _line->track_exited();
749         }
750 }
751
752 void
753 AutomationTimeAxisView::color_handler ()
754 {
755         if (_line) {
756                 _line->set_colors();
757         }
758 }
759
760 int
761 AutomationTimeAxisView::set_state_2X (const XMLNode& node, int /*version*/)
762 {
763         if (node.name() == X_("gain") && _parameter == Evoral::Parameter (GainAutomation)) {
764                 XMLProperty const * shown = node.property (X_("shown"));
765                 if (shown) {
766                         bool yn = string_is_affirmative (shown->value ());
767                         if (yn) {
768                                 _canvas_display->show (); /* FIXME: necessary? show_at? */
769                         }
770                         set_gui_property ("visible", yn);
771                 } else {
772                         set_gui_property ("visible", false);
773                 }
774         }
775
776         return 0;
777 }
778
779 int
780 AutomationTimeAxisView::set_state (const XMLNode&, int /*version*/)
781 {
782         return 0;
783 }
784
785 void
786 AutomationTimeAxisView::what_has_visible_automation (const boost::shared_ptr<Automatable>& automatable, set<Evoral::Parameter>& visible)
787 {
788         /* this keeps "knowledge" of how we store visibility information
789            in XML private to this class.
790         */
791
792         assert (automatable);
793
794         Automatable::Controls& controls (automatable->controls());
795         
796         for (Automatable::Controls::iterator i = controls.begin(); i != controls.end(); ++i) {
797                 
798                 boost::shared_ptr<AutomationControl> ac = boost::dynamic_pointer_cast<AutomationControl> (i->second);
799
800                 if (ac) {
801                         
802                         const XMLNode* gui_node = ac->extra_xml ("GUI");
803                         
804                         if (gui_node) {
805                                 const XMLProperty* prop = gui_node->property ("shown");
806                                 if (prop) {
807                                         if (string_is_affirmative (prop->value())) {
808                                                 visible.insert (i->first);
809                                         }
810                                 }
811                         }
812                 }
813         }
814 }
815
816
817 /** @return true if this view has any automation data to display */
818 bool
819 AutomationTimeAxisView::has_automation () const
820 {
821         return ( (_line && _line->npoints() > 0) || (_view && _view->has_automation()) );
822 }
823
824 list<boost::shared_ptr<AutomationLine> >
825 AutomationTimeAxisView::lines () const
826 {
827         list<boost::shared_ptr<AutomationLine> > lines;
828
829         if (_line) {
830                 lines.push_back (_line);
831         } else if (_view) {
832                 lines = _view->get_lines ();
833         }
834
835         return lines;
836 }
837
838 string
839 AutomationTimeAxisView::state_id() const
840 {
841         if (_control) {
842                 return string_compose ("automation %1", _control->id().to_s());
843         } else {
844                 assert (_parameter);
845                 return string_compose ("automation %1 %2/%3/%4", 
846                                        _route->id(), 
847                                        _parameter.type(),
848                                        _parameter.id(),
849                                        (int) _parameter.channel());
850         }
851 }
852
853 /** Given a state id string, see if it is one generated by
854  *  this class.  If so, parse it into its components.
855  *  @param state_id State ID string to parse.
856  *  @param route_id Filled in with the route's ID if the state ID string is parsed.
857  *  @param has_parameter Filled in with true if the state ID has a parameter, otherwise false.
858  *  @param parameter Filled in with the state ID's parameter, if it has one.
859  *  @return true if this is a state ID generated by this class, otherwise false.
860  */
861
862 bool
863 AutomationTimeAxisView::parse_state_id (
864         string const & state_id,
865         PBD::ID & route_id,
866         bool & has_parameter,
867         Evoral::Parameter & parameter)
868 {
869         stringstream s;
870         s << state_id;
871
872         string a, b, c;
873         s >> a >> b >> c;
874
875         if (a != X_("automation")) {
876                 return false;
877         }
878
879         route_id = PBD::ID (b);
880
881         if (c.empty ()) {
882                 has_parameter = false;
883                 return true;
884         }
885
886         has_parameter = true;
887
888         vector<string> p;
889         boost::split (p, c, boost::is_any_of ("/"));
890
891         assert (p.size() == 3);
892
893         parameter = Evoral::Parameter (
894                 boost::lexical_cast<int> (p[0]),
895                 boost::lexical_cast<int> (p[2]),
896                 boost::lexical_cast<int> (p[1])
897                 );
898
899         return true;
900 }
901
902 void
903 AutomationTimeAxisView::cut_copy_clear (Selection& selection, CutCopyOp op)
904 {
905         list<boost::shared_ptr<AutomationLine> > lines;
906         if (_line) {
907                 lines.push_back (_line);
908         } else if (_view) {
909                 lines = _view->get_lines ();
910         }
911
912         for (list<boost::shared_ptr<AutomationLine> >::iterator i = lines.begin(); i != lines.end(); ++i) {
913                 cut_copy_clear_one (**i, selection, op);
914         }
915 }
916
917 void
918 AutomationTimeAxisView::cut_copy_clear_one (AutomationLine& line, Selection& selection, CutCopyOp op)
919 {
920         boost::shared_ptr<Evoral::ControlList> what_we_got;
921         boost::shared_ptr<AutomationList> alist (line.the_list());
922
923         XMLNode &before = alist->get_state();
924
925         /* convert time selection to automation list model coordinates */
926         const Evoral::TimeConverter<double, ARDOUR::framepos_t>& tc = line.time_converter ();
927         double const start = tc.from (selection.time.front().start - tc.origin_b ());
928         double const end = tc.from (selection.time.front().end - tc.origin_b ());
929
930         switch (op) {
931         case Delete:
932                 if (alist->cut (start, end) != 0) {
933                         _session->add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
934                 }
935                 break;
936
937         case Cut:
938
939                 if ((what_we_got = alist->cut (start, end)) != 0) {
940                         _editor.get_cut_buffer().add (what_we_got);
941                         _session->add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
942                 }
943                 break;
944         case Copy:
945                 if ((what_we_got = alist->copy (start, end)) != 0) {
946                         _editor.get_cut_buffer().add (what_we_got);
947                 }
948                 break;
949
950         case Clear:
951                 if ((what_we_got = alist->cut (start, end)) != 0) {
952                         _session->add_command(new MementoCommand<AutomationList>(*alist.get(), &before, &alist->get_state()));
953                 }
954                 break;
955         }
956
957         if (what_we_got) {
958                 for (AutomationList::iterator x = what_we_got->begin(); x != what_we_got->end(); ++x) {
959                         double when = (*x)->when;
960                         double val  = (*x)->value;
961                         line.model_to_view_coord (when, val);
962                         (*x)->when = when;
963                         (*x)->value = val;
964                 }
965         }
966 }