You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-68196 #rb Aaron.Eady #ROBOMERGE-OWNER: ryan.gerleve #ROBOMERGE-AUTHOR: mic.rooney #ROBOMERGE-SOURCE: CL 4695558 in //UE4/Main/... #ROBOMERGE-BOT: ENGINE (Main -> Dev-Networking) [CL 4710890 by mic rooney in Dev-Networking branch]
23 lines
606 B
C++
23 lines
606 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(FExecuteAction SearchForReferencesAction);
|
|
static void AddSearchForReferencesContextMenu(FDetailWidgetRow& RowNameDetailWidget, FExecuteAction SearchForReferencesAction);
|
|
|
|
private:
|
|
static const FText SearchForReferencesActionName;
|
|
static const FText SearchForReferencesActionTooltip;
|
|
};
|
|
|