a195adbb0da0fceaff125263f322bed449e609ba
[ardour.git] / gtk2_ardour / processor_box.cc
1 /*
2     Copyright (C) 2000-2004 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
20 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
23
24 #include <cmath>
25 #include <iostream>
26 #include <set>
27
28 #include <sigc++/bind.h>
29
30 #include "pbd/convert.h"
31
32 #include <glibmm/miscutils.h>
33
34 #include <gtkmm/messagedialog.h>
35
36 #include <gtkmm2ext/gtk_ui.h>
37 #include <gtkmm2ext/utils.h>
38 #include <gtkmm2ext/choice.h>
39 #include <gtkmm2ext/utils.h>
40 #include <gtkmm2ext/doi.h>
41 #include <gtkmm2ext/rgb_macros.h>
42
43 #include "ardour/amp.h"
44 #include "ardour/audio_track.h"
45 #include "ardour/audioengine.h"
46 #include "ardour/internal_return.h"
47 #include "ardour/internal_send.h"
48 #include "ardour/meter.h"
49 #include "ardour/panner_shell.h"
50 #include "ardour/plugin_insert.h"
51 #include "ardour/pannable.h"
52 #include "ardour/port_insert.h"
53 #include "ardour/profile.h"
54 #include "ardour/return.h"
55 #include "ardour/route.h"
56 #include "ardour/send.h"
57 #include "ardour/session.h"
58 #include "ardour/types.h"
59
60 #include "actions.h"
61 #include "ardour_dialog.h"
62 #include "ardour_ui.h"
63 #include "gui_thread.h"
64 #include "io_selector.h"
65 #include "keyboard.h"
66 #include "mixer_ui.h"
67 #include "mixer_strip.h"
68 #include "plugin_selector.h"
69 #include "plugin_ui.h"
70 #include "port_insert_ui.h"
71 #include "processor_box.h"
72 #include "public_editor.h"
73 #include "return_ui.h"
74 #include "route_processor_selection.h"
75 #include "send_ui.h"
76 #include "timers.h"
77 #include "tooltips.h"
78
79 #include "i18n.h"
80
81 #ifdef AUDIOUNIT_SUPPORT
82 class AUPluginUI;
83 #endif
84
85 #ifndef NDEBUG
86 bool ProcessorBox::show_all_processors = false;
87 #endif
88
89 using namespace std;
90 using namespace ARDOUR;
91 using namespace PBD;
92 using namespace Gtk;
93 using namespace Glib;
94 using namespace Gtkmm2ext;
95
96 ProcessorBox* ProcessorBox::_current_processor_box = 0;
97 RefPtr<Action> ProcessorBox::paste_action;
98 RefPtr<Action> ProcessorBox::cut_action;
99 RefPtr<Action> ProcessorBox::copy_action;
100 RefPtr<Action> ProcessorBox::rename_action;
101 RefPtr<Action> ProcessorBox::delete_action;
102 RefPtr<Action> ProcessorBox::edit_action;
103 RefPtr<Action> ProcessorBox::edit_generic_action;
104
105 static const uint32_t audio_port_color = 0x4A8A0EFF; // Green
106 static const uint32_t midi_port_color = 0x960909FF; //Red
107
108 ProcessorEntry::ProcessorEntry (ProcessorBox* parent, boost::shared_ptr<Processor> p, Width w)
109         : _button (ArdourButton::led_default_elements)
110         , _position (PreFader)
111         , _position_num(0)
112         , _selectable(true)
113         , _unknown_processor(false)
114         , _parent (parent)
115         , _processor (p)
116         , _width (w)
117         , _input_icon(true)
118         , _output_icon(false)
119 {
120         _vbox.show ();
121
122         _button.set_distinct_led_click (true);
123         _button.set_fallthrough_to_parent(true);
124         _button.set_led_left (true);
125         _button.signal_led_clicked.connect (sigc::mem_fun (*this, &ProcessorEntry::led_clicked));
126         _button.set_text (name (_width));
127
128         if (boost::dynamic_pointer_cast<PeakMeter> (_processor)) {
129                 _button.set_elements(ArdourButton::Element(_button.elements() & ~ArdourButton::Indicator));
130         }
131         if (boost::dynamic_pointer_cast<UnknownProcessor> (_processor)) {
132                 _button.set_elements(ArdourButton::Element(_button.elements() & ~ArdourButton::Indicator));
133                 _unknown_processor = true;
134         }
135         if (_processor) {
136
137                 _vbox.pack_start (_routing_icon);
138                 _vbox.pack_start (_input_icon);
139                 _vbox.pack_start (_button, true, true);
140                 _vbox.pack_end (_output_icon);
141
142                 _button.set_active (_processor->active());
143
144                 _routing_icon.set_no_show_all(true);
145                 _input_icon.set_no_show_all(true);
146
147                 _button.show ();
148                 _routing_icon.set_visible(false);
149                 _input_icon.hide();
150                 _output_icon.show();
151
152                 _processor->ActiveChanged.connect (active_connection, invalidator (*this), boost::bind (&ProcessorEntry::processor_active_changed, this), gui_context());
153                 _processor->PropertyChanged.connect (name_connection, invalidator (*this), boost::bind (&ProcessorEntry::processor_property_changed, this, _1), gui_context());
154                 _processor->ConfigurationChanged.connect (config_connection, invalidator (*this), boost::bind (&ProcessorEntry::processor_configuration_changed, this, _1, _2), gui_context());
155
156                 set<Evoral::Parameter> p = _processor->what_can_be_automated ();
157                 for (set<Evoral::Parameter>::iterator i = p.begin(); i != p.end(); ++i) {
158
159                         std::string label = _processor->describe_parameter (*i);
160
161                         if (boost::dynamic_pointer_cast<Send> (_processor)) {
162                                 label = _("Send");
163                         } else if (boost::dynamic_pointer_cast<Return> (_processor)) {
164                                 label = _("Return");
165                         }
166
167                         Control* c = new Control (_processor->automation_control (*i), label);
168
169                         _controls.push_back (c);
170
171                         if (boost::dynamic_pointer_cast<Amp> (_processor) == 0) {
172                                 /* Add non-Amp (Fader & Trim) controls to the processor box */
173                                 _vbox.pack_start (c->box);
174                         }
175                 }
176
177                 _input_icon.set_ports(_processor->input_streams());
178                 _output_icon.set_ports(_processor->output_streams());
179
180                 _routing_icon.set_sources(_processor->input_streams());
181                 _routing_icon.set_sinks(_processor->output_streams());
182
183                 setup_tooltip ();
184                 setup_visuals ();
185         } else {
186                 _vbox.set_size_request (-1, _button.size_request().height);
187         }
188 }
189
190 ProcessorEntry::~ProcessorEntry ()
191 {
192         for (list<Control*>::iterator i = _controls.begin(); i != _controls.end(); ++i) {
193                 delete *i;
194         }
195 }
196
197 EventBox&
198 ProcessorEntry::action_widget ()
199 {
200         return _button;
201 }
202
203 Gtk::Widget&
204 ProcessorEntry::widget ()
205 {
206         return _vbox;
207 }
208
209 string
210 ProcessorEntry::drag_text () const
211 {
212         return name (Wide);
213 }
214
215 void
216 ProcessorEntry::set_position (Position p, uint32_t num)
217 {
218         _position = p;
219         _position_num = num;
220
221         if (_position_num == 0 || _routing_icon.get_visible()) {
222                 _input_icon.show();
223         } else {
224                 _input_icon.hide();
225         }
226
227         setup_visuals ();
228 }
229
230 void
231 ProcessorEntry::set_visual_state (Gtkmm2ext::VisualState s, bool yn)
232 {
233         if (yn) {
234                 _button.set_visual_state (Gtkmm2ext::VisualState (_button.visual_state() | s));
235         } else {
236                 _button.set_visual_state (Gtkmm2ext::VisualState (_button.visual_state() & ~s));
237         }
238 }
239
240 void
241 ProcessorEntry::setup_visuals ()
242 {
243         if (_unknown_processor) {
244                 _button.set_name ("processor stub");
245                 return;
246         }
247
248         switch (_position) {
249         case PreFader:
250                 _button.set_name ("processor prefader");
251                 break;
252
253         case Fader:
254                 _button.set_name ("processor fader");
255                 break;
256
257         case PostFader:
258                 _button.set_name ("processor postfader");
259                 break;
260         }
261 }
262
263
264 boost::shared_ptr<Processor>
265 ProcessorEntry::processor () const
266 {
267         return _processor;
268 }
269
270 void
271 ProcessorEntry::set_enum_width (Width w)
272 {
273         _width = w;
274         _button.set_text (name (_width));
275 }
276
277 void
278 ProcessorEntry::led_clicked(GdkEventButton *ev)
279 {
280         bool ctrl_shift_pressed = false;
281         Keyboard::ModifierMask ctrl_shift_mask = Keyboard::ModifierMask (Keyboard::PrimaryModifier|Keyboard::TertiaryModifier);
282
283         if (Keyboard::modifier_state_equals (ev->state, ctrl_shift_mask)) {
284                 ctrl_shift_pressed = true;
285         }
286
287         if (_processor) {
288                 if (_button.get_active ()) {
289                         if (ctrl_shift_pressed) {
290                                 _parent->all_visible_processors_active(false);
291
292                                 if (_position == Fader) {
293                                         _processor->deactivate ();
294                                 }
295                         }
296                         else {
297                                 _processor->deactivate ();
298                         }
299
300                 } else {
301                         if (ctrl_shift_pressed) {
302                                 _parent->all_visible_processors_active(true);
303
304                                 if (_position == Fader) {
305                                         _processor->activate ();
306                                 }
307                         }
308                         else {
309                                 _processor->activate ();
310                         }
311                 }
312         }
313 }
314
315 void
316 ProcessorEntry::processor_active_changed ()
317 {
318         if (_processor) {
319                 _button.set_active (_processor->active());
320         }
321 }
322
323 void
324 ProcessorEntry::processor_property_changed (const PropertyChange& what_changed)
325 {
326         if (what_changed.contains (ARDOUR::Properties::name)) {
327                 _button.set_text (name (_width));
328                 setup_tooltip ();
329         }
330 }
331
332 void
333 ProcessorEntry::processor_configuration_changed (const ChanCount in, const ChanCount out)
334 {
335         _input_icon.set_ports(in);
336         _output_icon.set_ports(out);
337         _routing_icon.set_sources(in);
338         _routing_icon.set_sinks(out);
339         _input_icon.queue_draw();
340         _output_icon.queue_draw();
341         _routing_icon.queue_draw();
342 }
343
344 void
345 ProcessorEntry::setup_tooltip ()
346 {
347         if (_processor) {
348                 boost::shared_ptr<PluginInsert> pi = boost::dynamic_pointer_cast<PluginInsert> (_processor);
349                 if (pi) {
350                         std::string postfix = "";
351                         uint32_t replicated;
352                         if ((replicated = pi->get_count()) > 1) {
353                                 postfix = string_compose(_("\nThis mono plugin has been replicated %1 times."), replicated);
354                         }
355                         if (pi->plugin()->has_editor()) {
356                                 ARDOUR_UI_UTILS::set_tooltip (_button,
357                                                 string_compose (_("<b>%1</b>\nDouble-click to show GUI.\n%2+double-click to show generic GUI.%3"), name (Wide), Keyboard::primary_modifier_name (), postfix));
358                         } else {
359                                 ARDOUR_UI_UTILS::set_tooltip (_button,
360                                                 string_compose (_("<b>%1</b>\nDouble-click to show generic GUI.%2"), name (Wide), postfix));
361                         }
362                         return;
363                 }
364                 if(boost::dynamic_pointer_cast<UnknownProcessor> (_processor)) {
365                         ARDOUR_UI::instance()->set_tip (_button,
366                                         string_compose (_("<b>%1</b>\nThe Plugin is not available on this system\nand has been replaced by a stub."), name (Wide)));
367                         return;
368                 }
369         }
370         ARDOUR_UI_UTILS::set_tooltip (_button, string_compose ("<b>%1</b>", name (Wide)));
371 }
372
373 string
374 ProcessorEntry::name (Width w) const
375 {
376         boost::shared_ptr<Send> send;
377         string name_display;
378
379         if (!_processor) {
380                 return string();
381         }
382
383         if ((send = boost::dynamic_pointer_cast<Send> (_processor)) != 0 &&
384             !boost::dynamic_pointer_cast<InternalSend>(_processor)) {
385
386                 name_display += '>';
387
388                 /* grab the send name out of its overall name */
389
390                 string::size_type lbracket, rbracket;
391                 lbracket = send->name().find ('[');
392                 rbracket = send->name().find (']');
393
394                 switch (w) {
395                 case Wide:
396                         name_display += send->name().substr (lbracket+1, lbracket-rbracket-1);
397                         break;
398                 case Narrow:
399                         name_display += PBD::short_version (send->name().substr (lbracket+1, lbracket-rbracket-1), 4);
400                         break;
401                 }
402
403         } else {
404                 boost::shared_ptr<ARDOUR::PluginInsert> pi;
405                 uint32_t replicated;
406                 if ((pi = boost::dynamic_pointer_cast<ARDOUR::PluginInsert> (_processor)) != 0
407                                 && (replicated = pi->get_count()) > 1)
408                 {
409                         name_display += string_compose(_("(%1x1) "), replicated);
410                 }
411
412                 switch (w) {
413                 case Wide:
414                         name_display += _processor->display_name();
415                         break;
416                 case Narrow:
417                         name_display += PBD::short_version (_processor->display_name(), 5);
418                         break;
419                 }
420
421         }
422
423         return name_display;
424 }
425
426 void
427 ProcessorEntry::show_all_controls ()
428 {
429         for (list<Control*>::iterator i = _controls.begin(); i != _controls.end(); ++i) {
430                 (*i)->set_visible (true);
431         }
432
433         _parent->update_gui_object_state (this);
434 }
435
436 void
437 ProcessorEntry::hide_all_controls ()
438 {
439         for (list<Control*>::iterator i = _controls.begin(); i != _controls.end(); ++i) {
440                 (*i)->set_visible (false);
441         }
442
443         _parent->update_gui_object_state (this);
444 }
445
446 void
447 ProcessorEntry::add_control_state (XMLNode* node) const
448 {
449         for (list<Control*>::const_iterator i = _controls.begin(); i != _controls.end(); ++i) {
450                 (*i)->add_state (node);
451         }
452 }
453
454 void
455 ProcessorEntry::set_control_state (XMLNode const * node)
456 {
457         for (list<Control*>::const_iterator i = _controls.begin(); i != _controls.end(); ++i) {
458                 (*i)->set_state (node);
459         }
460 }
461
462 string
463 ProcessorEntry::state_id () const
464 {
465         return string_compose ("processor %1", _processor->id().to_s());
466 }
467
468 void
469 ProcessorEntry::hide_things ()
470 {
471         for (list<Control*>::iterator i = _controls.begin(); i != _controls.end(); ++i) {
472                 (*i)->hide_things ();
473         }
474 }
475
476
477 Menu *
478 ProcessorEntry::build_controls_menu ()
479 {
480         using namespace Menu_Helpers;
481         Menu* menu = manage (new Menu);
482         MenuList& items = menu->items ();
483
484         items.push_back (
485                 MenuElem (_("Show All Controls"), sigc::mem_fun (*this, &ProcessorEntry::show_all_controls))
486                 );
487
488         items.push_back (
489                 MenuElem (_("Hide All Controls"), sigc::mem_fun (*this, &ProcessorEntry::hide_all_controls))
490                 );
491
492         if (!_controls.empty ()) {
493                 items.push_back (SeparatorElem ());
494         }
495
496         for (list<Control*>::iterator i = _controls.begin(); i != _controls.end(); ++i) {
497                 items.push_back (CheckMenuElem ((*i)->name ()));
498                 Gtk::CheckMenuItem* c = dynamic_cast<Gtk::CheckMenuItem*> (&items.back ());
499                 c->set_active ((*i)->visible ());
500                 c->signal_toggled().connect (sigc::bind (sigc::mem_fun (*this, &ProcessorEntry::toggle_control_visibility), *i));
501         }
502
503         return menu;
504 }
505
506 void
507 ProcessorEntry::toggle_control_visibility (Control* c)
508 {
509         c->set_visible (!c->visible ());
510         _parent->update_gui_object_state (this);
511 }
512
513 Menu *
514 ProcessorEntry::build_send_options_menu ()
515 {
516         using namespace Menu_Helpers;
517         Menu* menu = manage (new Menu);
518         MenuList& items = menu->items ();
519
520         boost::shared_ptr<Send> send = boost::dynamic_pointer_cast<Send> (_processor);
521         if (send) {
522
523                 items.push_back (CheckMenuElem (_("Link panner controls")));
524                 Gtk::CheckMenuItem* c = dynamic_cast<Gtk::CheckMenuItem*> (&items.back ());
525                 c->set_active (send->panner_shell()->is_linked_to_route());
526                 c->signal_toggled().connect (sigc::mem_fun (*this, &ProcessorEntry::toggle_panner_link));
527
528         }
529         return menu;
530 }
531
532 void
533 ProcessorEntry::toggle_panner_link ()
534 {
535         boost::shared_ptr<Send> send = boost::dynamic_pointer_cast<Send> (_processor);
536         if (send) {
537                 send->panner_shell()->set_linked_to_route(!send->panner_shell()->is_linked_to_route());
538         }
539 }
540
541 ProcessorEntry::Control::Control (boost::shared_ptr<AutomationControl> c, string const & n)
542         : _control (c)
543         , _adjustment (gain_to_slider_position_with_max (1.0, Config->get_max_gain()), 0, 1, 0.01, 0.1)
544         , _slider (&_adjustment, boost::shared_ptr<PBD::Controllable>(), 0, max(13.f, rintf(13.f * UIConfiguration::instance().get_ui_scale())))
545         , _slider_persistant_tooltip (&_slider)
546         , _button (ArdourButton::led_default_elements)
547         , _ignore_ui_adjustment (false)
548         , _visible (false)
549         , _name (n)
550 {
551         _slider.set_controllable (c);
552         box.set_padding(0, 0, 4, 4);
553
554         if (c->toggled()) {
555                 _button.set_text (_name);
556                 _button.set_led_left (true);
557                 _button.set_name ("processor control button");
558                 box.add (_button);
559                 _button.show ();
560
561                 _button.signal_clicked.connect (sigc::mem_fun (*this, &Control::button_clicked));
562                 _button.signal_led_clicked.connect (sigc::mem_fun (*this, &Control::button_clicked_event));
563                 // dup. currently timers are used :(
564                 //c->Changed.connect (_connection, MISSING_INVALIDATOR, boost::bind (&Control::control_changed, this), gui_context ());
565
566         } else {
567
568                 _slider.set_name ("ProcessorControlSlider");
569                 _slider.set_text (_name);
570
571                 box.add (_slider);
572                 _slider.show ();
573
574                 const ARDOUR::ParameterDescriptor& desc = c->desc();
575                 double const lo = c->internal_to_interface(desc.lower);
576                 double const up = c->internal_to_interface(desc.upper);
577                 double const normal = c->internal_to_interface(desc.normal);
578                 double smallstep = desc.smallstep;
579                 double largestep = desc.largestep;
580
581                 if (smallstep == 0.0) {
582                         smallstep = up / 1000.;
583                 } else {
584                         smallstep = c->internal_to_interface(desc.lower + smallstep);
585                 }
586
587                 if (largestep == 0.0) {
588                         largestep = up / 40.;
589                 } else {
590                         largestep = c->internal_to_interface(desc.lower + largestep);
591                 }
592
593                 _adjustment.set_lower (lo);
594                 _adjustment.set_upper (up);
595                 _adjustment.set_step_increment (smallstep);
596                 _adjustment.set_page_increment (largestep);
597                 _slider.set_default_value (normal);
598
599                 _adjustment.signal_value_changed().connect (sigc::mem_fun (*this, &Control::slider_adjusted));
600                 // dup. currently timers are used :(
601                 //c->Changed.connect (_connection, MISSING_INVALIDATOR, boost::bind (&Control::control_changed, this), gui_context ());
602         }
603
604         // yuck, do we really need to do this?
605         // according to c404374 this is only needed for send automation
606         timer_connection = Timers::rapid_connect (sigc::mem_fun (*this, &Control::control_changed));
607
608         control_changed ();
609         set_tooltip ();
610
611         /* We're providing our own PersistentTooltip */
612         set_no_tooltip_whatsoever (_slider);
613 }
614
615 ProcessorEntry::Control::~Control ()
616 {
617         timer_connection.disconnect ();
618 }
619
620 void
621 ProcessorEntry::Control::set_tooltip ()
622 {
623         boost::shared_ptr<AutomationControl> c = _control.lock ();
624
625         if (!c) {
626                 return;
627         }
628         char tmp[256];
629         if (c->toggled ()) {
630                 snprintf (tmp, sizeof(tmp), "%s: %s", _name.c_str(), c->get_value() > 0.5 ? _("on") : _("off"));
631         } else {
632                 snprintf (tmp, sizeof(tmp), "%s: %.2f", _name.c_str(), c->internal_to_user (c->get_value ()));
633         }
634
635         string sm = Gtkmm2ext::markup_escape_text (tmp);
636         _slider_persistant_tooltip.set_tip (sm);
637         ARDOUR_UI_UTILS::set_tooltip (_button, sm);
638 }
639
640 void
641 ProcessorEntry::Control::slider_adjusted ()
642 {
643         if (_ignore_ui_adjustment) {
644                 return;
645         }
646
647         boost::shared_ptr<AutomationControl> c = _control.lock ();
648
649         if (!c) {
650                 return;
651         }
652
653         c->set_value ( c->interface_to_internal(_adjustment.get_value ()) );
654         set_tooltip ();
655 }
656
657 void
658 ProcessorEntry::Control::button_clicked ()
659 {
660         boost::shared_ptr<AutomationControl> c = _control.lock ();
661
662         if (!c) {
663                 return;
664         }
665
666         bool const n = _button.get_active ();
667
668         c->set_value (n ? 0 : 1);
669         _button.set_active (!n);
670         set_tooltip ();
671 }
672
673 void
674 ProcessorEntry::Control::button_clicked_event (GdkEventButton *ev)
675 {
676         (void) ev;
677
678         button_clicked ();
679 }
680
681 void
682 ProcessorEntry::Control::control_changed ()
683 {
684         boost::shared_ptr<AutomationControl> c = _control.lock ();
685         if (!c) {
686                 return;
687         }
688
689         _ignore_ui_adjustment = true;
690
691         if (c->toggled ()) {
692
693                 _button.set_active (c->get_value() > 0.5);
694
695         } else {
696                 // as long as rapid timers are used, only update the tooltip
697                 // if the value has changed.
698                 const double nval = c->internal_to_interface (c->get_value ());
699                 if (_adjustment.get_value() != nval) {
700                         _adjustment.set_value (nval);
701                         set_tooltip ();
702                 }
703         }
704
705         _ignore_ui_adjustment = false;
706 }
707
708 void
709 ProcessorEntry::Control::add_state (XMLNode* node) const
710 {
711         XMLNode* c = new XMLNode (X_("Object"));
712         c->add_property (X_("id"), state_id ());
713         c->add_property (X_("visible"), _visible);
714         node->add_child_nocopy (*c);
715 }
716
717 void
718 ProcessorEntry::Control::set_state (XMLNode const * node)
719 {
720         XMLNode* n = GUIObjectState::get_node (node, state_id ());
721         if (n) {
722                 XMLProperty* p = n->property (X_("visible"));
723                 set_visible (p && string_is_affirmative (p->value ()));
724         } else {
725                 set_visible (false);
726         }
727 }
728
729 void
730 ProcessorEntry::Control::set_visible (bool v)
731 {
732         if (v) {
733                 box.show ();
734         } else {
735                 box.hide ();
736         }
737
738         _visible = v;
739 }
740
741 /** Called when the Editor might have re-shown things that
742     we want hidden.
743 */
744 void
745 ProcessorEntry::Control::hide_things ()
746 {
747         if (!_visible) {
748                 box.hide ();
749         }
750 }
751
752 string
753 ProcessorEntry::Control::state_id () const
754 {
755         boost::shared_ptr<AutomationControl> c = _control.lock ();
756         assert (c);
757
758         return string_compose (X_("control %1"), c->id().to_s ());
759 }
760
761 PluginInsertProcessorEntry::PluginInsertProcessorEntry (ProcessorBox* b, boost::shared_ptr<ARDOUR::PluginInsert> p, Width w)
762         : ProcessorEntry (b, p, w)
763         , _plugin_insert (p)
764 {
765         p->PluginIoReConfigure.connect (
766                 _splitting_connection, invalidator (*this), boost::bind (&PluginInsertProcessorEntry::plugin_insert_splitting_changed, this), gui_context()
767                 );
768
769         plugin_insert_splitting_changed ();
770 }
771
772 void
773 PluginInsertProcessorEntry::plugin_insert_splitting_changed ()
774 {
775         ChanCount in, out; // actual configured i/o
776         _plugin_insert->configured_io (in, out);
777
778         /* get number of input ports */
779         ChanCount sinks = _plugin_insert->natural_input_streams();
780         if (!_plugin_insert->splitting () && _plugin_insert->get_count() > 1) {
781                 /* replicated instances */
782                 for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
783                         sinks.set(*t, sinks.get(*t) * _plugin_insert->get_count());
784                 }
785         }
786         /* MIDI bypass */
787         if (_plugin_insert->natural_output_streams().n_midi() == 0 &&
788                         _plugin_insert->output_streams().n_midi() == 1) {
789                 in.set(DataType::MIDI, 1);
790                 out.set(DataType::MIDI, 1);
791                 sinks.set(DataType::MIDI, 1);
792         }
793
794         /* the Input streams available (*valid* outputs from prev. plugin)
795          * this will be <= sinks. Some input-ports of this processor
796          * may be unconnected.
797          */
798         _routing_icon.set_sources(in);
799
800         /* the actual input ports of this processor */
801         _input_icon.set_ports(sinks);
802         _routing_icon.set_sinks(sinks);
803
804         /* set/override plugin-output ports to actual outputs-streams.
805          *
806          * This plugin may have unconnected output-ports (currently only in Mixbus,
807          * e.g channelstrip-EQ at the top of a MIDI-channel before the synth).
808          *
809          * The *next* processor below this one will only see the
810          * actual available streams (it cannot know the real outputs
811          * of this plugin).
812          *
813          * There is currently no API to query the ports of the previous (or next)
814          * processor.
815          *
816          * (normally - iff configuration succeeds - this is set during
817          * ProcessorEntry::processor_configuration_changed() and should
818          * equal _plugin_insert->output_streams())
819          */
820         _output_icon.set_ports(out);
821 #ifndef NDEBUG
822         if (out != _plugin_insert->output_streams()) {
823                 std::cerr << "Processor Wiring: " <<  processor()->name()
824                         << " out-ports: " << _plugin_insert->output_streams() // NB. does not include midi-bypass
825                         << " out-connections: " << out
826                         << endmsg;
827         }
828 #endif
829
830         _routing_icon.set_splitting(_plugin_insert->splitting ());
831
832         if (_plugin_insert->splitting () ||  in != sinks)
833         {
834                 _routing_icon.set_size_request (-1, std::max (7.f, rintf(7.f * UIConfiguration::instance().get_ui_scale())));
835                 _routing_icon.set_visible(true);
836                 _input_icon.show();
837         } else {
838                 _routing_icon.set_visible(false);
839                 if (_position_num != 0) {
840                         _input_icon.hide();
841                 }
842         }
843
844         _input_icon.queue_draw();
845         _output_icon.queue_draw();
846         _routing_icon.queue_draw();
847 }
848
849 void
850 PluginInsertProcessorEntry::hide_things ()
851 {
852         ProcessorEntry::hide_things ();
853         plugin_insert_splitting_changed ();
854 }
855
856 ProcessorEntry::PortIcon::PortIcon(bool input) {
857         _input = input;
858         _ports = ARDOUR::ChanCount(ARDOUR::DataType::AUDIO, 1);
859         set_size_request (-1, std::max (2.f, rintf(2.f * UIConfiguration::instance().get_ui_scale())));
860 }
861
862 bool
863 ProcessorEntry::PortIcon::on_expose_event (GdkEventExpose* ev)
864 {
865         cairo_t* cr = gdk_cairo_create (get_window()->gobj());
866
867         cairo_rectangle (cr, ev->area.x, ev->area.y, ev->area.width, ev->area.height);
868         cairo_clip (cr);
869
870         Gtk::Allocation a = get_allocation();
871         double const width = a.get_width();
872         double const height = a.get_height();
873
874         Gdk::Color const bg = get_style()->get_bg (STATE_NORMAL);
875         cairo_set_source_rgb (cr, bg.get_red_p (), bg.get_green_p (), bg.get_blue_p ());
876
877         cairo_rectangle (cr, 0, 0, width, height);
878         cairo_fill (cr);
879
880         const double dx = rint(max(2., 2. * UIConfiguration::instance().get_ui_scale()));
881         if (_ports.n_total() > 1) {
882                 for (uint32_t i = 0; i < _ports.n_total(); ++i) {
883                         if (i < _ports.n_midi()) {
884                                 cairo_set_source_rgb (cr,
885                                                 UINT_RGBA_R_FLT(midi_port_color),
886                                                 UINT_RGBA_G_FLT(midi_port_color),
887                                                 UINT_RGBA_B_FLT(midi_port_color));
888                         } else {
889                                 cairo_set_source_rgb (cr,
890                                                 UINT_RGBA_R_FLT(audio_port_color),
891                                                 UINT_RGBA_G_FLT(audio_port_color),
892                                                 UINT_RGBA_B_FLT(audio_port_color));
893                         }
894                         const float x = rintf(width * (.2f + .6f * i / (_ports.n_total() - 1.f)));
895                         cairo_rectangle (cr, x-dx * .5, 0, 1+dx, height);
896                         cairo_fill(cr);
897                 }
898         } else if (_ports.n_total() == 1) {
899                 if (_ports.n_midi() == 1) {
900                         cairo_set_source_rgb (cr,
901                                         UINT_RGBA_R_FLT(midi_port_color),
902                                         UINT_RGBA_G_FLT(midi_port_color),
903                                         UINT_RGBA_B_FLT(midi_port_color));
904                 } else {
905                         cairo_set_source_rgb (cr,
906                                         UINT_RGBA_R_FLT(audio_port_color),
907                                         UINT_RGBA_G_FLT(audio_port_color),
908                                         UINT_RGBA_B_FLT(audio_port_color));
909                 }
910                 const float x = rintf(width * .5);
911                 cairo_rectangle (cr, x-dx * .5, 0, 1+dx, height);
912                 cairo_fill(cr);
913                 cairo_stroke(cr);
914         }
915
916         cairo_destroy(cr);
917         return true;
918 }
919
920 bool
921 ProcessorEntry::RoutingIcon::on_expose_event (GdkEventExpose* ev)
922 {
923         cairo_t* cr = gdk_cairo_create (get_window()->gobj());
924
925         cairo_rectangle (cr, ev->area.x, ev->area.y, ev->area.width, ev->area.height);
926         cairo_clip (cr);
927
928         cairo_set_line_width (cr, max (1.f, UIConfiguration::instance().get_ui_scale()));
929         cairo_set_line_cap (cr, CAIRO_LINE_CAP_ROUND);
930
931         Gtk::Allocation a = get_allocation();
932         double const width = a.get_width();
933         double const height = a.get_height();
934
935         Gdk::Color const bg = get_style()->get_bg (STATE_NORMAL);
936         cairo_set_source_rgb (cr, bg.get_red_p (), bg.get_green_p (), bg.get_blue_p ());
937
938         cairo_rectangle (cr, 0, 0, width, height);
939         cairo_fill (cr);
940
941         Gdk::Color const fg = get_style()->get_fg (STATE_NORMAL);
942         cairo_set_source_rgb (cr, fg.get_red_p (), fg.get_green_p (), fg.get_blue_p ());
943
944         const uint32_t sources = _sources.n_total();
945         const uint32_t sinks = _sinks.n_total();
946
947         const uint32_t midi_sources = _sources.n_midi();
948         const uint32_t midi_sinks = _sinks.n_midi();
949         const uint32_t audio_sources = _sources.n_audio();
950         const uint32_t audio_sinks = _sinks.n_audio();
951
952         /* MIDI */
953         cairo_set_source_rgb (cr,
954                         UINT_RGBA_R_FLT(midi_port_color),
955                         UINT_RGBA_G_FLT(midi_port_color),
956                         UINT_RGBA_B_FLT(midi_port_color));
957         if (midi_sources > 0 && midi_sinks > 0 && sinks > 1 && sources > 1) {
958                 for (uint32_t i = 0 ; i < midi_sources; ++i) {
959                         const float si_x  = rintf(width * (.2f + .6f * i  / (sinks - 1.f))) + .5f;
960                         const float si_x0 = rintf(width * (.2f + .6f * i / (sources - 1.f))) + .5f;
961                         cairo_move_to (cr, si_x, height);
962                         cairo_curve_to (cr, si_x, 0, si_x0, height, si_x0, 0);
963                         cairo_stroke (cr);
964                 }
965         } else if (midi_sources == 1 && midi_sinks == 1 && sinks == 1 && sources == 1) {
966                 const float si_x = rintf(width * .5f) + .5f;
967                 cairo_move_to (cr, si_x, height);
968                 cairo_line_to (cr, si_x, 0);
969                 cairo_stroke (cr);
970         } else if (midi_sources == 1 && midi_sinks == 1) {
971                 /* unusual cases -- removed synth, midi-track w/audio plugins */
972                 const float si_x  = rintf(width * (sinks   > 1 ? .2f : .5f)) + .5f;
973                 const float si_x0 = rintf(width * (sources > 1 ? .2f : .5f)) + .5f;
974                 cairo_move_to (cr, si_x, height);
975                 cairo_curve_to (cr, si_x, 0, si_x0, height, si_x0, 0);
976                 cairo_stroke (cr);
977         } else if (midi_sources == 0 && midi_sinks == 1) {
978                 const double dx = 1 + rint(max(2., 2. * UIConfiguration::instance().get_ui_scale()));
979                 // draw "T"
980                 //  TODO connect back to track-input of last midi-out if any, otherwise draw "X"
981                 const float si_x  = rintf(width * .2f) + .5f;
982                 cairo_move_to (cr, si_x, height);
983                 cairo_line_to (cr, si_x, height * .66);
984                 cairo_move_to (cr, si_x - dx, height * .66);
985                 cairo_line_to (cr, si_x + dx, height * .66);
986                 cairo_stroke (cr);
987 #ifndef NDEBUG
988         } else if (midi_sources != 0 && midi_sinks != 0) {
989                 PBD::warning << string_compose("Programming error: midi routing display: A %1 -> %2 | M %3 -> %4 | T %5 -> %6",
990                                 audio_sources, audio_sinks, midi_sources, midi_sinks, sources, sinks) << endmsg;
991 #endif
992         }
993
994         /* AUDIO */
995         cairo_set_source_rgb (cr,
996                         UINT_RGBA_R_FLT(audio_port_color),
997                         UINT_RGBA_G_FLT(audio_port_color),
998                         UINT_RGBA_B_FLT(audio_port_color));
999
1000         if (_splitting) {
1001                 assert(audio_sources < 2);
1002                 assert(audio_sinks > 1);
1003                 /* assume there is only ever one MIDI port */
1004                 const float si_x0 = rintf(width * (midi_sources > 0 ? .8f : .5f)) + .5f;
1005                 for (uint32_t i = midi_sinks; i < sinks; ++i) {
1006                         const float si_x = rintf(width * (.2f + .6f * i / (sinks - 1.f))) + .5f;
1007                         cairo_move_to (cr, si_x, height);
1008                         cairo_curve_to (cr, si_x, 0, si_x0, height, si_x0, 0);
1009                         cairo_stroke (cr);
1010                 }
1011         } else if (audio_sources > 1 && sinks > 1) {
1012                 for (uint32_t i = 0 ; i < audio_sources; ++i) {
1013                         const float si_x = rintf(width * (.2f + .6f * (i + midi_sinks) / (sinks - 1.f))) + .5f;
1014                         const float si_x0 = rintf(width * (.2f + .6f * (i + midi_sources) / (sources - 1.f))) + .5f;
1015                         cairo_move_to (cr, si_x, height);
1016                         cairo_curve_to (cr, si_x, 0, si_x0, height, si_x0, 0);
1017                         cairo_stroke (cr);
1018                 }
1019         } else if (audio_sources == 1 && audio_sinks > 0) {
1020                 float si_x, si_x0;
1021                 if (sinks == 1) {
1022                         si_x = rintf(width * .5f) + .5f;
1023                 } else {
1024                         si_x = rintf(width * (.2f + .6f * midi_sinks / (sinks - 1.f))) + .5f;
1025                 }
1026                 if (sources == 1) {
1027                         si_x0 = rintf(width * .5f) + .5f;
1028                 } else {
1029                         si_x0 = rintf(width * (.2f + .6f * midi_sources / (sources - 1.f))) + .5f;
1030                 }
1031                 cairo_move_to (cr, si_x, height);
1032                 cairo_curve_to (cr, si_x, 0, si_x0, height, si_x0, 0);
1033                 cairo_stroke (cr);
1034 #ifndef NDEBUG
1035         } else if (audio_sources != 0 && audio_sinks != 0) {
1036                 PBD::warning << string_compose("Programming error: audio routing display: A %1 -> %2 | M %3 -> %4 | T %5 -> %6",
1037                                 audio_sources, audio_sinks, midi_sources, midi_sinks, sources, sinks) << endmsg;
1038 #endif
1039         }
1040         cairo_destroy(cr);
1041         return true;
1042 }
1043
1044 ProcessorBox::ProcessorBox (ARDOUR::Session* sess, boost::function<PluginSelector*()> get_plugin_selector,
1045                             RouteProcessorSelection& rsel, MixerStrip* parent, bool owner_is_mixer)
1046         : _parent_strip (parent)
1047         , _owner_is_mixer (owner_is_mixer)
1048         , ab_direction (true)
1049         , _get_plugin_selector (get_plugin_selector)
1050         , _placement (-1)
1051         , _visible_prefader_processors (0)
1052         , _rr_selection(rsel)
1053         , _redisplay_pending (false)
1054
1055 {
1056         set_session (sess);
1057
1058         _width = Wide;
1059         processor_menu = 0;
1060         no_processor_redisplay = false;
1061
1062         processor_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
1063         processor_scroller.add (processor_display);
1064         pack_start (processor_scroller, true, true);
1065
1066         processor_display.set_flags (CAN_FOCUS);
1067         processor_display.set_name ("ProcessorList");
1068         processor_display.set_data ("processorbox", this);
1069         processor_display.set_size_request (48, -1);
1070         processor_display.set_spacing (0);
1071
1072         processor_display.signal_enter_notify_event().connect (sigc::mem_fun(*this, &ProcessorBox::enter_notify), false);
1073         processor_display.signal_leave_notify_event().connect (sigc::mem_fun(*this, &ProcessorBox::leave_notify), false);
1074
1075         processor_display.ButtonPress.connect (sigc::mem_fun (*this, &ProcessorBox::processor_button_press_event));
1076         processor_display.ButtonRelease.connect (sigc::mem_fun (*this, &ProcessorBox::processor_button_release_event));
1077
1078         processor_display.Reordered.connect (sigc::mem_fun (*this, &ProcessorBox::reordered));
1079         processor_display.DropFromAnotherBox.connect (sigc::mem_fun (*this, &ProcessorBox::object_drop));
1080
1081         processor_scroller.show ();
1082         processor_display.show ();
1083
1084         if (parent) {
1085                 parent->DeliveryChanged.connect (
1086                         _mixer_strip_connections, invalidator (*this), boost::bind (&ProcessorBox::mixer_strip_delivery_changed, this, _1), gui_context ()
1087                         );
1088         }
1089
1090         ARDOUR_UI_UTILS::set_tooltip (processor_display, _("Right-click to add/remove/edit\nplugins,inserts,sends and more"));
1091 }
1092
1093 ProcessorBox::~ProcessorBox ()
1094 {
1095         /* it may appear as if we should delete processor_menu but that is a
1096          * pointer to a widget owned by the UI Manager, and has potentially
1097          * be returned to many other ProcessorBoxes. GTK doesn't really make
1098          * clear the ownership of this widget, which is a menu and thus is
1099          * never packed into any container other than an implict GtkWindow.
1100          *
1101          * For now, until or if we ever get clarification over the ownership
1102          * story just let it continue to exist. At worst, its a small memory leak.
1103          */
1104 }
1105
1106 void
1107 ProcessorBox::set_route (boost::shared_ptr<Route> r)
1108 {
1109         if (_route == r) {
1110                 return;
1111         }
1112
1113         _route_connections.drop_connections();
1114
1115         /* new route: any existing block on processor redisplay must be meaningless */
1116         no_processor_redisplay = false;
1117         _route = r;
1118
1119         _route->processors_changed.connect (
1120                 _route_connections, invalidator (*this), boost::bind (&ProcessorBox::route_processors_changed, this, _1), gui_context()
1121                 );
1122
1123         _route->DropReferences.connect (
1124                 _route_connections, invalidator (*this), boost::bind (&ProcessorBox::route_going_away, this), gui_context()
1125                 );
1126
1127         _route->PropertyChanged.connect (
1128                 _route_connections, invalidator (*this), boost::bind (&ProcessorBox::route_property_changed, this, _1), gui_context()
1129                 );
1130
1131         redisplay_processors ();
1132 }
1133
1134 void
1135 ProcessorBox::route_going_away ()
1136 {
1137         /* don't keep updating display as processors are deleted */
1138         no_processor_redisplay = true;
1139         _route.reset ();
1140 }
1141
1142 void
1143 ProcessorBox::object_drop(DnDVBox<ProcessorEntry>* source, ProcessorEntry* position, Glib::RefPtr<Gdk::DragContext> const & context)
1144 {
1145         boost::shared_ptr<Processor> p;
1146         if (position) {
1147                 p = position->processor ();
1148                 if (!p) {
1149                         /* dropped on the blank entry (which will be before the
1150                            fader), so use the first non-blank child as our
1151                            `dropped on' processor */
1152                         list<ProcessorEntry*> c = processor_display.children ();
1153                         list<ProcessorEntry*>::iterator i = c.begin ();
1154
1155                         assert (i != c.end ());
1156                         p = (*i)->processor ();
1157                         assert (p);
1158                 }
1159         }
1160
1161         list<ProcessorEntry*> children = source->selection ();
1162         list<boost::shared_ptr<Processor> > procs;
1163         for (list<ProcessorEntry*>::const_iterator i = children.begin(); i != children.end(); ++i) {
1164                 if ((*i)->processor ()) {
1165                         if (boost::dynamic_pointer_cast<UnknownProcessor> ((*i)->processor())) {
1166                                 continue;
1167                         }
1168                         procs.push_back ((*i)->processor ());
1169                 }
1170         }
1171
1172         for (list<boost::shared_ptr<Processor> >::const_iterator i = procs.begin(); i != procs.end(); ++i) {
1173                 XMLNode& state = (*i)->get_state ();
1174                 XMLNodeList nlist;
1175                 nlist.push_back (&state);
1176                 paste_processor_state (nlist, p);
1177                 delete &state;
1178         }
1179
1180         /* since the dndvbox doesn't take care of this properly, we have to delete the originals
1181            ourselves.
1182         */
1183
1184         if ((context->get_suggested_action() == Gdk::ACTION_MOVE) && source) {
1185                 ProcessorBox* other = reinterpret_cast<ProcessorBox*> (source->get_data ("processorbox"));
1186                 if (other) {
1187                         other->delete_dragged_processors (procs);
1188                 }
1189         }
1190 }
1191
1192 void
1193 ProcessorBox::set_width (Width w)
1194 {
1195         if (_width == w) {
1196                 return;
1197         }
1198
1199         _width = w;
1200
1201         list<ProcessorEntry*> children = processor_display.children ();
1202         for (list<ProcessorEntry*>::iterator i = children.begin(); i != children.end(); ++i) {
1203                 (*i)->set_enum_width (w);
1204         }
1205
1206         queue_resize ();
1207 }
1208
1209 Gtk::Menu*
1210 ProcessorBox::build_possible_aux_menu ()
1211 {
1212         boost::shared_ptr<RouteList> rl = _session->get_routes_with_internal_returns();
1213
1214         if (rl->empty()) {
1215                 /* No aux sends if there are no busses */
1216                 return 0;
1217         }
1218
1219         if (_route->is_monitor ()) {
1220                 return 0;
1221         }
1222
1223         using namespace Menu_Helpers;
1224         Menu* menu = manage (new Menu);
1225         MenuList& items = menu->items();
1226
1227         for (RouteList::iterator r = rl->begin(); r != rl->end(); ++r) {
1228                 if (!_route->internal_send_for (*r) && *r != _route) {
1229                         items.push_back (MenuElem ((*r)->name(), sigc::bind (sigc::ptr_fun (ProcessorBox::rb_choose_aux), boost::weak_ptr<Route>(*r))));
1230                 }
1231         }
1232
1233         return menu;
1234 }
1235
1236 void
1237 ProcessorBox::show_processor_menu (int arg)
1238 {
1239         if (processor_menu == 0) {
1240                 processor_menu = build_processor_menu ();
1241                 processor_menu->signal_unmap().connect (sigc::mem_fun (*this, &ProcessorBox::processor_menu_unmapped));
1242         }
1243
1244         /* Sort out the plugin submenu */
1245
1246         Gtk::MenuItem* plugin_menu_item = dynamic_cast<Gtk::MenuItem*>(ActionManager::get_widget("/ProcessorMenu/newplugin"));
1247
1248         if (plugin_menu_item) {
1249                 plugin_menu_item->set_submenu (*_get_plugin_selector()->plugin_menu());
1250         }
1251
1252         /* And the aux submenu */
1253
1254         Gtk::MenuItem* aux_menu_item = dynamic_cast<Gtk::MenuItem*>(ActionManager::get_widget("/ProcessorMenu/newaux"));
1255
1256         if (aux_menu_item) {
1257                 Menu* m = build_possible_aux_menu();
1258                 if (m && !m->items().empty()) {
1259                         aux_menu_item->set_submenu (*m);
1260                         aux_menu_item->set_sensitive (true);
1261                 } else {
1262                         /* stupid gtkmm: we need to pass a null reference here */
1263                         gtk_menu_item_set_submenu (aux_menu_item->gobj(), 0);
1264                         aux_menu_item->set_sensitive (false);
1265                 }
1266         }
1267
1268         ActionManager::get_action (X_("ProcessorMenu"), "newinsert")->set_sensitive (!_route->is_monitor ());
1269         ActionManager::get_action (X_("ProcessorMenu"), "newsend")->set_sensitive (!_route->is_monitor ());
1270
1271         ProcessorEntry* single_selection = 0;
1272         if (processor_display.selection().size() == 1) {
1273                 single_selection = processor_display.selection().front();
1274         }
1275
1276         /* And the controls submenu */
1277
1278         Gtk::MenuItem* controls_menu_item = dynamic_cast<Gtk::MenuItem*>(ActionManager::get_widget("/ProcessorMenu/controls"));
1279
1280         if (controls_menu_item) {
1281                 if (single_selection) {
1282                         Menu* m = single_selection->build_controls_menu ();
1283                         if (m && !m->items().empty()) {
1284                                 controls_menu_item->set_submenu (*m);
1285                                 controls_menu_item->set_sensitive (true);
1286                         } else {
1287                                 gtk_menu_item_set_submenu (controls_menu_item->gobj(), 0);
1288                                 controls_menu_item->set_sensitive (false);
1289                         }
1290                 } else {
1291                         controls_menu_item->set_sensitive (false);
1292                 }
1293         }
1294
1295         Gtk::MenuItem* send_menu_item = dynamic_cast<Gtk::MenuItem*>(ActionManager::get_widget("/ProcessorMenu/send_options"));
1296         if (send_menu_item) {
1297                 if (single_selection && !_route->is_monitor()) {
1298                         Menu* m = single_selection->build_send_options_menu ();
1299                         if (m && !m->items().empty()) {
1300                                 send_menu_item->set_submenu (*m);
1301                                 send_menu_item->set_sensitive (true);
1302                         } else {
1303                                 gtk_menu_item_set_submenu (send_menu_item->gobj(), 0);
1304                                 send_menu_item->set_sensitive (false);
1305                         }
1306                 } else {
1307                         send_menu_item->set_sensitive (false);
1308                 }
1309         }
1310
1311         /* Sensitise actions as approprioate */
1312
1313
1314         const bool sensitive = !processor_display.selection().empty() && ! stub_processor_selected ();
1315
1316         paste_action->set_sensitive (!_rr_selection.processors.empty());
1317         cut_action->set_sensitive (sensitive && can_cut ());
1318         copy_action->set_sensitive (sensitive);
1319         delete_action->set_sensitive (sensitive || stub_processor_selected ());
1320
1321         edit_action->set_sensitive (one_processor_can_be_edited ());
1322         edit_generic_action->set_sensitive (one_processor_can_be_edited ());
1323
1324         boost::shared_ptr<PluginInsert> pi;
1325         if (single_selection) {
1326                 pi = boost::dynamic_pointer_cast<PluginInsert> (single_selection->processor ());
1327         }
1328
1329         /* allow editing with an Ardour-generated UI for plugin inserts with editors */
1330         edit_action->set_sensitive (pi && pi->plugin()->has_editor ());
1331
1332         /* disallow rename for multiple selections, for plugin inserts and for the fader */
1333         rename_action->set_sensitive (single_selection
1334                         && !pi
1335                         && !boost::dynamic_pointer_cast<Amp> (single_selection->processor ())
1336                         && !boost::dynamic_pointer_cast<UnknownProcessor> (single_selection->processor ()));
1337
1338         processor_menu->popup (1, arg);
1339
1340         /* Add a placeholder gap to the processor list to indicate where a processor would be
1341            inserted were one chosen from the menu.
1342         */
1343         int x, y;
1344         processor_display.get_pointer (x, y);
1345         _placement = processor_display.add_placeholder (y);
1346
1347         if (_visible_prefader_processors == 0 && _placement > 0) {
1348                 --_placement;
1349         }
1350 }
1351
1352 bool
1353 ProcessorBox::enter_notify (GdkEventCrossing*)
1354 {
1355         _current_processor_box = this;
1356         return false;
1357 }
1358
1359 bool
1360 ProcessorBox::leave_notify (GdkEventCrossing*)
1361 {
1362         return false;
1363 }
1364
1365 bool
1366 ProcessorBox::processor_operation (ProcessorOperation op)
1367 {
1368         ProcSelection targets;
1369
1370         get_selected_processors (targets);
1371
1372 /*      if (targets.empty()) {
1373
1374                 int x, y;
1375                 processor_display.get_pointer (x, y);
1376
1377                 pair<ProcessorEntry *, double> const pointer = processor_display.get_child_at_position (y);
1378
1379                 if (pointer.first && pointer.first->processor()) {
1380                         targets.push_back (pointer.first->processor ());
1381                 }
1382         }
1383 */
1384
1385         if ( (op == ProcessorsDelete) && targets.empty() )
1386                 return false;  //nothing to delete.  return false so the editor-mixer, because the user was probably intending to delete something in the editor
1387
1388         switch (op) {
1389         case ProcessorsSelectAll:
1390                 processor_display.select_all ();
1391                 break;
1392
1393         case ProcessorsSelectNone:
1394                 processor_display.select_none ();
1395                 break;
1396
1397         case ProcessorsCopy:
1398                 copy_processors (targets);
1399                 break;
1400
1401         case ProcessorsCut:
1402                 cut_processors (targets);
1403                 break;
1404
1405         case ProcessorsPaste:
1406                 // some processors are not selectable (e.g fader, meter), target is empty.
1407                 if (targets.empty() && _placement >= 0) {
1408                         assert (_route);
1409                         boost::shared_ptr<Processor> proc = _route->before_processor_for_index (_placement);
1410                         if (proc) {
1411                                 targets.push_back (proc);
1412                         }
1413                 }
1414                 if (targets.empty()) {
1415                         paste_processors ();
1416                 } else {
1417                         paste_processors (targets.front());
1418                 }
1419                 break;
1420
1421         case ProcessorsDelete:
1422                 delete_processors (targets);
1423                 break;
1424
1425         case ProcessorsToggleActive:
1426                 for (ProcSelection::iterator i = targets.begin(); i != targets.end(); ++i) {
1427                         if ((*i)->active()) {
1428                                 (*i)->deactivate ();
1429                         } else {
1430                                 (*i)->activate ();
1431                         }
1432                 }
1433                 break;
1434
1435         case ProcessorsAB:
1436                 ab_plugins ();
1437                 break;
1438
1439         default:
1440                 break;
1441         }
1442
1443         return true;
1444 }
1445
1446 ProcessorWindowProxy*
1447 ProcessorBox::find_window_proxy (boost::shared_ptr<Processor> processor) const
1448 {
1449         return  processor->window_proxy();
1450 }
1451
1452
1453 bool
1454 ProcessorBox::processor_button_press_event (GdkEventButton *ev, ProcessorEntry* child)
1455 {
1456         boost::shared_ptr<Processor> processor;
1457         if (child) {
1458                 processor = child->processor ();
1459         }
1460
1461         int ret = false;
1462         bool selected = processor_display.selected (child);
1463
1464         if (processor && (Keyboard::is_edit_event (ev) || (ev->button == 1 && ev->type == GDK_2BUTTON_PRESS))) {
1465
1466                 if (_session->engine().connected()) {
1467                         /* XXX giving an error message here is hard, because we may be in the midst of a button press */
1468
1469                         if (!one_processor_can_be_edited ()) {
1470                                 return true;
1471                         }
1472
1473                         if (Keyboard::modifier_state_equals (ev->state, Keyboard::SecondaryModifier)) {
1474                                 generic_edit_processor (processor);
1475                         } else {
1476                                 edit_processor (processor);
1477                         }
1478                 }
1479
1480                 ret = true;
1481
1482         } else if (Keyboard::is_context_menu_event (ev)) {
1483
1484                 show_processor_menu (ev->time);
1485
1486                 ret = true;
1487
1488         } else if (processor && ev->button == 1 && selected) {
1489
1490                 // this is purely informational but necessary for route params UI
1491                 ProcessorSelected (processor); // emit
1492
1493         } else if (!processor && ev->button == 1 && ev->type == GDK_2BUTTON_PRESS) {
1494
1495                 choose_plugin ();
1496                 _get_plugin_selector()->show_manager ();
1497         }
1498
1499         return ret;
1500 }
1501
1502 bool
1503 ProcessorBox::processor_button_release_event (GdkEventButton *ev, ProcessorEntry* child)
1504 {
1505         boost::shared_ptr<Processor> processor;
1506         if (child) {
1507                 processor = child->processor ();
1508         }
1509
1510         if (processor && Keyboard::is_delete_event (ev)) {
1511
1512                 Glib::signal_idle().connect (sigc::bind (
1513                                 sigc::mem_fun(*this, &ProcessorBox::idle_delete_processor),
1514                                 boost::weak_ptr<Processor>(processor)));
1515
1516         } else if (processor && Keyboard::is_button2_event (ev)
1517 #ifndef GTKOSX
1518                    && (Keyboard::no_modifier_keys_pressed (ev) && ((ev->state & Gdk::BUTTON2_MASK) == Gdk::BUTTON2_MASK))
1519 #endif
1520                 ) {
1521
1522                 /* button2-click with no/appropriate modifiers */
1523
1524                 if (processor->active()) {
1525                         processor->deactivate ();
1526                 } else {
1527                         processor->activate ();
1528                 }
1529         }
1530
1531         return false;
1532 }
1533
1534 Menu *
1535 ProcessorBox::build_processor_menu ()
1536 {
1537         processor_menu = dynamic_cast<Gtk::Menu*>(ActionManager::get_widget("/ProcessorMenu") );
1538         processor_menu->set_name ("ArdourContextMenu");
1539         return processor_menu;
1540 }
1541
1542 void
1543 ProcessorBox::select_all_processors ()
1544 {
1545         processor_display.select_all ();
1546 }
1547
1548 void
1549 ProcessorBox::deselect_all_processors ()
1550 {
1551         processor_display.select_none ();
1552 }
1553
1554 void
1555 ProcessorBox::choose_plugin ()
1556 {
1557         _get_plugin_selector()->set_interested_object (*this);
1558 }
1559
1560 /** @return true if an error occurred, otherwise false */
1561 bool
1562 ProcessorBox::use_plugins (const SelectedPlugins& plugins)
1563 {
1564         for (SelectedPlugins::const_iterator p = plugins.begin(); p != plugins.end(); ++p) {
1565
1566                 boost::shared_ptr<Processor> processor (new PluginInsert (*_session, *p));
1567
1568                 Route::ProcessorStreams err_streams;
1569
1570                 if (_route->add_processor_by_index (processor, _placement, &err_streams, Config->get_new_plugins_active ())) {
1571                         weird_plugin_dialog (**p, err_streams);
1572                         return true;
1573                         // XXX SHAREDPTR delete plugin here .. do we even need to care?
1574                 } else if (plugins.size() == 1 && Config->get_open_gui_after_adding_plugin()) {
1575                         if (_session->engine().connected () && processor_can_be_edited (processor)) {
1576                                 if ((*p)->has_editor ()) {
1577                                         edit_processor (processor);
1578                                 } else {
1579                                         generic_edit_processor (processor);
1580                                 }
1581                         }
1582                 }
1583         }
1584
1585         return false;
1586 }
1587
1588 void
1589 ProcessorBox::weird_plugin_dialog (Plugin& p, Route::ProcessorStreams streams)
1590 {
1591         ArdourDialog dialog (_("Plugin Incompatibility"));
1592         Label label;
1593
1594         string text = string_compose(_("You attempted to add the plugin \"%1\" in slot %2.\n"),
1595                         p.name(), streams.index);
1596
1597         bool has_midi  = streams.count.n_midi() > 0 || p.get_info()->n_inputs.n_midi() > 0;
1598         bool has_audio = streams.count.n_audio() > 0 || p.get_info()->n_inputs.n_audio() > 0;
1599
1600         text += _("\nThis plugin has:\n");
1601         if (has_midi) {
1602                 uint32_t const n = p.get_info()->n_inputs.n_midi ();
1603                 text += string_compose (ngettext ("\t%1 MIDI input\n", "\t%1 MIDI inputs\n", n), n);
1604         }
1605         if (has_audio) {
1606                 uint32_t const n = p.get_info()->n_inputs.n_audio ();
1607                 text += string_compose (ngettext ("\t%1 audio input\n", "\t%1 audio inputs\n", n), n);
1608         }
1609
1610         text += _("\nbut at the insertion point, there are:\n");
1611         if (has_midi) {
1612                 uint32_t const n = streams.count.n_midi ();
1613                 text += string_compose (ngettext ("\t%1 MIDI channel\n", "\t%1 MIDI channels\n", n), n);
1614         }
1615         if (has_audio) {
1616                 uint32_t const n = streams.count.n_audio ();
1617                 text += string_compose (ngettext ("\t%1 audio channel\n", "\t%1 audio channels\n", n), n);
1618         }
1619
1620         text += string_compose (_("\n%1 is unable to insert this plugin here.\n"), PROGRAM_NAME);
1621         label.set_text(text);
1622
1623         dialog.get_vbox()->pack_start (label);
1624         dialog.add_button (Stock::OK, RESPONSE_ACCEPT);
1625
1626         dialog.set_name (X_("PluginIODialog"));
1627         dialog.set_modal (true);
1628         dialog.show_all ();
1629
1630         dialog.run ();
1631 }
1632
1633 void
1634 ProcessorBox::choose_insert ()
1635 {
1636         boost::shared_ptr<Processor> processor (new PortInsert (*_session, _route->pannable(), _route->mute_master()));
1637         _route->add_processor_by_index (processor, _placement);
1638 }
1639
1640 /* Caller must not hold process lock */
1641 void
1642 ProcessorBox::choose_send ()
1643 {
1644         boost::shared_ptr<Pannable> sendpan(new Pannable (*_session));
1645         boost::shared_ptr<Send> send (new Send (*_session, sendpan, _route->mute_master()));
1646
1647         /* make an educated guess at the initial number of outputs for the send */
1648         ChanCount outs = (_session->master_out())
1649                         ? _session->master_out()->n_outputs()
1650                         : _route->n_outputs();
1651
1652         /* XXX need processor lock on route */
1653         try {
1654                 Glib::Threads::Mutex::Lock lm (AudioEngine::instance()->process_lock());
1655                 send->output()->ensure_io (outs, false, this);
1656         } catch (AudioEngine::PortRegistrationFailure& err) {
1657                 error << string_compose (_("Cannot set up new send: %1"), err.what()) << endmsg;
1658                 return;
1659         }
1660
1661         /* let the user adjust the IO setup before creation.
1662
1663            Note: this dialog is NOT modal - we just leave it to run and it will
1664            return when its Finished signal is emitted - typically when the window
1665            is closed.
1666          */
1667
1668         IOSelectorWindow *ios = new IOSelectorWindow (_session, send->output(), true);
1669         ios->show ();
1670
1671         /* keep a reference to the send so it doesn't get deleted while
1672            the IOSelectorWindow is doing its stuff
1673         */
1674         _processor_being_created = send;
1675
1676         ios->selector().Finished.connect (sigc::bind (
1677                         sigc::mem_fun(*this, &ProcessorBox::send_io_finished),
1678                         boost::weak_ptr<Processor>(send), ios));
1679
1680 }
1681
1682 void
1683 ProcessorBox::send_io_finished (IOSelector::Result r, boost::weak_ptr<Processor> weak_processor, IOSelectorWindow* ios)
1684 {
1685         boost::shared_ptr<Processor> processor (weak_processor.lock());
1686
1687         /* drop our temporary reference to the new send */
1688         _processor_being_created.reset ();
1689
1690         if (!processor) {
1691                 return;
1692         }
1693
1694         switch (r) {
1695         case IOSelector::Cancelled:
1696                 // processor will go away when all shared_ptrs to it vanish
1697                 break;
1698
1699         case IOSelector::Accepted:
1700                 _route->add_processor_by_index (processor, _placement);
1701                 if (Profile->get_sae()) {
1702                         processor->activate ();
1703                 }
1704                 break;
1705         }
1706
1707         delete_when_idle (ios);
1708 }
1709
1710 void
1711 ProcessorBox::return_io_finished (IOSelector::Result r, boost::weak_ptr<Processor> weak_processor, IOSelectorWindow* ios)
1712 {
1713         boost::shared_ptr<Processor> processor (weak_processor.lock());
1714
1715         /* drop our temporary reference to the new return */
1716         _processor_being_created.reset ();
1717
1718         if (!processor) {
1719                 return;
1720         }
1721
1722         switch (r) {
1723         case IOSelector::Cancelled:
1724                 // processor will go away when all shared_ptrs to it vanish
1725                 break;
1726
1727         case IOSelector::Accepted:
1728                 _route->add_processor_by_index (processor, _placement);
1729                 if (Profile->get_sae()) {
1730                         processor->activate ();
1731                 }
1732                 break;
1733         }
1734
1735         delete_when_idle (ios);
1736 }
1737
1738 void
1739 ProcessorBox::choose_aux (boost::weak_ptr<Route> wr)
1740 {
1741         if (!_route) {
1742                 return;
1743         }
1744
1745         boost::shared_ptr<Route> target = wr.lock();
1746
1747         if (!target) {
1748                 return;
1749         }
1750
1751         _session->add_internal_send (target, _placement, _route);
1752 }
1753
1754 void
1755 ProcessorBox::route_processors_changed (RouteProcessorChange c)
1756 {
1757         if (c.type == RouteProcessorChange::MeterPointChange && c.meter_visibly_changed == false) {
1758                 /* the meter has moved, but it was and still is invisible to the user, so nothing to do */
1759                 return;
1760         }
1761
1762         redisplay_processors ();
1763 }
1764
1765 void
1766 ProcessorBox::redisplay_processors ()
1767 {
1768         ENSURE_GUI_THREAD (*this, &ProcessorBox::redisplay_processors);
1769         bool     fader_seen;
1770
1771         if (no_processor_redisplay) {
1772                 return;
1773         }
1774
1775         processor_display.clear ();
1776
1777         _visible_prefader_processors = 0;
1778         fader_seen = false;
1779
1780         _route->foreach_processor (sigc::bind (sigc::mem_fun (*this, &ProcessorBox::help_count_visible_prefader_processors),
1781                                                &_visible_prefader_processors, &fader_seen));
1782
1783         _route->foreach_processor (sigc::mem_fun (*this, &ProcessorBox::add_processor_to_display));
1784         _route->foreach_processor (sigc::mem_fun (*this, &ProcessorBox::maybe_add_processor_to_ui_list));
1785         setup_entry_positions ();
1786 }
1787
1788 /** Add a ProcessorWindowProxy for a processor to our list, if that processor does
1789  *  not already have one.
1790  */
1791 void
1792 ProcessorBox::maybe_add_processor_to_ui_list (boost::weak_ptr<Processor> w)
1793 {
1794         boost::shared_ptr<Processor> p = w.lock ();
1795         if (!p) {
1796                 return;
1797         }
1798         if (p->window_proxy()) {
1799                 return;
1800         }
1801
1802         /* not on the list; add it */
1803
1804         string loc;
1805 #if 0 // is this still needed? Why?
1806         if (_parent_strip) {
1807                 if (_parent_strip->mixer_owned()) {
1808                         loc = X_("M");
1809                 } else {
1810                         loc = X_("R");
1811                 }
1812         } else {
1813                 loc = X_("P");
1814         }
1815 #else
1816         loc = X_("P");
1817 #endif
1818
1819         ProcessorWindowProxy* wp = new ProcessorWindowProxy (
1820                 string_compose ("%1-%2-%3", loc, _route->id(), p->id()),
1821                 this,
1822                 w);
1823
1824         const XMLNode* ui_xml = _session->extra_xml (X_("UI"));
1825
1826         if (ui_xml) {
1827                 wp->set_state (*ui_xml);
1828         }
1829
1830         void* existing_ui = p->get_ui ();
1831
1832         if (existing_ui) {
1833                 wp->use_window (*(reinterpret_cast<Gtk::Window*>(existing_ui)));
1834         }
1835
1836         p->set_window_proxy (wp);
1837         WM::Manager::instance().register_window (wp);
1838 }
1839
1840 void
1841 ProcessorBox::help_count_visible_prefader_processors (boost::weak_ptr<Processor> p, uint32_t* cnt, bool* amp_seen)
1842 {
1843         boost::shared_ptr<Processor> processor (p.lock ());
1844
1845         if (processor && ( processor->display_to_user()
1846 #ifndef NDEBUG
1847                             || show_all_processors
1848 #endif
1849                          )
1850            ) {
1851
1852                 if (boost::dynamic_pointer_cast<Amp>(processor) && boost::dynamic_pointer_cast<Amp>(processor)->type() == X_("amp")) {
1853                         *amp_seen = true;
1854                 } else {
1855                         if (!*amp_seen) {
1856                                 (*cnt)++;
1857                         }
1858                 }
1859         }
1860 }
1861
1862 void
1863 ProcessorBox::add_processor_to_display (boost::weak_ptr<Processor> p)
1864 {
1865         boost::shared_ptr<Processor> processor (p.lock ());
1866
1867         if (!processor || ( !processor->display_to_user()
1868 #ifndef NDEBUG
1869                             && !show_all_processors
1870 #endif
1871                           )
1872            ) {
1873                 return;
1874         }
1875
1876         boost::shared_ptr<PluginInsert> plugin_insert = boost::dynamic_pointer_cast<PluginInsert> (processor);
1877
1878         ProcessorEntry* e = 0;
1879         if (plugin_insert) {
1880                 e = new PluginInsertProcessorEntry (this, plugin_insert, _width);
1881         } else {
1882                 e = new ProcessorEntry (this, processor, _width);
1883         }
1884
1885         boost::shared_ptr<Send> send = boost::dynamic_pointer_cast<Send> (processor);
1886         boost::shared_ptr<PortInsert> ext = boost::dynamic_pointer_cast<PortInsert> (processor);
1887         boost::shared_ptr<UnknownProcessor> stub = boost::dynamic_pointer_cast<UnknownProcessor> (processor);
1888
1889         //faders and meters are not deletable, copy/paste-able, so they shouldn't be selectable
1890         if (!send && !plugin_insert && !ext && !stub)
1891                 e->set_selectable(false);
1892
1893         bool mark_send_visible = false;
1894         if (send && _parent_strip) {
1895                 /* show controls of new sends by default */
1896                 GUIObjectState& st = _parent_strip->gui_object_state ();
1897                 XMLNode* strip = st.get_or_add_node (_parent_strip->state_id ());
1898                 assert (strip);
1899                 /* check if state exists, if not it must be a new send */
1900                 if (!st.get_node(strip, e->state_id())) {
1901                         mark_send_visible = true;
1902                 }
1903         }
1904
1905         /* Set up this entry's state from the GUIObjectState */
1906         XMLNode* proc = entry_gui_object_state (e);
1907         if (proc) {
1908                 e->set_control_state (proc);
1909         }
1910
1911         if (mark_send_visible) {
1912                 e->show_all_controls ();
1913         }
1914
1915         processor_display.add_child (e);
1916 }
1917
1918 void
1919 ProcessorBox::reordered ()
1920 {
1921         compute_processor_sort_keys ();
1922         setup_entry_positions ();
1923 }
1924
1925 void
1926 ProcessorBox::setup_entry_positions ()
1927 {
1928         list<ProcessorEntry*> children = processor_display.children ();
1929         bool pre_fader = true;
1930
1931         uint32_t num = 0;
1932         for (list<ProcessorEntry*>::iterator i = children.begin(); i != children.end(); ++i) {
1933                 if (boost::dynamic_pointer_cast<Amp>((*i)->processor()) && boost::dynamic_pointer_cast<Amp>((*i)->processor())->type() == X_("amp")) {
1934                         pre_fader = false;
1935                         (*i)->set_position (ProcessorEntry::Fader, num++);
1936                 } else {
1937                         if (pre_fader) {
1938                                 (*i)->set_position (ProcessorEntry::PreFader, num++);
1939                         } else {
1940                                 (*i)->set_position (ProcessorEntry::PostFader, num++);
1941                         }
1942                 }
1943         }
1944 }
1945
1946 void
1947 ProcessorBox::compute_processor_sort_keys ()
1948 {
1949         list<ProcessorEntry*> children = processor_display.children ();
1950         Route::ProcessorList our_processors;
1951
1952         for (list<ProcessorEntry*>::iterator i = children.begin(); i != children.end(); ++i) {
1953                 if ((*i)->processor()) {
1954                         our_processors.push_back ((*i)->processor ());
1955                 }
1956         }
1957
1958         if (_route->reorder_processors (our_processors)) {
1959                 /* Reorder failed, so report this to the user.  As far as I can see this must be done
1960                    in an idle handler: it seems that the redisplay_processors() that happens below destroys
1961                    widgets that were involved in the drag-and-drop on the processor list, which causes problems
1962                    when the drag is torn down after this handler function is finished.
1963                 */
1964                 Glib::signal_idle().connect_once (sigc::mem_fun (*this, &ProcessorBox::report_failed_reorder));
1965         }
1966 }
1967
1968 void
1969 ProcessorBox::report_failed_reorder ()
1970 {
1971         /* reorder failed, so redisplay */
1972
1973         redisplay_processors ();
1974
1975         /* now tell them about the problem */
1976
1977         ArdourDialog dialog (_("Plugin Incompatibility"));
1978         Label label;
1979
1980         label.set_text (_("\
1981 You cannot reorder these plugins/sends/inserts\n\
1982 in that way because the inputs and\n\
1983 outputs will not work correctly."));
1984
1985         dialog.get_vbox()->set_border_width (12);
1986         dialog.get_vbox()->pack_start (label);
1987         dialog.add_button (Stock::OK, RESPONSE_ACCEPT);
1988
1989         dialog.set_name (X_("PluginIODialog"));
1990         dialog.set_modal (true);
1991         dialog.show_all ();
1992
1993         dialog.run ();
1994 }
1995
1996 void
1997 ProcessorBox::rename_processors ()
1998 {
1999         ProcSelection to_be_renamed;
2000
2001         get_selected_processors (to_be_renamed);
2002
2003         if (to_be_renamed.empty()) {
2004                 return;
2005         }
2006
2007         for (ProcSelection::iterator i = to_be_renamed.begin(); i != to_be_renamed.end(); ++i) {
2008                 rename_processor (*i);
2009         }
2010 }
2011
2012 bool
2013 ProcessorBox::can_cut () const
2014 {
2015         vector<boost::shared_ptr<Processor> > sel;
2016
2017         get_selected_processors (sel);
2018
2019         /* cut_processors () does not cut inserts */
2020
2021         for (vector<boost::shared_ptr<Processor> >::const_iterator i = sel.begin (); i != sel.end (); ++i) {
2022
2023                 if (boost::dynamic_pointer_cast<PluginInsert>((*i)) != 0 ||
2024                     (boost::dynamic_pointer_cast<Send>((*i)) != 0) ||
2025                     (boost::dynamic_pointer_cast<Return>((*i)) != 0)) {
2026                         return true;
2027                 }
2028         }
2029
2030         return false;
2031 }
2032
2033 bool
2034 ProcessorBox::stub_processor_selected () const
2035 {
2036         vector<boost::shared_ptr<Processor> > sel;
2037
2038         get_selected_processors (sel);
2039
2040         for (vector<boost::shared_ptr<Processor> >::const_iterator i = sel.begin (); i != sel.end (); ++i) {
2041                 if (boost::dynamic_pointer_cast<UnknownProcessor>((*i)) != 0) {
2042                         return true;
2043                 }
2044         }
2045
2046         return false;
2047 }
2048
2049 void
2050 ProcessorBox::cut_processors (const ProcSelection& to_be_removed)
2051 {
2052         if (to_be_removed.empty()) {
2053                 return;
2054         }
2055
2056         XMLNode* node = new XMLNode (X_("cut"));
2057         Route::ProcessorList to_cut;
2058
2059         no_processor_redisplay = true;
2060         for (ProcSelection::const_iterator i = to_be_removed.begin(); i != to_be_removed.end(); ++i) {
2061                 // Cut only plugins, sends and returns
2062                 if (boost::dynamic_pointer_cast<PluginInsert>((*i)) != 0 ||
2063                     (boost::dynamic_pointer_cast<Send>((*i)) != 0) ||
2064                     (boost::dynamic_pointer_cast<Return>((*i)) != 0)) {
2065
2066                         Window* w = get_processor_ui (*i);
2067
2068                         if (w) {
2069                                 w->hide ();
2070                         }
2071
2072                         XMLNode& child ((*i)->get_state());
2073                         node->add_child_nocopy (child);
2074                         to_cut.push_back (*i);
2075                 }
2076         }
2077
2078         if (_route->remove_processors (to_cut) != 0) {
2079                 delete node;
2080                 no_processor_redisplay = false;
2081                 return;
2082         }
2083
2084         _rr_selection.set (node);
2085
2086         no_processor_redisplay = false;
2087         redisplay_processors ();
2088 }
2089
2090 void
2091 ProcessorBox::copy_processors (const ProcSelection& to_be_copied)
2092 {
2093         if (to_be_copied.empty()) {
2094                 return;
2095         }
2096
2097         XMLNode* node = new XMLNode (X_("copy"));
2098
2099         for (ProcSelection::const_iterator i = to_be_copied.begin(); i != to_be_copied.end(); ++i) {
2100                 // Copy only plugins, sends, returns
2101                 if (boost::dynamic_pointer_cast<PluginInsert>((*i)) != 0 ||
2102                     (boost::dynamic_pointer_cast<Send>((*i)) != 0) ||
2103                     (boost::dynamic_pointer_cast<Return>((*i)) != 0)) {
2104                         node->add_child_nocopy ((*i)->get_state());
2105                 }
2106         }
2107
2108         _rr_selection.set (node);
2109 }
2110
2111 void
2112 ProcessorBox::delete_processors (const ProcSelection& targets)
2113 {
2114         if (targets.empty()) {
2115                 return;
2116         }
2117
2118         no_processor_redisplay = true;
2119
2120         for (ProcSelection::const_iterator i = targets.begin(); i != targets.end(); ++i) {
2121
2122                 Window* w = get_processor_ui (*i);
2123
2124                 if (w) {
2125                         w->hide ();
2126                 }
2127
2128                 _route->remove_processor(*i);
2129         }
2130
2131         no_processor_redisplay = false;
2132         redisplay_processors ();
2133 }
2134
2135 void
2136 ProcessorBox::delete_dragged_processors (const list<boost::shared_ptr<Processor> >& procs)
2137 {
2138         list<boost::shared_ptr<Processor> >::const_iterator x;
2139
2140         no_processor_redisplay = true;
2141         for (x = procs.begin(); x != procs.end(); ++x) {
2142
2143                 Window* w = get_processor_ui (*x);
2144
2145                 if (w) {
2146                         w->hide ();
2147                 }
2148
2149                 _route->remove_processor(*x);
2150         }
2151
2152         no_processor_redisplay = false;
2153         redisplay_processors ();
2154 }
2155
2156 gint
2157 ProcessorBox::idle_delete_processor (boost::weak_ptr<Processor> weak_processor)
2158 {
2159         boost::shared_ptr<Processor> processor (weak_processor.lock());
2160
2161         if (!processor) {
2162                 return false;
2163         }
2164
2165         /* NOT copied to _mixer.selection() */
2166
2167         no_processor_redisplay = true;
2168         _route->remove_processor (processor);
2169         no_processor_redisplay = false;
2170         redisplay_processors ();
2171
2172         return false;
2173 }
2174
2175 void
2176 ProcessorBox::rename_processor (boost::shared_ptr<Processor> processor)
2177 {
2178         ArdourPrompter name_prompter (true);
2179         string result;
2180         name_prompter.set_title (_("Rename Processor"));
2181         name_prompter.set_prompt (_("New name:"));
2182         name_prompter.set_initial_text (processor->name());
2183         name_prompter.add_button (_("Rename"), Gtk::RESPONSE_ACCEPT);
2184         name_prompter.set_response_sensitive (Gtk::RESPONSE_ACCEPT, false);
2185         name_prompter.show_all ();
2186
2187         switch (name_prompter.run ()) {
2188
2189         case Gtk::RESPONSE_ACCEPT:
2190                 name_prompter.get_result (result);
2191                 if (result.length()) {
2192
2193                        int tries = 0;
2194                        string test = result;
2195
2196                        while (tries < 100) {
2197                                if (_session->io_name_is_legal (test)) {
2198                                        result = test;
2199                                        break;
2200                                }
2201                                tries++;
2202
2203                                test = string_compose ("%1-%2", result, tries);
2204                        }
2205
2206                        if (tries < 100) {
2207                                processor->set_name (result);
2208                        } else {
2209                                /* unlikely! */
2210                                ARDOUR_UI::instance()->popup_error
2211                                        (string_compose (_("At least 100 IO objects exist with a name like %1 - name not changed"), result));
2212                        }
2213                 }
2214                 break;
2215         }
2216
2217         return;
2218 }
2219
2220 void
2221 ProcessorBox::paste_processors ()
2222 {
2223         if (_rr_selection.processors.empty()) {
2224                 return;
2225         }
2226
2227         paste_processor_state (_rr_selection.processors.get_node().children(), boost::shared_ptr<Processor>());
2228 }
2229
2230 void
2231 ProcessorBox::paste_processors (boost::shared_ptr<Processor> before)
2232 {
2233
2234         if (_rr_selection.processors.empty()) {
2235                 return;
2236         }
2237
2238         paste_processor_state (_rr_selection.processors.get_node().children(), before);
2239 }
2240
2241 void
2242 ProcessorBox::paste_processor_state (const XMLNodeList& nlist, boost::shared_ptr<Processor> p)
2243 {
2244         XMLNodeConstIterator niter;
2245         list<boost::shared_ptr<Processor> > copies;
2246
2247         if (nlist.empty()) {
2248                 return;
2249         }
2250
2251         for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
2252
2253                 XMLProperty const * type = (*niter)->property ("type");
2254                 XMLProperty const * role = (*niter)->property ("role");
2255                 assert (type);
2256
2257                 boost::shared_ptr<Processor> p;
2258                 try {
2259                         if (type->value() == "meter" ||
2260                             type->value() == "main-outs" ||
2261                             type->value() == "amp" ||
2262                             type->value() == "intreturn") {
2263                                 /* do not paste meter, main outs, amp or internal returns */
2264                                 continue;
2265
2266                         } else if (type->value() == "intsend") {
2267
2268                                 /* aux sends are OK, but those used for
2269                                  * other purposes, are not.
2270                                  */
2271
2272                                 assert (role);
2273
2274                                 if (role->value() != "Aux") {
2275                                         continue;
2276                                 }
2277
2278                                 boost::shared_ptr<Pannable> sendpan(new Pannable (*_session));
2279                                 XMLNode n (**niter);
2280                                 InternalSend* s = new InternalSend (*_session, sendpan, _route->mute_master(),
2281                                                 _route, boost::shared_ptr<Route>(), Delivery::Aux);
2282
2283                                 IOProcessor::prepare_for_reset (n, s->name());
2284
2285                                 if (s->set_state (n, Stateful::loading_state_version)) {
2286                                         delete s;
2287                                         return;
2288                                 }
2289
2290                                 p.reset (s);
2291
2292                         } else if (type->value() == "send") {
2293
2294                                 boost::shared_ptr<Pannable> sendpan(new Pannable (*_session));
2295                                 XMLNode n (**niter);
2296
2297                                 Send* s = new Send (*_session, _route->pannable(), _route->mute_master());
2298
2299                                 IOProcessor::prepare_for_reset (n, s->name());
2300
2301                                 if (s->set_state (n, Stateful::loading_state_version)) {
2302                                         delete s;
2303                                         return;
2304                                 }
2305
2306                                 p.reset (s);
2307
2308                         } else if (type->value() == "return") {
2309
2310                                 XMLNode n (**niter);
2311                                 Return* r = new Return (*_session);
2312
2313                                 IOProcessor::prepare_for_reset (n, r->name());
2314
2315                                 if (r->set_state (n, Stateful::loading_state_version)) {
2316                                         delete r;
2317                                         return;
2318                                 }
2319
2320                                 p.reset (r);
2321
2322                         } else if (type->value() == "port") {
2323
2324                                 XMLNode n (**niter);
2325                                 PortInsert* pi = new PortInsert (*_session, _route->pannable (), _route->mute_master ());
2326
2327                                 IOProcessor::prepare_for_reset (n, pi->name());
2328
2329                                 if (pi->set_state (n, Stateful::loading_state_version)) {
2330                                         return;
2331                                 }
2332
2333                                 p.reset (pi);
2334
2335                         } else {
2336                                 /* XXX its a bit limiting to assume that everything else
2337                                    is a plugin.
2338                                 */
2339                                 p.reset (new PluginInsert (*_session));
2340                                 PBD::ID id = p->id();
2341                                 p->set_state (**niter, Stateful::current_state_version);
2342                                 boost::dynamic_pointer_cast<PluginInsert>(p)->update_id (id);
2343                         }
2344
2345                         copies.push_back (p);
2346                 }
2347
2348                 catch (...) {
2349                         error << _("plugin insert constructor failed") << endmsg;
2350                 }
2351         }
2352
2353         if (copies.empty()) {
2354                 return;
2355         }
2356
2357         if (_route->add_processors (copies, p)) {
2358
2359                 string msg = _(
2360                         "Copying the set of processors on the clipboard failed,\n\
2361 probably because the I/O configuration of the plugins\n\
2362 could not match the configuration of this track.");
2363                 MessageDialog am (msg);
2364                 am.run ();
2365         }
2366 }
2367
2368 void
2369 ProcessorBox::get_selected_processors (ProcSelection& processors) const
2370 {
2371         const list<ProcessorEntry*> selection = processor_display.selection ();
2372         for (list<ProcessorEntry*>::const_iterator i = selection.begin(); i != selection.end(); ++i) {
2373                 processors.push_back ((*i)->processor ());
2374         }
2375 }
2376
2377 void
2378 ProcessorBox::for_selected_processors (void (ProcessorBox::*method)(boost::shared_ptr<Processor>))
2379 {
2380         list<ProcessorEntry*> selection = processor_display.selection ();
2381         for (list<ProcessorEntry*>::iterator i = selection.begin(); i != selection.end(); ++i) {
2382                 (this->*method) ((*i)->processor ());
2383         }
2384 }
2385
2386 void
2387 ProcessorBox::all_visible_processors_active (bool state)
2388 {
2389         _route->all_visible_processors_active (state);
2390 }
2391
2392 void
2393 ProcessorBox::ab_plugins ()
2394 {
2395         _route->ab_plugins (ab_direction);
2396         ab_direction = !ab_direction;
2397 }
2398
2399
2400 void
2401 ProcessorBox::clear_processors ()
2402 {
2403         string prompt;
2404         vector<string> choices;
2405
2406         prompt = string_compose (_("Do you really want to remove all processors from %1?\n"
2407                                    "(this cannot be undone)"), _route->name());
2408
2409         choices.push_back (_("Cancel"));
2410         choices.push_back (_("Yes, remove them all"));
2411
2412         Gtkmm2ext::Choice prompter (_("Remove processors"), prompt, choices);
2413
2414         if (prompter.run () == 1) {
2415                 _route->clear_processors (PreFader);
2416                 _route->clear_processors (PostFader);
2417         }
2418 }
2419
2420 void
2421 ProcessorBox::clear_processors (Placement p)
2422 {
2423         string prompt;
2424         vector<string> choices;
2425
2426         if (p == PreFader) {
2427                 prompt = string_compose (_("Do you really want to remove all pre-fader processors from %1?\n"
2428                                            "(this cannot be undone)"), _route->name());
2429         } else {
2430                 prompt = string_compose (_("Do you really want to remove all post-fader processors from %1?\n"
2431                                            "(this cannot be undone)"), _route->name());
2432         }
2433
2434         choices.push_back (_("Cancel"));
2435         choices.push_back (_("Yes, remove them all"));
2436
2437         Gtkmm2ext::Choice prompter (_("Remove processors"), prompt, choices);
2438
2439         if (prompter.run () == 1) {
2440                 _route->clear_processors (p);
2441         }
2442 }
2443
2444 bool
2445 ProcessorBox::processor_can_be_edited (boost::shared_ptr<Processor> processor)
2446 {
2447         boost::shared_ptr<AudioTrack> at = boost::dynamic_pointer_cast<AudioTrack> (_route);
2448         if (at && at->freeze_state() == AudioTrack::Frozen) {
2449                 return false;
2450         }
2451
2452         if (
2453                 boost::dynamic_pointer_cast<Send> (processor) ||
2454                 boost::dynamic_pointer_cast<Return> (processor) ||
2455                 boost::dynamic_pointer_cast<PluginInsert> (processor) ||
2456                 boost::dynamic_pointer_cast<PortInsert> (processor)
2457                 ) {
2458                 return true;
2459         }
2460
2461         return false;
2462 }
2463
2464 bool
2465 ProcessorBox::one_processor_can_be_edited ()
2466 {
2467         list<ProcessorEntry*> selection = processor_display.selection ();
2468         list<ProcessorEntry*>::iterator i = selection.begin();
2469         while (i != selection.end() && processor_can_be_edited ((*i)->processor()) == false) {
2470                 ++i;
2471         }
2472
2473         return (i != selection.end());
2474 }
2475
2476 Gtk::Window*
2477 ProcessorBox::get_editor_window (boost::shared_ptr<Processor> processor, bool use_custom)
2478 {
2479         boost::shared_ptr<Send> send;
2480         boost::shared_ptr<InternalSend> internal_send;
2481         boost::shared_ptr<Return> retrn;
2482         boost::shared_ptr<PluginInsert> plugin_insert;
2483         boost::shared_ptr<PortInsert> port_insert;
2484         Window* gidget = 0;
2485
2486         /* This method may or may not return a Window, but if it does not it
2487          * will modify the parent mixer strip appearance layout to allow
2488          * "editing" the @param processor that was passed in.
2489          *
2490          * So for example, if the processor is an Amp (gain), the parent strip
2491          * will be forced back into a model where the fader controls the main gain.
2492          * If the processor is a send, then we map the send controls onto the
2493          * strip.
2494          *
2495          * Plugins and others will return a window for control.
2496          */
2497
2498         if (boost::dynamic_pointer_cast<AudioTrack>(_route) != 0) {
2499
2500                 if (boost::dynamic_pointer_cast<AudioTrack> (_route)->freeze_state() == AudioTrack::Frozen) {
2501                         return 0;
2502                 }
2503         }
2504
2505         if (boost::dynamic_pointer_cast<Amp> (processor) && boost::dynamic_pointer_cast<Amp> (processor)->type() == X_("amp")) {
2506
2507                 if (_parent_strip) {
2508                         _parent_strip->revert_to_default_display ();
2509                 }
2510
2511         } else if ((send = boost::dynamic_pointer_cast<Send> (processor)) != 0) {
2512
2513                 if (!_session->engine().connected()) {
2514                         return 0;
2515                 }
2516
2517                 if (boost::dynamic_pointer_cast<InternalSend> (processor) == 0) {
2518
2519                         gidget = new SendUIWindow (send, _session);
2520                 }
2521
2522         } else if ((retrn = boost::dynamic_pointer_cast<Return> (processor)) != 0) {
2523
2524                 if (boost::dynamic_pointer_cast<InternalReturn> (retrn)) {
2525                         /* no GUI for these */
2526                         return 0;
2527                 }
2528
2529                 if (!_session->engine().connected()) {
2530                         return 0;
2531                 }
2532
2533                 boost::shared_ptr<Return> retrn = boost::dynamic_pointer_cast<Return> (processor);
2534
2535                 ReturnUIWindow *return_ui;
2536                 Window* w = get_processor_ui (retrn);
2537
2538                 if (w == 0) {
2539
2540                         return_ui = new ReturnUIWindow (retrn, _session);
2541                         return_ui->set_title (retrn->name ());
2542                         set_processor_ui (send, return_ui);
2543
2544                 } else {
2545                         return_ui = dynamic_cast<ReturnUIWindow *> (w);
2546                 }
2547
2548                 gidget = return_ui;
2549
2550         } else if ((plugin_insert = boost::dynamic_pointer_cast<PluginInsert> (processor)) != 0) {
2551
2552                 PluginUIWindow *plugin_ui;
2553
2554                 /* these are both allowed to be null */
2555
2556                 Window* w = get_processor_ui (plugin_insert);
2557
2558                 if (w == 0) {
2559                         plugin_ui = new PluginUIWindow (plugin_insert, false, use_custom);
2560                         plugin_ui->set_title (generate_processor_title (plugin_insert));
2561                         set_processor_ui (plugin_insert, plugin_ui);
2562
2563                 } else {
2564                         plugin_ui = dynamic_cast<PluginUIWindow *> (w);
2565                 }
2566
2567                 gidget = plugin_ui;
2568
2569         } else if ((port_insert = boost::dynamic_pointer_cast<PortInsert> (processor)) != 0) {
2570
2571                 if (!_session->engine().connected()) {
2572                         MessageDialog msg ( _("Not connected to audio engine - no I/O changes are possible"));
2573                         msg.run ();
2574                         return 0;
2575                 }
2576
2577                 PortInsertWindow *io_selector;
2578
2579                 Window* w = get_processor_ui (port_insert);
2580
2581                 if (w == 0) {
2582                         io_selector = new PortInsertWindow (_session, port_insert);
2583                         set_processor_ui (port_insert, io_selector);
2584
2585                 } else {
2586                         io_selector = dynamic_cast<PortInsertWindow *> (w);
2587                 }
2588
2589                 gidget = io_selector;
2590         }
2591
2592         return gidget;
2593 }
2594
2595 Gtk::Window*
2596 ProcessorBox::get_generic_editor_window (boost::shared_ptr<Processor> processor)
2597 {
2598         boost::shared_ptr<PluginInsert> plugin_insert
2599                 = boost::dynamic_pointer_cast<PluginInsert>(processor);
2600
2601         if (!plugin_insert) {
2602                 return 0;
2603         }
2604
2605         PluginUIWindow* win = new PluginUIWindow (plugin_insert, true, false);
2606         win->set_title (generate_processor_title (plugin_insert));
2607
2608         return win;
2609 }
2610
2611 void
2612 ProcessorBox::register_actions ()
2613 {
2614         Glib::RefPtr<Gtk::ActionGroup> popup_act_grp = Gtk::ActionGroup::create(X_("ProcessorMenu"));
2615         Glib::RefPtr<Action> act;
2616
2617         /* new stuff */
2618         ActionManager::register_action (popup_act_grp, X_("newplugin"), _("New Plugin"),
2619                         sigc::ptr_fun (ProcessorBox::rb_choose_plugin));
2620
2621         act = ActionManager::register_action (popup_act_grp, X_("newinsert"), _("New Insert"),
2622                         sigc::ptr_fun (ProcessorBox::rb_choose_insert));
2623         ActionManager::engine_sensitive_actions.push_back (act);
2624         act = ActionManager::register_action (popup_act_grp, X_("newsend"), _("New External Send ..."),
2625                         sigc::ptr_fun (ProcessorBox::rb_choose_send));
2626         ActionManager::engine_sensitive_actions.push_back (act);
2627
2628         ActionManager::register_action (popup_act_grp, X_("newaux"), _("New Aux Send ..."));
2629
2630         ActionManager::register_action (popup_act_grp, X_("controls"), _("Controls"));
2631         ActionManager::register_action (popup_act_grp, X_("send_options"), _("Send Options"));
2632
2633         ActionManager::register_action (popup_act_grp, X_("clear"), _("Clear (all)"),
2634                         sigc::ptr_fun (ProcessorBox::rb_clear));
2635         ActionManager::register_action (popup_act_grp, X_("clear_pre"), _("Clear (pre-fader)"),
2636                         sigc::ptr_fun (ProcessorBox::rb_clear_pre));
2637         ActionManager::register_action (popup_act_grp, X_("clear_post"), _("Clear (post-fader)"),
2638                         sigc::ptr_fun (ProcessorBox::rb_clear_post));
2639
2640         /* standard editing stuff */
2641         cut_action = ActionManager::register_action (popup_act_grp, X_("cut"), _("Cut"),
2642                                                      sigc::ptr_fun (ProcessorBox::rb_cut));
2643         copy_action = ActionManager::register_action (popup_act_grp, X_("copy"), _("Copy"),
2644                         sigc::ptr_fun (ProcessorBox::rb_copy));
2645         delete_action = ActionManager::register_action (popup_act_grp, X_("delete"), _("Delete"),
2646                         sigc::ptr_fun (ProcessorBox::rb_delete));
2647
2648         paste_action = ActionManager::register_action (popup_act_grp, X_("paste"), _("Paste"),
2649                         sigc::ptr_fun (ProcessorBox::rb_paste));
2650         rename_action = ActionManager::register_action (popup_act_grp, X_("rename"), _("Rename"),
2651                         sigc::ptr_fun (ProcessorBox::rb_rename));
2652         ActionManager::register_action (popup_act_grp, X_("selectall"), _("Select All"),
2653                         sigc::ptr_fun (ProcessorBox::rb_select_all));
2654         ActionManager::register_action (popup_act_grp, X_("deselectall"), _("Deselect All"),
2655                         sigc::ptr_fun (ProcessorBox::rb_deselect_all));
2656
2657         /* activation etc. */
2658
2659         ActionManager::register_action (popup_act_grp, X_("activate_all"), _("Activate All"),
2660                         sigc::ptr_fun (ProcessorBox::rb_activate_all));
2661         ActionManager::register_action (popup_act_grp, X_("deactivate_all"), _("Deactivate All"),
2662                         sigc::ptr_fun (ProcessorBox::rb_deactivate_all));
2663         ActionManager::register_action (popup_act_grp, X_("ab_plugins"), _("A/B Plugins"),
2664                         sigc::ptr_fun (ProcessorBox::rb_ab_plugins));
2665
2666         /* show editors */
2667         edit_action = ActionManager::register_action (
2668                 popup_act_grp, X_("edit"), _("Edit..."),
2669                 sigc::ptr_fun (ProcessorBox::rb_edit));
2670
2671         edit_generic_action = ActionManager::register_action (
2672                 popup_act_grp, X_("edit-generic"), _("Edit with generic controls..."),
2673                 sigc::ptr_fun (ProcessorBox::rb_edit_generic));
2674
2675         ActionManager::add_action_group (popup_act_grp);
2676 }
2677
2678 void
2679 ProcessorBox::rb_edit_generic ()
2680 {
2681         if (_current_processor_box == 0) {
2682                 return;
2683         }
2684
2685         _current_processor_box->for_selected_processors (&ProcessorBox::generic_edit_processor);
2686 }
2687
2688 void
2689 ProcessorBox::rb_ab_plugins ()
2690 {
2691         if (_current_processor_box == 0) {
2692                 return;
2693         }
2694
2695         _current_processor_box->ab_plugins ();
2696 }
2697
2698 void
2699 ProcessorBox::rb_choose_plugin ()
2700 {
2701         if (_current_processor_box == 0) {
2702                 return;
2703         }
2704         _current_processor_box->choose_plugin ();
2705 }
2706
2707 void
2708 ProcessorBox::rb_choose_insert ()
2709 {
2710         if (_current_processor_box == 0) {
2711                 return;
2712         }
2713         _current_processor_box->choose_insert ();
2714 }
2715
2716 void
2717 ProcessorBox::rb_choose_send ()
2718 {
2719         if (_current_processor_box == 0) {
2720                 return;
2721         }
2722         _current_processor_box->choose_send ();
2723 }
2724
2725 void
2726 ProcessorBox::rb_choose_aux (boost::weak_ptr<Route> wr)
2727 {
2728         if (_current_processor_box == 0) {
2729                 return;
2730         }
2731
2732         _current_processor_box->choose_aux (wr);
2733 }
2734
2735 void
2736 ProcessorBox::rb_clear ()
2737 {
2738         if (_current_processor_box == 0) {
2739                 return;
2740         }
2741
2742         _current_processor_box->clear_processors ();
2743 }
2744
2745
2746 void
2747 ProcessorBox::rb_clear_pre ()
2748 {
2749         if (_current_processor_box == 0) {
2750                 return;
2751         }
2752
2753         _current_processor_box->clear_processors (PreFader);
2754 }
2755
2756
2757 void
2758 ProcessorBox::rb_clear_post ()
2759 {
2760         if (_current_processor_box == 0) {
2761                 return;
2762         }
2763
2764         _current_processor_box->clear_processors (PostFader);
2765 }
2766
2767 void
2768 ProcessorBox::rb_cut ()
2769 {
2770         if (_current_processor_box == 0) {
2771                 return;
2772         }
2773
2774         _current_processor_box->processor_operation (ProcessorsCut);
2775 }
2776
2777 void
2778 ProcessorBox::rb_delete ()
2779 {
2780         if (_current_processor_box == 0) {
2781                 return;
2782         }
2783
2784         _current_processor_box->processor_operation (ProcessorsDelete);
2785 }
2786
2787 void
2788 ProcessorBox::rb_copy ()
2789 {
2790         if (_current_processor_box == 0) {
2791                 return;
2792         }
2793         _current_processor_box->processor_operation (ProcessorsCopy);
2794 }
2795
2796 void
2797 ProcessorBox::rb_paste ()
2798 {
2799         if (_current_processor_box == 0) {
2800                 return;
2801         }
2802
2803         _current_processor_box->processor_operation (ProcessorsPaste);
2804 }
2805
2806 void
2807 ProcessorBox::rb_rename ()
2808 {
2809         if (_current_processor_box == 0) {
2810                 return;
2811         }
2812         _current_processor_box->rename_processors ();
2813 }
2814
2815 void
2816 ProcessorBox::rb_select_all ()
2817 {
2818         if (_current_processor_box == 0) {
2819                 return;
2820         }
2821
2822         _current_processor_box->processor_operation (ProcessorsSelectAll);
2823 }
2824
2825 void
2826 ProcessorBox::rb_deselect_all ()
2827 {
2828         if (_current_processor_box == 0) {
2829                 return;
2830         }
2831
2832         _current_processor_box->deselect_all_processors ();
2833 }
2834
2835 void
2836 ProcessorBox::rb_activate_all ()
2837 {
2838         if (_current_processor_box == 0) {
2839                 return;
2840         }
2841
2842         _current_processor_box->all_visible_processors_active (true);
2843 }
2844
2845 void
2846 ProcessorBox::rb_deactivate_all ()
2847 {
2848         if (_current_processor_box == 0) {
2849                 return;
2850         }
2851         _current_processor_box->all_visible_processors_active (false);
2852 }
2853
2854 void
2855 ProcessorBox::rb_edit ()
2856 {
2857         if (_current_processor_box == 0) {
2858                 return;
2859         }
2860
2861         _current_processor_box->for_selected_processors (&ProcessorBox::edit_processor);
2862 }
2863
2864 bool
2865 ProcessorBox::edit_aux_send (boost::shared_ptr<Processor> processor)
2866 {
2867         if (boost::dynamic_pointer_cast<InternalSend> (processor) == 0) {
2868                 return false;
2869         }
2870
2871         if (_parent_strip) {
2872                 boost::shared_ptr<Send> send = boost::dynamic_pointer_cast<Send> (processor);
2873                 if (_parent_strip->current_delivery() == send) {
2874                         _parent_strip->revert_to_default_display ();
2875                 } else {
2876                         _parent_strip->show_send(send);
2877                 }
2878         }
2879         return true;
2880 }
2881
2882 void
2883 ProcessorBox::edit_processor (boost::shared_ptr<Processor> processor)
2884 {
2885         if (!processor) {
2886                 return;
2887         }
2888         if (edit_aux_send (processor)) {
2889                 return;
2890         }
2891
2892         ProcessorWindowProxy* proxy = find_window_proxy (processor);
2893
2894         if (proxy) {
2895                 proxy->set_custom_ui_mode (true);
2896                 proxy->toggle ();
2897         }
2898 }
2899
2900 void
2901 ProcessorBox::generic_edit_processor (boost::shared_ptr<Processor> processor)
2902 {
2903         if (!processor) {
2904                 return;
2905         }
2906         if (edit_aux_send (processor)) {
2907                 return;
2908         }
2909
2910         ProcessorWindowProxy* proxy = find_window_proxy (processor);
2911
2912         if (proxy) {
2913                 proxy->set_custom_ui_mode (false);
2914                 proxy->toggle ();
2915         }
2916 }
2917
2918 void
2919 ProcessorBox::route_property_changed (const PropertyChange& what_changed)
2920 {
2921         if (!what_changed.contains (ARDOUR::Properties::name)) {
2922                 return;
2923         }
2924
2925         ENSURE_GUI_THREAD (*this, &ProcessorBox::route_property_changed, what_changed);
2926
2927         boost::shared_ptr<Processor> processor;
2928         boost::shared_ptr<PluginInsert> plugin_insert;
2929         boost::shared_ptr<Send> send;
2930
2931         list<ProcessorEntry*> children = processor_display.children();
2932
2933         for (list<ProcessorEntry*>::iterator iter = children.begin(); iter != children.end(); ++iter) {
2934
2935                 processor = (*iter)->processor ();
2936
2937                 if (!processor) {
2938                         continue;
2939                 }
2940
2941                 Window* w = get_processor_ui (processor);
2942
2943                 if (!w) {
2944                         continue;
2945                 }
2946
2947                 /* rename editor windows for sends and plugins */
2948
2949                 if ((send = boost::dynamic_pointer_cast<Send> (processor)) != 0) {
2950                         w->set_title (send->name ());
2951                 } else if ((plugin_insert = boost::dynamic_pointer_cast<PluginInsert> (processor)) != 0) {
2952                         w->set_title (generate_processor_title (plugin_insert));
2953                 }
2954         }
2955 }
2956
2957 string
2958 ProcessorBox::generate_processor_title (boost::shared_ptr<PluginInsert> pi)
2959 {
2960         string maker = pi->plugin()->maker() ? pi->plugin()->maker() : "";
2961         string::size_type email_pos;
2962
2963         if ((email_pos = maker.find_first_of ('<')) != string::npos) {
2964                 maker = maker.substr (0, email_pos - 1);
2965         }
2966
2967         if (maker.length() > 32) {
2968                 maker = maker.substr (0, 32);
2969                 maker += " ...";
2970         }
2971
2972         SessionObject* owner = pi->owner();
2973
2974         if (owner) {
2975                 return string_compose(_("%1: %2 (by %3)"), owner->name(), pi->name(), maker);
2976         } else {
2977                 return string_compose(_("%1 (by %2)"), pi->name(), maker);
2978         }
2979 }
2980
2981 /** @param p Processor.
2982  *  @return the UI window for \a p.
2983  */
2984 Window *
2985 ProcessorBox::get_processor_ui (boost::shared_ptr<Processor> p) const
2986 {
2987         ProcessorWindowProxy* wp = p->window_proxy();
2988         if (wp) {
2989                 return wp->get ();
2990         }
2991         return 0;
2992 }
2993
2994 /** Make a note of the UI window that a processor is using.
2995  *  @param p Processor.
2996  *  @param w UI window.
2997  */
2998 void
2999 ProcessorBox::set_processor_ui (boost::shared_ptr<Processor> p, Gtk::Window* w)
3000 {
3001         assert (p->window_proxy());
3002         p->set_ui (w);
3003         p->window_proxy()->use_window (*w);
3004 }
3005
3006 void
3007 ProcessorBox::mixer_strip_delivery_changed (boost::weak_ptr<Delivery> w)
3008 {
3009         boost::shared_ptr<Delivery> d = w.lock ();
3010         if (!d) {
3011                 return;
3012         }
3013
3014         list<ProcessorEntry*> children = processor_display.children ();
3015         list<ProcessorEntry*>::const_iterator i = children.begin();
3016         while (i != children.end() && (*i)->processor() != d) {
3017                 ++i;
3018         }
3019
3020         if (i == children.end()) {
3021                 processor_display.set_active (0);
3022         } else {
3023                 processor_display.set_active (*i);
3024         }
3025 }
3026
3027 /** Called to repair the damage of Editor::show_window doing a show_all() */
3028 void
3029 ProcessorBox::hide_things ()
3030 {
3031         list<ProcessorEntry*> c = processor_display.children ();
3032         for (list<ProcessorEntry*>::iterator i = c.begin(); i != c.end(); ++i) {
3033                 (*i)->hide_things ();
3034         }
3035 }
3036
3037 void
3038 ProcessorBox::processor_menu_unmapped ()
3039 {
3040         processor_display.remove_placeholder ();
3041 }
3042
3043 XMLNode *
3044 ProcessorBox::entry_gui_object_state (ProcessorEntry* entry)
3045 {
3046         if (!_parent_strip) {
3047                 return 0;
3048         }
3049
3050         GUIObjectState& st = _parent_strip->gui_object_state ();
3051
3052         XMLNode* strip = st.get_or_add_node (_parent_strip->state_id ());
3053         assert (strip);
3054         return st.get_or_add_node (strip, entry->state_id());
3055 }
3056
3057 void
3058 ProcessorBox::update_gui_object_state (ProcessorEntry* entry)
3059 {
3060         XMLNode* proc = entry_gui_object_state (entry);
3061         if (!proc) {
3062                 return;
3063         }
3064
3065         /* XXX: this is a bit inefficient; we just remove all child nodes and re-add them */
3066         proc->remove_nodes_and_delete (X_("Object"));
3067         entry->add_control_state (proc);
3068 }
3069
3070 bool
3071 ProcessorBox::is_editor_mixer_strip() const
3072 {
3073         return _parent_strip && !_parent_strip->mixer_owned();
3074 }
3075
3076 ProcessorWindowProxy::ProcessorWindowProxy (string const & name, ProcessorBox* box, boost::weak_ptr<Processor> processor)
3077         : WM::ProxyBase (name, string())
3078         , _processor_box (box)
3079         , _processor (processor)
3080         , is_custom (false)
3081         , want_custom (false)
3082 {
3083         boost::shared_ptr<Processor> p = _processor.lock ();
3084         if (!p) {
3085                 return;
3086         }
3087         p->DropReferences.connect (going_away_connection, MISSING_INVALIDATOR, boost::bind (&ProcessorWindowProxy::processor_going_away, this), gui_context());
3088 }
3089
3090 ProcessorWindowProxy::~ProcessorWindowProxy()
3091 {
3092         /* processor window proxies do not own the windows they create with
3093          * ::get(), so set _window to null before the normal WindowProxy method
3094          * deletes it.
3095          */
3096         _window = 0;
3097 }
3098
3099 void
3100 ProcessorWindowProxy::processor_going_away ()
3101 {
3102         delete _window;
3103         _window = 0;
3104         WM::Manager::instance().remove (this);
3105         /* should be no real reason to do this, since the object that would
3106            send DropReferences is about to be deleted, but lets do it anyway.
3107         */
3108         going_away_connection.disconnect();
3109 }
3110
3111 ARDOUR::SessionHandlePtr*
3112 ProcessorWindowProxy::session_handle()
3113 {
3114         /* we don't care */
3115         return 0;
3116 }
3117
3118 XMLNode&
3119 ProcessorWindowProxy::get_state () const
3120 {
3121         XMLNode *node;
3122         node = &ProxyBase::get_state();
3123         node->add_property (X_("custom-ui"), is_custom? X_("yes") : X_("no"));
3124         return *node;
3125 }
3126
3127 void
3128 ProcessorWindowProxy::set_state (const XMLNode& node)
3129 {
3130         XMLNodeList children = node.children ();
3131         XMLNodeList::const_iterator i = children.begin ();
3132         while (i != children.end()) {
3133                 XMLProperty* prop = (*i)->property (X_("name"));
3134                 if ((*i)->name() == X_("Window") && prop && prop->value() == _name) {
3135                         break;
3136                 }
3137                 ++i;
3138         }
3139
3140         if (i != children.end()) {
3141                 XMLProperty* prop;
3142                 if ((prop = (*i)->property (X_("custom-ui"))) != 0) {
3143                         want_custom = PBD::string_is_affirmative (prop->value ());
3144                 }
3145         }
3146
3147         ProxyBase::set_state(node);
3148 }
3149
3150 Gtk::Window*
3151 ProcessorWindowProxy::get (bool create)
3152 {
3153         boost::shared_ptr<Processor> p = _processor.lock ();
3154
3155         if (!p) {
3156                 return 0;
3157         }
3158         if (_window && (is_custom != want_custom)) {
3159                 /* drop existing window - wrong type */
3160                 drop_window ();
3161         }
3162
3163         if (!_window) {
3164                 if (!create) {
3165                         return 0;
3166                 }
3167
3168                 is_custom = want_custom;
3169                 _window = _processor_box->get_editor_window (p, is_custom);
3170
3171                 if (_window) {
3172                         setup ();
3173                 }
3174         }
3175
3176         return _window;
3177 }
3178
3179 void
3180 ProcessorWindowProxy::toggle ()
3181 {
3182         if (_window && (is_custom != want_custom)) {
3183                 /* drop existing window - wrong type */
3184                 drop_window ();
3185         }
3186         is_custom = want_custom;
3187
3188         WM::ProxyBase::toggle ();
3189 }