• PySide 模块
  • PySide.QtGui
  • 内容表

    上一话题

    QTabletEvent

    下一话题

    QMouseEvent

    QWheelEvent

    概要

    函数

    详细描述

    PySide.QtGui.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 PySide.QtGui.QWheelEvent.delta() . The functions PySide.QtGui.QWheelEvent.pos() and PySide.QtGui.QWheelEvent.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 PySide.QtCore.QEvent.ignore() if you do not handle the wheel event; this ensures that it will be sent to the parent widget.

    QWidget.setEnabled() function can be used to enable or disable mouse and keyboard events for a widget.

    事件处理程序 QWidget.wheelEvent() receives wheel events.

    class PySide.QtGui. QWheelEvent ( pos , globalPos , delta , buttons , modifiers [ , orient=Qt.Vertical ] )
    class PySide.QtGui. QWheelEvent ( pos , delta , buttons , modifiers [ , orient=Qt.Vertical ] )
    参数:
    • delta PySide.QtCore.int
    • orient PySide.QtCore.Qt.Orientation
    • globalPos PySide.QtCore.QPoint
    • modifiers PySide.QtCore.Qt.KeyboardModifiers
    • pos PySide.QtCore.QPoint
    • buttons PySide.QtCore.Qt.MouseButtons
    PySide.QtGui.QWheelEvent. buttons ( )
    返回类型: PySide.QtCore.Qt.MouseButtons

    Returns the mouse state when the event occurred.

    PySide.QtGui.QWheelEvent. delta ( )
    返回类型: PySide.QtCore.int

    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.

    范例:

    def wheelEvent(self, event):
        numDegrees = event.delta() / 8
        numSteps = numDegrees / 15
        if event->orientation() == Qt.Horizontal:
            scrollHorizontally(numSteps)
        else:
            scrollVertically(numSteps)
        event.accept()
    										
    PySide.QtGui.QWheelEvent. globalPos ( )
    返回类型: PySide.QtCore.QPoint

    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, PySide.QtGui.QWheelEvent.globalPos() can differ a lot from the current cursor position returned by QCursor.pos() .

    PySide.QtGui.QWheelEvent. globalX ( )
    返回类型: PySide.QtCore.int

    Returns the global x position of the mouse cursor at the time of the event.

    PySide.QtGui.QWheelEvent. globalY ( )
    返回类型: PySide.QtCore.int

    Returns the global y position of the mouse cursor at the time of the event.

    PySide.QtGui.QWheelEvent. orientation ( )
    返回类型: PySide.QtCore.Qt.Orientation

    Returns the wheel's orientation.

    PySide.QtGui.QWheelEvent. pos ( )
    返回类型: PySide.QtCore.QPoint

    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 PySide.QtGui.QWheelEvent.globalPos() instead of this function.

    PySide.QtGui.QWheelEvent. x ( )
    返回类型: PySide.QtCore.int

    Returns the x position of the mouse cursor, relative to the widget that received the event.

    PySide.QtGui.QWheelEvent. y ( )
    返回类型: PySide.QtCore.int

    Returns the y position of the mouse cursor, relative to the widget that received the event.