2014-12-07 19:09:38 -05:00
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-11-19 07:43:07 -05:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
class SVisualLoggerStatusView : public SCompoundWidget
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
SLATE_BEGIN_ARGS(SVisualLoggerStatusView){}
|
|
|
|
|
SLATE_END_ARGS();
|
|
|
|
|
|
|
|
|
|
void Construct(const FArguments& InArgs, const TSharedRef<FUICommandList>& InCommandList);
|
|
|
|
|
|
|
|
|
|
void OnItemSelectionChanged(const FVisualLogDevice::FVisualLogEntryItem&);
|
|
|
|
|
|
|
|
|
|
TSharedRef<ITableRow> HandleGenerateLogStatus(TSharedPtr<struct FLogStatusItem> InItem, const TSharedRef<STableViewBase>& OwnerTable);
|
|
|
|
|
void OnLogStatusGetChildren(TSharedPtr<struct FLogStatusItem> InItem, TArray< TSharedPtr<FLogStatusItem> >& OutItems);
|
|
|
|
|
protected:
|
|
|
|
|
TSharedPtr< STreeView< TSharedPtr<FLogStatusItem> > > StatusItemsView;
|
|
|
|
|
TArray< TSharedPtr<FLogStatusItem> > StatusItems;
|
|
|
|
|
};
|