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
|
|
|
|
|
|
2015-06-11 09:51:31 -04:00
|
|
|
class SVisualLoggerStatusView : public SVisualLoggerBaseWidget
|
2014-11-19 07:43:07 -05:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
SLATE_BEGIN_ARGS(SVisualLoggerStatusView){}
|
|
|
|
|
SLATE_END_ARGS();
|
|
|
|
|
|
|
|
|
|
void Construct(const FArguments& InArgs, const TSharedRef<FUICommandList>& InCommandList);
|
|
|
|
|
|
|
|
|
|
void OnItemSelectionChanged(const FVisualLogDevice::FVisualLogEntryItem&);
|
2015-06-02 06:51:31 -04:00
|
|
|
void GenerateStatusData(const FVisualLogDevice::FVisualLogEntryItem&, bool bAddHeader);
|
|
|
|
|
void ObjectSelectionChanged(TArray<TSharedPtr<class STimeline> >& TimeLines);
|
2014-11-19 07:43:07 -05:00
|
|
|
|
|
|
|
|
TSharedRef<ITableRow> HandleGenerateLogStatus(TSharedPtr<struct FLogStatusItem> InItem, const TSharedRef<STableViewBase>& OwnerTable);
|
|
|
|
|
void OnLogStatusGetChildren(TSharedPtr<struct FLogStatusItem> InItem, TArray< TSharedPtr<FLogStatusItem> >& OutItems);
|
2015-06-02 06:51:31 -04:00
|
|
|
void HideData(bool bInHide);
|
|
|
|
|
|
2014-11-19 07:43:07 -05:00
|
|
|
protected:
|
|
|
|
|
TSharedPtr< STreeView< TSharedPtr<FLogStatusItem> > > StatusItemsView;
|
2015-06-02 06:51:31 -04:00
|
|
|
TSharedPtr< STextBlock > NotificationText;
|
2014-11-19 07:43:07 -05:00
|
|
|
TArray< TSharedPtr<FLogStatusItem> > StatusItems;
|
2015-06-02 06:51:31 -04:00
|
|
|
TArray<TSharedPtr<class STimeline> > SelectedTimeLines;
|
2014-11-19 07:43:07 -05:00
|
|
|
};
|