You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Fixed and polished how we scroll/drag or zoom data in timelines using mouse. It should be much easier now. - Added scroll bar while working with zoomed data. It's clear that we have it zoomed and it's faster to scroll that kind of data now. - Fixed how timeline's context menu works with timelines selection. - it's possible to copy log lines to system clipboard now, - bunch of other fixes and tweaks here and there (like GrabHand" mouse cursor while dragging timelines, etc.) [CL 2383375 by sebastian kowalczyk in Main branch]
234 lines
6.2 KiB
C++
234 lines
6.2 KiB
C++
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "LogVisualizer.h"
|
|
#include "STimeline.h"
|
|
#include "STimelineBar.h"
|
|
#include "TimeSliderController.h"
|
|
#include "STimelinesContainer.h"
|
|
#include "LogVisualizerSettings.h"
|
|
|
|
class STimelineLabelAnchor : public SMenuAnchor
|
|
{
|
|
public:
|
|
void Construct(const FArguments& InArgs, TSharedPtr<class STimeline> InTimelineOwner)
|
|
{
|
|
SMenuAnchor::Construct(InArgs);
|
|
TimelineOwner = InTimelineOwner;
|
|
}
|
|
|
|
private:
|
|
/** SWidget Interface */
|
|
virtual FReply OnMouseButtonDown(const FGeometry& MyGeometry, const FPointerEvent& MouseEvent) override;
|
|
TWeakPtr<class STimeline> TimelineOwner;
|
|
};
|
|
|
|
FReply STimelineLabelAnchor::OnMouseButtonDown(const FGeometry& MyGeometry, const FPointerEvent& MouseEvent)
|
|
{
|
|
if (MouseEvent.GetEffectingButton() == EKeys::RightMouseButton && TimelineOwner.IsValid() && TimelineOwner.Pin()->IsSelected())
|
|
{
|
|
SetIsOpen(!IsOpen());
|
|
return FReply::Handled();
|
|
}
|
|
return FReply::Unhandled();
|
|
}
|
|
|
|
|
|
STimeline::~STimeline()
|
|
{
|
|
ULogVisualizerSettings::StaticClass()->GetDefaultObject<ULogVisualizerSettings>()->OnSettingChanged().RemoveAll(this);
|
|
}
|
|
|
|
FReply STimeline::OnMouseButtonDown(const FGeometry& MyGeometry, const FPointerEvent& MouseEvent)
|
|
{
|
|
Owner->ChangeSelection(SharedThis(this), MouseEvent);
|
|
|
|
return FReply::Unhandled();
|
|
}
|
|
|
|
FReply STimeline::OnMouseButtonUp(const FGeometry& MyGeometry, const FPointerEvent& MouseEvent)
|
|
{
|
|
return FReply::Unhandled();
|
|
}
|
|
|
|
bool STimeline::IsSelected() const
|
|
{
|
|
// Ask the tree if we are selected
|
|
return Owner->IsNodeSelected(SharedThis(const_cast<STimeline*>(this)));
|
|
}
|
|
|
|
void STimeline::OnSelect()
|
|
{
|
|
if (TimelineBar.IsValid())
|
|
{
|
|
TimelineBar->OnSelect();
|
|
}
|
|
}
|
|
|
|
void STimeline::OnDeselect()
|
|
{
|
|
if (TimelineBar.IsValid())
|
|
{
|
|
TimelineBar->OnDeselect();
|
|
}
|
|
}
|
|
|
|
void STimeline::UpdateVisibility()
|
|
{
|
|
ULogVisualizerSettings* Settings = ULogVisualizerSettings::StaticClass()->GetDefaultObject<ULogVisualizerSettings>();
|
|
const bool bJustIgnore = Settings->bIgnoreTrivialLogs && Entries.Num() <= Settings->TrivialLogsThreshold;
|
|
const bool bIsCollapsed = bJustIgnore || HiddenEntries.Num() == Entries.Num() || (SearchFilter.Len() > 0 && Name.ToString().Find(SearchFilter) == INDEX_NONE);
|
|
SetVisibility(bIsCollapsed ? EVisibility::Collapsed : EVisibility::Visible);
|
|
if (bIsCollapsed)
|
|
{
|
|
Owner->SetSelectionState(SharedThis(this), false, false);
|
|
}
|
|
}
|
|
|
|
void STimeline::UpdateVisibilityForItems()
|
|
{
|
|
HiddenEntries.Reset();
|
|
for (auto& CurrentEntry : Entries)
|
|
{
|
|
TArray<FVisualLoggerCategoryVerbosityPair> OutCategories;
|
|
FVisualLoggerHelpers::GetCategories(CurrentEntry.Entry, OutCategories);
|
|
bool bHasValidCategories = VisualLoggerInterface->HasValidCategories(OutCategories);
|
|
|
|
const ULogVisualizerSettings* Settings = ULogVisualizerSettings::StaticClass()->GetDefaultObject<ULogVisualizerSettings>();
|
|
if (Settings->bSearchInsideLogs && bHasValidCategories && QuickSearchStrng.Len() > 0)
|
|
{
|
|
bool bMatchSearchString = false;
|
|
for (const FVisualLogLine& CurrentLine : CurrentEntry.Entry.LogLines)
|
|
{
|
|
if (CurrentLine.Line.Find(QuickSearchStrng) != INDEX_NONE || CurrentLine.Category.ToString().Find(QuickSearchStrng) != INDEX_NONE)
|
|
{
|
|
bMatchSearchString = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!bMatchSearchString)
|
|
{
|
|
for (const FVisualLogEvent& CurrentEvent : CurrentEntry.Entry.Events)
|
|
{
|
|
if (CurrentEvent.Name.Find(QuickSearchStrng) != INDEX_NONE)
|
|
{
|
|
bMatchSearchString = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!bMatchSearchString)
|
|
{
|
|
HiddenEntries.AddUnique(&CurrentEntry);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (bHasValidCategories == false)
|
|
{
|
|
HiddenEntries.AddUnique(&CurrentEntry);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void STimeline::OnFiltersSearchChanged(const FText& Filter)
|
|
{
|
|
QuickSearchStrng = Filter.ToString();
|
|
OnFiltersChanged();
|
|
}
|
|
|
|
void STimeline::OnFiltersChanged()
|
|
{
|
|
UpdateVisibilityForItems();
|
|
UpdateVisibility();
|
|
}
|
|
|
|
void STimeline::OnSearchChanged(const FText& Filter)
|
|
{
|
|
SearchFilter = Filter.ToString();
|
|
UpdateVisibility();
|
|
}
|
|
|
|
bool STimeline::IsEntryHidden(const FVisualLogDevice::FVisualLogEntryItem& EntryItem) const
|
|
{
|
|
return HiddenEntries.Contains(&EntryItem);
|
|
}
|
|
|
|
void STimeline::HandleLogVisualizerSettingChanged(FName Name)
|
|
{
|
|
UpdateVisibility();
|
|
}
|
|
|
|
void STimeline::Construct(const FArguments& InArgs, TSharedPtr<SVisualLoggerView> VisualLoggerView, TSharedPtr<FSequencerTimeSliderController> TimeSliderController, TSharedPtr<STimelinesContainer> InContainer, const FVisualLogDevice::FVisualLogEntryItem& Entry)
|
|
{
|
|
VisualLoggerInterface = InArgs._VisualLoggerInterface.Get();
|
|
OnGetMenuContent = InArgs._OnGetMenuContent;
|
|
|
|
Owner = InContainer;
|
|
Name = Entry.OwnerName;
|
|
|
|
Entries.Add(Entry);
|
|
OnFiltersChanged();
|
|
|
|
ULogVisualizerSettings::StaticClass()->GetDefaultObject<ULogVisualizerSettings>()->OnSettingChanged().AddRaw(this, &STimeline::HandleLogVisualizerSettingChanged);
|
|
|
|
|
|
ChildSlot
|
|
[
|
|
SNew(SHorizontalBox)
|
|
+ SHorizontalBox::Slot()
|
|
.Padding(FMargin(0, 4, 0, 0))
|
|
.HAlign(HAlign_Fill)
|
|
.VAlign(VAlign_Fill)
|
|
.FillWidth(TAttribute<float>(VisualLoggerView.Get(), &SVisualLoggerView::GetAnimationOutlinerFillPercentage))
|
|
[
|
|
SAssignNew(PopupAnchor, STimelineLabelAnchor, SharedThis(this))
|
|
.OnGetMenuContent(OnGetMenuContent)
|
|
[
|
|
SNew(SBorder)
|
|
.HAlign(HAlign_Fill)
|
|
.Padding(FMargin(0, 0, 4, 0))
|
|
.BorderImage(FCoreStyle::Get().GetBrush("NoBorder"))
|
|
[
|
|
SNew(SBorder)
|
|
.VAlign(VAlign_Center)
|
|
.BorderImage(this, &STimeline::GetBorder)
|
|
.Padding(FMargin(4, 0, 2, 0))
|
|
[
|
|
// Search box for searching through the outliner
|
|
SNew(STextBlock)
|
|
.Text(FString(Name.ToString()))
|
|
.ShadowOffset(FVector2D(1.f, 1.f))
|
|
]
|
|
]
|
|
]
|
|
]
|
|
+ SHorizontalBox::Slot()
|
|
.Padding(FMargin(0, 4, 0, 0))
|
|
.HAlign(HAlign_Left)
|
|
[
|
|
SNew(SBox)
|
|
.Padding(FMargin(0, 0, 0, 0))
|
|
.HAlign(HAlign_Left)
|
|
[
|
|
// Search box for searching through the outliner
|
|
SAssignNew(TimelineBar, STimelineBar, TimeSliderController, SharedThis(this))
|
|
.VisualLoggerInterface(InArgs._VisualLoggerInterface)
|
|
]
|
|
]
|
|
];
|
|
}
|
|
|
|
const FSlateBrush* STimeline::GetBorder() const
|
|
{
|
|
if (IsSelected())
|
|
{
|
|
return FLogVisualizerStyle::Get().GetBrush("ToolBar.Button.Hovered");
|
|
}
|
|
else
|
|
{
|
|
return FLogVisualizerStyle::Get().GetBrush("ToolBar.Button.Normal");
|
|
}
|
|
}
|