VSTGUI 4.0.1 problem

DSP, Plugin and Host development discussion.
Post Reply New Topic
RELATED
PRODUCTS

Post

Hello, all!
I try to use last version of VSTGUI 4. I succesfully compile tutorial project. It good work in Wavelab 6, but it dont work in Nuendo 4. Who knows what the problem is?
Thanks.

Tutorial plugin window in Wavelab 6
Image

Tutorial plugin window in Nuendo 4
Image

Post

I had a somewhat similar problem at one time dealing with the window size the host opens. Try this in the editor's open() function:

Code: Select all

ERect *wSize;
getRect(&wSize);
wSize->top = wSize->left = 0;
wSize->bottom = EDITOR_WINDOW_HEIGHT;
wSize->right = EDITOR_WINDOW_WIDTH;
That should tell the host exactly what size of window to open for the GUI.

Post Reply

Return to “DSP and Plugin Development”