Files
UnrealEngineUWP/Engine/Source/Editor/GraphEditor/Public/SGraphPinDataTableRowName.h
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

28 lines
881 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "SGraphPinNameList.h"
#include "DataTableEditorUtils.h"
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();
TAssetPtr<class UDataTable> DataTable;
};