rearrange icons/presets on xfade editor to be symmetric; refactor importable source...
[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   private:
47         ARDOUR::Session* session;
48         Gtk::ScrolledWindow scroller;  // Available plugins
49         Gtk::ScrolledWindow ascroller;  // Added plugins
50
51         Gtk::ComboBoxText filter_mode;
52         Gtk::Entry filter_entry;
53         Gtk::Button filter_button;
54
55         void filter_button_clicked ();
56         void filter_entry_changed ();
57         void filter_mode_changed ();
58         
59         struct PluginColumns : public Gtk::TreeModel::ColumnRecord {
60                 PluginColumns () {
61                         add (name);
62                         add (type_name);
63                         add (category);
64                         add (creator);
65                         add (ins);
66                         add (outs);
67                         add (plugin);
68                 }
69                 Gtk::TreeModelColumn<std::string> name;
70                 Gtk::TreeModelColumn<std::string> type_name;
71                 Gtk::TreeModelColumn<std::string> category;
72                 Gtk::TreeModelColumn<std::string> creator;
73                 Gtk::TreeModelColumn<std::string> ins;
74                 Gtk::TreeModelColumn<std::string> outs;
75                 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
76         };
77         PluginColumns plugin_columns;
78         Glib::RefPtr<Gtk::ListStore> plugin_model;
79         Gtk::TreeView plugin_display;
80         Gtk::Button* btn_add;
81         Gtk::Button* btn_remove;
82
83         struct AddedColumns : public Gtk::TreeModel::ColumnRecord {
84                 AddedColumns () {
85                         add (text);
86                         add (plugin);
87                 }
88                 Gtk::TreeModelColumn<std::string> text;
89                 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
90         };
91         AddedColumns acols;
92         Glib::RefPtr<Gtk::ListStore> amodel;
93         Gtk::TreeView added_list;
94
95         void refill ();
96         void refiller (const ARDOUR::PluginInfoList& plugs, const::std::string& filterstr, const char* type);
97         void ladspa_refiller (const std::string&);
98         void lv2_refiller (const std::string&);
99         void vst_refiller (const std::string&);
100         void au_refiller (const std::string&);
101
102         ARDOUR::PluginManager *manager;
103
104         void row_clicked(GdkEventButton *);
105         void btn_add_clicked();
106         void btn_remove_clicked();
107         void btn_update_clicked();
108         void added_list_selection_changed();
109         void display_selection_changed();
110         void btn_apply_clicked();
111         void use_plugin (ARDOUR::PluginInfoPtr);
112         void cleanup ();
113         bool show_this_plugin (const ARDOUR::PluginInfoPtr&, const std::string&);
114         void setup_filter_string (std::string&);
115 };
116
117 #endif // __ardour_plugin_selector_h__
118