Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions |
The TQWheelEvent class contains parameters that describe a wheel event. More...
#include <ntqevent.h>
Inherits TQEvent.
Wheel events are sent to the widget under the mouse, and if that widget does not handle the event they are sent to the focus widget. The rotation distance is provided by delta(). The functions pos() and globalPos() return the mouse pointer location at the time of the event.
A wheel event contains a special accept flag that indicates whether the receiver wants the event. You should call TQWheelEvent::accept() if you handle the wheel event; otherwise it will be sent to the parent widget.
The TQWidget::setEnable() function can be used to enable or disable mouse and keyboard events for a widget.
The event handler TQWidget::wheelEvent() receives wheel events.
See also TQMouseEvent, TQWidget::grabMouse(), and Event Classes.
Constructs a wheel event object.
The globalPos() is initialized to TQCursor::pos(), i.e. pos, which is usually (but not always) right. Use the other constructor if you need to specify the global position explicitly. delta contains the rotation distance, state holds the keyboard modifier flags at the time of the event and orient holds the wheel's orientation.
See also pos(), delta(), and state().
Constructs a wheel event object. The position when the event occurred is given in pos and globalPos. delta contains the rotation distance, state holds the keyboard modifier flags at the time of the event and orient holds the wheel's orientation.
See also pos(), globalPos(), delta(), and state().
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 the wheel delta, which is currently defined to be 120. A positive value indicates that the wheel was rotated forwards away from the user; a negative value indicates that the wheel was rotated backwards toward the user.
The wheel delta constant was defined to be 120 by 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 such as X11; whenever you move your widgets around in response to mouse events, globalPos() can differ a lot from the current pointer position TQCursor::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; otherwise returns FALSE.
Returns the wheel's orientation.
Returns the position of the mouse pointer, relative to the widget that received the event.
If you move your widgets around in response to mouse events, use globalPos() instead of this function.
See also x(), y(), and globalPos().
Returns the keyboard modifier flags of the event.
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.
This file is part of the TQt toolkit. Copyright © 1995-2007 Trolltech. All Rights Reserved.
Copyright © 2007 Trolltech | Trademarks | TQt 3.3.8
|