42c9f87e87ff174f716fa71f5e7f97318135aec1
[ardour.git] / gtk2_ardour / io_selector.cc
1 /*
2     Copyright (C) 2002-2007 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 #include <gtkmm/label.h>
21 #include <gtkmm/enums.h>
22 #include <gtkmm/image.h>
23 #include <gtkmm/stock.h>
24 #include <gtkmm/messagedialog.h>
25 #include <gtkmm/menu.h>
26 #include <gtkmm/menu_elems.h>
27 #include <gtkmm/menuitem.h>
28 #include <gtkmm/menushell.h>
29 #include <glibmm/objectbase.h>
30 #include <gtkmm2ext/doi.h>
31 #include <ardour/port_insert.h>
32 #include "ardour/session.h"
33 #include "ardour/io.h"
34 #include "ardour/audioengine.h"
35 #include "ardour/track.h"
36 #include "ardour/audio_track.h"
37 #include "ardour/midi_track.h"
38 #include "ardour/data_type.h"
39 #include "io_selector.h"
40 #include "utils.h"
41 #include "gui_thread.h"
42 #include "i18n.h"
43
44 /** Add a port to a group.
45  *  @param p Port name, with or without prefix.
46  */
47
48 void
49 PortGroup::add (std::string const & p)
50 {
51         if (prefix.empty() == false && p.substr (0, prefix.length()) == prefix) {
52                 ports.push_back (p.substr (prefix.length()));
53         } else {
54                 ports.push_back (p);
55         }
56 }
57
58
59 PortGroupTable::PortGroupTable (
60         PortGroup& g, boost::shared_ptr<ARDOUR::IO> io, bool for_input
61         )
62         : _port_group (g), _ignore_check_button_toggle (false),
63           _io (io), _for_input (for_input)
64 {
65         ARDOUR::DataType const t = _io->default_type();
66
67         int rows;
68         if (_for_input) {
69                 rows = _io->n_inputs().get(t);
70         } else {
71                 rows = _io->n_outputs().get(t);
72         }       
73         
74         int const ports = _port_group.ports.size();
75
76         if (rows == 0 || ports == 0) {
77                 return;
78         }
79
80         /* Sort out the table and the checkbuttons inside it */
81         
82         _table.resize (rows, ports);
83         _check_buttons.resize (rows);
84         for (int i = 0; i < rows; ++i) {
85                 _check_buttons[i].resize (ports);
86         }
87
88         for (int i = 0; i < rows; ++i) {
89                 for (uint32_t j = 0; j < _port_group.ports.size(); ++j) {
90                         Gtk::CheckButton* b = new Gtk::CheckButton;
91                         b->signal_toggled().connect (sigc::bind (sigc::mem_fun (*this, &PortGroupTable::check_button_toggled), b, i, _port_group.prefix + _port_group.ports[j]));
92                         _check_buttons[i][j] = b;
93                         _table.attach (*b, j, j + 1, i, i + 1);
94                 }
95         }
96
97         _box.add (_table);
98
99         _ignore_check_button_toggle = true;
100
101         /* Set the state of the check boxes according to current connections */
102         for (int i = 0; i < rows; ++i) {
103                 const char **connections = _for_input ? _io->input(i)->get_connections() : _io->output(i)->get_connections();
104                 for (uint32_t j = 0; j < _port_group.ports.size(); ++j) {
105
106                         std::string const t = _port_group.prefix + _port_group.ports[j];
107                         int k = 0;
108                         bool required_state = false;
109
110                         while (connections && connections[k]) {
111                                 if (std::string(connections[k]) == t) {
112                                         required_state = true;
113                                         break;
114                                 }
115                                 ++k;
116                         }
117
118                         _check_buttons[i][j]->set_active (required_state);
119                 }
120         }
121
122         _ignore_check_button_toggle = false;
123 }
124
125 /** @return Width and height of a single check button in a port group table */
126 std::pair<int, int>
127 PortGroupTable::unit_size () const
128 {
129         if (_check_buttons.empty() || _check_buttons[0].empty()) {
130                 return std::pair<int, int> (0, 0);
131         }
132
133         return std::make_pair (
134                 _check_buttons[0][0]->get_width() + _table.get_col_spacing (0),
135                 _check_buttons[0][0]->get_height() + _table.get_row_spacing (0)
136                 );
137 }
138
139 Gtk::Widget&
140 PortGroupTable::get_widget ()
141 {
142         return _box;
143 }
144
145
146 /** Handle a toggle of a check button */
147 void
148 PortGroupTable::check_button_toggled (Gtk::CheckButton* b, int r, std::string const & p)
149 {
150         if (_ignore_check_button_toggle) {
151                 return;
152         }
153         
154         bool const new_state = b->get_active ();
155
156         if (new_state) {
157                 if (_for_input) {
158                         _io->connect_input (_io->input(r), p, 0);
159                 } else {
160                         _io->connect_output (_io->output(r), p, 0);
161                 }
162         } else {
163                 if (_for_input) {
164                         _io->disconnect_input (_io->input(r), p, 0);
165                 } else {
166                         _io->disconnect_output (_io->output(r), p, 0);
167                 }
168         }
169 }
170
171
172 RotatedLabelSet::RotatedLabelSet (PortGroupList& g)
173         : Glib::ObjectBase ("RotatedLabelSet"), Gtk::Widget (), _port_group_list (g), _base_width (128)
174 {
175         set_flags (Gtk::NO_WINDOW);
176         set_angle (30);
177 }
178
179 RotatedLabelSet::~RotatedLabelSet ()
180 {
181         
182 }
183
184
185 /** Set the angle that the labels are drawn at.
186  * @param degrees New angle in degrees.
187  */
188
189 void
190 RotatedLabelSet::set_angle (int degrees)
191 {
192         _angle_degrees = degrees;
193         _angle_radians = M_PI * _angle_degrees / 180;
194
195         queue_resize ();
196 }
197
198 void
199 RotatedLabelSet::on_size_request (Gtk::Requisition* requisition)
200 {
201         *requisition = Gtk::Requisition ();
202
203         if (_pango_layout == 0) {
204                 return;
205         }
206
207         /* Our height is the highest label */
208         requisition->height = 0;
209         for (PortGroupList::const_iterator i = _port_group_list.begin(); i != _port_group_list.end(); ++i) {
210                 for (std::vector<std::string>::const_iterator j = i->ports.begin(); j != i->ports.end(); ++j) {
211                         std::pair<int, int> const d = setup_layout (*j);
212                         if (d.second > requisition->height) {
213                                 requisition->height = d.second;
214                         }
215                 }
216         }
217
218         /* And our width is the base plus the width of the last label */
219         requisition->width = _base_width;
220         int const n = _port_group_list.n_visible_ports ();
221         if (n > 0) {
222                 std::pair<int, int> const d = setup_layout (_port_group_list.get_port_by_index (n - 1, false));
223                 requisition->width += d.first;
224         }
225 }
226
227 void
228 RotatedLabelSet::on_size_allocate (Gtk::Allocation& allocation)
229 {
230         set_allocation (allocation);
231
232         if (_gdk_window) {
233                 _gdk_window->move_resize (
234                         allocation.get_x(), allocation.get_y(), allocation.get_width(), allocation.get_height()
235                         );
236         }
237 }
238
239 void
240 RotatedLabelSet::on_realize ()
241 {
242         Gtk::Widget::on_realize ();
243
244         Glib::RefPtr<Gtk::Style> style = get_style ();
245
246         if (!_gdk_window) {
247                 GdkWindowAttr attributes;
248                 memset (&attributes, 0, sizeof (attributes));
249
250                 Gtk::Allocation allocation = get_allocation ();
251                 attributes.x = allocation.get_x ();
252                 attributes.y = allocation.get_y ();
253                 attributes.width = allocation.get_width ();
254                 attributes.height = allocation.get_height ();
255
256                 attributes.event_mask = get_events () | Gdk::EXPOSURE_MASK; 
257                 attributes.window_type = GDK_WINDOW_CHILD;
258                 attributes.wclass = GDK_INPUT_OUTPUT;
259
260                 _gdk_window = Gdk::Window::create (get_window (), &attributes, GDK_WA_X | GDK_WA_Y);
261                 unset_flags (Gtk::NO_WINDOW);
262                 set_window (_gdk_window);
263
264                 _bg_colour = style->get_bg (Gtk::STATE_NORMAL );
265                 modify_bg (Gtk::STATE_NORMAL, _bg_colour);
266                 _fg_colour = style->get_fg (Gtk::STATE_NORMAL);
267 ;
268                 _gdk_window->set_user_data (gobj ());
269
270                 /* Set up Pango stuff */
271                 _pango_context = create_pango_context ();
272
273                 Pango::Matrix matrix = PANGO_MATRIX_INIT;
274                 pango_matrix_rotate (&matrix, _angle_degrees);
275                 _pango_context->set_matrix (matrix);
276
277                 _pango_layout = Pango::Layout::create (_pango_context);
278                 _gc = Gdk::GC::create (get_window ());
279         }
280 }
281
282 void
283 RotatedLabelSet::on_unrealize()
284 {
285         _gdk_window.clear ();
286
287         Gtk::Widget::on_unrealize ();
288 }
289
290
291 /** Set up our Pango layout to plot a given string, and compute its dimensions once
292  *  it has been rotated.
293  *  @param s String to use.
294  *  @return width and height of the rotated string, in pixels.
295  */
296
297 std::pair<int, int>
298 RotatedLabelSet::setup_layout (std::string const & s)
299 {
300         _pango_layout->set_text (s);
301
302         /* Here's the unrotated size */
303         int w;
304         int h;
305         _pango_layout->get_pixel_size (w, h);
306
307         /* Rotate the width and height as appropriate.  I thought Pango might be able
308            to do this for us, but I can't find out how... */
309         std::pair<int, int> d;
310         d.first = int (w * cos (_angle_radians) - h * sin (_angle_radians));
311         d.second = int (w * sin (_angle_radians) + h * cos (_angle_radians));
312
313         return d;
314 }
315
316 bool
317 RotatedLabelSet::on_expose_event (GdkEventExpose* event)
318 {
319         if (!_gdk_window) {
320                 return true;
321         }
322
323         int const height = get_allocation().get_height ();
324         double const spacing = double (_base_width) / _port_group_list.n_visible_ports();
325
326         /* Plot all the visible labels; really we should clip for efficiency */
327         int n = 0;
328         for (PortGroupList::const_iterator i = _port_group_list.begin(); i != _port_group_list.end(); ++i) {
329                 if (i->visible) {
330                         for (uint32_t j = 0; j < i->ports.size(); ++j) {
331                                 std::pair<int, int> const d = setup_layout (i->ports[j]);
332                                 get_window()->draw_layout (_gc, int ((n + 0.25) * spacing), height - d.second, _pango_layout, _fg_colour, _bg_colour);
333                                 ++n;
334                         }
335                 }
336         }
337
338         return true;
339 }
340
341 /** Set the `base width'.  This is the width of the base of the label set, ie:
342  *
343  *     L L L L
344  *    E E E E
345  *   B B B B
346  *  A A A A
347  * L L L L
348  * <--w-->
349  */
350     
351 void
352 RotatedLabelSet::set_base_width (int w)
353 {
354         _base_width = w;
355         queue_resize ();
356 }
357
358
359 /** Construct an IOSelector.
360  *  @param session Session to operate on.
361  *  @param io IO to operate on.
362  *  @param for_input true if the selector is for an input, otherwise false.
363  */
364  
365 IOSelector::IOSelector (ARDOUR::Session& session, boost::shared_ptr<ARDOUR::IO> io, bool for_input)
366         : _port_group_list (session, io, for_input), _io (io), _for_input (for_input),
367           _row_labels_vbox (0), _column_labels (_port_group_list), _left_vbox_pad (0)
368 {
369         Gtk::HBox* c = new Gtk::HBox;
370         for (PortGroupList::iterator i = _port_group_list.begin(); i != _port_group_list.end(); ++i) {
371                 Gtk::CheckButton* b = new Gtk::CheckButton (i->name);
372                 b->set_active (true);
373                 b->signal_toggled().connect (sigc::bind (sigc::mem_fun (*this, &IOSelector::group_visible_toggled), b, i->name));
374                 c->pack_start (*Gtk::manage (b));
375         }
376         pack_start (*Gtk::manage (c));
377         
378         _left_vbox.pack_start (*Gtk::manage (new Gtk::Label ("")));
379         _overall_hbox.pack_start (_left_vbox, false, false);
380         _scrolled_window.set_policy (Gtk::POLICY_ALWAYS, Gtk::POLICY_NEVER);
381         _scrolled_window.set_shadow_type (Gtk::SHADOW_NONE);
382         Gtk::VBox* b = new Gtk::VBox;
383         b->pack_start (_column_labels, false, false);
384         b->pack_start (_port_group_hbox, false, false);
385         Gtk::Alignment* a = new Gtk::Alignment (0, 1, 0, 0);
386         a->add (*Gtk::manage (b));
387         _scrolled_window.add (*Gtk::manage (a));
388         _overall_hbox.pack_start (_scrolled_window);
389         pack_start (_overall_hbox);
390
391         _port_group_hbox.signal_size_allocate().connect (sigc::hide (sigc::mem_fun (*this, &IOSelector::setup_dimensions)));
392
393         /* Listen for ports changing on the IO */
394         if (_for_input) {
395                 _io->input_changed.connect (mem_fun(*this, &IOSelector::ports_changed));
396         } else {
397                 _io->output_changed.connect (mem_fun(*this, &IOSelector::ports_changed));
398         }
399         
400 }
401
402 IOSelector::~IOSelector ()
403 {
404         clear ();
405 }
406
407 /** Clear out the things that change when the number of source or destination ports changes */
408 void
409 IOSelector::clear ()
410 {
411         for (std::vector<Gtk::EventBox*>::iterator i = _row_labels.begin(); i != _row_labels.end(); ++i) {
412                 delete *i;
413         }
414         _row_labels.clear ();
415         
416         if (_row_labels_vbox) {
417                 _left_vbox.remove (*_row_labels_vbox);
418         }
419         delete _row_labels_vbox;
420         _row_labels_vbox = 0;
421
422         if (_left_vbox_pad) {
423                 _left_vbox.remove (*_left_vbox_pad);
424         }
425         delete _left_vbox_pad;
426         _left_vbox_pad = 0;
427         
428         for (std::vector<PortGroupTable*>::iterator i = _port_group_tables.begin(); i != _port_group_tables.end(); ++i) {
429                 _port_group_hbox.remove ((*i)->get_widget());
430                 delete *i;
431         }
432
433         _port_group_tables.clear ();
434 }
435
436
437 /** Set up dimensions of some of our widgets which depend on other dimensions
438  *  within the dialogue.
439  */
440 void
441 IOSelector::setup_dimensions ()
442 {
443         /* Get some dimensions from various places */
444         int const scrollbar_height = _scrolled_window.get_hscrollbar()->get_height();
445
446         std::pair<int, int> unit_size (0, 0);
447         int port_group_tables_height = 0;
448         for (std::vector<PortGroupTable*>::iterator i = _port_group_tables.begin(); i != _port_group_tables.end(); ++i) {
449                 std::pair<int, int> const u = (*i)->unit_size ();
450                 unit_size.first = std::max (unit_size.first, u.first);
451                 unit_size.second = std::max (unit_size.second, u.second);
452                 port_group_tables_height = std::max (
453                         port_group_tables_height, (*i)->get_widget().get_height()
454                         );
455         }
456
457         /* Column labels */
458         _column_labels.set_base_width (_port_group_list.n_visible_ports () * unit_size.first);
459
460         /* Scrolled window */
461         /* XXX: really shouldn't set a minimum horizontal size here, but if we don't
462            the window starts up very small */
463         _scrolled_window.set_size_request (
464                 std::min (_column_labels.get_width(), 640),
465                 _column_labels.get_height() + port_group_tables_height + scrollbar_height + 16
466                 );
467         
468         /* Row labels */
469         for (std::vector<Gtk::EventBox*>::iterator i = _row_labels.begin(); i != _row_labels.end(); ++i) {
470                 (*i)->get_child()->set_size_request (-1, unit_size.second);
471         }
472
473
474         if (_left_vbox_pad) {
475                 _left_vbox_pad->set_size_request (-1, scrollbar_height + unit_size.second / 4);
476         }
477 }
478
479
480 /** Set up the dialogue */
481 void
482 IOSelector::setup ()
483 {
484         clear ();
485
486         /* Work out how many rows we have */
487         ARDOUR::DataType const t = _io->default_type();
488
489         int rows;
490         if (_for_input) {
491                 rows = _io->n_inputs().get(t);
492         } else {
493                 rows = _io->n_outputs().get(t);
494         }       
495         
496         /* Row labels */
497         _row_labels_vbox = new Gtk::VBox;
498         for (int i = 0; i < rows; ++i) {
499                 Gtk::Label* label = new Gtk::Label (_for_input ? _io->input(i)->name() : _io->output(i)->name());
500                 Gtk::EventBox* b = new Gtk::EventBox;
501                 b->set_events (Gdk::BUTTON_PRESS_MASK);
502                 b->signal_button_press_event().connect (sigc::bind (sigc::mem_fun (*this, &IOSelector::row_label_button_pressed), i));
503                 b->add (*Gtk::manage (label));
504                 _row_labels.push_back (b);
505                 _row_labels_vbox->pack_start (*b, false, false);
506         }
507         _left_vbox.pack_start (*_row_labels_vbox, false, false);
508         _left_vbox_pad = new Gtk::Label ("");
509         _left_vbox.pack_start (*_left_vbox_pad, false, false);
510
511         /* Checkbutton tables */
512         int n = 0;
513         for (PortGroupList::iterator i = _port_group_list.begin(); i != _port_group_list.end(); ++i) {
514                 PortGroupTable* t = new PortGroupTable (*i, _io, _for_input);
515
516                 /* XXX: this is a bit of a hack; should probably use a configurable colour here */
517                 Gdk::Color alt_bg = get_style()->get_bg (Gtk::STATE_NORMAL);
518                 alt_bg.set_rgb (alt_bg.get_red() + 4096, alt_bg.get_green() + 4096, alt_bg.get_blue () + 4096);
519                 if ((n % 2) == 0) {
520                         t->get_widget().modify_bg (Gtk::STATE_NORMAL, alt_bg);
521                 }
522
523                 _port_group_tables.push_back (t);
524                 _port_group_hbox.pack_start (t->get_widget(), false, false);
525                 ++n;
526         }
527
528         show_all ();
529 }
530
531 void
532 IOSelector::ports_changed (ARDOUR::IOChange change, void *src)
533 {
534         ENSURE_GUI_THREAD (bind (mem_fun (*this, &IOSelector::ports_changed), change, src));
535
536         redisplay ();
537 }
538
539
540 void
541 IOSelector::redisplay ()
542 {
543         _port_group_list.refresh ();
544         setup ();
545 }
546
547
548 /** Handle a button press on a row label */
549 bool
550 IOSelector::row_label_button_pressed (GdkEventButton* e, int r)
551 {
552         if (e->type != GDK_BUTTON_PRESS || e->button != 3) {
553                 return false;
554         }
555
556         Gtk::Menu* menu = Gtk::manage (new Gtk::Menu);
557         Gtk::Menu_Helpers::MenuList& items = menu->items ();
558         menu->set_name ("ArdourContextMenu");
559
560         bool can_add;
561         bool can_remove;
562         std::string name;
563         ARDOUR::DataType const t = _io->default_type();
564
565         if (_for_input) {
566                 can_add = _io->input_maximum().get(t) > _io->n_inputs().get(t);
567                 can_remove = _io->input_minimum().get(t) < _io->n_inputs().get(t);
568                 name = _io->input(r)->name();
569         } else {
570                 can_add = _io->output_maximum().get(t) > _io->n_outputs().get(t);
571                 can_remove = _io->output_minimum().get(t) < _io->n_outputs().get(t);
572                 name = _io->output(r)->name();
573         }
574         
575         items.push_back (
576                 Gtk::Menu_Helpers::MenuElem (_("Add port"), sigc::mem_fun (*this, &IOSelector::add_port))
577                 );
578
579         items.back().set_sensitive (can_add);
580
581         items.push_back (
582                 Gtk::Menu_Helpers::MenuElem (_("Remove port '") + name + _("'"), sigc::bind (sigc::mem_fun (*this, &IOSelector::remove_port), r))
583                 );
584
585         items.back().set_sensitive (can_remove);
586
587         menu->popup (e->button, e->time);
588         
589         return true;
590 }
591
592 void
593 IOSelector::add_port ()
594 {
595         // The IO selector only works for single typed IOs
596         const ARDOUR::DataType t = _io->default_type ();
597
598         if (_for_input) {
599
600                 try {
601                         _io->add_input_port ("", this);
602                 }
603
604                 catch (ARDOUR::AudioEngine::PortRegistrationFailure& err) {
605                         Gtk::MessageDialog msg (0,  _("There are no more JACK ports available."));
606                         msg.run ();
607                 }
608
609         } else {
610
611                 try {
612                         _io->add_output_port ("", this);
613                 }
614
615                 catch (ARDOUR::AudioEngine::PortRegistrationFailure& err) {
616                         Gtk::MessageDialog msg (0, _("There are no more JACK ports available."));
617                         msg.run ();
618                 }
619         }
620 }
621
622 void
623 IOSelector::remove_port (int r)
624 {
625         // The IO selector only works for single typed IOs
626         const ARDOUR::DataType t = _io->default_type ();
627         
628         if (_for_input) {
629                 _io->remove_input_port (_io->input (r), this);
630         } else {
631                 _io->remove_output_port (_io->output (r), this);
632         }
633 }
634
635 void
636 IOSelector::group_visible_toggled (Gtk::CheckButton* b, std::string const & n)
637 {
638         PortGroupList::iterator i = _port_group_list.begin();
639         while (i != _port_group_list.end() & i->name != n) {
640                 ++i;
641         }
642
643         if (i == _port_group_list.end()) {
644                 return;
645         }
646
647         i->visible = b->get_active ();
648
649         /* Update PortGroupTable visibility */
650
651         for (std::vector<PortGroupTable*>::iterator j = _port_group_tables.begin(); j != _port_group_tables.end(); ++j) {
652                 if ((*j)->port_group().visible) {
653                         (*j)->get_widget().show();
654                 } else {
655                         (*j)->get_widget().hide();
656                 }
657         }
658
659         _column_labels.queue_draw ();
660 }
661
662
663 PortGroupList::PortGroupList (ARDOUR::Session & session, boost::shared_ptr<ARDOUR::IO> io, bool for_input)
664         : _session (session), _io (io), _for_input (for_input)
665 {
666         refresh ();
667 }
668
669 void
670 PortGroupList::refresh ()
671 {
672         clear ();
673
674         /* Find the ports provided by ardour; we can't derive their type just from their
675            names, so we'll have to be more devious. */
676
677         boost::shared_ptr<ARDOUR::Session::RouteList> routes = _session.get_routes ();
678
679         PortGroup buss (_("Buss"), "ardour:");
680         PortGroup track (_("Track"), "ardour:");
681
682         for (ARDOUR::Session::RouteList::const_iterator i = routes->begin(); i != routes->end(); ++i) {
683
684                 PortGroup* g = 0;
685                 if (_io->default_type() == ARDOUR::DataType::AUDIO && dynamic_cast<ARDOUR::AudioTrack*> ((*i).get())) {
686                         /* Audio track for an audio IO */
687                         g = &track;
688                 } else if (_io->default_type() == ARDOUR::DataType::MIDI && dynamic_cast<ARDOUR::MidiTrack*> ((*i).get())) {
689                         /* Midi track for a MIDI IO */
690                         g = &track;
691                 } else if (_io->default_type() == ARDOUR::DataType::AUDIO && dynamic_cast<ARDOUR::MidiTrack*> ((*i).get()) == 0) {
692                         /* Non-MIDI track for an Audio IO; must be an audio buss */
693                         g = &buss;
694                 }
695
696                 if (g) {
697                         ARDOUR::PortSet const & p = _for_input ? ((*i)->outputs()) : ((*i)->inputs());
698                         for (uint32_t j = 0; j < p.num_ports(); ++j) {
699                                 g->add (p.port(j)->name ());
700                         }
701
702                         std::sort (g->ports.begin(), g->ports.end());
703                 }
704         }
705         
706
707         /* XXX: inserts, sends, plugin inserts? */
708         
709         /* Now we need to find the non-ardour ports; we do this by first
710            finding all the ports that we can connect to. */
711         const char **ports = _session.engine().get_ports (
712                 "", _io->default_type().to_jack_type(), _for_input ? JackPortIsOutput : JackPortIsInput
713                 );
714
715         PortGroup system (_("System"), "system:");
716         PortGroup other (_("Other"), "");
717         
718         if (ports) {
719
720                 int n = 0;
721                 while (ports[n]) {
722                         std::string const p = ports[n];
723
724                         if (p.substr(0, strlen ("system:")) == "system:") {
725                                 /* system: prefix */
726                                 system.add (p);
727                         } else {
728                                 if (p.substr(0, strlen("ardour:")) != "ardour:") {
729                                         /* other (non-ardour) prefix */
730                                         other.add (p);
731                                 }
732                         }
733
734                         ++n;
735                 }
736         }
737
738         push_back (buss);
739         push_back (track);
740         push_back (system);
741         push_back (other);
742 }
743
744 int
745 PortGroupList::n_visible_ports () const
746 {
747         int n = 0;
748         
749         for (const_iterator i = begin(); i != end(); ++i) {
750                 if (i->visible) {
751                         n += i->ports.size();
752                 }
753         }
754
755         return n;
756 }
757
758 std::string
759 PortGroupList::get_port_by_index (int n, bool with_prefix) const
760 {
761         /* XXX: slightly inefficient algorithm */
762
763         for (const_iterator i = begin(); i != end(); ++i) {
764                 for (std::vector<std::string>::const_iterator j = i->ports.begin(); j != i->ports.end(); ++j) {
765                         if (n == 0) {
766                                 if (with_prefix) {
767                                         return i->prefix + *j;
768                                 } else {
769                                         return *j;
770                                 }
771                         }
772                         --n;
773                 }
774         }
775
776         return "";
777 }
778
779
780 IOSelectorWindow::IOSelectorWindow (
781         ARDOUR::Session& session, boost::shared_ptr<ARDOUR::IO> io, bool for_input, bool can_cancel
782         )
783         : ArdourDialog ("I/O selector"),
784           _selector (session, io, for_input),
785           ok_button (can_cancel ? _("OK"): _("Close")),
786           cancel_button (_("Cancel")),
787           rescan_button (_("Rescan"))
788
789 {
790         add_events (Gdk::KEY_PRESS_MASK | Gdk::KEY_RELEASE_MASK);
791         set_name ("IOSelectorWindow2");
792
793         string title;
794         if (for_input) {
795                 title = string_compose(_("%1 input"), io->name());
796         } else {
797                 title = string_compose(_("%1 output"), io->name());
798         }
799
800         ok_button.set_name ("IOSelectorButton");
801         if (!can_cancel) {
802                 ok_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::CLOSE, Gtk::ICON_SIZE_BUTTON)));
803         }
804         cancel_button.set_name ("IOSelectorButton");
805         rescan_button.set_name ("IOSelectorButton");
806         rescan_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::REFRESH, Gtk::ICON_SIZE_BUTTON)));
807
808         get_action_area()->pack_start (rescan_button, false, false);
809
810         if (can_cancel) {
811                 cancel_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::CANCEL, Gtk::ICON_SIZE_BUTTON)));
812                 get_action_area()->pack_start (cancel_button, false, false);
813         } else {
814                 cancel_button.hide();
815         }
816                 
817         get_action_area()->pack_start (ok_button, false, false);
818
819         get_vbox()->set_spacing (8);
820         get_vbox()->pack_start (_selector);
821
822         ok_button.signal_clicked().connect (mem_fun(*this, &IOSelectorWindow::accept));
823         cancel_button.signal_clicked().connect (mem_fun(*this, &IOSelectorWindow::cancel));
824         rescan_button.signal_clicked().connect (mem_fun(*this, &IOSelectorWindow::rescan));
825
826         set_title (title);
827         set_position (Gtk::WIN_POS_MOUSE);
828
829         show_all ();
830
831         signal_delete_event().connect (bind (sigc::ptr_fun (just_hide_it), reinterpret_cast<Window *> (this)));
832 }
833
834 IOSelectorWindow::~IOSelectorWindow()
835 {
836         
837 }
838
839 void
840 IOSelectorWindow::rescan ()
841 {
842         _selector.redisplay ();
843 }
844
845 void
846 IOSelectorWindow::cancel ()
847 {
848         _selector.Finished (IOSelector::Cancelled);
849         hide ();
850 }
851
852 void
853 IOSelectorWindow::accept ()
854 {
855         _selector.Finished (IOSelector::Accepted);
856         hide ();
857 }
858
859 void
860 IOSelectorWindow::on_map ()
861 {
862         _selector.redisplay ();
863         Window::on_map ();
864 }
865
866
867 PortInsertUI::PortInsertUI (ARDOUR::Session& sess, boost::shared_ptr<ARDOUR::PortInsert> pi)
868         : input_selector (sess, pi->io(), true),
869           output_selector (sess, pi->io(), false)
870 {
871         hbox.pack_start (output_selector, true, true);
872         hbox.pack_start (input_selector, true, true);
873
874         pack_start (hbox);
875 }
876
877 void
878 PortInsertUI::redisplay ()
879 {
880         input_selector.redisplay();
881         output_selector.redisplay();
882 }
883
884 void
885 PortInsertUI::finished (IOSelector::Result r)
886 {
887         input_selector.Finished (r);
888         output_selector.Finished (r);
889 }
890
891
892 PortInsertWindow::PortInsertWindow (ARDOUR::Session& sess, boost::shared_ptr<ARDOUR::PortInsert> pi, bool can_cancel)
893         : ArdourDialog ("port insert dialog"),
894           _portinsertui (sess, pi),
895           ok_button (can_cancel ? _("OK"): _("Close")),
896           cancel_button (_("Cancel")),
897           rescan_button (_("Rescan"))
898 {
899
900         set_name ("IOSelectorWindow");
901         string title = _("ardour: ");
902         title += pi->name();
903         set_title (title);
904         
905         ok_button.set_name ("IOSelectorButton");
906         if (!can_cancel) {
907                 ok_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::CLOSE, Gtk::ICON_SIZE_BUTTON)));
908         }
909         cancel_button.set_name ("IOSelectorButton");
910         rescan_button.set_name ("IOSelectorButton");
911         rescan_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::REFRESH, Gtk::ICON_SIZE_BUTTON)));
912
913         get_action_area()->pack_start (rescan_button, false, false);
914         if (can_cancel) {
915                 cancel_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::CANCEL, Gtk::ICON_SIZE_BUTTON)));
916                 get_action_area()->pack_start (cancel_button, false, false);
917         } else {
918                 cancel_button.hide();
919         }
920         get_action_area()->pack_start (ok_button, false, false);
921
922         get_vbox()->pack_start (_portinsertui);
923
924         ok_button.signal_clicked().connect (mem_fun (*this, &PortInsertWindow::accept));
925         cancel_button.signal_clicked().connect (mem_fun (*this, &PortInsertWindow::cancel));
926         rescan_button.signal_clicked().connect (mem_fun (*this, &PortInsertWindow::rescan));
927
928         signal_delete_event().connect (bind (sigc::ptr_fun (just_hide_it), reinterpret_cast<Window *> (this))); 
929
930         going_away_connection = pi->GoingAway.connect (mem_fun (*this, &PortInsertWindow::plugin_going_away));
931 }
932
933 void
934 PortInsertWindow::plugin_going_away ()
935 {
936         ENSURE_GUI_THREAD (mem_fun (*this, &PortInsertWindow::plugin_going_away));
937         
938         going_away_connection.disconnect ();
939         delete_when_idle (this);
940 }
941
942 void
943 PortInsertWindow::on_map ()
944 {
945         _portinsertui.redisplay ();
946         Window::on_map ();
947 }
948
949
950 void
951 PortInsertWindow::rescan ()
952 {
953         _portinsertui.redisplay ();
954 }
955
956 void
957 PortInsertWindow::cancel ()
958 {
959         _portinsertui.finished (IOSelector::Cancelled);
960         hide ();
961 }
962
963 void
964 PortInsertWindow::accept ()
965 {
966         _portinsertui.finished (IOSelector::Accepted);
967         hide ();
968 }