summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_route_dialog.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-03-28 18:07:43 +0200
committerRobin Gareus <robin@gareus.org>2016-03-28 18:25:34 +0200
commita16c7a8a906c4087fd1d1a756648ca75b7e91e78 (patch)
tree158ff80dd643f82282260ab1c350b14da1b94876 /gtk2_ardour/add_route_dialog.h
parent5f16e48d7e2b08a23847ad45c96f6583349ff820 (diff)
add option to create new routes with strict-i/o enabled.
Diffstat (limited to 'gtk2_ardour/add_route_dialog.h')
-rw-r--r--gtk2_ardour/add_route_dialog.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/add_route_dialog.h b/gtk2_ardour/add_route_dialog.h
index 08359c2000..05be01ef3d 100644
--- a/gtk2_ardour/add_route_dialog.h
+++ b/gtk2_ardour/add_route_dialog.h
@@ -76,6 +76,8 @@ class AddRouteDialog : public ArdourDialog
};
InsertAt insert_at();
+ bool use_strict_io() { return strict_io.get_active (); }
+
private:
Gtk::Entry name_template_entry;
Gtk::ComboBoxText track_bus_combo;
@@ -90,6 +92,7 @@ class AddRouteDialog : public ArdourDialog
InstrumentSelector instrument_combo;
Gtk::Label insert_at_label;
Gtk::ComboBoxText insert_at_combo;
+ Gtk::CheckButton strict_io;
std::vector<ARDOUR::TemplateInfo> route_templates;