QGraphicsScene::itemAt和QGraphicsView::itemAt无法返回Item

坐标点确定是没问题的,就是item所在的位置

看源码,基于5.9.7
Src\qtbase\src\widgets\graphicsview\qgraphicsview.cpp

QGraphicsItem *QGraphicsView::itemAt(const QPoint &pos) const
{Q_D(const QGraphicsView);if (!d->scene)return 0;const QList<QGraphicsItem *> itemsAtPos = items(pos);return itemsAtPos.isEmpty() ? 0 : itemsAtPos.first();
}QList<QGraphicsItem *> QGraphicsView::items(const QPoint &pos) const
{Q_D(const QGraphicsView);if (!d->scene)return QList<QGraphicsItem *>();// ### Unify these two, and use the items(QPointF) version in// QGraphicsScene instead. The scene items function could use the viewport// transform to map the point to a rect/polygon.if ((d->identityMatrix || d->matrix.type() <= QTransform::TxScale)) {// Use the rect versionQTransform xinv = viewportTransform().inverted();return d->scene->items(xinv.mapRect(QRectF(pos.x(), pos.y(), 1, 1)),Qt::IntersectsItemShape,Qt::DescendingOrder,viewportTransform());}// Use the polygon versionreturn d->scene->items(mapToScene(pos.x(), pos.y(), 1, 1),Qt::IntersectsItemShape,Qt::DescendingOrder,viewportTransform());
}

Src\qtbase\src\widgets\graphicsview\qgraphicsscene.cpp

QList<QGraphicsItem *> QGraphicsScene::items(const QPointF &pos, Qt::ItemSelectionMode mode,Qt::SortOrder order, const QTransform &deviceTransform) const
{Q_D(const QGraphicsScene);return d->index->items(pos, mode, order, deviceTransform);
}

Src\qtbase\src\widgets\graphicsview\qgraphicssceneindex.cpp

QList<QGraphicsItem *> QGraphicsSceneIndex::items(const QPointF &pos, Qt::ItemSelectionMode mode,Qt::SortOrder order, const QTransform &deviceTransform) const
{Q_D(const QGraphicsSceneIndex);QList<QGraphicsItem *> itemList;d->items_helper(QRectF(pos, QSizeF(1, 1)), &QtPrivate::intersect_point, &itemList, deviceTransform, mode, order, &pos);return itemList;
}QList<QGraphicsItem *> QGraphicsSceneIndex::estimateTopLevelItems(const QRectF &rect, Qt::SortOrder order) const
{Q_D(const QGraphicsSceneIndex);Q_UNUSED(rect);QGraphicsScenePrivate *scened = d->scene->d_func();scened->ensureSortedTopLevelItems();if (order == Qt::DescendingOrder) {QList<QGraphicsItem *> sorted;const int numTopLevelItems = scened->topLevelItems.size();sorted.reserve(numTopLevelItems);for (int i = numTopLevelItems - 1; i >= 0; --i)sorted << scened->topLevelItems.at(i);return sorted;}return scened->topLevelItems;
}void QGraphicsSceneIndexPrivate::recursive_items_helper(QGraphicsItem *item, QRectF exposeRect,QGraphicsSceneIndexIntersector intersect,QList<QGraphicsItem *> *items,const QTransform &viewTransform,Qt::ItemSelectionMode mode,qreal parentOpacity, const void *intersectData) const
{
...
}

Src\qtbase\src\widgets\graphicsview\qgraphicssceneindex_p.h

class QGraphicsSceneIndexPrivate : public QObjectPrivate
{Q_DECLARE_PUBLIC(QGraphicsSceneIndex)
public:QGraphicsSceneIndexPrivate(QGraphicsScene *scene);~QGraphicsSceneIndexPrivate();void init();static bool itemCollidesWithPath(const QGraphicsItem *item, const QPainterPath &path, Qt::ItemSelectionMode mode);void recursive_items_helper(QGraphicsItem *item, QRectF exposeRect,QGraphicsSceneIndexIntersector intersect, QList<QGraphicsItem *> *items,const QTransform &viewTransform,Qt::ItemSelectionMode mode, qreal parentOpacity, const void *intersectData) const;inline void items_helper(const QRectF &rect, QGraphicsSceneIndexIntersector intersect,QList<QGraphicsItem *> *items, const QTransform &viewTransform,Qt::ItemSelectionMode mode, Qt::SortOrder order, const void *intersectData) const;QGraphicsScene *scene;
};inline void QGraphicsSceneIndexPrivate::items_helper(const QRectF &rect, QGraphicsSceneIndexIntersector intersect,QList<QGraphicsItem *> *items, const QTransform &viewTransform,Qt::ItemSelectionMode mode, Qt::SortOrder order, const void *intersectData) const
{Q_Q(const QGraphicsSceneIndex);const QList<QGraphicsItem *> tli = q->estimateTopLevelItems(rect, Qt::AscendingOrder);for (int i = 0; i < tli.size(); ++i)recursive_items_helper(tli.at(i), rect, intersect, items, viewTransform, mode, 1.0, intersectData);if (order == Qt::DescendingOrder) {const int n = items->size();for (int i = 0; i < n / 2; ++i)items->swap(i, n - i - 1);}
}

