本文整理汇总了C++中PropertyNameList::empty方法的典型用法代码示例。如果您正苦于以下问题:C++ PropertyNameList::empty方法的具体用法?C++ PropertyNameList::empty怎么用?C++ PropertyNameList::empty使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PropertyNameList
的用法示例。
在下文中一共展示了PropertyNameList::empty方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: DirtyProperties
// Sets a list of properties as dirty.
void ElementStyle::DirtyProperties(const PropertyNameList& properties)
{
if (properties.empty())
return;
PropertyNameList inherited_properties;
for (PropertyNameList::const_iterator i = properties.begin(); i != properties.end(); ++i)
{
// If this property is an inherited property, then push it into the list to be passed onto our children.
const PropertyDefinition* property = StyleSheetSpecification::GetProperty(*i);
if (property != NULL &&
property->IsInherited())
inherited_properties.insert(*i);
}
// Pass the list of those properties that are inherited onto our children.
if (!inherited_properties.empty())
{
for (int i = 0; i < element->GetNumChildren(true); i++)
element->GetChild(i)->GetStyle()->DirtyInheritedProperties(inherited_properties);
}
// And send the event.
element->OnPropertyChange(properties);
}
示例2: DirtyProperties
// Sets a list of properties as dirty.
void ElementStyle::DirtyProperties(const PropertyNameList& properties, bool clear_em_properties)
{
if (properties.empty())
return;
bool all_inherited_dirty =
StyleSheetSpecification::GetRegisteredProperties() == properties ||
StyleSheetSpecification::GetRegisteredInheritedProperties() == properties;
if (all_inherited_dirty)
{
const PropertyNameList &all_inherited_properties = StyleSheetSpecification::GetRegisteredInheritedProperties();
for (int i = 0; i < element->GetNumChildren(true); i++)
element->GetChild(i)->GetStyle()->DirtyInheritedProperties(all_inherited_properties);
// Clear all cached properties.
cache->Clear();
}
else
{
PropertyNameList inherited_properties;
for (PropertyNameList::const_iterator i = properties.begin(); i != properties.end(); ++i)
{
// If this property is an inherited property, then push it into the list to be passed onto our children.
const PropertyDefinition* property = StyleSheetSpecification::GetProperty(*i);
if (property != NULL &&
property->IsInherited())
inherited_properties.insert(*i);
}
// Pass the list of those properties that are inherited onto our children.
if (!inherited_properties.empty())
{
for (int i = 0; i < element->GetNumChildren(true); i++)
element->GetChild(i)->GetStyle()->DirtyInheritedProperties(inherited_properties);
}
// Clear cached properties.
cache->Clear();
}
// clear the list of EM-properties, we will refill it in DirtyEmProperties
if (clear_em_properties && em_properties != NULL)
{
delete em_properties;
em_properties = NULL;
}
// And send the event.
element->OnPropertyChange(properties);
}