/* * Copyright (C) 2021 Robin Gareus * * 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., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #ifndef _gtkardour_plugin_manager_h_ #define _gtkardour_plugin_manager_h_ #include #include #include #include #include #include #include #include #include #include "widgets/ardour_button.h" #include "widgets/pane.h" #include "ardour/plugin_manager.h" #include "ardour_window.h" class PluginManagerUI : public ArdourWindow { public: PluginManagerUI (); ~PluginManagerUI (); private: void refill (); void on_show (); void selection_changed (); void blacklist_changed (std::string const&); void favorite_changed (std::string const&); void hidden_changed (std::string const&); void rescan_all (); void rescan_faulty (); void rescan_selected (); void clear_log (); void show_plugin_prefs (); void vst_path_cb (ARDOUR::PluginType); void edit_vst_path (std::string const&, std::string const&, sigc::slot, sigc::slot); void plugin_status_changed (ARDOUR::PluginType, std::string, ARDOUR::PluginManager::PluginStatusType); struct PluginColumns : public Gtk::TreeModel::ColumnRecord { PluginColumns () { add (status); add (blacklisted); add (favorite); add (hidden); add (name); add (creator); add (type); add (path); add (psle); add (plugin); add (can_blacklist); add (can_fav_hide); } Gtk::TreeModelColumn status; Gtk::TreeModelColumn blacklisted; Gtk::TreeModelColumn favorite; Gtk::TreeModelColumn hidden; Gtk::TreeModelColumn name; Gtk::TreeModelColumn type; Gtk::TreeModelColumn creator; Gtk::TreeModelColumn path; Gtk::TreeModelColumn > psle; Gtk::TreeModelColumn plugin; Gtk::TreeModelColumn can_blacklist; Gtk::TreeModelColumn can_fav_hide; }; PluginColumns plugin_columns; Glib::RefPtr plugin_model; Gtk::TreeView plugin_display; Gtk::ScrolledWindow _scroller; Gtk::TextView _log; Gtk::ScrolledWindow _log_scroller; ArdourWidgets::VPane _pane; ArdourWidgets::ArdourButton _btn_rescan_all; ArdourWidgets::ArdourButton _btn_rescan_err; ArdourWidgets::ArdourButton _btn_rescan_sel; ArdourWidgets::ArdourButton _btn_clear; ArdourWidgets::ArdourButton _btn_prefs; Gtk::Table _tbl_nfo; Gtk::Table _top; bool _in_row_change; PBD::ScopedConnectionList _manager_connections; }; #endif // _gtkardour_plugin_manager_h_