ripping, tearing, shredding
[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 Gtk::Dialog
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
48         // page 1
49         //Gtkmm2ext::Selector ladspa_display;
50         struct LadspaColumns : public Gtk::TreeModel::ColumnRecord {
51                 LadspaColumns () {
52                         add (name);
53                     add (type);
54                         add (ins);
55                         add (outs);
56                         add (plugin);
57                 }
58             Gtk::TreeModelColumn<std::string> name;
59                 Gtk::TreeModelColumn<std::string> type;
60                 Gtk::TreeModelColumn<std::string> ins;
61                 Gtk::TreeModelColumn<std::string> outs;
62             Gtk::TreeModelColumn<ARDOUR::PluginInfo *> plugin;
63         };
64         LadspaColumns lcols;
65         Glib::RefPtr<Gtk::ListStore> lmodel;
66         Glib::RefPtr<Gtk::TreeSelection> lselection;
67         Gtk::TreeView ladspa_display;
68
69         struct AddedColumns : public Gtk::TreeModel::ColumnRecord {
70                 AddedColumns () {
71                         add (text);
72                         add (plugin);
73                 }
74                 Gtk::TreeModelColumn<std::string> text;
75                 Gtk::TreeModelColumn<ARDOUR::PluginInfo *> plugin;
76         };
77         AddedColumns acols;
78         Glib::RefPtr<Gtk::ListStore> amodel;
79         Glib::RefPtr<Gtk::TreeSelection> aselection;
80         Gtk::TreeView added_list;
81
82 #ifdef VST_SUPPORT
83         // page 2
84         struct VstColumns : public Gtk::TreeModel::ColumnRecord {
85                 VstColumns () {
86                         add (name);
87                         add (ins);
88                         add (outs);
89                         add (plugin);
90                 }
91             Gtk::TreeModelColumn<std::string> name;
92                 Gtk::TreeModelColumn<std::string> ins;
93                 Gtk::TreeModelColumn<std::string> outs;
94             Gtk::TreeModelColumn<ARDOUR::PluginInfo *> plugin;
95         };
96         LadspaColumns vcols;
97         Glib::RefPtr<Gtk::ListStore> vmodel;
98         Glib::RefPtr<Gtk::TreeSelection> vselection;
99         Gtk::TreeView vst_display;
100         static void _vst_refiller (void *);
101         void vst_refiller ();
102 #endif  
103         //Gtkmm2ext::Selector o_selector;
104
105         ARDOUR::PluginInfo* i_selected_plug;
106
107         // We need an integer for the output side because
108         // the name isn't promised to be unique.
109         gint o_selected_plug;
110
111         ARDOUR::PluginManager *manager;
112         list<ARDOUR::PluginInfo*> added_plugins;
113
114         static void _input_refiller (void *);
115         //static void _output_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__