其他分享
首页 > 其他分享> > Qt QGraphicsItem信号连接有关问题

Qt QGraphicsItem信号连接有关问题

作者:互联网

QGraphicsItem信号连接问题
由于QGraphicsItem没有继承QObject类,所以不能在它的继承类中使用信号槽机制。我写了个继承类,继承自QGraphicsItem和QObject,想要使用信号槽机制,但是会出错。请问怎样做才能使QGraphicsItem的子类使用信号槽机制呢?

QGraphicsItem 信号槽机制   ------解决方案--------------------
1. class CMyItem : public QObject, public QGraphicsPolygonItem
QObject要在第一位

2. class CMyItem : public QGraphicsObject

标签:机制,Qt,继承,连接,QObject,信号,QGraphicsItem,public
来源: https://www.cnblogs.com/ybqjymy/p/13521590.html