Qt:Документация 4.3.2/qhoverevent
Материал из Wiki.crossplatform.ru
Внимание: Актуальная версия перевода документации находится здесь |
__NOTOC__
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции |
Содержание |
QHoverEvent Class Reference
[модуль QtGui ]
The QHoverEvent class contains parameters that describe a mouse event. Далее...
#include <QHoverEvent>
Inherits QEvent.
Открытые функции
- QHoverEvent ( Type type, const QPoint & pos, const QPoint & oldPos )
- const QPoint & oldPos () const
- const QPoint & pos () const
- 6 public functions inherited from QEvent
Дополнительные унаследованные члены
- 1 property inherited from 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 © 2007 Trolltech | Trademarks | Qt 4.3.2
|