28 lines
633 B
C++
28 lines
633 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Templates/SharedPointer.h"
|
|
#include "Widgets/DeclarativeSyntaxSupport.h"
|
|
#include "Widgets/SCompoundWidget.h"
|
|
|
|
class SWidget;
|
|
|
|
class SPersonaDetails : public SCompoundWidget
|
|
{
|
|
public:
|
|
SLATE_BEGIN_ARGS(SPersonaDetails) {}
|
|
|
|
/** Optional content to display above the details panel */
|
|
SLATE_ARGUMENT(TSharedPtr<SWidget>, TopContent)
|
|
|
|
/** Optional content to display below the details panel */
|
|
SLATE_ARGUMENT(TSharedPtr<SWidget>, BottomContent)
|
|
|
|
SLATE_END_ARGS()
|
|
|
|
void Construct(const FArguments& InArgs);
|
|
|
|
TSharedPtr<class IDetailsView> DetailsView;
|
|
};
|