className
stringlengths 1
167
| headerPath
stringlengths 14
166
| description
stringlengths 0
1.62k
| module
stringlengths 0
76
| code
stringlengths 0
11.4k
| variables
listlengths 0
395
|
---|---|---|---|---|---|
ITypedElementDataStorageUiInterface::CreateWidgetConstructors | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | Finds matching widget constructors for provided columns, preferring longer matches over shorter matches. The provided list of columns will be updated to contain all columns that couldn't be matched. | TypedElementFramework | void CreateWidgetConstructors ( [FName](API\Runtime\Core\UObject\FName) Purpose, [EMatchApproach](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2\EMatchApproach) MatchApproach, [TArray](API\Runtime\Core\Containers\TArray)< [TWeakObjectPtr](API\Runtime\Core\UObject\TWeakObjectPtr)< const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) >> & Columns, TConstArrayView< [TypedElement::ColumnUtils::Argument](API\Runtime\TypedElementFramework\Elements\Framework\Argument) > Arguments, const [WidgetConstructorCallback](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2\WidgetConstructo-) & Callback ) | [] |
EMatchApproach | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | TypedElementFramework | enum EMatchApproach { LongestMatch, ExactMatch, SingleMatch, } | [] |
|
EPurposeType | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | TypedElementFramework | enum EPurposeType { Generic, UniqueByName, UniqueByNameAndColumn, } | [] |
|
ITypedElementDataStorageUiInterface::ListWidgetPurposes | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | Calls the provided callback for all known registered widget purposes. | TypedElementFramework | void ListWidgetPurposes ( const [WidgetPurposeCallback](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2\WidgetPurposeCal-) & Callback ) const | [] |
ITypedElementDataStorageUiInterface::RegisterWidgetFactory | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | Registers a widget factory that will be called when the purpose it's registered under is requested. This version registers a generic type. Construction using these are typically cheaper as they can avoid copying the Constructor and take up less memory. The downside is that they can't store additional configuration options. If the purpose has not been registered the factory will not be recorded and a warning will be printed. If registration is successful true will be returned otherwise false. | TypedElementFramework | bool RegisterWidgetFactory ( [FName](API\Runtime\Core\UObject\FName) Purpose, const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) * Constructor ) | [] |
ITypedElementDataStorageUiInterface::RegisterWidgetFactory | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | Registers a widget factory that will be called when the purpose it's registered under is requested. This version uses a previously created instance of the Constructor. The benefit of this is that it store configuration options. The downside is that it takes up more memory and requires copying when it's used. If the purpose has not been registered the factory will not be recorded and a warning will be printed. If registration is successful true will be returned otherwise false. | TypedElementFramework | bool RegisterWidgetFactory ( [FName](API\Runtime\Core\UObject\FName) Purpose, [TUniquePtr](API\Runtime\Core\Templates\TUniquePtr)< [FTypedElementWidgetConstructor](API\Runtime\TypedElementFramework\Elements\Interfaces\FTypedElementWid-) > && Constructor ) | [] |
ITypedElementDataStorageUiInterface::RegisterWidgetFactory | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | Registers a widget factory that will be called when the purpose it's registered under is requested. This version registers a generic type. Construction using these are typically cheaper as they can avoid copying the Constructor and take up less memory. The downside is that they can't store additional configuration options. If the purpose has not been registered the factory will not be recorded and a warning will be printed. The provided columns will be used when matching the factory during widget construction. If registration is successful true will be returned otherwise false. | TypedElementFramework | bool RegisterWidgetFactory ( [FName](API\Runtime\Core\UObject\FName) Purpose, const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) * Constructor, [TArray](API\Runtime\Core\Containers\TArray)< [TWeakObjectPtr](API\Runtime\Core\UObject\TWeakObjectPtr)< const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) >> Columns ) | [] |
ITypedElementDataStorageUiInterface::RegisterWidgetFactory | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | Registers a widget factory that will be called when the purpose it's registered under is requested. This version uses a previously created instance of the Constructor. The benefit of this is that it store configuration options. The downside is that it takes up more memory and requires copying when it's used. If the purpose has not been registered the factory will not be recorded and a warning will be printed. The provided columns will be used when matching the factory during widget construction. If registration is successful true will be returned otherwise false. | TypedElementFramework | bool RegisterWidgetFactory ( [FName](API\Runtime\Core\UObject\FName) Purpose, [TUniquePtr](API\Runtime\Core\Templates\TUniquePtr)< [FTypedElementWidgetConstructor](API\Runtime\TypedElementFramework\Elements\Interfaces\FTypedElementWid-) > && Constructor, [TArray](API\Runtime\Core\Containers\TArray)< [TWeakObjectPtr](API\Runtime\Core\UObject\TWeakObjectPtr)< const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) >> Columns ) | [] |
ITypedElementDataStorageUiInterface::RegisterWidgetPurpose | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | Register a widget purpose. Widget purposes indicates how widgets can be used and categorizes/organizes the available widget factories. If the same purpose is registered multiple times, only the first will be recorded and later registrations will be silently ignored. | TypedElementFramework | void RegisterWidgetPurpose ( [FName](API\Runtime\Core\UObject\FName) Purpose, [EPurposeType](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2\EPurposeType) Type, [FText](API\Runtime\Core\Internationalization\FText) Description ) | [] |
ITypedElementDataStorageUiInterface::CreateWidgetConstructors | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | Creates widget constructors for the requested purpose. | TypedElementFramework | void CreateWidgetConstructors ( [FName](API\Runtime\Core\UObject\FName) Purpose, TConstArrayView< [TypedElement::ColumnUtils::Argument](API\Runtime\TypedElementFramework\Elements\Framework\Argument) > Arguments, const [WidgetConstructorCallback](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2\WidgetConstructo-) & Callback ) | [] |
ITypedElementDataStorageInterface | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageInterface.h | TypedElementFramework | class ITypedElementDataStorageInterface | [] |
|
WidgetCreatedCallback | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | TypedElementFramework | typedef [TFunctionRef](API\Runtime\Core\GenericPlatform\TFunctionRef)< void(const [TSharedRef](API\Runtime\Core\Templates\TSharedRef)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > &NewWidget, TypedElementRowHandle Row)> WidgetCreatedCallback | [] |
|
WidgetConstructorCallback | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | TypedElementFramework | typedef [TFunctionRef](API\Runtime\Core\GenericPlatform\TFunctionRef)< bool([TUniquePtr](API\Runtime\Core\Templates\TUniquePtr)< [FTypedElementWidgetConstructor](API\Runtime\TypedElementFramework\Elements\Interfaces\FTypedElementWid-) >, TConstArrayView< [TWeakObjectPtr](API\Runtime\Core\UObject\TWeakObjectPtr)< const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) >>)> WidgetConstructorCallback | [] |
|
WidgetPurposeCallback | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | TypedElementFramework | typedef [TFunctionRef](API\Runtime\Core\GenericPlatform\TFunctionRef)< void([FName](API\Runtime\Core\UObject\FName), [EPurposeType](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2\EPurposeType), const [FText](API\Runtime\Core\Internationalization\FText) &)> WidgetPurposeCallback | [] |
|
ITypedElementDataStorageUiInterface | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | TypedElementFramework | class ITypedElementDataStorageUiInterface | [] |
|
WithNoInitConstructor | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | TypedElementFramework | enum &123; WithNoInitConstructor = true &125; | [] |
|
WithPureVirtual | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | TypedElementFramework | enum &123; WithPureVirtual = true &125; | [] |
|
TStructOpsTypeTraits< FTypedElementWidgetConstructor > | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | TypedElementFramework | template<> struct TStructOpsTypeTraits< FTypedElementWidgetConstructor > : public [TStructOpsTypeTraitsBase2< FTypedElementWidgetConstructor >](API\Runtime\CoreUObject\UObject\TStructOpsTypeTraitsBase2) | [] |
|
TTypedElementColumnTypeList::operator TConstArrayView< const UScriptStruct * > | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageInterface.h | TypedElementFramework | operator TConstArrayView< const UScriptStruct * >() const | [] |
|
bAvailable | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageCompatibilityInterface.h | TypedElementFramework | static bAvailable = false; | [] |
|
bAvailable | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageCompatibilityInterface.h | TypedElementFramework | static bAvailable = false; | [] |
|
TTypedElementColumnTypeList | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageInterface.h | Convenience structure that can be used to pass a list of columns to functions that don't have an dedicate templated version that takes a column list directly, for instance when multiple column lists are used. Note that the returned array view is only available while this object is constructed, so care must be taken with functions that return a const array view. | TypedElementFramework | template<typename... Columns> struct TTypedElementColumnTypeList | [
{
"type": "constUScriptSt...",
"name": "ColumnTypes",
"description": ""
}
] |
HasIsHotReloadableVariable | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageCompatibilityInterface.h | TypedElementFramework | template<typename T, typename> struct HasIsHotReloadableVariable | [] |
|
HasRequiresGameThreadVariable | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageCompatibilityInterface.h | TypedElementFramework | template<typename T, typename> struct HasRequiresGameThreadVariable | [] |
|
TTypedElementSubsystemTraits::IsHotReloadable | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageCompatibilityInterface.h | TypedElementFramework | static constexpr bool IsHotReloadable() | [] |
|
TTypedElementSubsystemTraits::RequiresGameThread | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageCompatibilityInterface.h | TypedElementFramework | static constexpr bool RequiresGameThread() | [] |
|
TTypedElementSubsystemTraits | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageCompatibilityInterface.h | TypedElementFramework | template<typename Subsystem> struct TTypedElementSubsystemTraits | [] |
|
UTypedElementDataStorageCompatibilityInterface | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageCompatibilityInterface.h | TypedElementFramework | class UTypedElementDataStorageCompatibilityInterface : public [UInterface](API\Runtime\CoreUObject\UObject\UInterface) | [] |
|
UTypedElementDataStorageFactory::GetOrder | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageFactory.h | Returns the order registration will be executed. Factories with a lower number will be executed before factories with a higher number. | TypedElementFramework | virtual uint8 GetOrder() const | [] |
UTypedElementDataStorageFactory::RegisterQueries | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageFactory.h | TypedElementFramework | virtual void RegisterQueries ( [ITypedElementDataStorageInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_1) & DataStorage ) const | [] |
|
UTypedElementDataStorageFactory::RegisterTables | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageFactory.h | TypedElementFramework | virtual void RegisterTables ( [ITypedElementDataStorageInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_1) & DataStorage ) const | [] |
|
UTypedElementDataStorageFactory::RegisterTickGroups | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageFactory.h | TypedElementFramework | virtual void RegisterTickGroups ( [ITypedElementDataStorageInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_1) & DataStorage ) const | [] |
|
UTypedElementDataStorageFactory::RegisterWidgetConstructors | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageFactory.h | TypedElementFramework | virtual void RegisterWidgetConstructors ( [ITypedElementDataStorageInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_1) & DataStorage, [ITypedElementDataStorageUiInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2) & DataStorageUi ) const | [] |
|
UTypedElementDataStorageFactory::RegisterWidgetPurposes | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageFactory.h | TypedElementFramework | virtual void RegisterWidgetPurposes ( [ITypedElementDataStorageUiInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2) & DataStorageUi ) const | [] |
|
UTypedElementDataStorageFactory::~UTypedElementDataStorageFactory | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageFactory.h | TypedElementFramework | ~UTypedElementDataStorageFactory() | [] |
|
UTypedElementDataStorageFactory | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageFactory.h | Base class that can be used to register various elements, such as queries and widgets, with the Typed Elements Data Storage. | TypedElementFramework | class UTypedElementDataStorageFactory : public [UObject](API\Runtime\CoreUObject\UObject\UObject) | [] |
UTypedElementDataStorageInterface | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageInterface.h | TypedElementFramework | class UTypedElementDataStorageInterface : public [UInterface](API\Runtime\CoreUObject\UObject\UInterface) | [] |
|
UTypedElementDataStorageUiInterface | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h | TypedElementFramework | class UTypedElementDataStorageUiInterface : public [UInterface](API\Runtime\CoreUObject\UObject\UInterface) | [] |
|
FTypedElementInterfaceCustomizationRegistryBase::GetElementTypeIdFromName | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | Given an element name, attempt to get its registered type ID from the global registry.
The registered type ID, or 0 if the element name is not registered. | TypedElementRuntime | FTypedHandleTypeId GetElementTypeIdFromName ( const [FName](API\Runtime\Core\UObject\FName) InElementTypeName ) const | [] |
FTypedElementInterfaceCustomizationRegistryBase::GetElementTypeIdFromNameChecked | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | Given an element name, attempt to get its registered type ID from the global registry.
The registered type ID, or asserts if the element name is not registered. | TypedElementRuntime | FTypedHandleTypeId GetElementTypeIdFromNameChecked ( const [FName](API\Runtime\Core\UObject\FName) InElementTypeName ) const | [] |
FTypedElementInterfaceCustomizationRegistryBase | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | Non-templated base class for the interface customization registry. | TypedElementRuntime | class FTypedElementInterfaceCustomizationRegistryBase | [] |
FTypedElementInterfaceCustomizationRegistryBase::~FTypedElementInterfaceCustomizationRegistryBase | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | TypedElementRuntime | virtual ~FTypedElementInterfaceCustomizationRegistryBase() | [] |
|
FTypedElementSelectionCustomization::AllowSelectionModifiers | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | virtual bool AllowSelectionModifiers ( const [TTypedElement](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElement)< [ITypedElementSelectionInterface](API\Runtime\TypedElementRuntime\Elements\Interfaces\ITypedElementSel-) > & InElementSelectionHandle, FTypedElementListConstRef InSelectionSet ) | [] |
|
FTypedElementSelectionCustomization::CanDeselectElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | virtual bool CanDeselectElement ( const [TTypedElement](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElement)< [ITypedElementSelectionInterface](API\Runtime\TypedElementRuntime\Elements\Interfaces\ITypedElementSel-) > & InElementSelectionHandle, const [FTypedElementSelectionOptions](API\Runtime\TypedElementRuntime\Elements\Interfaces\FTypedElementSelectionOptions) & InSelectionOptions ) | [] |
|
FTypedElementSelectionCustomization::CanSelectElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | virtual bool CanSelectElement ( const [TTypedElement](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElement)< [ITypedElementSelectionInterface](API\Runtime\TypedElementRuntime\Elements\Interfaces\ITypedElementSel-) > & InElementSelectionHandle, const [FTypedElementSelectionOptions](API\Runtime\TypedElementRuntime\Elements\Interfaces\FTypedElementSelectionOptions) & InSelectionOptions ) | [] |
|
FTypedElementSelectionCustomization::DeselectElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | virtual bool DeselectElement ( const [TTypedElement](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElement)< [ITypedElementSelectionInterface](API\Runtime\TypedElementRuntime\Elements\Interfaces\ITypedElementSel-) > & InElementSelectionHandle, FTypedElementListRef InSelectionSet, const [FTypedElementSelectionOptions](API\Runtime\TypedElementRuntime\Elements\Interfaces\FTypedElementSelectionOptions) & InSelectionOptions ) | [] |
|
FTypedElementSelectionCustomization::GetNormalizedElements | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | virtual void GetNormalizedElements ( const [TTypedElement](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElement)< [ITypedElementSelectionInterface](API\Runtime\TypedElementRuntime\Elements\Interfaces\ITypedElementSel-) > & InElementSelectionHandle, FTypedElementListConstRef InSelectionSet, const [FTypedElementSelectionNormalizationOptions](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSel-_1) & InNormalizationOptions, FTypedElementListRef OutNormalizedElements ) | [] |
|
FTypedElementSelectionCustomization::GetSelectionElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | virtual [FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle) GetSelectionElement ( const [TTypedElement](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElement)< [ITypedElementSelectionInterface](API\Runtime\TypedElementRuntime\Elements\Interfaces\ITypedElementSel-) > & InElementSelectionHandle, FTypedElementListConstRef InCurrentSelection, const ETypedElementSelectionMethod InSelectionMethod ) | [] |
|
FTypedElementSelectionCustomization::IsElementSelected | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | virtual bool IsElementSelected ( const [TTypedElement](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElement)< [ITypedElementSelectionInterface](API\Runtime\TypedElementRuntime\Elements\Interfaces\ITypedElementSel-) > & InElementSelectionHandle, FTypedElementListConstRef InSelectionSet, const [FTypedElementIsSelectedOptions](API\Runtime\TypedElementRuntime\Elements\Interfaces\FTypedElementIsS-) & InSelectionOptions ) | [] |
|
FTypedElementSelectionCustomization::SelectElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | virtual bool SelectElement ( const [TTypedElement](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElement)< [ITypedElementSelectionInterface](API\Runtime\TypedElementRuntime\Elements\Interfaces\ITypedElementSel-) > & InElementSelectionHandle, FTypedElementListRef InSelectionSet, const [FTypedElementSelectionOptions](API\Runtime\TypedElementRuntime\Elements\Interfaces\FTypedElementSelectionOptions) & InSelectionOptions ) | [] |
|
FTypedElementSelectionCustomization::~FTypedElementSelectionCustomization | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | virtual ~FTypedElementSelectionCustomization() | [] |
|
FTypedElementSelectionCustomization | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | Customization type used to allow asset editors (such as the level editor) to override the base behavior of element selection, by injecting extra pre/post selection logic around the call into the selection interface for an element type. | TypedElementRuntime | class FTypedElementSelectionCustomization | [] |
FTypedElementSelectionNormalizationOptions::ExpandGroups | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | bool ExpandGroups() const | [] |
|
FTypedElementSelectionNormalizationOptions::FollowAttachment | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | bool FollowAttachment() const | [] |
|
FTypedElementSelectionNormalizationOptions::SetExpandGroups | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | [FTypedElementSelectionNormalizationOptions](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSel-_1) & SetExpandGroups ( const bool InExpandGroups ) | [] |
|
FTypedElementSelectionNormalizationOptions::SetFollowAttachment | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | [FTypedElementSelectionNormalizationOptions](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSel-_1) & SetFollowAttachment ( const bool InFollowAttachment ) | [] |
|
FTypedElementSelectionNormalizationOptions | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | struct FTypedElementSelectionNormalizationOptions | [] |
|
FTypedElementSelectionSetElement::AllowSelectionModifiers | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | bool AllowSelectionModifiers() const | [] |
|
FTypedElementSelectionSetElement::CanDeselectElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | bool CanDeselectElement ( const [FTypedElementSelectionOptions](API\Runtime\TypedElementRuntime\Elements\Interfaces\FTypedElementSelectionOptions) & InSelectionOptions ) const | [] |
|
FTypedElementSelectionSetElement::CanSelectElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | bool CanSelectElement ( const [FTypedElementSelectionOptions](API\Runtime\TypedElementRuntime\Elements\Interfaces\FTypedElementSelectionOptions) & InSelectionOptions ) const | [] |
|
FTypedElementSelectionSetElement::DeselectElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | bool DeselectElement ( const [FTypedElementSelectionOptions](API\Runtime\TypedElementRuntime\Elements\Interfaces\FTypedElementSelectionOptions) & InSelectionOptions ) const | [] |
|
FTypedElementSelectionSetElement::GetNormalizedElements | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | void GetNormalizedElements ( const [FTypedElementSelectionNormalizationOptions](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSel-_1) & InNormalizationOptions, FTypedElementListRef OutNormalizedElements ) const | [] |
|
FTypedElementSelectionSetElement::GetSelectionElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | [FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle) GetSelectionElement ( const ETypedElementSelectionMethod InSelectionMethod ) const | [] |
|
FTypedElementSelectionSetElement::IsElementSelected | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | bool IsElementSelected ( const [FTypedElementIsSelectedOptions](API\Runtime\TypedElementRuntime\Elements\Interfaces\FTypedElementIsS-) & InSelectionOptions ) const | [] |
|
FTypedElementSelectionSetElement::IsSet | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | bool IsSet() const | [] |
|
FTypedElementSelectionSetElement::operator bool | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | operator bool() const | [] |
|
FTypedElementSelectionSetElement::operator= | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | [FTypedElementSelectionSetElement](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSel-_2) & operator= ( [FTypedElementSelectionSetElement](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSel-_2) && ) | [] |
|
FTypedElementSelectionSetElement::operator= | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | [FTypedElementSelectionSetElement](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSel-_2) & operator= ( const [FTypedElementSelectionSetElement](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSel-_2) & ) | [] |
|
FTypedElementSelectionSetElement::SelectElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | bool SelectElement ( const [FTypedElementSelectionOptions](API\Runtime\TypedElementRuntime\Elements\Interfaces\FTypedElementSelectionOptions) & InSelectionOptions ) const | [] |
|
FTypedElementSelectionSetElement::FTypedElementSelectionSetElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | FTypedElementSelectionSetElement() | [] |
|
FTypedElementSelectionSetElement::FTypedElementSelectionSetElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | FTypedElementSelectionSetElement ( const [FTypedElementSelectionSetElement](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSel-_2) & ) | [] |
|
FTypedElementSelectionSetElement::FTypedElementSelectionSetElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | FTypedElementSelectionSetElement ( [FTypedElementSelectionSetElement](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSel-_2) && ) | [] |
|
FTypedElementSelectionSetElement::FTypedElementSelectionSetElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | FTypedElementSelectionSetElement ( [TTypedElement](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElement)< [ITypedElementSelectionInterface](API\Runtime\TypedElementRuntime\Elements\Interfaces\ITypedElementSel-) > InElementSelectionHandle, FTypedElementListPtr InElementList, [FTypedElementSelectionCustomization](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSel-) * InSelectionCustomization ) | [] |
|
FTypedElementSelectionSetElement | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | Utility to hold a typed element handle and its associated selection interface and selection customization. | TypedElementRuntime | struct FTypedElementSelectionSetElement | [] |
FTypedElementSelectionSetState::operator= | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | [FTypedElementSelectionSetState](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSelectionSetState) & operator= ( [FTypedElementSelectionSetState](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSelectionSetState) && ) | [] |
|
FTypedElementSelectionSetState::operator= | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | [FTypedElementSelectionSetState](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSelectionSetState) & operator= ( const [FTypedElementSelectionSetState](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSelectionSetState) & InOther ) | [] |
|
FTypedElementSelectionSetState::FTypedElementSelectionSetState | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | FTypedElementSelectionSetState() | [] |
|
FTypedElementSelectionSetState::FTypedElementSelectionSetState | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | FTypedElementSelectionSetState ( [FTypedElementSelectionSetState](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSelectionSetState) && ) | [] |
|
FTypedElementSelectionSetState::FTypedElementSelectionSetState | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | FTypedElementSelectionSetState ( const [FTypedElementSelectionSetState](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementSelectionSetState) & InOther ) | [] |
|
FTypedElementSelectionSetState | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementSelectionSet.h | TypedElementRuntime | struct FTypedElementSelectionSetState | [] |
|
TTypedElementInterfaceCustomizationRegistry::GetDefaultInterfaceCustomization | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | Return the default interface customization instance. | TypedElementRuntime | CustomizationBaseType * GetDefaultInterfaceCustomization() const | [] |
TTypedElementInterfaceCustomizationRegistry::GetInterfaceCustomizationByTypeName | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | If bAllowFallback is true, then this will return the default interface customization if no override is present, otherwise it will return null. | TypedElementRuntime | CustomizationBaseType * GetInterfaceCustomizationByTypeName ( const [FName](API\Runtime\Core\UObject\FName) InElementTypeName, const bool bAllowFallback ) const | [] |
TTypedElementInterfaceCustomizationRegistry::GetInterfaceCustomizationByTypeId | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | If bAllowFallback is true, then this will return the default interface customization if no override is present, otherwise it will return null. | TypedElementRuntime | CustomizationBaseType * GetInterfaceCustomizationByTypeId ( const FTypedHandleTypeId InElementTypeId, const bool bAllowFallback ) const | [] |
TTypedElementInterfaceCustomizationRegistry::operator= | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | TypedElementRuntime | [TTypedElementInterfaceCustomizationRegistry](API\Runtime\TypedElementRuntime\Elements\Framework\TTypedElementInt-) & operator= ( const [TTypedElementInterfaceCustomizationRegistry](API\Runtime\TypedElementRuntime\Elements\Framework\TTypedElementInt-) & ) | [] |
|
TTypedElementInterfaceCustomizationRegistry::RegisterInterfaceCustomizationByTypeName | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | Register an interface customization for the given element type. | TypedElementRuntime | void RegisterInterfaceCustomizationByTypeName ( const [FName](API\Runtime\Core\UObject\FName) InElementTypeName, [TUniquePtr](API\Runtime\Core\Templates\TUniquePtr)< CustomizationBaseType > && InInterfaceCustomization ) | [] |
TTypedElementInterfaceCustomizationRegistry::RegisterInterfaceCustomizationByTypeId | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | Register an interface customization for the given element type. | TypedElementRuntime | void RegisterInterfaceCustomizationByTypeId ( const FTypedHandleTypeId InElementTypeId, [TUniquePtr](API\Runtime\Core\Templates\TUniquePtr)< CustomizationBaseType > && InInterfaceCustomization ) | [] |
TTypedElementInterfaceCustomizationRegistry::operator= | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | TypedElementRuntime | [TTypedElementInterfaceCustomizationRegistry](API\Runtime\TypedElementRuntime\Elements\Framework\TTypedElementInt-) & operator= ( [TTypedElementInterfaceCustomizationRegistry](API\Runtime\TypedElementRuntime\Elements\Framework\TTypedElementInt-) && ) | [] |
|
TTypedElementInterfaceCustomizationRegistry::SetDefaultInterfaceCustomization | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | Set the default interface customization instance. | TypedElementRuntime | void SetDefaultInterfaceCustomization ( [TUniquePtr](API\Runtime\Core\Templates\TUniquePtr)< CustomizationBaseType > && InInterfaceCustomization ) | [] |
TTypedElementInterfaceCustomizationRegistry::TTypedElementInterfaceCustomizationRegistry | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | TypedElementRuntime | template<typename... TDefaultArgs> TTypedElementInterfaceCustomizationRegistry ( TDefaultArgs &&... DefaultArgs ) | [] |
|
TTypedElementInterfaceCustomizationRegistry::UnregisterInterfaceCustomizationByTypeId | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | Unregister an interface customization for the given element type. | TypedElementRuntime | void UnregisterInterfaceCustomizationByTypeId ( const FTypedHandleTypeId InElementTypeId ) | [] |
TTypedElementInterfaceCustomizationRegistry::TTypedElementInterfaceCustomizationRegistry | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | TypedElementRuntime | TTypedElementInterfaceCustomizationRegistry ( const [TTypedElementInterfaceCustomizationRegistry](API\Runtime\TypedElementRuntime\Elements\Framework\TTypedElementInt-) & ) | [] |
|
TTypedElementInterfaceCustomizationRegistry::TTypedElementInterfaceCustomizationRegistry | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | TypedElementRuntime | TTypedElementInterfaceCustomizationRegistry ( [TTypedElementInterfaceCustomizationRegistry](API\Runtime\TypedElementRuntime\Elements\Framework\TTypedElementInt-) && ) | [] |
|
TypedElementListObjectUtil::HasObjects | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementListObjectUtil.h | Test whether there are any objects in the given list of elements. | TypedElementRuntime | namespace TypedElementListObjectUtil { template<typename RequiredClassType> bool TypedElementListObjectUtil::HasObjects ( FTypedElementListConstRef InElementList ) } | [] |
TTypedElementInterfaceCustomizationRegistry | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | Utility to register and retrieve interface customizations for a given type. | TypedElementRuntime | template<typename CustomizationBaseType, typename DefaultCustomizationType> class TTypedElementInterfaceCustomizationRegistry : public [FTypedElementInterfaceCustomizationRegistryBase](API\Runtime\TypedElementRuntime\Elements\Framework\FTypedElementInt-) | [] |
TypedElementListObjectUtil::CountObjects | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementListObjectUtil.h | Count the number of objects in the given list of elements. | TypedElementRuntime | namespace TypedElementListObjectUtil { template<typename RequiredClassType> int32 TypedElementListObjectUtil::CountObjects ( FTypedElementListConstRef InElementList ) } | [] |
TypedElementListObjectUtil::ForEachObject | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementListObjectUtil.h | Return true from the callback to continue enumeration. | TypedElementRuntime | namespace TypedElementListObjectUtil { template<typename RequiredClassType> void TypedElementListObjectUtil::ForEachObject ( FTypedElementListConstRef InElementList, [TFunctionRef](API\Runtime\Core\GenericPlatform\TFunctionRef)< bool(RequiredClassType *)> InCallback ) } | [] |
TTypedElementInterfaceCustomizationRegistry::UnregisterInterfaceCustomizationByTypeName | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementInterfaceCustomization.h | Unregister an interface customization for the given element type. | TypedElementRuntime | void UnregisterInterfaceCustomizationByTypeName ( const [FName](API\Runtime\Core\UObject\FName) InElementTypeName ) | [] |
TypedElementListObjectUtil::GetObjects | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementListObjectUtil.h | Get the array of objects from the given list of elements. | TypedElementRuntime | namespace TypedElementListObjectUtil { template<typename RequiredClassType> [TArray](API\Runtime\Core\Containers\TArray)< RequiredClassType * > TypedElementListObjectUtil::GetObjects ( FTypedElementListConstRef InElementList ) } | [] |
TypedElementListObjectUtil::GetBottomObject | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementListObjectUtil.h | Get the last object of the given type from the given list of elements. | TypedElementRuntime | namespace TypedElementListObjectUtil { template<typename RequiredClassType> RequiredClassType * TypedElementListObjectUtil::GetBottomObject ( FTypedElementListConstRef InElementList ) } | [] |
TypedElementListObjectUtil::HasObjectsOfExactClass | /Engine/Source/Runtime/TypedElementRuntime/Public/Elements/Framework/TypedElementListObjectUtil.h | Test if there are any objects of the exact class in the given list of elements (a quick test using the class counter, skipping derived types). | TypedElementRuntime | namespace TypedElementListObjectUtil { template<typename ClassType> bool TypedElementListObjectUtil::HasObjectsOfExactClass ( FTypedElementListConstRef InElementList ) } | [] |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.