QHoverEvent Class Reference [модуль QtGui]
The QHoverEvent class contains parameters that describe a mouse event. Далее...
#include <QHoverEvent> Унаследован от QEvent.
Открытые функции
- QHoverEvent ( Type type, const QPoint & pos, const QPoint & oldPos )
- const QPoint & oldPos () const
- const QPoint & pos () const
- 6 открытых функций, унаследованных от QEvent
Дополнительные унаследованные члены
- 1 свойство, унаследованное от QEvent
- 1 статический открытый член, унаследованный от QEvent
Подробное описание
The QHoverEvent class contains parameters that describe a mouse event.
Mouse events occur when a mouse cursor is moved into, out of, or within a widget, and if the widget has the Qt::WA_Hover attribute.
The function pos() gives the current cursor position, while oldPos() gives the old mouse position.
Описание функций-членов
QHoverEvent::QHoverEvent ( Type type, const QPoint & pos, const QPoint & oldPos )
Constructs a hover event object.
The type parameter must be QEvent::HoverEnter, QEvent::HoverLeave, or QEvent::HoverMove.
The pos is the current mouse cursor's position relative to the receiving widget, while oldPos is the previous mouse cursor's position relative to the receiving widget.
const QPoint & QHoverEvent::oldPos () const
Returns the previous position of the mouse cursor, relative to the widget that received the event. If there is no previous position, oldPos() will return the same position as pos().
On QEvent::HoverEnter events, this position will always be QPoint(-1, -1).
See also pos().
const QPoint & QHoverEvent::pos () const
Returns the position of the mouse cursor, relative to the widget that received the event.
On QEvent::HoverLeave events, this position will always be QPoint(-1, -1).
See also oldPos().
Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies) |
Торговые марки |
Qt 4.5.3 |
|