QGraphicsView:如何使橡皮筋选择仅出现在鼠标左键上?

Fel*_*lix 5 qt pyqt qgraphicsview qgraphicsscene qt5

我想制作一个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_())
Run Code Online (Sandbox Code Playgroud)

我应该添加什么才能使橡皮筋仅通过左按钮出现?

Kaa*_*aaf 5

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);
}
Run Code Online (Sandbox Code Playgroud)


gou*_*oug 4

没有内置的方法可以做到这一点。您需要为图形视图子类化mousePressEventmouseMoveEvent、 和mouseReleaseEvent并自行创建可见的橡皮筋。(QRubberBand对此效果很好。)当用户释放鼠标时,您需要将橡皮筋范围转换为场景坐标并调用QGraphicsScene::setSelectionArea.