summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/processor.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-03-27 21:34:32 +0200
committerRobin Gareus <robin@gareus.org>2016-03-27 21:34:32 +0200
commit30e45fc28f080da62bbb511b7920c931d6508a1f (patch)
treea4d25426361944d6c6f6bce2fa788d9ffdb51f76 /libs/ardour/ardour/processor.h
parentc444105710cc540d3d6a14c9cf710f1e14fdbe26 (diff)
prepare Pin Management GUI
We need to store a pointer in the backend to allow to share the Proxy between Mixer and Editor-Mixer.
Diffstat (limited to 'libs/ardour/ardour/processor.h')
-rw-r--r--libs/ardour/ardour/processor.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/libs/ardour/ardour/processor.h b/libs/ardour/ardour/processor.h
index c7d3608b5e..914ddb904f 100644
--- a/libs/ardour/ardour/processor.h
+++ b/libs/ardour/ardour/processor.h
@@ -36,6 +36,7 @@
class XMLNode;
class ProcessorWindowProxy;
+class PluginPinWindowProxy;
namespace ARDOUR {
@@ -116,7 +117,10 @@ class LIBARDOUR_API Processor : public SessionObject, public Automatable, public
void* get_ui () const { return _ui_pointer; }
ProcessorWindowProxy * window_proxy () const { return _window_proxy; }
- void set_window_proxy (ProcessorWindowProxy* wp);
+ void set_window_proxy (ProcessorWindowProxy* wp) { _window_proxy = wp; }
+
+ PluginPinWindowProxy * pinmgr_proxy () const { return _pinmgr_proxy; }
+ void set_pingmgr_proxy (PluginPinWindowProxy* wp) { _pinmgr_proxy = wp ; }
void set_owner (SessionObject*);
SessionObject* owner() const;
@@ -134,6 +138,7 @@ protected:
bool _pre_fader; ///< true if this processor is currently placed before the Amp, otherwise false
void* _ui_pointer;
ProcessorWindowProxy *_window_proxy;
+ PluginPinWindowProxy *_pinmgr_proxy;
SessionObject* _owner;
};