QMouseEvent

PyQt5.QtGui.QMouseEvent

Inherits from QInputEvent.

Description

The QMouseEvent class contains parameters that describe a mouse event.

Mouse events occur when a mouse button is pressed or released inside a widget, or when the mouse cursor is moved.

Mouse move events will occur only when a mouse button is pressed down, unless mouse tracking has been enabled with setMouseTracking().

Qt automatically grabs the mouse when a mouse button is pressed inside a widget; the widget will continue to receive mouse events until the last mouse button is released.

A mouse event contains a special accept flag that indicates whether the receiver wants the event. You should call ignore() if the mouse event is not handled by your widget. A mouse event is propagated up the parent widget chain until a widget accepts it with accept(), or an event filter consumes it.

Note: If a mouse event is propagated to a QWidget for which WA_NoMousePropagation has been set, that mouse event will not be propagated further up the parent widget chain.

The state of the keyboard modifier keys can be found by calling the modifiers() function, inherited from QInputEvent.

The functions pos(), x(), and y() give the cursor position relative to the widget that receives the mouse event. If you move the widget as a result of the mouse event, use the global position returned by globalPos() to avoid a shaking motion.

The setEnabled() function can be used to enable or disable mouse and keyboard events for a widget.

Reimplement the QWidget event handlers, mousePressEvent(), mouseReleaseEvent(), mouseDoubleClickEvent(), and mouseMoveEvent() to receive mouse events in your own widgets.

Methods

__init__(QMouseEvent)

TODO


__init__(Type, Union[QPointF, QPoint], MouseButton, Union[MouseButtons, MouseButton], Union[KeyboardModifiers, KeyboardModifier])

TODO


__init__(Type, Union[QPointF, QPoint], Union[QPointF, QPoint], MouseButton, Union[MouseButtons, MouseButton], Union[KeyboardModifiers, KeyboardModifier])

TODO


__init__(Type, Union[QPointF, QPoint], Union[QPointF, QPoint], Union[QPointF, QPoint], MouseButton, Union[MouseButtons, MouseButton], Union[KeyboardModifiers, KeyboardModifier])

TODO


__init__(Type, Union[QPointF, QPoint], Union[QPointF, QPoint], Union[QPointF, QPoint], MouseButton, Union[MouseButtons, MouseButton], Union[KeyboardModifiers, KeyboardModifier], MouseEventSource)

TODO


button() → MouseButton

TODO


buttons() → MouseButtons

TODO


flags() → MouseEventFlags

TODO


globalPos() → QPoint

TODO


globalX() → int

TODO


globalY() → int

TODO


localPos() → QPointF

TODO


pos() → QPoint

TODO


screenPos() → QPointF

TODO


source() → MouseEventSource

TODO


windowPos() → QPointF

TODO


x() → int

TODO


y() → int

TODO