当前位置:   article > 正文

Qt 如果获取QGraphicsItem在屏幕上的位置,在QGraphicsItem中获取全局位置,转换为screenPos_maptoscene scenepos

maptoscene scenepos

首先了解几个QGraphicsItem的函数

QGraphicsScene* QGraphicsItem::scene() 返回item所在的场景Scene
QPointF QGraphicsItem::scenePos() 返回item在场景中的位置
  • 1
  • 2

QGraphicsScene的函数

QList<QGraphicsVeiw*> QGraphicsScene::views() 返回Scene所在的view的列表
  • 1

QGraphicsView的函数

QPointF QGraphicsView::mapToScene(const QPoint &point) const 输入Scene的位置返回全局位置
  • 1

获得item所在的view,且这个view是活动的

 QGraphicsView * view; 
 foreach(view,this->scene() -> views())
 {
 	if(view-> underMouse()|| view-> hasFocus()) break;
} 
//如果只有一个view也可以偷懒,如下
QGraphicsView* view = this->scene()->views.at(0);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

转换为全局位置

//获得item在scene中的逻辑位置
QPointF scene_pos = this->scenePos();
//或者找到item的中心点在scene中位置
QPointF scene_pos = this->scenePos() + boundingReact().center();
//转换为view中的位置
QPointF view_pos = view->mapFromScene(scene_pos);
//转换为屏幕上的位置
QPoint screen_pos = view->mapToGlobal(view_pos);
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

这样如果item不通过鼠标右键,而通过某个按键调用右键菜单就可以这样,这样右键菜单的位置就可以正确显示了

auto event = new QGraphicsSceneContextEvent();
event->setScreenPos(screen_pos);
this->contextEvent(event);
  • 1
  • 2
  • 3

QPoint QPointF可能有标错的,见谅

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/91675
推荐阅读
相关标签
  

闽ICP备14008679号