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