Registering Callbacks
Views Studio lets you use your own callbacks when you test panels or applications by calling the registerCallback function:
static void ILVCALLBACK
MyCallback(IlvGraphic* obj, IlvAny)
{
IlvPrint(“MyCallback is called”);
}
 
....
IlvStudio* editor = ...
....
editor->registerCallback(“MyCallback”, MyCallback);
editor->registerCallback(“myCallback”, MyCallback);
....
Published date: 05/24/2022
Last modified date: 02/24/2022