summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/ardour')
-rw-r--r--libs/ardour/ardour/plugin_insert.h6
-rw-r--r--libs/ardour/ardour/readonly_control.h44
2 files changed, 50 insertions, 0 deletions
diff --git a/libs/ardour/ardour/plugin_insert.h b/libs/ardour/ardour/plugin_insert.h
index 2b8d1bc542..b801207eaa 100644
--- a/libs/ardour/ardour/plugin_insert.h
+++ b/libs/ardour/ardour/plugin_insert.h
@@ -34,6 +34,7 @@
#include "ardour/parameter_descriptor.h"
#include "ardour/plugin.h"
#include "ardour/processor.h"
+#include "ardour/readonly_control.h"
#include "ardour/sidechain.h"
#include "ardour/automation_control.h"
@@ -243,6 +244,8 @@ class LIBARDOUR_API PluginInsert : public Processor
PluginType type ();
+ boost::shared_ptr<ReadOnlyControl> control_output (uint32_t) const;
+
std::string describe_parameter (Evoral::Parameter param);
framecnt_t signal_latency () const;
@@ -375,6 +378,9 @@ class LIBARDOUR_API PluginInsert : public Processor
bool _latency_changed;
uint32_t _bypass_port;
+ typedef std::map<uint32_t, boost::shared_ptr<ReadOnlyControl> >CtrlOutMap;
+ CtrlOutMap _control_outputs;
+
void preset_load_set_value (uint32_t, float);
};
diff --git a/libs/ardour/ardour/readonly_control.h b/libs/ardour/ardour/readonly_control.h
new file mode 100644
index 0000000000..8a2901af68
--- /dev/null
+++ b/libs/ardour/ardour/readonly_control.h
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2017 Robin Gareus <robin@gareus.org>
+ * Copyright (C) 2000, 2007 Paul Davis
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+
+#ifndef __ardour_readonly_control_h__
+#define __ardour_readonly_control_h__
+
+#include <boost/weak_ptr.hpp>
+
+namespace ARDOUR {
+
+class Plugin;
+
+class LIBARDOUR_API ReadOnlyControl : public PBD::Destructible
+{
+public:
+ ReadOnlyControl (boost::shared_ptr<Plugin> p, uint32_t pnum);
+
+ double get_parameter () const;
+ std::string describe_parameter ();
+
+private:
+ boost::weak_ptr<Plugin> _plugin;
+ uint32_t _parameter_num;
+};
+
+} // namespace ARDOUR
+
+#endif /* __ardour_readonly_control_h__ */