I'm trying to give orders to a shape by clicking on it and dragging the mouse to the new position.
The problem is that I'm receiving a MouseDown event immediattely followed by a MouseUp event (which didn't happen) then the MouseMove
events and at the end I receive another MouseUp event.
Important: This happened with the cursormode cmSelection, if I change the cursormode to cmNone, the event sequence is correct ( i.e. MouseDown->MouseMove(...)->MouseUp)
Comments: ** Comment from web user: sleschinski **
The problem is that I'm receiving a MouseDown event immediattely followed by a MouseUp event (which didn't happen) then the MouseMove
events and at the end I receive another MouseUp event.
Important: This happened with the cursormode cmSelection, if I change the cursormode to cmNone, the event sequence is correct ( i.e. MouseDown->MouseMove(...)->MouseUp)
Comments: ** Comment from web user: sleschinski **
I doubt that it will be fixed. The thing is that cmSelection cursor works for both point selection and rectangular selection modes. So MouseDown event for clients is passed from control's MouseUp event, when we are sure that user actually didn't use the rectangle selection. Probably not very logical but worked for us for quite some time.
My suggestion is to use cmNone cursor mode for implementing custom behaviors. Built-in cursor may have their own logic which can't be changed. Also in v4.9.3 cmMoveShapes cursor is added which can probably do the required trick.