如何识别QGraphicsItem和QGraphicsTextItem-CSDN论坛
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何识别QGraphicsItem和QGraphicsTextItem-CSDN论坛相关的知识,希望对你有一定的参考价值。
参考技术A 直接用qobject_cast 转化成 QGraphicsTextItem 如果指针为空,那就不是 QGraphicsTextItem都是强制转换指针,判断是否为空。转换方法有qgraphicsitem_cast<QGraphicsTextItem *>
(item),qobject_cast<QGraphicsTextItem *>
(item), item->toGraphicsObject()等。
以上是关于如何识别QGraphicsItem和QGraphicsTextItem-CSDN论坛的主要内容,如果未能解决你的问题,请参考以下文章
如何仅执行 qgraphicsitem 的 mouseevent ? (忽略 qgraphicsview 的其余 mouseevent)