class QGraphicsSceneMoveEvent#

QGraphicsSceneMoveEvent 类提供图形视图框架中小部件移动事件的类。更多信息

Inheritance diagram of PySide6.QtWidgets.QGraphicsSceneMoveEvent

概述#

方法#

注意

本文档可能包含自动从 C++ 转换到 Python 的代码片段。我们始终欢迎对代码片段翻译的贡献。如果您发现翻译问题,也可以通过在 https:/bugreports.qt.io/projects/PYSIDE 上创建工单来告诉我们。

详细描述#

当图形小部件的本地位置改变时,它会立即给自己发送一个 QGraphicsWidgetQGraphicsSceneMoveEvent 事件。这种发送是通过 itemChange() 方法实现的。

它与 QMoveEvent 相似,但其位置,即 oldPos()newPos() ,使用 QPointF 而不是 QPoint。

__init__()#

创建一个 QGraphicsSceneMoveEvent 对象。

newPos()#
返回类型:

QPointF

返回新位置(即当前位置)。

请参阅

oldPos() setPos()

oldPos()#
返回类型:

QPointF

返回旧位置(即小部件移动前的位置)。

请参阅

newPos() setPos()

setNewPos(pos)#
参数:

posQPointF

setOldPos(pos)#
参数:

posQPointF