赞
踩
首先了解几个QGraphicsItem的函数
QGraphicsScene* QGraphicsItem::scene() 返回item所在的场景Scene
QPointF QGraphicsItem::scenePos() 返回item在场景中的位置
QGraphicsScene的函数
QList<QGraphicsVeiw*> QGraphicsScene::views() 返回Scene所在的view的列表
QGraphicsView的函数
QPointF QGraphicsView::mapToScene(const QPoint &point) const 输入Scene的位置返回全局位置
获得item所在的view,且这个view是活动的
QGraphicsView * view;
foreach(view,this->scene() -> views())
{
if(view-> underMouse()|| view-> hasFocus()) break;
}
//如果只有一个view也可以偷懒,如下
QGraphicsView* view = this->scene()->views.at(0);
转换为全局位置
//获得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);
这样如果item不通过鼠标右键,而通过某个按键调用右键菜单就可以这样,这样右键菜单的位置就可以正确显示了
auto event = new QGraphicsSceneContextEvent();
event->setScreenPos(screen_pos);
this->contextEvent(event);
QPoint QPointF可能有标错的,见谅
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。