QHelpEvent

PyQt5.QtGui.QHelpEvent

Inherits from QEvent.

Description

The QHelpEvent class provides an event that is used to request helpful information about a particular point in a widget.

This event can be intercepted in applications to provide tooltips or “What’s This?” help for custom widgets. The type() can be either ToolTip or WhatsThis.

See also

QStatusTipEvent, QWhatsThisClickedEvent, QToolTipQWhatsThis.

Methods

__init__(QHelpEvent)

TODO


__init__(Type, QPoint, QPoint)

Constructs a help event with the given type corresponding to the widget-relative position specified by pos and the global position specified by globalPos.

type must be either ToolTip or WhatsThis.

See also

pos(), globalPos().


globalPos() → QPoint

TODO


globalX() → int

TODO


globalY() → int

TODO


pos() → QPoint

TODO


x() → int

TODO


y() → int

TODO