Files
UnrealEngineUWP/Engine/Source/Editor/DerivedDataEditor/Private/SDerivedDataDialogs.h
bryan sefcik 8cc129f2b6 IWYU Pass 1 - Engine/Source/Editor/...
#jira
#preflight 6306736ac85b7fef22be7751

[CL 21558583 by bryan sefcik in ue5-main branch]
2022-08-24 22:45:13 -04:00

60 lines
1.3 KiB
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
#include "Types/SlateEnums.h"
#include "Widgets/DeclarativeSyntaxSupport.h"
#include "Widgets/SBoxPanel.h"
#include "Widgets/SCompoundWidget.h"
class SWidget;
class SDerivedDataRemoteStoreDialog : public SCompoundWidget
{
SLATE_BEGIN_ARGS(SDerivedDataRemoteStoreDialog) {}
SLATE_END_ARGS()
void Construct(const FArguments& InArgs);
private:
TSharedRef<SWidget> GetGridPanel();
EActiveTimerReturnType UpdateGridPanels(double InCurrentTime, float InDeltaTime);
SVerticalBox::FSlot* GridSlot = nullptr;
};
class SDerivedDataCacheStatisticsDialog : public SCompoundWidget
{
SLATE_BEGIN_ARGS(SDerivedDataCacheStatisticsDialog) {}
SLATE_END_ARGS()
void Construct(const FArguments& InArgs);
private:
TSharedRef<SWidget> GetGridPanel();
EActiveTimerReturnType UpdateGridPanels(double InCurrentTime, float InDeltaTime);
SVerticalBox::FSlot* GridSlot = nullptr;
};
class SDerivedDataResourceUsageDialog : public SCompoundWidget
{
SLATE_BEGIN_ARGS(SDerivedDataResourceUsageDialog) {}
SLATE_END_ARGS()
void Construct(const FArguments& InArgs);
private:
TSharedRef<SWidget> GetGridPanel();
EActiveTimerReturnType UpdateGridPanels(double InCurrentTime, float InDeltaTime);
SVerticalBox::FSlot* GridSlot = nullptr;
};