作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了自己的类( View 和场景)来显示我添加到其中的图像和对象,甚至在我的 View 中实现了放大/缩小功能,但现在我必须添加新功能而且我什至不知道如何开始寻找它。
不幸的是 - 我什至不知道如何寻找一些基本的东西,因为“移动”和类似的东西指的是四处拖动物体。
编辑 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/
我是一名优秀的程序员,十分优秀!