summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_route_dialog.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-08-22 02:03:47 +0200
committerRobin Gareus <robin@gareus.org>2017-08-22 02:03:47 +0200
commit735d791e420c3e4944fdbc8ac7f6a26251d90d87 (patch)
tree1e2ec074288de1bac0c9ae5c79b1d28451674ca4 /gtk2_ardour/add_route_dialog.h
parentab621b550d77f83a1f9808776c89765a638d7db1 (diff)
RouteDialog: Move built-in types into template list experiment
Diffstat (limited to 'gtk2_ardour/add_route_dialog.h')
-rw-r--r--gtk2_ardour/add_route_dialog.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk2_ardour/add_route_dialog.h b/gtk2_ardour/add_route_dialog.h
index bf871ac065..20bbeeeff8 100644
--- a/gtk2_ardour/add_route_dialog.h
+++ b/gtk2_ardour/add_route_dialog.h
@@ -68,7 +68,7 @@ public:
MidiBus,
VCAMaster,
};
- TypeWanted type_wanted() const;
+ TypeWanted type_wanted();
ARDOUR::ChanCount channels ();
uint32_t channel_count ();
@@ -88,7 +88,6 @@ public:
private:
Gtk::Entry name_template_entry;
- Gtk::ComboBoxText track_bus_combo;
Gtk::Adjustment routes_adjustment;
Gtk::SpinButton routes_spinner;
Gtk::ComboBoxText channel_combo;
@@ -101,7 +100,6 @@ private:
Gtk::Label strict_io_label;
Gtk::Label mode_label;
Gtk::Label instrument_label;
- Gtk::ComboBoxText template_type_placeholder;
Gtk::ComboBoxText mode_combo;
Gtk::ComboBoxText route_group_combo;
InstrumentSelector instrument_combo;
@@ -156,6 +154,7 @@ private:
typedef std::vector<ChannelSetup> ChannelSetups;
ChannelSetups channel_setups;
+ static std::vector<std::string> builtin_types;
static std::vector<std::string> channel_combo_strings;
static std::vector<std::string> bus_mode_strings;