Files
UnrealEngineUWP/Engine/Source/Editor/ReferenceViewer/Private/SReferenceNode.h
Ben Cosh e3d8fa61a3 Fix for reference viewer allowing users to edit the comment bubble text.
#UE-13446 - Reference viewer comments allow the user to edit the comment.
#Branch UE4
#Proj GraphEditor, ReferenceViewer

[CL 2505569 by Ben Cosh in Main branch]
2015-04-08 14:51:43 -04:00

27 lines
574 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
/**
*
*/
class SReferenceNode : public SGraphNode
{
public:
SLATE_BEGIN_ARGS( SReferenceNode ){}
SLATE_END_ARGS()
/** Constructs this widget with InArgs */
void Construct( const FArguments& InArgs, UEdGraphNode_Reference* InNode );
// SGraphNode implementation
virtual void UpdateGraphNode() override;
virtual bool IsNodeEditable() const override { return false; }
// End SGraphNode implementation
private:
TSharedPtr<class FAssetThumbnail> AssetThumbnail;
bool bUsesThumbnail;
};