Tweak some colours as per Chris' suggestions in #3254.
[ardour.git] / gtk2_ardour / route_time_axis.cc
1 /*
2     Copyright (C) 2006 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 #include <cstdlib>
20 #include <cmath>
21 #include <cassert>
22
23 #include <algorithm>
24 #include <string>
25 #include <vector>
26 #include  <map>
27 #include <utility>
28
29 #include <sigc++/bind.h>
30
31 #include "pbd/error.h"
32 #include "pbd/stl_delete.h"
33 #include "pbd/whitespace.h"
34 #include "pbd/memento_command.h"
35 #include "pbd/enumwriter.h"
36 #include "pbd/stateful_diff_command.h"
37
38 #include <gtkmm/menu.h>
39 #include <gtkmm/menuitem.h>
40 #include <gtkmm2ext/gtk_ui.h>
41 #include <gtkmm2ext/selector.h>
42 #include <gtkmm2ext/bindable_button.h>
43 #include <gtkmm2ext/utils.h>
44
45 #include "ardour/amp.h"
46 #include "ardour/audioplaylist.h"
47 #include "ardour/diskstream.h"
48 #include "ardour/event_type_map.h"
49 #include "ardour/ladspa_plugin.h"
50 #include "ardour/location.h"
51 #include "ardour/panner.h"
52 #include "ardour/playlist.h"
53 #include "ardour/playlist.h"
54 #include "ardour/processor.h"
55 #include "ardour/profile.h"
56 #include "ardour/route_group.h"
57 #include "ardour/session.h"
58 #include "ardour/session_playlist.h"
59 #include "ardour/debug.h"
60 #include "ardour/utils.h"
61 #include "evoral/Parameter.hpp"
62
63 #include "ardour_ui.h"
64 #include "route_time_axis.h"
65 #include "automation_time_axis.h"
66 #include "canvas_impl.h"
67 #include "crossfade_view.h"
68 #include "enums.h"
69 #include "gui_thread.h"
70 #include "keyboard.h"
71 #include "playlist_selector.h"
72 #include "point_selection.h"
73 #include "prompter.h"
74 #include "public_editor.h"
75 #include "region_view.h"
76 #include "rgb_macros.h"
77 #include "selection.h"
78 #include "simplerect.h"
79 #include "streamview.h"
80 #include "utils.h"
81 #include "route_group_menu.h"
82
83 #include "ardour/track.h"
84
85 #include "i18n.h"
86
87 using namespace ARDOUR;
88 using namespace PBD;
89 using namespace Gtkmm2ext;
90 using namespace Gtk;
91 using namespace Editing;
92 using namespace std;
93
94 Glib::RefPtr<Gdk::Pixbuf> RouteTimeAxisView::slider;
95
96 void
97 RouteTimeAxisView::setup_slider_pix ()
98 {
99         if ((slider = ::get_icon ("fader_belt_h")) == 0) {
100                 throw failed_constructor ();
101         }
102 }
103
104 RouteTimeAxisView::RouteTimeAxisView (PublicEditor& ed, Session* sess, boost::shared_ptr<Route> rt, Canvas& canvas)
105         : AxisView(sess)
106         , RouteUI(rt, sess)
107         , TimeAxisView(sess,ed,(TimeAxisView*) 0, canvas)
108         , parent_canvas (canvas)
109         , button_table (3, 3)
110         , route_group_button (_("g"))
111         , playlist_button (_("p"))
112         , automation_button (_("a"))
113         , gm (sess, slider, true, 115)
114         , _ignore_track_mode_change (false)
115 {
116         gm.set_controls (_route, _route->shared_peak_meter(), _route->amp());
117         gm.get_level_meter().set_no_show_all();
118         gm.get_level_meter().setup_meters(50);
119
120         _has_state = true;
121         playlist_menu = 0;
122         playlist_action_menu = 0;
123         automation_action_menu = 0;
124         plugins_submenu_item = 0;
125         mode_menu = 0;
126         _view = 0;
127
128         if (!_route->is_hidden()) {
129                 _marked_for_display = true;
130         }
131
132         mute_changed (0);
133         update_solo_display ();
134
135         timestretch_rect = 0;
136         no_redraw = false;
137         destructive_track_mode_item = 0;
138         normal_track_mode_item = 0;
139         non_layered_track_mode_item = 0;
140
141         ignore_toggle = false;
142
143         route_group_button.set_name ("TrackGroupButton");
144         playlist_button.set_name ("TrackPlaylistButton");
145         automation_button.set_name ("TrackAutomationButton");
146
147         route_group_button.unset_flags (Gtk::CAN_FOCUS);
148         playlist_button.unset_flags (Gtk::CAN_FOCUS);
149         automation_button.unset_flags (Gtk::CAN_FOCUS);
150
151         route_group_button.signal_button_release_event().connect (sigc::mem_fun(*this, &RouteTimeAxisView::edit_click), false);
152         playlist_button.signal_clicked().connect (sigc::mem_fun(*this, &RouteTimeAxisView::playlist_click));
153         automation_button.signal_clicked().connect (sigc::mem_fun(*this, &RouteTimeAxisView::automation_click));
154
155         if (is_track()) {
156
157                 /* use icon */
158
159                 rec_enable_button->remove ();
160
161                 switch (track()->mode()) {
162                 case ARDOUR::Normal:
163                 case ARDOUR::NonLayered:
164                         rec_enable_button->add (*(manage (new Image (::get_icon (X_("record_normal_red"))))));
165                         break;
166                 case ARDOUR::Destructive:
167                         rec_enable_button->add (*(manage (new Image (::get_icon (X_("record_tape_red"))))));
168                         break;
169                 }
170                 rec_enable_button->show_all ();
171
172                 controls_table.attach (*rec_enable_button, 5, 6, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
173                 ARDOUR_UI::instance()->set_tip(*rec_enable_button, _("Record"));
174
175                 rec_enable_button->set_sensitive (_session->writable());
176         }
177
178         controls_hbox.pack_start(gm.get_level_meter(), false, false);
179         _route->meter_change.connect (*this, invalidator (*this), bind (&RouteTimeAxisView::meter_changed, this), gui_context());
180         _route->input()->changed.connect (*this, invalidator (*this), ui_bind (&RouteTimeAxisView::io_changed, this, _1, _2), gui_context());
181         _route->output()->changed.connect (*this, invalidator (*this), ui_bind (&RouteTimeAxisView::io_changed, this, _1, _2), gui_context());
182
183         controls_table.attach (*mute_button, 6, 7, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
184
185         if (!_route->is_master()) {
186                 controls_table.attach (*solo_button, 7, 8, 0, 1, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
187         }
188
189         controls_table.attach (route_group_button, 7, 8, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND, 0, 0);
190         controls_table.attach (gm.get_gain_slider(), 0, 5, 1, 2, Gtk::SHRINK, Gtk::SHRINK, 0, 0);
191
192         ARDOUR_UI::instance()->set_tip(*solo_button,_("Solo"));
193         ARDOUR_UI::instance()->set_tip(*mute_button,_("Mute"));
194         ARDOUR_UI::instance()->set_tip(route_group_button, _("Route Group"));
195         ARDOUR_UI::instance()->set_tip(playlist_button,_("Playlist"));
196         ARDOUR_UI::instance()->set_tip(automation_button, _("Automation"));
197
198         label_view ();
199
200         controls_table.attach (automation_button, 6, 7, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
201
202         if (is_track() && track()->mode() == ARDOUR::Normal) {
203                 controls_table.attach (playlist_button, 5, 6, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND);
204         }
205
206         _y_position = -1;
207
208         _route->processors_changed.connect (*this, invalidator (*this), ui_bind (&RouteTimeAxisView::processors_changed, this, _1), gui_context());
209         _route->PropertyChanged.connect (*this, invalidator (*this), ui_bind (&RouteTimeAxisView::route_property_changed, this, _1), gui_context());
210
211         if (is_track()) {
212
213                 track()->TrackModeChanged.connect (*this, invalidator (*this), boost::bind (&RouteTimeAxisView::track_mode_changed, this), gui_context());
214                 track()->FreezeChange.connect (*this, invalidator (*this), boost::bind (&RouteTimeAxisView::map_frozen, this), gui_context());
215                 track()->SpeedChanged.connect (*this, invalidator (*this), boost::bind (&RouteTimeAxisView::speed_changed, this), gui_context());
216
217                 /* pick up the correct freeze state */
218                 map_frozen ();
219
220         }
221
222         _editor.ZoomChanged.connect (sigc::mem_fun(*this, &RouteTimeAxisView::reset_samples_per_unit));
223         ColorsChanged.connect (sigc::mem_fun (*this, &RouteTimeAxisView::color_handler));
224
225         PropertyList* plist = new PropertyList();
226         
227         plist->add (ARDOUR::Properties::edit, true);
228         plist->add (ARDOUR::Properties::mute, true);
229         plist->add (ARDOUR::Properties::solo, true);
230         
231         route_group_menu = new RouteGroupMenu (_session, plist);
232         route_group_menu->GroupSelected.connect (sigc::mem_fun (*this, &RouteTimeAxisView::set_route_group_from_menu));
233
234         gm.get_gain_slider().signal_scroll_event().connect(sigc::mem_fun(*this, &RouteTimeAxisView::controls_ebox_scroll), false);
235         gm.get_gain_slider().set_name ("TrackGainFader");
236 }
237
238 RouteTimeAxisView::~RouteTimeAxisView ()
239 {
240         CatchDeletion (this);
241
242         for (list<ProcessorAutomationInfo*>::iterator i = processor_automation.begin(); i != processor_automation.end(); ++i) {
243                 delete *i;
244         }
245
246         delete playlist_menu;
247         playlist_menu = 0;
248
249         delete playlist_action_menu;
250         playlist_action_menu = 0;
251
252         delete _view;
253         _view = 0;
254
255         _automation_tracks.clear ();
256
257         delete route_group_menu;
258 }
259
260 void
261 RouteTimeAxisView::post_construct ()
262 {
263         /* map current state of the route */
264
265         update_diskstream_display ();
266
267         _subplugin_menu_map.clear ();
268         subplugin_menu.items().clear ();
269         _route->foreach_processor (sigc::mem_fun (*this, &RouteTimeAxisView::add_processor_to_subplugin_menu));
270         _route->foreach_processor (sigc::mem_fun (*this, &RouteTimeAxisView::add_existing_processor_automation_curves));
271         reset_processor_automation_curves ();
272 }
273
274 gint
275 RouteTimeAxisView::edit_click (GdkEventButton *ev)
276 {
277         if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
278                 if (_route->route_group()) {
279                         _route->route_group()->remove (_route);
280                 }
281                 return false;
282         }
283
284         route_group_menu->rebuild (_route->route_group ());
285         route_group_menu->popup (ev->button, ev->time);
286
287         return false;
288 }
289
290 void
291 RouteTimeAxisView::set_route_group_from_menu (RouteGroup *eg)
292 {
293         if (eg) {
294                 eg->add (_route);
295         } else {
296                 if (_route->route_group()) {
297                         _route->route_group()->remove (_route);
298                 }
299         }
300 }
301
302 void
303 RouteTimeAxisView::playlist_changed ()
304 {
305         label_view ();
306 }
307
308 void
309 RouteTimeAxisView::label_view ()
310 {
311         string x = _route->name();
312
313         if (x != name_entry.get_text()) {
314                 name_entry.set_text (x);
315         }
316
317         ARDOUR_UI::instance()->set_tip (name_entry, x);
318 }
319
320 void
321 RouteTimeAxisView::route_property_changed (const PropertyChange& what_changed)
322 {
323         if (what_changed.contains (ARDOUR::Properties::name)) {
324                 label_view ();
325         }
326 }
327
328 void
329 RouteTimeAxisView::take_name_changed (void *src)
330
331 {
332         if (src != this) {
333                 label_view ();
334         }
335 }
336
337 void
338 RouteTimeAxisView::playlist_click ()
339 {
340         // always build a new action menu
341
342         delete playlist_action_menu;
343
344         playlist_action_menu = new Menu;
345         playlist_action_menu->set_name ("ArdourContextMenu");
346
347         build_playlist_menu (playlist_action_menu);
348
349         conditionally_add_to_selection ();
350         playlist_action_menu->popup (1, gtk_get_current_event_time());
351 }
352
353 void
354 RouteTimeAxisView::automation_click ()
355 {
356         conditionally_add_to_selection ();
357         build_automation_action_menu ();
358         automation_action_menu->popup (1, gtk_get_current_event_time());
359 }
360
361 int
362 RouteTimeAxisView::set_state (const XMLNode& node, int version)
363 {
364         TimeAxisView::set_state (node, version);
365
366         XMLNodeList kids = node.children();
367         XMLNodeConstIterator iter;
368         const XMLProperty* prop;
369
370         if (_view && (prop = node.property ("layer-display"))) {
371                 set_layer_display (LayerDisplay (string_2_enum (prop->value(), _view->layer_display ())));
372         }
373
374         for (iter = kids.begin(); iter != kids.end(); ++iter) {
375                 if ((*iter)->name() == AutomationTimeAxisView::state_node_name) {
376                         if ((prop = (*iter)->property ("automation-id")) != 0) {
377
378                                 Evoral::Parameter param = ARDOUR::EventTypeMap::instance().new_parameter(prop->value());
379                                 bool show = ((prop = (*iter)->property ("shown")) != 0) && string_is_affirmative (prop->value());
380                                 create_automation_child(param, show);
381                         } else {
382                                 warning << "Automation child has no ID" << endmsg;
383                         }
384                 }
385         }
386
387         return 0;
388 }
389
390 void
391 RouteTimeAxisView::build_automation_action_menu ()
392 {
393         using namespace Menu_Helpers;
394
395         /* detach subplugin_menu from automation_action_menu before we delete automation_action_menu,
396            otherwise bad things happen (see comment for similar case in MidiTimeAxisView::build_automation_action_menu)
397         */
398
399         detach_menu (subplugin_menu);
400
401         _main_automation_menu_map.clear ();
402         delete automation_action_menu;
403         automation_action_menu = new Menu;
404
405         MenuList& items = automation_action_menu->items();
406
407         automation_action_menu->set_name ("ArdourContextMenu");
408         
409         items.push_back (MenuElem (_("Show All Automation"),
410                                    sigc::mem_fun(*this, &RouteTimeAxisView::show_all_automation)));
411         
412         items.push_back (MenuElem (_("Show Existing Automation"),
413                                    sigc::mem_fun(*this, &RouteTimeAxisView::show_existing_automation)));
414         
415         items.push_back (MenuElem (_("Hide All Automation"),
416                                    sigc::mem_fun(*this, &RouteTimeAxisView::hide_all_automation)));
417
418         items.push_back (SeparatorElem ());
419         
420         /* Attach the plugin submenu. It may have previously been used elsewhere,
421            so it was detached above */
422
423         items.push_back (MenuElem (_("Plugins"), subplugin_menu));
424         items.back().set_sensitive (!subplugin_menu.items().empty());
425 }
426
427 void
428 RouteTimeAxisView::build_display_menu ()
429 {
430         using namespace Menu_Helpers;
431
432         /* prepare it */
433
434         TimeAxisView::build_display_menu ();
435
436         /* now fill it with our stuff */
437
438         MenuList& items = display_menu->items();
439         display_menu->set_name ("ArdourContextMenu");
440
441         items.push_back (MenuElem (_("Color..."), sigc::mem_fun(*this, &RouteTimeAxisView::select_track_color)));
442
443         items.push_back (SeparatorElem());
444
445         if (!Profile->get_sae()) {
446                 items.push_back (MenuElem (_("Remote Control ID..."), sigc::mem_fun (*this, &RouteUI::open_remote_control_id_dialog)));
447                 /* rebuild this every time */
448                 build_automation_action_menu ();
449                 detach_menu (*automation_action_menu);
450                 items.push_back (MenuElem (_("Automation"), *automation_action_menu));
451                 items.push_back (SeparatorElem());
452         }
453
454         // Hook for derived classes to add type specific stuff
455         append_extra_display_menu_items ();
456         items.push_back (SeparatorElem());
457
458         if (is_track()) {
459
460                 Menu *layers_menu = manage(new Menu);
461                 MenuList &layers_items = layers_menu->items();
462                 layers_menu->set_name("ArdourContextMenu");
463
464                 RadioMenuItem::Group layers_group;
465
466                 layers_items.push_back(RadioMenuElem (layers_group, _("Overlaid"),
467                                 sigc::bind (sigc::mem_fun (*this, &RouteTimeAxisView::set_layer_display), Overlaid)));
468                 layers_items.push_back(RadioMenuElem (layers_group, _("Stacked"),
469                                 sigc::bind (sigc::mem_fun (*this, &RouteTimeAxisView::set_layer_display), Stacked)));
470
471                 items.push_back (MenuElem (_("Layers"), *layers_menu));
472
473                 Menu* alignment_menu = manage (new Menu);
474                 MenuList& alignment_items = alignment_menu->items();
475                 alignment_menu->set_name ("ArdourContextMenu");
476
477                 RadioMenuItem::Group align_group;
478
479                 alignment_items.push_back (RadioMenuElem (align_group, _("Align With Existing Material"),
480                                         sigc::bind (sigc::mem_fun(*this, &RouteTimeAxisView::set_align_style), ExistingMaterial)));
481                 align_existing_item = dynamic_cast<RadioMenuItem*>(&alignment_items.back());
482                 if (track()->alignment_style() == ExistingMaterial) {
483                         align_existing_item->set_active();
484                 }
485
486                 alignment_items.push_back (RadioMenuElem (align_group, _("Align With Capture Time"),
487                                         sigc::bind (sigc::mem_fun(*this, &RouteTimeAxisView::set_align_style), CaptureTime)));
488                 align_capture_item = dynamic_cast<RadioMenuItem*>(&alignment_items.back());
489                 if (track()->alignment_style() == CaptureTime) {
490                         align_capture_item->set_active();
491                 }
492
493                 if (!Profile->get_sae()) {
494
495                         items.push_back (MenuElem (_("Alignment"), *alignment_menu));
496                         track()->AlignmentStyleChanged.connect (route_connections, invalidator (*this), boost::bind (&RouteTimeAxisView::align_style_changed, this), gui_context());
497
498                         RadioMenuItem::Group mode_group;
499                         items.push_back (RadioMenuElem (mode_group, _("Normal Mode"), sigc::bind (
500                                         sigc::mem_fun (*this, &RouteTimeAxisView::set_track_mode),
501                                         ARDOUR::Normal)));
502                         normal_track_mode_item = dynamic_cast<RadioMenuItem*>(&items.back());
503
504                         items.push_back (RadioMenuElem (mode_group, _("Tape Mode"), sigc::bind (
505                                         sigc::mem_fun (*this, &RouteTimeAxisView::set_track_mode),
506                                         ARDOUR::Destructive)));
507                         destructive_track_mode_item = dynamic_cast<RadioMenuItem*>(&items.back());
508
509                         items.push_back (RadioMenuElem (mode_group, _("Non-Layered Mode"),
510                                                         sigc::bind (sigc::mem_fun (*this, &RouteTimeAxisView::set_track_mode), ARDOUR::NonLayered)));
511                         non_layered_track_mode_item = dynamic_cast<RadioMenuItem*>(&items.back());
512
513
514                         _ignore_track_mode_change = true;
515                         
516                         switch (track()->mode()) {
517                         case ARDOUR::Destructive:
518                                 destructive_track_mode_item->set_active ();
519                                 break;
520                         case ARDOUR::Normal:
521                                 normal_track_mode_item->set_active ();
522                                 break;
523                         case ARDOUR::NonLayered:
524                                 non_layered_track_mode_item->set_active ();
525                                 break;
526                         }
527                         
528                         _ignore_track_mode_change = false;
529                 }
530
531                 track()->AlignmentStyleChanged.connect (route_connections, invalidator (*this), boost::bind (&RouteTimeAxisView::align_style_changed, this), gui_context());
532
533                 color_mode_menu = build_color_mode_menu();
534                 if (color_mode_menu) {
535                         items.push_back (MenuElem (_("Color Mode"), *color_mode_menu));
536                 }
537
538                 items.push_back (SeparatorElem());
539         }
540
541         items.push_back (CheckMenuElem (_("Active"), sigc::mem_fun(*this, &RouteUI::toggle_route_active)));
542         route_active_menu_item = dynamic_cast<CheckMenuItem *> (&items.back());
543         route_active_menu_item->set_active (_route->active());
544
545         items.push_back (SeparatorElem());
546         items.push_back (MenuElem (_("Hide"), sigc::bind (sigc::mem_fun(_editor, &PublicEditor::hide_track_in_display), this, false)));
547         if (!Profile->get_sae()) {
548                 items.push_back (MenuElem (_("Remove"), sigc::mem_fun(*this, &RouteUI::remove_this_route)));
549         } else {
550                 items.push_front (SeparatorElem());
551                 items.push_front (MenuElem (_("Delete"), sigc::mem_fun(*this, &RouteUI::remove_this_route)));
552         }
553 }
554
555 static bool __reset_item (RadioMenuItem* item, RadioMenuItem* item_2)
556 {
557         item->set_active ();
558         item_2->set_active ();
559         return false;
560 }
561
562 void
563 RouteTimeAxisView::set_track_mode (TrackMode mode)
564 {
565         if (_ignore_track_mode_change) {
566                 return;
567         }
568         
569         RadioMenuItem* item;
570         RadioMenuItem* other_item;
571         RadioMenuItem* other_item_2;
572
573         switch (mode) {
574         case ARDOUR::Normal:
575                 item = normal_track_mode_item;
576                 other_item = non_layered_track_mode_item;
577                 other_item_2 = destructive_track_mode_item;
578                 break;
579         case ARDOUR::NonLayered:
580                 item = non_layered_track_mode_item;
581                 other_item = normal_track_mode_item;
582                 other_item_2 = destructive_track_mode_item;
583                 break;
584         case ARDOUR::Destructive:
585                 item = destructive_track_mode_item;
586                 other_item = normal_track_mode_item;
587                 other_item_2 = non_layered_track_mode_item;
588                 break;
589         default:
590                 fatal << string_compose (_("programming error: %1 %2"), "illegal track mode in RouteTimeAxisView::set_track_mode", mode) << endmsg;
591                 /*NOTREACHED*/
592                 return;
593         }
594
595         if (item && other_item && other_item_2 && track()->mode() != mode) {
596                 _set_track_mode (track().get(), mode, other_item, other_item_2);
597         }
598 }
599
600 void
601 RouteTimeAxisView::_set_track_mode (Track* track, TrackMode mode, RadioMenuItem* reset_item, RadioMenuItem* reset_item_2)
602 {
603         bool needs_bounce;
604
605         if (!track->can_use_mode (mode, needs_bounce)) {
606
607                 if (!needs_bounce) {
608                         /* cannot be done */
609                         Glib::signal_idle().connect (sigc::bind (sigc::ptr_fun (__reset_item), reset_item, reset_item_2));
610                         return;
611                 } else {
612                         cerr << "would bounce this one\n";
613                         /* XXX: radio menu item becomes inconsistent with track state in this case */
614                         return;
615                 }
616         }
617
618         track->set_mode (mode);
619
620         rec_enable_button->remove ();
621
622         switch (mode) {
623         case ARDOUR::NonLayered:
624         case ARDOUR::Normal:
625                 rec_enable_button->add (*(manage (new Image (::get_icon (X_("record_normal_red"))))));
626                 break;
627         case ARDOUR::Destructive:
628                 rec_enable_button->add (*(manage (new Image (::get_icon (X_("record_tape_red"))))));
629                 break;
630         }
631
632         rec_enable_button->show_all ();
633 }
634
635 void
636 RouteTimeAxisView::track_mode_changed ()
637 {
638         RadioMenuItem* item;
639
640         switch (track()->mode()) {
641         case ARDOUR::Normal:
642                 item = normal_track_mode_item;
643                 break;
644         case ARDOUR::NonLayered:
645                 item = non_layered_track_mode_item;
646                 break;
647         case ARDOUR::Destructive:
648                 item = destructive_track_mode_item;
649                 break;
650         default:
651                 fatal << string_compose (_("programming error: %1 %2"), "illegal track mode in RouteTimeAxisView::set_track_mode", track()->mode()) << endmsg;
652                 /*NOTREACHED*/
653                 return;
654         }
655
656         item->set_active ();
657 }
658
659 void
660 RouteTimeAxisView::show_timestretch (nframes_t start, nframes_t end)
661 {
662         double x1;
663         double x2;
664         double y2;
665
666         TimeAxisView::show_timestretch (start, end);
667
668         hide_timestretch ();
669
670 #if 0
671         if (ts.empty()) {
672                 return;
673         }
674
675
676         /* check that the time selection was made in our route, or our route group.
677            remember that route_group() == 0 implies the route is *not* in a edit group.
678         */
679
680         if (!(ts.track == this || (ts.group != 0 && ts.group == _route->route_group()))) {
681                 /* this doesn't apply to us */
682                 return;
683         }
684
685         /* ignore it if our edit group is not active */
686
687         if ((ts.track != this) && _route->route_group() && !_route->route_group()->is_active()) {
688                 return;
689         }
690 #endif
691
692         if (timestretch_rect == 0) {
693                 timestretch_rect = new SimpleRect (*canvas_display ());
694                 timestretch_rect->property_x1() =  0.0;
695                 timestretch_rect->property_y1() =  0.0;
696                 timestretch_rect->property_x2() =  0.0;
697                 timestretch_rect->property_y2() =  0.0;
698                 timestretch_rect->property_fill_color_rgba() =  ARDOUR_UI::config()->canvasvar_TimeStretchFill.get();
699                 timestretch_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TimeStretchOutline.get();
700         }
701
702         timestretch_rect->show ();
703         timestretch_rect->raise_to_top ();
704
705         x1 = start / _editor.get_current_zoom();
706         x2 = (end - 1) / _editor.get_current_zoom();
707         y2 = current_height() - 2;
708
709         timestretch_rect->property_x1() = x1;
710         timestretch_rect->property_y1() = 1.0;
711         timestretch_rect->property_x2() = x2;
712         timestretch_rect->property_y2() = y2;
713 }
714
715 void
716 RouteTimeAxisView::hide_timestretch ()
717 {
718         TimeAxisView::hide_timestretch ();
719
720         if (timestretch_rect) {
721                 timestretch_rect->hide ();
722         }
723 }
724
725 void
726 RouteTimeAxisView::show_selection (TimeSelection& ts)
727 {
728
729 #if 0
730         /* ignore it if our edit group is not active or if the selection was started
731            in some other track or route group (remember that route_group() == 0 means
732            that the track is not in an route group).
733         */
734
735         if (((ts.track != this && !is_child (ts.track)) && _route->route_group() && !_route->route_group()->is_active()) ||
736             (!(ts.track == this || is_child (ts.track) || (ts.group != 0 && ts.group == _route->route_group())))) {
737                 hide_selection ();
738                 return;
739         }
740 #endif
741
742         TimeAxisView::show_selection (ts);
743 }
744
745 void
746 RouteTimeAxisView::set_height (uint32_t h)
747 {
748         int gmlen = h - 5;
749         bool height_changed = (height == 0) || (h != height);
750         gm.get_level_meter().setup_meters (gmlen);
751
752         TimeAxisView::set_height (h);
753
754         ensure_xml_node ();
755
756         if (_view) {
757                 _view->set_height ((double) current_height());
758         }
759
760         char buf[32];
761         snprintf (buf, sizeof (buf), "%u", height);
762         xml_node->add_property ("height", buf);
763
764         if (height >= preset_height (HeightNormal)) {
765                 reset_meter();
766                 show_name_entry ();
767                 hide_name_label ();
768
769                 gm.get_gain_slider().show();
770                 mute_button->show();
771                 if (!_route || _route->is_monitor()) {
772                         solo_button->hide();
773                 } else {
774                         solo_button->show();
775                 }
776                 if (rec_enable_button)
777                         rec_enable_button->show();
778
779                 route_group_button.show();
780                 automation_button.show();
781
782                 if (is_track() && track()->mode() == ARDOUR::Normal) {
783                         playlist_button.show();
784                 }
785
786         } else if (height >= preset_height (HeightSmaller)) {
787
788                 reset_meter();
789                 show_name_entry ();
790                 hide_name_label ();
791
792                 gm.get_gain_slider().hide();
793                 mute_button->show();
794                 if (!_route || _route->is_monitor()) {
795                         solo_button->hide();
796                 } else {
797                         solo_button->show();
798                 }
799                 if (rec_enable_button)
800                         rec_enable_button->show();
801
802                 route_group_button.hide ();
803                 automation_button.hide ();
804
805                 if (is_track() && track()->mode() == ARDOUR::Normal) {
806                         playlist_button.hide ();
807                 }
808
809         } else {
810
811
812                 /* don't allow name_entry to be hidden while
813                    it has focus, otherwise the GUI becomes unusable.
814                 */
815
816                 if (name_entry.has_focus()) {
817                         if (name_entry.get_text() != _route->name()) {
818                                 name_entry_changed ();
819                         }
820                         controls_ebox.grab_focus ();
821                 }
822
823                 hide_name_entry ();
824                 show_name_label ();
825
826                 gm.get_gain_slider().hide();
827                 mute_button->hide();
828                 solo_button->hide();
829                 if (rec_enable_button)
830                         rec_enable_button->hide();
831
832                 route_group_button.hide ();
833                 automation_button.hide ();
834                 playlist_button.hide ();
835                 name_label.set_text (_route->name());
836         }
837
838         if (height_changed && !no_redraw) {
839                 /* only emit the signal if the height really changed */
840                  _route->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
841         }
842 }
843
844 void
845 RouteTimeAxisView::select_track_color ()
846 {
847         if (RouteUI::choose_color ()) {
848
849                 if (_view) {
850                         _view->apply_color (_color, StreamView::RegionColor);
851                 }
852         }
853 }
854
855 void
856 RouteTimeAxisView::reset_samples_per_unit ()
857 {
858         set_samples_per_unit (_editor.get_current_zoom());
859 }
860
861 void
862 RouteTimeAxisView::set_samples_per_unit (double spu)
863 {
864         double speed = 1.0;
865
866         if (track()) {
867                 speed = track()->speed();
868         }
869
870         if (_view) {
871                 _view->set_samples_per_unit (spu * speed);
872         }
873
874         TimeAxisView::set_samples_per_unit (spu * speed);
875 }
876
877 void
878 RouteTimeAxisView::align_style_changed ()
879 {
880         switch (track()->alignment_style()) {
881         case ExistingMaterial:
882                 if (!align_existing_item->get_active()) {
883                         align_existing_item->set_active();
884                 }
885                 break;
886         case CaptureTime:
887                 if (!align_capture_item->get_active()) {
888                         align_capture_item->set_active();
889                 }
890                 break;
891         }
892 }
893
894 void
895 RouteTimeAxisView::set_align_style (AlignStyle style)
896 {
897         RadioMenuItem* item;
898
899         switch (style) {
900         case ExistingMaterial:
901                 item = align_existing_item;
902                 break;
903         case CaptureTime:
904                 item = align_capture_item;
905                 break;
906         default:
907                 fatal << string_compose (_("programming error: %1 %2"), "illegal align style in RouteTimeAxisView::set_align_style", style) << endmsg;
908                 /*NOTREACHED*/
909                 return;
910         }
911
912         if (item->get_active()) {
913                 track()->set_align_style (style);
914         }
915 }
916
917 void
918 RouteTimeAxisView::rename_current_playlist ()
919 {
920         ArdourPrompter prompter (true);
921         string name;
922
923         boost::shared_ptr<Track> tr = track();
924         if (!tr || tr->destructive()) {
925                 return;
926         }
927
928         boost::shared_ptr<Playlist> pl = tr->playlist();
929         if (!pl) {
930                 return;
931         }
932
933         prompter.set_title (_("Rename Playlist"));
934         prompter.set_prompt (_("New name for playlist:"));
935         prompter.set_initial_text (pl->name());
936         prompter.add_button (_("Rename"), Gtk::RESPONSE_ACCEPT);
937         prompter.set_response_sensitive (Gtk::RESPONSE_ACCEPT, false);
938
939         switch (prompter.run ()) {
940         case Gtk::RESPONSE_ACCEPT:
941                 prompter.get_result (name);
942                 if (name.length()) {
943                         pl->set_name (name);
944                 }
945                 break;
946
947         default:
948                 break;
949         }
950 }
951
952 std::string
953 RouteTimeAxisView::resolve_new_group_playlist_name(std::string &basename, vector<boost::shared_ptr<Playlist> > const & playlists)
954 {
955         std::string ret (basename);
956
957         std::string const group_string = "." + route_group()->name() + ".";
958
959         // iterate through all playlists
960         int maxnumber = 0;
961         for (vector<boost::shared_ptr<Playlist> >::const_iterator i = playlists.begin(); i != playlists.end(); ++i) {
962                 std::string tmp = (*i)->name();
963
964                 std::string::size_type idx = tmp.find(group_string);
965                 // find those which belong to this group
966                 if (idx != string::npos) {
967                         tmp = tmp.substr(idx + group_string.length());
968
969                         // and find the largest current number
970                         int x = atoi(tmp.c_str());
971                         if (x > maxnumber) {
972                                 maxnumber = x;
973                         }
974                 }
975         }
976
977         maxnumber++;
978
979         char buf[32];
980         snprintf (buf, sizeof(buf), "%d", maxnumber);
981
982         ret = this->name() + "." + route_group()->name () + "." + buf;
983
984         return ret;
985 }
986
987 void
988 RouteTimeAxisView::use_copy_playlist (bool prompt, vector<boost::shared_ptr<Playlist> > const & playlists_before_op)
989 {
990         string name;
991
992         boost::shared_ptr<Track> tr = track ();
993         if (!tr || tr->destructive()) {
994                 return;
995         }
996
997         boost::shared_ptr<const Playlist> pl = tr->playlist();
998         if (!pl) {
999                 return;
1000         }
1001
1002         name = pl->name();
1003
1004         if (route_group() && route_group()->is_active()) {
1005                 name = resolve_new_group_playlist_name(name, playlists_before_op);
1006         }
1007
1008         while (_session->playlists->by_name(name)) {
1009                 name = Playlist::bump_name (name, *_session);
1010         }
1011
1012         // TODO: The prompter "new" button should be de-activated if the user
1013         // specifies a playlist name which already exists in the session.
1014
1015         if (prompt) {
1016
1017                 ArdourPrompter prompter (true);
1018
1019                 prompter.set_title (_("New Copy Playlist"));
1020                 prompter.set_prompt (_("Name for new playlist:"));
1021                 prompter.set_initial_text (name);
1022                 prompter.add_button (Gtk::Stock::NEW, Gtk::RESPONSE_ACCEPT);
1023                 prompter.set_response_sensitive (Gtk::RESPONSE_ACCEPT, true);
1024                 prompter.show_all ();
1025
1026                 switch (prompter.run ()) {
1027                 case Gtk::RESPONSE_ACCEPT:
1028                         prompter.get_result (name);
1029                         break;
1030
1031                 default:
1032                         return;
1033                 }
1034         }
1035
1036         if (name.length()) {
1037                 tr->use_copy_playlist ();
1038                 tr->playlist()->set_name (name);
1039         }
1040 }
1041
1042 void
1043 RouteTimeAxisView::use_new_playlist (bool prompt, vector<boost::shared_ptr<Playlist> > const & playlists_before_op)
1044 {
1045         string name;
1046
1047         boost::shared_ptr<Track> tr = track ();
1048         if (!tr || tr->destructive()) {
1049                 return;
1050         }
1051
1052         boost::shared_ptr<const Playlist> pl = tr->playlist();
1053         if (!pl) {
1054                 return;
1055         }
1056
1057         name = pl->name();
1058
1059         if (route_group() && route_group()->is_active()) {
1060                 name = resolve_new_group_playlist_name(name,playlists_before_op);
1061         }
1062
1063         while (_session->playlists->by_name(name)) {
1064                 name = Playlist::bump_name (name, *_session);
1065         }
1066
1067
1068         if (prompt) {
1069
1070                 ArdourPrompter prompter (true);
1071
1072                 prompter.set_title (_("New Playlist"));
1073                 prompter.set_prompt (_("Name for new playlist:"));
1074                 prompter.set_initial_text (name);
1075                 prompter.add_button (Gtk::Stock::NEW, Gtk::RESPONSE_ACCEPT);
1076                 prompter.set_response_sensitive (Gtk::RESPONSE_ACCEPT, true);
1077
1078                 switch (prompter.run ()) {
1079                 case Gtk::RESPONSE_ACCEPT:
1080                         prompter.get_result (name);
1081                         break;
1082
1083                 default:
1084                         return;
1085                 }
1086         }
1087
1088         if (name.length()) {
1089                 tr->use_new_playlist ();
1090                 tr->playlist()->set_name (name);
1091         }
1092 }
1093
1094 void
1095 RouteTimeAxisView::clear_playlist ()
1096 {
1097         boost::shared_ptr<Track> tr = track ();
1098         if (!tr || tr->destructive()) {
1099                 return;
1100         }
1101
1102         boost::shared_ptr<Playlist> pl = tr->playlist();
1103         if (!pl) {
1104                 return;
1105         }
1106
1107         _editor.clear_playlist (pl);
1108 }
1109
1110 void
1111 RouteTimeAxisView::speed_changed ()
1112 {
1113         Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&RouteTimeAxisView::reset_samples_per_unit, this));
1114 }
1115
1116 void
1117 RouteTimeAxisView::update_diskstream_display ()
1118 {
1119         if (!track()) {
1120                 return;
1121         }
1122
1123         map_frozen ();
1124 }
1125
1126 void
1127 RouteTimeAxisView::selection_click (GdkEventButton* ev)
1128 {
1129         if (Keyboard::modifier_state_equals (ev->state, (Keyboard::TertiaryModifier|Keyboard::PrimaryModifier))) {
1130
1131                 /* special case: select/deselect all tracks */
1132                 if (_editor.get_selection().selected (this)) {
1133                         _editor.get_selection().clear_tracks ();
1134                 } else {
1135                         _editor.select_all_tracks ();
1136                 }
1137
1138                 return;
1139         }
1140
1141         switch (ArdourKeyboard::selection_type (ev->state)) {
1142         case Selection::Toggle:
1143                 _editor.get_selection().toggle (this);
1144                 break;
1145
1146         case Selection::Set:
1147                 _editor.get_selection().set (this);
1148                 break;
1149
1150         case Selection::Extend:
1151                 _editor.extend_selection_to_track (*this);
1152                 break;
1153
1154         case Selection::Add:
1155                 _editor.get_selection().add (this);
1156                 break;
1157         }
1158 }
1159
1160 void
1161 RouteTimeAxisView::set_selected_points (PointSelection& points)
1162 {
1163         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
1164                 (*i)->set_selected_points (points);
1165         }
1166 }
1167
1168 void
1169 RouteTimeAxisView::set_selected_regionviews (RegionSelection& regions)
1170 {
1171         if (_view) {
1172                 _view->set_selected_regionviews (regions);
1173         }
1174 }
1175
1176 /** Add the selectable things that we have to a list.
1177  * @param results List to add things to.
1178  */
1179 void
1180 RouteTimeAxisView::get_selectables (nframes_t start, nframes_t end, double top, double bot, list<Selectable*>& results)
1181 {
1182         double speed = 1.0;
1183
1184         if (track() != 0) {
1185                 speed = track()->speed();
1186         }
1187
1188         nframes_t start_adjusted = session_frame_to_track_frame(start, speed);
1189         nframes_t end_adjusted   = session_frame_to_track_frame(end, speed);
1190
1191         if ((_view && ((top < 0.0 && bot < 0.0))) || touched (top, bot)) {
1192                 _view->get_selectables (start_adjusted, end_adjusted, top, bot, results);
1193         }
1194
1195         /* pick up visible automation tracks */
1196
1197         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
1198                 if (!(*i)->hidden()) {
1199                         (*i)->get_selectables (start_adjusted, end_adjusted, top, bot, results);
1200                 }
1201         }
1202 }
1203
1204 void
1205 RouteTimeAxisView::get_inverted_selectables (Selection& sel, list<Selectable*>& results)
1206 {
1207         if (_view) {
1208                 _view->get_inverted_selectables (sel, results);
1209         }
1210
1211         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
1212                 if (!(*i)->hidden()) {
1213                         (*i)->get_inverted_selectables (sel, results);
1214                 }
1215         }
1216
1217         return;
1218 }
1219
1220 RouteGroup*
1221 RouteTimeAxisView::route_group () const
1222 {
1223         return _route->route_group();
1224 }
1225
1226 string
1227 RouteTimeAxisView::name() const
1228 {
1229         return _route->name();
1230 }
1231
1232 boost::shared_ptr<Playlist>
1233 RouteTimeAxisView::playlist () const
1234 {
1235         boost::shared_ptr<Track> tr;
1236
1237         if ((tr = track()) != 0) {
1238                 return tr->playlist();
1239         } else {
1240                 return boost::shared_ptr<Playlist> ();
1241         }
1242 }
1243
1244 void
1245 RouteTimeAxisView::name_entry_changed ()
1246 {
1247         string x;
1248
1249         x = name_entry.get_text ();
1250
1251         if (x == _route->name()) {
1252                 return;
1253         }
1254
1255         strip_whitespace_edges(x);
1256
1257         if (x.length() == 0) {
1258                 name_entry.set_text (_route->name());
1259                 return;
1260         }
1261
1262         if (!_session->route_name_unique (x)) {
1263                 ARDOUR_UI::instance()->popup_error (_("A track already exists with that name"));
1264                 name_entry.set_text (_route->name());
1265         } else if (_session->route_name_internal (x)) {
1266                 ARDOUR_UI::instance()->popup_error (_("You cannot create a track with that name as it is reserved for Ardour"));
1267                 name_entry.set_text (_route->name());
1268         } else {
1269                 _route->set_name (x);
1270         }
1271 }
1272
1273 boost::shared_ptr<Region>
1274 RouteTimeAxisView::find_next_region (nframes_t pos, RegionPoint point, int32_t dir)
1275 {
1276         boost::shared_ptr<Playlist> pl = playlist ();
1277
1278         if (pl) {
1279                 return pl->find_next_region (pos, point, dir);
1280         }
1281
1282         return boost::shared_ptr<Region> ();
1283 }
1284
1285 nframes64_t
1286 RouteTimeAxisView::find_next_region_boundary (nframes64_t pos, int32_t dir)
1287 {
1288         boost::shared_ptr<Playlist> pl = playlist ();
1289
1290         if (pl) {
1291                 return pl->find_next_region_boundary (pos, dir);
1292         }
1293
1294         return -1;
1295 }
1296
1297 bool
1298 RouteTimeAxisView::cut_copy_clear (Selection& selection, CutCopyOp op)
1299 {
1300         boost::shared_ptr<Playlist> what_we_got;
1301         boost::shared_ptr<Track> tr = track ();
1302         boost::shared_ptr<Playlist> playlist;
1303         bool ret = false;
1304
1305         if (tr == 0) {
1306                 /* route is a bus, not a track */
1307                 return false;
1308         }
1309
1310         playlist = tr->playlist();
1311
1312         TimeSelection time (selection.time);
1313         float const speed = tr->speed();
1314         if (speed != 1.0f) {
1315                 for (TimeSelection::iterator i = time.begin(); i != time.end(); ++i) {
1316                         (*i).start = session_frame_to_track_frame((*i).start, speed);
1317                         (*i).end   = session_frame_to_track_frame((*i).end,   speed);
1318                 }
1319         }
1320
1321         playlist->clear_history ();
1322         playlist->clear_owned_history ();
1323
1324         switch (op) {
1325         case Cut:
1326                 if ((what_we_got = playlist->cut (time)) != 0) {
1327                         _editor.get_cut_buffer().add (what_we_got);
1328
1329                         vector<StatefulDiffCommand*> cmds;
1330                         
1331                         playlist->rdiff (cmds);
1332                         
1333                         for (vector<StatefulDiffCommand*>::iterator c = cmds.begin(); c != cmds.end(); ++c) {
1334                                 _session->add_command (*c);
1335                         }
1336                         _session->add_command (new StatefulDiffCommand (playlist));
1337                         ret = true;
1338                 }
1339                 break;
1340         case Copy:
1341                 if ((what_we_got = playlist->copy (time)) != 0) {
1342                         _editor.get_cut_buffer().add (what_we_got);
1343                 }
1344                 break;
1345
1346         case Clear:
1347                 if ((what_we_got = playlist->cut (time)) != 0) {
1348                         vector<StatefulDiffCommand*> cmds;
1349                         
1350                         playlist->rdiff (cmds);
1351                         
1352                         for (vector<StatefulDiffCommand*>::iterator c = cmds.begin(); c != cmds.end(); ++c) {
1353                                 _session->add_command (*c);
1354                         }
1355                         _session->add_command (new StatefulDiffCommand (playlist));
1356                         what_we_got->release ();
1357                         ret = true;
1358                 }
1359                 break;
1360         }
1361
1362         return ret;
1363 }
1364
1365 bool
1366 RouteTimeAxisView::paste (nframes_t pos, float times, Selection& selection, size_t nth)
1367 {
1368         if (!is_track()) {
1369                 return false;
1370         }
1371
1372         boost::shared_ptr<Playlist> pl = playlist ();
1373         PlaylistSelection::iterator p;
1374
1375         for (p = selection.playlists.begin(); p != selection.playlists.end() && nth; ++p, --nth) {}
1376
1377         if (p == selection.playlists.end()) {
1378                 return false;
1379         }
1380
1381         if (track()->speed() != 1.0f) {
1382                 pos = session_frame_to_track_frame (pos, track()->speed());
1383         }
1384
1385         pl->clear_history ();
1386         pl->paste (*p, pos, times);
1387         _session->add_command (new StatefulDiffCommand (pl));
1388
1389         return true;
1390 }
1391
1392
1393 TimeAxisView::Children
1394 RouteTimeAxisView::get_child_list()
1395 {
1396         TimeAxisView::Children redirect_children;
1397
1398         for (Children::iterator i = children.begin(); i != children.end(); ++i) {
1399                 if (!(*i)->hidden()) {
1400                         redirect_children.push_back(*i);
1401                 }
1402         }
1403         return redirect_children;
1404 }
1405
1406
1407 struct PlaylistSorter {
1408     bool operator() (boost::shared_ptr<Playlist> a, boost::shared_ptr<Playlist> b) const {
1409             return a->sort_id() < b->sort_id();
1410     }
1411 };
1412
1413 void
1414 RouteTimeAxisView::build_playlist_menu (Gtk::Menu * menu)
1415 {
1416         using namespace Menu_Helpers;
1417
1418         if (!menu || !is_track()) {
1419                 return;
1420         }
1421
1422         MenuList& playlist_items = menu->items();
1423         menu->set_name ("ArdourContextMenu");
1424         playlist_items.clear();
1425
1426         delete playlist_menu;
1427
1428
1429         vector<boost::shared_ptr<Playlist> > playlists, playlists_tr;
1430         boost::shared_ptr<Track> tr = track();
1431         RadioMenuItem::Group playlist_group;
1432
1433         _session->playlists->get (playlists);
1434
1435         /* find the playlists for this diskstream */
1436         for (vector<boost::shared_ptr<Playlist> >::iterator i = playlists.begin(); i != playlists.end(); ++i) {
1437                 if (((*i)->get_orig_diskstream_id() == tr->diskstream_id()) || (tr->playlist()->id() == (*i)->id())) {
1438                         playlists_tr.push_back(*i);
1439                 }
1440         }
1441
1442         /* sort the playlists */
1443         PlaylistSorter cmp;
1444         sort (playlists_tr.begin(), playlists_tr.end(), cmp);
1445         
1446         /* add the playlists to the menu */
1447         for (vector<boost::shared_ptr<Playlist> >::iterator i = playlists_tr.begin(); i != playlists_tr.end(); ++i) {
1448                 playlist_items.push_back (RadioMenuElem (playlist_group, (*i)->name()));
1449                 RadioMenuItem *item = static_cast<RadioMenuItem*>(&playlist_items.back());
1450                 item->signal_toggled().connect(sigc::bind (sigc::mem_fun (*this, &RouteTimeAxisView::use_playlist), item, boost::weak_ptr<Playlist> (*i)));
1451                 
1452                 if (tr->playlist()->id() == (*i)->id()) {
1453                         item->set_active();
1454                         
1455                 }
1456         }
1457         
1458         playlist_items.push_back (SeparatorElem());
1459         playlist_items.push_back (MenuElem (_("Rename..."), sigc::mem_fun(*this, &RouteTimeAxisView::rename_current_playlist)));
1460         playlist_items.push_back (SeparatorElem());
1461
1462         if (!route_group() || !route_group()->is_active()) {
1463                 playlist_items.push_back (MenuElem (_("New..."), sigc::bind(sigc::mem_fun(_editor, &PublicEditor::new_playlists), this)));
1464                 playlist_items.push_back (MenuElem (_("New Copy..."), sigc::bind(sigc::mem_fun(_editor, &PublicEditor::copy_playlists), this)));
1465
1466         } else {
1467                 // Use a label which tells the user what is happening
1468                 playlist_items.push_back (MenuElem (_("New Take"), sigc::bind(sigc::mem_fun(_editor, &PublicEditor::new_playlists), this)));
1469                 playlist_items.push_back (MenuElem (_("Copy Take"), sigc::bind(sigc::mem_fun(_editor, &PublicEditor::copy_playlists), this)));
1470
1471         }
1472
1473         playlist_items.push_back (SeparatorElem());
1474         playlist_items.push_back (MenuElem (_("Clear Current"), sigc::bind(sigc::mem_fun(_editor, &PublicEditor::clear_playlists), this)));
1475         playlist_items.push_back (SeparatorElem());
1476
1477         playlist_items.push_back (MenuElem(_("Select from all..."), sigc::mem_fun(*this, &RouteTimeAxisView::show_playlist_selector)));
1478 }
1479
1480 void
1481 RouteTimeAxisView::use_playlist (RadioMenuItem *item, boost::weak_ptr<Playlist> wpl)
1482 {
1483         assert (is_track());
1484
1485         // exit if we were triggered by deactivating the old playlist
1486         if (!item->get_active()) {
1487                 return;
1488         }
1489
1490         boost::shared_ptr<Playlist> pl (wpl.lock());
1491
1492         if (!pl) {
1493                 return;
1494         }
1495
1496         boost::shared_ptr<AudioPlaylist> apl = boost::dynamic_pointer_cast<AudioPlaylist> (pl);
1497
1498         if (apl) {
1499                 if (track()->playlist() == apl) {
1500                         // exit when use_playlist is called by the creation of the playlist menu
1501                         // or the playlist choice is unchanged
1502                         return;
1503                 }
1504                 track()->use_playlist (apl);
1505
1506                 if (route_group() && route_group()->is_active()) {
1507                         std::string group_string = "."+route_group()->name()+".";
1508
1509                         std::string take_name = apl->name();
1510                         std::string::size_type idx = take_name.find(group_string);
1511
1512                         if (idx == std::string::npos)
1513                                 return;
1514
1515                         take_name = take_name.substr(idx + group_string.length()); // find the bit containing the take number / name
1516
1517                         boost::shared_ptr<RouteList> rl (route_group()->route_list());
1518
1519                         for (RouteList::const_iterator i = rl->begin(); i != rl->end(); ++i) {
1520                                 if ( (*i) == this->route()) {
1521                                         continue;
1522                                 }
1523
1524                                 std::string playlist_name = (*i)->name()+group_string+take_name;
1525
1526                                 boost::shared_ptr<Track> track = boost::dynamic_pointer_cast<Track>(*i);
1527                                 if (!track) {
1528                                         std::cerr << "route " << (*i)->name() << " is not a Track" << std::endl;
1529                                         continue;
1530                                 }
1531
1532                                 boost::shared_ptr<Playlist> ipl = session()->playlists->by_name(playlist_name);
1533                                 if (!ipl) {
1534                                         // No playlist for this track for this take yet, make it
1535                                         track->use_new_playlist();
1536                                         track->playlist()->set_name(playlist_name);
1537                                 } else {
1538                                         track->use_playlist(ipl);
1539                                 }
1540                         }
1541                 }
1542         }
1543 }
1544
1545 void
1546 RouteTimeAxisView::show_playlist_selector ()
1547 {
1548         _editor.playlist_selector().show_for (this);
1549 }
1550
1551 void
1552 RouteTimeAxisView::map_frozen ()
1553 {
1554         if (!is_track()) {
1555                 return;
1556         }
1557
1558         ENSURE_GUI_THREAD (*this, &RouteTimeAxisView::map_frozen)
1559
1560         switch (track()->freeze_state()) {
1561         case Track::Frozen:
1562                 playlist_button.set_sensitive (false);
1563                 rec_enable_button->set_sensitive (false);
1564                 break;
1565         default:
1566                 playlist_button.set_sensitive (true);
1567                 rec_enable_button->set_sensitive (true);
1568                 break;
1569         }
1570 }
1571
1572 void
1573 RouteTimeAxisView::color_handler ()
1574 {
1575         //case cTimeStretchOutline:
1576         if (timestretch_rect) {
1577                 timestretch_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_TimeStretchOutline.get();
1578         }
1579         //case cTimeStretchFill:
1580         if (timestretch_rect) {
1581                 timestretch_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_TimeStretchFill.get();
1582         }
1583
1584         reset_meter();
1585 }
1586
1587 /** Toggle an automation track for a fully-specified Parameter (type,channel,id)
1588  *  Will add track if necessary.
1589  */
1590 void
1591 RouteTimeAxisView::toggle_automation_track (const Evoral::Parameter& param)
1592 {
1593         boost::shared_ptr<AutomationTimeAxisView> track = automation_child (param);
1594         Gtk::CheckMenuItem* menu = automation_child_menu_item (param);
1595         
1596         if (!track) {
1597                 /* it doesn't exist yet, so we don't care about the button state: just add it */
1598                 create_automation_child (param, true);
1599         } else {
1600                 assert (menu);
1601                 bool yn = menu->get_active();
1602                 if (track->set_visibility (menu->get_active()) && yn) {
1603                         
1604                         /* we made it visible, now trigger a redisplay. if it was hidden, then automation_track_hidden()
1605                            will have done that for us.
1606                         */
1607                         
1608                         if (!no_redraw) {
1609                                 _route->gui_changed (X_("track_height"), (void *) 0); /* EMIT_SIGNAL */
1610                         } 
1611                 }
1612         }
1613 }
1614
1615 void
1616 RouteTimeAxisView::automation_track_hidden (Evoral::Parameter param)
1617 {
1618         boost::shared_ptr<AutomationTimeAxisView> track = automation_child (param);
1619
1620         if (!track) {
1621                 return;
1622         }
1623
1624         Gtk::CheckMenuItem* menu = automation_child_menu_item (param);
1625
1626         // if Evoral::Parameter::operator< doesn't obey strict weak ordering, we may crash here....
1627         track->get_state_node()->add_property (X_("shown"), X_("no"));
1628
1629         if (menu && !_hidden) {
1630                 ignore_toggle = true;
1631                 menu->set_active (false);
1632                 ignore_toggle = false;
1633         }
1634
1635         if (_route && !no_redraw) {
1636                 _route->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1637         }
1638 }
1639
1640
1641 void
1642 RouteTimeAxisView::show_all_automation ()
1643 {
1644         no_redraw = true;
1645
1646         /* Show our automation */
1647
1648         for (AutomationTracks::iterator i = _automation_tracks.begin(); i != _automation_tracks.end(); ++i) {
1649                 i->second->set_marked_for_display (true);
1650                 i->second->canvas_display()->show();
1651                 i->second->get_state_node()->add_property ("shown", X_("yes"));
1652
1653                 Gtk::CheckMenuItem* menu = automation_child_menu_item (i->first);
1654                 
1655                 if (menu) {
1656                         menu->set_active(true);
1657                 }
1658         }
1659
1660
1661         /* Show processor automation */
1662
1663         for (list<ProcessorAutomationInfo*>::iterator i = processor_automation.begin(); i != processor_automation.end(); ++i) {
1664                 for (vector<ProcessorAutomationNode*>::iterator ii = (*i)->lines.begin(); ii != (*i)->lines.end(); ++ii) {
1665                         if ((*ii)->view == 0) {
1666                                 add_processor_automation_curve ((*i)->processor, (*ii)->what);
1667                         }
1668
1669                         (*ii)->menu_item->set_active (true);
1670                 }
1671         }
1672
1673         no_redraw = false;
1674
1675         /* Redraw */
1676
1677          _route->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1678 }
1679
1680 void
1681 RouteTimeAxisView::show_existing_automation ()
1682 {
1683         no_redraw = true;
1684
1685         /* Show our automation */
1686
1687         for (AutomationTracks::iterator i = _automation_tracks.begin(); i != _automation_tracks.end(); ++i) {
1688                 if (i->second->has_automation()) {
1689                         i->second->set_marked_for_display (true);
1690                         i->second->canvas_display()->show();
1691                         i->second->get_state_node()->add_property ("shown", X_("yes"));
1692
1693                         Gtk::CheckMenuItem* menu = automation_child_menu_item (i->first);
1694                         if (menu) {
1695                                 menu->set_active(true);
1696                         }
1697                 }
1698         }
1699
1700
1701         /* Show processor automation */
1702
1703         for (list<ProcessorAutomationInfo*>::iterator i = processor_automation.begin(); i != processor_automation.end(); ++i) {
1704                 for (vector<ProcessorAutomationNode*>::iterator ii = (*i)->lines.begin(); ii != (*i)->lines.end(); ++ii) {
1705                         if ((*ii)->view != 0 && (*i)->processor->control((*ii)->what)->list()->size() > 0) {
1706                                 (*ii)->menu_item->set_active (true);
1707                         }
1708                 }
1709         }
1710
1711         no_redraw = false;
1712
1713         _route->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1714 }
1715
1716 void
1717 RouteTimeAxisView::hide_all_automation ()
1718 {
1719         no_redraw = true;
1720
1721         /* Hide our automation */
1722
1723         for (AutomationTracks::iterator i = _automation_tracks.begin(); i != _automation_tracks.end(); ++i) {
1724                 i->second->set_marked_for_display (false);
1725                 i->second->hide ();
1726                 i->second->get_state_node()->add_property ("shown", X_("no"));
1727
1728                 Gtk::CheckMenuItem* menu = automation_child_menu_item (i->first);
1729                 
1730                 if (menu) {
1731                         menu->set_active (false);
1732                 }
1733         }
1734
1735         /* Hide processor automation */
1736
1737         for (list<ProcessorAutomationInfo*>::iterator i = processor_automation.begin(); i != processor_automation.end(); ++i) {
1738                 for (vector<ProcessorAutomationNode*>::iterator ii = (*i)->lines.begin(); ii != (*i)->lines.end(); ++ii) {
1739                         (*ii)->menu_item->set_active (false);
1740                 }
1741         }
1742
1743         no_redraw = false;
1744          _route->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1745 }
1746
1747
1748 void
1749 RouteTimeAxisView::region_view_added (RegionView* rv)
1750 {
1751         /* XXX need to find out if automation children have automationstreamviews. If yes, no ghosts */
1752         if (is_audio_track()) {
1753                 for (Children::iterator i = children.begin(); i != children.end(); ++i) {
1754                         boost::shared_ptr<AutomationTimeAxisView> atv;
1755
1756                         if ((atv = boost::dynamic_pointer_cast<AutomationTimeAxisView> (*i)) != 0) {
1757                                 atv->add_ghost(rv);
1758                         }
1759                 }
1760         }
1761
1762         for (UnderlayMirrorList::iterator i = _underlay_mirrors.begin(); i != _underlay_mirrors.end(); ++i) {
1763                 (*i)->add_ghost(rv);
1764         }
1765 }
1766
1767 RouteTimeAxisView::ProcessorAutomationInfo::~ProcessorAutomationInfo ()
1768 {
1769         for (vector<ProcessorAutomationNode*>::iterator i = lines.begin(); i != lines.end(); ++i) {
1770                 delete *i;
1771         }
1772 }
1773
1774
1775 RouteTimeAxisView::ProcessorAutomationNode::~ProcessorAutomationNode ()
1776 {
1777         parent.remove_processor_automation_node (this);
1778 }
1779
1780 void
1781 RouteTimeAxisView::remove_processor_automation_node (ProcessorAutomationNode* pan)
1782 {
1783         if (pan->view) {
1784                 remove_child (pan->view);
1785         }
1786 }
1787
1788 RouteTimeAxisView::ProcessorAutomationNode*
1789 RouteTimeAxisView::find_processor_automation_node (boost::shared_ptr<Processor> processor, Evoral::Parameter what)
1790 {
1791         for (list<ProcessorAutomationInfo*>::iterator i = processor_automation.begin(); i != processor_automation.end(); ++i) {
1792
1793                 if ((*i)->processor == processor) {
1794
1795                         for (vector<ProcessorAutomationNode*>::iterator ii = (*i)->lines.begin(); ii != (*i)->lines.end(); ++ii) {
1796                                 if ((*ii)->what == what) {
1797                                         return *ii;
1798                                 }
1799                         }
1800                 }
1801         }
1802
1803         return 0;
1804 }
1805
1806 static string
1807 legalize_for_xml_node (string str)
1808 {
1809         string::size_type pos;
1810         string legal_chars = "abcdefghijklmnopqrtsuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_=:";
1811         string legal;
1812
1813         legal = str;
1814         pos = 0;
1815
1816         while ((pos = legal.find_first_not_of (legal_chars, pos)) != string::npos) {
1817                 legal.replace (pos, 1, "_");
1818                 pos += 1;
1819         }
1820
1821         return legal;
1822 }
1823
1824
1825 void
1826 RouteTimeAxisView::add_processor_automation_curve (boost::shared_ptr<Processor> processor, Evoral::Parameter what)
1827 {
1828         string name;
1829         ProcessorAutomationNode* pan;
1830
1831         if ((pan = find_processor_automation_node (processor, what)) == 0) {
1832                 error << _("programming error: ")
1833                       << string_compose (X_("processor automation curve for %1:%2 not registered with track!"),
1834                                   processor->name(), what)
1835                       << endmsg;
1836                 /*NOTREACHED*/
1837                 return;
1838         }
1839
1840         if (pan->view) {
1841                 return;
1842         }
1843
1844         name = processor->describe_parameter (what);
1845
1846         /* create a string that is a legal XML node name that can be used to refer to this redirect+port combination */
1847
1848         /* FIXME: ew */
1849
1850         char state_name[256];
1851         snprintf (state_name, sizeof (state_name), "Redirect-%s-%" PRIu32, legalize_for_xml_node (processor->name()).c_str(), what.id());
1852
1853         boost::shared_ptr<AutomationControl> control
1854                         = boost::dynamic_pointer_cast<AutomationControl>(processor->control(what, true));
1855
1856         pan->view = boost::shared_ptr<AutomationTimeAxisView>(
1857                         new AutomationTimeAxisView (_session, _route, processor, control,
1858                                 _editor, *this, false, parent_canvas, name, state_name));
1859
1860         pan->view->Hiding.connect (sigc::bind (sigc::mem_fun(*this, &RouteTimeAxisView::processor_automation_track_hidden), pan, processor));
1861
1862         if (!pan->view->marked_for_display()) {
1863                 pan->view->hide ();
1864         } else {
1865                 pan->menu_item->set_active (true);
1866         }
1867
1868         add_child (pan->view);
1869
1870         if (_view) {
1871                 _view->foreach_regionview (sigc::mem_fun(*pan->view.get(), &TimeAxisView::add_ghost));
1872         }
1873
1874         processor->mark_automation_visible (what, true);
1875 }
1876
1877 void
1878 RouteTimeAxisView::processor_automation_track_hidden (RouteTimeAxisView::ProcessorAutomationNode* pan, boost::shared_ptr<Processor> i)
1879 {
1880         if (!_hidden) {
1881                 pan->menu_item->set_active (false);
1882         }
1883
1884         i->mark_automation_visible (pan->what, false);
1885
1886         if (!no_redraw) {
1887                 _route->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1888         }
1889 }
1890
1891 void
1892 RouteTimeAxisView::add_existing_processor_automation_curves (boost::weak_ptr<Processor> p)
1893 {
1894         boost::shared_ptr<Processor> processor (p.lock ());
1895         if (!processor) {
1896                 return;
1897         }
1898
1899         set<Evoral::Parameter> s;
1900         boost::shared_ptr<AutomationLine> al;
1901
1902         processor->what_has_visible_data (s);
1903
1904         for (set<Evoral::Parameter>::iterator i = s.begin(); i != s.end(); ++i) {
1905
1906                 if ((al = find_processor_automation_curve (processor, *i)) != 0) {
1907                         al->queue_reset ();
1908                 } else {
1909                         add_processor_automation_curve (processor, (*i));
1910                 }
1911         }
1912 }
1913
1914 void
1915 RouteTimeAxisView::add_automation_child (Evoral::Parameter param, boost::shared_ptr<AutomationTimeAxisView> track, bool show)
1916 {
1917         using namespace Menu_Helpers;
1918
1919         XMLProperty* prop;
1920         XMLNode* node;
1921
1922         add_child (track);
1923
1924         track->Hiding.connect (sigc::bind (sigc::mem_fun (*this, &RouteTimeAxisView::automation_track_hidden), param));
1925
1926         bool hideit = (!show);
1927
1928         if ((node = track->get_state_node()) != 0) {
1929                 if  ((prop = node->property ("shown")) != 0) {
1930                         if (string_is_affirmative (prop->value())) {
1931                                 hideit = false;
1932                         }
1933                 }
1934         }
1935
1936         _automation_tracks[param] = track;
1937
1938         track->set_visibility (!hideit);
1939
1940         if (!no_redraw) {
1941                 _route->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
1942         }
1943
1944         if (!EventTypeMap::instance().is_midi_parameter(param)) {
1945                 /* MIDI-related parameters are always in the menu, there's no
1946                    reason to rebuild the menu just because we added a automation
1947                    lane for one of them. But if we add a non-MIDI automation
1948                    lane, then we need to invalidate the display menu.
1949                 */
1950                 delete display_menu;
1951                 display_menu = 0;
1952         }
1953 }
1954
1955 void
1956 RouteTimeAxisView::add_processor_to_subplugin_menu (boost::weak_ptr<Processor> p)
1957 {
1958         boost::shared_ptr<Processor> processor (p.lock ());
1959
1960         if (!processor || !processor->display_to_user ()) {
1961                 return;
1962         }
1963
1964         using namespace Menu_Helpers;
1965         ProcessorAutomationInfo *rai;
1966         list<ProcessorAutomationInfo*>::iterator x;
1967
1968         const std::set<Evoral::Parameter>& automatable = processor->what_can_be_automated ();
1969         std::set<Evoral::Parameter> has_visible_automation;
1970
1971         processor->what_has_visible_data(has_visible_automation);
1972
1973         if (automatable.empty()) {
1974                 return;
1975         }
1976
1977         for (x = processor_automation.begin(); x != processor_automation.end(); ++x) {
1978                 if ((*x)->processor == processor) {
1979                         break;
1980                 }
1981         }
1982
1983         if (x == processor_automation.end()) {
1984
1985                 rai = new ProcessorAutomationInfo (processor);
1986                 processor_automation.push_back (rai);
1987
1988         } else {
1989
1990                 rai = *x;
1991
1992         }
1993
1994         /* any older menu was deleted at the top of processors_changed()
1995            when we cleared the subplugin menu.
1996         */
1997
1998         rai->menu = manage (new Menu);
1999         MenuList& items = rai->menu->items();
2000         rai->menu->set_name ("ArdourContextMenu");
2001
2002         items.clear ();
2003
2004         for (std::set<Evoral::Parameter>::const_iterator i = automatable.begin(); i != automatable.end(); ++i) {
2005
2006                 ProcessorAutomationNode* pan;
2007                 CheckMenuItem* mitem;
2008
2009                 string name = processor->describe_parameter (*i);
2010
2011                 items.push_back (CheckMenuElem (name));
2012                 mitem = dynamic_cast<CheckMenuItem*> (&items.back());
2013
2014                 _subplugin_menu_map[*i] = mitem;
2015
2016                 if (has_visible_automation.find((*i)) != has_visible_automation.end()) {
2017                         mitem->set_active(true);
2018                 }
2019
2020                 if ((pan = find_processor_automation_node (processor, *i)) == 0) {
2021
2022                         /* new item */
2023
2024                         pan = new ProcessorAutomationNode (*i, mitem, *this);
2025
2026                         rai->lines.push_back (pan);
2027
2028                 } else {
2029
2030                         pan->menu_item = mitem;
2031
2032                 }
2033
2034                 mitem->signal_toggled().connect (sigc::bind (sigc::mem_fun(*this, &RouteTimeAxisView::processor_menu_item_toggled), rai, pan));
2035         }
2036
2037         /* add the menu for this processor, because the subplugin
2038            menu is always cleared at the top of processors_changed().
2039            this is the result of some poor design in gtkmm and/or
2040            GTK+.
2041         */
2042
2043         subplugin_menu.items().push_back (MenuElem (processor->name(), *rai->menu));
2044         rai->valid = true;
2045 }
2046
2047 void
2048 RouteTimeAxisView::processor_menu_item_toggled (RouteTimeAxisView::ProcessorAutomationInfo* rai,
2049                                                RouteTimeAxisView::ProcessorAutomationNode* pan)
2050 {
2051         bool showit = pan->menu_item->get_active();
2052         bool redraw = false;
2053
2054         if (pan->view == 0 && showit) {
2055                 add_processor_automation_curve (rai->processor, pan->what);
2056                 redraw = true;
2057         }
2058
2059         if (pan->view && showit != pan->view->marked_for_display()) {
2060
2061                 if (showit) {
2062                         pan->view->set_marked_for_display (true);
2063                         pan->view->canvas_display()->show();
2064                         pan->view->canvas_background()->show();
2065                 } else {
2066                         rai->processor->mark_automation_visible (pan->what, true);
2067                         pan->view->set_marked_for_display (false);
2068                         pan->view->hide ();
2069                 }
2070
2071                 redraw = true;
2072
2073         }
2074
2075         if (redraw && !no_redraw) {
2076                  _route->gui_changed ("track_height", (void *) 0); /* EMIT_SIGNAL */
2077
2078         }
2079 }
2080
2081 void
2082 RouteTimeAxisView::processors_changed (RouteProcessorChange c)
2083 {
2084         if (c.type == RouteProcessorChange::MeterPointChange) {
2085                 /* nothing to do if only the meter point has changed */
2086                 return;
2087         }
2088
2089         using namespace Menu_Helpers;
2090
2091         for (list<ProcessorAutomationInfo*>::iterator i = processor_automation.begin(); i != processor_automation.end(); ++i) {
2092                 (*i)->valid = false;
2093         }
2094
2095         _subplugin_menu_map.clear ();
2096         subplugin_menu.items().clear ();
2097
2098         _route->foreach_processor (sigc::mem_fun (*this, &RouteTimeAxisView::add_processor_to_subplugin_menu));
2099         _route->foreach_processor (sigc::mem_fun (*this, &RouteTimeAxisView::add_existing_processor_automation_curves));
2100
2101         bool deleted_processor_automation = false;
2102
2103         for (list<ProcessorAutomationInfo*>::iterator i = processor_automation.begin(); i != processor_automation.end(); ) {
2104
2105                 list<ProcessorAutomationInfo*>::iterator tmp;
2106
2107                 tmp = i;
2108                 ++tmp;
2109
2110                 if (!(*i)->valid) {
2111
2112                         delete *i;
2113                         processor_automation.erase (i);
2114                         deleted_processor_automation = true;
2115
2116                 }
2117
2118                 i = tmp;
2119         }
2120
2121         if (deleted_processor_automation && !no_redraw) {
2122                 _route->gui_changed ("track_height", this);
2123         }
2124 }
2125
2126 boost::shared_ptr<AutomationLine>
2127 RouteTimeAxisView::find_processor_automation_curve (boost::shared_ptr<Processor> processor, Evoral::Parameter what)
2128 {
2129         ProcessorAutomationNode* pan;
2130
2131         if ((pan = find_processor_automation_node (processor, what)) != 0) {
2132                 if (pan->view) {
2133                         pan->view->line();
2134                 }
2135         }
2136
2137         return boost::shared_ptr<AutomationLine>();
2138 }
2139
2140 void
2141 RouteTimeAxisView::reset_processor_automation_curves ()
2142 {
2143         for (ProcessorAutomationCurves::iterator i = processor_automation_curves.begin(); i != processor_automation_curves.end(); ++i) {
2144                 (*i)->reset();
2145         }
2146 }
2147
2148 void
2149 RouteTimeAxisView::update_rec_display ()
2150 {
2151         RouteUI::update_rec_display ();
2152         name_entry.set_sensitive (!_route->record_enabled());
2153 }
2154
2155 void
2156 RouteTimeAxisView::set_layer_display (LayerDisplay d)
2157 {
2158         if (_view) {
2159                 _view->set_layer_display (d);
2160         }
2161
2162         ensure_xml_node ();
2163         xml_node->add_property (N_("layer-display"), enum_2_string (d));
2164 }
2165
2166 LayerDisplay
2167 RouteTimeAxisView::layer_display () const
2168 {
2169         if (_view) {
2170                 return _view->layer_display ();
2171         }
2172
2173         /* we don't know, since we don't have a _view, so just return something */
2174         return Overlaid;
2175 }
2176
2177
2178
2179 boost::shared_ptr<AutomationTimeAxisView>
2180 RouteTimeAxisView::automation_child(Evoral::Parameter param)
2181 {
2182         AutomationTracks::iterator i = _automation_tracks.find(param);
2183         if (i != _automation_tracks.end()) {
2184                 return i->second;
2185         } else {
2186                 return boost::shared_ptr<AutomationTimeAxisView>();
2187         }
2188 }
2189
2190 void
2191 RouteTimeAxisView::fast_update ()
2192 {
2193         gm.get_level_meter().update_meters ();
2194 }
2195
2196 void
2197 RouteTimeAxisView::hide_meter ()
2198 {
2199         clear_meter ();
2200         gm.get_level_meter().hide_meters ();
2201 }
2202
2203 void
2204 RouteTimeAxisView::show_meter ()
2205 {
2206         reset_meter ();
2207 }
2208
2209 void
2210 RouteTimeAxisView::reset_meter ()
2211 {
2212         if (Config->get_show_track_meters()) {
2213                 gm.get_level_meter().setup_meters (height-5);
2214         } else {
2215                 hide_meter ();
2216         }
2217 }
2218
2219 void
2220 RouteTimeAxisView::clear_meter ()
2221 {
2222         gm.get_level_meter().clear_meters ();
2223 }
2224
2225 void
2226 RouteTimeAxisView::meter_changed ()
2227 {
2228         ENSURE_GUI_THREAD (*this, &RouteTimeAxisView::meter_changed)
2229         reset_meter();
2230 }
2231
2232 void
2233 RouteTimeAxisView::io_changed (IOChange /*change*/, void */*src*/)
2234 {
2235         reset_meter ();
2236 }
2237
2238 void
2239 RouteTimeAxisView::build_underlay_menu(Gtk::Menu* parent_menu)
2240 {
2241         using namespace Menu_Helpers;
2242
2243         if (!_underlay_streams.empty()) {
2244                 MenuList& parent_items = parent_menu->items();
2245                 Menu* gs_menu = manage (new Menu);
2246                 gs_menu->set_name ("ArdourContextMenu");
2247                 MenuList& gs_items = gs_menu->items();
2248
2249                 parent_items.push_back (MenuElem (_("Underlays"), *gs_menu));
2250
2251                 for(UnderlayList::iterator it = _underlay_streams.begin(); it != _underlay_streams.end(); ++it) {
2252                         gs_items.push_back(MenuElem(string_compose(_("Remove \"%1\""), (*it)->trackview().name()),
2253                                                     sigc::bind(sigc::mem_fun(*this, &RouteTimeAxisView::remove_underlay), *it)));
2254                 }
2255         }
2256 }
2257
2258 bool
2259 RouteTimeAxisView::set_underlay_state()
2260 {
2261         if (!underlay_xml_node) {
2262                 return false;
2263         }
2264
2265         XMLNodeList nlist = underlay_xml_node->children();
2266         XMLNodeConstIterator niter;
2267         XMLNode *child_node;
2268
2269         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
2270                 child_node = *niter;
2271
2272                 if (child_node->name() != "Underlay") {
2273                         continue;
2274                 }
2275
2276                 XMLProperty* prop = child_node->property ("id");
2277                 if (prop) {
2278                         PBD::ID id (prop->value());
2279
2280                         RouteTimeAxisView* v = _editor.get_route_view_by_id (id);
2281
2282                         if (v) {
2283                                 add_underlay(v->view(), false);
2284                         }
2285                 }
2286         }
2287
2288         return false;
2289 }
2290
2291 void
2292 RouteTimeAxisView::add_underlay (StreamView* v, bool update_xml)
2293 {
2294         if (!v) {
2295                 return;
2296         }
2297
2298         RouteTimeAxisView& other = v->trackview();
2299
2300         if (find(_underlay_streams.begin(), _underlay_streams.end(), v) == _underlay_streams.end()) {
2301                 if (find(other._underlay_mirrors.begin(), other._underlay_mirrors.end(), this) != other._underlay_mirrors.end()) {
2302                         fatal << _("programming error: underlay reference pointer pairs are inconsistent!") << endmsg;
2303                         /*NOTREACHED*/
2304                 }
2305
2306                 _underlay_streams.push_back(v);
2307                 other._underlay_mirrors.push_back(this);
2308
2309                 v->foreach_regionview(sigc::mem_fun(*this, &RouteTimeAxisView::add_ghost));
2310
2311                 if (update_xml) {
2312                         if (!underlay_xml_node) {
2313                                 ensure_xml_node();
2314                                 underlay_xml_node = xml_node->add_child("Underlays");
2315                         }
2316
2317                         XMLNode* node = underlay_xml_node->add_child("Underlay");
2318                         XMLProperty* prop = node->add_property("id");
2319                         prop->set_value(v->trackview().route()->id().to_s());
2320                 }
2321         }
2322 }
2323
2324 void
2325 RouteTimeAxisView::remove_underlay (StreamView* v)
2326 {
2327         if (!v) {
2328                 return;
2329         }
2330
2331         UnderlayList::iterator it = find(_underlay_streams.begin(), _underlay_streams.end(), v);
2332         RouteTimeAxisView& other = v->trackview();
2333
2334         if (it != _underlay_streams.end()) {
2335                 UnderlayMirrorList::iterator gm = find(other._underlay_mirrors.begin(), other._underlay_mirrors.end(), this);
2336
2337                 if (gm == other._underlay_mirrors.end()) {
2338                         fatal << _("programming error: underlay reference pointer pairs are inconsistent!") << endmsg;
2339                         /*NOTREACHED*/
2340                 }
2341
2342                 v->foreach_regionview(sigc::mem_fun(*this, &RouteTimeAxisView::remove_ghost));
2343
2344                 _underlay_streams.erase(it);
2345                 other._underlay_mirrors.erase(gm);
2346
2347                 if (underlay_xml_node) {
2348                         underlay_xml_node->remove_nodes_and_delete("id", v->trackview().route()->id().to_s());
2349                 }
2350         }
2351 }
2352
2353 void
2354 RouteTimeAxisView::set_button_names ()
2355 {
2356         rec_enable_button_label.set_text (_("r"));
2357
2358         if (_route && _route->solo_safe()) {
2359                 solo_button_label.set_text (X_("!"));
2360         } else {
2361                 if (Config->get_solo_control_is_listen_control()) {
2362                         switch (Config->get_listen_position()) {
2363                         case AfterFaderListen:
2364                                 solo_button_label.set_text (_("A"));
2365                                 break;
2366                         case PreFaderListen:
2367                                 solo_button_label.set_text (_("P"));
2368                                 break;
2369                         }
2370                 } else {
2371                         solo_button_label.set_text (_("s"));
2372                 }
2373         }
2374         mute_button_label.set_text (_("m"));
2375 }
2376
2377 Gtk::CheckMenuItem*
2378 RouteTimeAxisView::automation_child_menu_item (Evoral::Parameter param)
2379 {
2380         ParameterMenuMap::iterator i = _main_automation_menu_map.find (param);
2381         if (i != _main_automation_menu_map.end()) {
2382                 return i->second;
2383         }
2384         
2385         i = _subplugin_menu_map.find (param);
2386         if (i != _subplugin_menu_map.end()) {
2387                 return i->second;
2388         }
2389
2390         return 0;
2391 }