You should use Connections in this case (maybe it’s the only way to connect).
-
Put your object myObj to QML file by
setContextProperty
qmlVectorForm->rootContext()->setContextProperty("YourObject", myOb);
-
Your signal is
finishedGatheringDataForItem(QString signalString)
-
In QML file, add Connectios likes below:
Connections { target: YourObject onFinishedGatheringDataForItem: { qmlString = signalString } }