added RCU handling of Session route list, and major use of shared_ptr<T> everywhere...
[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,boost::shared_ptr<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         Gtk::Button* btn_add;
71         Gtk::Button* btn_remove;
72
73         struct AddedColumns : public Gtk::TreeModel::ColumnRecord {
74                 AddedColumns () {
75                         add (text);
76                         add (plugin);
77                 }
78                 Gtk::TreeModelColumn<std::string> text;
79                 Gtk::TreeModelColumn<ARDOUR::PluginInfo *> plugin;
80         };
81         AddedColumns acols;
82         Glib::RefPtr<Gtk::ListStore> amodel;
83         Glib::RefPtr<Gtk::TreeSelection> aselection;
84         Gtk::TreeView added_list;
85
86 #ifdef VST_SUPPORT
87         // page 2
88         struct VstColumns : public Gtk::TreeModel::ColumnRecord {
89                 VstColumns () {
90                         add (name);
91                         add (ins);
92                         add (outs);
93                         add (plugin);
94                 }
95             Gtk::TreeModelColumn<std::string> name;
96                 Gtk::TreeModelColumn<std::string> ins;
97                 Gtk::TreeModelColumn<std::string> outs;
98             Gtk::TreeModelColumn<ARDOUR::PluginInfo *> plugin;
99         };
100         VstColumns vcols;
101         Glib::RefPtr<Gtk::ListStore> vmodel;
102         Glib::RefPtr<Gtk::TreeSelection> vselection;
103         Gtk::TreeView vst_display;
104         static void _vst_refiller (void *);
105         void vst_refiller ();
106         void vst_display_selection_changed();
107 #endif  
108
109         ARDOUR::PluginInfo* i_selected_plug;
110
111         // We need an integer for the output side because
112         // the name isn't promised to be unique.
113         gint o_selected_plug;
114
115         ARDOUR::PluginManager *manager;
116         list<ARDOUR::PluginInfo*> added_plugins;
117
118         static void _input_refiller (void *);
119         
120         void input_refiller ();
121         void row_clicked(GdkEventButton *);
122         void btn_add_clicked();
123         void btn_remove_clicked();
124         void btn_update_clicked();
125         void added_list_selection_changed();
126         void ladspa_display_selection_changed();
127         void btn_apply_clicked();
128         void use_plugin (ARDOUR::PluginInfo*);
129         void cleanup ();
130 };
131
132 #endif // __ardour_plugin_selector_h__