2014-12-24 18:39:15 -05:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2016-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2014-12-24 18:39:15 -05:00
|
|
|
|
|
|
|
#ifndef __gtk_ardour_instrument_selector_h__
|
|
|
|
#define __gtk_ardour_instrument_selector_h__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include <gtkmm/combobox.h>
|
|
|
|
#include <gtkmm/comboboxtext.h>
|
|
|
|
#include <gtkmm/treemodel.h>
|
|
|
|
#include <gtkmm/liststore.h>
|
|
|
|
|
2016-04-18 13:15:53 -04:00
|
|
|
#include "pbd/signals.h"
|
|
|
|
|
2014-12-24 18:39:15 -05:00
|
|
|
#include "ardour/plugin.h"
|
|
|
|
#include "ardour/types.h"
|
|
|
|
#include "ardour/template_utils.h"
|
|
|
|
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
|
|
|
|
class Editor;
|
|
|
|
|
|
|
|
class InstrumentSelector : public Gtk::ComboBox
|
|
|
|
{
|
|
|
|
public:
|
2022-02-04 21:31:21 -05:00
|
|
|
enum InstrumentListDisposition {
|
|
|
|
ForAuditioner, /* this will always return some synth, never 'None' */
|
|
|
|
ForTrackDefault, /* functionally same as ForAuditioner, but for tracks */
|
|
|
|
ForTrackSelector /* this provides the 'None' option so the user can add a synth later */
|
|
|
|
};
|
|
|
|
|
|
|
|
InstrumentSelector (InstrumentListDisposition);
|
2014-12-24 18:39:15 -05:00
|
|
|
|
2020-09-17 15:05:41 -04:00
|
|
|
ARDOUR::PluginInfoPtr selected_instrument () const;
|
|
|
|
std::string selected_instrument_name () const;
|
2014-12-24 18:39:15 -05:00
|
|
|
|
2023-10-26 18:39:03 -04:00
|
|
|
static sigc::signal<void> DropPluginInfoPtr;
|
|
|
|
|
2014-12-24 18:39:15 -05:00
|
|
|
private:
|
|
|
|
struct InstrumentListColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
InstrumentListColumns() {
|
|
|
|
add(name);
|
|
|
|
add(info_ptr);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<std::string> name;
|
|
|
|
Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> info_ptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
void build_instrument_list();
|
2016-04-18 13:15:53 -04:00
|
|
|
void refill();
|
2023-10-26 18:39:03 -04:00
|
|
|
void drop_plugin_ptr();
|
2014-12-24 18:39:15 -05:00
|
|
|
|
2022-02-04 21:31:21 -05:00
|
|
|
std::string _longest_instrument_name;
|
|
|
|
|
2014-12-24 18:39:15 -05:00
|
|
|
Glib::RefPtr<Gtk::ListStore> _instrument_list;
|
|
|
|
InstrumentListColumns _instrument_list_columns;
|
|
|
|
uint32_t _reasonable_synth_id;
|
2017-01-30 10:42:11 -05:00
|
|
|
uint32_t _gmsynth_id;
|
2022-02-04 21:31:21 -05:00
|
|
|
InstrumentListDisposition _disposition;
|
2016-04-18 13:15:53 -04:00
|
|
|
PBD::ScopedConnection _update_connection;
|
2014-12-24 18:39:15 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_instrument_selector_h__ */
|