Files
UnrealEngineUWP/Engine/Source/Developer/Datasmith/DatasmithExporterUI/Public/IDirectLinkUI.h
Balazs Toereki 72e74619c3 Revit - Connection and Message dialogs positioning not remembered
Connection/Messages/Settings windows and dialogs now remember position and size within the same session

#jira UE-102277
#rb JeanLuc.Corenthin
#preflight  62c83df7f671e8d2facfa06c

[CL 21008424 by Balazs Toereki in ue5-main branch]
2022-07-08 11:49:17 -04:00

22 lines
502 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "HAL/Platform.h"
class IDirectLinkUI
{
public:
/**
* Open the direct link connections window or move it up front if it's already open
*/
virtual void SetStreamWindowCenter(int InCenterX, int InCenterY) = 0;
virtual void OpenDirectLinkStreamWindow() = 0;
/**
* Get the user defined cache directory for direct link
*/
virtual const TCHAR* GetDirectLinkCacheDirectory() = 0;
virtual ~IDirectLinkUI() = default;
};