summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_route_dialog.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-11-19 04:25:46 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-11-19 04:25:46 +0000
commitb99b507be9cb290ff9fc2d6197af045964eb68a2 (patch)
tree4cacb127abbb64bce55fbf06f7184441691d851e /gtk2_ardour/add_route_dialog.h
parent2feede2e8ce393b8684638c526006dfb46ef4908 (diff)
add track/bus now allows specifying aux or direct bus role; processor box menus sort of kindof allow New Aux -> Aux Bus
git-svn-id: svn://localhost/ardour2/branches/3.0@6128 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/add_route_dialog.h')
-rw-r--r--gtk2_ardour/add_route_dialog.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/gtk2_ardour/add_route_dialog.h b/gtk2_ardour/add_route_dialog.h
index 691a1c549d..7af8b47d8d 100644
--- a/gtk2_ardour/add_route_dialog.h
+++ b/gtk2_ardour/add_route_dialog.h
@@ -48,6 +48,7 @@ class AddRouteDialog : public ArdourDialog
bool track ();
int channels ();
int count ();
+ bool aux ();
std::string name_template ();
std::string track_template ();
@@ -63,8 +64,8 @@ class AddRouteDialog : public ArdourDialog
Gtk::Adjustment routes_adjustment;
Gtk::SpinButton routes_spinner;
Gtk::ComboBoxText channel_combo;
- Gtk::Label track_mode_label;
- Gtk::ComboBoxText track_mode_combo;
+ Gtk::Label mode_label;
+ Gtk::ComboBoxText mode_combo;
Gtk::ComboBoxText route_group_combo;
std::vector<ARDOUR::TemplateInfo> route_templates;
@@ -90,8 +91,9 @@ class AddRouteDialog : public ArdourDialog
typedef std::vector<ChannelSetup> ChannelSetups;
ChannelSetups channel_setups;
- std::vector<std::string> channel_combo_strings;
- std::vector<std::string> track_mode_strings;
+ static std::vector<std::string> channel_combo_strings;
+ static std::vector<std::string> track_mode_strings;
+ static std::vector<std::string> bus_mode_strings;
};
#endif /* __gtk_ardour_add_route_dialog_h__ */