summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.h
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2014-08-01 13:48:33 -0500
committerBen Loftis <ben@harrisonconsoles.com>2014-08-01 13:48:47 -0500
commit39610179219928e9b5c39e0955c0566c3e655cbf (patch)
tree26596bf800a188d81d027c3b69f1b1ba04c0395e /gtk2_ardour/route_ui.h
parent7cd7927f0a9ab8591ec82cd756187536fe782346 (diff)
allow track headers to select io from right-click menu
Diffstat (limited to 'gtk2_ardour/route_ui.h')
-rw-r--r--gtk2_ardour/route_ui.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/gtk2_ardour/route_ui.h b/gtk2_ardour/route_ui.h
index 9c2c6618ac..28d0f77d1b 100644
--- a/gtk2_ardour/route_ui.h
+++ b/gtk2_ardour/route_ui.h
@@ -51,9 +51,9 @@ namespace Gtk {
class Widget;
}
-class BindableToggleButton;
class ArdourButton;
class ArdourWindow;
+class IOSelectorWindow;
class RouteUI : public virtual AxisView
{
@@ -119,6 +119,8 @@ class RouteUI : public virtual AxisView
Gtk::Menu* solo_menu;
Gtk::Menu* sends_menu;
+ boost::shared_ptr<ARDOUR::Delivery> _current_delivery;
+
bool mute_press(GdkEventButton*);
bool mute_release(GdkEventButton*);
bool solo_press(GdkEventButton*);
@@ -136,6 +138,9 @@ class RouteUI : public virtual AxisView
void monitoring_changed ();
void update_monitoring_display ();
+ void edit_input_configuration ();
+ void edit_output_configuration ();
+
void step_gain_up ();
void step_gain_down ();
void page_gain_up ();
@@ -244,6 +249,8 @@ class RouteUI : public virtual AxisView
ArdourWindow* comment_window;
Gtk::TextView* comment_area;
+ IOSelectorWindow *input_selector;
+ IOSelectorWindow *output_selector;
PBD::ScopedConnectionList route_connections;
bool self_destruct;