summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-10-20 18:50:29 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-10-20 18:50:29 +0000
commit3764eedca0d8ca8d666401c8bb8364705a64317e (patch)
treeeb666341e2b9a48c2cb8f2534725d6adfb33107e /gtk2_ardour/route_ui.h
parent49b459f8d32ccabdac7cc0bacf3976557c00b2a6 (diff)
add initial implementation of explicit monitor (input|disk) control. some behaviour to be worked out, still
git-svn-id: svn://localhost/ardour2/branches/3.0@10256 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/route_ui.h')
-rw-r--r--gtk2_ardour/route_ui.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/gtk2_ardour/route_ui.h b/gtk2_ardour/route_ui.h
index e5f240ff5b..d084ec696a 100644
--- a/gtk2_ardour/route_ui.h
+++ b/gtk2_ardour/route_ui.h
@@ -94,6 +94,8 @@ class RouteUI : public virtual AxisView
BindableToggleButton* solo_button;
BindableToggleButton* rec_enable_button; /* audio tracks */
BindableToggleButton* show_sends_button; /* busses */
+ BindableToggleButton* monitor_input_button;
+ BindableToggleButton* monitor_disk_button;
LED* solo_safe_led;
LED* solo_isolated_led;
@@ -101,6 +103,8 @@ class RouteUI : public virtual AxisView
Gtk::Label solo_button_label;
Gtk::Label mute_button_label;
Gtk::Label rec_enable_button_label;
+ Gtk::Label monitor_input_button_label;
+ Gtk::Label monitor_disk_button_label;
void send_blink (bool);
sigc::connection send_blink_connection;
@@ -121,6 +125,13 @@ class RouteUI : public virtual AxisView
bool show_sends_press(GdkEventButton*);
bool show_sends_release(GdkEventButton*);
+ bool monitor_release(GdkEventButton*, ARDOUR::MonitorChoice);
+ bool monitor_input_press(GdkEventButton*);
+ bool monitor_input_release(GdkEventButton*);
+ bool monitor_disk_press(GdkEventButton*);
+ bool monitor_disk_release(GdkEventButton*);
+ void monitoring_changed ();
+
void step_gain_up ();
void step_gain_down ();
void page_gain_up ();