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

17 lines
581 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Delegates/DelegateCombinations.h"
#include "GenericPlatform/GenericPlatformMisc.h"
#include "Internationalization/Text.h"
class SWindow;
class SWidget;
// Largely a copy of UnrealEd Dialogs.h
DECLARE_DELEGATE_TwoParams(FOnMsgDlgResult, const TSharedRef<SWindow>&, EAppReturnType::Type);
EAppReturnType::Type OpenModalMessageDialog_Internal(EAppMsgCategory InMessageCategory, EAppMsgType::Type InMessageType, const FText& InMessage, const FText& InTitle, const TSharedPtr<const SWidget>& ModalParent);