Qyoto
4.0.5
Qyoto is a C# language binding for Qt
|
The QWheelEvent class contains parameters that describe a wheel event. More...
Public Member Functions | |
QWheelEvent (QWheelEvent copy) | |
| |
QWheelEvent (QPoint pos, QPoint globalPos, int delta, Qt.MouseButton buttons, Qt.KeyboardModifier modifiers, Qt.Orientation orient=Qt.Orientation.Vertical) | |
| |
QWheelEvent (QPoint pos, int delta, Qt.MouseButton buttons, Qt.KeyboardModifier modifiers, Qt.Orientation orient=Qt.Orientation.Vertical) | |
| |
override void | CreateProxy () |
new Qt.MouseButton | Buttons () |
| |
new int | Delta () |
| |
new QPoint | GlobalPos () |
| |
new int | GlobalX () |
| |
new int | GlobalY () |
| |
new Qt.Orientation | Orientation () |
| |
new QPoint | Pos () |
| |
new int | X () |
| |
new int | Y () |
| |
new void | Dispose () |
Public Member Functions inherited from QtGui.QInputEvent | |
QInputEvent (QInputEvent copy) | |
QInputEvent (QEvent.Type type, Qt.KeyboardModifier modifiers=Qt.KeyboardModifier.NoModifier) | |
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 | |
QWheelEvent (System.Type dummy) | |
Protected Member Functions inherited from QtGui.QInputEvent | |
QInputEvent (System.Type dummy) | |
Protected Member Functions inherited from QtCore.QEvent | |
QEvent (System.Type dummy) | |
Properties | |
new int | D [get, set] |
new QPoint | G [get, set] |
new Qt.MouseButton | MouseState [get, set] |
new Qt.Orientation | O [get, set] |
new QPoint | P [get, set] |
Properties inherited from QtGui.QInputEvent | |
new Qt.KeyboardModifier | Modifiers [get, set] |
| |
new Qt.KeyboardModifier | ModState [get, set] |
Properties inherited from QtCore.QEvent | |
virtual System.IntPtr | SmokeObject [get, set] |
new ushort | T [get, set] |
static new QMetaObject | StaticMetaObject [get] |
The QWheelEvent class contains parameters that describe a wheel event.
Wheel events are sent to the widget under the mouse cursor, but 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 cursor's 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 ignore() if you do not handle the wheel event; this ensures that it will be sent to the parent widget.
The QWidget::setEnabled() function can be used to enable or disable mouse and keyboard events for a widget.
The event handler QWidget::wheelEvent() receives wheel events.
See also QMouseEvent and QWidget::grabMouse().
|
protected |
QtGui.QWheelEvent.QWheelEvent | ( | QWheelEvent | copy | ) |
Constructs a wheel event object.
The position, pos, is the location of the mouse cursor within the widget. The globalPos() is initialized to QCursor::pos() which is usually, but not always, correct. Use the other constructor if you need to specify the global position explicitly.
The buttons describe the state of the mouse buttons at the time of the event, delta contains the rotation distance, modifiers holds the keyboard modifier flags at the time of the event, and orient holds the wheel's orientation.
See also pos(), delta(), and state().
QtGui.QWheelEvent.QWheelEvent | ( | QPoint | pos, |
QPoint | globalPos, | ||
int | delta, | ||
Qt.MouseButton | buttons, | ||
Qt.KeyboardModifier | modifiers, | ||
Qt.Orientation | orient = Qt.Orientation.Vertical |
||
) |
Constructs a wheel event object.
The position, pos, is the location of the mouse cursor within the widget. The globalPos() is initialized to QCursor::pos() which is usually, but not always, correct. Use the other constructor if you need to specify the global position explicitly.
The buttons describe the state of the mouse buttons at the time of the event, delta contains the rotation distance, modifiers holds the keyboard modifier flags at the time of the event, and orient holds the wheel's orientation.
See also pos(), delta(), and state().
QtGui.QWheelEvent.QWheelEvent | ( | QPoint | pos, |
int | delta, | ||
Qt.MouseButton | buttons, | ||
Qt.KeyboardModifier | modifiers, | ||
Qt.Orientation | orient = Qt.Orientation.Vertical |
||
) |
Constructs a wheel event object.
The position, pos, is the location of the mouse cursor within the widget. The globalPos() is initialized to QCursor::pos() which is usually, but not always, correct. Use the other constructor if you need to specify the global position explicitly.
The buttons describe the state of the mouse buttons at the time of the event, delta contains the rotation distance, modifiers holds the keyboard modifier flags at the time of the event, and orient holds the wheel's orientation.
See also pos(), delta(), and state().
new Qt.MouseButton QtGui.QWheelEvent.Buttons | ( | ) |
Returns the mouse state when the event occurred.
|
virtual |
Reimplemented from QtGui.QInputEvent.
new int QtGui.QWheelEvent.Delta | ( | ) |
Returns the distance that the wheel is rotated, in eighths of a degree. 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.
Most mouse types work in steps of 15 degrees, in which case the delta value is a multiple of 120; i.e., 120 units * 1/8 = 15 degrees.
However, some mice have finer-resolution wheels and send delta values that are less than 120 units (less than 15 degrees). To support this possibility, you can either cumulatively add the delta values from events until the value of 120 is reached, then scroll the widget, or you can partially scroll the widget in response to each wheel event.
Example:
void MyWidget::wheelEvent(QWheelEvent *event)
{
int numDegrees = event->delta() / 8;
int numSteps = numDegrees / 15;
if (event->orientation() == Qt::Horizontal) {
scrollHorizontally(numSteps);
} else {
scrollVertically(numSteps);
}
event->accept();
}
new void QtGui.QWheelEvent.Dispose | ( | ) |
new QPoint QtGui.QWheelEvent.GlobalPos | ( | ) |
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 cursor position returned by QCursor::pos().
See also globalX() and globalY().
new int QtGui.QWheelEvent.GlobalX | ( | ) |
Returns the global x position of the mouse cursor at the time of the event.
See also globalY() and globalPos().
new int QtGui.QWheelEvent.GlobalY | ( | ) |
Returns the global y position of the mouse cursor at the time of the event.
See also globalX() and globalPos().
new Qt.Orientation QtGui.QWheelEvent.Orientation | ( | ) |
Returns the wheel's orientation.
new QPoint QtGui.QWheelEvent.Pos | ( | ) |
Returns the position of the mouse cursor 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().
new int QtGui.QWheelEvent.X | ( | ) |
Returns the x position of the mouse cursor, relative to the widget that received the event.
See also y() and pos().
new int QtGui.QWheelEvent.Y | ( | ) |
Returns the y position of the mouse cursor, relative to the widget that received the event.
See also x() and pos().
|
getsetprotected |
|
getsetprotected |
|
getsetprotected |
|
getsetprotected |
|
getsetprotected |