The QWheelEvent class contains parameters that describe a wheel event. More...
#include <qevent.h>
Inherits QEvent.
Wheel events occur when a mouse wheel is turned while the widget has focus. The rotation distance is provided by delta(). If required, both pos() and globalPos() return the mouse pointer location at the time of the event.
A wheel event contains a special accept flag which tells whether the receiver wants the event. You should call QWheelEvent::accept() if you handle the wheel event, otherwise it will be sent to the parent widget as well.
The QWidget::setEnable() function can be used to enable or disable mouse and keyboard events for a widget.
The event handlers QWidget::wheelEvent() receive wheel events.
See also: QMouseEvent and QWidget::grabMouse().
Constructs a wheel event object.
Constructs a wheel event object.
Sets the accept flag of the wheel event object.
Setting the accept parameter indicates that the receiver of the event wants the wheel event. Unwanted wheel events are sent to the parent widget.
The accept flag is set by default.
See also: ignore().
Returns the distance that the wheel is rotated, expressed in multiples or divisions of WHEEL_DELTA, which is set at 120 currently.A positive value indicates that the wheel was rotated forward, away from the user; a negative value indicates that the wheel was rotated backward, toward the user.
The WHEEL_DELTA constant was set to 120 by the wheel mouse vendors to allow building finer-resolution wheels in the future, including perhaps a freely-rotating wheel with no notches. The expectation is that such a device would send more messages per rotation, but with a smaller value in each message.
Returns the global position of the mouse pointer at the time of the event. This is important on asynchronous window systems like X11: Whenever you move your widgets around in response to mouse evens, globalPos() can differ a lot from the current pointer position QCursor::pos().
See also: globalX() and globalY().
Returns the global X position of the mouse pointer at the time of the event
See also: globalY() and globalPos().
Returns the global Y position of the mouse pointer at the time of the event
See also: globalX() and globalPos().
Clears the accept flag parameter of the wheel event object.
Clearing the accept parameter indicates that the event receiver does not want the wheel event. Unwanted wheel events are sent to the parent widget.
The accept flag is set by default.
See also: accept().
Returns TRUE if the receiver of the event handles the wheel event.
Returns the position of the mouse pointer, relative to the widget that received the event.
Returns the keyboard modifier flags.
The returned value is ShiftButton, ControlButton
and AltButton
OR'ed together.
Returns the X position of the mouse pointer, relative to the widget that received the event.
Returns the Y position of the mouse pointer, relative to the widget that received the event.
Search the documentation, FAQ, qt-interest archive and more (uses
www.troll.no):
This file is part of the Qt toolkit, copyright © 1995-99 Troll Tech, all rights reserved.
Copyright © 1999 Troll Tech | Trademarks | Qt version 2.0.2
|