2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-12-03 09:31:37 -05:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
class SVisualLoggerReport : public SCompoundWidget
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
SLATE_BEGIN_ARGS(SVisualLoggerReport) {}
|
|
|
|
|
|
|
|
|
|
SLATE_END_ARGS()
|
|
|
|
|
|
2014-12-08 08:20:42 -05:00
|
|
|
void Construct(const FArguments& InArgs, TArray< TSharedPtr<class STimeline> >&, TSharedPtr<class SVisualLoggerView> VisualLoggerView);
|
2014-12-03 09:31:37 -05:00
|
|
|
|
|
|
|
|
virtual ~SVisualLoggerReport();
|
|
|
|
|
|
2014-12-08 08:20:42 -05:00
|
|
|
protected:
|
|
|
|
|
void GenerateReportText();
|
2014-12-03 09:31:37 -05:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
TArray< TSharedPtr<class STimeline> > SelectedItems;
|
2014-12-08 08:20:42 -05:00
|
|
|
TArray<TSharedRef<ITextDecorator>> Decorators;
|
|
|
|
|
TSharedPtr<class SRichTextBlock> InteractiveRichText;
|
|
|
|
|
FText ReportText;
|
|
|
|
|
TArray<FString> CollectedEvents;
|
2014-12-03 09:31:37 -05:00
|
|
|
};
|