recursive_items_helper里面没有再深入研究了,至此可以知道QGraphicsView和QGraphicsScene的itemAt内部都是QGraphicsScene::items,然后看QGraphicsItem::shape()的说明

Returns the shape of this item as a QPainterPath in local coordinates. The shape is used for many things, including collision detection, hit tests, and for the QGraphicsScene::items() functions.
The outline of a shape can vary depending on the width and style of the pen used when drawing

看QGraphicsItem::boundingRect()的说明

This pure virtual function defines the outer bounds of the item as a rectangle; all painting must be restricted to inside an item’s bounding rect. QGraphicsView uses this to determine whether the item requires redrawing.
Note: For shapes that paint an outline / stroke, it is important to include half the pen width in the bounding rect. It is not necessary to compensate for antialiasing, though.

问题就出在QGraphicsItem::shape(),自己重写的shape里计算结果超出boundingRect了,导致QGraphicsScene::items() 无法正确定位item

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/44045.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

ChatTTS使用

ChatTTS是一款适用于日常对话的生成式语音模型。 克隆仓库 git clone https://github.com/2noise/ChatTTS cd ChatTTS 使用 conda 安装 conda create -n chattts conda activate chattts pip install -r requirements.txt 安装完成后运行 下载模型并运行 python exampl…

Python面试题:请编写一个函数,计算一个字符串中每个字符的出现频率

当然&#xff0c;可以通过使用 Python 编写一个函数来计算字符串中每个字符的出现频率。下面是一个示例函数&#xff1a; def char_frequency(s):"""计算字符串中每个字符的出现频率参数:s (str): 输入字符串返回:dict: 一个字典&#xff0c;其中键是字符&…

java中方法的使用

方法的使用 方法的概念什么是方法方法定义方法的调用过程实参和形参的关系 方法重载为什么需要方法重载方法重载的概念方法签名 递归递归的概念递归过程分析递归练习 方法的概念 什么是方法 方法就是一个代码片段&#xff0c;类似于C语言的函数。 方法存在的意义&#xff1a;…

算法金 | 12 个最佳 Python 代码片段,帮我完成工作自动化,香~

​大侠幸会幸会&#xff0c;我是日更万日 算法金&#xff1b;0 基础跨行转算法&#xff0c;国内外多个算法比赛 Top&#xff1b;放弃 BAT Offer&#xff0c;成功上岸 AI 研究院 Leader&#xff1b; Python是一种多功能的编程语言&#xff0c;它提供了各种功能和库来有效地自动化…

Centos7 被停用!如何利用 Ora2Pg 将 Oracle 迁移至 IvorySQL?

在过去的社区讨论中&#xff0c;想要使用或正在使用IvorySQL的社区用户&#xff0c;经常问到Oracle 如何迁移到 IvorySQL 中&#xff0c;而且近期随着 Centos7 官方已经停止维护&#xff0c;这一变动促使了很多将 Oracle 部署在 Centos7 上的 Oracle 用户&#xff0c;开始准备 …

DangerWind-RPC-framework---二、动态代理

RPC调用需要达到的效果是&#xff0c;远程调用某方法就像本地调用一样&#xff0c;以下列代码为例&#xff1a; Component public class HelloController {RpcReference(version "version1", group "test1")private HelloService helloService;public v…

树莓派采集系统

树莓派&#xff08;Raspberry Pi&#xff09;是一款非常受欢迎的小型单板计算机&#xff0c;因其低成本、低功耗以及丰富的I/O接口&#xff0c;非常适合用来搭建数据采集系统。无论是环境监测、智能家居、工业自动化&#xff0c;还是科学实验&#xff0c;树莓派都能胜任。以下是…

Spring Boot Vue 毕设系统讲解 7

