QEnterEvent¶

The QEnterEvent class contains parameters that describe an enter event. More…

Inheritance diagram of PySide2.QtGui.QEnterEvent

Synopsis¶

Functions¶

Detailed Description¶

Enter events occur when the mouse cursor enters a window or a widget.

class PySide2.QtGui.QEnterEvent(localPos, windowPos, screenPos)¶
param localPos:

PySide2.QtCore.QPointF

param screenPos:

PySide2.QtCore.QPointF

param windowPos:

PySide2.QtCore.QPointF

Constructs an enter event object.

The points localPos , windowPos and screenPos specify the mouse cursor’s position relative to the receiving widget or item, window, and screen, respectively.

PySide2.QtGui.QEnterEvent.globalPos()¶
Return type:

PySide2.QtCore.QPoint

Returns the global position of the mouse cursor at the time of the event .

PySide2.QtGui.QEnterEvent.globalX()¶
Return type:

int

Returns the global position on the X-axis of the mouse cursor at the time of the event .

PySide2.QtGui.QEnterEvent.globalY()¶
Return type:

int

Returns the global position on the Y-axis of the mouse cursor at the time of the event .

PySide2.QtGui.QEnterEvent.localPos()¶
Return type:

PySide2.QtCore.QPointF

Returns the mouse cursor’s position relative to the receiving widget.

PySide2.QtGui.QEnterEvent.pos()¶
Return type:

PySide2.QtCore.QPoint

Returns the position of the mouse cursor relative to the receiving widget.

PySide2.QtGui.QEnterEvent.screenPos()¶
Return type:

PySide2.QtCore.QPointF

Returns the position of the mouse cursor relative to the receiving screen.

PySide2.QtGui.QEnterEvent.windowPos()¶
Return type:

PySide2.QtCore.QPointF

Returns the position of the mouse cursor relative to the receiving window.

PySide2.QtGui.QEnterEvent.x()¶
Return type:

int

Returns the x position of the mouse cursor relative to the receiving widget.

PySide2.QtGui.QEnterEvent.y()¶
Return type:

int

Returns the y position of the mouse cursor relative to the receiving widget.