fix import/embed with "sequence files" option
[ardour2.git] / gtk2_ardour / plugin_selector.h
blobb5367c6a99a9f8b294c2671e121aa8a9aab245b4
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 (hidden);
70 add (name);
71 add (type_name);
72 add (category);
73 add (creator);
74 add (ins);
75 add (outs);
76 add (plugin);
78 Gtk::TreeModelColumn<bool> favorite;
79 Gtk::TreeModelColumn<bool> hidden;
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> ins;
85 Gtk::TreeModelColumn<std::string> outs;
86 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
88 PluginColumns plugin_columns;
89 Glib::RefPtr<Gtk::ListStore> plugin_model;
90 Gtk::TreeView plugin_display;
91 Gtk::Button* btn_add;
92 Gtk::Button* btn_remove;
94 struct AddedColumns : public Gtk::TreeModel::ColumnRecord {
95 AddedColumns () {
96 add (text);
97 add (plugin);
99 Gtk::TreeModelColumn<std::string> text;
100 Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
102 AddedColumns acols;
103 Glib::RefPtr<Gtk::ListStore> amodel;
104 Gtk::TreeView added_list;
106 void refill ();
107 void refiller (const ARDOUR::PluginInfoList& plugs, const::std::string& filterstr, const char* type);
108 void ladspa_refiller (const std::string&);
109 void lv2_refiller (const std::string&);
110 void vst_refiller (const std::string&);
111 void au_refiller (const std::string&);
113 ARDOUR::PluginManager *manager;
115 void row_clicked(GdkEventButton *);
116 void btn_add_clicked();
117 void btn_remove_clicked();
118 void btn_update_clicked();
119 void added_list_selection_changed();
120 void display_selection_changed();
121 void btn_apply_clicked();
122 ARDOUR::PluginPtr load_plugin (ARDOUR::PluginInfoPtr);
123 bool show_this_plugin (const ARDOUR::PluginInfoPtr&, const std::string&);
124 void setup_filter_string (std::string&);
126 void favorite_changed (const Glib::ustring& path);
127 void hidden_changed (const Glib::ustring& path);
128 bool in_row_change;
130 void plugin_chosen_from_menu (const ARDOUR::PluginInfoPtr&);
132 Gtk::Menu* create_favs_menu (ARDOUR::PluginInfoList&);
133 Gtk::Menu* create_by_creator_menu (ARDOUR::PluginInfoList&);
134 Gtk::Menu* create_by_category_menu (ARDOUR::PluginInfoList&);
137 #endif // __ardour_plugin_selector_h__