271 lines
17 KiB
C++
271 lines
17 KiB
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
/*===========================================================================
|
|
Generated code exported from UnrealHeaderTool.
|
|
DO NOT modify this manually! Edit the corresponding .h files instead!
|
|
===========================================================================*/
|
|
|
|
#include "UObject/GeneratedCppIncludes.h"
|
|
#include "Components/ScaleBoxComponent.h"
|
|
|
|
PRAGMA_DISABLE_DEPRECATION_WARNINGS
|
|
static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT");
|
|
void EmptyLinkFunctionForGeneratedCodeScaleBoxComponent() {}
|
|
|
|
// ********** Begin Cross Module References ********************************************************
|
|
SLATE_API UEnum* Z_Construct_UEnum_Slate_EStretch();
|
|
SLATE_API UEnum* Z_Construct_UEnum_Slate_EStretchDirection();
|
|
SLATECORE_API UEnum* Z_Construct_UEnum_SlateCore_EHorizontalAlignment();
|
|
SLATECORE_API UEnum* Z_Construct_UEnum_SlateCore_EVerticalAlignment();
|
|
UMG_API UClass* Z_Construct_UClass_UScaleBoxComponent();
|
|
UMG_API UClass* Z_Construct_UClass_UScaleBoxComponent_NoRegister();
|
|
UMG_API UClass* Z_Construct_UClass_UUIComponent();
|
|
UPackage* Z_Construct_UPackage__Script_UMG();
|
|
// ********** End Cross Module References **********************************************************
|
|
|
|
// ********** Begin Class UScaleBoxComponent *******************************************************
|
|
void UScaleBoxComponent::GetHorizontalAlignment_WrapperImpl(const void* Object, void* OutValue)
|
|
{
|
|
const UScaleBoxComponent* Obj = (const UScaleBoxComponent*)Object;
|
|
uint8& Result = *(uint8*)OutValue;
|
|
Result = (uint8)Obj->GetHorizontalAlignment();
|
|
}
|
|
void UScaleBoxComponent::SetHorizontalAlignment_WrapperImpl(void* Object, const void* InValue)
|
|
{
|
|
UScaleBoxComponent* Obj = (UScaleBoxComponent*)Object;
|
|
EHorizontalAlignment Value = (EHorizontalAlignment)*(uint8*)InValue;
|
|
Obj->SetHorizontalAlignment(Value);
|
|
}
|
|
void UScaleBoxComponent::GetVerticalAlignment_WrapperImpl(const void* Object, void* OutValue)
|
|
{
|
|
const UScaleBoxComponent* Obj = (const UScaleBoxComponent*)Object;
|
|
uint8& Result = *(uint8*)OutValue;
|
|
Result = (uint8)Obj->GetVerticalAlignment();
|
|
}
|
|
void UScaleBoxComponent::SetVerticalAlignment_WrapperImpl(void* Object, const void* InValue)
|
|
{
|
|
UScaleBoxComponent* Obj = (UScaleBoxComponent*)Object;
|
|
EVerticalAlignment Value = (EVerticalAlignment)*(uint8*)InValue;
|
|
Obj->SetVerticalAlignment(Value);
|
|
}
|
|
void UScaleBoxComponent::GetStretch_WrapperImpl(const void* Object, void* OutValue)
|
|
{
|
|
const UScaleBoxComponent* Obj = (const UScaleBoxComponent*)Object;
|
|
uint8& Result = *(uint8*)OutValue;
|
|
Result = (uint8)Obj->GetStretch();
|
|
}
|
|
void UScaleBoxComponent::SetStretch_WrapperImpl(void* Object, const void* InValue)
|
|
{
|
|
UScaleBoxComponent* Obj = (UScaleBoxComponent*)Object;
|
|
EStretch::Type Value = (EStretch::Type)*(uint8*)InValue;
|
|
Obj->SetStretch(Value);
|
|
}
|
|
void UScaleBoxComponent::GetStretchDirection_WrapperImpl(const void* Object, void* OutValue)
|
|
{
|
|
const UScaleBoxComponent* Obj = (const UScaleBoxComponent*)Object;
|
|
uint8& Result = *(uint8*)OutValue;
|
|
Result = (uint8)Obj->GetStretchDirection();
|
|
}
|
|
void UScaleBoxComponent::SetStretchDirection_WrapperImpl(void* Object, const void* InValue)
|
|
{
|
|
UScaleBoxComponent* Obj = (UScaleBoxComponent*)Object;
|
|
EStretchDirection::Type Value = (EStretchDirection::Type)*(uint8*)InValue;
|
|
Obj->SetStretchDirection(Value);
|
|
}
|
|
void UScaleBoxComponent::GetUserSpecifiedScale_WrapperImpl(const void* Object, void* OutValue)
|
|
{
|
|
const UScaleBoxComponent* Obj = (const UScaleBoxComponent*)Object;
|
|
float& Result = *(float*)OutValue;
|
|
Result = (float)Obj->GetUserSpecifiedScale();
|
|
}
|
|
void UScaleBoxComponent::SetUserSpecifiedScale_WrapperImpl(void* Object, const void* InValue)
|
|
{
|
|
UScaleBoxComponent* Obj = (UScaleBoxComponent*)Object;
|
|
float& Value = *(float*)InValue;
|
|
Obj->SetUserSpecifiedScale(Value);
|
|
}
|
|
void UScaleBoxComponent::GetIgnoreInheritedScale_WrapperImpl(const void* Object, void* OutValue)
|
|
{
|
|
const UScaleBoxComponent* Obj = (const UScaleBoxComponent*)Object;
|
|
bool& Result = *(bool*)OutValue;
|
|
Result = (bool)Obj->IsIgnoreInheritedScale();
|
|
}
|
|
void UScaleBoxComponent::SetIgnoreInheritedScale_WrapperImpl(void* Object, const void* InValue)
|
|
{
|
|
UScaleBoxComponent* Obj = (UScaleBoxComponent*)Object;
|
|
bool& Value = *(bool*)InValue;
|
|
Obj->SetIgnoreInheritedScale(Value);
|
|
}
|
|
FClassRegistrationInfo Z_Registration_Info_UClass_UScaleBoxComponent;
|
|
UClass* UScaleBoxComponent::GetPrivateStaticClass()
|
|
{
|
|
using TClass = UScaleBoxComponent;
|
|
if (!Z_Registration_Info_UClass_UScaleBoxComponent.InnerSingleton)
|
|
{
|
|
GetPrivateStaticClassBody(
|
|
TClass::StaticPackage(),
|
|
TEXT("ScaleBoxComponent"),
|
|
Z_Registration_Info_UClass_UScaleBoxComponent.InnerSingleton,
|
|
StaticRegisterNativesUScaleBoxComponent,
|
|
sizeof(TClass),
|
|
alignof(TClass),
|
|
TClass::StaticClassFlags,
|
|
TClass::StaticClassCastFlags(),
|
|
TClass::StaticConfigName(),
|
|
(UClass::ClassConstructorType)InternalConstructor<TClass>,
|
|
(UClass::ClassVTableHelperCtorCallerType)InternalVTableHelperCtorCaller<TClass>,
|
|
UOBJECT_CPPCLASS_STATICFUNCTIONS_FORCLASS(TClass),
|
|
&TClass::Super::StaticClass,
|
|
&TClass::WithinClass::StaticClass
|
|
);
|
|
}
|
|
return Z_Registration_Info_UClass_UScaleBoxComponent.InnerSingleton;
|
|
}
|
|
UClass* Z_Construct_UClass_UScaleBoxComponent_NoRegister()
|
|
{
|
|
return UScaleBoxComponent::GetPrivateStaticClass();
|
|
}
|
|
struct Z_Construct_UClass_UScaleBoxComponent_Statics
|
|
{
|
|
#if WITH_METADATA
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam Class_MetaDataParams[] = {
|
|
{ "Comment", "/** This is a class for a Component that wraps the Owner widget with a Scale Box */" },
|
|
{ "DevelopmentStatus", "Experimental" },
|
|
{ "IncludePath", "Components/ScaleBoxComponent.h" },
|
|
{ "ModuleRelativePath", "Public/Components/ScaleBoxComponent.h" },
|
|
{ "ToolTip", "This is a class for a Component that wraps the Owner widget with a Scale Box" },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_HorizontalAlignment_MetaData[] = {
|
|
{ "AllowPrivateAccess", "TRUE" },
|
|
{ "Category", "Scale Box Slot" },
|
|
{ "Comment", "/** This property is for the Widget that owns this Component. The alignment of the object horizontally. */" },
|
|
{ "ModuleRelativePath", "Public/Components/ScaleBoxComponent.h" },
|
|
{ "ToolTip", "This property is for the Widget that owns this Component. The alignment of the object horizontally." },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_VerticalAlignment_MetaData[] = {
|
|
{ "AllowPrivateAccess", "TRUE" },
|
|
{ "Category", "Scale Box Slot" },
|
|
{ "Comment", "/** This property is for the Widget that owns this Component. The alignment of the object vertically. */" },
|
|
{ "ModuleRelativePath", "Public/Components/ScaleBoxComponent.h" },
|
|
{ "ToolTip", "This property is for the Widget that owns this Component. The alignment of the object vertically." },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_Stretch_MetaData[] = {
|
|
{ "AllowPrivateAccess", "TRUE" },
|
|
{ "Category", "Stretching" },
|
|
{ "Comment", "/** The stretching rule to apply when content is stretched */" },
|
|
{ "ModuleRelativePath", "Public/Components/ScaleBoxComponent.h" },
|
|
{ "ToolTip", "The stretching rule to apply when content is stretched" },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_StretchDirection_MetaData[] = {
|
|
{ "AllowPrivateAccess", "TRUE" },
|
|
{ "Category", "Stretching" },
|
|
{ "Comment", "/** Controls in what direction content can be scaled */" },
|
|
{ "ModuleRelativePath", "Public/Components/ScaleBoxComponent.h" },
|
|
{ "ToolTip", "Controls in what direction content can be scaled" },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_UserSpecifiedScale_MetaData[] = {
|
|
{ "AllowPrivateAccess", "TRUE" },
|
|
{ "Category", "Stretching" },
|
|
{ "Comment", "/** Optional scale that can be specified by the User. Used only for UserSpecified stretching. */" },
|
|
{ "ModuleRelativePath", "Public/Components/ScaleBoxComponent.h" },
|
|
{ "ToolTip", "Optional scale that can be specified by the User. Used only for UserSpecified stretching." },
|
|
};
|
|
static constexpr UECodeGen_Private::FMetaDataPairParam NewProp_IgnoreInheritedScale_MetaData[] = {
|
|
{ "AllowPrivateAccess", "TRUE" },
|
|
{ "Category", "Stretching" },
|
|
{ "Comment", "/** Optional bool to ignore the inherited scale. Applies inverse scaling to counteract parents before applying the local scale operation. */" },
|
|
{ "ModuleRelativePath", "Public/Components/ScaleBoxComponent.h" },
|
|
{ "ToolTip", "Optional bool to ignore the inherited scale. Applies inverse scaling to counteract parents before applying the local scale operation." },
|
|
};
|
|
#endif // WITH_METADATA
|
|
|
|
// ********** Begin Class UScaleBoxComponent constinit property declarations ***********************
|
|
static const UECodeGen_Private::FBytePropertyParams NewProp_HorizontalAlignment;
|
|
static const UECodeGen_Private::FBytePropertyParams NewProp_VerticalAlignment;
|
|
static const UECodeGen_Private::FBytePropertyParams NewProp_Stretch;
|
|
static const UECodeGen_Private::FBytePropertyParams NewProp_StretchDirection;
|
|
static const UECodeGen_Private::FFloatPropertyParams NewProp_UserSpecifiedScale;
|
|
static void NewProp_IgnoreInheritedScale_SetBit(void* Obj);
|
|
static const UECodeGen_Private::FBoolPropertyParams NewProp_IgnoreInheritedScale;
|
|
static const UECodeGen_Private::FPropertyParamsBase* const PropPointers[];
|
|
// ********** End Class UScaleBoxComponent constinit property declarations *************************
|
|
static UObject* (*const DependentSingletons[])();
|
|
static constexpr FCppClassTypeInfoStatic StaticCppClassTypeInfo = {
|
|
TCppClassTypeTraits<UScaleBoxComponent>::IsAbstract,
|
|
};
|
|
static const UECodeGen_Private::FClassParams ClassParams;
|
|
}; // struct Z_Construct_UClass_UScaleBoxComponent_Statics
|
|
|
|
// ********** Begin Class UScaleBoxComponent Property Definitions **********************************
|
|
const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_HorizontalAlignment = { "HorizontalAlignment", nullptr, (EPropertyFlags)0x0040000000000005, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, &UScaleBoxComponent::SetHorizontalAlignment_WrapperImpl, &UScaleBoxComponent::GetHorizontalAlignment_WrapperImpl, 1, STRUCT_OFFSET(UScaleBoxComponent, HorizontalAlignment), Z_Construct_UEnum_SlateCore_EHorizontalAlignment, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_HorizontalAlignment_MetaData), NewProp_HorizontalAlignment_MetaData) }; // 990570535
|
|
const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_VerticalAlignment = { "VerticalAlignment", nullptr, (EPropertyFlags)0x0040000000000005, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, &UScaleBoxComponent::SetVerticalAlignment_WrapperImpl, &UScaleBoxComponent::GetVerticalAlignment_WrapperImpl, 1, STRUCT_OFFSET(UScaleBoxComponent, VerticalAlignment), Z_Construct_UEnum_SlateCore_EVerticalAlignment, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_VerticalAlignment_MetaData), NewProp_VerticalAlignment_MetaData) }; // 2496106429
|
|
const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_Stretch = { "Stretch", nullptr, (EPropertyFlags)0x0040000000000005, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, &UScaleBoxComponent::SetStretch_WrapperImpl, &UScaleBoxComponent::GetStretch_WrapperImpl, 1, STRUCT_OFFSET(UScaleBoxComponent, Stretch), Z_Construct_UEnum_Slate_EStretch, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_Stretch_MetaData), NewProp_Stretch_MetaData) }; // 1511442967
|
|
const UECodeGen_Private::FBytePropertyParams Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_StretchDirection = { "StretchDirection", nullptr, (EPropertyFlags)0x0040000000000005, UECodeGen_Private::EPropertyGenFlags::Byte, RF_Public|RF_Transient|RF_MarkAsNative, &UScaleBoxComponent::SetStretchDirection_WrapperImpl, &UScaleBoxComponent::GetStretchDirection_WrapperImpl, 1, STRUCT_OFFSET(UScaleBoxComponent, StretchDirection), Z_Construct_UEnum_Slate_EStretchDirection, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_StretchDirection_MetaData), NewProp_StretchDirection_MetaData) }; // 2849668552
|
|
const UECodeGen_Private::FFloatPropertyParams Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_UserSpecifiedScale = { "UserSpecifiedScale", nullptr, (EPropertyFlags)0x0040000000000005, UECodeGen_Private::EPropertyGenFlags::Float, RF_Public|RF_Transient|RF_MarkAsNative, &UScaleBoxComponent::SetUserSpecifiedScale_WrapperImpl, &UScaleBoxComponent::GetUserSpecifiedScale_WrapperImpl, 1, STRUCT_OFFSET(UScaleBoxComponent, UserSpecifiedScale), METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_UserSpecifiedScale_MetaData), NewProp_UserSpecifiedScale_MetaData) };
|
|
void Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_IgnoreInheritedScale_SetBit(void* Obj)
|
|
{
|
|
((UScaleBoxComponent*)Obj)->IgnoreInheritedScale = 1;
|
|
}
|
|
const UECodeGen_Private::FBoolPropertyParams Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_IgnoreInheritedScale = { "IgnoreInheritedScale", nullptr, (EPropertyFlags)0x0040000000000005, UECodeGen_Private::EPropertyGenFlags::Bool | UECodeGen_Private::EPropertyGenFlags::NativeBool, RF_Public|RF_Transient|RF_MarkAsNative, &UScaleBoxComponent::SetIgnoreInheritedScale_WrapperImpl, &UScaleBoxComponent::GetIgnoreInheritedScale_WrapperImpl, 1, sizeof(bool), sizeof(UScaleBoxComponent), &Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_IgnoreInheritedScale_SetBit, METADATA_PARAMS(UE_ARRAY_COUNT(NewProp_IgnoreInheritedScale_MetaData), NewProp_IgnoreInheritedScale_MetaData) };
|
|
const UECodeGen_Private::FPropertyParamsBase* const Z_Construct_UClass_UScaleBoxComponent_Statics::PropPointers[] = {
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_HorizontalAlignment,
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_VerticalAlignment,
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_Stretch,
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_StretchDirection,
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_UserSpecifiedScale,
|
|
(const UECodeGen_Private::FPropertyParamsBase*)&Z_Construct_UClass_UScaleBoxComponent_Statics::NewProp_IgnoreInheritedScale,
|
|
};
|
|
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UScaleBoxComponent_Statics::PropPointers) < 2048);
|
|
// ********** End Class UScaleBoxComponent Property Definitions ************************************
|
|
UObject* (*const Z_Construct_UClass_UScaleBoxComponent_Statics::DependentSingletons[])() = {
|
|
(UObject* (*)())Z_Construct_UClass_UUIComponent,
|
|
(UObject* (*)())Z_Construct_UPackage__Script_UMG,
|
|
};
|
|
static_assert(UE_ARRAY_COUNT(Z_Construct_UClass_UScaleBoxComponent_Statics::DependentSingletons) < 16);
|
|
const UECodeGen_Private::FClassParams Z_Construct_UClass_UScaleBoxComponent_Statics::ClassParams = {
|
|
&UScaleBoxComponent::StaticClass,
|
|
nullptr,
|
|
&StaticCppClassTypeInfo,
|
|
DependentSingletons,
|
|
nullptr,
|
|
Z_Construct_UClass_UScaleBoxComponent_Statics::PropPointers,
|
|
nullptr,
|
|
UE_ARRAY_COUNT(DependentSingletons),
|
|
0,
|
|
UE_ARRAY_COUNT(Z_Construct_UClass_UScaleBoxComponent_Statics::PropPointers),
|
|
0,
|
|
0x008800A0u,
|
|
METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UClass_UScaleBoxComponent_Statics::Class_MetaDataParams), Z_Construct_UClass_UScaleBoxComponent_Statics::Class_MetaDataParams)
|
|
};
|
|
void UScaleBoxComponent::StaticRegisterNativesUScaleBoxComponent()
|
|
{
|
|
}
|
|
UClass* Z_Construct_UClass_UScaleBoxComponent()
|
|
{
|
|
if (!Z_Registration_Info_UClass_UScaleBoxComponent.OuterSingleton)
|
|
{
|
|
UECodeGen_Private::ConstructUClass(Z_Registration_Info_UClass_UScaleBoxComponent.OuterSingleton, Z_Construct_UClass_UScaleBoxComponent_Statics::ClassParams);
|
|
}
|
|
return Z_Registration_Info_UClass_UScaleBoxComponent.OuterSingleton;
|
|
}
|
|
UScaleBoxComponent::UScaleBoxComponent(const FObjectInitializer& ObjectInitializer) : Super(ObjectInitializer) {}
|
|
DEFINE_VTABLE_PTR_HELPER_CTOR_NS(, UScaleBoxComponent);
|
|
UScaleBoxComponent::~UScaleBoxComponent() {}
|
|
// ********** End Class UScaleBoxComponent *********************************************************
|
|
|
|
// ********** Begin Registration *******************************************************************
|
|
struct Z_CompiledInDeferFile_FID_Engine_Source_Runtime_UMG_Public_Components_ScaleBoxComponent_h__Script_UMG_Statics
|
|
{
|
|
static constexpr FClassRegisterCompiledInInfo ClassInfo[] = {
|
|
{ Z_Construct_UClass_UScaleBoxComponent, UScaleBoxComponent::StaticClass, TEXT("UScaleBoxComponent"), &Z_Registration_Info_UClass_UScaleBoxComponent, CONSTRUCT_RELOAD_VERSION_INFO(FClassReloadVersionInfo, sizeof(UScaleBoxComponent), 3070087313U) },
|
|
};
|
|
}; // Z_CompiledInDeferFile_FID_Engine_Source_Runtime_UMG_Public_Components_ScaleBoxComponent_h__Script_UMG_Statics
|
|
static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Source_Runtime_UMG_Public_Components_ScaleBoxComponent_h__Script_UMG_1859701178{
|
|
TEXT("/Script/UMG"),
|
|
Z_CompiledInDeferFile_FID_Engine_Source_Runtime_UMG_Public_Components_ScaleBoxComponent_h__Script_UMG_Statics::ClassInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Source_Runtime_UMG_Public_Components_ScaleBoxComponent_h__Script_UMG_Statics::ClassInfo),
|
|
nullptr, 0,
|
|
nullptr, 0,
|
|
};
|
|
// ********** End Registration *********************************************************************
|
|
|
|
PRAGMA_ENABLE_DEPRECATION_WARNINGS
|