548ed826ff55cab04e3eb3887446b7211a986400
[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/dndtreeview.h"
27
28 #include "ardour/plugin.h"
29 #include "ardour/session_handle.h"
30
31 #include "widgets/ardour_button.h"
32
33 #include "plugin_interest.h"
34 #include "ardour_dialog.h"
35
36 namespace ARDOUR {
37         class Session;
38         class PluginManager;
39 }
40
41 class PluginSelector : public ArdourDialog
42 {
43 public:
44         PluginSelector (ARDOUR::PluginManager&);
45         ~PluginSelector ();
46
47         void set_interested_object (PluginInterestedObject&);
48
49         int run (); // XXX should we try not to overload the non-virtual Gtk::Dialog::run() ?
50
51         void on_show ();
52
53         Gtk::Menu* plugin_menu ();
54         void show_manager ();
55
56 private:
57         PluginInterestedObject* interested_object;
58
59         Gtk::ScrolledWindow scroller;   // Available plugins
60         Gtk::ScrolledWindow ascroller;  // Added plugins
61
62         Gtk::ComboBoxText filter_mode;
63         Gtk::Entry filter_entry;
64         Gtk::Button filter_button;
65
66         ArdourWidgets::ArdourButton fil_hidden_button;
67         ArdourWidgets::ArdourButton fil_instruments_button;
68         ArdourWidgets::ArdourButton fil_analysis_button;
69         ArdourWidgets::ArdourButton fil_utils_button;
70
71         void filter_button_clicked ();
72         void filter_entry_changed ();
73         void filter_mode_changed ();
74
75         struct PluginColumns : public Gtk::TreeModel::ColumnRecord {
76                 PluginColumns () {
77                         add (favorite);
78                         add (hidden);
79                         add (name);
80                         add (type_name);
81                         add (category);
82                         add (creator);
83                         add (audio_ins);
84                         add (audio_outs);
85                         add (midi_ins);
86                         add (midi_outs);
87                         add (plugin);
88                 }
89                 Gtk::TreeModelColumn<bool> favorite;
90                 Gtk::TreeModelColumn<bool> hidden;
91                 Gtk::TreeModelColumn<std::string> name;
92                 Gtk::TreeModelColumn<std::string> type_name;
93                 Gtk::TreeModelColumn<std::string> category;
94                 Gtk::TreeModelColumn<std::string> creator;
95                 Gtk::TreeModelColumn<std::string> audio_ins;
96                 Gtk::TreeModelColumn<std::string> audio_outs;
97                 Gtk::TreeModelColumn<std::string> midi_ins;
98                 Gtk::TreeModelColumn<std::string> midi_outs;
99                 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
100         };
101         PluginColumns plugin_columns;
102         Glib::RefPtr<Gtk::ListStore> plugin_model;
103         Gtkmm2ext::DnDTreeView<ARDOUR::PluginInfoPtr> plugin_display;
104         Gtk::Button* btn_add;
105         Gtk::Button* btn_remove;
106
107         struct AddedColumns : public Gtk::TreeModel::ColumnRecord {
108                 AddedColumns () {
109                         add (text);
110                         add (plugin);
111                 }
112                 Gtk::TreeModelColumn<std::string> text;
113                 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
114         };
115         AddedColumns acols;
116         Glib::RefPtr<Gtk::ListStore> amodel;
117         Gtk::TreeView added_list;
118
119         void refill ();
120         void refiller (const ARDOUR::PluginInfoList& plugs, const::std::string& filterstr, const char* type);
121         void ladspa_refiller (const std::string&);
122         void lv2_refiller (const std::string&);
123         void vst_refiller (const std::string&);
124         void lxvst_refiller (const std::string&);
125         void mac_vst_refiller (const std::string&);
126         void au_refiller (const std::string&);
127         void lua_refiller (const std::string&);
128
129         Gtk::Menu* _plugin_menu;
130         ARDOUR::PluginManager& manager;
131
132         void row_activated(Gtk::TreeModel::Path path, Gtk::TreeViewColumn* col);
133         void btn_add_clicked();
134         void btn_remove_clicked();
135         void added_list_selection_changed();
136         void added_row_clicked(GdkEventButton* event);
137         void display_selection_changed();
138         void btn_apply_clicked();
139         ARDOUR::PluginPtr load_plugin (ARDOUR::PluginInfoPtr);
140         bool show_this_plugin (const ARDOUR::PluginInfoPtr&, const std::string&);
141         void setup_filter_string (std::string&);
142
143         bool fil_hidden_button_release (GdkEventButton*);
144         bool fil_instruments_button_release (GdkEventButton*);
145         bool fil_analysis_button_release (GdkEventButton*);
146         bool fil_utils_button_release (GdkEventButton*);
147
148         void favorite_changed (const std::string& path);
149         void hidden_changed (const std::string& path);
150         bool in_row_change;
151
152         void plugin_chosen_from_menu (const ARDOUR::PluginInfoPtr&);
153
154         Gtk::Menu* create_favs_menu (ARDOUR::PluginInfoList&);
155         Gtk::Menu* create_by_creator_menu (ARDOUR::PluginInfoList&);
156         Gtk::Menu* create_by_category_menu (ARDOUR::PluginInfoList&);
157         void build_plugin_menu ();
158         PBD::ScopedConnectionList plugin_list_changed_connection;
159
160         bool _show_hidden;
161         Gtkmm2ext::ActiveState _show_instruments;
162         Gtkmm2ext::ActiveState _show_analysers;
163         Gtkmm2ext::ActiveState _show_utils;
164 };
165
166 #endif // __ardour_plugin_selector_h__
167