From f58c2e7aee2e392bdeea68abea960db0178b0a98 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Mon, 23 Jan 2012 20:29:45 +0100 Subject: New with GUI. --- vst/drumgizmo_vst.h | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'vst/drumgizmo_vst.h') diff --git a/vst/drumgizmo_vst.h b/vst/drumgizmo_vst.h index cf44cf7..5e063ff 100644 --- a/vst/drumgizmo_vst.h +++ b/vst/drumgizmo_vst.h @@ -31,10 +31,13 @@ #include #include +#include #include "input_vst.h" #include "output_vst.h" +class DGEditor; + class DrumGizmoVst : public AudioEffectX { public: @@ -91,6 +94,23 @@ private: size_t pos; sample_t *buffer; size_t buffer_size; + + DGEditor *editor; +}; + +class DGEditor : public AEffEditor { +public: + DGEditor(AudioEffect* effect); + + bool open(void* ptr); + void close(); + bool isOpen(); + void idle(); + +private: + DrumGizmoVst* dgeff; + PluginGUI *plugingui; + DrumGizmo *drumgizmo; }; #endif/*__DRUMGIZMO_DRUMGIZMO_VST_H__*/ -- cgit v1.2.3