plugin selection via menu, along with "favorites"
[ardour.git] / gtk2_ardour / plugin_selector.h
1 /*
2     Copyright (C) 2000 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 #ifndef __ardour_plugin_selector_h__
21 #define __ardour_plugin_selector_h__
22
23 #include <gtkmm/dialog.h>
24 #include <gtkmm/notebook.h>
25 #include <gtkmm/treeview.h>
26 #include <gtkmm2ext/selector.h>
27
28 #include <ardour/plugin.h>
29
30 namespace ARDOUR {
31         class Session;
32         class PluginManager;
33 }
34
35 class PluginSelector : public ArdourDialog
36 {
37   public:
38         PluginSelector (ARDOUR::PluginManager *);
39         sigc::signal<void,boost::shared_ptr<ARDOUR::Plugin> > PluginCreated;
40
41         int run (); // XXX should we try not to overload the non-virtual Gtk::Dialog::run() ?
42
43         void set_session (ARDOUR::Session*);
44         void on_show ();
45
46         Gtk::Menu& plugin_menu ();
47
48   private:
49         ARDOUR::Session* session;
50         Gtk::ScrolledWindow scroller;  // Available plugins
51         Gtk::ScrolledWindow ascroller;  // Added plugins
52
53         Gtk::ComboBoxText filter_mode;
54         Gtk::Entry filter_entry;
55         Gtk::Button filter_button;
56
57         void filter_button_clicked ();
58         void filter_entry_changed ();
59         void filter_mode_changed ();
60         
61         struct PluginColumns : public Gtk::TreeModel::ColumnRecord {
62                 PluginColumns () {
63                         add (favorite);
64                         add (name);
65                         add (type_name);
66                         add (category);
67                         add (creator);
68                         add (ins);
69                         add (outs);
70                         add (plugin);
71                 }
72                 Gtk::TreeModelColumn<bool> favorite;
73                 Gtk::TreeModelColumn<std::string> name;
74                 Gtk::TreeModelColumn<std::string> type_name;
75                 Gtk::TreeModelColumn<std::string> category;
76                 Gtk::TreeModelColumn<std::string> creator;
77                 Gtk::TreeModelColumn<std::string> ins;
78                 Gtk::TreeModelColumn<std::string> outs;
79                 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
80         };
81         PluginColumns plugin_columns;
82         Glib::RefPtr<Gtk::ListStore> plugin_model;
83         Gtk::TreeView plugin_display;
84         Gtk::Button* btn_add;
85         Gtk::Button* btn_remove;
86
87         struct AddedColumns : public Gtk::TreeModel::ColumnRecord {
88                 AddedColumns () {
89                         add (text);
90                         add (plugin);
91                 }
92                 Gtk::TreeModelColumn<std::string> text;
93                 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
94         };
95         AddedColumns acols;
96         Glib::RefPtr<Gtk::ListStore> amodel;
97         Gtk::TreeView added_list;
98
99         void refill ();
100         void refiller (const ARDOUR::PluginInfoList& plugs, const::std::string& filterstr, const char* type);
101         void ladspa_refiller (const std::string&);
102         void lv2_refiller (const std::string&);
103         void vst_refiller (const std::string&);
104         void au_refiller (const std::string&);
105
106         ARDOUR::PluginManager *manager;
107
108         void row_clicked(GdkEventButton *);
109         void btn_add_clicked();
110         void btn_remove_clicked();
111         void btn_update_clicked();
112         void added_list_selection_changed();
113         void display_selection_changed();
114         void btn_apply_clicked();
115         void use_plugin (ARDOUR::PluginInfoPtr);
116         void cleanup ();
117         bool show_this_plugin (const ARDOUR::PluginInfoPtr&, const std::string&);
118         void setup_filter_string (std::string&);
119
120         void favorite_changed (const Glib::ustring& path);
121         bool in_row_change;
122
123         void plugin_chosen_from_menu (const ARDOUR::PluginInfoPtr&);
124         Gtk::Menu* _menu;
125         void show_manager ();
126 };
127
128 #endif // __ardour_plugin_selector_h__
129