You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
23 lines
649 B
C++
23 lines
649 B
C++
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Engine/DataTable.h"
|
|
#include "Framework/Commands/UIAction.h"
|
|
|
|
class SWidget;
|
|
class FDetailWidgetRow;
|
|
|
|
class DATATABLEEDITOR_API FDataTableRowUtils
|
|
{
|
|
public:
|
|
static TSharedRef<SWidget> MakeRowActionsMenu(TSharedPtr<class IDataTableEditor> Editor, FExecuteAction SearchForReferencesAction);
|
|
static void AddSearchForReferencesContextMenu(FDetailWidgetRow& RowNameDetailWidget, FExecuteAction SearchForReferencesAction);
|
|
|
|
private:
|
|
static const FText SearchForReferencesActionName;
|
|
static const FText SearchForReferencesActionTooltip;
|
|
};
|
|
|