QEnterEvent#
The QEnterEvent class contains parameters that describe an enter event. More…
Synopsis#
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#
Enter events occur when the mouse cursor enters a window or a widget.
- class PySide6.QtGui.QEnterEvent(arg__1)#
PySide6.QtGui.QEnterEvent(localPos, scenePos, globalPos[, device=QPointingDevice.primaryPointingDevice()])
- Parameters:
arg__1 –
PySide6.QtGui.QEnterEventscenePos –
PySide6.QtCore.QPointFglobalPos –
PySide6.QtCore.QPointFdevice –
PySide6.QtGui.QPointingDevicelocalPos –
PySide6.QtCore.QPointF
Constructs an enter event object originating from device.
The points localPos, scenePos and globalPos specify the mouse cursor’s position relative to the receiving widget or item, window, and screen or desktop, respectively.
- PySide6.QtGui.QEnterEvent.globalPos()#
- Return type:
Note
This function is deprecated.
Use globalPosition() instead.
Returns the global position of the mouse cursor at the time of the event.
- PySide6.QtGui.QEnterEvent.globalX()#
- Return type:
int
Note
This function is deprecated.
Use globalPosition() . x() instead.
Returns the global position on the X-axis of the mouse cursor at the time of the event.
- PySide6.QtGui.QEnterEvent.globalY()#
- Return type:
int
Note
This function is deprecated.
Use globalPosition() . y() instead.
Returns the global position on the Y-axis of the mouse cursor at the time of the event.
- PySide6.QtGui.QEnterEvent.localPos()#
- Return type:
Note
This function is deprecated.
Use position() instead.
Returns the mouse cursor’s position relative to the receiving widget.
- PySide6.QtGui.QEnterEvent.pos()#
- Return type:
Note
This function is deprecated.
Use position() .toPoint() instead.
Returns the position of the mouse cursor relative to the receiving widget.
- PySide6.QtGui.QEnterEvent.screenPos()#
- Return type:
Note
This function is deprecated.
Use globalPosition() instead.
Returns the position of the mouse cursor relative to the receiving screen.
- PySide6.QtGui.QEnterEvent.windowPos()#
- Return type:
Note
This function is deprecated.
Use scenePosition() instead.
Returns the position of the mouse cursor relative to the receiving window.
- PySide6.QtGui.QEnterEvent.x()#
- Return type:
int
Note
This function is deprecated.
Use position() .x() instead.
Returns the x position of the mouse cursor relative to the receiving widget.
- PySide6.QtGui.QEnterEvent.y()#
- Return type:
int
Note
This function is deprecated.
Use position() .y() instead.
Returns the y position of the mouse cursor relative to the receiving widget.