commits 6001-6525 inclusive from 2.X applied to 3.0
[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, invalidator (*this), boost::bind (&PluginSelector::build_plugin_menu, this), gui_context());
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()->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()->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()->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
208 bool
209 PluginSelector::show_this_plugin (const PluginInfoPtr& info, const std::string& filterstr)
210 {
211         std::string compstr;
212         std::string mode = filter_mode.get_active_text ();
213
214         if (mode == _("Favorites only")) {
215                 return manager->get_status (info) == PluginManager::Favorite;
216         }
217
218         if (mode == _("Hidden only")) {
219                 return manager->get_status (info) == PluginManager::Hidden;
220         }
221
222         if (!filterstr.empty()) {
223
224                 if (mode == _("Name contains")) {
225                         compstr = info->name;
226                 } else if (mode == _("Category contains")) {
227                         compstr = info->category;
228                 } else if (mode == _("Type contains")) {
229
230                         switch (info->type) {
231                         case LADSPA:
232                                 compstr = X_("LADSPA");
233                                 break;
234                         case AudioUnit:
235                                 compstr = X_("AudioUnit");
236                                 break;
237                         case LV2:
238                                 compstr = X_("LV2");
239                                 break;
240                         case VST:
241                                 compstr = X_("VST");
242                                 break;
243                         }
244
245                 } else if (mode == _("Author contains")) {
246                         compstr = info->creator;
247                 } else if (mode == _("Library contains")) {
248                         compstr = info->path;
249                 }
250
251                 if (compstr.empty()) {
252                         return false;
253                 }
254
255                 transform (compstr.begin(), compstr.end(), compstr.begin(), ::toupper);
256
257                 if (compstr.find (filterstr) != string::npos) {
258                         return true;
259                 } else {
260                         return false;
261                 }
262         }
263
264         return true;
265 }
266
267 void
268 PluginSelector::setup_filter_string (string& filterstr)
269 {
270         filterstr = filter_entry.get_text ();
271         transform (filterstr.begin(), filterstr.end(), filterstr.begin(), ::toupper);
272 }
273
274 void
275 PluginSelector::refill ()
276 {
277         std::string filterstr;
278
279         in_row_change = true;
280
281         plugin_model->clear ();
282
283         setup_filter_string (filterstr);
284
285         ladspa_refiller (filterstr);
286         lv2_refiller (filterstr);
287         vst_refiller (filterstr);
288         au_refiller (filterstr);
289
290         in_row_change = false;
291 }
292
293 void
294 PluginSelector::refiller (const PluginInfoList& plugs, const::std::string& filterstr, const char* type)
295 {
296         char buf[16];
297
298         for (PluginInfoList::const_iterator i = plugs.begin(); i != plugs.end(); ++i) {
299
300                 if (show_this_plugin (*i, filterstr)) {
301
302                         TreeModel::Row newrow = *(plugin_model->append());
303                         newrow[plugin_columns.favorite] = (manager->get_status (*i) == PluginManager::Favorite);
304                         newrow[plugin_columns.hidden] = (manager->get_status (*i) == PluginManager::Hidden);
305                         newrow[plugin_columns.name] = (*i)->name;
306                         newrow[plugin_columns.type_name] = type;
307                         newrow[plugin_columns.category] = (*i)->category;
308
309                         string creator = (*i)->creator;
310                         string::size_type pos = 0;
311
312                         /* stupid LADSPA creator strings */
313
314                         while (pos < creator.length() && (isalnum (creator[pos]) || isspace (creator[pos]))) ++pos;
315                         creator = creator.substr (0, pos);
316
317                         newrow[plugin_columns.creator] = creator;
318
319                         snprintf (buf, sizeof(buf), "%d", (*i)->n_inputs.n_audio());
320                         newrow[plugin_columns.audio_ins] = buf;
321                         snprintf (buf, sizeof(buf), "%d", (*i)->n_inputs.n_midi());
322                         newrow[plugin_columns.midi_ins] = buf;
323
324                         snprintf (buf, sizeof(buf), "%d", (*i)->n_outputs.n_audio());
325                         newrow[plugin_columns.audio_outs] = buf;
326                         snprintf (buf, sizeof(buf), "%d", (*i)->n_outputs.n_midi());
327                         newrow[plugin_columns.midi_outs] = buf;
328
329                         newrow[plugin_columns.plugin] = *i;
330                 }
331         }
332 }
333
334 void
335 PluginSelector::ladspa_refiller (const std::string& filterstr)
336 {
337         refiller (manager->ladspa_plugin_info(), filterstr, "LADSPA");
338 }
339
340 void
341 PluginSelector::lv2_refiller (const std::string& filterstr)
342 {
343 #ifdef HAVE_SLV2
344         refiller (manager->lv2_plugin_info(), filterstr, "LV2");
345 #endif
346 }
347
348 void
349 #ifdef VST_SUPPORT
350 PluginSelector::vst_refiller (const std::string& filterstr)
351 #else
352 PluginSelector::vst_refiller (const std::string&)
353 #endif
354 {
355 #ifdef VST_SUPPORT
356         refiller (manager->vst_plugin_info(), filterstr, "VST");
357 #endif
358 }
359
360 void
361 #ifdef HAVE_AUDIOUNITS
362 PluginSelector::au_refiller (const std::string& filterstr)
363 #else
364 PluginSelector::au_refiller (const std::string&)
365 #endif
366 {
367 #ifdef HAVE_AUDIOUNITS
368         refiller (manager->au_plugin_info(), filterstr, "AU");
369 #endif
370 }
371
372 PluginPtr
373 PluginSelector::load_plugin (PluginInfoPtr pi)
374 {
375         if (_session == 0) {
376                 return PluginPtr();
377         }
378
379         return pi->load (*_session);
380 }
381
382 void
383 PluginSelector::btn_add_clicked()
384 {
385         std::string name;
386         PluginInfoPtr pi;
387         TreeModel::Row newrow = *(amodel->append());
388         TreeModel::Row row;
389
390         row = *(plugin_display.get_selection()->get_selected());
391         name = row[plugin_columns.name];
392         pi = row[plugin_columns.plugin];
393
394         newrow[acols.text] = name;
395         newrow[acols.plugin] = pi;
396
397         if (!amodel->children().empty()) {
398                 set_response_sensitive (RESPONSE_APPLY, true);
399         }
400 }
401
402 void
403 PluginSelector::btn_remove_clicked()
404 {
405         TreeModel::iterator iter = added_list.get_selection()->get_selected();
406
407         amodel->erase(iter);
408         if (amodel->children().empty()) {
409                 set_response_sensitive (RESPONSE_APPLY, false);
410         }
411 }
412
413 void
414 PluginSelector::btn_update_clicked()
415 {
416         manager->refresh ();
417         refill();
418 }
419
420 void
421 PluginSelector::display_selection_changed()
422 {
423         if (plugin_display.get_selection()->count_selected_rows() != 0) {
424                 btn_add->set_sensitive (true);
425         } else {
426                 btn_add->set_sensitive (false);
427         }
428 }
429
430 void
431 PluginSelector::added_list_selection_changed()
432 {
433         if (added_list.get_selection()->count_selected_rows() != 0) {
434                 btn_remove->set_sensitive (true);
435         } else {
436                 btn_remove->set_sensitive (false);
437         }
438 }
439
440 int
441 PluginSelector::run ()
442 {
443         ResponseType r;
444         TreeModel::Children::iterator i;
445         SelectedPlugins plugins;
446
447         r = (ResponseType) Dialog::run ();
448
449         switch (r) {
450         case RESPONSE_APPLY:
451                 for (i = amodel->children().begin(); i != amodel->children().end(); ++i) {
452                         PluginInfoPtr pp = (*i)[acols.plugin];
453                         PluginPtr p = load_plugin (pp);
454                         if (p) {
455                                 plugins.push_back (p);
456                         }
457                 }
458                 if (interested_object && !plugins.empty()) {
459                         interested_object->use_plugins (plugins);
460                 }
461
462                 break;
463
464         default:
465                 break;
466         }
467
468         hide();
469         amodel->clear();
470         interested_object = 0;
471
472         return (int) r;
473 }
474
475 void
476 PluginSelector::filter_button_clicked ()
477 {
478         filter_entry.set_text ("");
479 }
480
481 void
482 PluginSelector::filter_entry_changed ()
483 {
484         refill ();
485 }
486
487 void
488 PluginSelector::filter_mode_changed ()
489 {
490         std::string mode = filter_mode.get_active_text ();
491
492         if (mode == _("Favorites only") || mode == _("Hidden only")) {
493                 filter_entry.set_sensitive (false);
494         } else {
495                 filter_entry.set_sensitive (true);
496         }
497
498         refill ();
499 }
500
501 void
502 PluginSelector::on_show ()
503 {
504         ArdourDialog::on_show ();
505         filter_entry.grab_focus ();
506 }
507
508 struct PluginMenuCompareByCreator {
509     bool operator() (PluginInfoPtr a, PluginInfoPtr b) const {
510             int cmp;
511
512             cmp = strcasecmp (a->creator.c_str(), b->creator.c_str());
513
514             if (cmp < 0) {
515                     return true;
516             } else if (cmp == 0) {
517                     /* same creator ... compare names */
518                     if (strcasecmp (a->name.c_str(), b->name.c_str()) < 0) {
519                             return true;
520                     }
521             }
522             return false;
523     }
524 };
525
526 struct PluginMenuCompareByName {
527     bool operator() (PluginInfoPtr a, PluginInfoPtr b) const {
528             int cmp;
529
530             cmp = strcasecmp (a->name.c_str(), b->name.c_str());
531
532             if (cmp < 0) {
533                     return true;
534             } else if (cmp == 0) {
535                     /* same name ... compare type */
536                     if (a->type < b->type) {
537                             return true;
538                     }
539             }
540             return false;
541     }
542 };
543
544 struct PluginMenuCompareByCategory {
545     bool operator() (PluginInfoPtr a, PluginInfoPtr b) const {
546             int cmp;
547
548             cmp = strcasecmp (a->category.c_str(), b->category.c_str());
549
550             if (cmp < 0) {
551                     return true;
552             } else if (cmp == 0) {
553                     /* same category ... compare names */
554                     if (strcasecmp (a->name.c_str(), b->name.c_str()) < 0) {
555                             return true;
556                     }
557             }
558             return false;
559     }
560 };
561
562 /** @return Plugin menu. The caller should not delete it */
563 Gtk::Menu*
564 PluginSelector::plugin_menu()
565 {
566         return _plugin_menu;
567 }
568
569 void
570 PluginSelector::build_plugin_menu ()
571 {
572         PluginInfoList all_plugs;
573
574         all_plugs.insert (all_plugs.end(), manager->ladspa_plugin_info().begin(), manager->ladspa_plugin_info().end());
575 #ifdef VST_SUPPORT
576         all_plugs.insert (all_plugs.end(), manager->vst_plugin_info().begin(), manager->vst_plugin_info().end());
577 #endif
578 #ifdef HAVE_AUDIOUNITS
579         all_plugs.insert (all_plugs.end(), manager->au_plugin_info().begin(), manager->au_plugin_info().end());
580 #endif
581 #ifdef HAVE_SLV2
582         all_plugs.insert (all_plugs.end(), manager->lv2_plugin_info().begin(), manager->lv2_plugin_info().end());
583 #endif
584
585         using namespace Menu_Helpers;
586
587         delete _plugin_menu;
588         
589         _plugin_menu = manage (new Menu);
590         _plugin_menu->set_name("ArdourContextMenu");
591         
592         MenuList& items = _plugin_menu->items();
593         items.clear ();
594
595         Gtk::Menu* favs = create_favs_menu(all_plugs);
596         items.push_back (MenuElem (_("Favorites"), *manage (favs)));
597
598         items.push_back (MenuElem (_("Plugin Manager"), sigc::mem_fun (*this, &PluginSelector::show_manager)));
599         items.push_back (SeparatorElem ());
600
601         Menu* by_creator = create_by_creator_menu(all_plugs);
602         items.push_back (MenuElem (_("By Creator"), *manage (by_creator)));
603
604         Menu* by_category = create_by_category_menu(all_plugs);
605         items.push_back (MenuElem (_("By Category"), *manage (by_category)));
606 }
607
608 Gtk::Menu*
609 PluginSelector::create_favs_menu (PluginInfoList& all_plugs)
610 {
611         using namespace Menu_Helpers;
612
613         Menu* favs = new Menu();
614         favs->set_name("ArdourContextMenu");
615
616         PluginMenuCompareByName cmp_by_name;
617         all_plugs.sort (cmp_by_name);
618
619         for (PluginInfoList::const_iterator i = all_plugs.begin(); i != all_plugs.end(); ++i) {
620                 if (manager->get_status (*i) == PluginManager::Favorite) {
621                         favs->items().push_back (MenuElem ((*i)->name, (sigc::bind (sigc::mem_fun (*this, &PluginSelector::plugin_chosen_from_menu), *i))));
622                 }
623         }
624         return favs;
625 }
626
627 Gtk::Menu*
628 PluginSelector::create_by_creator_menu (ARDOUR::PluginInfoList& all_plugs)
629 {
630         using namespace Menu_Helpers;
631
632         typedef std::map<Glib::ustring,Gtk::Menu*> SubmenuMap;
633         SubmenuMap creator_submenu_map;
634
635         Menu* by_creator = new Menu();
636         by_creator->set_name("ArdourContextMenu");
637
638         MenuList& by_creator_items = by_creator->items();
639         PluginMenuCompareByCreator cmp_by_creator;
640         all_plugs.sort (cmp_by_creator);
641
642         for (PluginInfoList::const_iterator i = all_plugs.begin(); i != all_plugs.end(); ++i) {
643
644                 if (manager->get_status (*i) == PluginManager::Hidden) continue;
645
646                 string creator = (*i)->creator;
647
648                 /* stupid LADSPA creator strings */
649                 string::size_type pos = 0;
650                 while (pos < creator.length() && (isalnum (creator[pos]) || isspace (creator[pos]))) ++pos;
651                 creator = creator.substr (0, pos);
652
653                 SubmenuMap::iterator x;
654                 Gtk::Menu* submenu;
655                 if ((x = creator_submenu_map.find (creator)) != creator_submenu_map.end()) {
656                         submenu = x->second;
657                 } else {
658                         submenu = new Gtk::Menu;
659                         by_creator_items.push_back (MenuElem (creator, *manage (submenu)));
660                         creator_submenu_map.insert (pair<Glib::ustring,Menu*> (creator, submenu));
661                         submenu->set_name("ArdourContextMenu");
662                 }
663                 submenu->items().push_back (MenuElem ((*i)->name, (sigc::bind (sigc::mem_fun (*this, &PluginSelector::plugin_chosen_from_menu), *i))));
664         }
665         return by_creator;
666 }
667
668 Gtk::Menu*
669 PluginSelector::create_by_category_menu (ARDOUR::PluginInfoList& all_plugs)
670 {
671         using namespace Menu_Helpers;
672
673         typedef std::map<Glib::ustring,Gtk::Menu*> SubmenuMap;
674         SubmenuMap category_submenu_map;
675
676         Menu* by_category = new Menu();
677         by_category->set_name("ArdourContextMenu");
678
679         MenuList& by_category_items = by_category->items();
680         PluginMenuCompareByCategory cmp_by_category;
681         all_plugs.sort (cmp_by_category);
682
683         for (PluginInfoList::const_iterator i = all_plugs.begin(); i != all_plugs.end(); ++i) {
684
685                 if (manager->get_status (*i) == PluginManager::Hidden) continue;
686
687                 string category = (*i)->category;
688
689                 SubmenuMap::iterator x;
690                 Gtk::Menu* submenu;
691                 if ((x = category_submenu_map.find (category)) != category_submenu_map.end()) {
692                         submenu = x->second;
693                 } else {
694                         submenu = new Gtk::Menu;
695                         by_category_items.push_back (MenuElem (category, *manage (submenu)));
696                         category_submenu_map.insert (pair<Glib::ustring,Menu*> (category, submenu));
697                         submenu->set_name("ArdourContextMenu");
698                 }
699                 submenu->items().push_back (MenuElem ((*i)->name, (sigc::bind (sigc::mem_fun (*this, &PluginSelector::plugin_chosen_from_menu), *i))));
700         }
701         return by_category;
702 }
703
704 void
705 PluginSelector::plugin_chosen_from_menu (const PluginInfoPtr& pi)
706 {
707         PluginPtr p = load_plugin (pi);
708
709         if (p && interested_object) {
710                 SelectedPlugins plugins;
711                 plugins.push_back (p);
712                 interested_object->use_plugins (plugins);
713         }
714
715         interested_object = 0;
716 }
717
718 void
719 PluginSelector::favorite_changed (const Glib::ustring& path)
720 {
721         PluginInfoPtr pi;
722
723         if (in_row_change) {
724                 return;
725         }
726
727         in_row_change = true;
728
729         TreeModel::iterator iter = plugin_model->get_iter (path);
730
731         if (iter) {
732
733                 bool favorite = !(*iter)[plugin_columns.favorite];
734
735                 /* change state */
736
737                 (*iter)[plugin_columns.favorite] = favorite;
738                 (*iter)[plugin_columns.hidden] = false;
739                 PluginManager::PluginStatusType status = (favorite ? PluginManager::Favorite : PluginManager::Normal);
740
741                 /* save new statuses list */
742
743                 pi = (*iter)[plugin_columns.plugin];
744
745                 manager->set_status (pi->type, pi->unique_id, status);
746
747                 manager->save_statuses ();
748
749                 build_plugin_menu ();
750         }
751         in_row_change = false;
752 }
753
754 void
755 PluginSelector::hidden_changed (const Glib::ustring& path)
756 {
757         PluginInfoPtr pi;
758
759         if (in_row_change) {
760                 return;
761         }
762
763         in_row_change = true;
764
765         TreeModel::iterator iter = plugin_model->get_iter (path);
766
767         if (iter) {
768
769                 bool hidden = !(*iter)[plugin_columns.hidden];
770
771                 /* change state */
772
773                 (*iter)[plugin_columns.favorite] = false;
774                 (*iter)[plugin_columns.hidden] = hidden;
775                 PluginManager::PluginStatusType status = (hidden ? PluginManager::Hidden : PluginManager::Normal);
776
777                 /* save new statuses list */
778
779                 pi = (*iter)[plugin_columns.plugin];
780
781                 manager->set_status (pi->type, pi->unique_id, status);
782
783                 manager->save_statuses ();
784         }
785         in_row_change = false;
786 }
787
788 void
789 PluginSelector::show_manager ()
790 {
791         show_all();
792         run ();
793 }
794
795 void
796 PluginSelector::set_interested_object (PluginInterestedObject& obj)
797 {
798         interested_object = &obj;
799 }