use new syntax for connecting to backend signals that enforces explicit connection...
[ardour.git] / gtk2_ardour / plugin_selector.cc
1 /*
2     Copyright (C) 2000-2006 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 #ifdef WAF_BUILD
20 #include "gtk2ardour-config.h"
21 #endif
22
23 #include <cstdio>
24 #include <lrdf.h>
25 #include <map>
26
27 #include <algorithm>
28
29 #include <gtkmm/table.h>
30 #include <gtkmm/stock.h>
31 #include <gtkmm/button.h>
32 #include <gtkmm/notebook.h>
33
34 #include <gtkmm2ext/utils.h>
35
36 #include "pbd/convert.h"
37
38 #include "ardour/plugin_manager.h"
39 #include "ardour/plugin.h"
40 #include "ardour/configuration.h"
41 #include "ardour/session.h"
42
43 #include "ardour_ui.h"
44 #include "plugin_selector.h"
45 #include "gui_thread.h"
46
47 #include "i18n.h"
48
49 using namespace ARDOUR;
50 using namespace PBD;
51 using namespace Gtk;
52 using namespace std;
53
54 static const char* _filter_mode_strings[] = {
55         N_("Name contains"),
56         N_("Type contains"),
57         N_("Category contains"),
58         N_("Author contains"),
59         N_("Library contains"),
60         N_("Favorites only"),
61         N_("Hidden only"),
62         0
63 };
64
65 PluginSelector::PluginSelector (PluginManager *mgr)
66         : ArdourDialog (_("ardour: plugins"), true, false),
67           filter_button (Stock::CLEAR)
68 {
69         set_position (Gtk::WIN_POS_MOUSE);
70         set_name ("PluginSelectorWindow");
71         add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);
72
73         _plugin_menu = 0;
74         manager = mgr;
75         in_row_change = false;
76
77         manager->PluginListChanged.connect (plugin_list_changed_connection, boost::bind (&PluginSelector::build_plugin_menu, this));
78         build_plugin_menu ();
79
80         plugin_model = Gtk::ListStore::create (plugin_columns);
81         plugin_display.set_model (plugin_model);
82         /* XXX translators: try to convert "Fav" into a short term
83            related to "favorite" and "Hid" into a short term
84            related to "hidden"
85         */
86         plugin_display.append_column (_("Fav"), plugin_columns.favorite);
87         plugin_display.append_column (_("Hid"), plugin_columns.hidden);
88         plugin_display.append_column (_("Available Plugins"), plugin_columns.name);
89         plugin_display.append_column (_("Type"), plugin_columns.type_name);
90         plugin_display.append_column (_("Category"), plugin_columns.category);
91         plugin_display.append_column (_("Creator"), plugin_columns.creator);
92         plugin_display.append_column (_("# Audio In"),plugin_columns.audio_ins);
93         plugin_display.append_column (_("# Audio Out"), plugin_columns.audio_outs);
94         plugin_display.append_column (_("# MIDI In"),plugin_columns.midi_ins);
95         plugin_display.append_column (_("# MIDI Out"), plugin_columns.midi_outs);
96         plugin_display.set_headers_visible (true);
97         plugin_display.set_headers_clickable (true);
98         plugin_display.set_reorderable (false);
99         plugin_display.set_rules_hint (true);
100
101         CellRendererToggle* fav_cell = dynamic_cast<CellRendererToggle*>(plugin_display.get_column_cell_renderer (0));
102         fav_cell->property_activatable() = true;
103         fav_cell->property_radio() = true;
104         fav_cell->signal_toggled().connect (sigc::mem_fun (*this, &PluginSelector::favorite_changed));
105
106         CellRendererToggle* hidden_cell = dynamic_cast<CellRendererToggle*>(plugin_display.get_column_cell_renderer (1));
107         hidden_cell->property_activatable() = true;
108         hidden_cell->property_radio() = true;
109         hidden_cell->signal_toggled().connect (sigc::mem_fun (*this, &PluginSelector::hidden_changed));
110
111         scroller.set_border_width(10);
112         scroller.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
113         scroller.add(plugin_display);
114
115         amodel = Gtk::ListStore::create(acols);
116         added_list.set_model (amodel);
117         added_list.append_column (_("Plugins to be connected"), acols.text);
118         added_list.set_headers_visible (true);
119         added_list.set_reorderable (false);
120
121         for (int i = 0; i <=8; i++) {
122                 Gtk::TreeView::Column* column = plugin_display.get_column(i);
123                 column->set_sort_column(i);
124         }
125
126         ascroller.set_border_width(10);
127         ascroller.set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
128         ascroller.add(added_list);
129         btn_add = manage(new Gtk::Button(Stock::ADD));
130         ARDOUR_UI::instance()->tooltips().set_tip(*btn_add, _("Add a plugin to the effect list"));
131         btn_add->set_sensitive (false);
132         btn_remove = manage(new Gtk::Button(Stock::REMOVE));
133         btn_remove->set_sensitive (false);
134         ARDOUR_UI::instance()->tooltips().set_tip(*btn_remove, _("Remove a plugin from the effect list"));
135         Gtk::Button *btn_update = manage(new Gtk::Button(Stock::REFRESH));
136         ARDOUR_UI::instance()->tooltips().set_tip(*btn_update, _("Update available plugins"));
137
138         btn_add->set_name("PluginSelectorButton");
139         btn_remove->set_name("PluginSelectorButton");
140
141         Gtk::Table* table = manage(new Gtk::Table(7, 11));
142         table->set_size_request(750, 500);
143         table->attach(scroller, 0, 7, 0, 5);
144
145         HBox* filter_box = manage (new HBox);
146
147         vector<string> filter_strings = I18N (_filter_mode_strings);
148         Gtkmm2ext::set_popdown_strings (filter_mode, filter_strings);
149         filter_mode.set_active_text (filter_strings.front());
150
151         filter_box->pack_start (filter_mode, false, false);
152         filter_box->pack_start (filter_entry, true, true);
153         filter_box->pack_start (filter_button, false, false);
154
155         filter_entry.signal_changed().connect (sigc::mem_fun (*this, &PluginSelector::filter_entry_changed));
156         filter_button.signal_clicked().connect (sigc::mem_fun (*this, &PluginSelector::filter_button_clicked));
157         filter_mode.signal_changed().connect (sigc::mem_fun (*this, &PluginSelector::filter_mode_changed));
158
159         filter_box->show ();
160         filter_mode.show ();
161         filter_entry.show ();
162         filter_button.show ();
163
164         table->attach (*filter_box, 0, 7, 5, 6, FILL|EXPAND, FILL, 5, 5);
165
166         table->attach(*btn_add, 1, 2, 6, 7, FILL, FILL, 5, 5);
167         table->attach(*btn_remove, 3, 4, 6, 7, FILL, FILL, 5, 5);
168         table->attach(*btn_update, 5, 6, 6, 7, FILL, FILL, 5, 5);
169
170         table->attach(ascroller, 0, 7, 8, 10);
171
172         add_button (Stock::CLOSE, RESPONSE_CLOSE);
173         add_button (_("Insert Plugin(s)"), RESPONSE_APPLY);
174         set_default_response (RESPONSE_APPLY);
175         set_response_sensitive (RESPONSE_APPLY, false);
176         get_vbox()->pack_start (*table);
177
178         table->set_name("PluginSelectorTable");
179         plugin_display.set_name("PluginSelectorDisplay");
180         //plugin_display.set_name("PluginSelectorList");
181         added_list.set_name("PluginSelectorList");
182
183         plugin_display.signal_button_press_event().connect_notify (sigc::mem_fun(*this, &PluginSelector::row_clicked));
184         plugin_display.get_selection()->signal_changed().connect (sigc::mem_fun(*this, &PluginSelector::display_selection_changed));
185         plugin_display.grab_focus();
186
187         btn_update->signal_clicked().connect (sigc::mem_fun(*this, &PluginSelector::btn_update_clicked));
188         btn_add->signal_clicked().connect(sigc::mem_fun(*this, &PluginSelector::btn_add_clicked));
189         btn_remove->signal_clicked().connect(sigc::mem_fun(*this, &PluginSelector::btn_remove_clicked));
190         added_list.get_selection()->signal_changed().connect (sigc::mem_fun(*this, &PluginSelector::added_list_selection_changed));
191
192         refill ();
193 }
194
195 PluginSelector::~PluginSelector ()
196 {
197         delete _plugin_menu;
198 }
199
200 void
201 PluginSelector::row_clicked(GdkEventButton* event)
202 {
203         if (event->type == GDK_2BUTTON_PRESS)
204                 btn_add_clicked();
205 }
206
207 bool
208 PluginSelector::show_this_plugin (const PluginInfoPtr& info, const std::string& filterstr)
209 {
210         std::string compstr;
211         std::string mode = filter_mode.get_active_text ();
212
213         if (mode == _("Favorites only")) {
214                 return manager->get_status (info) == PluginManager::Favorite;
215         }
216
217         if (mode == _("Hidden only")) {
218                 return manager->get_status (info) == PluginManager::Hidden;
219         }
220
221         if (!filterstr.empty()) {
222
223                 if (mode == _("Name contains")) {
224                         compstr = info->name;
225                 } else if (mode == _("Category contains")) {
226                         compstr = info->category;
227                 } else if (mode == _("Type contains")) {
228
229                         switch (info->type) {
230                         case LADSPA:
231                                 compstr = X_("LADSPA");
232                                 break;
233                         case AudioUnit:
234                                 compstr = X_("AudioUnit");
235                                 break;
236                         case LV2:
237                                 compstr = X_("LV2");
238                                 break;
239                         case VST:
240                                 compstr = X_("VST");
241                                 break;
242                         }
243
244                 } else if (mode == _("Author contains")) {
245                         compstr = info->creator;
246                 } else if (mode == _("Library contains")) {
247                         compstr = info->path;
248                 }
249
250                 if (compstr.empty()) {
251                         return false;
252                 }
253
254                 transform (compstr.begin(), compstr.end(), compstr.begin(), ::toupper);
255
256                 if (compstr.find (filterstr) != string::npos) {
257                         return true;
258                 } else {
259                         return false;
260                 }
261         }
262
263         return true;
264 }
265
266 void
267 PluginSelector::setup_filter_string (string& filterstr)
268 {
269         filterstr = filter_entry.get_text ();
270         transform (filterstr.begin(), filterstr.end(), filterstr.begin(), ::toupper);
271 }
272
273 void
274 PluginSelector::refill ()
275 {
276         std::string filterstr;
277
278         in_row_change = true;
279
280         plugin_model->clear ();
281
282         setup_filter_string (filterstr);
283
284         ladspa_refiller (filterstr);
285         lv2_refiller (filterstr);
286         vst_refiller (filterstr);
287         au_refiller (filterstr);
288
289         in_row_change = false;
290 }
291
292 void
293 PluginSelector::refiller (const PluginInfoList& plugs, const::std::string& filterstr, const char* type)
294 {
295         char buf[16];
296
297         for (PluginInfoList::const_iterator i = plugs.begin(); i != plugs.end(); ++i) {
298
299                 if (show_this_plugin (*i, filterstr)) {
300
301                         TreeModel::Row newrow = *(plugin_model->append());
302                         newrow[plugin_columns.favorite] = (manager->get_status (*i) == PluginManager::Favorite);
303                         newrow[plugin_columns.hidden] = (manager->get_status (*i) == PluginManager::Hidden);
304                         newrow[plugin_columns.name] = (*i)->name;
305                         newrow[plugin_columns.type_name] = type;
306                         newrow[plugin_columns.category] = (*i)->category;
307
308                         string creator = (*i)->creator;
309                         string::size_type pos = 0;
310
311                         /* stupid LADSPA creator strings */
312
313                         while (pos < creator.length() && (isalnum (creator[pos]) || isspace (creator[pos]))) ++pos;
314                         creator = creator.substr (0, pos);
315
316                         newrow[plugin_columns.creator] = creator;
317
318                         snprintf (buf, sizeof(buf), "%d", (*i)->n_inputs.n_audio());
319                         newrow[plugin_columns.audio_ins] = buf;
320                         snprintf (buf, sizeof(buf), "%d", (*i)->n_inputs.n_midi());
321                         newrow[plugin_columns.midi_ins] = buf;
322
323                         snprintf (buf, sizeof(buf), "%d", (*i)->n_outputs.n_audio());
324                         newrow[plugin_columns.audio_outs] = buf;
325                         snprintf (buf, sizeof(buf), "%d", (*i)->n_outputs.n_midi());
326                         newrow[plugin_columns.midi_outs] = buf;
327
328                         newrow[plugin_columns.plugin] = *i;
329                 }
330         }
331 }
332
333 void
334 PluginSelector::ladspa_refiller (const std::string& filterstr)
335 {
336         refiller (manager->ladspa_plugin_info(), filterstr, "LADSPA");
337 }
338
339 void
340 PluginSelector::lv2_refiller (const std::string& filterstr)
341 {
342 #ifdef HAVE_SLV2
343         refiller (manager->lv2_plugin_info(), filterstr, "LV2");
344 #endif
345 }
346
347 void
348 #ifdef VST_SUPPORT
349 PluginSelector::vst_refiller (const std::string& filterstr)
350 #else
351 PluginSelector::vst_refiller (const std::string&)
352 #endif
353 {
354 #ifdef VST_SUPPORT
355         refiller (manager->vst_plugin_info(), filterstr, "VST");
356 #endif
357 }
358
359 void
360 #ifdef HAVE_AUDIOUNITS
361 PluginSelector::au_refiller (const std::string& filterstr)
362 #else
363 PluginSelector::au_refiller (const std::string&)
364 #endif
365 {
366 #ifdef HAVE_AUDIOUNITS
367         refiller (manager->au_plugin_info(), filterstr, "AU");
368 #endif
369 }
370
371 PluginPtr
372 PluginSelector::load_plugin (PluginInfoPtr pi)
373 {
374         if (_session == 0) {
375                 return PluginPtr();
376         }
377
378         return pi->load (*_session);
379 }
380
381 void
382 PluginSelector::btn_add_clicked()
383 {
384         std::string name;
385         PluginInfoPtr pi;
386         TreeModel::Row newrow = *(amodel->append());
387         TreeModel::Row row;
388
389         row = *(plugin_display.get_selection()->get_selected());
390         name = row[plugin_columns.name];
391         pi = row[plugin_columns.plugin];
392
393         newrow[acols.text] = name;
394         newrow[acols.plugin] = pi;
395
396         if (!amodel->children().empty()) {
397                 set_response_sensitive (RESPONSE_APPLY, true);
398         }
399 }
400
401 void
402 PluginSelector::btn_remove_clicked()
403 {
404         TreeModel::iterator iter = added_list.get_selection()->get_selected();
405
406         amodel->erase(iter);
407         if (amodel->children().empty()) {
408                 set_response_sensitive (RESPONSE_APPLY, false);
409         }
410 }
411
412 void
413 PluginSelector::btn_update_clicked()
414 {
415         manager->refresh ();
416         refill();
417 }
418
419 void
420 PluginSelector::display_selection_changed()
421 {
422         if (plugin_display.get_selection()->count_selected_rows() != 0) {
423                 btn_add->set_sensitive (true);
424         } else {
425                 btn_add->set_sensitive (false);
426         }
427 }
428
429 void
430 PluginSelector::added_list_selection_changed()
431 {
432         if (added_list.get_selection()->count_selected_rows() != 0) {
433                 btn_remove->set_sensitive (true);
434         } else {
435                 btn_remove->set_sensitive (false);
436         }
437 }
438
439 int
440 PluginSelector::run ()
441 {
442         ResponseType r;
443         TreeModel::Children::iterator i;
444         SelectedPlugins plugins;
445
446         r = (ResponseType) Dialog::run ();
447
448         switch (r) {
449         case RESPONSE_APPLY:
450                 for (i = amodel->children().begin(); i != amodel->children().end(); ++i) {
451                         PluginInfoPtr pp = (*i)[acols.plugin];
452                         PluginPtr p = load_plugin (pp);
453                         if (p) {
454                                 plugins.push_back (p);
455                         }
456                 }
457                 if (interested_object && !plugins.empty()) {
458                         interested_object->use_plugins (plugins);
459                 }
460
461                 break;
462
463         default:
464                 break;
465         }
466
467         hide();
468         amodel->clear();
469         interested_object = 0;
470
471         return (int) r;
472 }
473
474 void
475 PluginSelector::filter_button_clicked ()
476 {
477         filter_entry.set_text ("");
478 }
479
480 void
481 PluginSelector::filter_entry_changed ()
482 {
483         refill ();
484 }
485
486 void
487 PluginSelector::filter_mode_changed ()
488 {
489         std::string mode = filter_mode.get_active_text ();
490
491         if (mode == _("Favorites only") || mode == _("Hidden only")) {
492                 filter_entry.set_sensitive (false);
493         } else {
494                 filter_entry.set_sensitive (true);
495         }
496
497         refill ();
498 }
499
500 void
501 PluginSelector::on_show ()
502 {
503         ArdourDialog::on_show ();
504         filter_entry.grab_focus ();
505 }
506
507 struct PluginMenuCompareByCreator {
508     bool operator() (PluginInfoPtr a, PluginInfoPtr b) const {
509             int cmp;
510
511             cmp = strcasecmp (a->creator.c_str(), b->creator.c_str());
512
513             if (cmp < 0) {
514                     return true;
515             } else if (cmp == 0) {
516                     /* same creator ... compare names */
517                     if (strcasecmp (a->name.c_str(), b->name.c_str()) < 0) {
518                             return true;
519                     }
520             }
521             return false;
522     }
523 };
524
525 struct PluginMenuCompareByName {
526     bool operator() (PluginInfoPtr a, PluginInfoPtr b) const {
527             int cmp;
528
529             cmp = strcasecmp (a->name.c_str(), b->name.c_str());
530
531             if (cmp < 0) {
532                     return true;
533             } else if (cmp == 0) {
534                     /* same name ... compare type */
535                     if (a->type < b->type) {
536                             return true;
537                     }
538             }
539             return false;
540     }
541 };
542
543 struct PluginMenuCompareByCategory {
544     bool operator() (PluginInfoPtr a, PluginInfoPtr b) const {
545             int cmp;
546
547             cmp = strcasecmp (a->category.c_str(), b->category.c_str());
548
549             if (cmp < 0) {
550                     return true;
551             } else if (cmp == 0) {
552                     /* same category ... compare names */
553                     if (strcasecmp (a->name.c_str(), b->name.c_str()) < 0) {
554                             return true;
555                     }
556             }
557             return false;
558     }
559 };
560
561 /** @return Plugin menu. The caller should not delete it */
562 Gtk::Menu*
563 PluginSelector::plugin_menu()
564 {
565         return _plugin_menu;
566 }
567
568 void
569 PluginSelector::build_plugin_menu ()
570 {
571         PluginInfoList all_plugs;
572
573         all_plugs.insert (all_plugs.end(), manager->ladspa_plugin_info().begin(), manager->ladspa_plugin_info().end());
574 #ifdef VST_SUPPORT
575         all_plugs.insert (all_plugs.end(), manager->vst_plugin_info().begin(), manager->vst_plugin_info().end());
576 #endif
577 #ifdef HAVE_AUDIOUNITS
578         all_plugs.insert (all_plugs.end(), manager->au_plugin_info().begin(), manager->au_plugin_info().end());
579 #endif
580 #ifdef HAVE_SLV2
581         all_plugs.insert (all_plugs.end(), manager->lv2_plugin_info().begin(), manager->lv2_plugin_info().end());
582 #endif
583
584         using namespace Menu_Helpers;
585
586         delete _plugin_menu;
587         
588         _plugin_menu = new Menu;
589         _plugin_menu->set_name("ArdourContextMenu");
590         
591         MenuList& items = _plugin_menu->items();
592         items.clear ();
593
594         Gtk::Menu* favs = create_favs_menu(all_plugs);
595         items.push_back (MenuElem (_("Favorites"), *manage (favs)));
596
597         items.push_back (MenuElem (_("Plugin Manager"), sigc::mem_fun (*this, &PluginSelector::show_manager)));
598         items.push_back (SeparatorElem ());
599
600         Menu* by_creator = create_by_creator_menu(all_plugs);
601         items.push_back (MenuElem (_("By Creator"), *manage (by_creator)));
602
603         Menu* by_category = create_by_category_menu(all_plugs);
604         items.push_back (MenuElem (_("By Category"), *manage (by_category)));
605 }
606
607 Gtk::Menu*
608 PluginSelector::create_favs_menu (PluginInfoList& all_plugs)
609 {
610         using namespace Menu_Helpers;
611
612         Menu* favs = new Menu();
613         favs->set_name("ArdourContextMenu");
614
615         PluginMenuCompareByName cmp_by_name;
616         all_plugs.sort (cmp_by_name);
617
618         for (PluginInfoList::const_iterator i = all_plugs.begin(); i != all_plugs.end(); ++i) {
619                 if (manager->get_status (*i) == PluginManager::Favorite) {
620                         favs->items().push_back (MenuElem ((*i)->name, (sigc::bind (sigc::mem_fun (*this, &PluginSelector::plugin_chosen_from_menu), *i))));
621                 }
622         }
623         return favs;
624 }
625
626 Gtk::Menu*
627 PluginSelector::create_by_creator_menu (ARDOUR::PluginInfoList& all_plugs)
628 {
629         using namespace Menu_Helpers;
630
631         typedef std::map<Glib::ustring,Gtk::Menu*> SubmenuMap;
632         SubmenuMap creator_submenu_map;
633
634         Menu* by_creator = new Menu();
635         by_creator->set_name("ArdourContextMenu");
636
637         MenuList& by_creator_items = by_creator->items();
638         PluginMenuCompareByCreator cmp_by_creator;
639         all_plugs.sort (cmp_by_creator);
640
641         for (PluginInfoList::const_iterator i = all_plugs.begin(); i != all_plugs.end(); ++i) {
642
643                 if (manager->get_status (*i) == PluginManager::Hidden) continue;
644
645                 string creator = (*i)->creator;
646
647                 /* stupid LADSPA creator strings */
648                 string::size_type pos = 0;
649                 while (pos < creator.length() && (isalnum (creator[pos]) || isspace (creator[pos]))) ++pos;
650                 creator = creator.substr (0, pos);
651
652                 SubmenuMap::iterator x;
653                 Gtk::Menu* submenu;
654                 if ((x = creator_submenu_map.find (creator)) != creator_submenu_map.end()) {
655                         submenu = x->second;
656                 } else {
657                         submenu = new Gtk::Menu;
658                         by_creator_items.push_back (MenuElem (creator, *manage (submenu)));
659                         creator_submenu_map.insert (pair<Glib::ustring,Menu*> (creator, submenu));
660                         submenu->set_name("ArdourContextMenu");
661                 }
662                 submenu->items().push_back (MenuElem ((*i)->name, (sigc::bind (sigc::mem_fun (*this, &PluginSelector::plugin_chosen_from_menu), *i))));
663         }
664         return by_creator;
665 }
666
667 Gtk::Menu*
668 PluginSelector::create_by_category_menu (ARDOUR::PluginInfoList& all_plugs)
669 {
670         using namespace Menu_Helpers;
671
672         typedef std::map<Glib::ustring,Gtk::Menu*> SubmenuMap;
673         SubmenuMap category_submenu_map;
674
675         Menu* by_category = new Menu();
676         by_category->set_name("ArdourContextMenu");
677
678         MenuList& by_category_items = by_category->items();
679         PluginMenuCompareByCategory cmp_by_category;
680         all_plugs.sort (cmp_by_category);
681
682         for (PluginInfoList::const_iterator i = all_plugs.begin(); i != all_plugs.end(); ++i) {
683
684                 if (manager->get_status (*i) == PluginManager::Hidden) continue;
685
686                 string category = (*i)->category;
687
688                 SubmenuMap::iterator x;
689                 Gtk::Menu* submenu;
690                 if ((x = category_submenu_map.find (category)) != category_submenu_map.end()) {
691                         submenu = x->second;
692                 } else {
693                         submenu = new Gtk::Menu;
694                         by_category_items.push_back (MenuElem (category, *manage (submenu)));
695                         category_submenu_map.insert (pair<Glib::ustring,Menu*> (category, submenu));
696                         submenu->set_name("ArdourContextMenu");
697                 }
698                 submenu->items().push_back (MenuElem ((*i)->name, (sigc::bind (sigc::mem_fun (*this, &PluginSelector::plugin_chosen_from_menu), *i))));
699         }
700         return by_category;
701 }
702
703 void
704 PluginSelector::plugin_chosen_from_menu (const PluginInfoPtr& pi)
705 {
706         PluginPtr p = load_plugin (pi);
707
708         if (p && interested_object) {
709                 SelectedPlugins plugins;
710                 plugins.push_back (p);
711                 interested_object->use_plugins (plugins);
712         }
713
714         interested_object = 0;
715 }
716
717 void
718 PluginSelector::favorite_changed (const Glib::ustring& path)
719 {
720         PluginInfoPtr pi;
721
722         if (in_row_change) {
723                 return;
724         }
725
726         in_row_change = true;
727
728         TreeModel::iterator iter = plugin_model->get_iter (path);
729
730         if (iter) {
731
732                 bool favorite = !(*iter)[plugin_columns.favorite];
733
734                 /* change state */
735
736                 (*iter)[plugin_columns.favorite] = favorite;
737                 (*iter)[plugin_columns.hidden] = false;
738                 PluginManager::PluginStatusType status = (favorite ? PluginManager::Favorite : PluginManager::Normal);
739
740                 /* save new statuses list */
741
742                 pi = (*iter)[plugin_columns.plugin];
743
744                 manager->set_status (pi->type, pi->unique_id, status);
745
746                 manager->save_statuses ();
747
748                 build_plugin_menu ();
749         }
750         in_row_change = false;
751 }
752
753 void
754 PluginSelector::hidden_changed (const Glib::ustring& path)
755 {
756         PluginInfoPtr pi;
757
758         if (in_row_change) {
759                 return;
760         }
761
762         in_row_change = true;
763
764         TreeModel::iterator iter = plugin_model->get_iter (path);
765
766         if (iter) {
767
768                 bool hidden = !(*iter)[plugin_columns.hidden];
769
770                 /* change state */
771
772                 (*iter)[plugin_columns.favorite] = false;
773                 (*iter)[plugin_columns.hidden] = hidden;
774                 PluginManager::PluginStatusType status = (hidden ? PluginManager::Hidden : PluginManager::Normal);
775
776                 /* save new statuses list */
777
778                 pi = (*iter)[plugin_columns.plugin];
779
780                 manager->set_status (pi->type, pi->unique_id, status);
781
782                 manager->save_statuses ();
783         }
784         in_row_change = false;
785 }
786
787 void
788 PluginSelector::show_manager ()
789 {
790         show_all();
791         run ();
792 }
793
794 void
795 PluginSelector::set_interested_object (PluginInterestedObject& obj)
796 {
797         interested_object = &obj;
798 }