2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000 Paul Davis
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/plugin.h"
|
2009-12-17 13:24:23 -05:00
|
|
|
#include "ardour/session_handle.h"
|
2008-09-10 11:03:30 -04:00
|
|
|
#include "plugin_interest.h"
|
2006-08-01 00:05:15 -04:00
|
|
|
|
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 *);
|
2009-11-15 20:06:33 -05:00
|
|
|
~PluginSelector ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2008-09-10 11:03:30 -04:00
|
|
|
void set_interested_object (PluginInterestedObject&);
|
2009-10-14 12:10:01 -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() ?
|
|
|
|
|
2008-03-17 16:54:03 -04:00
|
|
|
void on_show ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-11-15 12:19:38 -05:00
|
|
|
Gtk::Menu* plugin_menu ();
|
2008-12-12 09:43:24 -05:00
|
|
|
void show_manager ();
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
private:
|
2008-09-10 11:03:30 -04:00
|
|
|
PluginInterestedObject* interested_object;
|
|
|
|
|
|
|
|
Gtk::ScrolledWindow scroller; // Available plugins
|
2006-08-01 00:05:15 -04:00
|
|
|
Gtk::ScrolledWindow ascroller; // Added plugins
|
2007-07-30 18:14:04 -04:00
|
|
|
|
|
|
|
Gtk::ComboBoxText filter_mode;
|
|
|
|
Gtk::Entry filter_entry;
|
|
|
|
Gtk::Button filter_button;
|
|
|
|
|
|
|
|
void filter_button_clicked ();
|
|
|
|
void filter_entry_changed ();
|
|
|
|
void filter_mode_changed ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
struct PluginColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
PluginColumns () {
|
2008-09-10 11:03:30 -04:00
|
|
|
add (favorite);
|
2009-11-08 14:15:28 -05:00
|
|
|
add (hidden);
|
2005-11-22 00:10:12 -05:00
|
|
|
add (name);
|
2008-01-10 16:20:59 -05:00
|
|
|
add (type_name);
|
|
|
|
add (category);
|
|
|
|
add (creator);
|
2008-02-20 18:24:51 -05:00
|
|
|
add (audio_ins);
|
|
|
|
add (audio_outs);
|
|
|
|
add (midi_ins);
|
|
|
|
add (midi_outs);
|
2005-11-22 00:10:12 -05:00
|
|
|
add (plugin);
|
|
|
|
}
|
2008-09-10 11:03:30 -04:00
|
|
|
Gtk::TreeModelColumn<bool> favorite;
|
2009-11-08 14:15:28 -05:00
|
|
|
Gtk::TreeModelColumn<bool> hidden;
|
2008-01-10 16:20:59 -05:00
|
|
|
Gtk::TreeModelColumn<std::string> name;
|
|
|
|
Gtk::TreeModelColumn<std::string> type_name;
|
|
|
|
Gtk::TreeModelColumn<std::string> category;
|
|
|
|
Gtk::TreeModelColumn<std::string> creator;
|
2008-02-20 18:24:51 -05:00
|
|
|
Gtk::TreeModelColumn<std::string> audio_ins;
|
|
|
|
Gtk::TreeModelColumn<std::string> audio_outs;
|
|
|
|
Gtk::TreeModelColumn<std::string> midi_ins;
|
|
|
|
Gtk::TreeModelColumn<std::string> midi_outs;
|
2008-01-10 16:20:59 -05:00
|
|
|
Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
|
2005-11-22 00:10:12 -05:00
|
|
|
};
|
2008-01-10 16:20:59 -05:00
|
|
|
PluginColumns plugin_columns;
|
|
|
|
Glib::RefPtr<Gtk::ListStore> plugin_model;
|
|
|
|
Gtk::TreeView plugin_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;
|
|
|
|
Gtk::TreeView added_list;
|
|
|
|
|
2008-01-10 16:20:59 -05:00
|
|
|
void refill ();
|
|
|
|
void refiller (const ARDOUR::PluginInfoList& plugs, const::std::string& filterstr, const char* type);
|
|
|
|
void ladspa_refiller (const std::string&);
|
2008-01-18 22:49:52 -05:00
|
|
|
void lv2_refiller (const std::string&);
|
2008-01-10 16:20:59 -05:00
|
|
|
void vst_refiller (const std::string&);
|
2011-09-20 16:29:47 -04:00
|
|
|
void lxvst_refiller (const std::string&);
|
2008-01-10 16:20:59 -05:00
|
|
|
void au_refiller (const std::string&);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-11-15 20:06:33 -05:00
|
|
|
Gtk::Menu* _plugin_menu;
|
2005-09-25 14:42:24 -04:00
|
|
|
ARDOUR::PluginManager *manager;
|
|
|
|
|
2005-11-22 00:10:12 -05:00
|
|
|
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();
|
2008-01-10 16:20:59 -05:00
|
|
|
void display_selection_changed();
|
2005-09-25 14:42:24 -04:00
|
|
|
void btn_apply_clicked();
|
2008-09-10 11:03:30 -04:00
|
|
|
ARDOUR::PluginPtr load_plugin (ARDOUR::PluginInfoPtr);
|
2008-01-10 16:20:59 -05:00
|
|
|
bool show_this_plugin (const ARDOUR::PluginInfoPtr&, const std::string&);
|
2007-07-31 12:03:35 -04:00
|
|
|
void setup_filter_string (std::string&);
|
2008-09-10 11:03:30 -04:00
|
|
|
|
2010-09-14 12:51:02 -04:00
|
|
|
void favorite_changed (const std::string& path);
|
|
|
|
void hidden_changed (const std::string& path);
|
2008-09-10 11:03:30 -04:00
|
|
|
bool in_row_change;
|
|
|
|
|
|
|
|
void plugin_chosen_from_menu (const ARDOUR::PluginInfoPtr&);
|
2009-11-08 14:15:28 -05:00
|
|
|
|
|
|
|
Gtk::Menu* create_favs_menu (ARDOUR::PluginInfoList&);
|
|
|
|
Gtk::Menu* create_by_creator_menu (ARDOUR::PluginInfoList&);
|
|
|
|
Gtk::Menu* create_by_category_menu (ARDOUR::PluginInfoList&);
|
2009-11-15 20:06:33 -05:00
|
|
|
void build_plugin_menu ();
|
2009-12-19 15:26:31 -05:00
|
|
|
PBD::ScopedConnection plugin_list_changed_connection;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // __ardour_plugin_selector_h__
|
2006-07-31 18:05:28 -04:00
|
|
|
|