Sub-Controller

Hi,

The VSTGUI docs say that an own sub-controller can be implemented, see https://steinbergmedia.github.io/vst3_doc/vstgui/html/page_vst3_inline_editing.html

Following the example of the above mentioned page, I always get an error (No member named ‘removeDependent’ in ‘VSTGUI::CControl’) related to the statements

  • controlView->addDependent (this);


  • __ and controlView->addDependent (this);


  • message == CControl::kMessageValueChanged.

How can this be solved?

Hi,
the dependency stuff was removed in between, you should now use CControl::registerControlListener to be notified for control value changes.
I made a note to update the documentation accordingly in the next release.
Sorry for the inconvenience.

Cheers,
Arne