QT Graphic scene/view - 用鼠标四处移动

QT Graphic scene/view - moving around with mouse

我创建了自己的类(视图和场景)来显示我添加到其中的图像和对象,甚至在我的视图中实现了缩放in/out功能,但现在我必须添加新的功能,我什至不知道如何开始寻找它。

不幸的是 - 我什至不知道如何寻找一些基本的东西,因为 "moving" 和类似的东西指的是拖动对象。

编辑 1

void CustomGraphicView::mouseMoveEvent(QMouseEvent *event)
{
    if(event->buttons() == Qt::MidButton)
    {
        setTransformationAnchor(QGraphicsView::AnchorUnderMouse);
        translate(event->x(),event->y());
    }
}

试过了 - 但它是相反的。

我想您知道如何使用 Qt 处理事件。

因此,要平移(移动)您的视图,请使用 QGraphicsView::translate() 方法。

编辑

使用方法:

void CustomGraphicsView::mousePressEvent(QMouseEvent* event)
{
    if (e->button() == Qt::MiddleButton)
    {
        // Store original position.
        m_originX = event->x();
        m_originY = event->y();
    }
}

void CustomGraphicsView::mouseMoveEvent(QMouseEvent* event)
{
    if (e->buttons() & Qt::MidButton)
    {
        QPointF oldp = mapToScene(m_originX, m_originY);
        QPointF newP = mapToScene(event->pos());
        QPointF translation = newp - oldp;

        translate(translation.x(), translation.y());

        m_originX = event->x();
        m_originY = event->y();
    }
}