Files
UnrealEngineUWP/Engine/Source/Developer/AutomationDriver/Private/AutomatedApplication.h
Ben Marsh 7598af0532 Update copyright notices to 2019.
#rb none
#lockdown Nick.Penwarden

[CL 4662404 by Ben Marsh in Main branch]
2018-12-14 13:41:00 -05:00

44 lines
1.1 KiB
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "GenericPlatform/GenericApplication.h"
#include "GenericPlatform/ICursor.h"
class GenericApplication;
class FGenericApplicationMessageHandler;
class IPassThroughMessageHandlerFactory;
class FAutomatedApplication
: public GenericApplication
{
public:
TSharedRef<FGenericApplicationMessageHandler> GetRealMessageHandler() { return RealMessageHandler.ToSharedRef(); }
virtual void AllowPlatformMessageHandling() = 0;
virtual void DisablePlatformMessageHandling() = 0;
virtual void SetFakeModifierKeys(FModifierKeysState Value) = 0;
FAutomatedApplication(
const TSharedPtr<ICursor>& InCursor)
: GenericApplication(InCursor)
{ }
protected:
TSharedPtr<FGenericApplicationMessageHandler> RealMessageHandler;
private:
};
class FAutomatedApplicationFactory
{
public:
static TSharedRef<FAutomatedApplication> Create(
const TSharedRef<GenericApplication>& PlatformApplication,
const TSharedRef<IPassThroughMessageHandlerFactory>& PassThroughMessageHandlerFactory);
};