You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rnx #rb none #ROBOMERGE-SOURCE: CL 10869241 via CL 10869527 via CL 10869904 #ROBOMERGE-BOT: (v613-10869866) [CL 10870586 by ryan durand in Main branch]
63 lines
1.8 KiB
C++
63 lines
1.8 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "UObject/WeakObjectPtr.h"
|
|
#include "UObject/WeakFieldPtr.h"
|
|
#include "Widgets/DeclarativeSyntaxSupport.h"
|
|
#include "Widgets/SCompoundWidget.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "ConfigEditor"
|
|
|
|
class FConfigCacheIni;
|
|
class IDetailsView;
|
|
class STargetPlatformSelector;
|
|
class UConfigHierarchyPropertyView;
|
|
|
|
/*-----------------------------------------------------------------------------
|
|
SConfigEditor
|
|
-----------------------------------------------------------------------------*/
|
|
class SConfigEditor : public SCompoundWidget
|
|
{
|
|
public:
|
|
SLATE_USER_ARGS(SConfigEditor) {}
|
|
SLATE_END_ARGS()
|
|
|
|
//~ Begin SCompoundWidget|SWidget Interface
|
|
virtual void Construct(const FArguments& InArgs, TWeakFieldPtr<FProperty> InEditProperty);
|
|
//~ End SCompoundWidget|SWidget Interface
|
|
|
|
private:
|
|
/**
|
|
* Handle a change of target platform in the Config Editor UI
|
|
*/
|
|
void HandleTargetPlatformChanged();
|
|
|
|
// Panel used to select an available target platform.
|
|
TSharedPtr<class STargetPlatformSelector> TargetPlatformSelection;
|
|
|
|
/**
|
|
* Create the displayable area object for the selected platform
|
|
*/
|
|
void CreateDisplayObjectForSelectedTargetPlatform();
|
|
|
|
private:
|
|
// This is an object we use to create a config hierarchy display for a property
|
|
TWeakObjectPtr<UConfigHierarchyPropertyView> PropHelper;
|
|
|
|
// The display area for the config hierarchy editor.
|
|
TSharedPtr<SWidget> PropertyValueEditor;
|
|
|
|
// We keep a cache of config files for the provided platforms.
|
|
TSharedPtr<FConfigCacheIni> LocalConfigCache;
|
|
|
|
// The bulk of the display of this hierarchy.
|
|
TSharedPtr<IDetailsView> DetailsView;
|
|
|
|
// Keep track of the property we are viewing.
|
|
TWeakFieldPtr<FProperty> EditProperty;
|
|
};
|
|
|
|
#undef LOCTEXT_NAMESPACE
|