Hello,
Is there a way to activate the mouse move event (mouseMoveEvent(QMouseEvent *event)).
While dragging, I need to know the mouse position.
Merci !
Printable View
Hello,
Is there a way to activate the mouse move event (mouseMoveEvent(QMouseEvent *event)).
While dragging, I need to know the mouse position.
Merci !
While the drag&drop cursor is over your widget, you'll be receiving drag move events: QWidget::dragMoveEvent().
Cheers,
_