I am drawing a path on scene using an object of subclass of QGraphicsPathItem. At particular points on this path I want to detect the mouse click and mouse move event.
According to current coordinates of mouse pointer given by mouse move event I want to redraw this path.
In a program that I have attached in previous post I am able to detect the press event but want to check if click is on those particular points. If yes then using move event I want to redraw it. But I am not able to understand how to pass these new coordinates to a function which generates this path.
So How to do that?