Files
UnrealEngineUWP/Engine/Source/Editor/AnimationModifiers/Private/SModifierItemRow.h
matt kuhlenschmidt a9452ad18c Remove double click event from STextBlock. It was redundant with the one in base SWidget
[CODEREVIEW] nick.darnell


#ROBOMERGE-SOURCE: CL 4951595 via CL 4952935

[CL 4955241 by matt kuhlenschmidt in Main branch]
2019-02-08 19:20:50 -05:00

24 lines
706 B
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "SModifierListview.h"
/** Listview row widget representing a single modifier instance */
class SModifierItemRow : public STableRow<ModifierListviewItem>
{
public:
SLATE_BEGIN_ARGS(SModifierItemRow) {}
SLATE_ARGUMENT(FOnSingleModifier, OnOpenModifier);
SLATE_END_ARGS()
void Construct(const FArguments& InArgs, const TSharedRef<STableViewBase>& InOwnerTableView, const ModifierListviewItem& Item);
FReply OnDoubleClicked(const FGeometry& MyGeometry, const FPointerEvent& PointerEvent);
protected:
FText GetInstanceText() const;
protected:
ModifierListviewItem InternalItem;
FOnSingleModifier OnOpenModifier;
};