From 8450921d5309c5ba677997e7ca722a466c8dc222 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 30 Sep 2007 23:36:39 +0000 Subject: Working port notification for LV2 GUIs (ll-plugins VU meter works in Ingen now). git-svn-id: http://svn.drobilla.net/lad/ingen@790 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/events/EnablePatchEvent.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/libs/engine/events/EnablePatchEvent.hpp') diff --git a/src/libs/engine/events/EnablePatchEvent.hpp b/src/libs/engine/events/EnablePatchEvent.hpp index f0ba5714..a5d7d7e7 100644 --- a/src/libs/engine/events/EnablePatchEvent.hpp +++ b/src/libs/engine/events/EnablePatchEvent.hpp @@ -39,7 +39,11 @@ class CompiledPatch; class EnablePatchEvent : public QueuedEvent { public: - EnablePatchEvent(Engine& engine, SharedPtr responder, SampleCount timestamp, const string& patch_path); + EnablePatchEvent(Engine& engine, + SharedPtr responder, + SampleCount timestamp, + const string& patch_path, + bool enable); void pre_process(); void execute(ProcessContext& context); @@ -49,6 +53,7 @@ private: string _patch_path; Patch* _patch; CompiledPatch* _compiled_patch; // Patch's new process order + bool _enable; }; -- cgit v1.2.1