Plugin-Selector replace Gtk::ComboBox with ArdourDropdown

This commit is contained in:
Robin Gareus 2018-01-30 16:27:55 +01:00
parent 5cbd978735
commit 54e155f4c7
2 changed files with 64 additions and 75 deletions

View file

@ -30,6 +30,8 @@
#include <gtkmm/treemodel.h>
#include <gtkmm/treeview.h>
#include "widgets/ardour_dropdown.h"
#include "gtkmm2ext/dndtreeview.h"
#include "ardour/plugin.h"
@ -76,10 +78,10 @@ private:
Gtk::RadioButton *_fil_hidden_radio;
Gtk::RadioButton *_fil_all_radio;
//combobox filters
Gtk::ComboBoxText *_fil_type_combo;
Gtk::ComboBoxText *_fil_creator_combo;
Gtk::ComboBoxText *_fil_channel_combo;
/* combobox filters */
ArdourWidgets::ArdourDropdown _fil_type_combo;
ArdourWidgets::ArdourDropdown _fil_creator_combo;
ArdourWidgets::ArdourDropdown _fil_channel_combo;
PluginInterestedObject* interested_object;