ASPiK SDK
TutorialEditor.h
1 // This file is part of VSTGUI. It is subject to the license terms
2 // in the LICENSE file found in the top-level directory of this
3 // distribution and at http://github.com/steinbergmedia/vstgui/LICENSE
4 
5 #ifndef __TutorialEditor__
6 #define __TutorialEditor__
7 
8 #include "../../plugin-bindings/aeffguieditor.h"
9 #include "TutorialParameters.h"
10 
11 class TutorialEditor : public AEffGUIEditor, public CControlListener
12 {
13 public:
14  TutorialEditor (void*);
15 
16  // from AEffGUIEditor
17  bool open (void* ptr);
18  void close ();
19  void setParameter (VstInt32 index, float value);
20 
21  // from CControlListener
22  void valueChanged (CControl* pControl);
23 
24 protected:
25  CControl* controls[kNumParameters];
26 };
27 
28 #endif // __TutorialEditor__
29 
Definition: aeffguieditor.h:21
Definition: TutorialEditor.h:11
base class of all VSTGUI controls
Definition: ccontrol.h:76