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