Files
UnrealEngineUWP/Engine/Source/Editor/PropertyEditor/Private/DetailPropertyRow.cpp
Ryan Vance 7c51ff94af Merging //UE4/Dev-Main to Dev-VR (//UE4/Dev-VR)
CL 1 of 8
#rb integration

[CL 4748712 by Ryan Vance in Dev-VR branch]
2019-01-17 18:54:05 -05:00

784 lines
26 KiB
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#include "DetailPropertyRow.h"
#include "Modules/ModuleManager.h"
#include "PropertyCustomizationHelpers.h"
#include "UserInterface/PropertyEditor/SResetToDefaultPropertyEditor.h"
#include "DetailItemNode.h"
#include "DetailCategoryGroupNode.h"
#include "ObjectPropertyNode.h"
#include "CustomChildBuilder.h"
#include "StructurePropertyNode.h"
#include "ItemPropertyNode.h"
#include "ObjectPropertyNode.h"
#include "DetailWidgetRow.h"
#include "CategoryPropertyNode.h"
const float FDetailWidgetRow::DefaultValueMinWidth = 125.0f;
const float FDetailWidgetRow::DefaultValueMaxWidth = 125.0f;
#define LOCTEXT_NAMESPACE "DetailPropertyRow"
FDetailPropertyRow::FDetailPropertyRow(TSharedPtr<FPropertyNode> InPropertyNode, TSharedRef<FDetailCategoryImpl> InParentCategory, TSharedPtr<FComplexPropertyNode> InExternalRootNode)
: CustomIsEnabledAttrib( true )
, PropertyNode( InPropertyNode )
, ParentCategory( InParentCategory )
, ExternalRootNode( InExternalRootNode )
, bShowPropertyButtons( true )
, bShowCustomPropertyChildren( true )
, bForceAutoExpansion( false )
, bCachedCustomTypeInterface(false)
{
if( InPropertyNode.IsValid() )
{
TSharedRef<FPropertyNode> PropertyNodeRef = PropertyNode.ToSharedRef();
PropertyHandle = InParentCategory->GetParentLayoutImpl().GetPropertyHandle(PropertyNodeRef);
const TSharedRef<IPropertyUtilities> Utilities = InParentCategory->GetParentLayoutImpl().GetPropertyUtilities();
if (PropertyNode->AsCategoryNode() == nullptr)
{
MakePropertyEditor(PropertyNodeRef, Utilities, PropertyEditor);
}
if (PropertyNode->AsObjectNode() && ExternalRootNode.IsValid())
{
// We are showing an entirely different object inline. Generate a layout for it now.
ExternalObjectLayout = MakeShared<FDetailLayoutData>();
InParentCategory->GetDetailsView()->UpdateSinglePropertyMap(InExternalRootNode, *ExternalObjectLayout, true);
}
if (PropertyNode->GetPropertyKeyNode().IsValid())
{
UStructProperty* KeyStructProp = Cast<UStructProperty>(PropertyNode->GetPropertyKeyNode()->GetProperty());
// Only struct and customized properties require their own nodes. Everything else just needs a property editor.
bool bNeedsKeyPropEditor = KeyStructProp == nullptr && !GetPropertyCustomization(PropertyNode->GetPropertyKeyNode().ToSharedRef(), InParentCategory).IsValid();
if ( bNeedsKeyPropEditor )
{
MakePropertyEditor(PropertyNode->GetPropertyKeyNode().ToSharedRef(), Utilities, PropertyKeyEditor);
}
}
}
}
IDetailPropertyRow& FDetailPropertyRow::DisplayName( const FText& InDisplayName )
{
if (PropertyNode.IsValid())
{
PropertyNode->SetDisplayNameOverride( InDisplayName );
}
return *this;
}
IDetailPropertyRow& FDetailPropertyRow::ToolTip( const FText& InToolTip )
{
if (PropertyNode.IsValid())
{
PropertyNode->SetToolTipOverride( InToolTip );
}
return *this;
}
IDetailPropertyRow& FDetailPropertyRow::ShowPropertyButtons( bool bInShowPropertyButtons )
{
bShowPropertyButtons = bInShowPropertyButtons;
return *this;
}
IDetailPropertyRow& FDetailPropertyRow::EditCondition( TAttribute<bool> EditConditionValue, FOnBooleanValueChanged OnEditConditionValueChanged )
{
CustomEditCondition = MakeShareable( new FCustomEditCondition );
CustomEditCondition->EditConditionValue = EditConditionValue;
CustomEditCondition->OnEditConditionValueChanged = OnEditConditionValueChanged;
return *this;
}
IDetailPropertyRow& FDetailPropertyRow::IsEnabled( TAttribute<bool> InIsEnabled )
{
CustomIsEnabledAttrib = InIsEnabled;
return *this;
}
IDetailPropertyRow& FDetailPropertyRow::ShouldAutoExpand(bool bInForceExpansion)
{
bForceAutoExpansion = bInForceExpansion;
return *this;
}
IDetailPropertyRow& FDetailPropertyRow::Visibility( TAttribute<EVisibility> Visibility )
{
PropertyVisibility = Visibility;
return *this;
}
IDetailPropertyRow& FDetailPropertyRow::OverrideResetToDefault(const FResetToDefaultOverride& ResetToDefault)
{
CustomResetToDefault = ResetToDefault;
return *this;
}
void FDetailPropertyRow::GetDefaultWidgets( TSharedPtr<SWidget>& OutNameWidget, TSharedPtr<SWidget>& OutValueWidget, bool bAddWidgetDecoration )
{
FDetailWidgetRow Row;
GetDefaultWidgets(OutNameWidget, OutValueWidget, Row, bAddWidgetDecoration);
}
void FDetailPropertyRow::GetDefaultWidgets( TSharedPtr<SWidget>& OutNameWidget, TSharedPtr<SWidget>& OutValueWidget, FDetailWidgetRow& Row, bool bAddWidgetDecoration )
{
TSharedPtr<FDetailWidgetRow> CustomTypeRow;
TSharedPtr<IPropertyTypeCustomization>& CustomTypeInterface = GetTypeInterface();
if ( CustomTypeInterface.IsValid() )
{
CustomTypeRow = MakeShareable(new FDetailWidgetRow);
CustomTypeInterface->CustomizeHeader(PropertyHandle.ToSharedRef(), *CustomTypeRow, *this);
}
MakeNameOrKeyWidget(Row,CustomTypeRow);
MakeValueWidget(Row,CustomTypeRow,bAddWidgetDecoration);
OutNameWidget = Row.NameWidget.Widget;
OutValueWidget = Row.ValueWidget.Widget;
}
bool FDetailPropertyRow::HasColumns() const
{
// Regular properties always have columns
return !CustomPropertyWidget.IsValid() || CustomPropertyWidget->HasColumns();
}
bool FDetailPropertyRow::ShowOnlyChildren() const
{
return PropertyTypeLayoutBuilder.IsValid() && CustomPropertyWidget.IsValid() && !CustomPropertyWidget->HasAnyContent();
}
bool FDetailPropertyRow::RequiresTick() const
{
return PropertyVisibility.IsBound();
}
FDetailWidgetRow& FDetailPropertyRow::CustomWidget( bool bShowChildren )
{
bShowCustomPropertyChildren = bShowChildren;
CustomPropertyWidget = MakeShareable( new FDetailWidgetRow );
return *CustomPropertyWidget;
}
TSharedPtr<FAssetThumbnailPool> FDetailPropertyRow::GetThumbnailPool() const
{
TSharedPtr<FDetailCategoryImpl> ParentCategoryPinned = ParentCategory.Pin();
return ParentCategoryPinned.IsValid() ? ParentCategoryPinned->GetParentLayout().GetThumbnailPool() : NULL;
}
TSharedPtr<IPropertyUtilities> FDetailPropertyRow::GetPropertyUtilities() const
{
TSharedPtr<FDetailCategoryImpl> ParentCategoryPinned = ParentCategory.Pin();
if (ParentCategoryPinned.IsValid() && ParentCategoryPinned->IsParentLayoutValid())
{
return ParentCategoryPinned->GetParentLayout().GetPropertyUtilities();
}
return nullptr;
}
FDetailWidgetRow FDetailPropertyRow::GetWidgetRow()
{
if( HasColumns() )
{
FDetailWidgetRow Row;
MakeNameOrKeyWidget( Row, CustomPropertyWidget );
MakeValueWidget( Row, CustomPropertyWidget );
if (CustomPropertyWidget.IsValid())
{
Row.CopyMenuAction = CustomPropertyWidget->CopyMenuAction;
Row.PasteMenuAction = CustomPropertyWidget->PasteMenuAction;
Row.CustomMenuItems = CustomPropertyWidget->CustomMenuItems;
}
return Row;
}
else
{
return *CustomPropertyWidget;
}
}
void FDetailPropertyRow::OnItemNodeInitialized( TSharedRef<FDetailCategoryImpl> InParentCategory, const TAttribute<bool>& InIsParentEnabled, TSharedPtr<IDetailGroup> InParentGroup)
{
IsParentEnabled = InIsParentEnabled;
TSharedPtr<IPropertyTypeCustomization>& CustomTypeInterface = GetTypeInterface();
// Don't customize the user already customized
if (!CustomPropertyWidget.IsValid() && CustomTypeInterface.IsValid())
{
CustomPropertyWidget = MakeShareable(new FDetailWidgetRow);
CustomTypeInterface->CustomizeHeader(PropertyHandle.ToSharedRef(), *CustomPropertyWidget, *this);
// set initial value of enabled attribute to settings from struct customization
if (CustomPropertyWidget->IsEnabledAttr.IsBound())
{
CustomIsEnabledAttrib = CustomPropertyWidget->IsEnabledAttr;
}
}
if( bShowCustomPropertyChildren && CustomTypeInterface.IsValid() )
{
PropertyTypeLayoutBuilder = MakeShareable(new FCustomChildrenBuilder(InParentCategory, InParentGroup));
/** Does this row pass its custom reset behavior to its children? */
if (CustomResetToDefault.IsSet() && CustomResetToDefault->PropagatesToChildren())
{
PropertyTypeLayoutBuilder->OverrideResetChildrenToDefault(CustomResetToDefault.GetValue());
}
CustomTypeInterface->CustomizeChildren(PropertyHandle.ToSharedRef(), *PropertyTypeLayoutBuilder, *this);
}
}
void FDetailPropertyRow::OnGenerateChildren( FDetailNodeList& OutChildren )
{
if (PropertyNode->AsCategoryNode() && PropertyNode->GetParentNode() && !PropertyNode->GetParentNode()->AsObjectNode())
{
// This is a sub-category. Populate from SubCategory builder
TSharedRef<FDetailCategoryImpl> ParentCategoryRef = ParentCategory.Pin().ToSharedRef();
FDetailLayoutBuilderImpl& LayoutBuilder = ParentCategoryRef->GetParentLayoutImpl();
TSharedPtr<FDetailCategoryImpl> MyCategory = LayoutBuilder.GetSubCategoryImpl(PropertyNode->AsCategoryNode()->GetCategoryName());
if(MyCategory.IsValid())
{
MyCategory->GenerateLayout();
// Ignore the header of the category by just getting the categories children directly. We are the header in this case.
// Also ignore visibility here as we dont have a filter yet and the children will be filtered later anyway
const bool bIgnoreVisibility = true;
const bool bIgnoreAdvancedDropdown = true;
MyCategory->GetGeneratedChildren(OutChildren, bIgnoreVisibility, bIgnoreAdvancedDropdown);
}
}
else if (PropertyNode->AsCategoryNode() || PropertyNode->GetProperty() || ExternalObjectLayout.IsValid())
{
GenerateChildrenForPropertyNode( PropertyNode, OutChildren );
}
}
void FDetailPropertyRow::GenerateChildrenForPropertyNode( TSharedPtr<FPropertyNode>& RootPropertyNode, FDetailNodeList& OutChildren )
{
// Children should be disabled if we are disabled
TAttribute<bool> ParentEnabledState = CustomIsEnabledAttrib;
if( IsParentEnabled.IsBound() || HasEditCondition() )
{
// Bind a delegate to the edit condition so our children will be disabled if the edit condition fails
ParentEnabledState.Bind( this, &FDetailPropertyRow::GetEnabledState );
}
if( PropertyTypeLayoutBuilder.IsValid() && bShowCustomPropertyChildren )
{
const TArray< FDetailLayoutCustomization >& ChildRows = PropertyTypeLayoutBuilder->GetChildCustomizations();
for( int32 ChildIndex = 0; ChildIndex < ChildRows.Num(); ++ChildIndex )
{
TSharedRef<FDetailItemNode> ChildNodeItem = MakeShareable( new FDetailItemNode( ChildRows[ChildIndex], ParentCategory.Pin().ToSharedRef(), ParentEnabledState ) );
ChildNodeItem->Initialize();
OutChildren.Add( ChildNodeItem );
}
}
else if (ExternalObjectLayout.IsValid() && ExternalObjectLayout->DetailLayout->HasDetails())
{
OutChildren.Append(ExternalObjectLayout->DetailLayout->GetAllRootTreeNodes());
}
else if ((bShowCustomPropertyChildren || !CustomPropertyWidget.IsValid()) && RootPropertyNode->GetNumChildNodes() > 0)
{
TSharedRef<FDetailCategoryImpl> ParentCategoryRef = ParentCategory.Pin().ToSharedRef();
IDetailLayoutBuilder& LayoutBuilder = ParentCategoryRef->GetParentLayout();
UProperty* ParentProperty = RootPropertyNode->GetProperty();
const bool bStructProperty = ParentProperty && ParentProperty->IsA<UStructProperty>();
const bool bMapProperty = ParentProperty && ParentProperty->IsA<UMapProperty>();
const bool bSetProperty = ParentProperty && ParentProperty->IsA<USetProperty>();
TArray<TWeakObjectPtr<UObject> > Objects;
if (RootPropertyNode->AsObjectNode())
{
for (int32 ObjectIndex = 0; ObjectIndex < RootPropertyNode->AsObjectNode()->GetNumObjects(); ++ObjectIndex)
{
Objects.Add(RootPropertyNode->AsObjectNode()->GetUObject(ObjectIndex));
}
}
for( int32 ChildIndex = 0; ChildIndex < RootPropertyNode->GetNumChildNodes(); ++ChildIndex )
{
TSharedPtr<FPropertyNode> ChildNode = RootPropertyNode->GetChildNode(ChildIndex);
if( ChildNode.IsValid() && ChildNode->HasNodeFlags( EPropertyNodeFlags::IsCustomized ) == 0 )
{
if( ChildNode->AsObjectNode() )
{
// Skip over object nodes and generate their children. Object nodes are not visible
GenerateChildrenForPropertyNode( ChildNode, OutChildren );
}
// Only struct children can have custom visibility that is different from their parent.
else if ( !bStructProperty || LayoutBuilder.IsPropertyVisible( FPropertyAndParent(*ChildNode->GetProperty(), ParentProperty, Objects ) ) )
{
TArray<TSharedRef<FDetailTreeNode>> PropNodes;
bool bHasKeyNode = false;
// Create and initialize the child first
FDetailLayoutCustomization Customization;
Customization.PropertyRow = MakeShareable(new FDetailPropertyRow(ChildNode, ParentCategoryRef));
TSharedRef<FDetailItemNode> ChildNodeItem = MakeShareable(new FDetailItemNode(Customization, ParentCategoryRef, ParentEnabledState));
ChildNodeItem->Initialize();
if ( ChildNode->GetPropertyKeyNode().IsValid() )
{
// If the child has a key property, only create a second node for the key if the child did not already create a property
// editor for it
if ( !Customization.PropertyRow->PropertyKeyEditor.IsValid() )
{
FDetailLayoutCustomization KeyCustom;
KeyCustom.PropertyRow = MakeShareable(new FDetailPropertyRow(ChildNode->GetPropertyKeyNode(), ParentCategoryRef));
TSharedRef<FDetailItemNode> KeyNodeItem = MakeShareable(new FDetailItemNode(KeyCustom, ParentCategoryRef, ParentEnabledState));
KeyNodeItem->Initialize();
PropNodes.Add(KeyNodeItem);
bHasKeyNode = true;
}
}
// Add the child node
PropNodes.Add(ChildNodeItem);
// For set properties, set the name override to match the index
if (bSetProperty)
{
ChildNode->SetDisplayNameOverride(FText::AsNumber(ChildIndex));
}
if (bMapProperty && bHasKeyNode)
{
// Group the key/value nodes for map properties
static FText KeyValueGroupNameFormat = LOCTEXT("KeyValueGroupName", "Element {0}");
FText KeyValueGroupName = FText::Format(KeyValueGroupNameFormat, ChildIndex);
TSharedRef<FDetailCategoryGroupNode> KeyValueGroupNode = MakeShareable(new FDetailCategoryGroupNode(PropNodes, FName(*KeyValueGroupName.ToString()), ParentCategoryRef.Get()));
KeyValueGroupNode->SetShowBorder(false);
KeyValueGroupNode->SetHasSplitter(true);
OutChildren.Add(KeyValueGroupNode);
}
else
{
OutChildren.Append(PropNodes);
}
}
}
}
}
}
TSharedRef<FPropertyEditor> FDetailPropertyRow::MakePropertyEditor(const TSharedRef<FPropertyNode>& InPropertyNode, const TSharedRef<IPropertyUtilities>& PropertyUtilities, TSharedPtr<FPropertyEditor>& InEditor )
{
if( !InEditor.IsValid() )
{
InEditor = FPropertyEditor::Create( InPropertyNode, PropertyUtilities );
}
return InEditor.ToSharedRef();
}
TSharedPtr<IPropertyTypeCustomization> FDetailPropertyRow::GetPropertyCustomization(const TSharedRef<FPropertyNode>& InPropertyNode, const TSharedRef<FDetailCategoryImpl>& InParentCategory)
{
TSharedPtr<IPropertyTypeCustomization> CustomInterface;
if (!PropertyEditorHelpers::IsStaticArray(*InPropertyNode))
{
UProperty* Property = InPropertyNode->GetProperty();
TSharedPtr<IPropertyHandle> PropHandle = InParentCategory->GetParentLayoutImpl().GetPropertyHandle(InPropertyNode);
static FName NAME_PropertyEditor("PropertyEditor");
FPropertyEditorModule& PropertyEditorModule = FModuleManager::GetModuleChecked<FPropertyEditorModule>(NAME_PropertyEditor);
FPropertyTypeLayoutCallback LayoutCallback = PropertyEditorModule.GetPropertyTypeCustomization(Property, *PropHandle, InParentCategory->GetCustomPropertyTypeLayoutMap() );
if (LayoutCallback.IsValid())
{
if (PropHandle->IsValidHandle())
{
CustomInterface = LayoutCallback.GetCustomizationInstance();
}
}
}
return CustomInterface;
}
void FDetailPropertyRow::MakeExternalPropertyRowCustomization(TSharedPtr<FStructOnScope> StructData, FName PropertyName, TSharedRef<FDetailCategoryImpl> ParentCategory, FDetailLayoutCustomization& OutCustomization)
{
TSharedRef<FStructurePropertyNode> RootPropertyNode = MakeShared<FStructurePropertyNode>();
//SET
RootPropertyNode->SetStructure(StructData);
FPropertyNodeInitParams InitParams;
InitParams.ParentNode = nullptr;
InitParams.Property = nullptr;
InitParams.ArrayOffset = 0;
InitParams.ArrayIndex = INDEX_NONE;
InitParams.bForceHiddenPropertyVisibility = FPropertySettings::Get().ShowHiddenProperties();
InitParams.bCreateCategoryNodes = false;
InitParams.bAllowChildren = false;
RootPropertyNode->InitNode(InitParams);
ParentCategory->GetParentLayoutImpl().AddExternalRootPropertyNode(RootPropertyNode);
if (PropertyName != NAME_None)
{
RootPropertyNode->RebuildChildren();
for (int32 ChildIdx = 0; ChildIdx < RootPropertyNode->GetNumChildNodes(); ++ChildIdx)
{
TSharedPtr< FPropertyNode > PropertyNode = RootPropertyNode->GetChildNode(ChildIdx);
if (UProperty* Property = PropertyNode->GetProperty())
{
if (PropertyName == NAME_None || Property->GetFName() == PropertyName)
{
OutCustomization.PropertyRow = MakeShareable(new FDetailPropertyRow(PropertyNode, ParentCategory, RootPropertyNode));
break;
}
}
}
}
else
{
static const FName PropertyEditorModuleName("PropertyEditor");
FPropertyEditorModule& PropertyEditorModule = FModuleManager::GetModuleChecked<FPropertyEditorModule>(PropertyEditorModuleName);
// Make a "fake" struct property to represent the entire struct
UStructProperty* StructProperty = PropertyEditorModule.RegisterStructOnScopeProperty(StructData.ToSharedRef());
// Generate a node for the struct
TSharedPtr<FItemPropertyNode> ItemNode = MakeShared<FItemPropertyNode>();
FPropertyNodeInitParams ItemNodeInitParams;
ItemNodeInitParams.ParentNode = RootPropertyNode;
ItemNodeInitParams.Property = StructProperty;
ItemNodeInitParams.ArrayOffset = 0;
ItemNodeInitParams.ArrayIndex = INDEX_NONE;
ItemNodeInitParams.bAllowChildren = true;
ItemNodeInitParams.bForceHiddenPropertyVisibility = FPropertySettings::Get().ShowHiddenProperties();
ItemNodeInitParams.bCreateCategoryNodes = false;
ItemNode->InitNode(ItemNodeInitParams);
RootPropertyNode->AddChildNode(ItemNode);
OutCustomization.PropertyRow = MakeShareable(new FDetailPropertyRow(ItemNode, ParentCategory, RootPropertyNode));
}
}
void FDetailPropertyRow::MakeExternalPropertyRowCustomization(const TArray<UObject*>& InObjects, FName PropertyName, TSharedRef<FDetailCategoryImpl> ParentCategory, struct FDetailLayoutCustomization& OutCustomization, TOptional<bool> bAllowChildrenOverride, TOptional<bool> bCreateCategoryNodesOverride)
{
TSharedRef<FObjectPropertyNode> RootPropertyNode = MakeShared<FObjectPropertyNode>();
for (UObject* Object : InObjects)
{
RootPropertyNode->AddObject(Object);
}
FPropertyNodeInitParams InitParams;
InitParams.ParentNode = nullptr;
InitParams.Property = nullptr;
InitParams.ArrayOffset = 0;
InitParams.ArrayIndex = INDEX_NONE;
InitParams.bAllowChildren = false;
InitParams.bForceHiddenPropertyVisibility = FPropertySettings::Get().ShowHiddenProperties();
InitParams.bCreateCategoryNodes = PropertyName == NAME_None;
if (bAllowChildrenOverride.IsSet())
{
InitParams.bAllowChildren = bAllowChildrenOverride.GetValue();
}
if (bCreateCategoryNodesOverride.IsSet())
{
InitParams.bCreateCategoryNodes = bCreateCategoryNodesOverride.GetValue();
}
RootPropertyNode->InitNode(InitParams);
ParentCategory->GetParentLayoutImpl().AddExternalRootPropertyNode(RootPropertyNode);
if (PropertyName != NAME_None)
{
TSharedPtr<FPropertyNode> PropertyNode = RootPropertyNode->GenerateSingleChild(PropertyName);
if(PropertyNode.IsValid())
{
RootPropertyNode->AddChildNode(PropertyNode);
PropertyNode->RebuildChildren();
OutCustomization.PropertyRow = MakeShared<FDetailPropertyRow>(PropertyNode, ParentCategory, RootPropertyNode);
}
}
else
{
OutCustomization.PropertyRow = MakeShared<FDetailPropertyRow>(RootPropertyNode, ParentCategory, RootPropertyNode);
}
}
bool FDetailPropertyRow::HasEditCondition() const
{
return ( PropertyEditor.IsValid() && PropertyEditor->HasEditCondition() ) || CustomEditCondition.IsValid();
}
bool FDetailPropertyRow::GetEnabledState() const
{
bool Result = IsParentEnabled.Get();
if( HasEditCondition() )
{
if (CustomEditCondition.IsValid())
{
Result = Result && CustomEditCondition->EditConditionValue.Get();
}
else
{
Result = Result && PropertyEditor->IsEditConditionMet();
}
}
Result = Result && CustomIsEnabledAttrib.Get();
return Result;
}
TSharedPtr<IPropertyTypeCustomization>& FDetailPropertyRow::GetTypeInterface()
{
if (!bCachedCustomTypeInterface)
{
if (PropertyNode.IsValid() && ParentCategory.IsValid())
{
CachedCustomTypeInterface = GetPropertyCustomization(PropertyNode.ToSharedRef(), ParentCategory.Pin().ToSharedRef());
}
bCachedCustomTypeInterface = true;
}
return CachedCustomTypeInterface;
}
bool FDetailPropertyRow::GetForceAutoExpansion() const
{
return bForceAutoExpansion;
}
void FDetailPropertyRow::MakeNameOrKeyWidget( FDetailWidgetRow& Row, const TSharedPtr<FDetailWidgetRow> InCustomRow ) const
{
EVerticalAlignment VerticalAlignment = VAlign_Center;
EHorizontalAlignment HorizontalAlignment = HAlign_Fill;
// We will only use key widgets for non-struct keys
const bool bHasKeyNode = PropertyKeyEditor.IsValid() && !PropertyHandle->HasMetaData(TEXT("ReadOnlyKeys"));
if( !bHasKeyNode && InCustomRow.IsValid() )
{
VerticalAlignment = InCustomRow->NameWidget.VerticalAlignment;
HorizontalAlignment = InCustomRow->NameWidget.HorizontalAlignment;
}
TAttribute<bool> IsEnabledAttrib = CustomIsEnabledAttrib;
TSharedRef<SHorizontalBox> NameHorizontalBox = SNew(SHorizontalBox);
if( HasEditCondition() )
{
IsEnabledAttrib.Bind( this, &FDetailPropertyRow::GetEnabledState );
NameHorizontalBox->AddSlot()
.AutoWidth()
.Padding( 0.0f, 0.0f )
.VAlign(VAlign_Center)
[
SNew( SEditConditionWidget, PropertyEditor )
.CustomEditCondition( CustomEditCondition.IsValid() ? *CustomEditCondition : FCustomEditCondition() )
];
}
TSharedPtr<SWidget> NameWidget;
// Key nodes take precedence over custom rows
if ( bHasKeyNode )
{
const TSharedRef<IPropertyUtilities> PropertyUtilities = ParentCategory.Pin()->GetParentLayoutImpl().GetPropertyUtilities();
NameWidget =
SNew(SPropertyValueWidget, PropertyKeyEditor, PropertyUtilities)
.IsEnabled(IsEnabledAttrib)
.ShowPropertyButtons(false);
}
else if( InCustomRow.IsValid() )
{
NameWidget =
SNew( SBox )
.IsEnabled( IsEnabledAttrib )
[
InCustomRow->NameWidget.Widget
];
}
else
{
NameWidget =
SNew( SPropertyNameWidget, PropertyEditor )
.IsEnabled( IsEnabledAttrib )
.DisplayResetToDefault( false );
}
SHorizontalBox::FSlot& Slot = NameHorizontalBox->AddSlot()
[
NameWidget.ToSharedRef()
];
if (bHasKeyNode)
{
Slot.Padding(0.0f, 0.0f, 2.0f, 0.0f);
}
else if (InCustomRow.IsValid())
{
//Allow custom name slot to fill all the area. If the user add a SHorizontalBox with left and right align slot
Slot.FillWidth(1.0f);
}
else
{
Slot.AutoWidth();
}
Row.NameContent()
.HAlign( HorizontalAlignment )
.VAlign( VerticalAlignment )
[
NameHorizontalBox
];
}
void FDetailPropertyRow::MakeValueWidget( FDetailWidgetRow& Row, const TSharedPtr<FDetailWidgetRow> InCustomRow, bool bAddWidgetDecoration ) const
{
EVerticalAlignment VerticalAlignment = VAlign_Center;
EHorizontalAlignment HorizontalAlignment = HAlign_Left;
TOptional<float> MinWidth;
TOptional<float> MaxWidth;
if( InCustomRow.IsValid() )
{
VerticalAlignment = InCustomRow->ValueWidget.VerticalAlignment;
HorizontalAlignment = InCustomRow->ValueWidget.HorizontalAlignment;
}
TAttribute<bool> IsEnabledAttrib = CustomIsEnabledAttrib;
if( HasEditCondition() )
{
IsEnabledAttrib.Bind( this, &FDetailPropertyRow::GetEnabledState );
}
TSharedRef<SHorizontalBox> ValueWidget =
SNew( SHorizontalBox )
.IsEnabled( IsEnabledAttrib );
TSharedPtr<SResetToDefaultPropertyEditor> ResetButton = nullptr;
if (!PropertyHandle->HasMetaData(TEXT("NoResetToDefault")) && !PropertyHandle->IsResetToDefaultCustomized())
{
SAssignNew(ResetButton, SResetToDefaultPropertyEditor, PropertyEditor->GetPropertyHandle())
.IsEnabled(IsEnabledAttrib)
.CustomResetToDefault(CustomResetToDefault);
};
TSharedRef<SWidget> ResetWidget = ResetButton.IsValid() ? ResetButton.ToSharedRef() : SNullWidget::NullWidget;
TSharedPtr<SPropertyValueWidget> PropertyValue;
if( InCustomRow.IsValid() )
{
MinWidth = InCustomRow->ValueWidget.MinWidth;
MaxWidth = InCustomRow->ValueWidget.MaxWidth;
ValueWidget->AddSlot()
[
InCustomRow->ValueWidget.Widget
];
}
else
{
ValueWidget->AddSlot()
.Padding( 0.0f, 0.0f, 4.0f, 0.0f )
[
SAssignNew( PropertyValue, SPropertyValueWidget, PropertyEditor, GetPropertyUtilities() )
.ShowPropertyButtons( false ) // We handle this ourselves
.OptionalResetWidget(ResetWidget)
];
MinWidth = PropertyValue->GetMinDesiredWidth();
MaxWidth = PropertyValue->GetMaxDesiredWidth();
}
if(bAddWidgetDecoration)
{
if( bShowPropertyButtons )
{
TArray< TSharedRef<SWidget> > RequiredButtons;
PropertyEditorHelpers::MakeRequiredPropertyButtons( PropertyEditor.ToSharedRef(), /*OUT*/RequiredButtons );
for( int32 ButtonIndex = 0; ButtonIndex < RequiredButtons.Num(); ++ButtonIndex )
{
ValueWidget->AddSlot()
.AutoWidth()
.HAlign(HAlign_Left)
.VAlign(VAlign_Center)
.Padding(2.0f, 1.0f)
[
RequiredButtons[ButtonIndex]
];
}
}
if (PropertyHandle->HasMetaData(TEXT("ConfigHierarchyEditable")))
{
ValueWidget->AddSlot()
.AutoWidth()
.VAlign(VAlign_Center)
.HAlign(HAlign_Left)
.Padding(0.0f, 0.0f, 4.0f, 0.0f)
[
PropertyCustomizationHelpers::MakeEditConfigHierarchyButton(FSimpleDelegate::CreateSP(PropertyEditor.ToSharedRef(), &FPropertyEditor::EditConfigHierarchy))
];
}
if ((!PropertyValue.IsValid() || (PropertyValue.IsValid() && !PropertyValue->CreatedResetButton()))
&& ResetButton.IsValid())
{
ValueWidget->AddSlot()
.Padding(4.0f, 0.0f)
.AutoWidth()
.VAlign(VAlign_Center)
.HAlign(HAlign_Left)
[
ResetWidget
];
}
}
Row.ValueContent()
.HAlign( HorizontalAlignment )
.VAlign( VerticalAlignment )
.MinDesiredWidth( MinWidth )
.MaxDesiredWidth( MaxWidth )
[
ValueWidget
];
}
#undef LOCTEXT_NAMESPACE