Hi Everyone,

I am trying to manage touch events with Qt State Machine Framework.

I can associate a tourch event with:
QEventTransition *releaseTransition = new QEventTransition(button, QEvent::TouchEvent);
releaseTransition->setTargetState(s2);
s3->addTransition(releaseTransition);.

After that I would like to know what is the exact point that generated the touchevent.

Please, could someone help me.