mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
Some work towards MIDI plugins (LV2 plugins with (MIDI supporting) event ports shown in plugin selector).
git-svn-id: svn://localhost/ardour2/branches/3.0@3092 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
a2a6cc0404
commit
68bfed0a46
5 changed files with 60 additions and 19 deletions
|
|
@ -61,16 +61,20 @@ class PluginSelector : public ArdourDialog
|
|||
add (type_name);
|
||||
add (category);
|
||||
add (creator);
|
||||
add (ins);
|
||||
add (outs);
|
||||
add (audio_ins);
|
||||
add (audio_outs);
|
||||
add (midi_ins);
|
||||
add (midi_outs);
|
||||
add (plugin);
|
||||
}
|
||||
Gtk::TreeModelColumn<std::string> name;
|
||||
Gtk::TreeModelColumn<std::string> type_name;
|
||||
Gtk::TreeModelColumn<std::string> category;
|
||||
Gtk::TreeModelColumn<std::string> creator;
|
||||
Gtk::TreeModelColumn<std::string> ins;
|
||||
Gtk::TreeModelColumn<std::string> outs;
|
||||
Gtk::TreeModelColumn<std::string> audio_ins;
|
||||
Gtk::TreeModelColumn<std::string> audio_outs;
|
||||
Gtk::TreeModelColumn<std::string> midi_ins;
|
||||
Gtk::TreeModelColumn<std::string> midi_outs;
|
||||
Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> plugin;
|
||||
};
|
||||
PluginColumns plugin_columns;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue