gpt4 book ai didi

c++ - QT 图形场景/ View - 用鼠标四处移动

转载 作者:行者123 更新时间:2023-11-30 03:43:49 25 4
gpt4 key购买 nike

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

  • 每当我按住鼠标的滚动按钮时——我希望在场景中四处移动,查看它的不同部分——就像我使用 slider 一样。它应该类似于任何其他允许放大/缩小图像并在缩放图片周围移动以查看它的不同部分的程序。

不幸的是 - 我什至不知道如何寻找一些基本的东西,因为“移动”和类似的东西指的是四处拖动物体。

编辑 1

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

试过了 - 但它是相反的。

最佳答案

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

因此,要平移(移动)您的 View ,请使用 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();
}
}

关于c++ - QT 图形场景/ View - 用鼠标四处移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35865161/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com