QGraphicsSceneMouseEvent Class Reference

[ QtGui module]

The QGraphicsSceneMouseEvent class provides mouse events in the graphics view framework. 更多...

继承 QGraphicsSceneEvent .

方法


详细描述

The QGraphicsSceneMouseEvent class provides mouse events in the graphics view framework.

QGraphicsView 接收 QMouseEvent , it translates it to a QGraphicsSceneMouseEvent. The event is then forwarded to the QGraphicsScene associated with the view. If the event is not handled by the scene, the view may use it, e.g., for the DragMode .

In addition to containing the item, scene, and screen coordinates of the event (as pos (), scenePos (),和 screenPos ()), mouse events also contain the coordinates of the previous mouse event received by the view. These can be retrieved with lastPos (), lastScreenPos (), and lastScenePos ().


方法文档编制

Qt.MouseButton QGraphicsSceneMouseEvent.button ( self )

Returns the mouse button (if any) that caused the event.

另请参阅 buttons () 和 modifiers ().

QPointF QGraphicsSceneMouseEvent.buttonDownPos ( self , Qt.MouseButton   button )

Returns the mouse cursor position in item coordinates where the specified button was clicked.

另请参阅 buttonDownScenePos (), buttonDownScreenPos (), and pos ().

QPointF QGraphicsSceneMouseEvent.buttonDownScenePos ( self , Qt.MouseButton   button )

Returns the mouse cursor position in scene coordinates where the specified button was clicked.

另请参阅 buttonDownPos (), buttonDownScreenPos (), and scenePos ().

QPoint QGraphicsSceneMouseEvent.buttonDownScreenPos ( self , Qt.MouseButton   button )

Returns the mouse cursor position in screen coordinates where the specified button was clicked.

另请参阅 screenPos (), buttonDownPos (), and buttonDownScenePos ().

Qt.MouseButtons QGraphicsSceneMouseEvent.buttons ( self )

Returns the combination of mouse buttons that were pressed at the time the event was sent.

另请参阅 button () 和 modifiers ().

QPointF QGraphicsSceneMouseEvent.lastPos ( self )

Returns the last recorded mouse cursor position in item coordinates.

另请参阅 lastScenePos (), lastScreenPos (), and pos ().

QPointF QGraphicsSceneMouseEvent.lastScenePos ( self )

Returns the last recorded mouse cursor position in scene coordinates. The last recorded position is the position of the previous mouse event received by the view that created the 事件。

另请参阅 lastPos (), lastScreenPos (), and scenePos ().

QPoint QGraphicsSceneMouseEvent.lastScreenPos ( self )

Returns the last recorded mouse cursor position in screen coordinates. The last recorded position is the position of the previous mouse event received by the view that created the 事件。

另请参阅 lastPos (), lastScenePos (), and screenPos ().

Qt.KeyboardModifiers QGraphicsSceneMouseEvent.modifiers ( self )

Returns the keyboard modifiers in use at the time the event was sent.

另请参阅 buttons () 和 button ().

QPointF QGraphicsSceneMouseEvent.pos ( self )

Returns the mouse cursor position in item coordinates.

另请参阅 scenePos (), screenPos (),和 lastPos ().

QPointF QGraphicsSceneMouseEvent.scenePos ( self )

Returns the mouse cursor position in scene coordinates.

另请参阅 pos (), screenPos (),和 lastScenePos ().

QPoint QGraphicsSceneMouseEvent.screenPos ( self )

Returns the mouse cursor position in screen coordinates.

另请参阅 pos (), scenePos (),和 lastScreenPos ().