Remove idiocy.
[ardour2.git] / gtk2_ardour / plugin_selector.h
blobdc09c30645e0131e4613cc421ec49e6bdb2be76d
1 /*
2 Copyright (C) 2000 Paul Davis
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.
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.
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.
20 #ifndef __ardour_plugin_selector_h__
21 #define __ardour_plugin_selector_h__
23 #include <gtkmm/dialog.h>
24 #include <gtkmm/notebook.h>
25 #include <gtkmm/treeview.h>
26 #include <gtkmm2ext/selector.h>
28 #include "ardour/plugin.h"
29 #include "plugin_interest.h"
31 namespace ARDOUR {
32 class Session;
33 class PluginManager;
36 class PluginSelector : public ArdourDialog
38 public:
39 PluginSelector (ARDOUR::PluginManager *);
41 void set_interested_object (PluginInterestedObject&);
43 int run (); // XXX should we try not to overload the non-virtual Gtk::Dialog::run() ?
45 void set_session (ARDOUR::Session*);
46 void on_show ();
48 Gtk::Menu& plugin_menu ();
49 void show_manager ();
51 private:
52 PluginInterestedObject* interested_object;
54 ARDOUR::Session* session;
55 Gtk::ScrolledWindow scroller; // Available plugins
56 Gtk::ScrolledWindow ascroller; // Added plugins
58 Gtk::ComboBoxText filter_mode;
59 Gtk::Entry filter_entry;
60 Gtk::Button filter_button;
62 void filter_button_clicked ();
63 void filter_entry_changed ();
64 void filter_mode_changed ();
66 struct PluginColumns : public Gtk::TreeModel::ColumnRecord {
67 PluginColumns () {
68 add (favorite);
69 add (name);
70 add (type_name);
71 add (category);
72 add (creator);
73 add (audio_ins);
74 add (audio_outs);
75 add (midi_ins);
76 add (midi_outs);
77 add (plugin);
79 Gtk::TreeModelColumn<bool> favorite;
80 Gtk::TreeModelColumn<std::string> name;
81 Gtk::TreeModelColumn<std::string> type_name;
82 Gtk::TreeModelColumn<std::string> category;
83 Gtk::TreeModelColumn<std::string> creator;
84 Gtk::TreeModelColumn<std::string> audio_ins;
85 Gtk::TreeModelColumn<std::string> audio_outs;
86 Gtk::TreeModelColumn<std::string> midi_ins;
87 Gtk::TreeModelColumn<std::string> midi_outs;
88 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
90 PluginColumns plugin_columns;
91 Glib::RefPtr<Gtk::ListStore> plugin_model;
92 Gtk::TreeView plugin_display;
93 Gtk::Button* btn_add;
94 Gtk::Button* btn_remove;
96 struct AddedColumns : public Gtk::TreeModel::ColumnRecord {
97 AddedColumns () {
98 add (text);
99 add (plugin);
101 Gtk::TreeModelColumn<std::string> text;
102 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
104 AddedColumns acols;
105 Glib::RefPtr<Gtk::ListStore> amodel;
106 Gtk::TreeView added_list;
108 void refill ();
109 void refiller (const ARDOUR::PluginInfoList& plugs, const::std::string& filterstr, const char* type);
110 void ladspa_refiller (const std::string&);
111 void lv2_refiller (const std::string&);
112 void vst_refiller (const std::string&);
113 void au_refiller (const std::string&);
115 ARDOUR::PluginManager *manager;
117 void row_clicked(GdkEventButton *);
118 void btn_add_clicked();
119 void btn_remove_clicked();
120 void btn_update_clicked();
121 void added_list_selection_changed();
122 void display_selection_changed();
123 void btn_apply_clicked();
124 ARDOUR::PluginPtr load_plugin (ARDOUR::PluginInfoPtr);
125 bool show_this_plugin (const ARDOUR::PluginInfoPtr&, const std::string&);
126 void setup_filter_string (std::string&);
128 void favorite_changed (const Glib::ustring& path);
129 bool in_row_change;
131 void plugin_chosen_from_menu (const ARDOUR::PluginInfoPtr&);
132 Gtk::Menu* _menu;
135 #endif // __ardour_plugin_selector_h__