数据仓库 HIVE实战 ConfigurationProperties(prefix "hive") Data public class HiveDruidConfig {private String url;private String user;private String password;private String driverClassName;private int initialSize;private int minIdle;private int ma…

gcc: options: -specs

spec *[spek] n. 投机, 投机事业, 规格, 说明书, 专业人员 【化】 加工单 编译器读取了file之后,处理这个文件,是为了覆盖默认的编译选项,这些选项会被gcc驱动传递给cc1/cc1plus/as/ld等程序。可以设置多个-specs文件,但是会根据顺序来处理,从左到右。 -specs=file Proce…

机器学习笔记:初始化0的问题

1 前言 假设我们有这样的两个模型&#xff1a; 第一个是逻辑回归 第二个是神经网络 他们的损失函数都是交叉熵 sigmoid函数的导数&#xff1a; 他们能不能用0初始化呢&#xff1f; 2 逻辑回归 2.1 求偏导 2.1.1 结论 2.1.2 L对a的偏导 2.1.3 对w1&#xff0c;w2求偏导 w2同…

提升SQL查询效率的终极指南

在面试中&#xff0c;SQL 调优经常是被问及的问题&#xff0c;它可以考察候选人对于 SQL 整体性能优化的理解和掌握程度。一般来说&#xff0c;SQL 调优的步骤可以从以下几个方面入手。 首先&#xff0c;需要准确地定位问题。在面试中&#xff0c;最好能结合具体的业务场景进行…

【组件库】element-plus组件库

文章目录 0. 启动项目1. gc.sh 新增组件2. 本地验证(组件注册的方式)3. 官方文档修改3-1. 左侧菜单3-2 . 配置md文档3-3. 代码问题:文档修改----------------------------------------------4. 将naiveui的split 分割组件【 复制、迁移】到 element-ui-plus组件库4.1 naiveu…

三级_网络技术_11_路由设计技术基础

1.以下协议中不属于内部网关协议的是()。 RIP OSPF BGP IGRP 2.下列关于路由协议的描述中&#xff0c;错误的是()。 RIP协议中&#xff0c;路由器在接收到更新报文后按照最短路径原则更新路由表 RIP协议中&#xff0c;要求路由器周期性的向外发送路由刷新报文 OSPF协议…

linux:命令执行过程【图表】

命令执行过程 步骤描述详细信息1启动终端在CentOS系统上打开终端窗口。可以通过快捷键 Ctrl Alt T 或在图形界面中找到并启动终端应用程序。2输入命令在终端中输入命令&#xff0c;如 ls -l&#xff0c;然后按下回车键。3Shell接收命令Shell&#xff08;如bash&#xff09;…

关于向日葵的P5旁路由

日常生活需要内网穿透的时候越来越多,买了两台P5,p2p 传输 时间延时在 20ms 左右,相当好用 现在的路由器添加静态路由之类的,得开启开发者模式 [ 官方手册中给了,双旁路的用法 (企业级部署)] 如果是个人,可以在常用的服务器上设置静态路由,不用非得在 内网的主要路由器中设置静…

FastReport 指定sql,修改数据源 ( 非DataSet修改 )

FastReport 指定sql&#xff0c;修改数据源&#xff0c;非DataSet修改 介绍报告文件&#xff1a; codetest.frx 文件核心代码&#xff1a;&#xff08;扩展&#xff09;小结一下&#xff1a; 介绍 在FastReport中&#xff0c;经常会遇到需要给 sql 加条件的情况。 &#xff0…

爆破器材期刊

《爆破器材》简介   《爆破器材》自1958年创刊以来&#xff0c;深受广大读者喜爱&#xff0c;是中国兵工学会主办的中央级技术刊物&#xff0c;在国内外公开发行&#xff0c;近几年已发行到10个国家和地区。《爆破器材》杂志被美国著名检索机构《化学文摘》&#xff08;CA&a…

相机光学(二十九)——显色指数(Ra)

显指Ra是衡量光源显色性的数值&#xff0c;表示光源对物体颜色的还原能力。显色性是指光源对物体颜色的呈现能力&#xff0c;即光源照射在同一颜色的物体上时&#xff0c;所呈现的颜色特性。通常用显色指数&#xff08;CRI&#xff09;来表示光源的显色性&#xff0c;而显指Ra是…

c# 基础习题答案 20240709

一、实现一个冒泡排序函数 using System;public class Program {public static void Main(){int[] arr { 22,11,33 };BubbleSort(arr);foreach (var item in arr){Console.Write(item " ");}Console.WriteLine();}// 冒泡排序函数public static void BubbleSort(i…

XTuner 微调 LLM:1.8B, 部署

扫码立刻参与白嫖A100&#xff0c;书生大模型微调部署学习活动。亲测有效 内容来源&#xff1a;Tutorial/xtuner/personal_assistant_document.md at camp2 InternLM/Tutorial GitHubLLM Tutorial. Contribute to InternLM/Tutorial development by creating an account on G…