Files
UnrealEngineUWP/Engine/Source/Editor/GraphEditor/Public/SGraphNodeKnot.h
Chris Gagnon 0a9f86357f Merging //UE4/Dev-Main to Dev-Editor (//UE4/Dev-Editor)
#rb none

[CL 6837840 by Chris Gagnon in Dev-Editor branch]
2019-06-04 15:16:30 -04:00

51 lines
1.8 KiB
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Widgets/DeclarativeSyntaxSupport.h"
#include "SGraphPin.h"
#include "SGraphNodeDefault.h"
class SCommentBubble;
/** The visual representation of a control point meant to adjust how connections are routed, also known as a Reroute node.
* The input knot node should have properly implemented ShouldDrawNodeAsControlPointOnly to return true with valid indices for its pins.
*/
class GRAPHEDITOR_API SGraphNodeKnot : public SGraphNodeDefault
{
public:
SLATE_BEGIN_ARGS(SGraphNodeKnot) {}
SLATE_END_ARGS()
void Construct(const FArguments& InArgs, class UEdGraphNode* InKnot);
// SGraphNode interface
virtual void UpdateGraphNode() override;
virtual const FSlateBrush* GetShadowBrush(bool bSelected) const override;
virtual TSharedPtr<SGraphPin> CreatePinWidget(UEdGraphPin* Pin) const override;
virtual void AddPin(const TSharedRef<SGraphPin>& PinToAdd) override;
virtual void RequestRenameOnSpawn() override { }
// End of SGraphNode interface
protected:
/** Returns Offset to center comment on the node's only pin */
FVector2D GetCommentOffset() const;
protected:
/** Toggles the hovered visibility state */
virtual void OnCommentBubbleToggled(bool bInCommentBubbleVisible) override;
/** If bHoveredCommentVisibility is true, hides the comment bubble after a change is committed */
virtual void OnCommentTextCommitted(const FText& NewComment, ETextCommit::Type CommitInfo) override;
/** The hovered visibility state. If false, comment bubble will only appear on hover. */
bool bAlwaysShowCommentBubble;
/** SharedPtr to comment bubble */
TSharedPtr<SCommentBubble> CommentBubble;
const FSlateBrush* ShadowBrush;
const FSlateBrush* ShadowBrushSelected;
};