Merged with trunk revision 600
[ardour.git] / gtk2_ardour / mixer_strip.cc
1 /*
2     Copyright (C) 2000-2002 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     $Id$
19 */
20
21 #include <cmath>
22
23 #include <sigc++/bind.h>
24
25 #include <pbd/convert.h>
26
27 #include <gtkmm2ext/gtk_ui.h>
28 #include <gtkmm2ext/utils.h>
29 #include <gtkmm2ext/choice.h>
30 #include <gtkmm2ext/slider_controller.h>
31 #include <gtkmm2ext/stop_signal.h>
32 #include <gtkmm2ext/bindable_button.h>
33 #include <gtkmm2ext/doi.h>
34
35 #include <ardour/ardour.h>
36 #include <ardour/session.h>
37 #include <ardour/audioengine.h>
38 #include <ardour/route.h>
39 #include <ardour/audio_track.h>
40 #include <ardour/audio_diskstream.h>
41 #include <ardour/panner.h>
42 #include <ardour/send.h>
43 #include <ardour/insert.h>
44 #include <ardour/ladspa_plugin.h>
45 #include <ardour/connection.h>
46 #include <ardour/session_connection.h>
47
48 #include "ardour_ui.h"
49 #include "ardour_dialog.h"
50 #include "mixer_strip.h"
51 #include "mixer_ui.h"
52 #include "keyboard.h"
53 #include "plugin_selector.h"
54 #include "public_editor.h"
55
56 #include "plugin_ui.h"
57 #include "send_ui.h"
58 #include "io_selector.h"
59 #include "utils.h"
60 #include "gui_thread.h"
61
62 #include "i18n.h"
63
64 using namespace sigc;
65 using namespace ARDOUR;
66 using namespace Gtk;
67 using namespace Gtkmm2ext;
68
69 #ifdef VARISPEED_IN_MIXER_STRIP
70 static void 
71 speed_printer (char buf[32], Gtk::Adjustment& adj, void* arg)
72 {
73         float val = adj.get_value ();
74
75         if (val == 1.0) {
76                 strcpy (buf, "1");
77         } else {
78                 snprintf (buf, 32, "%.3f", val);
79         }
80 }
81 #endif 
82
83 MixerStrip::MixerStrip (Mixer_UI& mx, Session& sess, Route& rt, bool in_mixer)
84         : AxisView(sess),
85           RouteUI (rt, sess, _("Mute"), _("Solo"), _("Record")),
86           _mixer(mx),
87           pre_redirect_box (PreFader, sess, rt, mx.plugin_selector(), mx.selection(), in_mixer),
88           post_redirect_box (PostFader, sess, rt, mx.plugin_selector(), mx.selection(), in_mixer),
89           gpm (_route, sess),
90           panners (_route, sess),
91           button_table (3, 2),
92           middle_button_table (1, 2),
93           bottom_button_table (1, 2),
94           meter_point_label (_("pre")),
95           comment_button (_("Comments")),
96           speed_adjustment (1.0, 0.001, 4.0, 0.001, 0.1),
97           speed_spinner (&speed_adjustment, "MixerStripSpeedBase", true)
98
99 {
100         if (set_color_from_route()) {
101                 set_color (unique_random_color());
102         }
103
104         input_selector = 0;
105         output_selector = 0;
106         group_menu = 0;
107         _marked_for_display = false;
108         route_ops_menu = 0;
109         ignore_comment_edit = false;
110         ignore_toggle = false;
111         ignore_speed_adjustment = false;
112         comment_window = 0;
113         comment_area = 0;
114
115         width_button.add (*(manage (new Gtk::Image (get_xpm("lr.xpm")))));
116         hide_button.add (*(manage (new Gtk::Image (get_xpm("small_x.xpm")))));
117
118         input_label.set_text (_("Input"));
119         input_button.add (input_label);
120         input_button.set_name ("MixerIOButton");
121         input_label.set_name ("MixerIOButtonLabel");
122
123         output_label.set_text (_("Output"));
124         output_button.add (output_label);
125         output_button.set_name ("MixerIOButton");
126         output_label.set_name ("MixerIOButtonLabel");
127
128
129         _route.meter_change.connect (mem_fun(*this, &MixerStrip::meter_changed));
130                 meter_point_button.add (meter_point_label);
131                 meter_point_button.set_name ("MixerStripMeterPreButton");
132                 meter_point_label.set_name ("MixerStripMeterPreButton");
133                 
134                 switch (_route.meter_point()) {
135                 case MeterInput:
136                         meter_point_label.set_text (_("input"));
137                         break;
138                         
139                 case MeterPreFader:
140                         meter_point_label.set_text (_("pre"));
141                         break;
142                         
143                 case MeterPostFader:
144                         meter_point_label.set_text (_("post"));
145                         break;
146                 }
147                 
148                 /* TRANSLATORS: this string should be longest of the strings
149                    used to describe meter points. In english, its "input".
150                 */
151                 
152                 set_size_request_to_display_given_text (meter_point_button, _("tupni"), 5, 5);
153
154
155                 bottom_button_table.attach (meter_point_button, 1, 2, 0, 1);
156
157
158         meter_point_button.signal_button_press_event().connect (mem_fun (gpm, &GainMeter::meter_press), false);
159         /* XXX what is this meant to do? */
160         //meter_point_button.signal_button_release_event().connect (mem_fun (gpm, &GainMeter::meter_release), false);
161
162         rec_enable_button->set_name ("MixerRecordEnableButton");
163         rec_enable_button->unset_flags (Gtk::CAN_FOCUS);
164
165         solo_button->set_name ("MixerSoloButton");
166         mute_button->set_name ("MixerMuteButton");
167
168         hide_button.set_events (hide_button.get_events() & ~(Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK));
169
170         width_button.unset_flags (Gtk::CAN_FOCUS);
171         hide_button.unset_flags (Gtk::CAN_FOCUS);
172         input_button.unset_flags (Gtk::CAN_FOCUS);
173         output_button.unset_flags (Gtk::CAN_FOCUS);
174         solo_button->unset_flags (Gtk::CAN_FOCUS);
175         mute_button->unset_flags (Gtk::CAN_FOCUS);
176
177         button_table.set_homogeneous (true);
178         button_table.set_spacings (0);
179
180         button_table.attach (name_button, 0, 2, 0, 1);
181         button_table.attach (input_button, 0, 2, 1, 2);
182
183         middle_button_table.set_homogeneous (true);
184         middle_button_table.set_spacings (0);
185         middle_button_table.attach (*mute_button, 0, 1, 0, 1);
186         middle_button_table.attach (*solo_button, 1, 2, 0, 1);
187
188         bottom_button_table.set_col_spacings (0);
189         bottom_button_table.set_homogeneous (true);
190         bottom_button_table.attach (group_button, 0, 1, 0, 1);
191
192         if (is_audio_track()) {
193                 
194                 AudioTrack* at = dynamic_cast<AudioTrack*>(&_route);
195
196                 at->FreezeChange.connect (mem_fun(*this, &MixerStrip::map_frozen));
197
198 #ifdef VARISPEED_IN_MIXER_STRIP
199                 speed_adjustment.signal_value_changed().connect (mem_fun(*this, &MixerStrip::speed_adjustment_changed));
200                 
201                 speed_frame.set_name ("BaseFrame");
202                 speed_frame.set_shadow_type (Gtk::SHADOW_IN);
203                 speed_frame.add (speed_spinner);
204                 
205                 speed_spinner.set_print_func (speed_printer, 0);
206
207                 ARDOUR_UI::instance()->tooltips().set_tip (speed_spinner, _("Varispeed"));
208
209                 button_table.attach (speed_frame, 0, 2, 5, 6);
210 #endif /* VARISPEED_IN_MIXER_STRIP */
211
212                 button_table.attach (*rec_enable_button, 0, 2, 2, 3);
213         }
214
215         name_button.add (name_label);
216         name_button.set_name ("MixerNameButton");
217         Gtkmm2ext::set_size_request_to_display_given_text (name_button, "longest label", 2, 2);
218
219         name_label.set_name ("MixerNameButtonLabel");
220         if (_route.phase_invert()) {
221                 name_label.set_text (X_("Ø ") + name_label.get_text());
222         } else {
223                 name_label.set_text (_route.name());
224         }
225
226         group_button.add (group_label);
227         group_button.set_name ("MixerGroupButton");
228         group_label.set_name ("MixerGroupButtonLabel");
229
230         comment_button.set_name ("MixerCommentButton");
231
232         ARDOUR_UI::instance()->tooltips().set_tip (comment_button, _route.comment()=="" ?
233                                                         _("Click to Add/Edit Comments"):
234                                                         _route.comment());
235
236         comment_button.signal_clicked().connect (mem_fun(*this, &MixerStrip::comment_button_clicked));
237         
238         global_vpacker.set_border_width (0);
239         global_vpacker.set_spacing (0);
240
241         Gtk::VBox *whvbox = manage (new Gtk::VBox);
242
243         width_button.set_name ("MixerWidthButton");
244         hide_button.set_name ("MixerHideButton");
245
246         width_button.signal_clicked().connect (mem_fun(*this, &MixerStrip::width_clicked));
247         hide_button.signal_clicked().connect (mem_fun(*this, &MixerStrip::hide_clicked));
248
249         width_hide_box.pack_start (width_button, false, true);
250         width_hide_box.pack_end (hide_button, false, true);
251         Gtk::Alignment *gain_meter_alignment = Gtk::manage(new Gtk::Alignment());
252         gain_meter_alignment->set_padding(0, 4, 0, 0);
253         gain_meter_alignment->add(gpm);
254
255         whvbox->pack_start (width_hide_box, true, true);
256
257         global_vpacker.pack_start (*whvbox, Gtk::PACK_SHRINK);
258         global_vpacker.pack_start (button_table,Gtk::PACK_SHRINK);
259         global_vpacker.pack_start (pre_redirect_box, true, true);
260         global_vpacker.pack_start (middle_button_table,Gtk::PACK_SHRINK);
261         global_vpacker.pack_start (*gain_meter_alignment,Gtk::PACK_SHRINK);
262         global_vpacker.pack_start (bottom_button_table,Gtk::PACK_SHRINK);
263         global_vpacker.pack_start (post_redirect_box, true, true);
264         global_vpacker.pack_start (panners, Gtk::PACK_SHRINK);
265         global_vpacker.pack_start (output_button, Gtk::PACK_SHRINK);
266         global_vpacker.pack_start (comment_button, Gtk::PACK_SHRINK);
267
268         global_frame.add (global_vpacker);
269         global_frame.set_shadow_type (Gtk::SHADOW_IN);
270         global_frame.set_name ("BaseFrame");
271
272         add (global_frame);
273
274         /* force setting of visible selected status */
275
276         _selected = true;
277         set_selected (false);
278
279         _packed = false;
280         _embedded = false;
281
282         _session.engine().Stopped.connect (mem_fun(*this, &MixerStrip::engine_stopped));
283         _session.engine().Running.connect (mem_fun(*this, &MixerStrip::engine_running));
284         _route.input_changed.connect (mem_fun(*this, &MixerStrip::input_changed));
285         _route.output_changed.connect (mem_fun(*this, &MixerStrip::output_changed));
286         _route.mute_changed.connect (mem_fun(*this, &RouteUI::mute_changed));
287         _route.solo_changed.connect (mem_fun(*this, &RouteUI::solo_changed));
288         _route.solo_safe_changed.connect (mem_fun(*this, &RouteUI::solo_changed));
289         _route.mix_group_changed.connect (mem_fun(*this, &MixerStrip::mix_group_changed));
290         _route.panner().Changed.connect (mem_fun(*this, &MixerStrip::connect_to_pan));
291
292         if (is_audio_track()) {
293                 audio_track()->diskstream_changed.connect (mem_fun(*this, &MixerStrip::diskstream_changed));
294                 get_diskstream()->speed_changed.connect (mem_fun(*this, &MixerStrip::speed_changed));
295         }
296
297         _route.name_changed.connect (mem_fun(*this, &RouteUI::name_changed));
298         _route.comment_changed.connect (mem_fun(*this, &MixerStrip::comment_changed));
299         _route.gui_changed.connect (mem_fun(*this, &MixerStrip::route_gui_changed));
300
301         input_button.signal_button_press_event().connect (mem_fun(*this, &MixerStrip::input_press), false);
302         output_button.signal_button_press_event().connect (mem_fun(*this, &MixerStrip::output_press), false);
303
304         rec_enable_button->signal_button_press_event().connect (mem_fun(*this, &RouteUI::rec_enable_press));
305         solo_button->signal_button_press_event().connect (mem_fun(*this, &RouteUI::solo_press), false);
306         solo_button->signal_button_release_event().connect (mem_fun(*this, &RouteUI::solo_release), false);
307         mute_button->signal_button_press_event().connect (mem_fun(*this, &RouteUI::mute_press), false);
308         mute_button->signal_button_release_event().connect (mem_fun(*this, &RouteUI::mute_release), false);
309
310         name_button.signal_button_press_event().connect (mem_fun(*this, &MixerStrip::name_button_button_press), false);
311         group_button.signal_button_press_event().connect (mem_fun(*this, &MixerStrip::select_mix_group), false);
312
313         _width = (Width) -1;
314         set_stuff_from_route ();
315
316         /* start off as a passthru strip. we'll correct this, if necessary,
317            in update_diskstream_display().
318         */
319
320         set_name ("AudioTrackStripBase");
321
322         /* now force an update of all the various elements */
323
324         pre_redirect_box.update();
325         post_redirect_box.update();
326         mute_changed (0);
327         solo_changed (0);
328         name_changed (0);
329         comment_changed (0);
330         mix_group_changed (0);
331
332         connect_to_pan ();
333
334         panners.setup_pan ();
335
336         if (is_audio_track()) {
337                 speed_changed ();
338         }
339
340         update_diskstream_display ();
341         update_input_display ();
342         update_output_display ();
343
344         add_events (Gdk::BUTTON_RELEASE_MASK);
345 }
346
347 MixerStrip::~MixerStrip ()
348 {
349         GoingAway(); /* EMIT_SIGNAL */
350
351         if (input_selector) {
352                 delete input_selector;
353         }
354
355         if (output_selector) {
356                 delete output_selector;
357         }
358 }
359
360 void
361 MixerStrip::set_stuff_from_route ()
362 {
363         XMLProperty *prop;
364         
365         ensure_xml_node ();
366
367         if ((prop = xml_node->property ("strip_width")) != 0) {
368                 if (prop->value() == "wide") {
369                         set_width (Wide);
370                 } else if (prop->value() == "narrow") {
371                         set_width (Narrow);
372                 }
373                 else {
374                         error << string_compose(_("unknown strip width \"%1\" in XML GUI information"), prop->value()) << endmsg;
375                         set_width (Wide);
376                 }
377         }
378         else {
379                 set_width (Wide);
380         }
381
382         if ((prop = xml_node->property ("shown_mixer")) != 0) {
383                 if (prop->value() == "no") {
384                         _marked_for_display = false;
385                 } else {
386                         _marked_for_display = true;
387                 }
388         }
389         else {
390                 /* backwards compatibility */
391                 _marked_for_display = true;
392         }
393 }
394
395 void
396 MixerStrip::set_width (Width w)
397 {
398         /* always set the gpm width again, things may be hidden */
399         gpm.set_width (w);
400         panners.set_width (w);
401         pre_redirect_box.set_width (w);
402         post_redirect_box.set_width (w);
403         
404         if (_width == w) {
405                 return;
406         }
407
408         ensure_xml_node ();
409         
410         _width = w;
411
412         switch (w) {
413         case Wide:
414                 set_size_request (-1, -1);
415                 xml_node->add_property ("strip_width", "wide");
416
417                 rec_enable_button->set_label (_("record"));
418                 mute_button->set_label  (_("mute"));
419                 solo_button->set_label (_("solo"));
420
421                 if (_route.comment() == "") {
422                        comment_button.set_label (_("comments"));
423                 } else {
424                        comment_button.set_label (_("*comments*"));
425                 }
426
427                 gpm.gain_automation_style_button.set_label (gpm.astyle_string(_route.gain_automation_curve().automation_style()));
428                 gpm.gain_automation_state_button.set_label (gpm.astate_string(_route.gain_automation_curve().automation_state()));
429                 panners.pan_automation_style_button.set_label (panners.astyle_string(_route.panner().automation_style()));
430                 panners.pan_automation_state_button.set_label (panners.astate_string(_route.panner().automation_state()));
431                 Gtkmm2ext::set_size_request_to_display_given_text (name_button, "long", 2, 2);
432                 break;
433
434         case Narrow:
435                 set_size_request (50, -1);
436                 xml_node->add_property ("strip_width", "narrow");
437
438                 rec_enable_button->set_label (_("Rec"));
439                 mute_button->set_label (_("M"));
440                 solo_button->set_label (_("S"));
441
442                 if (_route.comment() == "") {
443                        comment_button.set_label (_("Cmt"));
444                 } else {
445                        comment_button.set_label (_("*Cmt*"));
446                 }
447
448                 gpm.gain_automation_style_button.set_label (gpm.short_astyle_string(_route.gain_automation_curve().automation_style()));
449                 gpm.gain_automation_state_button.set_label (gpm.short_astate_string(_route.gain_automation_curve().automation_state()));
450                 panners.pan_automation_style_button.set_label (panners.short_astyle_string(_route.panner().automation_style()));
451                 panners.pan_automation_state_button.set_label (panners.short_astate_string(_route.panner().automation_state()));
452                 Gtkmm2ext::set_size_request_to_display_given_text (name_button, "longest label", 2, 2);
453                 break;
454         }
455
456         update_input_display ();
457         update_output_display ();
458         mix_group_changed (0);
459         name_changed (0);
460
461 }
462
463 void
464 MixerStrip::set_packed (bool yn)
465 {
466         _packed = yn;
467
468         ensure_xml_node ();
469
470         if (_packed) {
471                 xml_node->add_property ("shown_mixer", "yes");
472         } else {
473                 xml_node->add_property ("shown_mixer", "no");
474         }
475 }
476
477
478 gint
479 MixerStrip::output_press (GdkEventButton *ev)
480 {
481         using namespace Menu_Helpers;
482         if (!_session.engine().connected()) {
483                 MessageDialog msg (_("Not connected to JACK - no I/O changes are possible"));
484                 msg.run ();
485                 return true;
486         }
487
488         MenuList& citems = output_menu.items();
489         switch (ev->button) {
490
491         case 1:
492                 output_menu.set_name ("ArdourContextMenu");
493                 citems.clear();
494                 
495                 citems.push_back (MenuElem (_("Edit"), mem_fun(*this, &MixerStrip::edit_output_configuration)));
496                 citems.push_back (SeparatorElem());
497                 citems.push_back (MenuElem (_("Disconnect"), mem_fun (*(static_cast<RouteUI*>(this)), &RouteUI::disconnect_output)));
498                 citems.push_back (SeparatorElem());
499                 
500                 _session.foreach_connection (this, &MixerStrip::add_connection_to_output_menu);
501                 
502                 output_menu.popup (1, ev->time);
503                 break;
504                 
505         default:
506                 break;
507         }
508         return TRUE;
509 }
510
511 void
512 MixerStrip::edit_output_configuration ()
513 {
514         if (output_selector == 0) {
515                 output_selector = new IOSelectorWindow (_session, _route, false);
516         } 
517
518         if (output_selector->is_visible()) {
519                 output_selector->get_toplevel()->get_window()->raise();
520         } else {
521                 output_selector->show_all ();
522         }
523 }
524
525 void
526 MixerStrip::edit_input_configuration ()
527 {
528         if (input_selector == 0) {
529                 input_selector = new IOSelectorWindow (_session, _route, true);
530         } 
531
532         if (input_selector->is_visible()) {
533                 input_selector->get_toplevel()->get_window()->raise();
534         } else {
535                 input_selector->show_all ();
536         }
537 }
538
539 gint
540 MixerStrip::input_press (GdkEventButton *ev)
541 {
542         using namespace Menu_Helpers;
543
544         MenuList& citems = input_menu.items();
545         input_menu.set_name ("ArdourContextMenu");
546         citems.clear();
547         
548         if (!_session.engine().connected()) {
549                 MessageDialog msg (_("Not connected to JACK - no I/O changes are possible"));
550                 msg.run ();
551                 return true;
552         }
553         
554         switch (ev->button) {
555
556         case 1:
557
558 #if ADVANCED_ROUTE_DISKSTREAM_CONNECTIVITY
559                 if (is_audio_track()) {
560                         citems.push_back (MenuElem (_("Track"), mem_fun(*this, &MixerStrip::select_stream_input)));
561                 }
562 #endif
563                 citems.push_back (MenuElem (_("Edit"), mem_fun(*this, &MixerStrip::edit_input_configuration)));
564                 citems.push_back (SeparatorElem());
565                 citems.push_back (MenuElem (_("Disconnect"), mem_fun (*(static_cast<RouteUI*>(this)), &RouteUI::disconnect_input)));
566                 citems.push_back (SeparatorElem());
567                 
568                 _session.foreach_connection (this, &MixerStrip::add_connection_to_input_menu);
569                 input_menu.popup (1, ev->time);
570                 break;
571                 
572         default:
573                 break;
574         }
575         return TRUE;
576 }
577
578 void
579 MixerStrip::connection_input_chosen (ARDOUR::Connection *c)
580 {
581         if (!ignore_toggle) {
582
583                 try { 
584                         _route.use_input_connection (*c, this);
585                 }
586
587                 catch (AudioEngine::PortRegistrationFailure& err) {
588                         error << _("could not register new ports required for that connection")
589                               << endmsg;
590                 }
591         }
592 }
593
594 void
595 MixerStrip::connection_output_chosen (ARDOUR::Connection *c)
596 {
597         if (!ignore_toggle) {
598
599                 try { 
600                         _route.use_output_connection (*c, this);
601                 }
602
603                 catch (AudioEngine::PortRegistrationFailure& err) {
604                         error << _("could not register new ports required for that connection")
605                               << endmsg;
606                 }
607         }
608 }
609
610 void
611 MixerStrip::add_connection_to_input_menu (ARDOUR::Connection* c)
612 {
613         using namespace Menu_Helpers;
614
615         if (dynamic_cast<InputConnection *> (c) == 0) {
616                 return;
617         }
618
619         MenuList& citems = input_menu.items();
620         
621         if (c->nports() == _route.n_inputs()) {
622
623                 citems.push_back (CheckMenuElem (c->name(), bind (mem_fun(*this, &MixerStrip::connection_input_chosen), c)));
624                 
625                 ARDOUR::Connection *current = _route.input_connection();
626                 
627                 if (current == c) {
628                         ignore_toggle = true;
629                         dynamic_cast<CheckMenuItem *> (&citems.back())->set_active (true);
630                         ignore_toggle = false;
631                 }
632         }
633 }
634
635 void
636 MixerStrip::add_connection_to_output_menu (ARDOUR::Connection* c)
637 {
638         using namespace Menu_Helpers;
639
640         if (dynamic_cast<OutputConnection *> (c) == 0) {
641                 return;
642         }
643
644         if (c->nports() == _route.n_outputs()) {
645
646                 MenuList& citems = output_menu.items();
647                 citems.push_back (CheckMenuElem (c->name(), bind (mem_fun(*this, &MixerStrip::connection_output_chosen), c)));
648                 
649                 ARDOUR::Connection *current = _route.output_connection();
650                 
651                 if (current == c) {
652                         ignore_toggle = true;
653                         dynamic_cast<CheckMenuItem *> (&citems.back())->set_active (true);
654                         ignore_toggle = false;
655                 }
656         }
657 }
658
659 void
660 MixerStrip::select_stream_input ()
661 {
662         using namespace Menu_Helpers;
663
664         Menu *stream_menu = manage (new Menu);
665         MenuList& items = stream_menu->items();
666         stream_menu->set_name ("ArdourContextMenu");
667         
668         Session::AudioDiskstreamList streams = _session.audio_disk_streams();
669
670         for (Session::AudioDiskstreamList::iterator i = streams.begin(); i != streams.end(); ++i) {
671
672                 if (!(*i)->hidden()) {
673
674                         items.push_back (CheckMenuElem ((*i)->name(), bind (mem_fun(*this, &MixerStrip::stream_input_chosen), *i)));
675                         
676                         if (get_diskstream() == *i) {
677                                 ignore_toggle = true;
678                                 static_cast<CheckMenuItem *> (&items.back())->set_active (true);
679                                 ignore_toggle = false;
680                         } 
681                 }
682         }
683         
684         stream_menu->popup (1, 0);
685 }
686
687 void
688 MixerStrip::stream_input_chosen (AudioDiskstream *stream)
689 {
690         if (is_audio_track()) {
691                 audio_track()->set_diskstream (*stream, this);
692         }
693 }
694
695 void
696 MixerStrip::update_diskstream_display ()
697 {
698         if (is_audio_track()) {
699
700                 map_frozen ();
701
702                 update_input_display ();
703
704                 if (input_selector) {
705                         input_selector->hide_all ();
706                 }
707
708                 show_route_color ();
709
710         } else {
711
712                 map_frozen ();
713
714                 update_input_display ();
715                 show_passthru_color ();
716         }
717 }
718
719 void
720 MixerStrip::connect_to_pan ()
721 {
722         ENSURE_GUI_THREAD(mem_fun(*this, &MixerStrip::connect_to_pan));
723         
724         panstate_connection.disconnect ();
725         panstyle_connection.disconnect ();
726
727         if (!_route.panner().empty()) {
728                 StreamPanner* sp = _route.panner().front();
729
730                 panstate_connection = sp->automation().automation_state_changed.connect (mem_fun(panners, &PannerUI::pan_automation_state_changed));
731                 panstyle_connection = sp->automation().automation_style_changed.connect (mem_fun(panners, &PannerUI::pan_automation_style_changed));
732         }
733
734         panners.pan_changed (this);
735 }
736
737 void
738 MixerStrip::update_input_display ()
739 {
740         ARDOUR::Connection *c;
741
742         if ((c = _route.input_connection()) != 0) {
743                 input_label.set_text (c->name());
744         } else {
745                 switch (_width) {
746                 case Wide:
747                         input_label.set_text (_(" Input"));
748                         break;
749                 case Narrow:
750                         input_label.set_text (_("I"));
751                         break;
752                 }
753         }
754         panners.setup_pan ();
755 }
756
757 void
758 MixerStrip::update_output_display ()
759 {
760         ARDOUR::Connection *c;
761
762         if ((c = _route.output_connection()) != 0) {
763                 output_label.set_text (c->name());
764         } else {
765                 switch (_width) {
766                 case Wide:
767                         output_label.set_text (_("Output"));
768                         break;
769                 case Narrow:
770                         output_label.set_text (_("O"));
771                         break;
772                 }
773         }
774         gpm.setup_meters ();
775         panners.setup_pan ();
776 }
777
778 void
779 MixerStrip::fast_update ()
780 {
781         gpm.update_meters ();
782 }
783
784 void
785 MixerStrip::diskstream_changed (void *src)
786 {
787         Gtkmm2ext::UI::instance()->call_slot (mem_fun(*this, &MixerStrip::update_diskstream_display));
788 }       
789
790 void
791 MixerStrip::input_changed (IOChange change, void *src)
792 {
793         Gtkmm2ext::UI::instance()->call_slot (mem_fun(*this, &MixerStrip::update_input_display));
794 }
795
796 void
797 MixerStrip::output_changed (IOChange change, void *src)
798 {
799         Gtkmm2ext::UI::instance()->call_slot (mem_fun(*this, &MixerStrip::update_output_display));
800 }
801
802 void
803 MixerStrip::comment_button_clicked ()
804 {
805         if (comment_window == 0) {
806                 setup_comment_editor ();
807         }
808
809         int x, y, cw_width, cw_height;
810
811         if (comment_window->is_visible()) {
812                string str =  comment_area->get_buffer()->get_text();
813                if (_route.comment() != str) {
814                  _route.set_comment (str, this);
815
816                  switch (_width) {
817                    
818                  case Wide:
819                    if (! str.empty()) {
820                      comment_button.set_label (_("*Comments*"));
821                    } else {
822                      comment_button.set_label (_("Comments"));
823                       }
824                    break;
825                    
826                  case Narrow:
827                    if (! str.empty()) {
828                      comment_button.set_label (_("*Cmt*"));
829                    } else {
830                      comment_button.set_label (_("Cmt"));
831                    } 
832                    break;
833                  }
834                  
835                  ARDOUR_UI::instance()->tooltips().set_tip (comment_button, 
836                                                             str.empty() ? _("Click to Add/Edit Comments") : str);
837                }
838                comment_window->hide ();
839                return;
840         } 
841         comment_window->get_size (cw_width, cw_height);
842         comment_window->get_position(x, y);
843         comment_window->move(x, y - (cw_height / 2) - 45);
844         /* 
845            half the dialog height minus the comments button height 
846            with some window decoration fudge thrown in.
847         */
848
849         comment_window->show();
850         comment_window->present();
851
852 }
853
854 void
855 MixerStrip::setup_comment_editor ()
856 {
857         string title;
858         title = _route.name();
859         title += _(": comment editor");
860
861         comment_window = new ArdourDialog (title, false);
862         comment_window->set_position (Gtk::WIN_POS_MOUSE);
863         comment_window->set_skip_taskbar_hint (true);
864
865         comment_area = manage (new TextView());
866         comment_area->set_name ("MixerTrackCommentArea");
867         comment_area->set_size_request (110, 178);
868         comment_area->set_wrap_mode (WRAP_WORD);
869         comment_area->set_editable (true);
870         comment_area->get_buffer()->set_text (_route.comment());
871         comment_area->show ();
872
873         comment_window->get_vbox()->pack_start (*comment_area);
874         comment_window->get_action_area()->hide();
875 }
876
877 void
878 MixerStrip::comment_changed (void *src)
879 {
880         ENSURE_GUI_THREAD(bind (mem_fun(*this, &MixerStrip::comment_changed), src));
881         
882         if (src != this) {
883                 ignore_comment_edit = true;
884                 if (comment_area) {
885                         comment_area->get_buffer()->set_text (_route.comment());
886                 }
887                 ignore_comment_edit = false;
888         }
889 }
890
891 void
892 MixerStrip::set_mix_group (RouteGroup *rg)
893 {
894         _route.set_mix_group (rg, this);
895 }
896
897 void
898 MixerStrip::add_mix_group_to_menu (RouteGroup *rg, RadioMenuItem::Group* group)
899 {
900         using namespace Menu_Helpers;
901
902         MenuList& items = group_menu->items();
903
904         items.push_back (RadioMenuElem (*group, rg->name(), bind (mem_fun(*this, &MixerStrip::set_mix_group), rg)));
905
906         if (_route.mix_group() == rg) {
907                 static_cast<RadioMenuItem*>(&items.back())->set_active ();
908         }
909 }
910
911 bool
912 MixerStrip::select_mix_group (GdkEventButton *ev)
913 {
914         using namespace Menu_Helpers;
915
916         if (group_menu == 0) {
917                 group_menu = new Menu;
918         } 
919         group_menu->set_name ("ArdourContextMenu");
920         MenuList& items = group_menu->items();
921         RadioMenuItem::Group group;
922
923         switch (ev->button) {
924         case 1:
925
926                 items.clear ();
927                 items.push_back (RadioMenuElem (group, _("No group"), bind (mem_fun(*this, &MixerStrip::set_mix_group), (RouteGroup *) 0)));
928
929                 _session.foreach_mix_group (bind (mem_fun (*this, &MixerStrip::add_mix_group_to_menu), &group));
930
931                 group_menu->popup (1, ev->time);
932                 break;
933
934         default:
935                 break;
936         }
937         
938         return true;
939 }       
940
941 void
942 MixerStrip::mix_group_changed (void *ignored)
943 {
944         ENSURE_GUI_THREAD(bind (mem_fun(*this, &MixerStrip::mix_group_changed), ignored));
945         
946         RouteGroup *rg = _route.mix_group();
947         
948         if (rg) {
949                 group_label.set_text (rg->name());
950         } else {
951                 switch (_width) {
952                 case Wide:
953                         group_label.set_text (_("Grp"));
954                         break;
955                 case Narrow:
956                         group_label.set_text (_("~G"));
957                         break;
958                 }
959         }
960 }
961
962
963 void 
964 MixerStrip::route_gui_changed (string what_changed, void* ignored)
965 {
966         ENSURE_GUI_THREAD(bind (mem_fun(*this, &MixerStrip::route_gui_changed), what_changed, ignored));
967         
968         if (what_changed == "color") {
969                 if (set_color_from_route () == 0) {
970                         show_route_color ();
971                 }
972         }
973 }
974
975 void
976 MixerStrip::show_route_color ()
977 {
978         name_button.modify_bg (STATE_NORMAL, color());
979         route_active_changed ();
980 }
981
982 void
983 MixerStrip::show_passthru_color ()
984 {
985         route_active_changed ();
986 }
987
988 void
989 MixerStrip::build_route_ops_menu ()
990 {
991         using namespace Menu_Helpers;
992
993         route_ops_menu = manage (new Menu);
994         route_ops_menu->set_name ("ArdourContextMenu");
995
996         MenuList& items = route_ops_menu->items();
997         
998         items.push_back (MenuElem (_("Rename"), mem_fun(*this, &RouteUI::route_rename)));
999         items.push_back (SeparatorElem());
1000         items.push_back (CheckMenuElem (_("Active"), mem_fun (*this, &RouteUI::toggle_route_active)));
1001         route_active_menu_item = dynamic_cast<CheckMenuItem *> (&items.back());
1002         route_active_menu_item->set_active (_route.active());
1003         items.push_back (SeparatorElem());
1004         items.push_back (CheckMenuElem (_("Invert Polarity"), mem_fun (*this, &RouteUI::toggle_polarity)));
1005         polarity_menu_item = dynamic_cast<CheckMenuItem *> (&items.back());
1006         polarity_menu_item->set_active (_route.phase_invert());
1007
1008         build_remote_control_menu ();
1009         
1010         items.push_back (SeparatorElem());
1011         items.push_back (MenuElem (_("Remote Control ID"), *remote_control_menu));
1012
1013         items.push_back (SeparatorElem());
1014         items.push_back (MenuElem (_("Remove"), mem_fun(*this, &RouteUI::remove_this_route)));
1015 }
1016
1017 gint
1018 MixerStrip::name_button_button_press (GdkEventButton* ev)
1019 {
1020         if (ev->button == 1) {
1021                 list_route_operations ();
1022                 route_ops_menu->popup (1, ev->time);
1023         }
1024         return FALSE;
1025 }
1026
1027 void
1028 MixerStrip::list_route_operations ()
1029 {
1030         if (route_ops_menu == 0) {
1031                 build_route_ops_menu ();
1032         }
1033         
1034         refresh_remote_control_menu();
1035 }
1036
1037
1038 void
1039 MixerStrip::speed_adjustment_changed ()
1040 {
1041         /* since there is a usable speed adjustment, there has to be a diskstream */
1042         if (!ignore_speed_adjustment) {
1043                 get_diskstream()->set_speed (speed_adjustment.get_value());
1044         }
1045 }
1046
1047 void
1048 MixerStrip::speed_changed ()
1049 {
1050         Gtkmm2ext::UI::instance()->call_slot (mem_fun(*this, &MixerStrip::update_speed_display));
1051 }
1052
1053 void
1054 MixerStrip::update_speed_display ()
1055 {
1056         float val;
1057         
1058         val = get_diskstream()->speed();
1059
1060         if (val != 1.0) {
1061                 speed_spinner.set_name ("MixerStripSpeedBaseNotOne");
1062         } else {
1063                 speed_spinner.set_name ("MixerStripSpeedBase");
1064         }
1065
1066         if (speed_adjustment.get_value() != val) {
1067                 ignore_speed_adjustment = true;
1068                 speed_adjustment.set_value (val);
1069                 ignore_speed_adjustment = false;
1070         }
1071 }                       
1072
1073
1074 void
1075 MixerStrip::set_selected (bool yn)
1076 {
1077         AxisView::set_selected (yn);
1078         if (_selected) {
1079                 global_frame.set_shadow_type (Gtk::SHADOW_ETCHED_OUT);
1080                 global_frame.set_name ("MixerStripSelectedFrame");
1081         } else {
1082                 global_frame.set_shadow_type (Gtk::SHADOW_IN);
1083                 global_frame.set_name ("MixerStripFrame");
1084         }
1085         global_frame.queue_draw ();
1086 }
1087
1088 void
1089 MixerStrip::name_changed (void *src)
1090 {
1091         switch (_width) {
1092         case Wide:
1093                 RouteUI::name_changed (src);
1094                 break;
1095         case Narrow:
1096                 name_label.set_text (PBD::short_version (_route.name(), 5));
1097                 break;
1098         }
1099         if (_route.phase_invert()) {
1100                 name_label.set_text (X_("Ø ") + name_label.get_text());
1101         }
1102 }
1103
1104 void
1105 MixerStrip::width_clicked ()
1106 {
1107         switch (_width) {
1108         case Wide:
1109                 set_width (Narrow);
1110                 break;
1111         case Narrow:
1112                 set_width (Wide);
1113                 break;
1114         }
1115 }
1116
1117 void
1118 MixerStrip::hide_clicked ()
1119 {
1120         if (_embedded) {
1121                  Hiding(); /* EMIT_SIGNAL */
1122         } else {
1123                 _mixer.hide_strip (this);
1124         }
1125 }
1126
1127 void
1128 MixerStrip::set_embedded (bool yn)
1129 {
1130         _embedded = yn;
1131 }
1132
1133 void
1134 MixerStrip::map_frozen ()
1135 {
1136         ENSURE_GUI_THREAD (mem_fun(*this, &MixerStrip::map_frozen));
1137
1138         AudioTrack* at = dynamic_cast<AudioTrack*>(&_route);
1139
1140         if (at) {
1141                 switch (at->freeze_state()) {
1142                 case AudioTrack::Frozen:
1143                         pre_redirect_box.set_sensitive (false);
1144                         post_redirect_box.set_sensitive (false);
1145                         speed_spinner.set_sensitive (false);
1146                         break;
1147                 default:
1148                         pre_redirect_box.set_sensitive (true);
1149                         post_redirect_box.set_sensitive (true);
1150                         speed_spinner.set_sensitive (true);
1151                         break;
1152                 }
1153         }
1154         _route.foreach_redirect (this, &MixerStrip::hide_redirect_editor);
1155 }
1156
1157 void
1158 MixerStrip::hide_redirect_editor (Redirect* redirect)
1159 {
1160         void* gui = redirect->get_gui ();
1161         
1162         if (gui) {
1163                 static_cast<Gtk::Widget*>(gui)->hide ();
1164         }
1165 }
1166
1167 void
1168 MixerStrip::route_active_changed ()
1169 {
1170         RouteUI::route_active_changed ();
1171
1172         if (is_audio_track()) {
1173                 if (_route.active()) {
1174                         set_name ("AudioTrackStripBase");
1175                         gpm.set_meter_strip_name ("AudioTrackStripBase");
1176                 } else {
1177                         set_name ("AudioTrackStripBaseInactive");
1178                         gpm.set_meter_strip_name ("AudioTrackStripBaseInactive");
1179                 }
1180                 gpm.set_fader_name ("AudioTrackFader");
1181         } else {
1182                 if (_route.active()) {
1183                         set_name ("AudioBusStripBase");
1184                         gpm.set_meter_strip_name ("AudioBusStripBase");
1185                 } else {
1186                         set_name ("AudioBusStripBaseInactive");
1187                         gpm.set_meter_strip_name ("AudioBusStripBaseInactive");
1188                 }
1189                 gpm.set_fader_name ("AudioBusFader");
1190         }
1191 }
1192
1193 RouteGroup*
1194 MixerStrip::mix_group() const
1195 {
1196         return _route.mix_group();
1197 }
1198
1199 void
1200 MixerStrip::engine_stopped ()
1201 {
1202         input_button.set_sensitive (false);
1203         rec_enable_button->set_sensitive (false);
1204         output_button.set_sensitive (false);
1205 }
1206
1207 void
1208 MixerStrip::engine_running ()
1209 {
1210         input_button.set_sensitive (true);
1211         rec_enable_button->set_sensitive (true);
1212         output_button.set_sensitive (true);
1213 }
1214
1215 void
1216 MixerStrip::meter_changed (void *src)
1217 {
1218
1219         ENSURE_GUI_THREAD (bind (mem_fun(*this, &MixerStrip::meter_changed), src));
1220
1221                 switch (_route.meter_point()) {
1222                 case MeterInput:
1223                         meter_point_label.set_text (_("input"));
1224                         break;
1225                         
1226                 case MeterPreFader:
1227                         meter_point_label.set_text (_("pre"));
1228                         break;
1229                         
1230                 case MeterPostFader:
1231                         meter_point_label.set_text (_("post"));
1232                         break;
1233                 }
1234
1235                 gpm.setup_meters ();
1236 }
1237