Connections|{|
||target|: stateMachine|
|    onEventOccurred: {|
|        console.|log|(event.name)|
|    }|
|}|

From QML you should use the EventConnection QML type. About like this:

EventConnection {
    stateMachine: stateMachine
    events: ["done.state.*"] // or ["done.state.somespecificstate", 
"done.state.someotherstate", ...]
    onOccurred: console.log(event.name)
}

From C++ you can do the following:

statemachine.connectToEvent("done.state", [](const QScxmlEvent &event) {
    // do something
});

regards,
Ulf
_______________________________________________
Interest mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to