You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
25 lines
634 B
C++
25 lines
634 B
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
class SVisualLoggerReport : public SCompoundWidget
|
|
{
|
|
public:
|
|
SLATE_BEGIN_ARGS(SVisualLoggerReport) {}
|
|
|
|
SLATE_END_ARGS()
|
|
|
|
void Construct(const FArguments& InArgs, TArray< TSharedPtr<class STimeline> >&, TSharedPtr<class SVisualLoggerView> VisualLoggerView);
|
|
|
|
virtual ~SVisualLoggerReport();
|
|
|
|
protected:
|
|
void GenerateReportText();
|
|
|
|
protected:
|
|
TArray< TSharedPtr<class STimeline> > SelectedItems;
|
|
TArray<TSharedRef<ITextDecorator>> Decorators;
|
|
TSharedPtr<class SRichTextBlock> InteractiveRichText;
|
|
FText ReportText;
|
|
TArray<FString> CollectedEvents;
|
|
};
|