PDA

View Full Version : QTouchEvent and State Machine Framework



acano
30th September 2010, 07:28
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.

tbscope
30th September 2010, 07:58
The actual touch event contains a list of points.