如何识别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?

Qt:如何调整 QGraphicsItem 以动态改变大小

如何在 QGraphicsItem 上接收手势事件?

如何仅执行 qgraphicsitem 的 mouseevent ? (忽略 qgraphicsview 的其余 mouseevent)

如何防止子 QGraphicsItem 与父级一起移动?

PySide/PyQT5:如何从 QGraphicsItem 发出信号?