You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira #preflight 6306736ac85b7fef22be7751 [CL 21558583 by bryan sefcik in ue5-main branch]
36 lines
1.0 KiB
C++
36 lines
1.0 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "DataTableEditorUtils.h"
|
|
#include "Engine/DataTable.h"
|
|
#include "SGraphPinNameList.h"
|
|
#include "UObject/SoftObjectPtr.h"
|
|
#include "Widgets/DeclarativeSyntaxSupport.h"
|
|
|
|
class UDataTable;
|
|
class UEdGraphPin;
|
|
|
|
class GRAPHEDITOR_API SGraphPinDataTableRowName : public SGraphPinNameList, public FDataTableEditorUtils::INotifyOnDataTableChanged
|
|
{
|
|
public:
|
|
SLATE_BEGIN_ARGS(SGraphPinDataTableRowName) {}
|
|
SLATE_END_ARGS()
|
|
|
|
void Construct(const FArguments& InArgs, UEdGraphPin* InGraphPinObj, class UDataTable* InDataTable);
|
|
|
|
SGraphPinDataTableRowName();
|
|
virtual ~SGraphPinDataTableRowName();
|
|
|
|
// FDataTableEditorUtils::INotifyOnDataTableChanged
|
|
virtual void PreChange(const UDataTable* Changed, FDataTableEditorUtils::EDataTableChangeInfo Info) override;
|
|
virtual void PostChange(const UDataTable* Changed, FDataTableEditorUtils::EDataTableChangeInfo Info) override;
|
|
|
|
protected:
|
|
|
|
void RefreshNameList();
|
|
|
|
TSoftObjectPtr<class UDataTable> DataTable;
|
|
};
|