本文整理汇总了C++中QtPropertyData::SetEnabled方法的典型用法代码示例。如果您正苦于以下问题:C++ QtPropertyData::SetEnabled方法的具体用法?C++ QtPropertyData::SetEnabled怎么用?C++ QtPropertyData::SetEnabled使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类QtPropertyData
的用法示例。
在下文中一共展示了QtPropertyData::SetEnabled方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: object
QtPropertyDataInspColl::QtPropertyDataInspColl(void *_object, const DAVA::InspColl *_collection, bool autoAddChilds)
: object(_object)
, collection(_collection)
{
if(NULL != collection && collection->Size(object) > 0 && autoAddChilds)
{
int index = 0;
DAVA::MetaInfo *valueType = collection->ItemType();
DAVA::InspColl::Iterator i = collection->Begin(object);
while(NULL != i)
{
if(NULL != valueType->GetIntrospection())
{
void * itemObject = collection->ItemData(i);
const DAVA::InspInfo *itemInfo = valueType->GetIntrospection(itemObject);
if(NULL != itemInfo && NULL != itemObject)
{
QtPropertyData *childData = new QtPropertyDataIntrospection(itemObject, itemInfo);
ChildAdd(QString::number(index), childData);
}
else
{
QString s;
QtPropertyData* childData = new QtPropertyData(s.sprintf("[%p] Pointer", itemObject));
childData->SetEnabled(false);
ChildAdd(QString::number(index), childData);
}
}
else
{
if(!valueType->IsPointer())
{
QtPropertyDataMetaObject *childData = new QtPropertyDataMetaObject(collection->ItemPointer(i), valueType);
ChildAdd(QString::number(index), childData);
}
else
{
QString s;
QtPropertyData* childData = new QtPropertyData(s.sprintf("[%p] Pointer", collection->ItemData(i)));
childData->SetEnabled(false);
if(collection->ItemKeyType() == DAVA::MetaInfo::Instance<DAVA::FastName>())
{
const DAVA::FastName *fname = (const DAVA::FastName *) collection->ItemKeyData(i);
ChildAdd(fname->operator*(), childData);
}
else
{
ChildAdd(QString::number(index), childData);
}
}
}
index++;
i = collection->Next(i);
}
}
SetEnabled(false);
}