ASPiK SDK
|
This tutorial should give you a brief overview on how to get started using VSTGUI.
To add a user interface to a VST Plug-In with VSTGUI is quite simple.
Create a new class which inherite from AEffGUIEditor. Overwrite AEffGUIEditor::open and AEffGUIEditor::close.
In MyEditor::open you create the CFrame.
In MyEditor::close you need to delete the CFrame
Now you have your own editor for a VST Plug-In. Now you need to add controls to it.
Most controls provided with VSTGUI use bitmaps. So you need to know how to load and use bitmaps in VSTGUI. To load a bitmap, you just need to use the CBitmap class.