Fixed broken vst code in PluginSelector
[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 namespace ARDOUR {
29         class Session;
30         class PluginManager;
31         class Plugin;
32 }
33
34 class PluginSelector : public ArdourDialog
35 {
36   public:
37         PluginSelector (ARDOUR::PluginManager *);
38         sigc::signal<void,ARDOUR::Plugin *> PluginCreated;
39
40         int run (); // XXX should we try not to overload the non-virtual Gtk::Dialog::run() ?
41
42         void set_session (ARDOUR::Session*);
43
44   private:
45         ARDOUR::Session* session;
46         Gtk::Notebook notebook;
47         Gtk::ScrolledWindow lscroller;
48         Gtk::ScrolledWindow vscroller;
49         Gtk::ScrolledWindow ascroller;
50
51         // page 1
52         struct LadspaColumns : public Gtk::TreeModel::ColumnRecord {
53                 LadspaColumns () {
54                         add (name);
55                     add (type);
56                         add (ins);
57                         add (outs);
58                         add (plugin);
59                 }
60             Gtk::TreeModelColumn<std::string> name;
61                 Gtk::TreeModelColumn<std::string> type;
62                 Gtk::TreeModelColumn<std::string> ins;
63                 Gtk::TreeModelColumn<std::string> outs;
64             Gtk::TreeModelColumn<ARDOUR::PluginInfo *> plugin;
65         };
66         LadspaColumns lcols;
67         Glib::RefPtr<Gtk::ListStore> lmodel;
68         Glib::RefPtr<Gtk::TreeSelection> lselection;
69         Gtk::TreeView ladspa_display;
70
71         struct AddedColumns : public Gtk::TreeModel::ColumnRecord {
72                 AddedColumns () {
73                         add (text);
74                         add (plugin);
75                 }
76                 Gtk::TreeModelColumn<std::string> text;
77                 Gtk::TreeModelColumn<ARDOUR::PluginInfo *> plugin;
78         };
79         AddedColumns acols;
80         Glib::RefPtr<Gtk::ListStore> amodel;
81         Glib::RefPtr<Gtk::TreeSelection> aselection;
82         Gtk::TreeView added_list;
83
84 #ifdef VST_SUPPORT
85         // page 2
86         struct VstColumns : public Gtk::TreeModel::ColumnRecord {
87                 VstColumns () {
88                         add (name);
89                         add (ins);
90                         add (outs);
91                         add (plugin);
92                 }
93             Gtk::TreeModelColumn<std::string> name;
94                 Gtk::TreeModelColumn<std::string> ins;
95                 Gtk::TreeModelColumn<std::string> outs;
96             Gtk::TreeModelColumn<ARDOUR::PluginInfo *> plugin;
97         };
98         VstColumns vcols;
99         Glib::RefPtr<Gtk::ListStore> vmodel;
100         Glib::RefPtr<Gtk::TreeSelection> vselection;
101         Gtk::TreeView vst_display;
102         static void _vst_refiller (void *);
103         void vst_refiller ();
104 #endif  
105
106         ARDOUR::PluginInfo* i_selected_plug;
107
108         // We need an integer for the output side because
109         // the name isn't promised to be unique.
110         gint o_selected_plug;
111
112         ARDOUR::PluginManager *manager;
113         list<ARDOUR::PluginInfo*> added_plugins;
114
115         static void _input_refiller (void *);
116         
117         void input_refiller ();
118         void row_clicked(GdkEventButton *);
119         void btn_add_clicked();
120         void btn_remove_clicked();
121         void btn_update_clicked();
122         void btn_apply_clicked();
123         void use_plugin (ARDOUR::PluginInfo*);
124         void cleanup ();
125 };
126
127 #endif // __ardour_plugin_selector_h__