Files
UnrealEngineUWP/Engine/Source/Editor/AddContentDialog/Public/IAddContentDialogModule.h
Frank Fella fe1905e4b1 AddContentDialog - Fix issues.
+ Fix text flicker on tab switch.
+ Don't allow multiple instances of the dialog to be opened.
+ Change the tab order to match the new project dialog.
+ Fix warnings.

[CL 2386074 by Frank Fella in Main branch]
2014-12-11 16:09:40 -05:00

19 lines
579 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ModuleInterface.h"
class FContentSourceProviderManager;
/** Defines methods for interacting with the Add Content Dialog. */
class IAddContentDialogModule : public IModuleInterface
{
public:
/** Gets the object responsible for managing content source providers. */
virtual TSharedRef<FContentSourceProviderManager> GetContentSourceProviderManager() = 0;
/** Creates a dialog for adding existing content to a project. */
virtual void ShowDialog(TSharedRef<SWindow> ParentWindow) = 0;
};