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:
David Robillard 2008-02-20 23:24:51 +00:00
parent a2a6cc0404
commit 68bfed0a46
5 changed files with 60 additions and 19 deletions

View file

@ -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;