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