Build plugin menu only when plugins change, and build the first version of it before...
[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 #include "plugin_interest.h"
30
31 namespace ARDOUR {
32         class Session;
33         class PluginManager;
34 }
35
36 class PluginSelector : public ArdourDialog
37 {
38   public:
39         PluginSelector (ARDOUR::PluginManager *);
40         ~PluginSelector ();
41
42         void set_interested_object (PluginInterestedObject&);
43
44         int run (); // XXX should we try not to overload the non-virtual Gtk::Dialog::run() ?
45
46         void set_session (ARDOUR::Session*);
47         void on_show ();
48
49         Gtk::Menu* plugin_menu ();
50         void show_manager ();
51
52   private:
53         PluginInterestedObject* interested_object;
54
55         ARDOUR::Session* session;
56         Gtk::ScrolledWindow scroller;   // Available plugins
57         Gtk::ScrolledWindow ascroller;  // Added plugins
58
59         Gtk::ComboBoxText filter_mode;
60         Gtk::Entry filter_entry;
61         Gtk::Button filter_button;
62
63         void filter_button_clicked ();
64         void filter_entry_changed ();
65         void filter_mode_changed ();
66
67         struct PluginColumns : public Gtk::TreeModel::ColumnRecord {
68                 PluginColumns () {
69                         add (favorite);
70                         add (hidden);
71                         add (name);
72                         add (type_name);
73                         add (category);
74                         add (creator);
75                         add (audio_ins);
76                         add (audio_outs);
77                         add (midi_ins);
78                         add (midi_outs);
79                         add (plugin);
80                 }
81                 Gtk::TreeModelColumn<bool> favorite;
82                 Gtk::TreeModelColumn<bool> hidden;
83                 Gtk::TreeModelColumn<std::string> name;
84                 Gtk::TreeModelColumn<std::string> type_name;
85                 Gtk::TreeModelColumn<std::string> category;
86                 Gtk::TreeModelColumn<std::string> creator;
87                 Gtk::TreeModelColumn<std::string> audio_ins;
88                 Gtk::TreeModelColumn<std::string> audio_outs;
89                 Gtk::TreeModelColumn<std::string> midi_ins;
90                 Gtk::TreeModelColumn<std::string> midi_outs;
91                 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
92         };
93         PluginColumns plugin_columns;
94         Glib::RefPtr<Gtk::ListStore> plugin_model;
95         Gtk::TreeView plugin_display;
96         Gtk::Button* btn_add;
97         Gtk::Button* btn_remove;
98
99         struct AddedColumns : public Gtk::TreeModel::ColumnRecord {
100                 AddedColumns () {
101                         add (text);
102                         add (plugin);
103                 }
104                 Gtk::TreeModelColumn<std::string> text;
105                 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
106         };
107         AddedColumns acols;
108         Glib::RefPtr<Gtk::ListStore> amodel;
109         Gtk::TreeView added_list;
110
111         void refill ();
112         void refiller (const ARDOUR::PluginInfoList& plugs, const::std::string& filterstr, const char* type);
113         void ladspa_refiller (const std::string&);
114         void lv2_refiller (const std::string&);
115         void vst_refiller (const std::string&);
116         void au_refiller (const std::string&);
117
118         Gtk::Menu* _plugin_menu;
119         ARDOUR::PluginManager *manager;
120
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 display_selection_changed();
127         void btn_apply_clicked();
128         ARDOUR::PluginPtr load_plugin (ARDOUR::PluginInfoPtr);
129         bool show_this_plugin (const ARDOUR::PluginInfoPtr&, const std::string&);
130         void setup_filter_string (std::string&);
131
132         void favorite_changed (const Glib::ustring& path);
133         void hidden_changed (const Glib::ustring& path);
134         bool in_row_change;
135
136         void plugin_chosen_from_menu (const ARDOUR::PluginInfoPtr&);
137
138         Gtk::Menu* create_favs_menu (ARDOUR::PluginInfoList&);
139         Gtk::Menu* create_by_creator_menu (ARDOUR::PluginInfoList&);
140         Gtk::Menu* create_by_category_menu (ARDOUR::PluginInfoList&);
141         void build_plugin_menu ();
142 };
143
144 #endif // __ardour_plugin_selector_h__
145