You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb none #ROBOMERGE-SOURCE: CL 10869241 via CL 10869527 via CL 10869904 #ROBOMERGE-BOT: (v613-10869866) [CL 10870586 by ryan durand in Main branch]
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "SlateSoundCustomization.h"
|
|
#include "Widgets/DeclarativeSyntaxSupport.h"
|
|
#include "Engine/GameViewportClient.h"
|
|
#include "PropertyHandle.h"
|
|
#include "Sound/SoundBase.h"
|
|
#include "PropertyCustomizationHelpers.h"
|
|
|
|
TSharedRef<IPropertyTypeCustomization> FSlateSoundStructCustomization::MakeInstance()
|
|
{
|
|
return MakeShareable(new FSlateSoundStructCustomization());
|
|
}
|
|
|
|
void FSlateSoundStructCustomization::CustomizeHeader(TSharedRef<IPropertyHandle> StructPropertyHandle, FDetailWidgetRow& HeaderRow, IPropertyTypeCustomizationUtils& StructCustomizationUtils)
|
|
{
|
|
TSharedPtr<IPropertyHandle> ResourceObjectProperty = StructPropertyHandle->GetChildHandle(TEXT("ResourceObject"));
|
|
check(ResourceObjectProperty.IsValid());
|
|
|
|
TArray<void*> StructPtrs;
|
|
StructPropertyHandle->AccessRawData(StructPtrs);
|
|
for(auto It = StructPtrs.CreateConstIterator(); It; ++It)
|
|
{
|
|
FSlateSound* const SlateSound = reinterpret_cast<FSlateSound*>(*It);
|
|
SlateSoundStructs.Add(SlateSound);
|
|
}
|
|
|
|
HeaderRow
|
|
.NameContent()
|
|
[
|
|
StructPropertyHandle->CreatePropertyNameWidget()
|
|
]
|
|
.ValueContent()
|
|
.MinDesiredWidth(250.0f)
|
|
[
|
|
SNew(SObjectPropertyEntryBox)
|
|
.PropertyHandle(ResourceObjectProperty)
|
|
.AllowedClass(USoundBase::StaticClass())
|
|
.OnObjectChanged(this, &FSlateSoundStructCustomization::OnObjectChanged)
|
|
];
|
|
}
|
|
|
|
void FSlateSoundStructCustomization::CustomizeChildren(TSharedRef<IPropertyHandle> StructPropertyHandle, IDetailChildrenBuilder& StructBuilder, IPropertyTypeCustomizationUtils& StructCustomizationUtils)
|
|
{
|
|
}
|
|
|
|
void FSlateSoundStructCustomization::OnObjectChanged(const FAssetData&)
|
|
{
|
|
// The object has been updated in the editor, so strip out the legacy data now so that the two don't conflict
|
|
for(auto It = SlateSoundStructs.CreateConstIterator(); It; ++It)
|
|
{
|
|
FSlateSound* const SlateSound = *It;
|
|
SlateSound->StripLegacyData_DEPRECATED();
|
|
}
|
|
}
|