3.7.3.10 SoQtComponent

void SoQtComponentCB( void *data, SoQtComponent *component)

A Python implementation must look like:

def mySoQtComponentCallback(myCallbackData, myQtComponent):
    '''Callback for ..

    myCallbackData can be any type or class
    myQtComponent is an iv.SoQtComponent
    '''

    # your Python code

    # no use to return something

void SoQtComponentVisibilityCB( void *data, int visibility)

A Python implementation must look like:

def mySoQtComponentVisibilityCallback(myCallbackData, myVisibility):
    '''Callback for ..

    myCallbackData can be any type or class
    myVisibility is an int or boolean
    '''

    # your Python code

    # no use to return something