use tape-track rec-enable icon throughout.
[ardour.git] / gtk2_ardour / mixer_strip.cc
1 /*
2     Copyright (C) 2000-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 <cmath>
20 #include <list>
21 #include <algorithm>
22
23 #include <sigc++/bind.h>
24
25 #include "pbd/convert.h"
26 #include "pbd/enumwriter.h"
27 #include "pbd/replace_all.h"
28 #include "pbd/stacktrace.h"
29
30 #include <gtkmm2ext/gtk_ui.h>
31 #include <gtkmm2ext/utils.h>
32 #include <gtkmm2ext/choice.h>
33 #include <gtkmm2ext/doi.h>
34 #include <gtkmm2ext/slider_controller.h>
35 #include <gtkmm2ext/bindable_button.h>
36
37 #include "ardour/audio_track.h"
38 #include "ardour/audioengine.h"
39 #include "ardour/internal_send.h"
40 #include "ardour/meter.h"
41 #include "ardour/midi_track.h"
42 #include "ardour/pannable.h"
43 #include "ardour/panner.h"
44 #include "ardour/panner_shell.h"
45 #include "ardour/panner_manager.h"
46 #include "ardour/port.h"
47 #include "ardour/profile.h"
48 #include "ardour/route.h"
49 #include "ardour/route_group.h"
50 #include "ardour/send.h"
51 #include "ardour/session.h"
52 #include "ardour/types.h"
53 #include "ardour/user_bundle.h"
54
55 #include "ardour_ui.h"
56 #include "ardour_window.h"
57 #include "mixer_strip.h"
58 #include "mixer_ui.h"
59 #include "keyboard.h"
60 #include "ardour_button.h"
61 #include "public_editor.h"
62 #include "send_ui.h"
63 #include "io_selector.h"
64 #include "utils.h"
65 #include "gui_thread.h"
66 #include "route_group_menu.h"
67 #include "meter_patterns.h"
68
69 #include "i18n.h"
70
71 using namespace ARDOUR;
72 using namespace ARDOUR_UI_UTILS;
73 using namespace PBD;
74 using namespace Gtk;
75 using namespace Gtkmm2ext;
76 using namespace std;
77 using namespace ArdourMeter;
78
79 MixerStrip* MixerStrip::_entered_mixer_strip;
80
81 PBD::Signal1<void,MixerStrip*> MixerStrip::CatchDeletion;
82
83 static const int _button_vpad = 4;
84
85 MixerStrip::MixerStrip (Mixer_UI& mx, Session* sess, bool in_mixer)
86         : AxisView(sess)
87         , RouteUI (sess)
88         , _mixer(mx)
89         , _mixer_owned (in_mixer)
90         , processor_box (sess, boost::bind (&MixerStrip::plugin_selector, this), mx.selection(), this, in_mixer)
91         , gpm (sess, 250)
92         , panners (sess)
93         , button_size_group (Gtk::SizeGroup::create (Gtk::SIZE_GROUP_HORIZONTAL))
94         , rec_mon_table (2, 2)
95         , solo_iso_table (1, 2)
96         , mute_solo_table (1, 2)
97         , bottom_button_table (1, 3)
98         , meter_point_button (_("pre"))
99         , midi_input_enable_button (0)
100         , _comment_button (_("Comments"))
101         , _visibility (X_("mixer-element-visibility"))
102 {
103         init ();
104
105         if (!_mixer_owned) {
106                 /* the editor mixer strip: don't destroy it every time
107                    the underlying route goes away.
108                 */
109
110                 self_destruct = false;
111         }
112 }
113
114 MixerStrip::MixerStrip (Mixer_UI& mx, Session* sess, boost::shared_ptr<Route> rt, bool in_mixer)
115         : AxisView(sess)
116         , RouteUI (sess)
117         , _mixer(mx)
118         , _mixer_owned (in_mixer)
119         , processor_box (sess, boost::bind (&MixerStrip::plugin_selector, this), mx.selection(), this, in_mixer)
120         , gpm (sess, 250)
121         , panners (sess)
122         , button_size_group (Gtk::SizeGroup::create (Gtk::SIZE_GROUP_HORIZONTAL))
123         , rec_mon_table (2, 2)
124         , solo_iso_table (1, 2)
125         , mute_solo_table (1, 2)
126         , bottom_button_table (1, 3)
127         , meter_point_button (_("pre"))
128         , midi_input_enable_button (0)
129         , _comment_button (_("Comments"))
130         , _visibility (X_("mixer-element-visibility"))
131 {
132         init ();
133         set_route (rt);
134 }
135
136 void
137 MixerStrip::init ()
138 {
139         _entered_mixer_strip= 0;
140         group_menu = 0;
141         route_ops_menu = 0;
142         ignore_comment_edit = false;
143         ignore_toggle = false;
144         comment_area = 0;
145         _width_owner = 0;
146         spacer = 0;
147
148         /* the length of this string determines the width of the mixer strip when it is set to `wide' */
149         longest_label = "longest label";
150
151         string t = _("Click to toggle the width of this mixer strip.");
152         if (_mixer_owned) {
153                 t += string_compose (_("\n%1-%2-click to toggle the width of all strips."), Keyboard::primary_modifier_name(), Keyboard::tertiary_modifier_name ());
154         }
155         
156         width_button.set_image (::get_icon("strip_width"));
157         ARDOUR_UI::instance()->set_tip (width_button, t);
158
159         hide_button.set_image(::get_icon("hide"));
160         ARDOUR_UI::instance()->set_tip (&hide_button, _("Hide this mixer strip"));
161
162         input_button_box.set_spacing(2);
163         
164         input_button.set_text (_("Input"));
165         input_button.set_name ("mixer strip button");
166         input_button_box.pack_start (input_button, true, true);
167
168         output_button.set_text (_("Output"));
169         output_button.set_name ("mixer strip button");
170
171         ARDOUR_UI::instance()->set_tip (&meter_point_button, _("Click to select metering point"), "");
172         meter_point_button.set_name ("mixer strip button");
173
174         bottom_button_table.attach (meter_point_button, 2, 3, 0, 1);
175
176         meter_point_button.signal_button_press_event().connect (sigc::mem_fun (gpm, &GainMeter::meter_press), false);
177         meter_point_button.signal_button_release_event().connect (sigc::mem_fun (gpm, &GainMeter::meter_release), false);
178         
179         hide_button.set_events (hide_button.get_events() & ~(Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK));
180
181         monitor_input_button->set_diameter (3);
182         monitor_disk_button->set_diameter (3);
183
184         solo_isolated_led = manage (new ArdourButton (ArdourButton::led_default_elements));
185         solo_isolated_led->show ();
186         solo_isolated_led->set_diameter (3);
187         solo_isolated_led->set_no_show_all (true);
188         solo_isolated_led->set_name (X_("solo isolate"));
189         solo_isolated_led->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
190         solo_isolated_led->signal_button_release_event().connect (sigc::mem_fun (*this, &RouteUI::solo_isolate_button_release), false);
191         UI::instance()->set_tip (solo_isolated_led, _("Isolate Solo"), "");
192
193         solo_safe_led = manage (new ArdourButton (ArdourButton::led_default_elements));
194         solo_safe_led->show ();
195         solo_safe_led->set_diameter (3);
196         solo_safe_led->set_no_show_all (true);
197         solo_safe_led->set_name (X_("solo safe"));
198         solo_safe_led->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
199         solo_safe_led->signal_button_release_event().connect (sigc::mem_fun (*this, &RouteUI::solo_safe_button_release), false);
200         UI::instance()->set_tip (solo_safe_led, _("Lock Solo Status"), "");
201
202         solo_safe_led->set_text (_("Lock"));
203         solo_isolated_led->set_text (_("Iso"));
204
205         solo_iso_table.set_homogeneous (true);
206         solo_iso_table.set_spacings (2);
207         if (!ARDOUR::Profile->get_trx()) {
208                 solo_iso_table.attach (*solo_isolated_led, 0, 1, 0, 1);
209                 solo_iso_table.attach (*solo_safe_led, 1, 2, 0, 1);
210         }
211         solo_iso_table.show ();
212
213         rec_mon_table.set_homogeneous (true);
214         rec_mon_table.set_row_spacings (2);
215         rec_mon_table.set_col_spacings (2);
216         if (ARDOUR::Profile->get_mixbus()) {
217                 rec_mon_table.resize (1, 3);
218                 rec_mon_table.attach (*monitor_input_button, 1, 2, 0, 1);
219                 rec_mon_table.attach (*monitor_disk_button, 2, 3, 0, 1);
220         } else if (!ARDOUR::Profile->get_trx()) {
221                 rec_mon_table.attach (*monitor_input_button, 1, 2, 0, 1);
222                 rec_mon_table.attach (*monitor_disk_button, 1, 2, 1, 2);
223         }
224         rec_mon_table.show ();
225
226         if (solo_isolated_led) {
227                 button_size_group->add_widget (*solo_isolated_led);
228         }
229         if (solo_safe_led) {
230                 button_size_group->add_widget (*solo_safe_led);
231         }
232
233         if (!ARDOUR::Profile->get_mixbus()) {
234                 if (rec_enable_button) {
235                         button_size_group->add_widget (*rec_enable_button);
236                 }
237                 if (monitor_disk_button) {
238                         button_size_group->add_widget (*monitor_disk_button);
239                 }
240                 if (monitor_input_button) {
241                         button_size_group->add_widget (*monitor_input_button);
242                 }
243         }
244         
245         mute_solo_table.set_homogeneous (true);
246         mute_solo_table.set_spacings (2);
247
248         bottom_button_table.set_spacings (2);
249         bottom_button_table.set_homogeneous (true);
250         bottom_button_table.attach (group_button, 1, 2, 0, 1);
251         bottom_button_table.attach (gpm.gain_automation_state_button, 0, 1, 0, 1);
252
253         name_button.set_name ("mixer strip button");
254         name_button.set_text (" "); /* non empty text, forces creation of the layout */
255         name_button.set_text (""); /* back to empty */
256         name_button.layout()->set_ellipsize (Pango::ELLIPSIZE_END);
257         name_button.signal_size_allocate().connect (sigc::mem_fun (*this, &MixerStrip::name_button_resized));
258
259         ARDOUR_UI::instance()->set_tip (&group_button, _("Mix group"), "");
260         group_button.set_name ("mixer strip button");
261
262         _comment_button.set_name (X_("mixer strip button"));
263         _comment_button.signal_clicked.connect (sigc::mem_fun (*this, &RouteUI::toggle_comment_editor));
264
265         global_vpacker.set_border_width (1);
266         global_vpacker.set_spacing (0);
267
268         width_button.set_name ("mixer strip button");
269         hide_button.set_name ("mixer strip button");
270
271         width_button.signal_button_press_event().connect (sigc::mem_fun(*this, &MixerStrip::width_button_pressed), false);
272         hide_button.signal_clicked.connect (sigc::mem_fun(*this, &MixerStrip::hide_clicked));
273
274 //      width_hide_box.set_border_width (1);
275         width_hide_box.set_spacing (2);
276         width_hide_box.pack_start (width_button, false, true);
277         width_hide_box.pack_start (number_label, true, true);
278         width_hide_box.pack_end (hide_button, false, true);
279
280         number_label.set_text ("-");
281         number_label.set_elements((ArdourButton::Element)(ArdourButton::Edge|ArdourButton::Body|ArdourButton::Text|ArdourButton::Inactive));
282         number_label.set_no_show_all ();
283         number_label.set_name ("tracknumber label");
284         number_label.set_fixed_colors (0x80808080, 0x80808080);
285         number_label.set_alignment (.5, .5);
286         number_label.set_fallthrough_to_parent (true);
287
288         global_vpacker.set_spacing (2);
289         if (!ARDOUR::Profile->get_trx()) {
290                 global_vpacker.pack_start (width_hide_box, Gtk::PACK_SHRINK);
291                 global_vpacker.pack_start (name_button, Gtk::PACK_SHRINK);
292                 global_vpacker.pack_start (input_button_box, Gtk::PACK_SHRINK);
293                 global_vpacker.pack_start (_invert_button_box, Gtk::PACK_SHRINK);
294                 global_vpacker.pack_start (processor_box, true, true);
295         }
296         global_vpacker.pack_start (panners, Gtk::PACK_SHRINK);
297         global_vpacker.pack_start (rec_mon_table, Gtk::PACK_SHRINK);
298         global_vpacker.pack_start (solo_iso_table, Gtk::PACK_SHRINK);
299         global_vpacker.pack_start (mute_solo_table, Gtk::PACK_SHRINK);
300         global_vpacker.pack_start (gpm, Gtk::PACK_SHRINK);
301         global_vpacker.pack_start (bottom_button_table, Gtk::PACK_SHRINK);
302         if (!ARDOUR::Profile->get_trx()) {
303                 global_vpacker.pack_start (output_button, Gtk::PACK_SHRINK);
304                 global_vpacker.pack_start (_comment_button, Gtk::PACK_SHRINK);
305         } else {
306                 global_vpacker.pack_start (name_button, Gtk::PACK_SHRINK);
307         }
308
309         global_frame.add (global_vpacker);
310         global_frame.set_shadow_type (Gtk::SHADOW_IN);
311         global_frame.set_name ("BaseFrame");
312
313         add (global_frame);
314
315         /* force setting of visible selected status */
316
317         _selected = true;
318         set_selected (false);
319
320         _packed = false;
321         _embedded = false;
322
323         _session->engine().Stopped.connect (*this, invalidator (*this), boost::bind (&MixerStrip::engine_stopped, this), gui_context());
324         _session->engine().Running.connect (*this, invalidator (*this), boost::bind (&MixerStrip::engine_running, this), gui_context());
325
326         input_button.signal_button_press_event().connect (sigc::mem_fun(*this, &MixerStrip::input_press), false);
327         input_button.signal_button_release_event().connect (sigc::mem_fun(*this, &MixerStrip::input_release), false);
328
329         output_button.signal_button_press_event().connect (sigc::mem_fun(*this, &MixerStrip::output_press), false);
330         output_button.signal_button_release_event().connect (sigc::mem_fun(*this, &MixerStrip::output_release), false);
331
332         number_label.signal_button_press_event().connect (sigc::mem_fun(*this, &MixerStrip::number_button_button_press), false);
333
334         name_button.signal_button_press_event().connect (sigc::mem_fun(*this, &MixerStrip::name_button_button_press), false);
335         name_button.signal_button_release_event().connect (sigc::mem_fun(*this, &MixerStrip::name_button_button_release), false);
336
337         group_button.signal_button_press_event().connect (sigc::mem_fun(*this, &MixerStrip::select_route_group), false);
338
339         _width = (Width) -1;
340
341         /* start off as a passthru strip. we'll correct this, if necessary,
342            in update_diskstream_display().
343         */
344
345         /* start off as a passthru strip. we'll correct this, if necessary,
346            in update_diskstream_display().
347         */
348
349         if (is_midi_track()) {
350                 set_name ("MidiTrackStripBase");
351         } else {
352                 set_name ("AudioTrackStripBase");
353         }
354
355         add_events (Gdk::BUTTON_RELEASE_MASK|
356                     Gdk::ENTER_NOTIFY_MASK|
357                     Gdk::LEAVE_NOTIFY_MASK|
358                     Gdk::KEY_PRESS_MASK|
359                     Gdk::KEY_RELEASE_MASK);
360
361         set_flags (get_flags() | Gtk::CAN_FOCUS);
362
363         AudioEngine::instance()->PortConnectedOrDisconnected.connect (
364                 *this, invalidator (*this), boost::bind (&MixerStrip::port_connected_or_disconnected, this, _1, _3), gui_context ()
365                 );
366
367         /* Add the widgets under visibility control to the VisibilityGroup; the names used here
368            must be the same as those used in RCOptionEditor so that the configuration changes
369            are recognised when they occur.
370         */
371         _visibility.add (&input_button_box, X_("Input"), _("Input"), false);
372         _visibility.add (&_invert_button_box, X_("PhaseInvert"), _("Phase Invert"), false);
373         _visibility.add (&rec_mon_table, X_("RecMon"), _("Record & Monitor"), false);
374         _visibility.add (&solo_iso_table, X_("SoloIsoLock"), _("Solo Iso / Lock"), false);
375         _visibility.add (&output_button, X_("Output"), _("Output"), false);
376         _visibility.add (&_comment_button, X_("Comments"), _("Comments"), false);
377
378         parameter_changed (X_("mixer-element-visibility"));
379
380         Config->ParameterChanged.connect (_config_connection, MISSING_INVALIDATOR, boost::bind (&MixerStrip::parameter_changed, this, _1), gui_context());
381         _session->config.ParameterChanged.connect (_config_connection, MISSING_INVALIDATOR, boost::bind (&MixerStrip::parameter_changed, this, _1), gui_context());
382
383         //watch for mouse enter/exit so we can do some stuff
384         signal_enter_notify_event().connect (sigc::mem_fun(*this, &MixerStrip::mixer_strip_enter_event ));
385         signal_leave_notify_event().connect (sigc::mem_fun(*this, &MixerStrip::mixer_strip_leave_event ));
386
387         gpm.LevelMeterButtonPress.connect_same_thread (_level_meter_connection, boost::bind (&MixerStrip::level_meter_button_press, this, _1));
388 }
389
390 MixerStrip::~MixerStrip ()
391 {
392         CatchDeletion (this);
393
394         if (this ==_entered_mixer_strip)
395                 _entered_mixer_strip = NULL;
396 }
397
398 bool
399 MixerStrip::mixer_strip_enter_event (GdkEventCrossing* /*ev*/)
400 {
401         _entered_mixer_strip = this;
402         
403         //although we are triggering on the "enter", to the user it will appear that it is happenin on the "leave"
404         //because the mixerstrip control is a parent that encompasses the strip
405         deselect_all_processors();
406
407         return false;
408 }
409
410 bool
411 MixerStrip::mixer_strip_leave_event (GdkEventCrossing *ev)
412 {
413         //if we have moved outside our strip, but not into a child view, then deselect ourselves
414         if ( !(ev->detail == GDK_NOTIFY_INFERIOR) ) {
415                 _entered_mixer_strip= 0;
416
417                 //clear keyboard focus in the gain display.  this is cheesy but fixes a longstanding "bug" where the user starts typing in the gain entry, and leaves it active, thereby prohibiting other keybindings from working
418                 gpm.gain_display.set_sensitive(false);
419                 gpm.show_gain();
420                 gpm.gain_display.set_sensitive(true);
421
422                 //if we leave this mixer strip we need to clear out any selections
423                 //processor_box.processor_display.select_none();  //but this doesn't work, because it gets triggered when (for example) you open the menu or start a drag
424         }
425         
426         return false;
427 }
428
429 void
430 MixerStrip::set_route (boost::shared_ptr<Route> rt)
431 {
432         //the rec/monitor stuff only shows up for tracks.
433         //the show_sends only shows up for buses.
434         //remove them all here, and we may add them back later
435         if (show_sends_button->get_parent()) {
436                 rec_mon_table.remove (*show_sends_button);
437         }
438         if (rec_enable_button->get_parent()) {
439                 rec_mon_table.remove (*rec_enable_button);
440         }
441         if (monitor_input_button->get_parent()) {
442                 rec_mon_table.remove (*monitor_input_button);
443         }
444         if (monitor_disk_button->get_parent()) {
445                 rec_mon_table.remove (*monitor_disk_button);
446         }
447         if (group_button.get_parent()) {
448                 bottom_button_table.remove (group_button);
449         }
450         
451         RouteUI::set_route (rt);
452
453         /* ProcessorBox needs access to _route so that it can read
454            GUI object state.
455         */
456         processor_box.set_route (rt);
457
458         /* map the current state */
459
460         mute_changed (0);
461         update_solo_display ();
462
463         revert_to_default_display ();
464
465         /* unpack these from the parent and stuff them into our own
466            table
467         */
468         
469         if (gpm.peak_display.get_parent()) {
470                 gpm.peak_display.get_parent()->remove (gpm.peak_display);
471         }
472         if (gpm.gain_display.get_parent()) {
473                 gpm.gain_display.get_parent()->remove (gpm.gain_display);
474         }
475
476         gpm.set_type (rt->meter_type());
477         
478         mute_solo_table.attach (gpm.gain_display,0,1,1,2, EXPAND|FILL, EXPAND);
479         mute_solo_table.attach (gpm.peak_display,1,2,1,2, EXPAND|FILL, EXPAND);
480
481         if (solo_button->get_parent()) {
482                 mute_solo_table.remove (*solo_button);
483         }
484
485         if (mute_button->get_parent()) {
486                 mute_solo_table.remove (*mute_button);
487         }
488
489         if (route()->is_master()) {
490                 mute_solo_table.attach (*mute_button, 0, 2, 0, 1);
491                 solo_button->hide ();
492                 mute_button->show ();
493                 rec_mon_table.hide ();
494         } else {
495                 bottom_button_table.attach (group_button, 1, 2, 0, 1);
496                 mute_solo_table.attach (*mute_button, 0, 1, 0, 1);
497                 mute_solo_table.attach (*solo_button, 1, 2, 0, 1);
498                 mute_button->show ();
499                 solo_button->show ();
500                 rec_mon_table.show ();
501         }
502
503         if (_mixer_owned && route()->is_master() ) {
504
505                 HScrollbar scrollbar;
506                 Gtk::Requisition requisition(scrollbar.size_request ());
507                 int scrollbar_height = requisition.height;
508
509                 spacer = manage (new EventBox);
510                 spacer->set_size_request (-1, scrollbar_height+2);
511                 global_vpacker.pack_start (*spacer, false, false);
512                 spacer->show();
513         }
514
515         if (is_track()) {
516                 monitor_input_button->show ();
517                 monitor_disk_button->show ();
518         } else {
519                 monitor_input_button->hide();
520                 monitor_disk_button->hide ();
521         }
522
523         if (is_midi_track()) {
524                 if (midi_input_enable_button == 0) {
525                         midi_input_enable_button = manage (new ArdourButton);
526                         midi_input_enable_button->set_name ("midi input button");
527                         midi_input_enable_button->set_image (::get_icon (X_("midi_socket_small")));
528                         midi_input_enable_button->signal_button_press_event().connect (sigc::mem_fun (*this, &MixerStrip::input_active_button_press), false);
529                         midi_input_enable_button->signal_button_release_event().connect (sigc::mem_fun (*this, &MixerStrip::input_active_button_release), false);
530                         ARDOUR_UI::instance()->set_tip (midi_input_enable_button, _("Enable/Disable MIDI input"));
531                 } else {
532                         input_button_box.remove (*midi_input_enable_button);
533                 }
534                 /* get current state */
535                 midi_input_status_changed ();
536                 input_button_box.pack_start (*midi_input_enable_button, false, false);
537                 /* follow changes */
538                 midi_track()->InputActiveChanged.connect (route_connections, invalidator (*this), boost::bind (&MixerStrip::midi_input_status_changed, this), gui_context());
539         } else {
540                 if (midi_input_enable_button) {
541                         /* removal from the container will delete it */
542                         input_button_box.remove (*midi_input_enable_button);
543                         midi_input_enable_button = 0;
544                 }
545         }
546
547         if (is_audio_track()) {
548                 boost::shared_ptr<AudioTrack> at = audio_track();
549                 at->FreezeChange.connect (route_connections, invalidator (*this), boost::bind (&MixerStrip::map_frozen, this), gui_context());
550         }
551
552         if (is_track ()) {
553
554                 rec_mon_table.attach (*rec_enable_button, 0, 1, 0, ARDOUR::Profile->get_mixbus() ? 1 : 2);
555                 rec_enable_button->set_sensitive (_session->writable());
556                 rec_enable_button->show();
557
558                 if (ARDOUR::Profile->get_mixbus()) {
559                         rec_mon_table.attach (*monitor_input_button, 1, 2, 0, 1);
560                         rec_mon_table.attach (*monitor_disk_button, 2, 3, 0, 1);
561                 } else if (ARDOUR::Profile->get_trx()) {
562                         rec_mon_table.attach (*monitor_input_button, 1, 2, 0, 2);
563                 } else {
564                         rec_mon_table.attach (*monitor_input_button, 1, 2, 0, 1);
565                         rec_mon_table.attach (*monitor_disk_button, 1, 2, 1, 2);
566                 }
567
568         } else {
569
570                 /* non-master bus */
571
572                 if (!_route->is_master()) {
573                         rec_mon_table.attach (*show_sends_button, 0, 1, 0, 2);
574                         show_sends_button->show();
575                 }
576         }
577
578         meter_point_button.set_text (meter_point_string (_route->meter_point()));
579
580         delete route_ops_menu;
581         route_ops_menu = 0;
582
583         _route->meter_change.connect (route_connections, invalidator (*this), bind (&MixerStrip::meter_changed, this), gui_context());
584         _route->input()->changed.connect (*this, invalidator (*this), boost::bind (&MixerStrip::update_output_display, this), gui_context());
585         _route->output()->changed.connect (*this, invalidator (*this), boost::bind (&MixerStrip::update_output_display, this), gui_context());
586         _route->route_group_changed.connect (route_connections, invalidator (*this), boost::bind (&MixerStrip::route_group_changed, this), gui_context());
587
588         _route->io_changed.connect (route_connections, invalidator (*this), boost::bind (&MixerStrip::io_changed_proxy, this), gui_context ());
589
590         if (_route->panner_shell()) {
591                 update_panner_choices();
592                 _route->panner_shell()->Changed.connect (route_connections, invalidator (*this), boost::bind (&MixerStrip::connect_to_pan, this), gui_context());
593         }
594
595         if (is_audio_track()) {
596                 audio_track()->DiskstreamChanged.connect (route_connections, invalidator (*this), boost::bind (&MixerStrip::diskstream_changed, this), gui_context());
597         }
598
599         _route->comment_changed.connect (route_connections, invalidator (*this), boost::bind (&MixerStrip::setup_comment_button, this), gui_context());
600         _route->PropertyChanged.connect (route_connections, invalidator (*this), boost::bind (&MixerStrip::property_changed, this, _1), gui_context());
601
602         set_stuff_from_route ();
603
604         /* now force an update of all the various elements */
605
606         mute_changed (0);
607         update_solo_display ();
608         name_changed ();
609         comment_changed (0);
610         route_group_changed ();
611
612         connect_to_pan ();
613         panners.setup_pan ();
614
615         if (has_audio_outputs ()) {
616                 panners.show_all ();
617         } else {
618                 panners.hide_all ();
619         }
620
621         update_diskstream_display ();
622         update_input_display ();
623         update_output_display ();
624
625         add_events (Gdk::BUTTON_RELEASE_MASK);
626
627         processor_box.show ();
628
629         if (!route()->is_master() && !route()->is_monitor()) {
630                 /* we don't allow master or control routes to be hidden */
631                 hide_button.show();
632                 number_label.show();
633         }
634
635         gpm.reset_peak_display ();
636         gpm.gain_display.show ();
637         gpm.peak_display.show ();
638
639         width_button.show();
640         width_hide_box.show();
641         global_frame.show();
642         global_vpacker.show();
643         mute_solo_table.show();
644         bottom_button_table.show();
645         gpm.show_all ();
646         meter_point_button.show();
647         input_button_box.show_all();
648         output_button.show();
649         name_button.show();
650         _comment_button.show();
651         group_button.show();
652         gpm.gain_automation_state_button.show();
653
654         parameter_changed ("mixer-element-visibility");
655
656         show ();
657 }
658
659 void
660 MixerStrip::set_stuff_from_route ()
661 {
662         /* if width is not set, it will be set by the MixerUI or editor */
663
664         string str = gui_property ("strip-width");
665         if (!str.empty()) {
666                 set_width_enum (Width (string_2_enum (str, _width)), this);
667         }
668 }
669
670 void
671 MixerStrip::set_width_enum (Width w, void* owner)
672 {
673         /* always set the gpm width again, things may be hidden */
674
675         gpm.set_width (w);
676         panners.set_width (w);
677
678         boost::shared_ptr<AutomationList> gain_automation = _route->gain_control()->alist();
679
680         _width_owner = owner;
681
682         _width = w;
683
684         if (_width_owner == this) {
685                 set_gui_property ("strip-width", enum_2_string (_width));
686         }
687
688         set_button_names ();
689
690         switch (w) {
691         case Wide:
692
693                 if (show_sends_button)  {
694                         show_sends_button->set_text (_("Aux\nSends"));
695                         show_sends_button->layout()->set_alignment (Pango::ALIGN_CENTER);
696                 }
697
698                 gpm.gain_automation_style_button.set_text (
699                                 gpm.astyle_string(gain_automation->automation_style()));
700                 gpm.gain_automation_state_button.set_text (
701                                 gpm.astate_string(gain_automation->automation_state()));
702
703                 if (_route->panner()) {
704                         ((Gtk::Label*)panners.pan_automation_style_button.get_child())->set_text (
705                                         panners.astyle_string(_route->panner()->automation_style()));
706                         ((Gtk::Label*)panners.pan_automation_state_button.get_child())->set_text (
707                                         panners.astate_string(_route->panner()->automation_state()));
708                 }
709
710
711                 set_size_request (max (110, gpm.get_gm_width()+5), -1);
712                 break;
713
714         case Narrow:
715
716                 if (show_sends_button) {
717                         show_sends_button->set_text (_("Snd"));
718                 }
719
720                 gpm.gain_automation_style_button.set_text (
721                                 gpm.short_astyle_string(gain_automation->automation_style()));
722                 gpm.gain_automation_state_button.set_text (
723                                 gpm.short_astate_string(gain_automation->automation_state()));
724                 gain_meter().setup_meters (); // recalc meter width
725
726                 if (_route->panner()) {
727                         ((Gtk::Label*)panners.pan_automation_style_button.get_child())->set_text (
728                         panners.short_astyle_string(_route->panner()->automation_style()));
729                         ((Gtk::Label*)panners.pan_automation_state_button.get_child())->set_text (
730                         panners.short_astate_string(_route->panner()->automation_state()));
731                 }
732
733                 set_size_request (max (60, gpm.get_gm_width() + 10), -1);
734                 break;
735         }
736
737         processor_box.set_width (w);
738
739         update_input_display ();
740         update_output_display ();
741         setup_comment_button ();
742         route_group_changed ();
743         name_changed ();
744         WidthChanged ();
745 }
746
747 void
748 MixerStrip::set_packed (bool yn)
749 {
750         _packed = yn;
751
752         if (_packed) {
753                 set_gui_property ("visible", true);
754         } else {
755                 set_gui_property ("visible", false);
756         }
757 }
758
759
760 struct RouteCompareByName {
761         bool operator() (boost::shared_ptr<Route> a, boost::shared_ptr<Route> b) {
762                 return a->name().compare (b->name()) < 0;
763         }
764 };
765
766 gint
767 MixerStrip::output_release (GdkEventButton *ev)
768 {
769         switch (ev->button) {
770         case 1:
771                 edit_output_configuration ();
772                 break;
773         }
774         
775         return false;
776 }
777
778 gint
779 MixerStrip::output_press (GdkEventButton *ev)
780 {
781         using namespace Menu_Helpers;
782         if (!_session->engine().connected()) {
783                 MessageDialog msg (_("Not connected to audio engine - no I/O changes are possible"));
784                 msg.run ();
785                 return true;
786         }
787
788         MenuList& citems = output_menu.items();
789         switch (ev->button) {
790
791         case 1:
792                 return false;  //wait for the mouse-up to pop the dialog
793
794         case 3:
795         {
796                 output_menu.set_name ("ArdourContextMenu");
797                 citems.clear ();
798                 output_menu_bundles.clear ();
799
800                 citems.push_back (MenuElem (_("Disconnect"), sigc::mem_fun (*(static_cast<RouteUI*>(this)), &RouteUI::disconnect_output)));
801
802                 for (DataType::iterator i = DataType::begin(); i != DataType::end(); ++i) {
803                         citems.push_back (
804                                 MenuElem (
805                                         string_compose ("Add %1 port", (*i).to_i18n_string()),
806                                         sigc::bind (sigc::mem_fun (*this, &MixerStrip::add_output_port), *i)
807                                         )
808                                 );
809                 }
810                 
811                 citems.push_back (SeparatorElem());
812                 uint32_t const n_with_separator = citems.size ();
813
814                 ARDOUR::BundleList current = _route->output()->bundles_connected ();
815
816                 boost::shared_ptr<ARDOUR::BundleList> b = _session->bundles ();
817
818                 /* give user bundles first chance at being in the menu */
819
820                 for (ARDOUR::BundleList::iterator i = b->begin(); i != b->end(); ++i) {
821                         if (boost::dynamic_pointer_cast<UserBundle> (*i)) {
822                                 maybe_add_bundle_to_output_menu (*i, current);
823                         }
824                 }
825
826                 for (ARDOUR::BundleList::iterator i = b->begin(); i != b->end(); ++i) {
827                         if (boost::dynamic_pointer_cast<UserBundle> (*i) == 0) {
828                                 maybe_add_bundle_to_output_menu (*i, current);
829                         }
830                 }
831
832                 boost::shared_ptr<ARDOUR::RouteList> routes = _session->get_routes ();
833                 RouteList copy = *routes;
834                 copy.sort (RouteCompareByName ());
835                 for (ARDOUR::RouteList::const_iterator i = copy.begin(); i != copy.end(); ++i) {
836                         maybe_add_bundle_to_output_menu ((*i)->input()->bundle(), current);
837                 }
838
839                 if (citems.size() == n_with_separator) {
840                         /* no routes added; remove the separator */
841                         citems.pop_back ();
842                 }
843
844                 output_menu.popup (1, ev->time);
845                 break;
846         }
847
848         default:
849                 break;
850         }
851         return TRUE;
852 }
853
854 gint
855 MixerStrip::input_release (GdkEventButton *ev)
856 {
857         switch (ev->button) {
858
859         case 1:
860                 edit_input_configuration ();
861                 break;
862         default:
863                 break;
864
865         }
866
867         return false;
868 }
869
870
871 gint
872 MixerStrip::input_press (GdkEventButton *ev)
873 {
874         using namespace Menu_Helpers;
875
876         MenuList& citems = input_menu.items();
877         input_menu.set_name ("ArdourContextMenu");
878         citems.clear();
879
880         if (!_session->engine().connected()) {
881                 MessageDialog msg (_("Not connected to audio engine - no I/O changes are possible"));
882                 msg.run ();
883                 return true;
884         }
885
886         if (_session->actively_recording() && _route->record_enabled())
887                 return true;
888
889         switch (ev->button) {
890
891         case 1:
892                 return false;  //don't handle the mouse-down here.  wait for mouse-up to pop the menu
893
894         case 3:
895         {
896                 citems.push_back (MenuElem (_("Disconnect"), sigc::mem_fun (*(static_cast<RouteUI*>(this)), &RouteUI::disconnect_input)));
897
898                 for (DataType::iterator i = DataType::begin(); i != DataType::end(); ++i) {
899                         citems.push_back (
900                                 MenuElem (
901                                         string_compose ("Add %1 port", (*i).to_i18n_string()),
902                                         sigc::bind (sigc::mem_fun (*this, &MixerStrip::add_input_port), *i)
903                                         )
904                                 );
905                 }
906
907                 citems.push_back (SeparatorElem());
908                 uint32_t const n_with_separator = citems.size ();
909                 
910                 input_menu_bundles.clear ();
911
912                 ARDOUR::BundleList current = _route->input()->bundles_connected ();
913
914                 boost::shared_ptr<ARDOUR::BundleList> b = _session->bundles ();
915
916                 /* give user bundles first chance at being in the menu */
917
918                 for (ARDOUR::BundleList::iterator i = b->begin(); i != b->end(); ++i) {
919                         if (boost::dynamic_pointer_cast<UserBundle> (*i)) {
920                                 maybe_add_bundle_to_input_menu (*i, current);
921                         }
922                 }
923
924                 for (ARDOUR::BundleList::iterator i = b->begin(); i != b->end(); ++i) {
925                         if (boost::dynamic_pointer_cast<UserBundle> (*i) == 0) {
926                                 maybe_add_bundle_to_input_menu (*i, current);
927                         }
928                 }
929
930                 boost::shared_ptr<ARDOUR::RouteList> routes = _session->get_routes ();
931                 RouteList copy = *routes;
932                 copy.sort (RouteCompareByName ());
933                 for (ARDOUR::RouteList::const_iterator i = copy.begin(); i != copy.end(); ++i) {
934                         maybe_add_bundle_to_input_menu ((*i)->output()->bundle(), current);
935                 }
936
937                 if (citems.size() == n_with_separator) {
938                         /* no routes added; remove the separator */
939                         citems.pop_back ();
940                 }
941
942                 input_menu.popup (1, ev->time);
943                 break;
944         }
945         default:
946                 break;
947         }
948         return TRUE;
949 }
950
951 void
952 MixerStrip::bundle_input_chosen (boost::shared_ptr<ARDOUR::Bundle> c)
953 {
954         if (ignore_toggle) {
955                 return;
956         }
957
958         ARDOUR::BundleList current = _route->input()->bundles_connected ();
959
960         if (std::find (current.begin(), current.end(), c) == current.end()) {
961                 _route->input()->connect_ports_to_bundle (c, true, this);
962         } else {
963                 _route->input()->disconnect_ports_from_bundle (c, this);
964         }
965 }
966
967 void
968 MixerStrip::bundle_output_chosen (boost::shared_ptr<ARDOUR::Bundle> c)
969 {
970         if (ignore_toggle) {
971                 return;
972         }
973
974         ARDOUR::BundleList current = _route->output()->bundles_connected ();
975
976         if (std::find (current.begin(), current.end(), c) == current.end()) {
977                 _route->output()->connect_ports_to_bundle (c, true, this);
978         } else {
979                 _route->output()->disconnect_ports_from_bundle (c, this);
980         }
981 }
982
983 void
984 MixerStrip::maybe_add_bundle_to_input_menu (boost::shared_ptr<Bundle> b, ARDOUR::BundleList const& /*current*/)
985 {
986         using namespace Menu_Helpers;
987
988         if (b->ports_are_outputs() == false || b->nchannels() != _route->n_inputs() || *b == *_route->output()->bundle()) {
989                 return;
990         }
991
992         list<boost::shared_ptr<Bundle> >::iterator i = input_menu_bundles.begin ();
993         while (i != input_menu_bundles.end() && b->has_same_ports (*i) == false) {
994                 ++i;
995         }
996
997         if (i != input_menu_bundles.end()) {
998                 return;
999         }
1000
1001         input_menu_bundles.push_back (b);
1002
1003         MenuList& citems = input_menu.items();
1004
1005         std::string n = b->name ();
1006         replace_all (n, "_", " ");
1007
1008         citems.push_back (MenuElem (n, sigc::bind (sigc::mem_fun(*this, &MixerStrip::bundle_input_chosen), b)));
1009 }
1010
1011 void
1012 MixerStrip::maybe_add_bundle_to_output_menu (boost::shared_ptr<Bundle> b, ARDOUR::BundleList const& /*current*/)
1013 {
1014         using namespace Menu_Helpers;
1015
1016         if (b->ports_are_inputs() == false || b->nchannels() != _route->n_outputs() || *b == *_route->input()->bundle()) {
1017                 return;
1018         }
1019
1020         list<boost::shared_ptr<Bundle> >::iterator i = output_menu_bundles.begin ();
1021         while (i != output_menu_bundles.end() && b->has_same_ports (*i) == false) {
1022                 ++i;
1023         }
1024
1025         if (i != output_menu_bundles.end()) {
1026                 return;
1027         }
1028
1029         output_menu_bundles.push_back (b);
1030
1031         MenuList& citems = output_menu.items();
1032
1033         std::string n = b->name ();
1034         replace_all (n, "_", " ");
1035
1036         citems.push_back (MenuElem (n, sigc::bind (sigc::mem_fun(*this, &MixerStrip::bundle_output_chosen), b)));
1037 }
1038
1039 void
1040 MixerStrip::update_diskstream_display ()
1041 {
1042         if (is_track() && input_selector) {
1043                         input_selector->hide_all ();
1044         }
1045
1046         route_color_changed ();
1047 }
1048
1049 void
1050 MixerStrip::connect_to_pan ()
1051 {
1052         ENSURE_GUI_THREAD (*this, &MixerStrip::connect_to_pan)
1053
1054         panstate_connection.disconnect ();
1055         panstyle_connection.disconnect ();
1056
1057         if (!_route->panner()) {
1058                 return;
1059         }
1060
1061         boost::shared_ptr<Pannable> p = _route->pannable ();
1062
1063         p->automation_state_changed.connect (panstate_connection, invalidator (*this), boost::bind (&PannerUI::pan_automation_state_changed, &panners), gui_context());
1064         p->automation_style_changed.connect (panstyle_connection, invalidator (*this), boost::bind (&PannerUI::pan_automation_style_changed, &panners), gui_context());
1065
1066         /* This call reduncant, PannerUI::set_panner() connects to _panshell->Changed itself
1067          * However, that only works a panner was previously set.
1068          *
1069          * PannerUI must remain subscribed to _panshell->Changed() in case
1070          * we switch the panner eg. AUX-Send and back
1071          * _route->panner_shell()->Changed() vs _panshell->Changed
1072          */
1073         if (panners._panner == 0) {
1074                 panners.panshell_changed ();
1075         }
1076         update_panner_choices();
1077 }
1078
1079 void
1080 MixerStrip::update_panner_choices ()
1081 {
1082         ENSURE_GUI_THREAD (*this, &MixerStrip::update_panner_choices)
1083         if (!_route->panner_shell()) { return; }
1084
1085         uint32_t in = _route->output()->n_ports().n_audio();
1086         uint32_t out = in;
1087         if (_route->panner()) {
1088                 in = _route->panner()->in().n_audio();
1089         }
1090
1091         panners.set_available_panners(PannerManager::instance().PannerManager::get_available_panners(in, out));
1092 }
1093
1094 /*
1095  * Output port labelling
1096  * =====================
1097  *
1098  * Case 1: Each output has one connection, all connections are to system:playback_%i
1099  *   out 1 -> system:playback_1
1100  *   out 2 -> system:playback_2
1101  *   out 3 -> system:playback_3
1102  *   Display as: 1/2/3
1103  *
1104  * Case 2: Each output has one connection, all connections are to ardour:track_x/in 1
1105  *   out 1 -> ardour:track_x/in 1
1106  *   out 2 -> ardour:track_x/in 2
1107  *   Display as: track_x
1108  *
1109  * Case 3: Each output has one connection, all connections are to Jack client "program x"
1110  *   out 1 -> program x:foo
1111  *   out 2 -> program x:foo
1112  *   Display as: program x
1113  *
1114  * Case 4: No connections (Disconnected)
1115  *   Display as: -
1116  *
1117  * Default case (unusual routing):
1118  *   Display as: *number of connections*
1119  *
1120  * Tooltips
1121  * ========
1122  * .-----------------------------------------------.
1123  * | Mixdown                                       |
1124  * | out 1 -> ardour:master/in 1, jamin:input/in 1 |
1125  * | out 2 -> ardour:master/in 2, jamin:input/in 2 |
1126  * '-----------------------------------------------'
1127  * .-----------------------------------------------.
1128  * | Guitar SM58                                   |
1129  * | Disconnected                                  |
1130  * '-----------------------------------------------'
1131  */
1132
1133 void
1134 MixerStrip::update_io_button (boost::shared_ptr<ARDOUR::Route> route, Width width, bool for_input)
1135 {
1136         uint32_t io_count;
1137         uint32_t io_index;
1138         boost::shared_ptr<Port> port;
1139         vector<string> port_connections;
1140
1141         uint32_t total_connection_count = 0;
1142         uint32_t io_connection_count = 0;
1143         uint32_t ardour_connection_count = 0;
1144         uint32_t system_connection_count = 0;
1145         uint32_t other_connection_count = 0;
1146
1147         ostringstream label;
1148         string label_string;
1149
1150         bool have_label = false;
1151         bool each_io_has_one_connection = true;
1152
1153         string connection_name;
1154         string ardour_track_name;
1155         string other_connection_type;
1156         string system_ports;
1157         string system_port;
1158
1159         ostringstream tooltip;
1160         char * tooltip_cstr;
1161
1162         if (for_input) {
1163                 io_count = route->n_inputs().n_total();
1164                 tooltip << string_compose (_("<b>INPUT</b> to %1"), Glib::Markup::escape_text(route->name()));
1165         } else {
1166                 io_count = route->n_outputs().n_total();
1167                 tooltip << string_compose (_("<b>OUTPUT</b> from %1"), Glib::Markup::escape_text(route->name()));
1168         }
1169
1170
1171         for (io_index = 0; io_index < io_count; ++io_index) {
1172                 if (for_input) {
1173                         port = route->input()->nth (io_index);
1174                 } else {
1175                         port = route->output()->nth (io_index);
1176                 }
1177
1178                 port_connections.clear ();
1179                 port->get_connections(port_connections);
1180                 io_connection_count = 0;
1181
1182                 if (!port_connections.empty()) {
1183                         for (vector<string>::iterator i = port_connections.begin(); i != port_connections.end(); ++i) {
1184                                 string& connection_name (*i);
1185
1186                                 if (io_connection_count == 0) {
1187                                         tooltip << endl << Glib::Markup::escape_text(port->name().substr(port->name().find("/") + 1)) << " -> " << Glib::Markup::escape_text(connection_name);
1188                                 } else {
1189                                         tooltip << ", " << Glib::Markup::escape_text(connection_name);
1190                                 }
1191
1192                                 if (connection_name.find("ardour:") == 0) {
1193                                         if (ardour_track_name.empty()) {
1194                                                 // "ardour:Master/in 1" -> "ardour:Master/"
1195                                                 string::size_type slash = connection_name.find("/");
1196                                                 if (slash != string::npos) {
1197                                                         ardour_track_name = connection_name.substr(0, slash + 1);
1198                                                 }
1199                                         }
1200
1201                                         if (connection_name.find(ardour_track_name) == 0) {
1202                                                 ++ardour_connection_count;
1203                                         }
1204                                 } else if (connection_name.find("system:") == 0) {
1205                                         if (for_input) {
1206                                                 // "system:capture_123" -> "123"
1207                                                 system_port = connection_name.substr(15);
1208                                         } else {
1209                                                 // "system:playback_123" -> "123"
1210                                                 system_port = connection_name.substr(16);
1211                                         }
1212
1213                                         if (system_ports.empty()) {
1214                                                 system_ports += system_port;
1215                                         } else {
1216                                                 system_ports += "/" + system_port;
1217                                         }
1218
1219                                         ++system_connection_count;
1220                                 } else {
1221                                         if (other_connection_type.empty()) {
1222                                                 // "jamin:in 1" -> "jamin:"
1223                                                 other_connection_type = connection_name.substr(0, connection_name.find(":") + 1);
1224                                         }
1225
1226                                         if (connection_name.find(other_connection_type) == 0) {
1227                                                 ++other_connection_count;
1228                                         }
1229                                 }
1230
1231                                 ++total_connection_count;
1232                                 ++io_connection_count;
1233                         }
1234                 }
1235
1236                 if (io_connection_count != 1) {
1237                         each_io_has_one_connection = false;
1238                 }
1239         }
1240
1241         if (total_connection_count == 0) {
1242                 tooltip << endl << _("Disconnected");
1243         }
1244
1245         tooltip_cstr = new char[tooltip.str().size() + 1];
1246         strcpy(tooltip_cstr, tooltip.str().c_str());
1247
1248         if (for_input) {
1249                 ARDOUR_UI::instance()->set_tip (&input_button, tooltip_cstr, "");
1250         } else {
1251                 ARDOUR_UI::instance()->set_tip (&output_button, tooltip_cstr, "");
1252         }
1253
1254         if (each_io_has_one_connection) {
1255                 if (total_connection_count == ardour_connection_count) {
1256                         // all connections are to the same track in ardour
1257                         // "ardour:Master/" -> "Master"
1258                         string::size_type slash = ardour_track_name.find("/");
1259                         if (slash != string::npos) {
1260                                 label << ardour_track_name.substr(7, slash - 7);
1261                                 have_label = true;
1262                         }
1263                 }
1264                 else if (total_connection_count == system_connection_count) {
1265                         // all connections are to system ports
1266                         label << system_ports;
1267                         have_label = true;
1268                 }
1269                 else if (total_connection_count == other_connection_count) {
1270                         // all connections are to the same external program eg jamin
1271                         // "jamin:" -> "jamin"
1272                         label << other_connection_type.substr(0, other_connection_type.size() - 1);
1273                         have_label = true;
1274                 }
1275         }
1276
1277         if (!have_label) {
1278                 if (total_connection_count == 0) {
1279                         // Disconnected
1280                         label << "-";
1281                 } else {
1282                         // Odd configuration
1283                         label << "*" << total_connection_count << "*";
1284                 }
1285         }
1286
1287         switch (width) {
1288         case Wide:
1289                 label_string = label.str().substr(0, 7);
1290                 break;
1291         case Narrow:
1292                 label_string = label.str().substr(0, 3);
1293                 break;
1294         }
1295
1296         if (for_input) {
1297                 input_button.set_text (label_string);
1298         } else {
1299                 output_button.set_text (label_string);
1300         }
1301 }
1302
1303 void
1304 MixerStrip::update_input_display ()
1305 {
1306         update_io_button (_route, _width, true);
1307         panners.setup_pan ();
1308
1309         if (has_audio_outputs ()) {
1310                 panners.show_all ();
1311         } else {
1312                 panners.hide_all ();
1313         }
1314
1315 }
1316
1317 void
1318 MixerStrip::update_output_display ()
1319 {
1320         update_io_button (_route, _width, false);
1321         gpm.setup_meters ();
1322         panners.setup_pan ();
1323
1324         if (has_audio_outputs ()) {
1325                 panners.show_all ();
1326         } else {
1327                 panners.hide_all ();
1328         }
1329 }
1330
1331 void
1332 MixerStrip::fast_update ()
1333 {
1334         gpm.update_meters ();
1335 }
1336
1337 void
1338 MixerStrip::diskstream_changed ()
1339 {
1340         Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&MixerStrip::update_diskstream_display, this));
1341 }
1342
1343 void
1344 MixerStrip::io_changed_proxy ()
1345 {
1346         Glib::signal_idle().connect_once (sigc::mem_fun (*this, &MixerStrip::update_panner_choices));
1347 }
1348
1349 void
1350 MixerStrip::port_connected_or_disconnected (boost::weak_ptr<Port> wa, boost::weak_ptr<Port> wb)
1351 {
1352         boost::shared_ptr<Port> a = wa.lock ();
1353         boost::shared_ptr<Port> b = wb.lock ();
1354
1355         if ((a && _route->input()->has_port (a)) || (b && _route->input()->has_port (b))) {
1356                 update_input_display ();
1357                 set_width_enum (_width, this);
1358         }
1359
1360         if ((a && _route->output()->has_port (a)) || (b && _route->output()->has_port (b))) {
1361                 update_output_display ();
1362                 set_width_enum (_width, this);
1363         }
1364 }
1365
1366 void
1367 MixerStrip::setup_comment_button ()
1368 {
1369         switch (_width) {
1370
1371         case Wide:
1372                 if (_route->comment().empty ()) {
1373                         _comment_button.unset_bg (STATE_NORMAL);
1374                         _comment_button.set_text (_("Comments"));
1375                 } else {
1376                         _comment_button.modify_bg (STATE_NORMAL, color ());
1377                         _comment_button.set_text (_("*Comments*"));
1378                 }
1379                 break;
1380
1381         case Narrow:
1382                 if (_route->comment().empty ()) {
1383                         _comment_button.unset_bg (STATE_NORMAL);
1384                         _comment_button.set_text (_("Cmt"));
1385                 } else {
1386                         _comment_button.modify_bg (STATE_NORMAL, color ());
1387                         _comment_button.set_text (_("*Cmt*"));
1388                 }
1389                 break;
1390         }
1391
1392         ARDOUR_UI::instance()->set_tip (
1393                 _comment_button, _route->comment().empty() ? _("Click to Add/Edit Comments") : _route->comment()
1394                 );
1395
1396 }
1397
1398 bool
1399 MixerStrip::select_route_group (GdkEventButton *ev)
1400 {
1401         using namespace Menu_Helpers;
1402
1403         if (ev->button == 1) {
1404
1405                 if (group_menu == 0) {
1406
1407                         PropertyList* plist = new PropertyList();
1408
1409                         plist->add (Properties::gain, true);
1410                         plist->add (Properties::mute, true);
1411                         plist->add (Properties::solo, true);
1412
1413                         group_menu = new RouteGroupMenu (_session, plist);
1414                 }
1415
1416                 WeakRouteList r;
1417                 r.push_back (route ());
1418                 group_menu->build (r);
1419                 group_menu->menu()->popup (1, ev->time);
1420         }
1421
1422         return true;
1423 }
1424
1425 void
1426 MixerStrip::route_group_changed ()
1427 {
1428         ENSURE_GUI_THREAD (*this, &MixerStrip::route_group_changed)
1429
1430         RouteGroup *rg = _route->route_group();
1431
1432         if (rg) {
1433                 group_button.set_text (PBD::short_version (rg->name(), 5));
1434         } else {
1435                 switch (_width) {
1436                 case Wide:
1437                         group_button.set_text (_("Grp"));
1438                         break;
1439                 case Narrow:
1440                         group_button.set_text (_("~G"));
1441                         break;
1442                 }
1443         }
1444 }
1445
1446 void
1447 MixerStrip::route_color_changed ()
1448 {
1449         name_button.modify_bg (STATE_NORMAL, color());
1450         number_label.set_fixed_colors (gdk_color_to_rgba (color()), gdk_color_to_rgba (color()));
1451         reset_strip_style ();
1452 }
1453
1454 void
1455 MixerStrip::show_passthru_color ()
1456 {
1457         reset_strip_style ();
1458 }
1459
1460 void
1461 MixerStrip::build_route_ops_menu ()
1462 {
1463         using namespace Menu_Helpers;
1464         route_ops_menu = new Menu;
1465         route_ops_menu->set_name ("ArdourContextMenu");
1466
1467         MenuList& items = route_ops_menu->items();
1468
1469         items.push_back (MenuElem (_("Color..."), sigc::mem_fun (*this, &RouteUI::choose_color)));
1470
1471         items.push_back (MenuElem (_("Comments..."), sigc::mem_fun (*this, &RouteUI::open_comment_editor)));
1472
1473         items.push_back (MenuElem (_("Inputs..."), sigc::mem_fun (*this, &RouteUI::edit_input_configuration)));
1474
1475         items.push_back (MenuElem (_("Outputs..."), sigc::mem_fun (*this, &RouteUI::edit_output_configuration)));
1476
1477         items.push_back (SeparatorElem());
1478
1479         if (!_route->is_master()) {
1480                 items.push_back (MenuElem (_("Save As Template..."), sigc::mem_fun(*this, &RouteUI::save_as_template)));
1481         }
1482         items.push_back (MenuElem (_("Rename..."), sigc::mem_fun(*this, &RouteUI::route_rename)));
1483         rename_menu_item = &items.back();
1484
1485         items.push_back (SeparatorElem());
1486         items.push_back (CheckMenuElem (_("Active")));
1487         Gtk::CheckMenuItem* i = dynamic_cast<Gtk::CheckMenuItem *> (&items.back());
1488         i->set_active (_route->active());
1489         i->set_sensitive(! _session->transport_rolling());
1490         i->signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &RouteUI::set_route_active), !_route->active(), false));
1491
1492         items.push_back (SeparatorElem());
1493
1494         items.push_back (MenuElem (_("Adjust Latency..."), sigc::mem_fun (*this, &RouteUI::adjust_latency)));
1495
1496         items.push_back (SeparatorElem());
1497         items.push_back (CheckMenuElem (_("Protect Against Denormals"), sigc::mem_fun (*this, &RouteUI::toggle_denormal_protection)));
1498         denormal_menu_item = dynamic_cast<Gtk::CheckMenuItem *> (&items.back());
1499         denormal_menu_item->set_active (_route->denormal_protection());
1500
1501         if (!Profile->get_sae()) {
1502                 items.push_back (SeparatorElem());
1503                 items.push_back (MenuElem (_("Remote Control ID..."), sigc::mem_fun (*this, &RouteUI::open_remote_control_id_dialog)));
1504         }
1505
1506         items.push_back (SeparatorElem());
1507         items.push_back (MenuElem (_("Remove"), sigc::bind (sigc::mem_fun(*this, &RouteUI::remove_this_route), false)));
1508 }
1509
1510 gboolean
1511 MixerStrip::name_button_button_press (GdkEventButton* ev)
1512 {
1513         if (ev->button == 3) {
1514                 list_route_operations ();
1515
1516                 /* do not allow rename if the track is record-enabled */
1517                 rename_menu_item->set_sensitive (!_route->record_enabled());
1518                 route_ops_menu->popup (1, ev->time);
1519
1520                 return true;
1521         }
1522
1523         return false;
1524 }
1525
1526 gboolean
1527 MixerStrip::name_button_button_release (GdkEventButton* ev)
1528 {
1529         if (ev->button == 1) {
1530                 list_route_operations ();
1531
1532                 /* do not allow rename if the track is record-enabled */
1533                 rename_menu_item->set_sensitive (!_route->record_enabled());
1534                 route_ops_menu->popup (1, ev->time);
1535         }
1536
1537         return false;
1538 }
1539
1540 gboolean
1541 MixerStrip::number_button_button_press (GdkEventButton* ev)
1542 {
1543         if (  ev->button == 3 ) {
1544                 list_route_operations ();
1545
1546                 /* do not allow rename if the track is record-enabled */
1547                 rename_menu_item->set_sensitive (!_route->record_enabled());
1548                 route_ops_menu->popup (1, ev->time);
1549                 
1550                 return true;
1551         }
1552
1553         return false;
1554 }
1555
1556 void
1557 MixerStrip::list_route_operations ()
1558 {
1559         delete route_ops_menu;
1560         build_route_ops_menu ();
1561 }
1562
1563 void
1564 MixerStrip::set_selected (bool yn)
1565 {
1566         AxisView::set_selected (yn);
1567         if (_selected) {
1568                 global_frame.set_shadow_type (Gtk::SHADOW_ETCHED_OUT);
1569                 global_frame.set_name ("MixerStripSelectedFrame");
1570         } else {
1571                 global_frame.set_shadow_type (Gtk::SHADOW_IN);
1572                 global_frame.set_name ("MixerStripFrame");
1573         }
1574         global_frame.queue_draw ();
1575         
1576 //      if (!yn)
1577 //              processor_box.deselect_all_processors();
1578 }
1579
1580 void
1581 MixerStrip::property_changed (const PropertyChange& what_changed)
1582 {
1583         RouteUI::property_changed (what_changed);
1584
1585         if (what_changed.contains (ARDOUR::Properties::name)) {
1586                 name_changed ();
1587         }
1588 }
1589
1590 void
1591 MixerStrip::name_changed ()
1592 {
1593         switch (_width) {
1594         case Wide:
1595                 if (_session->config.get_track_name_number()) {
1596                         const int64_t track_number = _route->track_number ();
1597                         if (track_number == 0) {
1598                                 number_label.set_text ("-");
1599                         } else {
1600                                 number_label.set_text (PBD::to_string (abs(_route->track_number ()), std::dec));
1601                         }
1602                 } else {
1603                         number_label.set_text ("");
1604                 }
1605                 name_button.set_text (_route->name());
1606                 break;
1607         case Narrow:
1608                 if (_session->config.get_track_name_number()) {
1609                         name_button.set_markup(track_number_to_string (_route->track_number (), " ",
1610                                                 PBD::short_version (_route->name (), 5)));
1611                 } else {
1612                         name_button.set_text (PBD::short_version (_route->name(), 5));
1613                 }
1614                 break;
1615         }
1616
1617         ARDOUR_UI::instance()->set_tip (name_button, _route->name());
1618 }
1619
1620 void
1621 MixerStrip::name_button_resized (Gtk::Allocation& alloc)
1622 {
1623         name_button.layout()->set_width (alloc.get_width() * PANGO_SCALE);
1624 }
1625
1626 bool
1627 MixerStrip::width_button_pressed (GdkEventButton* ev)
1628 {
1629         if (ev->button != 1) {
1630                 return false;
1631         }
1632         
1633         if (Keyboard::modifier_state_contains (ev->state, Keyboard::ModifierMask (Keyboard::PrimaryModifier | Keyboard::TertiaryModifier)) && _mixer_owned) {
1634                 switch (_width) {
1635                 case Wide:
1636                         _mixer.set_strip_width (Narrow, true);
1637                         break;
1638
1639                 case Narrow:
1640                         _mixer.set_strip_width (Wide, true);
1641                         break;
1642                 }
1643         } else {
1644                 switch (_width) {
1645                 case Wide:
1646                         set_width_enum (Narrow, this);
1647                         break;
1648                 case Narrow:
1649                         set_width_enum (Wide, this);
1650                         break;
1651                 }
1652         }
1653
1654         return true;
1655 }
1656
1657 void
1658 MixerStrip::hide_clicked ()
1659 {
1660         // LAME fix to reset the button status for when it is redisplayed (part 1)
1661         hide_button.set_sensitive(false);
1662
1663         if (_embedded) {
1664                 Hiding(); /* EMIT_SIGNAL */
1665         } else {
1666                 _mixer.hide_strip (this);
1667         }
1668
1669         // (part 2)
1670         hide_button.set_sensitive(true);
1671 }
1672
1673 void
1674 MixerStrip::set_embedded (bool yn)
1675 {
1676         _embedded = yn;
1677 }
1678
1679 void
1680 MixerStrip::map_frozen ()
1681 {
1682         ENSURE_GUI_THREAD (*this, &MixerStrip::map_frozen)
1683
1684         boost::shared_ptr<AudioTrack> at = audio_track();
1685
1686         if (at) {
1687                 switch (at->freeze_state()) {
1688                 case AudioTrack::Frozen:
1689                         processor_box.set_sensitive (false);
1690                         hide_redirect_editors ();
1691                         break;
1692                 default:
1693                         processor_box.set_sensitive (true);
1694                         // XXX need some way, maybe, to retoggle redirect editors
1695                         break;
1696                 }
1697         }
1698 }
1699
1700 void
1701 MixerStrip::hide_redirect_editors ()
1702 {
1703         _route->foreach_processor (sigc::mem_fun (*this, &MixerStrip::hide_processor_editor));
1704 }
1705
1706 void
1707 MixerStrip::hide_processor_editor (boost::weak_ptr<Processor> p)
1708 {
1709         boost::shared_ptr<Processor> processor (p.lock ());
1710         if (!processor) {
1711                 return;
1712         }
1713
1714         Gtk::Window* w = processor_box.get_processor_ui (processor);
1715
1716         if (w) {
1717                 w->hide ();
1718         }
1719 }
1720
1721 void
1722 MixerStrip::reset_strip_style ()
1723 {
1724         if (_current_delivery && boost::dynamic_pointer_cast<Send>(_current_delivery)) {
1725
1726                 gpm.set_fader_name ("SendStripBase");
1727
1728         } else {
1729
1730                 if (is_midi_track()) {
1731                         if (_route->active()) {
1732                                 set_name ("MidiTrackStripBase");
1733                         } else {
1734                                 set_name ("MidiTrackStripBaseInactive");
1735                         }
1736                         gpm.set_fader_name ("MidiTrackFader");
1737                 } else if (is_audio_track()) {
1738                         if (_route->active()) {
1739                                 set_name ("AudioTrackStripBase");
1740                         } else {
1741                                 set_name ("AudioTrackStripBaseInactive");
1742                         }
1743                         gpm.set_fader_name ("AudioTrackFader");
1744                 } else {
1745                         if (_route->active()) {
1746                                 set_name ("AudioBusStripBase");
1747                         } else {
1748                                 set_name ("AudioBusStripBaseInactive");
1749                         }
1750                         gpm.set_fader_name ("AudioBusFader");
1751
1752                         /* (no MIDI busses yet) */
1753                 }
1754         }
1755 }
1756
1757
1758 void
1759 MixerStrip::engine_stopped ()
1760 {
1761 }
1762
1763 void
1764 MixerStrip::engine_running ()
1765 {
1766 }
1767
1768 string
1769 MixerStrip::meter_point_string (MeterPoint mp)
1770 {
1771         switch (_width) {
1772         case Wide:
1773                 switch (mp) {
1774                 case MeterInput:
1775                         return _("In");
1776                         break;
1777                         
1778                 case MeterPreFader:
1779                         return _("Pre");
1780                         break;
1781                         
1782                 case MeterPostFader:
1783                         return _("Post");
1784                         break;
1785                         
1786                 case MeterOutput:
1787                         return _("Out");
1788                         break;
1789                         
1790                 case MeterCustom:
1791                 default:
1792                         return _("Custom");
1793                         break;
1794                 }
1795                 break;
1796         case Narrow:
1797                 switch (mp) {
1798                 case MeterInput:
1799                         return _("In");
1800                         break;
1801                         
1802                 case MeterPreFader:
1803                         return _("Pr");
1804                         break;
1805                         
1806                 case MeterPostFader:
1807                         return _("Po");
1808                         break;
1809                         
1810                 case MeterOutput:
1811                         return _("O");
1812                         break;
1813                         
1814                 case MeterCustom:
1815                 default:
1816                         return _("C");
1817                         break;
1818                 }
1819                 break;
1820         }
1821
1822         return string();
1823 }
1824
1825 /** Called when the metering point has changed */
1826 void
1827 MixerStrip::meter_changed ()
1828 {
1829         meter_point_button.set_text (meter_point_string (_route->meter_point()));
1830         gpm.setup_meters ();
1831         // reset peak when meter point changes
1832         gpm.reset_peak_display();
1833 }
1834
1835 /** The bus that we are displaying sends to has changed, or been turned off.
1836  *  @param send_to New bus that we are displaying sends to, or 0.
1837  */
1838 void
1839 MixerStrip::bus_send_display_changed (boost::shared_ptr<Route> send_to)
1840 {
1841         RouteUI::bus_send_display_changed (send_to);
1842
1843         if (send_to) {
1844                 boost::shared_ptr<Send> send = _route->internal_send_for (send_to);
1845
1846                 if (send) {
1847                         show_send (send);
1848                 } else {
1849                         revert_to_default_display ();
1850                 }
1851         } else {
1852                 revert_to_default_display ();
1853         }
1854 }
1855
1856 void
1857 MixerStrip::drop_send ()
1858 {
1859         boost::shared_ptr<Send> current_send;
1860
1861         if (_current_delivery && ((current_send = boost::dynamic_pointer_cast<Send>(_current_delivery)) != 0)) {
1862                 current_send->set_metering (false);
1863         }
1864
1865         send_gone_connection.disconnect ();
1866         input_button.set_sensitive (true);
1867         output_button.set_sensitive (true);
1868         group_button.set_sensitive (true);
1869         set_invert_sensitive (true);
1870         meter_point_button.set_sensitive (true);
1871         mute_button->set_sensitive (true);
1872         solo_button->set_sensitive (true);
1873         rec_enable_button->set_sensitive (true);
1874         solo_isolated_led->set_sensitive (true);
1875         solo_safe_led->set_sensitive (true);
1876         monitor_input_button->set_sensitive (true);
1877         monitor_disk_button->set_sensitive (true);
1878         _comment_button.set_sensitive (true);
1879 }
1880
1881 void
1882 MixerStrip::set_current_delivery (boost::shared_ptr<Delivery> d)
1883 {
1884         _current_delivery = d;
1885         DeliveryChanged (_current_delivery);
1886 }
1887
1888 void
1889 MixerStrip::show_send (boost::shared_ptr<Send> send)
1890 {
1891         assert (send != 0);
1892
1893         drop_send ();
1894
1895         set_current_delivery (send);
1896
1897         send->meter()->set_type(_route->shared_peak_meter()->get_type());
1898         send->set_metering (true);
1899         _current_delivery->DropReferences.connect (send_gone_connection, invalidator (*this), boost::bind (&MixerStrip::revert_to_default_display, this), gui_context());
1900
1901         gain_meter().set_controls (_route, send->meter(), send->amp());
1902         gain_meter().setup_meters ();
1903
1904         uint32_t const in = _current_delivery->pans_required();
1905         uint32_t const out = _current_delivery->pan_outs();
1906
1907         panner_ui().set_panner (_current_delivery->panner_shell(), _current_delivery->panner());
1908         panner_ui().set_available_panners(PannerManager::instance().PannerManager::get_available_panners(in, out));
1909         panner_ui().setup_pan ();
1910         panner_ui().set_send_drawing_mode (true);
1911         panner_ui().show_all ();
1912
1913         input_button.set_sensitive (false);
1914         group_button.set_sensitive (false);
1915         set_invert_sensitive (false);
1916         meter_point_button.set_sensitive (false);
1917         mute_button->set_sensitive (false);
1918         solo_button->set_sensitive (false);
1919         rec_enable_button->set_sensitive (false);
1920         solo_isolated_led->set_sensitive (false);
1921         solo_safe_led->set_sensitive (false);
1922         monitor_input_button->set_sensitive (false);
1923         monitor_disk_button->set_sensitive (false);
1924         _comment_button.set_sensitive (false);
1925
1926         if (boost::dynamic_pointer_cast<InternalSend>(send)) {
1927                 output_button.set_sensitive (false);
1928         }
1929
1930         reset_strip_style ();
1931 }
1932
1933 void
1934 MixerStrip::revert_to_default_display ()
1935 {
1936         drop_send ();
1937
1938         set_current_delivery (_route->main_outs ());
1939
1940         gain_meter().set_controls (_route, _route->shared_peak_meter(), _route->amp());
1941         gain_meter().setup_meters ();
1942
1943         panner_ui().set_panner (_route->main_outs()->panner_shell(), _route->main_outs()->panner());
1944         update_panner_choices();
1945         panner_ui().setup_pan ();
1946         panner_ui().set_send_drawing_mode (false);
1947
1948         if (has_audio_outputs ()) {
1949                 panners.show_all ();
1950         } else {
1951                 panners.hide_all ();
1952         }
1953
1954         reset_strip_style ();
1955 }
1956
1957 void
1958 MixerStrip::set_button_names ()
1959 {
1960         switch (_width) {
1961         case Wide:
1962                 mute_button->set_text (_("Mute"));
1963                 monitor_input_button->set_text (_("In"));
1964                 monitor_disk_button->set_text (_("Disk"));
1965
1966                 if (_route && _route->solo_safe()) {
1967                         solo_button->set_visual_state (Gtkmm2ext::VisualState (solo_button->visual_state() | Gtkmm2ext::Insensitive));
1968                 } else {
1969                         solo_button->set_visual_state (Gtkmm2ext::VisualState (solo_button->visual_state() & ~Gtkmm2ext::Insensitive));
1970                 }
1971                 if (!Config->get_solo_control_is_listen_control()) {
1972                         solo_button->set_text (_("Solo"));
1973                 } else {
1974                         switch (Config->get_listen_position()) {
1975                         case AfterFaderListen:
1976                                 solo_button->set_text (_("AFL"));
1977                                 break;
1978                         case PreFaderListen:
1979                                 solo_button->set_text (_("PFL"));
1980                                 break;
1981                         }
1982                 }
1983                 solo_isolated_led->set_text (_("Iso"));
1984                 solo_safe_led->set_text (_("Lock"));
1985                 break;
1986
1987         default:
1988                 mute_button->set_text (_("M"));
1989                 monitor_input_button->set_text (_("I"));
1990                 monitor_disk_button->set_text (_("D"));
1991
1992                 if (_route && _route->solo_safe()) {
1993                         solo_button->set_visual_state (Gtkmm2ext::VisualState (solo_button->visual_state() | Gtkmm2ext::Insensitive));
1994                 } else {
1995                         solo_button->set_visual_state (Gtkmm2ext::VisualState (solo_button->visual_state() & ~Gtkmm2ext::Insensitive));
1996                 }
1997                 if (!Config->get_solo_control_is_listen_control()) {
1998                         solo_button->set_text (_("S"));
1999                 } else {
2000                         switch (Config->get_listen_position()) {
2001                         case AfterFaderListen:
2002                                 solo_button->set_text (_("A"));
2003                                 break;
2004                         case PreFaderListen:
2005                                 solo_button->set_text (_("P"));
2006                                 break;
2007                         }
2008                 }
2009
2010                 solo_isolated_led->set_text (_("I"));
2011                 solo_safe_led->set_text (_("L"));
2012                 break;
2013         }
2014
2015         if (_route) {
2016                 meter_point_button.set_text (meter_point_string (_route->meter_point()));
2017         } else {
2018                 meter_point_button.set_text ("");
2019         }
2020 }
2021
2022 PluginSelector*
2023 MixerStrip::plugin_selector()
2024 {
2025         return _mixer.plugin_selector();
2026 }
2027
2028 void
2029 MixerStrip::hide_things ()
2030 {
2031         processor_box.hide_things ();
2032 }
2033
2034 bool
2035 MixerStrip::input_active_button_press (GdkEventButton*)
2036 {
2037         /* nothing happens on press */
2038         return true;
2039 }
2040
2041 bool
2042 MixerStrip::input_active_button_release (GdkEventButton* ev)
2043 {
2044         boost::shared_ptr<MidiTrack> mt = midi_track ();
2045
2046         if (!mt) {
2047                 return true;
2048         }
2049
2050         boost::shared_ptr<RouteList> rl (new RouteList);
2051
2052         rl->push_back (route());
2053
2054         _session->set_exclusive_input_active (rl, !mt->input_active(),
2055                                               Keyboard::modifier_state_contains (ev->state, Keyboard::ModifierMask (Keyboard::PrimaryModifier|Keyboard::SecondaryModifier)));
2056
2057         return true;
2058 }
2059
2060 void
2061 MixerStrip::midi_input_status_changed ()
2062 {
2063         if (midi_input_enable_button) {
2064                 boost::shared_ptr<MidiTrack> mt = midi_track ();
2065                 assert (mt);
2066                 midi_input_enable_button->set_active (mt->input_active ());
2067         }
2068 }
2069
2070 string
2071 MixerStrip::state_id () const
2072 {
2073         return string_compose ("strip %1", _route->id().to_s());
2074 }
2075
2076 void
2077 MixerStrip::parameter_changed (string p)
2078 {
2079         if (p == _visibility.get_state_name()) {
2080                 /* The user has made changes to the mixer strip visibility, so get
2081                    our VisibilityGroup to reflect these changes in our widgets.
2082                 */
2083                 _visibility.set_state (Config->get_mixer_strip_visibility ());
2084         }
2085         else if (p == "track-name-number") {
2086                 name_changed ();
2087         }
2088 }
2089
2090 /** Called to decide whether the solo isolate / solo lock button visibility should
2091  *  be overridden from that configured by the user.  We do this for the master bus.
2092  *
2093  *  @return optional value that is present if visibility state should be overridden.
2094  */
2095 boost::optional<bool>
2096 MixerStrip::override_solo_visibility () const
2097 {
2098         if (_route && _route->is_master ()) {
2099                 return boost::optional<bool> (false);
2100         }
2101         
2102         return boost::optional<bool> ();
2103 }
2104
2105 void
2106 MixerStrip::add_input_port (DataType t)
2107 {
2108         _route->input()->add_port ("", this, t);
2109 }
2110
2111 void
2112 MixerStrip::add_output_port (DataType t)
2113 {
2114         _route->output()->add_port ("", this, t);
2115 }
2116
2117 void
2118 MixerStrip::route_active_changed ()
2119 {
2120         reset_strip_style ();
2121 }
2122
2123 void
2124 MixerStrip::copy_processors ()
2125 {
2126         processor_box.processor_operation (ProcessorBox::ProcessorsCopy);
2127 }
2128
2129 void
2130 MixerStrip::cut_processors ()
2131 {
2132         processor_box.processor_operation (ProcessorBox::ProcessorsCut);
2133 }
2134
2135 void
2136 MixerStrip::paste_processors ()
2137 {
2138         processor_box.processor_operation (ProcessorBox::ProcessorsPaste);
2139 }
2140
2141 void
2142 MixerStrip::select_all_processors ()
2143 {
2144         processor_box.processor_operation (ProcessorBox::ProcessorsSelectAll);
2145 }
2146
2147 void
2148 MixerStrip::deselect_all_processors ()
2149 {
2150         processor_box.processor_operation (ProcessorBox::ProcessorsSelectNone);
2151 }
2152
2153 bool
2154 MixerStrip::delete_processors ()
2155 {
2156         return processor_box.processor_operation (ProcessorBox::ProcessorsDelete);
2157 }
2158
2159 void
2160 MixerStrip::toggle_processors ()
2161 {
2162         processor_box.processor_operation (ProcessorBox::ProcessorsToggleActive);
2163 }
2164
2165 void
2166 MixerStrip::ab_plugins ()
2167 {
2168         processor_box.processor_operation (ProcessorBox::ProcessorsAB);
2169 }
2170
2171 bool
2172 MixerStrip::level_meter_button_press (GdkEventButton* ev)
2173 {
2174         if (_current_delivery && boost::dynamic_pointer_cast<Send>(_current_delivery)) {
2175                 return false;
2176         }
2177         if (ev->button == 3) {
2178                 popup_level_meter_menu (ev);
2179                 return true;
2180         }
2181
2182         return false;
2183 }
2184
2185 void
2186 MixerStrip::popup_level_meter_menu (GdkEventButton* ev)
2187 {
2188         using namespace Gtk::Menu_Helpers;
2189
2190         Gtk::Menu* m = manage (new Menu);
2191         MenuList& items = m->items ();
2192
2193         RadioMenuItem::Group group;
2194
2195         _suspend_menu_callbacks = true;
2196         add_level_meter_item_point (items, group, _("Input"), MeterInput);
2197         add_level_meter_item_point (items, group, _("Pre Fader"), MeterPreFader);
2198         add_level_meter_item_point (items, group, _("Post Fader"), MeterPostFader);
2199         add_level_meter_item_point (items, group, _("Output"), MeterOutput);
2200         add_level_meter_item_point (items, group, _("Custom"), MeterCustom);
2201
2202         RadioMenuItem::Group tgroup;
2203         items.push_back (SeparatorElem());
2204
2205         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterPeak), MeterPeak);
2206         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterKrms),  MeterKrms);
2207         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterIEC1DIN), MeterIEC1DIN);
2208         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterIEC1NOR), MeterIEC1NOR);
2209         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterIEC2BBC), MeterIEC2BBC);
2210         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterIEC2EBU), MeterIEC2EBU);
2211         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterK20), MeterK20);
2212         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterK14), MeterK14);
2213         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterK12), MeterK12);
2214         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterVU),  MeterVU);
2215
2216         int _strip_type;
2217         if (_route->is_master()) {
2218                 _strip_type = 4;
2219         }
2220         else if (boost::dynamic_pointer_cast<AudioTrack>(_route) == 0
2221                         && boost::dynamic_pointer_cast<MidiTrack>(_route) == 0) {
2222                 /* non-master bus */
2223                 _strip_type = 3;
2224         }
2225         else if (boost::dynamic_pointer_cast<MidiTrack>(_route)) {
2226                 _strip_type = 2;
2227         }
2228         else {
2229                 _strip_type = 1;
2230         }
2231
2232         MeterType cmt = _route->meter_type();
2233         const std::string cmn = ArdourMeter::meter_type_string(cmt);
2234
2235         items.push_back (SeparatorElem());
2236         items.push_back (MenuElem (string_compose(_("Change all in Group to %1"), cmn),
2237                                 sigc::bind (SetMeterTypeMulti, -1, _route->route_group(), cmt)));
2238         items.push_back (MenuElem (string_compose(_("Change all to %1"), cmn),
2239                                 sigc::bind (SetMeterTypeMulti, 0, _route->route_group(), cmt)));
2240         items.push_back (MenuElem (string_compose(_("Change same track-type to %1"), cmn),
2241                                 sigc::bind (SetMeterTypeMulti, _strip_type, _route->route_group(), cmt)));
2242
2243         m->popup (ev->button, ev->time);
2244         _suspend_menu_callbacks = false;
2245 }
2246
2247 void
2248 MixerStrip::add_level_meter_item_point (Menu_Helpers::MenuList& items,
2249                 RadioMenuItem::Group& group, string const & name, MeterPoint point)
2250 {
2251         using namespace Menu_Helpers;
2252         
2253         items.push_back (RadioMenuElem (group, name, sigc::bind (sigc::mem_fun (*this, &MixerStrip::set_meter_point), point)));
2254         RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&items.back ());
2255         i->set_active (_route->meter_point() == point);
2256 }
2257
2258 void
2259 MixerStrip::set_meter_point (MeterPoint p)
2260 {
2261         if (_suspend_menu_callbacks) return;
2262         _route->set_meter_point (p);
2263 }
2264
2265 void
2266 MixerStrip::add_level_meter_item_type (Menu_Helpers::MenuList& items,
2267                 RadioMenuItem::Group& group, string const & name, MeterType type)
2268 {
2269         using namespace Menu_Helpers;
2270         
2271         items.push_back (RadioMenuElem (group, name, sigc::bind (sigc::mem_fun (*this, &MixerStrip::set_meter_type), type)));
2272         RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&items.back ());
2273         i->set_active (_route->meter_type() == type);
2274 }
2275
2276 void
2277 MixerStrip::set_meter_type (MeterType t)
2278 {
2279         if (_suspend_menu_callbacks) return;
2280         gpm.set_type (t);
2281 }