我想制作QGraphicsScene
并在QGraphicsView
中显示。我想用鼠标中键滚动场景,用左键选择橡皮筋。但我不知道如何只通过鼠标左键选择橡皮筋。
这是我的代码:
# -*- coding: utf-8 -*-
import os, sys
from PyQt5 import QtWidgets, QtCore, QtGui, QtSvg
class MegaSceneView(QtWidgets.QGraphicsView):
def __init__(self, parent=None):
super(MegaSceneView, self).__init__(parent)
self._scale_factor = 1.0
self._scale_by = 1.2
self.setAcceptDrops(True)
self.setRenderHint(QtGui.QPainter.Antialiasing)
self.setMouseTracking(True)
self.setRubberBandSelectionMode(QtCore.Qt.IntersectsItemShape)
self.setDragMode(QtWidgets.QGraphicsView.RubberBandDrag)
self._prev_mouse_scene_pos = None
def mousePressEvent(self, event):
if (event.buttons() & QtCore.Qt.MidButton) != QtCore.Qt.NoButton:
self._prev_mouse_scene_pos = (event.pos())
super(MegaSceneView, self).mousePressEvent(event)
def mouseReleaseEvent(self, event):
super(MegaSceneView, self).mouseReleaseEvent(event)
self._prev_mouse_scene_pos = None
def mouseMoveEvent(self, event):
super(MegaSceneView, self).mouseMoveEvent(event)
if (event.buttons() & QtCore.Qt.MidButton) != QtCore.Qt.NoButton:
cur_mouse_pos = (event.pos())
if self._prev_mouse_scene_pos is not None:
delta_x = cur_mouse_pos.x() - self._prev_mouse_scene_pos.x()
delta_y = cur_mouse_pos.y() - self._prev_mouse_scene_pos.y()
self.horizontalScrollBar().setValue(self.horizontalScrollBar().value() - delta_x)
self.verticalScrollBar().setValue(self.verticalScrollBar().value() - delta_y)
self._prev_mouse_scene_pos = (event.pos())
if __name__ == "__main__":
app = QtWidgets.QApplication(sys.argv)
mega_view = MegaSceneView()
mega_scene = QtWidgets.QGraphicsScene(-500, -500, 1000, 1000)
# mega_scene = QtWidgets.QGraphicsScene()
rect_item_1 = QtWidgets.QGraphicsRectItem(-30, -20, 60, 40)
mega_scene.addItem(rect_item_1)
rect_item_2 = QtWidgets.QGraphicsRectItem(-20, -30, 40, 60)
mega_scene.addItem(rect_item_2)
rect_item_2.setPos(300, 200)
mega_view.setScene(mega_scene)
mega_view.show()
sys.exit(app.exec_())
我应该添加什么才能使橡皮筋仅通过左键显示?
答案 0 :(得分:2)
您可以在视图类的mousePressEvent
和mouseReleaseEvent
函数中设置拖动模式,因此默认情况下它保持在RubberBandDrag
,但切换到NoDrag
模式按住鼠标中键时。
就像这样-c ++,但是在所有语言中都一样-:
void YourViewClass::mousePressEvent(QMouseEvent* event) {
if (event->buttons() == Qt::MiddleButton)
setDragMode(QGraphicsView::NoDrag);
}
void YourViewClass::mouseReleaseEvent(QMouseEvent* event) {
if (event->button() == Qt::MiddleButton)
setDragMode(QGraphicsView::RubberBandDrag);
}
答案 1 :(得分:0)
没有内置的方法可以做到这一点。您需要为图形视图创建mousePressEvent
,mouseMoveEvent
和mouseReleaseEvent
的子类,并自行创建可见的橡皮筋。 (QRubberBand
适用于此。)当用户释放鼠标时,您需要将橡皮筋范围转换为场景坐标并调用QGraphicsScene::setSelectionArea
。