Files
UnrealEngine/Engine/Source/Programs/SubmitTool/Private/View/SubmitToolWindow.h
2025-05-18 13:04:45 +08:00

27 lines
570 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Widgets/SWindow.h"
#include "Widgets/Docking/SDockTab.h"
class FModelInterface;
class SubmitToolWindow
{
public:
SubmitToolWindow(FModelInterface* modelInterface);
TSharedRef<SDockTab> BuildMainTab(TSharedPtr<SWindow> InParentWindow);
private:
TSharedPtr<SDockTab> MainTab;
bool OnCanCloseTab();
void CreateAutoUpdateSubmitToolContent(TSharedPtr<SWindow> InParentWindow);
void CreateMainSubmitToolContent(TSharedPtr<SWindow> InParentWindow);
FModelInterface* ModelInterface;
};