summaryrefslogtreecommitdiff
path: root/libs/surfaces/osc/osc.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/surfaces/osc/osc.h')
-rw-r--r--libs/surfaces/osc/osc.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/libs/surfaces/osc/osc.h b/libs/surfaces/osc/osc.h
index 6ebb1d05da..d7dec3c39b 100644
--- a/libs/surfaces/osc/osc.h
+++ b/libs/surfaces/osc/osc.h
@@ -129,6 +129,7 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
* [10] - Send Playhead position as samples
* [11] - Send Playhead position as minutes seconds
* [12] - Send Playhead position like primary/secondary GUI clocks
+ * [13] - Send well known feedback (for /select/command
*/
@@ -139,6 +140,19 @@ class OSC : public ARDOUR::ControlProtocol, public AbstractUI<OSCUIRequest>
std::string get_server_url ();
void set_debug_mode (OSCDebugMode m) { _debugmode = m; }
OSCDebugMode get_debug_mode () { return _debugmode; }
+ int get_portmode() { return address_only; }
+ void set_portmode (int pm) { address_only = pm; }
+ int get_banksize () { return default_banksize; }
+ void set_banksize (int bs) {default_banksize = bs; }
+ int get_gainmode() { return default_gainmode; }
+ void set_gainmode (int gm) { default_gainmode = gm; }
+ int get_defaultstrip() { return default_strip; }
+ void set_defaultstrip (int st) { default_strip = st; }
+ int get_defaultfeedback() { return default_feedback; }
+ void set_defaultfeedback (int fb) { default_feedback = fb; }
+ void clear_devices ();
+ std::string get_remote_port () { return remote_port; }
+ void set_remote_port (std::string pt) { remote_port = pt; }
protected:
void thread_init ();