acd4d3ee5d608e516b40fdd18a8fdfceea37446b
[ardour.git] / libs / surfaces / faderport / gui.cc
1 /*
2     Copyright (C) 2015 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/alignment.h>
21 #include <gtkmm/label.h>
22 #include <gtkmm/liststore.h>
23
24 #include "pbd/unwind.h"
25 #include "pbd/strsplit.h"
26 #include "pbd/file_utils.h"
27
28 #include "gtkmm2ext/actions.h"
29 #include "gtkmm2ext/gtk_ui.h"
30 #include "gtkmm2ext/gui_thread.h"
31 #include "gtkmm2ext/utils.h"
32
33 #include "ardour/audioengine.h"
34 #include "ardour/filesystem_paths.h"
35
36 #include "faderport.h"
37 #include "gui.h"
38
39 #include "i18n.h"
40
41 using namespace PBD;
42 using namespace ARDOUR;
43 using namespace ArdourSurface;
44 using namespace std;
45 using namespace Gtk;
46 using namespace Gtkmm2ext;
47
48 void*
49 FaderPort::get_gui () const
50 {
51         if (!gui) {
52                 const_cast<FaderPort*>(this)->build_gui ();
53         }
54         static_cast<Gtk::VBox*>(gui)->show_all();
55         return gui;
56 }
57
58 void
59 FaderPort::tear_down_gui ()
60 {
61         if (gui) {
62                 Gtk::Widget *w = static_cast<Gtk::VBox*>(gui)->get_parent();
63                 if (w) {
64                         w->hide();
65                         delete w;
66                 }
67         }
68         delete static_cast<FPGUI*> (gui);
69         gui = 0;
70 }
71
72 void
73 FaderPort::build_gui ()
74 {
75         gui = (void*) new FPGUI (*this);
76 }
77
78 /*--------------------*/
79
80 FPGUI::FPGUI (FaderPort& p)
81         : fp (p)
82         , table (2, 5)
83         , action_table (5, 4)
84         , ignore_active_change (false)
85 {
86         set_border_width (12);
87
88         table.set_row_spacings (4);
89         table.set_col_spacings (6);
90         table.set_border_width (12);
91         table.set_homogeneous (false);
92
93         std::string data_file_path;
94         string name = "faderport-small.png";
95         Searchpath spath(ARDOUR::ardour_data_search_path());
96         spath.add_subdirectory_to_paths ("icons");
97         find_file (spath, name, data_file_path);
98         if (!data_file_path.empty()) {
99                 image.set (data_file_path);
100                 hpacker.pack_start (image, false, false);
101         }
102
103         Gtk::Label* l;
104         Gtk::Alignment* align;
105         int row = 0;
106
107         input_combo.pack_start (midi_port_columns.short_name);
108         output_combo.pack_start (midi_port_columns.short_name);
109
110         input_combo.signal_changed().connect (sigc::bind (sigc::mem_fun (*this, &FPGUI::active_port_changed), &input_combo, true));
111         output_combo.signal_changed().connect (sigc::bind (sigc::mem_fun (*this, &FPGUI::active_port_changed), &output_combo, false));
112
113         l = manage (new Gtk::Label);
114         l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("Incoming MIDI on:")));
115         l->set_alignment (1.0, 0.5);
116         table.attach (*l, 0, 1, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions(0));
117         table.attach (input_combo, 1, 2, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions(0), 0, 0);
118         row++;
119
120         l = manage (new Gtk::Label);
121         l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("Outgoing MIDI on:")));
122         l->set_alignment (1.0, 0.5);
123         table.attach (*l, 0, 1, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions(0));
124         table.attach (output_combo, 1, 2, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions(0), 0, 0);
125         row++;
126
127         build_mix_action_combo (mix_combo[0], FaderPort::ButtonState(0));
128         build_mix_action_combo (mix_combo[1], FaderPort::ShiftDown);
129         build_mix_action_combo (mix_combo[2], FaderPort::LongPress);
130
131         build_proj_action_combo (proj_combo[0], FaderPort::ButtonState(0));
132         build_proj_action_combo (proj_combo[1], FaderPort::ShiftDown);
133         build_proj_action_combo (proj_combo[2], FaderPort::LongPress);
134
135         build_trns_action_combo (trns_combo[0], FaderPort::ButtonState(0));
136         build_trns_action_combo (trns_combo[1], FaderPort::ShiftDown);
137         build_trns_action_combo (trns_combo[2], FaderPort::LongPress);
138
139         build_available_action_menu ();
140
141         build_foot_action_combo (foot_combo[0], FaderPort::ButtonState(0));
142         build_foot_action_combo (foot_combo[1], FaderPort::ShiftDown);
143         build_foot_action_combo (foot_combo[2], FaderPort::LongPress);
144
145         /* No shift-press combo for User because that is labelled as "next"
146          * (marker)
147          */
148
149         build_user_action_combo (user_combo[0], FaderPort::ButtonState(0));
150         build_user_action_combo (user_combo[1], FaderPort::LongPress);
151
152         action_table.set_row_spacings (4);
153         action_table.set_col_spacings (6);
154         action_table.set_border_width (12);
155         action_table.set_homogeneous (false);
156
157         int action_row = 0;
158
159         l = manage (new Gtk::Label);
160         l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("Press Action")));
161         l->set_alignment (0.5, 0.5);
162         action_table.attach (*l, 1, 2, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
163         l = manage (new Gtk::Label);
164         l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("Shift-Press Action")));
165         l->set_alignment (0.5, 0.5);
166         action_table.attach (*l, 2, 3, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
167         l = manage (new Gtk::Label);
168         l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("Long Press Action")));
169         l->set_alignment (0.5, 0.5);
170         action_table.attach (*l, 3, 4, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
171         action_row++;
172
173         l = manage (new Gtk::Label);
174         l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("Mix")));
175         l->set_alignment (1.0, 0.5);
176         action_table.attach (*l, 0, 1, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
177         align = manage (new Alignment);
178         align->set (0.0, 0.5);
179         align->add (mix_combo[0]);
180         action_table.attach (*align, 1, 2, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
181         align = manage (new Alignment);
182         align->set (0.0, 0.5);
183         align->add (mix_combo[1]);
184         action_table.attach (*align, 2, 3, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
185         align = manage (new Alignment);
186         align->set (0.0, 0.5);
187         align->add (mix_combo[2]);
188         action_table.attach (*align, 3, 4, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
189         action_row++;
190
191         l = manage (new Gtk::Label);
192         l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("Proj")));
193         l->set_alignment (1.0, 0.5);
194         action_table.attach (*l, 0, 1, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
195         align = manage (new Alignment);
196         align->set (0.0, 0.5);
197         align->add (proj_combo[0]);
198         action_table.attach (*align, 1, 2, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
199         align = manage (new Alignment);
200         align->set (0.0, 0.5);
201         align->add (proj_combo[1]);
202         action_table.attach (*align, 2, 3, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
203         align = manage (new Alignment);
204         align->set (0.0, 0.5);
205         align->add (proj_combo[2]);
206         action_table.attach (*align, 3, 4, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
207         action_row++;
208
209         l = manage (new Gtk::Label);
210         l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("Trns")));
211         l->set_alignment (1.0, 0.5);
212         action_table.attach (*l, 0, 1, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
213         align = manage (new Alignment);
214         align->set (0.0, 0.5);
215         align->add (trns_combo[0]);
216         action_table.attach (*align, 1, 2, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
217         align = manage (new Alignment);
218         align->set (0.0, 0.5);
219         align->add (trns_combo[1]);
220         action_table.attach (*align, 2, 3, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
221         align = manage (new Alignment);
222         align->set (0.0, 0.5);
223         align->add (trns_combo[2]);
224         action_table.attach (*align, 3, 4, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
225         action_row++;
226
227         l = manage (new Gtk::Label);
228         l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("User")));
229         l->set_alignment (1.0, 0.5);
230         action_table.attach (*l, 0, 1, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
231         align = manage (new Alignment);
232         align->set (0.0, 0.5);
233         align->add (user_combo[0]);
234         action_table.attach (*align, 1, 2, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
235         /* skip shift press combo */
236         align = manage (new Alignment);
237         align->set (0.0, 0.5);
238         align->add (user_combo[1]);
239         action_table.attach (*align, 3, 4, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
240         action_row++;
241
242         l = manage (new Gtk::Label);
243         l->set_markup (string_compose ("<span weight=\"bold\">%1</span>", _("Footswitch")));
244         l->set_alignment (1.0, 0.5);
245         action_table.attach (*l, 0, 1, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
246         align = manage (new Alignment);
247         align->set (0.0, 0.5);
248         align->add (foot_combo[0]);
249         action_table.attach (*align, 1, 2, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
250         align = manage (new Alignment);
251         align->set (0.0, 0.5);
252         align->add (foot_combo[1]);
253         action_table.attach (*align, 2, 3, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
254         align = manage (new Alignment);
255         align->set (0.0, 0.5);
256         align->add (foot_combo[2]);
257         action_table.attach (*align, 3, 4, action_row, action_row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
258         action_row++;
259
260         table.attach (action_table, 0, 5, row, row+1, AttachOptions(FILL|EXPAND), AttachOptions (0));
261         row++;
262
263         hpacker.pack_start (table, true, true);
264         pack_start (hpacker, false, false);
265
266         /* update the port connection combos */
267
268         update_port_combos ();
269
270         /* catch future changes to connection state */
271
272         fp.ConnectionChange.connect (connection_change_connection, invalidator (*this), boost::bind (&FPGUI::connection_handler, this), gui_context());
273 }
274
275 FPGUI::~FPGUI ()
276 {
277 }
278
279 void
280 FPGUI::connection_handler ()
281 {
282         /* ignore all changes to combobox active strings here, because we're
283            updating them to match a new ("external") reality - we were called
284            because port connections have changed.
285         */
286
287         PBD::Unwinder<bool> ici (ignore_active_change, true);
288
289         update_port_combos ();
290 }
291
292 void
293 FPGUI::update_port_combos ()
294 {
295         vector<string> midi_inputs;
296         vector<string> midi_outputs;
297
298         ARDOUR::AudioEngine::instance()->get_ports ("", ARDOUR::DataType::MIDI, ARDOUR::PortFlags (ARDOUR::IsOutput|ARDOUR::IsTerminal), midi_inputs);
299         ARDOUR::AudioEngine::instance()->get_ports ("", ARDOUR::DataType::MIDI, ARDOUR::PortFlags (ARDOUR::IsInput|ARDOUR::IsTerminal), midi_outputs);
300
301         Glib::RefPtr<Gtk::ListStore> input = build_midi_port_list (midi_inputs, true);
302         Glib::RefPtr<Gtk::ListStore> output = build_midi_port_list (midi_outputs, false);
303         bool input_found = false;
304         bool output_found = false;
305         int n;
306
307         input_combo.set_model (input);
308         output_combo.set_model (output);
309
310         Gtk::TreeModel::Children children = input->children();
311         Gtk::TreeModel::Children::iterator i;
312         i = children.begin();
313         ++i; /* skip "Disconnected" */
314
315
316         for (n = 1;  i != children.end(); ++i, ++n) {
317                 string port_name = (*i)[midi_port_columns.full_name];
318                 if (fp.input_port()->connected_to (port_name)) {
319                         input_combo.set_active (n);
320                         input_found = true;
321                         break;
322                 }
323         }
324
325         if (!input_found) {
326                 input_combo.set_active (0); /* disconnected */
327         }
328
329         children = output->children();
330         i = children.begin();
331         ++i; /* skip "Disconnected" */
332
333         for (n = 1;  i != children.end(); ++i, ++n) {
334                 string port_name = (*i)[midi_port_columns.full_name];
335                 if (fp.output_port()->connected_to (port_name)) {
336                         output_combo.set_active (n);
337                         output_found = true;
338                         break;
339                 }
340         }
341
342         if (!output_found) {
343                 output_combo.set_active (0); /* disconnected */
344         }
345 }
346
347 void
348 FPGUI::build_available_action_menu ()
349 {
350         /* build a model of all available actions (needs to be tree structured
351          * more)
352          */
353
354         available_action_model = TreeStore::create (action_columns);
355
356         vector<string> paths;
357         vector<string> labels;
358         vector<string> tooltips;
359         vector<string> keys;
360         vector<AccelKey> bindings;
361         typedef std::map<string,TreeIter> NodeMap;
362         NodeMap nodes;
363         NodeMap::iterator r;
364
365         ActionManager::get_all_actions (labels, paths, tooltips, keys, bindings);
366
367         vector<string>::iterator k;
368         vector<string>::iterator p;
369         vector<string>::iterator t;
370         vector<string>::iterator l;
371
372         available_action_model->clear ();
373
374         TreeIter rowp;
375         TreeModel::Row parent;
376
377         /* Disabled item (row 0) */
378
379         rowp = available_action_model->append();
380         parent = *(rowp);
381         parent[action_columns.name] = _("Disabled");
382
383         /* Key aliasing */
384
385         rowp = available_action_model->append();
386         parent = *(rowp);
387         parent[action_columns.name] = _("Shift");
388         rowp = available_action_model->append();
389         parent = *(rowp);
390         parent[action_columns.name] = _("Control");
391         rowp = available_action_model->append();
392         parent = *(rowp);
393         parent[action_columns.name] = _("Option");
394         rowp = available_action_model->append();
395         parent = *(rowp);
396         parent[action_columns.name] = _("CmdAlt");
397
398
399         for (l = labels.begin(), k = keys.begin(), p = paths.begin(), t = tooltips.begin(); l != labels.end(); ++k, ++p, ++t, ++l) {
400
401                 TreeModel::Row row;
402                 vector<string> parts;
403
404                 parts.clear ();
405
406                 split (*p, parts, '/');
407
408                 if (parts.empty()) {
409                         continue;
410                 }
411
412                 //kinda kludgy way to avoid displaying menu items as mappable
413                 if ( parts[1] == _("Main_menu") )
414                         continue;
415                 if ( parts[1] == _("JACK") )
416                         continue;
417                 if ( parts[1] == _("redirectmenu") )
418                         continue;
419                 if ( parts[1] == _("Editor_menus") )
420                         continue;
421                 if ( parts[1] == _("RegionList") )
422                         continue;
423                 if ( parts[1] == _("ProcessorMenu") )
424                         continue;
425
426                 if ((r = nodes.find (parts[1])) == nodes.end()) {
427
428                         /* top level is missing */
429
430                         TreeIter rowp;
431                         TreeModel::Row parent;
432                         rowp = available_action_model->append();
433                         nodes[parts[1]] = rowp;
434                         parent = *(rowp);
435                         parent[action_columns.name] = parts[1];
436
437                         row = *(available_action_model->append (parent.children()));
438
439                 } else {
440
441                         row = *(available_action_model->append ((*r->second)->children()));
442
443                 }
444
445                 /* add this action */
446
447                 if (l->empty ()) {
448                         row[action_columns.name] = *t;
449                         action_map[*t] = *p;
450                 } else {
451                         row[action_columns.name] = *l;
452                         action_map[*l] = *p;
453                 }
454
455                 string path = (*p);
456                 /* ControlProtocol::access_action() is not interested in the
457                    legacy "<Actions>/" prefix part of a path.
458                 */
459                 path = path.substr (strlen ("<Actions>/"));
460
461                 row[action_columns.path] = path;
462         }
463 }
464
465 void
466 FPGUI::action_changed (Gtk::ComboBox* cb, FaderPort::ButtonID id, FaderPort::ButtonState bs)
467 {
468         TreeModel::const_iterator row = cb->get_active ();
469         string action_path = (*row)[action_columns.path];
470
471         /* release binding */
472         fp.set_action (id, action_path, false, bs);
473 }
474
475 void
476 FPGUI::build_action_combo (Gtk::ComboBox& cb, vector<pair<string,string> > const & actions, FaderPort::ButtonID id, FaderPort::ButtonState bs)
477 {
478         Glib::RefPtr<Gtk::ListStore> model (Gtk::ListStore::create (action_columns));
479         TreeIter rowp;
480         TreeModel::Row row;
481         string current_action = fp.get_action (id, false, bs); /* lookup release action */
482         int active_row = -1;
483         int n;
484         vector<pair<string,string> >::const_iterator i;
485
486         rowp = model->append();
487         row = *(rowp);
488         row[action_columns.name] = _("Disabled");
489         row[action_columns.path] = string();
490
491         if (current_action.empty()) {
492                 active_row = 0;
493         }
494
495         for (i = actions.begin(), n = 0; i != actions.end(); ++i, ++n) {
496                 rowp = model->append();
497                 row = *(rowp);
498                 row[action_columns.name] = i->first;
499                 row[action_columns.path] = i->second;
500                 if (current_action == i->second) {
501                         active_row = n+1;
502                 }
503         }
504
505         cb.set_model (model);
506         cb.pack_start (action_columns.name);
507
508         if (active_row >= 0) {
509                 cb.set_active (active_row);
510         }
511
512         cb.signal_changed().connect (sigc::bind (sigc::mem_fun (*this, &FPGUI::action_changed), &cb, id, bs));
513 }
514
515 void
516 FPGUI::build_mix_action_combo (Gtk::ComboBox& cb, FaderPort::ButtonState bs)
517 {
518         vector<pair<string,string> > actions;
519
520         actions.push_back (make_pair (string (_("Toggle Editor & Mixer Windows")), string (X_("Common/toggle-editor-mixer"))));
521         actions.push_back (make_pair (string (_("Show/Hide Mixer list")), string (X_("Common/ToggleMixerList"))));
522         actions.push_back (make_pair (string("Toggle Meterbridge"), string(X_("Common/toggle-meterbridge"))));
523         actions.push_back (make_pair (string (_("Show/Hide Editor mixer strip")), string (X_("Editor/show-editor-mixer"))));
524
525         build_action_combo (cb, actions, FaderPort::Mix, bs);
526 }
527
528 void
529 FPGUI::build_proj_action_combo (Gtk::ComboBox& cb, FaderPort::ButtonState bs)
530 {
531         vector<pair<string,string> > actions;
532
533         actions.push_back (make_pair (string("Toggle Editor Lists"), string(X_("Editor/show-editor-list"))));
534         actions.push_back (make_pair (string("Toggle Summary"), string(X_("Editor/ToggleSummary"))));
535         actions.push_back (make_pair (string("Toggle Meterbridge"), string(X_("Common/toggle-meterbridge"))));
536         actions.push_back (make_pair (string (_("Zoom to Session")), string (X_("Editor/zoom-to-session"))));
537
538 //      actions.push_back (make_pair (string (_("Zoom In")), string (X_("Editor/temporal-zoom-in"))));
539 //      actions.push_back (make_pair (string (_("Zoom Out")), string (X_("Editor/temporal-zoom-out"))));
540
541         build_action_combo (cb, actions, FaderPort::Proj, bs);
542 }
543
544 void
545 FPGUI::build_trns_action_combo (Gtk::ComboBox& cb, FaderPort::ButtonState bs)
546 {
547         vector<pair<string,string> > actions;
548
549         actions.push_back (make_pair (string("Toggle Big Clock"), string(X_("Window/toggle-big-clock"))));  //note:  this would really make sense if the Big Clock had transport buttons on it
550         actions.push_back (make_pair (string("Toggle Locations window"), string(X_("Window/toggle-locations"))));
551         actions.push_back (make_pair (string("Toggle Metronome"), string(X_("Transport/ToggleClick"))));
552         actions.push_back (make_pair (string("Toggle External Sync"), string(X_("Transport/ToggleExternalSync"))));
553         actions.push_back (make_pair (string("Toggle Follow Playhead"), string(X_("Editor/toggle-follow-playhead"))));
554
555 //      actions.push_back (make_pair (string("Set Playhead @pointer"), string(X_("Editor/set-playhead"))));
556
557
558         build_action_combo (cb, actions, FaderPort::Trns, bs);
559 }
560
561 void
562 FPGUI::build_foot_action_combo (Gtk::ComboBox& cb, FaderPort::ButtonState bs)
563 {
564         vector<pair<string,string> > actions;
565
566         actions.push_back (make_pair (string("Toggle Roll"), string(X_("Transport/ToggleRoll"))));
567         actions.push_back (make_pair (string("Toggle Rec-Enable"), string(X_("Transport/Record"))));
568
569 //      actions.push_back (make_pair (string (_("Zoom In")), string (X_("Editor/temporal-zoom-in"))));
570 //      actions.push_back (make_pair (string (_("Zoom Out")), string (X_("Editor/temporal-zoom-out"))));
571
572         build_action_combo (cb, actions, FaderPort::Proj, bs);
573 }
574
575 bool
576 FPGUI::find_action_in_model (const TreeModel::iterator& iter, std::string const & action_path, TreeModel::iterator* found)
577 {
578         TreeModel::Row row = *iter;
579         string path = row[action_columns.path];
580
581         if (path == action_path) {
582                 *found = iter;
583                 return true;
584         }
585
586         return false;
587 }
588
589 void
590 FPGUI::build_user_action_combo (Gtk::ComboBox& cb, FaderPort::ButtonState bs)
591 {
592         cb.set_model (available_action_model);
593         cb.pack_start (action_columns.name);
594         cb.signal_changed().connect (sigc::bind (sigc::mem_fun (*this, &FPGUI::action_changed), &cb, FaderPort::User, bs));
595
596         /* set the active "row" to the right value for the current button binding */
597
598         string current_action = fp.get_action (FaderPort::User, false, bs); /* lookup release action */
599
600         if (current_action.empty()) {
601                 cb.set_active (0); /* "disabled" */
602                 return;
603         }
604
605         TreeModel::iterator iter = available_action_model->children().end();
606
607         available_action_model->foreach_iter (sigc::bind (sigc::mem_fun (*this, &FPGUI::find_action_in_model), current_action, &iter));
608
609         if (iter != available_action_model->children().end()) {
610                 cb.set_active (iter);
611         } else {
612                 cb.set_active (0);
613         }
614
615 }
616
617 Glib::RefPtr<Gtk::ListStore>
618 FPGUI::build_midi_port_list (vector<string> const & ports, bool for_input)
619 {
620         Glib::RefPtr<Gtk::ListStore> store = ListStore::create (midi_port_columns);
621         TreeModel::Row row;
622
623         row = *store->append ();
624         row[midi_port_columns.full_name] = string();
625         row[midi_port_columns.short_name] = _("Disconnected");
626
627         for (vector<string>::const_iterator p = ports.begin(); p != ports.end(); ++p) {
628                 row = *store->append ();
629                 row[midi_port_columns.full_name] = *p;
630                 std::string pn = ARDOUR::AudioEngine::instance()->get_pretty_name_by_name (*p);
631                 if (pn.empty ()) {
632                         pn = (*p).substr ((*p).find (':') + 1);
633                 }
634                 row[midi_port_columns.short_name] = pn;
635         }
636
637         return store;
638 }
639
640 void
641 FPGUI::active_port_changed (Gtk::ComboBox* combo, bool for_input)
642 {
643         if (ignore_active_change) {
644                 return;
645         }
646
647         TreeModel::iterator active = combo->get_active ();
648         string new_port = (*active)[midi_port_columns.full_name];
649
650         if (new_port.empty()) {
651                 if (for_input) {
652                         fp.input_port()->disconnect_all ();
653                 } else {
654                         fp.output_port()->disconnect_all ();
655                 }
656
657                 return;
658         }
659
660         if (for_input) {
661                 if (!fp.input_port()->connected_to (new_port)) {
662                         fp.input_port()->disconnect_all ();
663                         fp.input_port()->connect (new_port);
664                 }
665         } else {
666                 if (!fp.output_port()->connected_to (new_port)) {
667                         fp.output_port()->disconnect_all ();
668                         fp.output_port()->connect (new_port);
669                 }
670         }
671 }