Hi all,

a transition of a state machine has normally the properties trigger/signal, guard, action... a SignalTransition (http://doc.qt.io/qt-5/qml-qtqml-statemachine-signaltransition.html) of the declarative state machine framework has signal + guard ...

where is the action property?
there is a onTriggered handler -> but how can I use the arguments of the trigger signal in the onTriggered handler?

for example:

signal triggerSignal(int myIntParam);
SignalTransition {
  targetState: state_2
  signal: triggerSignal
  guard: myIntParam < 10
  onTriggered: console.log("myIntParam: "+myIntParam)
}

is this possible? or is there an other way to use signal arguments within onTriggered?

thanks and cheers
Jan
_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to