class QObjectData {
public:
virtual ~QObjectData() = 0;
QObject *parent;
QObjectList children;
uint isWidget : 1;
uint pendTimer : 1;
uint blockSig : 1;
uint wasDeleted : 1;
uint ownObjectName : 1;
uint sendChildEvents : 1;
uint receiveChildEvents : 1;
uint inEventHandler : 1;
uint inThreadChangeEvent : 1;
uint unused : 23;
int postedEvents;
};
本文转自 006玩命 51CTO博客,原文链接:http://blog.51cto.com/weiyuqingcheng/1952563,如需转载请自行联系原作者