Qyoto
4.0.5
Qyoto is a C# language binding for Qt
|
The QHelpEvent class provides an event that is used to request helpful information about a particular point in a widget. More...
Public Member Functions | |
QHelpEvent (QHelpEvent copy) | |
| |
QHelpEvent (QEvent.Type type, QPoint pos, QPoint globalPos) | |
| |
override void | CreateProxy () |
new QPoint | GlobalPos () |
| |
new int | GlobalX () |
| |
new int | GlobalY () |
| |
new QPoint | Pos () |
| |
new int | X () |
| |
new int | Y () |
| |
new void | Dispose () |
Public Member Functions inherited from QtCore.QEvent | |
QEvent (QEvent copy) | |
| |
QEvent (QEvent.Type type) | |
| |
new void | Accept () |
| |
new void | Ignore () |
| |
new bool | IsAccepted () |
new void | SetAccepted (bool accepted) |
new bool | Spontaneous () |
| |
new QEvent.Type | type () |
| |
new void | Dispose () |
Protected Member Functions | |
QHelpEvent (System.Type dummy) | |
Protected Member Functions inherited from QtCore.QEvent | |
QEvent (System.Type dummy) | |
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 QEvent::ToolTip or QEvent::WhatsThis.
See also QToolTip, QWhatsThis, QStatusTipEvent, and QWhatsThisClickedEvent.
|
protected |
QtGui.QHelpEvent.QHelpEvent | ( | QHelpEvent | copy | ) |
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 QEvent::ToolTip or QEvent::WhatsThis.
See also pos() and globalPos().
QtGui.QHelpEvent.QHelpEvent | ( | QEvent.Type | type, |
QPoint | pos, | ||
QPoint | globalPos | ||
) |
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 QEvent::ToolTip or QEvent::WhatsThis.
See also pos() and globalPos().
|
virtual |
Reimplemented from QtCore.QEvent.
new void QtGui.QHelpEvent.Dispose | ( | ) |
new QPoint QtGui.QHelpEvent.GlobalPos | ( | ) |
Returns the mouse cursor position when the event was generated in global coordinates.
See also pos(), globalX(), and globalY().
new int QtGui.QHelpEvent.GlobalX | ( | ) |
Same as globalPos().x().
See also x(), globalY(), and globalPos().
new int QtGui.QHelpEvent.GlobalY | ( | ) |
Same as globalPos().y().
See also y(), globalX(), and globalPos().
new QPoint QtGui.QHelpEvent.Pos | ( | ) |
Returns the mouse cursor position when the event was generated, relative to the widget to which the event is dispatched.
See also globalPos(), x(), and y().
new int QtGui.QHelpEvent.X | ( | ) |
Same as pos().x().
See also y(), pos(), and globalPos().
new int QtGui.QHelpEvent.Y | ( | ) |
Same as pos().y().
See also x(), pos(), and globalPos().