QSinglePointEvent#

A base class for pointer events containing a single point, such as mouse events. More

Inheritance diagram of PySide6.QtGui.QSinglePointEvent

Inherited by: QWheelEvent, QTabletEvent, QNativeGestureEvent, QMouseEvent, QHoverEvent, QEnterEvent

Synopsis#

Properties#

Functions#

Note

This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE

Detailed Description#

class PySide6.QtGui.QSinglePointEvent(type, dev, point, button, buttons, modifiers, source)#

PySide6.QtGui.QSinglePointEvent(type, dev, localPos, scenePos, globalPos, button, buttons, modifiers[, source=Qt.MouseEventNotSynthesized])

PySide6.QtGui.QSinglePointEvent(arg__1)

Parameters:

Note

Properties can be used directly when from __feature__ import true_property is used or via accessor functions otherwise.

property PᅟySide6.QtGui.QSinglePointEvent.exclusivePointGrabber: PySide6.QtCore.QObject#

This property holds the object that will receive future updates.

The exclusive grabber is an object that has chosen to receive all future update events and the release event containing the same point that this event carries.

Setting the exclusivePointGrabber property is a convenience equivalent to:

setExclusiveGrabber(points().first(), exclusiveGrabber);
Access functions:
PySide6.QtGui.QSinglePointEvent.button()#
Return type:

MouseButton

Returns the button that caused the event.

The returned value is always Qt::NoButton for mouse move events, as well as TabletMove, TabletEnterProximity, and TabletLeaveProximity events.

See also

buttons()

PySide6.QtGui.QSinglePointEvent.buttons()#
Return type:

Combination of Qt.MouseButton

Returns the button state when the event was generated.

The button state is a combination of Qt::LeftButton, Qt::RightButton, and Qt::MiddleButton using the OR operator.

For mouse move or TabletMove events, this is all buttons that are pressed down.

For mouse press, double click, or TabletPress events, this includes the button that caused the event.

For mouse release or TabletRelease events, this excludes the button that caused the event.

See also

button()

PySide6.QtGui.QSinglePointEvent.exclusivePointGrabber()#
Return type:

PySide6.QtCore.QObject

Getter of property exclusivePointGrabber .

PySide6.QtGui.QSinglePointEvent.globalPosition()#
Return type:

PySide6.QtCore.QPointF

Returns the position of the point in this event on the screen or virtual desktop.

Note

The global position of a mouse pointer is recorded at the time of the event. This is important on asynchronous window systems such as X11; whenever you move your widgets around in response to mouse events, globalPosition() can differ a lot from the current cursor position returned by pos() .

See also

position()

PySide6.QtGui.QSinglePointEvent.position()#
Return type:

PySide6.QtCore.QPointF

Returns the position of the point in this event, relative to the widget or item that received the event.

If you move your widgets around in response to mouse events, use globalPosition() instead.

See also

globalPosition()

PySide6.QtGui.QSinglePointEvent.scenePosition()#
Return type:

PySide6.QtCore.QPointF

Returns the position of the point in this event, relative to the window or scene.

See also

scenePosition

PySide6.QtGui.QSinglePointEvent.setExclusivePointGrabber(exclusiveGrabber)#
Parameters:

exclusiveGrabberPySide6.QtCore.QObject

Setter of property exclusivePointGrabber .