You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb prajwal.manjunath, sebastian.nordgren #preflight 62329b60ac0173aa413a0fe0 [CL 19416729 by Patrick Boutot in ue5-main branch]
31 lines
815 B
C++
31 lines
815 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "IDetailCustomization.h"
|
|
#include "Styling/SlateTypes.h"
|
|
|
|
class IBlueprintEditor;
|
|
class UWidgetBlueprint;
|
|
|
|
namespace UE::FieldNotification
|
|
{
|
|
class FCustomizationHelper;
|
|
}
|
|
|
|
class FGraphFunctionDetailsCustomization : public IDetailCustomization
|
|
{
|
|
public:
|
|
/** Makes a new instance of this detail layout class for a specific detail view requesting it */
|
|
static TSharedPtr<IDetailCustomization> MakeInstance(TSharedPtr<IBlueprintEditor> InBlueprintEditor);
|
|
|
|
FGraphFunctionDetailsCustomization(UWidgetBlueprint* InBlueprint);
|
|
|
|
//~ IDetailCustomization interface
|
|
virtual void CustomizeDetails(IDetailLayoutBuilder& DetailLayout) override;
|
|
|
|
private:
|
|
TPimplPtr<UE::FieldNotification::FCustomizationHelper> Helper;
|
|
};
|