本文整理汇总了C++中FArrangedChildren::Remove方法的典型用法代码示例。如果您正苦于以下问题:C++ FArrangedChildren::Remove方法的具体用法?C++ FArrangedChildren::Remove怎么用?C++ FArrangedChildren::Remove使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FArrangedChildren
的用法示例。
在下文中一共展示了FArrangedChildren::Remove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: OnArrangeChildren
void SClippingHorizontalBox::OnArrangeChildren( const FGeometry& AllottedGeometry, FArrangedChildren& ArrangedChildren ) const
{
// If WrapButton hasn't been initialized, that means AddWrapButton() hasn't
// been called and this method isn't going to behave properly
check(WrapButton.IsValid());
SHorizontalBox::OnArrangeChildren(AllottedGeometry, ArrangedChildren);
// Remove children that are clipped by the allotted geometry
const int32 NumChildren = ArrangedChildren.Num();
int32 IndexClippedAt = NumChildren;
for (int32 ChildIdx = NumChildren - 2; ChildIdx >= 0; --ChildIdx)
{
const FArrangedWidget& CurWidget = ArrangedChildren[ChildIdx];
if (FMath::TruncToInt(CurWidget.Geometry.AbsolutePosition.X + CurWidget.Geometry.Size.X * CurWidget.Geometry.Scale) > FMath::TruncToInt(AllottedGeometry.AbsolutePosition.X + AllottedGeometry.Size.X * CurWidget.Geometry.Scale))
{
ArrangedChildren.Remove(ChildIdx);
IndexClippedAt = ChildIdx;
}
}
if (IndexClippedAt == NumChildren)
{
// None of the children are being clipped, so remove the wrap button
ArrangedChildren.Remove(ArrangedChildren.Num() - 1);
}
else
{
// Right align the wrap button
FArrangedWidget& ArrangedButton = ArrangedChildren[ArrangedChildren.Num() - 1];
ArrangedButton.Geometry = AllottedGeometry.MakeChild(ArrangedButton.Geometry.Size, FSlateLayoutTransform(AllottedGeometry.Size - ArrangedButton.Geometry.Size));
const int32 WrapButtonXPosition = FMath::TruncToInt(ArrangedButton.Geometry.AbsolutePosition.X);
// Further remove any children that the wrap button overlaps with
for (int32 ChildIdx = IndexClippedAt - 1; ChildIdx >= 0; --ChildIdx)
{
const FArrangedWidget& CurWidget = ArrangedChildren[ChildIdx];
if (FMath::TruncToInt(CurWidget.Geometry.AbsolutePosition.X + CurWidget.Geometry.Size.X * CurWidget.Geometry.Scale) > WrapButtonXPosition)
{
ArrangedChildren.Remove(ChildIdx);
}
}
}
}