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