我在主窗口中添加了一个可拖动的红色圆圈。红色圆圈可以移动到主窗口上的任何位置。但我想设置一个允许移动红圈的边界。也许应该使用子窗口来完成?有人知道怎么做吗?我走了这么远:
import sys
from PyQt5.QtWidgets import QApplication, QGraphicsView, QWidget, QGraphicsEllipseItem, QMainWindow, QGroupBox, QGraphicsScene, QHBoxLayout
from PyQt5.QtCore import Qt, QPointF, QRect
class MovingObject(QGraphicsEllipseItem):
def __init__(self, x, y, r):
#de meegegeven waardes gebruiken om beginpositie en grootte ellips te bepalen
super().__init__(0, 0, r, r)
self.setPos(x, y)
self.setBrush(Qt.red)
##mousePressEvent checkt of er wel of niet wordt geklikt
def mousePressEvent(self, event):
pass
##mouseMoveEvent is om de item te kunnen draggen
def mouseMoveEvent(self, event):
orig_cursor_position = event.lastScenePos()
updated_cursor_position = event.scenePos()
orig_position = self.scenePos()
updated_cursor_x = updated_cursor_position.x() - orig_cursor_position.x() + orig_position.x()
updated_cursor_y = updated_cursor_position.y() - orig_cursor_position.y() + orig_position.y()
self.setPos(QPointF(updated_cursor_x, updated_cursor_y))
class GraphicView(QGraphicsView):
def __init__(self):
super().__init__()
self.scene = QGraphicsScene()
self.setScene(self.scene)
self.setSceneRect(0, 0, 60, 60)
#waardes x, y, r waarvan x en y beginpositie van ellips is en r is straal van ellips
self.scene.addItem(MovingObject(0, 0, 40))
class Window(QMainWindow):
def __init__(self):
super().__init__()
self.setGeometry(800, 500, 400, 400)
self.setWindowTitle("MainWindow")
#set GraphicView in Window
self.graphicView = GraphicView()
self.setCentralWidget(self.graphicView)
app = QApplication(sys.argv)
GUI = Window()
GUI.show()
sys.exit(app.exec_())
首先,不需要重新实现鼠标事件来允许使用鼠标移动QGraphicsItem,因为设置ItemIsMovable
标志就足够了。
一旦设置了标志,所需要的就是过滤几何图形更改并对其作出反应。
这是通过设置ItemSendsGeometryChanges
标志并重新实现itemChange()
功能来实现的。使用ItemPositionChange
更改,您可以接收">未来";应用之前的位置,并最终更改(并返回(接收到的值;返回的值是将在移动期间应用的实际最终位置。
剩下的就是提供一个参考来检查它。
在下面的例子中,我将场景矩形(而不是像您那样设置视图的矩形(设置为更大的边距,并为项目设置这些边距;显然,您可以为此设置任何QRectF
。
我还实现了drawBackground()
函数,以显示用作限制的场景矩形。
class MovingObject(QGraphicsEllipseItem):
def __init__(self, x, y, r):
super().__init__(0, 0, r, r)
self.setPos(x, y)
self.setBrush(Qt.red)
self.setFlag(self.ItemIsMovable, True)
self.setFlag(self.ItemSendsGeometryChanges, True)
self.margins = None
def setMargins(self, margins):
self.margins = margins
def itemChange(self, change, value):
if change == self.ItemPositionChange and self.margins:
newRect = self.boundingRect().translated(value)
if newRect.x() < self.margins.x():
# beyond left margin, reset
value.setX(self.margins.x())
elif newRect.right() >self.margins.right():
# beyond right margin
value.setX(self.margins.right() - newRect.width())
if newRect.y() < self.margins.y():
# beyond top margin
value.setY(self.margins.y())
elif newRect.bottom() >self.margins.bottom():
# beyond bottom margin
value.setY(self.margins.bottom() - newRect.height())
return super().itemChange(change, value)
class GraphicView(QGraphicsView):
def __init__(self):
super().__init__()
self.scene = QGraphicsScene()
self.setScene(self.scene)
self.scene.setSceneRect(0, 0, 120, 120)
self.movingObject = MovingObject(0, 0, 40)
self.scene.addItem(self.movingObject)
self.movingObject.setMargins(self.scene.sceneRect())
def drawBackground(self, painter, rect):
painter.drawRect(self.sceneRect())
请注意,图形视图框架是强大的,因为它很难真正了解和理解。考虑到你要问的问题("也许应该用子窗口来完成?"(,很明显,你仍然需要了解它是如何工作的,因为使用子窗口是一件完全不同的事情
我强烈建议您仔细阅读它的文档以及与QGraphicsItem相关的所有(函数和属性(,QGraphicsIItem是所有图形项的基类。
不应覆盖现有属性;scene()
是QGraphicsView的基本属性,因此您可以选择另一个名称作为实例属性(self.myScene = QGraphicsScene()
(,也可以只使用局部变量(scene = QGraphicsScene()
(并始终在__init__
之外使用self.scene()