make top_event_box of mixer strip show per-route color whether or not the route is...
[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() && input_selector) {
996                         input_selector->hide_all ();
997         }
998
999         route_color_changed ();
1000 }
1001
1002 void
1003 MixerStrip::connect_to_pan ()
1004 {
1005         ENSURE_GUI_THREAD (*this, &MixerStrip::connect_to_pan)
1006
1007         panstate_connection.disconnect ();
1008         panstyle_connection.disconnect ();
1009
1010         if (!_route->panner()) {
1011                 return;
1012         }
1013
1014         boost::shared_ptr<Pannable> p = _route->pannable ();
1015
1016         p->automation_state_changed.connect (panstate_connection, invalidator (*this), boost::bind (&PannerUI::pan_automation_state_changed, &panners), gui_context());
1017         p->automation_style_changed.connect (panstyle_connection, invalidator (*this), boost::bind (&PannerUI::pan_automation_style_changed, &panners), gui_context());
1018
1019         /* This call reduncant, PannerUI::set_panner() connects to _panshell->Changed itself
1020          * However, that only works a panner was previously set.
1021          *
1022          * PannerUI must remain subscribed to _panshell->Changed() in case
1023          * we switch the panner eg. AUX-Send and back
1024          * _route->panner_shell()->Changed() vs _panshell->Changed
1025          */
1026         if (panners._panner == 0) {
1027                 panners.panshell_changed ();
1028         }
1029         update_panner_choices();
1030 }
1031
1032 void
1033 MixerStrip::update_panner_choices ()
1034 {
1035         ENSURE_GUI_THREAD (*this, &MixerStrip::update_panner_choices)
1036         if (!_route->panner_shell()) { return; }
1037
1038         uint32_t in = _route->output()->n_ports().n_audio();
1039         uint32_t out = in;
1040         if (_route->panner()) {
1041                 in = _route->panner()->in().n_audio();
1042         }
1043
1044         panners.set_available_panners(PannerManager::instance().PannerManager::get_available_panners(in, out));
1045 }
1046
1047 /*
1048  * Output port labelling
1049  * =====================
1050  *
1051  * Case 1: Each output has one connection, all connections are to system:playback_%i
1052  *   out 1 -> system:playback_1
1053  *   out 2 -> system:playback_2
1054  *   out 3 -> system:playback_3
1055  *   Display as: 1/2/3
1056  *
1057  * Case 2: Each output has one connection, all connections are to ardour:track_x/in 1
1058  *   out 1 -> ardour:track_x/in 1
1059  *   out 2 -> ardour:track_x/in 2
1060  *   Display as: track_x
1061  *
1062  * Case 3: Each output has one connection, all connections are to Jack client "program x"
1063  *   out 1 -> program x:foo
1064  *   out 2 -> program x:foo
1065  *   Display as: program x
1066  *
1067  * Case 4: No connections (Disconnected)
1068  *   Display as: -
1069  *
1070  * Default case (unusual routing):
1071  *   Display as: *number of connections*
1072  *
1073  * Tooltips
1074  * ========
1075  * .-----------------------------------------------.
1076  * | Mixdown                                       |
1077  * | out 1 -> ardour:master/in 1, jamin:input/in 1 |
1078  * | out 2 -> ardour:master/in 2, jamin:input/in 2 |
1079  * '-----------------------------------------------'
1080  * .-----------------------------------------------.
1081  * | Guitar SM58                                   |
1082  * | Disconnected                                  |
1083  * '-----------------------------------------------'
1084  */
1085
1086 void
1087 MixerStrip::update_io_button (boost::shared_ptr<ARDOUR::Route> route, Width width, bool for_input)
1088 {
1089         uint32_t io_count;
1090         uint32_t io_index;
1091         boost::shared_ptr<Port> port;
1092         vector<string> port_connections;
1093
1094         uint32_t total_connection_count = 0;
1095         uint32_t io_connection_count = 0;
1096         uint32_t ardour_connection_count = 0;
1097         uint32_t system_connection_count = 0;
1098         uint32_t other_connection_count = 0;
1099
1100         ostringstream label;
1101         string label_string;
1102
1103         bool have_label = false;
1104         bool each_io_has_one_connection = true;
1105
1106         string connection_name;
1107         string ardour_track_name;
1108         string other_connection_type;
1109         string system_ports;
1110         string system_port;
1111
1112         ostringstream tooltip;
1113         char * tooltip_cstr;
1114
1115         if (for_input) {
1116                 io_count = route->n_inputs().n_total();
1117                 tooltip << string_compose (_("<b>INPUT</b> to %1"), Glib::Markup::escape_text(route->name()));
1118         } else {
1119                 io_count = route->n_outputs().n_total();
1120                 tooltip << string_compose (_("<b>OUTPUT</b> from %1"), Glib::Markup::escape_text(route->name()));
1121         }
1122
1123
1124         for (io_index = 0; io_index < io_count; ++io_index) {
1125                 if (for_input) {
1126                         port = route->input()->nth (io_index);
1127                 } else {
1128                         port = route->output()->nth (io_index);
1129                 }
1130
1131                 port_connections.clear ();
1132                 port->get_connections(port_connections);
1133                 io_connection_count = 0;
1134
1135                 if (!port_connections.empty()) {
1136                         for (vector<string>::iterator i = port_connections.begin(); i != port_connections.end(); ++i) {
1137                                 string& connection_name (*i);
1138
1139                                 if (io_connection_count == 0) {
1140                                         tooltip << endl << Glib::Markup::escape_text(port->name().substr(port->name().find("/") + 1)) << " -> " << Glib::Markup::escape_text(connection_name);
1141                                 } else {
1142                                         tooltip << ", " << Glib::Markup::escape_text(connection_name);
1143                                 }
1144
1145                                 if (connection_name.find("ardour:") == 0) {
1146                                         if (ardour_track_name.empty()) {
1147                                                 // "ardour:Master/in 1" -> "ardour:Master/"
1148                                                 string::size_type slash = connection_name.find("/");
1149                                                 if (slash != string::npos) {
1150                                                         ardour_track_name = connection_name.substr(0, slash + 1);
1151                                                 }
1152                                         }
1153
1154                                         if (connection_name.find(ardour_track_name) == 0) {
1155                                                 ++ardour_connection_count;
1156                                         }
1157                                 } else if (connection_name.find("system:") == 0) {
1158                                         if (for_input) {
1159                                                 // "system:capture_123" -> "123"
1160                                                 system_port = connection_name.substr(15);
1161                                         } else {
1162                                                 // "system:playback_123" -> "123"
1163                                                 system_port = connection_name.substr(16);
1164                                         }
1165
1166                                         if (system_ports.empty()) {
1167                                                 system_ports += system_port;
1168                                         } else {
1169                                                 system_ports += "/" + system_port;
1170                                         }
1171
1172                                         ++system_connection_count;
1173                                 } else {
1174                                         if (other_connection_type.empty()) {
1175                                                 // "jamin:in 1" -> "jamin:"
1176                                                 other_connection_type = connection_name.substr(0, connection_name.find(":") + 1);
1177                                         }
1178
1179                                         if (connection_name.find(other_connection_type) == 0) {
1180                                                 ++other_connection_count;
1181                                         }
1182                                 }
1183
1184                                 ++total_connection_count;
1185                                 ++io_connection_count;
1186                         }
1187                 }
1188
1189                 if (io_connection_count != 1) {
1190                         each_io_has_one_connection = false;
1191                 }
1192         }
1193
1194         if (total_connection_count == 0) {
1195                 tooltip << endl << _("Disconnected");
1196         }
1197
1198         tooltip_cstr = new char[tooltip.str().size() + 1];
1199         strcpy(tooltip_cstr, tooltip.str().c_str());
1200
1201         if (for_input) {
1202                 ARDOUR_UI::instance()->set_tip (&input_button, tooltip_cstr, "");
1203         } else {
1204                 ARDOUR_UI::instance()->set_tip (&output_button, tooltip_cstr, "");
1205         }
1206
1207         if (each_io_has_one_connection) {
1208                 if (total_connection_count == ardour_connection_count) {
1209                         // all connections are to the same track in ardour
1210                         // "ardour:Master/" -> "Master"
1211                         string::size_type slash = ardour_track_name.find("/");
1212                         if (slash != string::npos) {
1213                                 label << ardour_track_name.substr(7, slash - 7);
1214                                 have_label = true;
1215                         }
1216                 }
1217                 else if (total_connection_count == system_connection_count) {
1218                         // all connections are to system ports
1219                         label << system_ports;
1220                         have_label = true;
1221                 }
1222                 else if (total_connection_count == other_connection_count) {
1223                         // all connections are to the same external program eg jamin
1224                         // "jamin:" -> "jamin"
1225                         label << other_connection_type.substr(0, other_connection_type.size() - 1);
1226                         have_label = true;
1227                 }
1228         }
1229
1230         if (!have_label) {
1231                 if (total_connection_count == 0) {
1232                         // Disconnected
1233                         label << "-";
1234                 } else {
1235                         // Odd configuration
1236                         label << "*" << total_connection_count << "*";
1237                 }
1238         }
1239
1240         switch (width) {
1241         case Wide:
1242                 label_string = label.str().substr(0, 7);
1243                 break;
1244         case Narrow:
1245                 label_string = label.str().substr(0, 3);
1246                 break;
1247         }
1248
1249         if (for_input) {
1250                 input_button.set_text (label_string);
1251         } else {
1252                 output_button.set_text (label_string);
1253         }
1254 }
1255
1256 void
1257 MixerStrip::update_input_display ()
1258 {
1259         update_io_button (_route, _width, true);
1260         panners.setup_pan ();
1261
1262         if (has_audio_outputs ()) {
1263                 panners.show_all ();
1264         } else {
1265                 panners.hide_all ();
1266         }
1267
1268 }
1269
1270 void
1271 MixerStrip::update_output_display ()
1272 {
1273         update_io_button (_route, _width, false);
1274         gpm.setup_meters ();
1275         panners.setup_pan ();
1276
1277         if (has_audio_outputs ()) {
1278                 panners.show_all ();
1279         } else {
1280                 panners.hide_all ();
1281         }
1282 }
1283
1284 void
1285 MixerStrip::fast_update ()
1286 {
1287         gpm.update_meters ();
1288 }
1289
1290 void
1291 MixerStrip::diskstream_changed ()
1292 {
1293         Gtkmm2ext::UI::instance()->call_slot (invalidator (*this), boost::bind (&MixerStrip::update_diskstream_display, this));
1294 }
1295
1296 void
1297 MixerStrip::io_changed_proxy ()
1298 {
1299         Glib::signal_idle().connect_once (sigc::mem_fun (*this, &MixerStrip::update_panner_choices));
1300 }
1301
1302 void
1303 MixerStrip::port_connected_or_disconnected (boost::weak_ptr<Port> wa, boost::weak_ptr<Port> wb)
1304 {
1305         boost::shared_ptr<Port> a = wa.lock ();
1306         boost::shared_ptr<Port> b = wb.lock ();
1307
1308         if ((a && _route->input()->has_port (a)) || (b && _route->input()->has_port (b))) {
1309                 update_input_display ();
1310                 set_width_enum (_width, this);
1311         }
1312
1313         if ((a && _route->output()->has_port (a)) || (b && _route->output()->has_port (b))) {
1314                 update_output_display ();
1315                 set_width_enum (_width, this);
1316         }
1317 }
1318
1319 void
1320 MixerStrip::setup_comment_button ()
1321 {
1322         switch (_width) {
1323
1324         case Wide:
1325                 if (_route->comment().empty ()) {
1326                         _comment_button.unset_bg (STATE_NORMAL);
1327                         _comment_button.set_text (_("Comments"));
1328                 } else {
1329                         _comment_button.modify_bg (STATE_NORMAL, color ());
1330                         _comment_button.set_text (_("*Comments*"));
1331                 }
1332                 break;
1333
1334         case Narrow:
1335                 if (_route->comment().empty ()) {
1336                         _comment_button.unset_bg (STATE_NORMAL);
1337                         _comment_button.set_text (_("Cmt"));
1338                 } else {
1339                         _comment_button.modify_bg (STATE_NORMAL, color ());
1340                         _comment_button.set_text (_("*Cmt*"));
1341                 }
1342                 break;
1343         }
1344
1345         ARDOUR_UI::instance()->set_tip (
1346                 _comment_button, _route->comment().empty() ? _("Click to Add/Edit Comments") : _route->comment()
1347                 );
1348 }
1349
1350 void
1351 MixerStrip::comment_editor_done_editing ()
1352 {
1353         string const str = comment_area->get_buffer()->get_text();
1354         if (str == _route->comment ()) {
1355                 return;
1356         }
1357
1358         _route->set_comment (str, this);
1359         setup_comment_button ();
1360 }
1361
1362 void
1363 MixerStrip::toggle_comment_editor ()
1364 {
1365         if (ignore_toggle) {
1366                 return;
1367         }
1368
1369         if (comment_window && comment_window->is_visible ()) {
1370                 comment_window->hide ();
1371         } else {
1372                 open_comment_editor ();
1373         }
1374 }
1375
1376 void
1377 MixerStrip::open_comment_editor ()
1378 {
1379         if (comment_window == 0) {
1380                 setup_comment_editor ();
1381         }
1382
1383         string title;
1384         title = _route->name();
1385         title += _(": comment editor");
1386
1387         comment_window->set_title (title);
1388         comment_window->present();
1389 }
1390
1391 void
1392 MixerStrip::setup_comment_editor ()
1393 {
1394         comment_window = new ArdourWindow (""); // title will be reset to show route
1395         comment_window->set_skip_taskbar_hint (true);
1396         comment_window->signal_hide().connect (sigc::mem_fun(*this, &MixerStrip::comment_editor_done_editing));
1397         comment_window->set_default_size (400, 200);
1398
1399         comment_area = manage (new TextView());
1400         comment_area->set_name ("MixerTrackCommentArea");
1401         comment_area->set_wrap_mode (WRAP_WORD);
1402         comment_area->set_editable (true);
1403         comment_area->get_buffer()->set_text (_route->comment());
1404         comment_area->show ();
1405
1406         comment_window->add (*comment_area);
1407 }
1408
1409 void
1410 MixerStrip::comment_changed (void *src)
1411 {
1412         ENSURE_GUI_THREAD (*this, &MixerStrip::comment_changed, src)
1413
1414         if (src != this) {
1415                 ignore_comment_edit = true;
1416                 if (comment_area) {
1417                         comment_area->get_buffer()->set_text (_route->comment());
1418                 }
1419                 ignore_comment_edit = false;
1420         }
1421 }
1422
1423 bool
1424 MixerStrip::select_route_group (GdkEventButton *ev)
1425 {
1426         using namespace Menu_Helpers;
1427
1428         if (ev->button == 1) {
1429
1430                 if (group_menu == 0) {
1431
1432                         PropertyList* plist = new PropertyList();
1433
1434                         plist->add (Properties::gain, true);
1435                         plist->add (Properties::mute, true);
1436                         plist->add (Properties::solo, true);
1437
1438                         group_menu = new RouteGroupMenu (_session, plist);
1439                 }
1440
1441                 WeakRouteList r;
1442                 r.push_back (route ());
1443                 group_menu->build (r);
1444                 group_menu->menu()->popup (1, ev->time);
1445         }
1446
1447         return true;
1448 }
1449
1450 void
1451 MixerStrip::route_group_changed ()
1452 {
1453         ENSURE_GUI_THREAD (*this, &MixerStrip::route_group_changed)
1454
1455         RouteGroup *rg = _route->route_group();
1456
1457         if (rg) {
1458                 group_button.set_text (PBD::short_version (rg->name(), 5));
1459         } else {
1460                 switch (_width) {
1461                 case Wide:
1462                         group_button.set_text (_("Grp"));
1463                         break;
1464                 case Narrow:
1465                         group_button.set_text (_("~G"));
1466                         break;
1467                 }
1468         }
1469 }
1470
1471 void
1472 MixerStrip::route_color_changed ()
1473 {
1474         name_button.modify_bg (STATE_NORMAL, color());
1475         top_event_box.modify_bg (STATE_NORMAL, color());
1476         reset_strip_style ();
1477 }
1478
1479 void
1480 MixerStrip::show_passthru_color ()
1481 {
1482         reset_strip_style ();
1483 }
1484
1485 void
1486 MixerStrip::build_route_ops_menu ()
1487 {
1488         using namespace Menu_Helpers;
1489         route_ops_menu = new Menu;
1490         route_ops_menu->set_name ("ArdourContextMenu");
1491
1492         MenuList& items = route_ops_menu->items();
1493
1494         items.push_back (MenuElem (_("Comments..."), sigc::mem_fun (*this, &MixerStrip::open_comment_editor)));
1495         if (!_route->is_master()) {
1496                 items.push_back (MenuElem (_("Save As Template..."), sigc::mem_fun(*this, &RouteUI::save_as_template)));
1497         }
1498         items.push_back (MenuElem (_("Rename..."), sigc::mem_fun(*this, &RouteUI::route_rename)));
1499         rename_menu_item = &items.back();
1500
1501         items.push_back (SeparatorElem());
1502         items.push_back (CheckMenuElem (_("Active")));
1503         Gtk::CheckMenuItem* i = dynamic_cast<Gtk::CheckMenuItem *> (&items.back());
1504         i->set_active (_route->active());
1505         i->signal_activate().connect (sigc::bind (sigc::mem_fun (*this, &RouteUI::set_route_active), !_route->active(), false));
1506
1507         items.push_back (SeparatorElem());
1508
1509         items.push_back (MenuElem (_("Adjust Latency..."), sigc::mem_fun (*this, &RouteUI::adjust_latency)));
1510
1511         items.push_back (SeparatorElem());
1512         items.push_back (CheckMenuElem (_("Protect Against Denormals"), sigc::mem_fun (*this, &RouteUI::toggle_denormal_protection)));
1513         denormal_menu_item = dynamic_cast<Gtk::CheckMenuItem *> (&items.back());
1514         denormal_menu_item->set_active (_route->denormal_protection());
1515
1516         if (!Profile->get_sae()) {
1517                 items.push_back (SeparatorElem());
1518                 items.push_back (MenuElem (_("Remote Control ID..."), sigc::mem_fun (*this, &RouteUI::open_remote_control_id_dialog)));
1519         }
1520
1521         items.push_back (SeparatorElem());
1522         items.push_back (MenuElem (_("Remove"), sigc::bind (sigc::mem_fun(*this, &RouteUI::remove_this_route), false)));
1523 }
1524
1525 gboolean
1526 MixerStrip::name_button_button_press (GdkEventButton* ev)
1527 {
1528         /* show menu for either button 1 or 3, so as not to confuse people
1529            and also not hide stuff from them.
1530         */
1531
1532         if (ev->button == 3 || ev->button == 1) {
1533                 list_route_operations ();
1534
1535                 /* do not allow rename if the track is record-enabled */
1536                 rename_menu_item->set_sensitive (!_route->record_enabled());
1537                 route_ops_menu->popup (1, ev->time);
1538         }
1539
1540         return false;
1541 }
1542
1543 void
1544 MixerStrip::list_route_operations ()
1545 {
1546         delete route_ops_menu;
1547         build_route_ops_menu ();
1548 }
1549
1550 void
1551 MixerStrip::set_selected (bool yn)
1552 {
1553         AxisView::set_selected (yn);
1554         if (_selected) {
1555                 global_frame.set_shadow_type (Gtk::SHADOW_ETCHED_OUT);
1556                 global_frame.set_name ("MixerStripSelectedFrame");
1557         } else {
1558                 global_frame.set_shadow_type (Gtk::SHADOW_IN);
1559                 global_frame.set_name ("MixerStripFrame");
1560         }
1561         global_frame.queue_draw ();
1562 }
1563
1564 void
1565 MixerStrip::property_changed (const PropertyChange& what_changed)
1566 {
1567         RouteUI::property_changed (what_changed);
1568
1569         if (what_changed.contains (ARDOUR::Properties::name)) {
1570                 name_changed ();
1571         }
1572 }
1573
1574 void
1575 MixerStrip::name_changed ()
1576 {
1577         switch (_width) {
1578         case Wide:
1579                 name_button.set_text (_route->name());
1580                 break;
1581         case Narrow:
1582                 name_button.set_text (PBD::short_version (_route->name(), 5));
1583                 break;
1584         }
1585
1586         ARDOUR_UI::instance()->set_tip (name_button, _route->name());
1587 }
1588
1589 void
1590 MixerStrip::name_button_resized (Gtk::Allocation& alloc)
1591 {
1592         name_button.layout()->set_width (alloc.get_width() * PANGO_SCALE);
1593 }
1594
1595 bool
1596 MixerStrip::width_button_pressed (GdkEventButton* ev)
1597 {
1598         if (ev->button != 1) {
1599                 return false;
1600         }
1601         
1602         if (Keyboard::modifier_state_contains (ev->state, Keyboard::ModifierMask (Keyboard::PrimaryModifier | Keyboard::TertiaryModifier)) && _mixer_owned) {
1603                 switch (_width) {
1604                 case Wide:
1605                         _mixer.set_strip_width (Narrow, true);
1606                         break;
1607
1608                 case Narrow:
1609                         _mixer.set_strip_width (Wide, true);
1610                         break;
1611                 }
1612         } else {
1613                 switch (_width) {
1614                 case Wide:
1615                         set_width_enum (Narrow, this);
1616                         break;
1617                 case Narrow:
1618                         set_width_enum (Wide, this);
1619                         break;
1620                 }
1621         }
1622
1623         return true;
1624 }
1625
1626 void
1627 MixerStrip::hide_clicked ()
1628 {
1629         // LAME fix to reset the button status for when it is redisplayed (part 1)
1630         hide_button.set_sensitive(false);
1631
1632         if (_embedded) {
1633                 Hiding(); /* EMIT_SIGNAL */
1634         } else {
1635                 _mixer.hide_strip (this);
1636         }
1637
1638         // (part 2)
1639         hide_button.set_sensitive(true);
1640 }
1641
1642 void
1643 MixerStrip::set_embedded (bool yn)
1644 {
1645         _embedded = yn;
1646 }
1647
1648 void
1649 MixerStrip::map_frozen ()
1650 {
1651         ENSURE_GUI_THREAD (*this, &MixerStrip::map_frozen)
1652
1653         boost::shared_ptr<AudioTrack> at = audio_track();
1654
1655         if (at) {
1656                 switch (at->freeze_state()) {
1657                 case AudioTrack::Frozen:
1658                         processor_box.set_sensitive (false);
1659                         hide_redirect_editors ();
1660                         break;
1661                 default:
1662                         processor_box.set_sensitive (true);
1663                         // XXX need some way, maybe, to retoggle redirect editors
1664                         break;
1665                 }
1666         }
1667 }
1668
1669 void
1670 MixerStrip::hide_redirect_editors ()
1671 {
1672         _route->foreach_processor (sigc::mem_fun (*this, &MixerStrip::hide_processor_editor));
1673 }
1674
1675 void
1676 MixerStrip::hide_processor_editor (boost::weak_ptr<Processor> p)
1677 {
1678         boost::shared_ptr<Processor> processor (p.lock ());
1679         if (!processor) {
1680                 return;
1681         }
1682
1683         Gtk::Window* w = processor_box.get_processor_ui (processor);
1684
1685         if (w) {
1686                 w->hide ();
1687         }
1688 }
1689
1690 void
1691 MixerStrip::reset_strip_style ()
1692 {
1693         if (_current_delivery && boost::dynamic_pointer_cast<Send>(_current_delivery)) {
1694
1695                 gpm.set_fader_name ("SendStripBase");
1696
1697         } else {
1698
1699                 if (is_midi_track()) {
1700                         if (_route->active()) {
1701                                 set_name ("MidiTrackStripBase");
1702                         } else {
1703                                 set_name ("MidiTrackStripBaseInactive");
1704                         }
1705                         gpm.set_fader_name ("MidiTrackFader");
1706                 } else if (is_audio_track()) {
1707                         if (_route->active()) {
1708                                 set_name ("AudioTrackStripBase");
1709                         } else {
1710                                 set_name ("AudioTrackStripBaseInactive");
1711                         }
1712                         gpm.set_fader_name ("AudioTrackFader");
1713                 } else {
1714                         if (_route->active()) {
1715                                 set_name ("AudioBusStripBase");
1716                         } else {
1717                                 set_name ("AudioBusStripBaseInactive");
1718                         }
1719                         gpm.set_fader_name ("AudioBusFader");
1720
1721                         /* (no MIDI busses yet) */
1722                 }
1723         }
1724 }
1725
1726
1727 void
1728 MixerStrip::engine_stopped ()
1729 {
1730 }
1731
1732 void
1733 MixerStrip::engine_running ()
1734 {
1735 }
1736
1737 string
1738 MixerStrip::meter_point_string (MeterPoint mp)
1739 {
1740         switch (_width) {
1741         case Wide:
1742                 switch (mp) {
1743                 case MeterInput:
1744                         return _("in");
1745                         break;
1746                         
1747                 case MeterPreFader:
1748                         return _("pre");
1749                         break;
1750                         
1751                 case MeterPostFader:
1752                         return _("post");
1753                         break;
1754                         
1755                 case MeterOutput:
1756                         return _("out");
1757                         break;
1758                         
1759                 case MeterCustom:
1760                 default:
1761                         return _("custom");
1762                         break;
1763                 }
1764                 break;
1765         case Narrow:
1766                 switch (mp) {
1767                 case MeterInput:
1768                         return _("in");
1769                         break;
1770                         
1771                 case MeterPreFader:
1772                         return _("pr");
1773                         break;
1774                         
1775                 case MeterPostFader:
1776                         return _("po");
1777                         break;
1778                         
1779                 case MeterOutput:
1780                         return _("o");
1781                         break;
1782                         
1783                 case MeterCustom:
1784                 default:
1785                         return _("c");
1786                         break;
1787                 }
1788                 break;
1789         }
1790
1791         return string();
1792 }
1793
1794 /** Called when the metering point has changed */
1795 void
1796 MixerStrip::meter_changed ()
1797 {
1798         meter_point_button.set_text (meter_point_string (_route->meter_point()));
1799         gpm.setup_meters ();
1800         // reset peak when meter point changes
1801         gpm.reset_peak_display();
1802 }
1803
1804 /** The bus that we are displaying sends to has changed, or been turned off.
1805  *  @param send_to New bus that we are displaying sends to, or 0.
1806  */
1807 void
1808 MixerStrip::bus_send_display_changed (boost::shared_ptr<Route> send_to)
1809 {
1810         RouteUI::bus_send_display_changed (send_to);
1811
1812         if (send_to) {
1813                 boost::shared_ptr<Send> send = _route->internal_send_for (send_to);
1814
1815                 if (send) {
1816                         show_send (send);
1817                 } else {
1818                         revert_to_default_display ();
1819                 }
1820         } else {
1821                 revert_to_default_display ();
1822         }
1823 }
1824
1825 void
1826 MixerStrip::drop_send ()
1827 {
1828         boost::shared_ptr<Send> current_send;
1829
1830         if (_current_delivery && ((current_send = boost::dynamic_pointer_cast<Send>(_current_delivery)) != 0)) {
1831                 current_send->set_metering (false);
1832         }
1833
1834         send_gone_connection.disconnect ();
1835         input_button.set_sensitive (true);
1836         output_button.set_sensitive (true);
1837         group_button.set_sensitive (true);
1838         set_invert_sensitive (true);
1839         meter_point_button.set_sensitive (true);
1840         mute_button->set_sensitive (true);
1841         solo_button->set_sensitive (true);
1842         rec_enable_button->set_sensitive (true);
1843         solo_isolated_led->set_sensitive (true);
1844         solo_safe_led->set_sensitive (true);
1845         monitor_input_button->set_sensitive (true);
1846         monitor_disk_button->set_sensitive (true);
1847         _comment_button.set_sensitive (true);
1848 }
1849
1850 void
1851 MixerStrip::set_current_delivery (boost::shared_ptr<Delivery> d)
1852 {
1853         _current_delivery = d;
1854         DeliveryChanged (_current_delivery);
1855 }
1856
1857 void
1858 MixerStrip::show_send (boost::shared_ptr<Send> send)
1859 {
1860         assert (send != 0);
1861
1862         drop_send ();
1863
1864         set_current_delivery (send);
1865
1866         send->set_metering (true);
1867         _current_delivery->DropReferences.connect (send_gone_connection, invalidator (*this), boost::bind (&MixerStrip::revert_to_default_display, this), gui_context());
1868
1869         gain_meter().set_controls (_route, send->meter(), send->amp());
1870         gain_meter().setup_meters ();
1871
1872         uint32_t const in = _current_delivery->pans_required();
1873         uint32_t const out = _current_delivery->pan_outs();
1874
1875         panner_ui().set_panner (_current_delivery->panner_shell(), _current_delivery->panner());
1876         panner_ui().set_available_panners(PannerManager::instance().PannerManager::get_available_panners(in, out));
1877         panner_ui().setup_pan ();
1878         panner_ui().show_all ();
1879
1880         input_button.set_sensitive (false);
1881         group_button.set_sensitive (false);
1882         set_invert_sensitive (false);
1883         meter_point_button.set_sensitive (false);
1884         mute_button->set_sensitive (false);
1885         solo_button->set_sensitive (false);
1886         rec_enable_button->set_sensitive (false);
1887         solo_isolated_led->set_sensitive (false);
1888         solo_safe_led->set_sensitive (false);
1889         monitor_input_button->set_sensitive (false);
1890         monitor_disk_button->set_sensitive (false);
1891         _comment_button.set_sensitive (false);
1892
1893         if (boost::dynamic_pointer_cast<InternalSend>(send)) {
1894                 output_button.set_sensitive (false);
1895         }
1896
1897         reset_strip_style ();
1898 }
1899
1900 void
1901 MixerStrip::revert_to_default_display ()
1902 {
1903         drop_send ();
1904
1905         set_current_delivery (_route->main_outs ());
1906
1907         gain_meter().set_controls (_route, _route->shared_peak_meter(), _route->amp());
1908         gain_meter().setup_meters ();
1909
1910         panner_ui().set_panner (_route->main_outs()->panner_shell(), _route->main_outs()->panner());
1911         update_panner_choices();
1912         panner_ui().setup_pan ();
1913
1914         if (has_audio_outputs ()) {
1915                 panners.show_all ();
1916         } else {
1917                 panners.hide_all ();
1918         }
1919
1920         reset_strip_style ();
1921 }
1922
1923 void
1924 MixerStrip::set_button_names ()
1925 {
1926         switch (_width) {
1927         case Wide:
1928                 rec_enable_button->set_text (_("Rec"));
1929                 mute_button->set_text (_("Mute"));
1930                 monitor_input_button->set_text (_("In"));
1931                 monitor_disk_button->set_text (_("Disk"));
1932
1933                 if (_route && _route->solo_safe()) {
1934                         solo_button->set_visual_state (Gtkmm2ext::VisualState (solo_button->visual_state() | Gtkmm2ext::Insensitive));
1935                 } else {
1936                         solo_button->set_visual_state (Gtkmm2ext::VisualState (solo_button->visual_state() & ~Gtkmm2ext::Insensitive));
1937                 }
1938                 if (!Config->get_solo_control_is_listen_control()) {
1939                         solo_button->set_text (_("Solo"));
1940                 } else {
1941                         switch (Config->get_listen_position()) {
1942                         case AfterFaderListen:
1943                                 solo_button->set_text (_("AFL"));
1944                                 break;
1945                         case PreFaderListen:
1946                                 solo_button->set_text (_("PFL"));
1947                                 break;
1948                         }
1949                 }
1950                 solo_isolated_led->set_text (_("iso"));
1951                 solo_safe_led->set_text (_("lock"));
1952                 break;
1953
1954         default:
1955                 rec_enable_button->set_text (_("R"));
1956                 mute_button->set_text (_("M"));
1957                 monitor_input_button->set_text (_("I"));
1958                 monitor_disk_button->set_text (_("D"));
1959
1960                 if (_route && _route->solo_safe()) {
1961                         solo_button->set_visual_state (Gtkmm2ext::VisualState (solo_button->visual_state() | Gtkmm2ext::Insensitive));
1962                 } else {
1963                         solo_button->set_visual_state (Gtkmm2ext::VisualState (solo_button->visual_state() & ~Gtkmm2ext::Insensitive));
1964                 }
1965                 if (!Config->get_solo_control_is_listen_control()) {
1966                         solo_button->set_text (_("S"));
1967                 } else {
1968                         switch (Config->get_listen_position()) {
1969                         case AfterFaderListen:
1970                                 solo_button->set_text (_("A"));
1971                                 break;
1972                         case PreFaderListen:
1973                                 solo_button->set_text (_("P"));
1974                                 break;
1975                         }
1976                 }
1977
1978                 solo_isolated_led->set_text (_("i"));
1979                 solo_safe_led->set_text (_("L"));
1980                 break;
1981         }
1982
1983         if (_route) {
1984                 meter_point_button.set_text (meter_point_string (_route->meter_point()));
1985         } else {
1986                 meter_point_button.set_text ("");
1987         }
1988 }
1989
1990 PluginSelector*
1991 MixerStrip::plugin_selector()
1992 {
1993         return _mixer.plugin_selector();
1994 }
1995
1996 void
1997 MixerStrip::hide_things ()
1998 {
1999         processor_box.hide_things ();
2000 }
2001
2002 bool
2003 MixerStrip::input_active_button_press (GdkEventButton*)
2004 {
2005         /* nothing happens on press */
2006         return true;
2007 }
2008
2009 bool
2010 MixerStrip::input_active_button_release (GdkEventButton* ev)
2011 {
2012         boost::shared_ptr<MidiTrack> mt = midi_track ();
2013
2014         if (!mt) {
2015                 return true;
2016         }
2017
2018         boost::shared_ptr<RouteList> rl (new RouteList);
2019
2020         rl->push_back (route());
2021
2022         _session->set_exclusive_input_active (rl, !mt->input_active(),
2023                                               Keyboard::modifier_state_contains (ev->state, Keyboard::ModifierMask (Keyboard::PrimaryModifier|Keyboard::SecondaryModifier)));
2024
2025         return true;
2026 }
2027
2028 void
2029 MixerStrip::midi_input_status_changed ()
2030 {
2031         if (midi_input_enable_button) {
2032                 boost::shared_ptr<MidiTrack> mt = midi_track ();
2033                 assert (mt);
2034                 midi_input_enable_button->set_active (mt->input_active ());
2035         }
2036 }
2037
2038 string
2039 MixerStrip::state_id () const
2040 {
2041         return string_compose ("strip %1", _route->id().to_s());
2042 }
2043
2044 void
2045 MixerStrip::parameter_changed (string p)
2046 {
2047         if (p == _visibility.get_state_name()) {
2048                 /* The user has made changes to the mixer strip visibility, so get
2049                    our VisibilityGroup to reflect these changes in our widgets.
2050                 */
2051                 _visibility.set_state (Config->get_mixer_strip_visibility ());
2052         }
2053 }
2054
2055 /** Called to decide whether the solo isolate / solo lock button visibility should
2056  *  be overridden from that configured by the user.  We do this for the master bus.
2057  *
2058  *  @return optional value that is present if visibility state should be overridden.
2059  */
2060 boost::optional<bool>
2061 MixerStrip::override_solo_visibility () const
2062 {
2063         if (_route && _route->is_master ()) {
2064                 return boost::optional<bool> (false);
2065         }
2066         
2067         return boost::optional<bool> ();
2068 }
2069
2070 void
2071 MixerStrip::add_input_port (DataType t)
2072 {
2073         _route->input()->add_port ("", this, t);
2074 }
2075
2076 void
2077 MixerStrip::add_output_port (DataType t)
2078 {
2079         _route->output()->add_port ("", this, t);
2080 }
2081
2082 void
2083 MixerStrip::route_active_changed ()
2084 {
2085         reset_strip_style ();
2086 }
2087
2088 void
2089 MixerStrip::copy_processors ()
2090 {
2091         processor_box.processor_operation (ProcessorBox::ProcessorsCopy);
2092 }
2093
2094 void
2095 MixerStrip::cut_processors ()
2096 {
2097         processor_box.processor_operation (ProcessorBox::ProcessorsCut);
2098 }
2099
2100 void
2101 MixerStrip::paste_processors ()
2102 {
2103         processor_box.processor_operation (ProcessorBox::ProcessorsPaste);
2104 }
2105
2106 void
2107 MixerStrip::select_all_processors ()
2108 {
2109         processor_box.processor_operation (ProcessorBox::ProcessorsSelectAll);
2110 }
2111
2112 void
2113 MixerStrip::delete_processors ()
2114 {
2115         processor_box.processor_operation (ProcessorBox::ProcessorsDelete);
2116 }
2117
2118 void
2119 MixerStrip::toggle_processors ()
2120 {
2121         processor_box.processor_operation (ProcessorBox::ProcessorsToggleActive);
2122 }
2123
2124 void
2125 MixerStrip::ab_plugins ()
2126 {
2127         processor_box.processor_operation (ProcessorBox::ProcessorsAB);
2128 }
2129
2130 bool
2131 MixerStrip::level_meter_button_press (GdkEventButton* ev)
2132 {
2133         if (_current_delivery && boost::dynamic_pointer_cast<Send>(_current_delivery)) {
2134                 return false;
2135         }
2136         if (ev->button == 3) {
2137                 popup_level_meter_menu (ev);
2138                 return true;
2139         }
2140
2141         return false;
2142 }
2143
2144 void
2145 MixerStrip::popup_level_meter_menu (GdkEventButton* ev)
2146 {
2147         using namespace Gtk::Menu_Helpers;
2148
2149         Gtk::Menu* m = manage (new Menu);
2150         MenuList& items = m->items ();
2151
2152         RadioMenuItem::Group group;
2153
2154         _suspend_menu_callbacks = true;
2155         add_level_meter_item_point (items, group, _("Input"), MeterInput);
2156         add_level_meter_item_point (items, group, _("Pre-fader"), MeterPreFader);
2157         add_level_meter_item_point (items, group, _("Post-fader"), MeterPostFader);
2158         add_level_meter_item_point (items, group, _("Output"), MeterOutput);
2159         add_level_meter_item_point (items, group, _("Custom"), MeterCustom);
2160
2161         RadioMenuItem::Group tgroup;
2162         items.push_back (SeparatorElem());
2163
2164         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterPeak), MeterPeak);
2165         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterKrms),  MeterKrms);
2166         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterIEC1DIN), MeterIEC1DIN);
2167         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterIEC1NOR), MeterIEC1NOR);
2168         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterIEC2BBC), MeterIEC2BBC);
2169         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterIEC2EBU), MeterIEC2EBU);
2170         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterK20), MeterK20);
2171         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterK14), MeterK14);
2172         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterK12), MeterK12);
2173         add_level_meter_item_type (items, tgroup, ArdourMeter::meter_type_string(MeterVU),  MeterVU);
2174
2175         int _strip_type;
2176         if (_route->is_master()) {
2177                 _strip_type = 4;
2178         }
2179         else if (boost::dynamic_pointer_cast<AudioTrack>(_route) == 0
2180                         && boost::dynamic_pointer_cast<MidiTrack>(_route) == 0) {
2181                 /* non-master bus */
2182                 _strip_type = 3;
2183         }
2184         else if (boost::dynamic_pointer_cast<MidiTrack>(_route)) {
2185                 _strip_type = 2;
2186         }
2187         else {
2188                 _strip_type = 1;
2189         }
2190
2191         MeterType cmt = _route->meter_type();
2192         const std::string cmn = ArdourMeter::meter_type_string(cmt);
2193
2194         items.push_back (SeparatorElem());
2195         items.push_back (MenuElem (string_compose(_("Change all in Group to %1"), cmn),
2196                                 sigc::bind (SetMeterTypeMulti, -1, _route->route_group(), cmt)));
2197         items.push_back (MenuElem (string_compose(_("Change all to %1"), cmn),
2198                                 sigc::bind (SetMeterTypeMulti, 0, _route->route_group(), cmt)));
2199         items.push_back (MenuElem (string_compose(_("Change same track-type to %1"), cmn),
2200                                 sigc::bind (SetMeterTypeMulti, _strip_type, _route->route_group(), cmt)));
2201
2202         m->popup (ev->button, ev->time);
2203         _suspend_menu_callbacks = false;
2204 }
2205
2206 void
2207 MixerStrip::add_level_meter_item_point (Menu_Helpers::MenuList& items,
2208                 RadioMenuItem::Group& group, string const & name, MeterPoint point)
2209 {
2210         using namespace Menu_Helpers;
2211         
2212         items.push_back (RadioMenuElem (group, name, sigc::bind (sigc::mem_fun (*this, &MixerStrip::set_meter_point), point)));
2213         RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&items.back ());
2214         i->set_active (_route->meter_point() == point);
2215 }
2216
2217 void
2218 MixerStrip::set_meter_point (MeterPoint p)
2219 {
2220         if (_suspend_menu_callbacks) return;
2221         _route->set_meter_point (p);
2222 }
2223
2224 void
2225 MixerStrip::add_level_meter_item_type (Menu_Helpers::MenuList& items,
2226                 RadioMenuItem::Group& group, string const & name, MeterType type)
2227 {
2228         using namespace Menu_Helpers;
2229         
2230         items.push_back (RadioMenuElem (group, name, sigc::bind (sigc::mem_fun (*this, &MixerStrip::set_meter_type), type)));
2231         RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&items.back ());
2232         i->set_active (_route->meter_type() == type);
2233 }
2234
2235 void
2236 MixerStrip::set_meter_type (MeterType t)
2237 {
2238         if (_suspend_menu_callbacks) return;
2239         gpm.set_type (t);
2240 }