2005-09-25 14:42:24 -04:00
|
|
|
/*
|
|
|
|
Copyright (C) 2000 Paul Davis
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_plugin_selector_h__
|
|
|
|
#define __ardour_plugin_selector_h__
|
|
|
|
|
2005-11-27 12:59:03 -05:00
|
|
|
#include <gtkmm/dialog.h>
|
2005-10-01 12:29:37 -04:00
|
|
|
#include <gtkmm/notebook.h>
|
|
|
|
#include <gtkmm/treeview.h>
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/selector.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-08-01 00:05:15 -04:00
|
|
|
#include <ardour/plugin.h>
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
|
|
|
class PluginManager;
|
|
|
|
}
|
|
|
|
|
2005-12-02 14:18:26 -05:00
|
|
|
class PluginSelector : public ArdourDialog
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
PluginSelector (ARDOUR::PluginManager *);
|
2006-07-27 12:52:14 -04:00
|
|
|
sigc::signal<void,boost::shared_ptr<ARDOUR::Plugin> > PluginCreated;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 12:59:03 -05:00
|
|
|
int run (); // XXX should we try not to overload the non-virtual Gtk::Dialog::run() ?
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void set_session (ARDOUR::Session*);
|
|
|
|
|
|
|
|
private:
|
|
|
|
ARDOUR::Session* session;
|
|
|
|
Gtk::Notebook notebook;
|
2006-08-01 00:05:15 -04:00
|
|
|
Gtk::ScrolledWindow lscroller; // ladspa
|
|
|
|
Gtk::ScrolledWindow vscroller; // vst
|
|
|
|
Gtk::ScrolledWindow auscroller; // AudioUnit
|
|
|
|
Gtk::ScrolledWindow ascroller; // Added plugins
|
|
|
|
|
2006-08-10 00:01:15 -04:00
|
|
|
ARDOUR::PluginType current_selection;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
// page 1
|
2005-11-22 00:10:12 -05:00
|
|
|
struct LadspaColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
LadspaColumns () {
|
|
|
|
add (name);
|
|
|
|
add (type);
|
|
|
|
add (ins);
|
|
|
|
add (outs);
|
|
|
|
add (plugin);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<std::string> name;
|
|
|
|
Gtk::TreeModelColumn<std::string> type;
|
|
|
|
Gtk::TreeModelColumn<std::string> ins;
|
|
|
|
Gtk::TreeModelColumn<std::string> outs;
|
2006-08-01 17:11:55 -04:00
|
|
|
Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
|
2005-11-22 00:10:12 -05:00
|
|
|
};
|
|
|
|
LadspaColumns lcols;
|
|
|
|
Glib::RefPtr<Gtk::ListStore> lmodel;
|
|
|
|
Glib::RefPtr<Gtk::TreeSelection> lselection;
|
|
|
|
Gtk::TreeView ladspa_display;
|
2006-04-26 12:04:04 -04:00
|
|
|
Gtk::Button* btn_add;
|
|
|
|
Gtk::Button* btn_remove;
|
2005-11-22 00:10:12 -05:00
|
|
|
|
|
|
|
struct AddedColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
AddedColumns () {
|
|
|
|
add (text);
|
|
|
|
add (plugin);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<std::string> text;
|
2006-08-01 17:11:55 -04:00
|
|
|
Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
|
2005-11-22 00:10:12 -05:00
|
|
|
};
|
|
|
|
AddedColumns acols;
|
|
|
|
Glib::RefPtr<Gtk::ListStore> amodel;
|
|
|
|
Glib::RefPtr<Gtk::TreeSelection> aselection;
|
|
|
|
Gtk::TreeView added_list;
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#ifdef VST_SUPPORT
|
|
|
|
// page 2
|
2005-11-22 00:10:12 -05:00
|
|
|
struct VstColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
VstColumns () {
|
|
|
|
add (name);
|
|
|
|
add (ins);
|
|
|
|
add (outs);
|
|
|
|
add (plugin);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<std::string> name;
|
|
|
|
Gtk::TreeModelColumn<std::string> ins;
|
|
|
|
Gtk::TreeModelColumn<std::string> outs;
|
2006-08-01 17:11:55 -04:00
|
|
|
Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
|
2005-11-22 00:10:12 -05:00
|
|
|
};
|
2006-01-11 01:10:07 -05:00
|
|
|
VstColumns vcols;
|
2005-11-22 00:10:12 -05:00
|
|
|
Glib::RefPtr<Gtk::ListStore> vmodel;
|
|
|
|
Glib::RefPtr<Gtk::TreeSelection> vselection;
|
|
|
|
Gtk::TreeView vst_display;
|
|
|
|
static void _vst_refiller (void *);
|
|
|
|
void vst_refiller ();
|
2006-04-26 12:33:10 -04:00
|
|
|
void vst_display_selection_changed();
|
2006-07-31 18:05:28 -04:00
|
|
|
#endif // VST_SUPPORT
|
|
|
|
|
2006-08-31 12:34:42 -04:00
|
|
|
#ifdef HAVE_AUDIOUNIT
|
2006-07-31 18:05:28 -04:00
|
|
|
// page 3
|
|
|
|
struct AUColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
AUColumns () {
|
|
|
|
add (name);
|
|
|
|
add (ins);
|
|
|
|
add (outs);
|
|
|
|
add (plugin);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<std::string> name;
|
|
|
|
Gtk::TreeModelColumn<std::string> ins;
|
|
|
|
Gtk::TreeModelColumn<std::string> outs;
|
2006-08-01 17:11:55 -04:00
|
|
|
Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
|
2006-07-31 18:05:28 -04:00
|
|
|
};
|
|
|
|
AUColumns aucols;
|
|
|
|
Glib::RefPtr<Gtk::ListStore> aumodel;
|
|
|
|
Glib::RefPtr<Gtk::TreeSelection> auselection;
|
|
|
|
Gtk::TreeView au_display;
|
|
|
|
static void _au_refiller (void *);
|
|
|
|
void au_refiller ();
|
|
|
|
void au_display_selection_changed();
|
2006-08-31 12:34:42 -04:00
|
|
|
#endif //HAVE_AUDIOUNIT
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
ARDOUR::PluginManager *manager;
|
|
|
|
|
2005-11-22 00:10:12 -05:00
|
|
|
static void _input_refiller (void *);
|
2005-12-02 14:18:26 -05:00
|
|
|
|
2005-11-22 00:10:12 -05:00
|
|
|
void input_refiller ();
|
|
|
|
void row_clicked(GdkEventButton *);
|
2005-09-25 14:42:24 -04:00
|
|
|
void btn_add_clicked();
|
|
|
|
void btn_remove_clicked();
|
|
|
|
void btn_update_clicked();
|
2006-04-26 12:04:04 -04:00
|
|
|
void added_list_selection_changed();
|
|
|
|
void ladspa_display_selection_changed();
|
2005-09-25 14:42:24 -04:00
|
|
|
void btn_apply_clicked();
|
2006-08-01 17:11:55 -04:00
|
|
|
void use_plugin (ARDOUR::PluginInfoPtr);
|
2005-11-27 12:59:03 -05:00
|
|
|
void cleanup ();
|
2006-08-10 10:41:53 -04:00
|
|
|
|
|
|
|
void set_correct_focus();
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __ardour_plugin_selector_h__
|
2006-07-31 18:05:28 -04:00
|
|
|
|