Qt3DInput.QWheelEvent¶
The
QWheelEvent
class contains parameters that describe a mouse wheel event. More…

Synopsis¶
Functions¶
def
angleDelta
()def
buttons
()def
isAccepted
()def
modifiers
()def
setAccepted
(accepted)def
type
()def
x
()def
y
()
Detailed Description¶
Mouse wheel events occur when the mouse is rotated.
See also
QKeyEvent
QMouseEvent
QMouseHandler
-
PySide2.Qt3DInput.Qt3DInput.QWheelEvent.
Buttons
¶ Constant
Description
Qt3DInput.QWheelEvent.LeftButton
Qt3DInput.QWheelEvent.RightButton
Qt3DInput.QWheelEvent.MiddleButton
Qt3DInput.QWheelEvent.BackButton
Qt3DInput.QWheelEvent.NoButton
-
PySide2.Qt3DInput.Qt3DInput.QWheelEvent.
Modifiers
¶ Constant
Description
Qt3DInput.QWheelEvent.NoModifier
Qt3DInput.QWheelEvent.ShiftModifier
Qt3DInput.QWheelEvent.ControlModifier
Qt3DInput.QWheelEvent.AltModifier
Qt3DInput.QWheelEvent.MetaModifier
Qt3DInput.QWheelEvent.KeypadModifier
-
PySide2.Qt3DInput.Qt3DInput.QWheelEvent.
angleDelta
()¶ - Return type
QPoint
Returns the distance that the wheel is rotated, in eighths of a degree. A positive value indicates that the wheel was rotated forward (away from the user), a negative value indicates the wheel was rotated backward (toward the user).
- Return type
int
Returns a bitfield to be used to check for mouse buttons that may be accompanying the wheel event.
-
PySide2.Qt3DInput.Qt3DInput.QWheelEvent.
isAccepted
()¶ - Return type
bool
Returns whether the event was accepted.
-
PySide2.Qt3DInput.Qt3DInput.QWheelEvent.
modifiers
()¶ - Return type
Returns the keyboard modifiers that may be accompanying the wheel event.
-
PySide2.Qt3DInput.Qt3DInput.QWheelEvent.
setAccepted
(accepted)¶ - Parameters
accepted –
bool
Sets the event as accepted if
accepted
is true.Note
When an event is accepted, it will prevent further propagation to other listeners.
See also
isAccepted()
-
PySide2.Qt3DInput.Qt3DInput.QWheelEvent.
type
()¶ - Return type
Type
Returns the
Type
of the event.
-
PySide2.Qt3DInput.Qt3DInput.QWheelEvent.
x
()¶ - Return type
int
Returns the x position of the mouse event.
-
PySide2.Qt3DInput.Qt3DInput.QWheelEvent.
y
()¶ - Return type
int
Returns the x position of the mouse event.