Files
UnrealEngineUWP/Engine/Source/Developer/TargetPlatform/Private/SDeviceBrowserDefaultPlatformAddWidget.h
James Hopkin 51d5e59cbe Copying //UE4/Dev-Console to Main (//UE4/Main) Source CL: 4825024
#lockdown: Nick.Penwarden
#rb integration


#ROBOMERGE-OWNER: ryan.gerleve
#ROBOMERGE-AUTHOR: joe.barnes
#ROBOMERGE-SOURCE: CL 4825156 in //UE4/Main/...
#ROBOMERGE-BOT: ENGINE (Main -> Dev-Networking)

[CL 4828298 by James Hopkin in Dev-Networking branch]
2019-01-29 04:28:43 -05:00

53 lines
1.3 KiB
C++

// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreTypes.h"
#include "Containers/Array.h"
#include "Templates/SharedPointer.h"
#include "Widgets/DeclarativeSyntaxSupport.h"
#include "Widgets/SCompoundWidget.h"
#include "Widgets/Input/SComboBox.h"
class FString;
class ITargetDeviceServiceManager;
class SButton;
class SEditableTextBox;
class SOverlay;
class SDeviceBrowserDefaultPlatformAddWidget : public SCompoundWidget
{
public:
SLATE_BEGIN_ARGS(SDeviceBrowserDefaultPlatformAddWidget) { }
SLATE_END_ARGS()
public:
/**
* Construct the widget.
*
* @param InArgs The construction arguments.
* @param InDeviceManager The target device manager to use.
*/
void Construct(const FArguments& InArgs, const FString& InPlatformName);
/** Checks if input user provided in all fields is valid */
bool IsInputValid(const FString& InPlatformName);
/** The device identifier text box. */
TSharedPtr<SEditableTextBox> DeviceIdTextBox;
/** The device name text box. */
TSharedPtr<SEditableTextBox> DeviceNameTextBox;
/** The user name text box. */
TSharedPtr<SEditableTextBox> UserNameTextBox;
/** The user password text box. */
TSharedPtr<SEditableTextBox> UserPasswordTextBox;
/** The turnable overlay with user data. */
TSharedPtr<SOverlay> UserDataOverlay;
};