Put row labels on both sides of the grid.
[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           _column_labels (_port_group_list)
368 {
369         _row_labels_vbox[0] = _row_labels_vbox[1] = 0;
370         _side_vbox_pad[0] = _side_vbox_pad[1] = 0;
371         
372         Gtk::HBox* c = new Gtk::HBox;
373         for (PortGroupList::iterator i = _port_group_list.begin(); i != _port_group_list.end(); ++i) {
374                 Gtk::CheckButton* b = new Gtk::CheckButton (i->name);
375                 b->set_active (true);
376                 b->signal_toggled().connect (sigc::bind (sigc::mem_fun (*this, &IOSelector::group_visible_toggled), b, i->name));
377                 c->pack_start (*Gtk::manage (b));
378         }
379         pack_start (*Gtk::manage (c));
380         
381         _side_vbox[0].pack_start (*Gtk::manage (new Gtk::Label ("")));
382         _overall_hbox.pack_start (_side_vbox[0], false, false);
383         _scrolled_window.set_policy (Gtk::POLICY_ALWAYS, Gtk::POLICY_NEVER);
384         _scrolled_window.set_shadow_type (Gtk::SHADOW_NONE);
385         Gtk::VBox* b = new Gtk::VBox;
386         b->pack_start (_column_labels, false, false);
387         b->pack_start (_port_group_hbox, false, false);
388         Gtk::Alignment* a = new Gtk::Alignment (0, 1, 0, 0);
389         a->add (*Gtk::manage (b));
390         _scrolled_window.add (*Gtk::manage (a));
391         _overall_hbox.pack_start (_scrolled_window);
392         _side_vbox[1].pack_start (*Gtk::manage (new Gtk::Label ("")));
393         _overall_hbox.pack_start (_side_vbox[1]);
394         pack_start (_overall_hbox);
395
396         _port_group_hbox.signal_size_allocate().connect (sigc::hide (sigc::mem_fun (*this, &IOSelector::setup_dimensions)));
397
398         /* Listen for ports changing on the IO */
399         if (_for_input) {
400                 _io->input_changed.connect (mem_fun(*this, &IOSelector::ports_changed));
401         } else {
402                 _io->output_changed.connect (mem_fun(*this, &IOSelector::ports_changed));
403         }
404         
405 }
406
407 IOSelector::~IOSelector ()
408 {
409         clear ();
410 }
411
412 /** Clear out the things that change when the number of source or destination ports changes */
413 void
414 IOSelector::clear ()
415 {
416         for (int i = 0; i < 2; ++i) {
417
418                 for (std::vector<Gtk::EventBox*>::iterator j = _row_labels[i].begin(); j != _row_labels[i].end(); ++j) {
419                         delete *j;
420                 }
421                 _row_labels[i].clear ();
422                 
423                 if (_row_labels_vbox[i]) {
424                         _side_vbox[i].remove (*_row_labels_vbox[i]);
425                 }
426                 delete _row_labels_vbox[i];
427                 _row_labels_vbox[i] = 0;
428                 
429                 if (_side_vbox_pad[i]) {
430                         _side_vbox[i].remove (*_side_vbox_pad[i]);
431                 }
432                 delete _side_vbox_pad[i];
433                 _side_vbox_pad[i] = 0;
434         }
435
436         for (std::vector<PortGroupTable*>::iterator i = _port_group_tables.begin(); i != _port_group_tables.end(); ++i) {
437                 _port_group_hbox.remove ((*i)->get_widget());
438                 delete *i;
439         }
440
441         _port_group_tables.clear ();
442 }
443
444
445 /** Set up dimensions of some of our widgets which depend on other dimensions
446  *  within the dialogue.
447  */
448 void
449 IOSelector::setup_dimensions ()
450 {
451         /* Get some dimensions from various places */
452         int const scrollbar_height = _scrolled_window.get_hscrollbar()->get_height();
453
454         std::pair<int, int> unit_size (0, 0);
455         int port_group_tables_height = 0;
456         for (std::vector<PortGroupTable*>::iterator i = _port_group_tables.begin(); i != _port_group_tables.end(); ++i) {
457                 std::pair<int, int> const u = (*i)->unit_size ();
458                 unit_size.first = std::max (unit_size.first, u.first);
459                 unit_size.second = std::max (unit_size.second, u.second);
460                 port_group_tables_height = std::max (
461                         port_group_tables_height, (*i)->get_widget().get_height()
462                         );
463         }
464
465         /* Column labels */
466         _column_labels.set_base_width (_port_group_list.n_visible_ports () * unit_size.first);
467
468         /* Scrolled window */
469         /* XXX: really shouldn't set a minimum horizontal size here, but if we don't
470            the window starts up very small */
471         _scrolled_window.set_size_request (
472                 std::min (_column_labels.get_width(), 640),
473                 _column_labels.get_height() + port_group_tables_height + scrollbar_height + 16
474                 );
475         
476         /* Row labels */
477         for (int i = 0; i < 2; ++i) {
478                 for (std::vector<Gtk::EventBox*>::iterator j = _row_labels[i].begin(); j != _row_labels[i].end(); ++j) {
479                         (*j)->get_child()->set_size_request (-1, unit_size.second);
480                 }
481
482                 if (_side_vbox_pad[i]) {
483                         _side_vbox_pad[i]->set_size_request (-1, scrollbar_height + unit_size.second / 4);
484                 }
485         }
486 }
487
488
489 /** Set up the dialogue */
490 void
491 IOSelector::setup ()
492 {
493         clear ();
494
495         /* Work out how many rows we have */
496         ARDOUR::DataType const t = _io->default_type();
497
498         int rows;
499         if (_for_input) {
500                 rows = _io->n_inputs().get(t);
501         } else {
502                 rows = _io->n_outputs().get(t);
503         }       
504         
505         /* Row labels */
506         for (int i = 0; i < 2; ++i) {
507                 _row_labels_vbox[i] = new Gtk::VBox;
508                 for (int j = 0; j < rows; ++j) {
509                         Gtk::Label* label = new Gtk::Label (_for_input ? _io->input(j)->name() : _io->output(j)->name());
510                         Gtk::EventBox* b = new Gtk::EventBox;
511                         b->set_events (Gdk::BUTTON_PRESS_MASK);
512                         b->signal_button_press_event().connect (sigc::bind (sigc::mem_fun (*this, &IOSelector::row_label_button_pressed), j));
513                         b->add (*Gtk::manage (label));
514                         _row_labels[i].push_back (b);
515                         _row_labels_vbox[i]->pack_start (*b, false, false);
516                 }
517
518                 _side_vbox[i].pack_start (*_row_labels_vbox[i], false, false);
519                 _side_vbox_pad[i] = new Gtk::Label ("");
520                 _side_vbox[i].pack_start (*_side_vbox_pad[i], false, false);
521         }
522
523         /* Checkbutton tables */
524         int n = 0;
525         for (PortGroupList::iterator i = _port_group_list.begin(); i != _port_group_list.end(); ++i) {
526                 PortGroupTable* t = new PortGroupTable (*i, _io, _for_input);
527
528                 /* XXX: this is a bit of a hack; should probably use a configurable colour here */
529                 Gdk::Color alt_bg = get_style()->get_bg (Gtk::STATE_NORMAL);
530                 alt_bg.set_rgb (alt_bg.get_red() + 4096, alt_bg.get_green() + 4096, alt_bg.get_blue () + 4096);
531                 if ((n % 2) == 0) {
532                         t->get_widget().modify_bg (Gtk::STATE_NORMAL, alt_bg);
533                 }
534
535                 _port_group_tables.push_back (t);
536                 _port_group_hbox.pack_start (t->get_widget(), false, false);
537                 ++n;
538         }
539
540         show_all ();
541 }
542
543 void
544 IOSelector::ports_changed (ARDOUR::IOChange change, void *src)
545 {
546         ENSURE_GUI_THREAD (bind (mem_fun (*this, &IOSelector::ports_changed), change, src));
547
548         redisplay ();
549 }
550
551
552 void
553 IOSelector::redisplay ()
554 {
555         _port_group_list.refresh ();
556         setup ();
557 }
558
559
560 /** Handle a button press on a row label */
561 bool
562 IOSelector::row_label_button_pressed (GdkEventButton* e, int r)
563 {
564         if (e->type != GDK_BUTTON_PRESS || e->button != 3) {
565                 return false;
566         }
567
568         Gtk::Menu* menu = Gtk::manage (new Gtk::Menu);
569         Gtk::Menu_Helpers::MenuList& items = menu->items ();
570         menu->set_name ("ArdourContextMenu");
571
572         bool can_add;
573         bool can_remove;
574         std::string name;
575         ARDOUR::DataType const t = _io->default_type();
576
577         if (_for_input) {
578                 can_add = _io->input_maximum().get(t) > _io->n_inputs().get(t);
579                 can_remove = _io->input_minimum().get(t) < _io->n_inputs().get(t);
580                 name = _io->input(r)->name();
581         } else {
582                 can_add = _io->output_maximum().get(t) > _io->n_outputs().get(t);
583                 can_remove = _io->output_minimum().get(t) < _io->n_outputs().get(t);
584                 name = _io->output(r)->name();
585         }
586         
587         items.push_back (
588                 Gtk::Menu_Helpers::MenuElem (_("Add port"), sigc::mem_fun (*this, &IOSelector::add_port))
589                 );
590
591         items.back().set_sensitive (can_add);
592
593         items.push_back (
594                 Gtk::Menu_Helpers::MenuElem (_("Remove port '") + name + _("'"), sigc::bind (sigc::mem_fun (*this, &IOSelector::remove_port), r))
595                 );
596
597         items.back().set_sensitive (can_remove);
598
599         menu->popup (e->button, e->time);
600         
601         return true;
602 }
603
604 void
605 IOSelector::add_port ()
606 {
607         // The IO selector only works for single typed IOs
608         const ARDOUR::DataType t = _io->default_type ();
609
610         if (_for_input) {
611
612                 try {
613                         _io->add_input_port ("", this);
614                 }
615
616                 catch (ARDOUR::AudioEngine::PortRegistrationFailure& err) {
617                         Gtk::MessageDialog msg (0,  _("There are no more JACK ports available."));
618                         msg.run ();
619                 }
620
621         } else {
622
623                 try {
624                         _io->add_output_port ("", this);
625                 }
626
627                 catch (ARDOUR::AudioEngine::PortRegistrationFailure& err) {
628                         Gtk::MessageDialog msg (0, _("There are no more JACK ports available."));
629                         msg.run ();
630                 }
631         }
632 }
633
634 void
635 IOSelector::remove_port (int r)
636 {
637         // The IO selector only works for single typed IOs
638         const ARDOUR::DataType t = _io->default_type ();
639         
640         if (_for_input) {
641                 _io->remove_input_port (_io->input (r), this);
642         } else {
643                 _io->remove_output_port (_io->output (r), this);
644         }
645 }
646
647 void
648 IOSelector::group_visible_toggled (Gtk::CheckButton* b, std::string const & n)
649 {
650         PortGroupList::iterator i = _port_group_list.begin();
651         while (i != _port_group_list.end() & i->name != n) {
652                 ++i;
653         }
654
655         if (i == _port_group_list.end()) {
656                 return;
657         }
658
659         i->visible = b->get_active ();
660
661         /* Update PortGroupTable visibility */
662
663         for (std::vector<PortGroupTable*>::iterator j = _port_group_tables.begin(); j != _port_group_tables.end(); ++j) {
664                 if ((*j)->port_group().visible) {
665                         (*j)->get_widget().show();
666                 } else {
667                         (*j)->get_widget().hide();
668                 }
669         }
670
671         _column_labels.queue_draw ();
672 }
673
674
675 PortGroupList::PortGroupList (ARDOUR::Session & session, boost::shared_ptr<ARDOUR::IO> io, bool for_input)
676         : _session (session), _io (io), _for_input (for_input)
677 {
678         refresh ();
679 }
680
681 void
682 PortGroupList::refresh ()
683 {
684         clear ();
685
686         /* Find the ports provided by ardour; we can't derive their type just from their
687            names, so we'll have to be more devious. */
688
689         boost::shared_ptr<ARDOUR::Session::RouteList> routes = _session.get_routes ();
690
691         PortGroup buss (_("Buss"), "ardour:");
692         PortGroup track (_("Track"), "ardour:");
693
694         for (ARDOUR::Session::RouteList::const_iterator i = routes->begin(); i != routes->end(); ++i) {
695
696                 PortGroup* g = 0;
697                 if (_io->default_type() == ARDOUR::DataType::AUDIO && dynamic_cast<ARDOUR::AudioTrack*> ((*i).get())) {
698                         /* Audio track for an audio IO */
699                         g = &track;
700                 } else if (_io->default_type() == ARDOUR::DataType::MIDI && dynamic_cast<ARDOUR::MidiTrack*> ((*i).get())) {
701                         /* Midi track for a MIDI IO */
702                         g = &track;
703                 } else if (_io->default_type() == ARDOUR::DataType::AUDIO && dynamic_cast<ARDOUR::MidiTrack*> ((*i).get()) == 0) {
704                         /* Non-MIDI track for an Audio IO; must be an audio buss */
705                         g = &buss;
706                 }
707
708                 if (g) {
709                         ARDOUR::PortSet const & p = _for_input ? ((*i)->outputs()) : ((*i)->inputs());
710                         for (uint32_t j = 0; j < p.num_ports(); ++j) {
711                                 g->add (p.port(j)->name ());
712                         }
713
714                         std::sort (g->ports.begin(), g->ports.end());
715                 }
716         }
717         
718
719         /* XXX: inserts, sends, plugin inserts? */
720         
721         /* Now we need to find the non-ardour ports; we do this by first
722            finding all the ports that we can connect to. */
723         const char **ports = _session.engine().get_ports (
724                 "", _io->default_type().to_jack_type(), _for_input ? JackPortIsOutput : JackPortIsInput
725                 );
726
727         PortGroup system (_("System"), "system:");
728         PortGroup other (_("Other"), "");
729         
730         if (ports) {
731
732                 int n = 0;
733                 while (ports[n]) {
734                         std::string const p = ports[n];
735
736                         if (p.substr(0, strlen ("system:")) == "system:") {
737                                 /* system: prefix */
738                                 system.add (p);
739                         } else {
740                                 if (p.substr(0, strlen("ardour:")) != "ardour:") {
741                                         /* other (non-ardour) prefix */
742                                         other.add (p);
743                                 }
744                         }
745
746                         ++n;
747                 }
748         }
749
750         push_back (buss);
751         push_back (track);
752         push_back (system);
753         push_back (other);
754 }
755
756 int
757 PortGroupList::n_visible_ports () const
758 {
759         int n = 0;
760         
761         for (const_iterator i = begin(); i != end(); ++i) {
762                 if (i->visible) {
763                         n += i->ports.size();
764                 }
765         }
766
767         return n;
768 }
769
770 std::string
771 PortGroupList::get_port_by_index (int n, bool with_prefix) const
772 {
773         /* XXX: slightly inefficient algorithm */
774
775         for (const_iterator i = begin(); i != end(); ++i) {
776                 for (std::vector<std::string>::const_iterator j = i->ports.begin(); j != i->ports.end(); ++j) {
777                         if (n == 0) {
778                                 if (with_prefix) {
779                                         return i->prefix + *j;
780                                 } else {
781                                         return *j;
782                                 }
783                         }
784                         --n;
785                 }
786         }
787
788         return "";
789 }
790
791
792 IOSelectorWindow::IOSelectorWindow (
793         ARDOUR::Session& session, boost::shared_ptr<ARDOUR::IO> io, bool for_input, bool can_cancel
794         )
795         : ArdourDialog ("I/O selector"),
796           _selector (session, io, for_input),
797           ok_button (can_cancel ? _("OK"): _("Close")),
798           cancel_button (_("Cancel")),
799           rescan_button (_("Rescan"))
800
801 {
802         add_events (Gdk::KEY_PRESS_MASK | Gdk::KEY_RELEASE_MASK);
803         set_name ("IOSelectorWindow2");
804
805         string title;
806         if (for_input) {
807                 title = string_compose(_("%1 input"), io->name());
808         } else {
809                 title = string_compose(_("%1 output"), io->name());
810         }
811
812         ok_button.set_name ("IOSelectorButton");
813         if (!can_cancel) {
814                 ok_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::CLOSE, Gtk::ICON_SIZE_BUTTON)));
815         }
816         cancel_button.set_name ("IOSelectorButton");
817         rescan_button.set_name ("IOSelectorButton");
818         rescan_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::REFRESH, Gtk::ICON_SIZE_BUTTON)));
819
820         get_action_area()->pack_start (rescan_button, false, false);
821
822         if (can_cancel) {
823                 cancel_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::CANCEL, Gtk::ICON_SIZE_BUTTON)));
824                 get_action_area()->pack_start (cancel_button, false, false);
825         } else {
826                 cancel_button.hide();
827         }
828                 
829         get_action_area()->pack_start (ok_button, false, false);
830
831         get_vbox()->set_spacing (8);
832         get_vbox()->pack_start (_selector);
833
834         ok_button.signal_clicked().connect (mem_fun(*this, &IOSelectorWindow::accept));
835         cancel_button.signal_clicked().connect (mem_fun(*this, &IOSelectorWindow::cancel));
836         rescan_button.signal_clicked().connect (mem_fun(*this, &IOSelectorWindow::rescan));
837
838         set_title (title);
839         set_position (Gtk::WIN_POS_MOUSE);
840
841         show_all ();
842
843         signal_delete_event().connect (bind (sigc::ptr_fun (just_hide_it), reinterpret_cast<Window *> (this)));
844 }
845
846 IOSelectorWindow::~IOSelectorWindow()
847 {
848         
849 }
850
851 void
852 IOSelectorWindow::rescan ()
853 {
854         _selector.redisplay ();
855 }
856
857 void
858 IOSelectorWindow::cancel ()
859 {
860         _selector.Finished (IOSelector::Cancelled);
861         hide ();
862 }
863
864 void
865 IOSelectorWindow::accept ()
866 {
867         _selector.Finished (IOSelector::Accepted);
868         hide ();
869 }
870
871 void
872 IOSelectorWindow::on_map ()
873 {
874         _selector.redisplay ();
875         Window::on_map ();
876 }
877
878
879 PortInsertUI::PortInsertUI (ARDOUR::Session& sess, boost::shared_ptr<ARDOUR::PortInsert> pi)
880         : input_selector (sess, pi->io(), true),
881           output_selector (sess, pi->io(), false)
882 {
883         hbox.pack_start (output_selector, true, true);
884         hbox.pack_start (input_selector, true, true);
885
886         pack_start (hbox);
887 }
888
889 void
890 PortInsertUI::redisplay ()
891 {
892         input_selector.redisplay();
893         output_selector.redisplay();
894 }
895
896 void
897 PortInsertUI::finished (IOSelector::Result r)
898 {
899         input_selector.Finished (r);
900         output_selector.Finished (r);
901 }
902
903
904 PortInsertWindow::PortInsertWindow (ARDOUR::Session& sess, boost::shared_ptr<ARDOUR::PortInsert> pi, bool can_cancel)
905         : ArdourDialog ("port insert dialog"),
906           _portinsertui (sess, pi),
907           ok_button (can_cancel ? _("OK"): _("Close")),
908           cancel_button (_("Cancel")),
909           rescan_button (_("Rescan"))
910 {
911
912         set_name ("IOSelectorWindow");
913         string title = _("ardour: ");
914         title += pi->name();
915         set_title (title);
916         
917         ok_button.set_name ("IOSelectorButton");
918         if (!can_cancel) {
919                 ok_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::CLOSE, Gtk::ICON_SIZE_BUTTON)));
920         }
921         cancel_button.set_name ("IOSelectorButton");
922         rescan_button.set_name ("IOSelectorButton");
923         rescan_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::REFRESH, Gtk::ICON_SIZE_BUTTON)));
924
925         get_action_area()->pack_start (rescan_button, false, false);
926         if (can_cancel) {
927                 cancel_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::CANCEL, Gtk::ICON_SIZE_BUTTON)));
928                 get_action_area()->pack_start (cancel_button, false, false);
929         } else {
930                 cancel_button.hide();
931         }
932         get_action_area()->pack_start (ok_button, false, false);
933
934         get_vbox()->pack_start (_portinsertui);
935
936         ok_button.signal_clicked().connect (mem_fun (*this, &PortInsertWindow::accept));
937         cancel_button.signal_clicked().connect (mem_fun (*this, &PortInsertWindow::cancel));
938         rescan_button.signal_clicked().connect (mem_fun (*this, &PortInsertWindow::rescan));
939
940         signal_delete_event().connect (bind (sigc::ptr_fun (just_hide_it), reinterpret_cast<Window *> (this))); 
941
942         going_away_connection = pi->GoingAway.connect (mem_fun (*this, &PortInsertWindow::plugin_going_away));
943 }
944
945 void
946 PortInsertWindow::plugin_going_away ()
947 {
948         ENSURE_GUI_THREAD (mem_fun (*this, &PortInsertWindow::plugin_going_away));
949         
950         going_away_connection.disconnect ();
951         delete_when_idle (this);
952 }
953
954 void
955 PortInsertWindow::on_map ()
956 {
957         _portinsertui.redisplay ();
958         Window::on_map ();
959 }
960
961
962 void
963 PortInsertWindow::rescan ()
964 {
965         _portinsertui.redisplay ();
966 }
967
968 void
969 PortInsertWindow::cancel ()
970 {
971         _portinsertui.finished (IOSelector::Cancelled);
972         hide ();
973 }
974
975 void
976 PortInsertWindow::accept ()
977 {
978         _portinsertui.finished (IOSelector::Accepted);
979         hide ();
980 }