You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira #preflight 6306736ac85b7fef22be7751 [CL 21558583 by bryan sefcik in ue5-main branch]
39 lines
1.1 KiB
C++
39 lines
1.1 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Containers/UnrealString.h"
|
|
#include "HAL/Platform.h"
|
|
#include "IDetailCustomization.h"
|
|
#include "Templates/SharedPointer.h"
|
|
|
|
class IDetailLayoutBuilder;
|
|
class IPropertyHandle;
|
|
|
|
enum class ECheckBoxState : uint8;
|
|
|
|
class FSceneCaptureDetails : public IDetailCustomization
|
|
{
|
|
public:
|
|
/** Makes a new instance of this detail layout class for a specific detail view requesting it */
|
|
static TSharedRef<IDetailCustomization> MakeInstance();
|
|
private:
|
|
/** IDetailCustomization interface */
|
|
virtual void CustomizeDetails( IDetailLayoutBuilder& DetailLayout ) override;
|
|
|
|
private:
|
|
/** The show flags property on the SceneCaptureComponent */
|
|
TSharedPtr<IPropertyHandle> ShowFlagSettingsProperty;
|
|
|
|
/**
|
|
* Gets the display state to send to a display filter check box
|
|
*
|
|
* @param The type of checkbox.
|
|
* @return The desired checkbox state.
|
|
*/
|
|
ECheckBoxState OnGetDisplayCheckState(FString ShowFlagName) const;
|
|
|
|
/** Show flag settings changed, so update the scene capture */
|
|
void OnShowFlagCheckStateChanged(ECheckBoxState InNewRadioState, FString FlagName);
|
|
};
|