// 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 "Widgets/Layout/SScaleBox.h" PRAGMA_DISABLE_DEPRECATION_WARNINGS static_assert(!UE_WITH_CONSTINIT_UOBJECT, "This generated code can only be compiled with !UE_WITH_CONSTINIT_OBJECT"); void EmptyLinkFunctionForGeneratedCodeSScaleBox() {} // ********** Begin Cross Module References ******************************************************** SLATE_API UEnum* Z_Construct_UEnum_Slate_EStretch(); SLATE_API UEnum* Z_Construct_UEnum_Slate_EStretchDirection(); UPackage* Z_Construct_UPackage__Script_Slate(); // ********** End Cross Module References ********************************************************** // ********** Begin Enum EStretchDirection ********************************************************* static FEnumRegistrationInfo Z_Registration_Info_UEnum_EStretchDirection; static UEnum* EStretchDirection_StaticEnum() { if (!Z_Registration_Info_UEnum_EStretchDirection.OuterSingleton) { Z_Registration_Info_UEnum_EStretchDirection.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_Slate_EStretchDirection, (UObject*)Z_Construct_UPackage__Script_Slate(), TEXT("EStretchDirection")); } return Z_Registration_Info_UEnum_EStretchDirection.OuterSingleton; } template<> SLATE_NON_ATTRIBUTED_API UEnum* StaticEnum() { return EStretchDirection_StaticEnum(); } struct Z_Construct_UEnum_Slate_EStretchDirection_Statics { #if WITH_METADATA static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { { "BlueprintType", "true" }, { "Both.Comment", "/** Will scale the content up or down. */" }, { "Both.Name", "EStretchDirection::Both" }, { "Both.ToolTip", "Will scale the content up or down." }, { "DownOnly.Comment", "/** Will only make the content smaller, will never scale it larger than the content's desired size. */" }, { "DownOnly.Name", "EStretchDirection::DownOnly" }, { "DownOnly.ToolTip", "Will only make the content smaller, will never scale it larger than the content's desired size." }, { "ModuleRelativePath", "Public/Widgets/Layout/SScaleBox.h" }, { "UpOnly.Comment", "/** Will only make the content larger, will never scale it smaller than the content's desired size. */" }, { "UpOnly.Name", "EStretchDirection::UpOnly" }, { "UpOnly.ToolTip", "Will only make the content larger, will never scale it smaller than the content's desired size." }, }; #endif // WITH_METADATA static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { { "EStretchDirection::Both", (int64)EStretchDirection::Both }, { "EStretchDirection::DownOnly", (int64)EStretchDirection::DownOnly }, { "EStretchDirection::UpOnly", (int64)EStretchDirection::UpOnly }, }; static const UECodeGen_Private::FEnumParams EnumParams; }; // struct Z_Construct_UEnum_Slate_EStretchDirection_Statics const UECodeGen_Private::FEnumParams Z_Construct_UEnum_Slate_EStretchDirection_Statics::EnumParams = { (UObject*(*)())Z_Construct_UPackage__Script_Slate, nullptr, "EStretchDirection", "EStretchDirection::Type", Z_Construct_UEnum_Slate_EStretchDirection_Statics::Enumerators, RF_Public|RF_Transient|RF_MarkAsNative, UE_ARRAY_COUNT(Z_Construct_UEnum_Slate_EStretchDirection_Statics::Enumerators), EEnumFlags::None, (uint8)UEnum::ECppForm::Namespaced, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_Slate_EStretchDirection_Statics::Enum_MetaDataParams), Z_Construct_UEnum_Slate_EStretchDirection_Statics::Enum_MetaDataParams) }; UEnum* Z_Construct_UEnum_Slate_EStretchDirection() { if (!Z_Registration_Info_UEnum_EStretchDirection.InnerSingleton) { UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EStretchDirection.InnerSingleton, Z_Construct_UEnum_Slate_EStretchDirection_Statics::EnumParams); } return Z_Registration_Info_UEnum_EStretchDirection.InnerSingleton; } // ********** End Enum EStretchDirection *********************************************************** // ********** Begin Enum EStretch ****************************************************************** static FEnumRegistrationInfo Z_Registration_Info_UEnum_EStretch; static UEnum* EStretch_StaticEnum() { if (!Z_Registration_Info_UEnum_EStretch.OuterSingleton) { Z_Registration_Info_UEnum_EStretch.OuterSingleton = GetStaticEnum(Z_Construct_UEnum_Slate_EStretch, (UObject*)Z_Construct_UPackage__Script_Slate(), TEXT("EStretch")); } return Z_Registration_Info_UEnum_EStretch.OuterSingleton; } template<> SLATE_NON_ATTRIBUTED_API UEnum* StaticEnum() { return EStretch_StaticEnum(); } struct Z_Construct_UEnum_Slate_EStretch_Statics { #if WITH_METADATA static constexpr UECodeGen_Private::FMetaDataPairParam Enum_MetaDataParams[] = { { "BlueprintType", "true" }, { "Fill.Comment", "/** Scales the content non-uniformly filling the entire space of the area. */" }, { "Fill.Name", "EStretch::Fill" }, { "Fill.ToolTip", "Scales the content non-uniformly filling the entire space of the area." }, { "ModuleRelativePath", "Public/Widgets/Layout/SScaleBox.h" }, { "None.Comment", "/** Does not scale the content. */" }, { "None.Name", "EStretch::None" }, { "None.ToolTip", "Does not scale the content." }, { "ScaleBySafeZone.Comment", "/** Scales the content according to the size of the safe zone currently applied to the viewport. */" }, { "ScaleBySafeZone.Name", "EStretch::ScaleBySafeZone" }, { "ScaleBySafeZone.ToolTip", "Scales the content according to the size of the safe zone currently applied to the viewport." }, { "ScaleToFill.Comment", "/**\n\x09\x09 * Scales the content uniformly (preserving aspect ratio), until all sides meet \n\x09\x09 * or exceed the size of the area. Will result in clipping the longer side.\n\x09\x09 */" }, { "ScaleToFill.Name", "EStretch::ScaleToFill" }, { "ScaleToFill.ToolTip", "Scales the content uniformly (preserving aspect ratio), until all sides meet\nor exceed the size of the area. Will result in clipping the longer side." }, { "ScaleToFit.Comment", "/**\n\x09\x09 * Scales the content uniformly (preserving aspect ratio) \n\x09\x09 * until it can no longer scale the content without clipping it.\n\x09\x09 */" }, { "ScaleToFit.Name", "EStretch::ScaleToFit" }, { "ScaleToFit.ToolTip", "Scales the content uniformly (preserving aspect ratio)\nuntil it can no longer scale the content without clipping it." }, { "ScaleToFitX.Comment", "/**\n\x09\x09 * Scales the content uniformly (preserving aspect ratio) \n\x09\x09 * until it can no longer scale the content without clipping it along the x-axis, \n\x09\x09 * the y-axis can/will be clipped.\n\x09\x09 */" }, { "ScaleToFitX.Name", "EStretch::ScaleToFitX" }, { "ScaleToFitX.ToolTip", "Scales the content uniformly (preserving aspect ratio)\nuntil it can no longer scale the content without clipping it along the x-axis,\nthe y-axis can/will be clipped." }, { "ScaleToFitY.Comment", "/**\n\x09\x09 * Scales the content uniformly (preserving aspect ratio) \n\x09\x09 * until it can no longer scale the content without clipping it along the y-axis, \n\x09\x09 * the x-axis can/will be clipped.\n\x09\x09 */" }, { "ScaleToFitY.Name", "EStretch::ScaleToFitY" }, { "ScaleToFitY.ToolTip", "Scales the content uniformly (preserving aspect ratio)\nuntil it can no longer scale the content without clipping it along the y-axis,\nthe x-axis can/will be clipped." }, { "UserSpecified.Comment", "/** Scales the content by the scale specified by the user. */" }, { "UserSpecified.Name", "EStretch::UserSpecified" }, { "UserSpecified.ToolTip", "Scales the content by the scale specified by the user." }, { "UserSpecifiedWithClipping.Comment", "/** Scales the content by the scale specified by the user and also clips. */" }, { "UserSpecifiedWithClipping.Name", "EStretch::UserSpecifiedWithClipping" }, { "UserSpecifiedWithClipping.ToolTip", "Scales the content by the scale specified by the user and also clips." }, }; #endif // WITH_METADATA static constexpr UECodeGen_Private::FEnumeratorParam Enumerators[] = { { "EStretch::None", (int64)EStretch::None }, { "EStretch::Fill", (int64)EStretch::Fill }, { "EStretch::ScaleToFit", (int64)EStretch::ScaleToFit }, { "EStretch::ScaleToFitX", (int64)EStretch::ScaleToFitX }, { "EStretch::ScaleToFitY", (int64)EStretch::ScaleToFitY }, { "EStretch::ScaleToFill", (int64)EStretch::ScaleToFill }, { "EStretch::ScaleBySafeZone", (int64)EStretch::ScaleBySafeZone }, { "EStretch::UserSpecified", (int64)EStretch::UserSpecified }, { "EStretch::UserSpecifiedWithClipping", (int64)EStretch::UserSpecifiedWithClipping }, }; static const UECodeGen_Private::FEnumParams EnumParams; }; // struct Z_Construct_UEnum_Slate_EStretch_Statics const UECodeGen_Private::FEnumParams Z_Construct_UEnum_Slate_EStretch_Statics::EnumParams = { (UObject*(*)())Z_Construct_UPackage__Script_Slate, nullptr, "EStretch", "EStretch::Type", Z_Construct_UEnum_Slate_EStretch_Statics::Enumerators, RF_Public|RF_Transient|RF_MarkAsNative, UE_ARRAY_COUNT(Z_Construct_UEnum_Slate_EStretch_Statics::Enumerators), EEnumFlags::None, (uint8)UEnum::ECppForm::Namespaced, METADATA_PARAMS(UE_ARRAY_COUNT(Z_Construct_UEnum_Slate_EStretch_Statics::Enum_MetaDataParams), Z_Construct_UEnum_Slate_EStretch_Statics::Enum_MetaDataParams) }; UEnum* Z_Construct_UEnum_Slate_EStretch() { if (!Z_Registration_Info_UEnum_EStretch.InnerSingleton) { UECodeGen_Private::ConstructUEnum(Z_Registration_Info_UEnum_EStretch.InnerSingleton, Z_Construct_UEnum_Slate_EStretch_Statics::EnumParams); } return Z_Registration_Info_UEnum_EStretch.InnerSingleton; } // ********** End Enum EStretch ******************************************************************** // ********** Begin Registration ******************************************************************* struct Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Slate_Public_Widgets_Layout_SScaleBox_h__Script_Slate_Statics { static constexpr FEnumRegisterCompiledInInfo EnumInfo[] = { { EStretchDirection_StaticEnum, TEXT("EStretchDirection"), &Z_Registration_Info_UEnum_EStretchDirection, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 2849668552U) }, { EStretch_StaticEnum, TEXT("EStretch"), &Z_Registration_Info_UEnum_EStretch, CONSTRUCT_RELOAD_VERSION_INFO(FEnumReloadVersionInfo, 1511442967U) }, }; }; // Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Slate_Public_Widgets_Layout_SScaleBox_h__Script_Slate_Statics static FRegisterCompiledInInfo Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Slate_Public_Widgets_Layout_SScaleBox_h__Script_Slate_557497736{ TEXT("/Script/Slate"), nullptr, 0, nullptr, 0, Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Slate_Public_Widgets_Layout_SScaleBox_h__Script_Slate_Statics::EnumInfo, UE_ARRAY_COUNT(Z_CompiledInDeferFile_FID_Engine_Source_Runtime_Slate_Public_Widgets_Layout_SScaleBox_h__Script_Slate_Statics::EnumInfo), }; // ********** End Registration ********************************************************************* PRAGMA_ENABLE_DEPRECATION_WARNINGS