Hello,
I want to use gesture framework, but at the begining I have some problems.
I have QGraphicsView and QGraphicsScene
view->addScene(myScene);
At the myScene threre are few icons(QPixmapItem) . I try recognize QSwipeGesture( click somewhere on gaphicsScene and drag) and after recognizon start some animation (QtKinetic)
I have done:
Qt Code:
  1. view->grabGesture(Qt::SwipeGesture);
To copy to clipboard, switch view to plain text mode 
I had hoepe that event would propagate to QGraphicsScene and i have done in myScene
Qt Code:
  1. virtual bool myScene::event(QEvent *event)
  2. {
  3. if (event->type() == QEvent::Gesture)
  4. do something
  5. return QGraphicsScene::event(event);
  6. }
To copy to clipboard, switch view to plain text mode 
unfortunaltely program does not go to line "do something".
What I do wrong??