How to emit a signal from source c++ file and capture it using connections in replica file. I have declared the signal and the slot emitting the signal in rep file.Trying to catch the signal using Connections: and target as replica object.I have setcontext the replicaobject in my client qt engine. //.rep file class test { SLOT(test()); SIGNAL(testsignal()); }
//Interface.cpp file in source side
void Interface::test()
{
Q_EMIT testsignal();
}
//main.qml in the client side Connections { target: Interfacereplica onTestsignal: { console.log("Alert!!!"); }
You need to store your replica in a class instance that can be accessed from QML. You can connect replica's signal to signal that you declared in the class then receive it from QML.
Please review the code below. (replicaexample.h, replicaexample.cpp and main.qml)
(Host Application is a console app and client is a QtQuick app.)
Host Application
ExampleReplica.rep
sourceexample.h
sourceexample.cpp
main.cpp
Client Application
replicaexample.h
replicaexample.cpp
main.cpp
main.qml