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
TypedElementQueryBuilder::Internal::GetColumnType
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementQueryBuilder.inl
TypedElementFramework
namespace TypedElementQueryBuilder { namespace Internal { template<typename Column> const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) * TypedElementQueryBuilder::Internal::GetColumnType() } }
[]
TypedElementQueryBuilder::Internal::IsRowTypeCompatibleWithColumns
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementQueryBuilder.inl
TypedElementFramework
namespace TypedElementQueryBuilder { namespace Internal { template<typename RowType, typename... Columns> constexpr bool TypedElementQueryBuilder::Internal::IsRowTypeCompatibleWithColumns() } }
[]
TypedElement::ColumnUtils::SetColumnValue
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementColumnUtils.h
Utility function for SetColumnValue that automatically detects the type of the column.
TypedElementFramework
namespace TypedElement { namespace ColumnUtils { template<typename ColumnType> void TypedElement::ColumnUtils::SetColumnValue ( ColumnType & Column, [FName](API\Runtime\Core\UObject\FName) ArgumentName, const [FString](API\Runtime\Core\Containers\FString) & ArgumentValue ) } }
[]
TypedElement::ColumnUtils::SetColumnValues
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementColumnUtils.h
Utility function for SetColumnValues that automatically detects the type of the column.
TypedElementFramework
namespace TypedElement { namespace ColumnUtils { template<typename ColumnType> void TypedElement::ColumnUtils::SetColumnValues ( ColumnType & Column, TConstArrayView< [Argument](API\Runtime\TypedElementFramework\Elements\Framework\Argument) > Arguments ) } }
[]
UndecoratedColumnType
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementQueryBuilder.inl
TypedElementFramework
typedef std::remove_cv_t< [BaseColumnType](API\Runtime\TypedElementFramework\Elements\Framework\BaseColumnType)< Column >> UndecoratedColumnType
[]
UTypedElementCounterInterface
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementCounter.h
TypedElementFramework
class UTypedElementCounterInterface : public [UInterface](API\Runtime\CoreUObject\UObject\UInterface)
[]
UTypedElementHandleLibrary::Equal
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementHandle.h
Are these two handles equal?
TypedElementFramework
static bool Equal ( const [FScriptTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FScriptTypedElementHandle) & LHS, const [FScriptTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FScriptTypedElementHandle) & RHS )
[]
UTypedElementHandleLibrary::IsSet
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementHandle.h
Has this handle been initialized to a valid element?
TypedElementFramework
static bool IsSet ( const [FScriptTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FScriptTypedElementHandle) & ElementHandle )
[]
UTypedElementHandleLibrary::NotEqual
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementHandle.h
Are these two handles not equal?
TypedElementFramework
static bool NotEqual ( const [FScriptTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FScriptTypedElementHandle) & LHS, const [FScriptTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FScriptTypedElementHandle) & RHS )
[]
UTypedElementHandleLibrary::Release
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementHandle.h
Release this handle and set it back to an empty state.
TypedElementFramework
static void Release ( [FScriptTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FScriptTypedElementHandle) & ElementHandle )
[]
UTypedElementHandleLibrary
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementHandle.h
Script exposure forFScriptTypedElementHandle.
TypedElementFramework
class UTypedElementHandleLibrary : public [UObject](API\Runtime\CoreUObject\UObject\UObject)
[]
UTypedElementRegistry::AddReferencedObjects
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
static void AddReferencedObjects ( [UObject](API\Runtime\CoreUObject\UObject\UObject) * InThis, [FReferenceCollector](API\Runtime\CoreUObject\UObject\FReferenceCollector) & Collector )
[]
UTypedElementRegistry::AreDataStorageInterfacesSet
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
bool AreDataStorageInterfacesSet() const
[]
UTypedElementRegistry::CreateElement
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Allocation of the payload data and the associated handle ID are managed internally, and the data will remain valid until DestroyElementHandle is called on this handle.
TypedElementFramework
template<typename ElementDataType> [TTypedElementOwner](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElementOwner)< ElementDataType > CreateElement ( const [FName](API\Runtime\Core\UObject\FName) InElementTypeName )
[]
UTypedElementRegistry::CreateElement
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
The associated handle ID should be something that can externally be used to uniquely identify this element, until DestroyElementHandle is called on this handle.
TypedElementFramework
FTypedElementOwner CreateElement ( const [FName](API\Runtime\Core\UObject\FName) InElementTypeName, const FTypedHandleElementId InElementId )
[]
UTypedElementRegistry::CreateElementList
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Create an empty list of elements associated with this registry.
TypedElementFramework
FTypedElementListRef CreateElementList()
[]
UTypedElementRegistry::CreateElementList
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Create an empty list of elements associated with this registry, populated from the given minimal IDs that are valid.
TypedElementFramework
FTypedElementListRef CreateElementList ( [TArrayView](API\Runtime\Core\Containers\TArrayView)< const [FTypedElementId](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementId) > InElementIds )
[]
UTypedElementRegistry::CreateElementList
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Create an empty list of elements associated with this registry, populated from the given handles that are valid.
TypedElementFramework
FTypedElementListRef CreateElementList ( [TArrayView](API\Runtime\Core\Containers\TArrayView)< const [FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle) > InElementHandles )
[]
UTypedElementRegistry::CreateElementList
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Create an empty list of elements associated with this registry, populated from the given owners that are valid.
TypedElementFramework
template<typename ElementDataType> FTypedElementListRef CreateElementList ( const [TArray](API\Runtime\Core\Containers\TArray)< [TTypedElementOwner](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElementOwner)< ElementDataType >> & InElementOwners )
[]
UTypedElementRegistry::CreateElementList
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Create an empty list of elements associated with this registry, populated from the given owners that are valid.
TypedElementFramework
template<typename ElementDataType> FTypedElementListRef CreateElementList ( [TArrayView](API\Runtime\Core\Containers\TArrayView)< const [TTypedElementOwner](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElementOwner)< ElementDataType >> InElementOwners )
[]
UTypedElementRegistry::CreateScriptElementList
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Create an empty list of script elements associated with this registry.
TypedElementFramework
FScriptTypedElementListRef CreateScriptElementList()
[]
UTypedElementRegistry::CreateScriptHandle
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Create a script handle. This should only be use for the script exposure apis.
TypedElementFramework
[FScriptTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FScriptTypedElementHandle) CreateScriptHandle ( const [FTypedElementId](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementId) & InElementId )
[]
UTypedElementRegistry::DestroyElement
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Destruction is deferred until the next call to ProcessDeferredElementsToDestroy.
TypedElementFramework
void DestroyElement ( FTypedElementOwner & InOutElementOwner )
[]
UTypedElementRegistry::DestroyElement
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Destruction is deferred until the next call to ProcessDeferredElementsToDestroy.
TypedElementFramework
template<typename ElementDataType> void DestroyElement ( [TTypedElementOwner](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElementOwner)< ElementDataType > & InOutElementOwner )
[]
UTypedElementRegistry::FDisableElementDestructionOnGC::operator=
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
FDisableElementDestructionOnGC & operator&61; &40; const FDisableElementDestructionOnGC & &41;
[]
UTypedElementRegistry::FDisableElementDestructionOnGC::operator=
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
FDisableElementDestructionOnGC & operator&61; &40; FDisableElementDestructionOnGC && &41;
[]
UTypedElementRegistry::FDisableElementDestructionOnGC::FDisableElementDestructionOnGC
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
FDisableElementDestructionOnGC &40; UTypedElementRegistry &42; InRegistry &41;
[]
UTypedElementRegistry::FDisableElementDestructionOnGC::FDisableElementDestructionOnGC
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
FDisableElementDestructionOnGC &40; const FDisableElementDestructionOnGC & &41;
[]
UTypedElementRegistry::FDisableElementDestructionOnGC::FDisableElementDestructionOnGC
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
FDisableElementDestructionOnGC &40; FDisableElementDestructionOnGC && &41;
[]
UTypedElementRegistry::FDisableElementDestructionOnGC::~FDisableElementDestructionOnGC
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
&126;FDisableElementDestructionOnGC&40;&41;
[]
FOnDataStorageInterfacesSet
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Event fired when all Data Storage Interfaces have been set.
TypedElementFramework
typedef TMulticastDelegate_NoParams< void > FOnDataStorageInterfacesSet
[]
UTypedElementRegistry::FinishDestroy
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Because properties are destroyed here,Super::FinishDestroy()should always be called at the end of your child class'sFinishDestroy()method, rather than at the beginning.
TypedElementFramework
virtual void FinishDestroy()
[]
FDisableElementDestructionOnGC
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Struct to disable auto-GC reference collection within a scope
TypedElementFramework
struct FDisableElementDestructionOnGC
[]
FOnElementReplaced_Payload
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Event fired when references to one element should be replaced with a reference to a different element.
TypedElementFramework
typedef [TArrayView](API\Runtime\Core\Containers\TArrayView)< const [TTuple](API\Runtime\Core\Misc\TTuple)< [FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle), [FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle) >> FOnElementReplaced_Payload
[]
FOnElementReplaced
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
typedef TMulticastDelegate_OneParam< void, [FOnElementReplaced_Payload](API\Runtime\TypedElementFramework\Elements\Framework\UTypedElementRegistry\FOnElementReplac-) > FOnElementReplaced
[]
UTypedElementRegistry::GetDataStorage
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
const [ITypedElementDataStorageInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_1) * GetDataStorage() const
[]
UTypedElementRegistry::GetDataStorageCompatibility
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
const [ITypedElementDataStorageCompatibilityInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-) * GetDataStorageCompatibility() const
[]
UTypedElementRegistry::GetDataStorageUi
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
const [ITypedElementDataStorageUiInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2) * GetDataStorageUi() const
[]
UTypedElementRegistry::GetElement
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get an element that implements the given interface from its minimal ID.
TypedElementFramework
template<typename BaseInterfaceType> [TTypedElement](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElement)< BaseInterfaceType > GetElement ( const [FTypedElementId](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementId) & InElementId ) const
[]
UTypedElementRegistry::GetElement
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get an element that implements the given interface from its handle.
TypedElementFramework
template<typename BaseInterfaceType> [TTypedElement](API\Runtime\TypedElementFramework\Elements\Framework\TTypedElement)< BaseInterfaceType > GetElement ( const [FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle) & InElementHandle ) const
[]
UTypedElementRegistry::GetElement
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get an element that implements the given interface from its minimal ID.
TypedElementFramework
FTypedElement GetElement ( const [FTypedElementId](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementId) & InElementId, const [TSubclassOf](API\Runtime\CoreUObject\Templates\TSubclassOf)< [UInterface](API\Runtime\CoreUObject\UObject\UInterface) > & InBaseInterfaceType ) const
[]
UTypedElementRegistry::GetElement
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get an element that implements the given interface from its handle.
TypedElementFramework
FTypedElement GetElement ( const [FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle) & InElementHandle, const [TSubclassOf](API\Runtime\CoreUObject\Templates\TSubclassOf)< [UInterface](API\Runtime\CoreUObject\UObject\UInterface) > & InBaseInterfaceType ) const
[]
FOnElementUpdated
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Event fired when an element has been internally updated and data cached from it should be refreshed.
TypedElementFramework
typedef TMulticastDelegate_OneParam< void, [TArrayView](API\Runtime\Core\Containers\TArrayView)< const [FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle) > > FOnElementUpdated
[]
UTypedElementRegistry::GetElementInterface
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get the element interface supported by the given type, or null if there is no support for this interface.
TypedElementFramework
template<typename BaseInterfaceType> BaseInterfaceType * GetElementInterface ( const FTypedHandleTypeId InElementTypeId ) const
[]
UTypedElementRegistry::GetElementInterface
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get the element interface supported by the given handle, or null if there is no support for this interface.
TypedElementFramework
template<typename BaseInterfaceType> BaseInterfaceType * GetElementInterface ( const [FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle) & InElementHandle ) const
[]
UTypedElementRegistry::GetElementInterface
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get the element interface supported by the given handle, or null if there is no support for this interface.
TypedElementFramework
[UObject](API\Runtime\CoreUObject\UObject\UObject) * GetElementInterface ( const [FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle) & InElementHandle, const [TSubclassOf](API\Runtime\CoreUObject\Templates\TSubclassOf)< [UInterface](API\Runtime\CoreUObject\UObject\UInterface) > InBaseInterfaceType ) const
[]
UTypedElementRegistry::GetElementInterface
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get the element interface supported by the given handle, or null if there is no support for this interface or if the handle is invalid.
TypedElementFramework
[UObject](API\Runtime\CoreUObject\UObject\UObject) * GetElementInterface ( const [FScriptTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FScriptTypedElementHandle) & InElementHandle, const [TSubclassOf](API\Runtime\CoreUObject\Templates\TSubclassOf)< [UInterface](API\Runtime\CoreUObject\UObject\UInterface) > InBaseInterfaceType ) const
[]
UTypedElementRegistry::GetElementHandle
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get an element handle from its minimal ID.
TypedElementFramework
[FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle) GetElementHandle ( const [FTypedElementId](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementId) & InElementId ) const
[]
UTypedElementRegistry::GetInstance
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get the singleton instance of the registry used in most cases.
TypedElementFramework
static [UTypedElementRegistry](API\Runtime\TypedElementFramework\Elements\Framework\UTypedElementRegistry) * GetInstance()
[]
UTypedElementRegistry::GetMutableDataStorage
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
[ITypedElementDataStorageInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_1) * GetMutableDataStorage()
[]
UTypedElementRegistry::GetMutableDataStorageCompatibility
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
[ITypedElementDataStorageCompatibilityInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-) * GetMutableDataStorageCompatibility()
[]
UTypedElementRegistry::GetMutableDataStorageUi
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
[ITypedElementDataStorageUiInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2) * GetMutableDataStorageUi()
[]
UTypedElementRegistry::GetRegisteredElementTypeId
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get the element type ID for the associated element type name, if any. The element type ID, or 0 if the given name wasn't registered.
TypedElementFramework
FTypedHandleTypeId GetRegisteredElementTypeId ( const [FName](API\Runtime\Core\UObject\FName) InElementTypeName ) const
[]
UTypedElementRegistry::GetRegisteredElementTypeName
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Get the element type name for the associated element type ID, if any. The element type name, or None if the given ID wasn't registered.
TypedElementFramework
[FName](API\Runtime\Core\UObject\FName) GetRegisteredElementTypeName ( const FTypedHandleTypeId InElementTypeId ) const
[]
UTypedElementRegistry::OnDataStorageInterfacesSet
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
[FOnDataStorageInterfacesSet](API\Runtime\TypedElementFramework\Elements\Framework\UTypedElementRegistry\FOnDataStorageIn-) & OnDataStorageInterfacesSet()
[]
UTypedElementRegistry::OnElementUpdated
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
[FOnElementUpdated](API\Runtime\TypedElementFramework\Elements\Framework\UTypedElementRegistry\FOnElementUpdate-) & OnElementUpdated()
[]
UTypedElementRegistry::OnElementReplaced
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
[FOnElementReplaced](API\Runtime\TypedElementFramework\Elements\Framework\UTypedElementRegistry\FOnElementReplac-_1) & OnElementReplaced()
[]
UTypedElementRegistry::OnProcessingDeferredElementsToDestroy
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
ProcessDeferredElementsToDestroy.
TypedElementFramework
FSimpleMulticastDelegate & OnProcessingDeferredElementsToDestroy()
[]
UTypedElementRegistry::Private_GetElementImpl
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Note: Access for FTypedElementList.
TypedElementFramework
void Private_GetElementImpl ( const [FTypedElementHandle](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementHandle) & InElementHandle, const [TSubclassOf](API\Runtime\CoreUObject\Templates\TSubclassOf)< [UInterface](API\Runtime\CoreUObject\UObject\UInterface) > & InBaseInterfaceType, FTypedElement & OutElement ) const
[]
UTypedElementRegistry::Private_InitializeInstance
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Initialize the singleton instance of the registry used in most cases.
TypedElementFramework
static void Private_InitializeInstance()
[]
UTypedElementRegistry::Private_OnElementListCreated
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
void Private_OnElementListCreated ( FTypedElementList * InElementList )
[]
UTypedElementRegistry::Private_OnElementListCreated
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
void Private_OnElementListCreated ( FScriptTypedElementList * InElementList )
[]
UTypedElementRegistry::Private_OnElementListDestroyed
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
void Private_OnElementListDestroyed ( FTypedElementList * InElementList )
[]
UTypedElementRegistry::Private_OnElementListDestroyed
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
void Private_OnElementListDestroyed ( FScriptTypedElementList * InElementList )
[]
UTypedElementRegistry::Private_ShutdownInstance
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Shutdown the singleton instance of the registry used in most cases.
TypedElementFramework
static void Private_ShutdownInstance()
[]
UTypedElementRegistry::ProcessDeferredElementsToDestroy
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
FDisableElementDestructionOnGC).
TypedElementFramework
void ProcessDeferredElementsToDestroy()
[]
UTypedElementRegistry::RegisterElementInterface
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Register that an element interface is supported for the given type, which must have previously been registered via RegisterElementType.
TypedElementFramework
template<typename BaseInterfaceType> void RegisterElementInterface ( const [FName](API\Runtime\Core\UObject\FName) InElementTypeName, [UObject](API\Runtime\CoreUObject\UObject\UObject) * InElementInterface, const bool InAllowOverride )
[]
UTypedElementRegistry::RegisterElementType
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Register an element type that has additional payload data. Note if bSupportScriptHandles is true, elements of this type should only be destroyed from the game thread
TypedElementFramework
template<typename ElementDataType, bool bSupportScriptHandles> void RegisterElementType ( const [FName](API\Runtime\Core\UObject\FName) InElementTypeName )
[]
UTypedElementRegistry::RegisterElementType
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Register an element type that doesn't require any additional payload data.
TypedElementFramework
void RegisterElementType ( const [FName](API\Runtime\Core\UObject\FName) InElementTypeName, bool bSupportScriptHandles )
[]
UTypedElementRegistry::RegistredElementTypesAndInterfacesToString
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Extract a string that contains name of the type elements registered. For each type it also says what interface are registered and the path of the class that implement them
TypedElementFramework
[FString](API\Runtime\Core\Containers\FString) RegistredElementTypesAndInterfacesToString() const
[]
UTypedElementRegistry::ReleaseElementId
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Release an element ID that was previously acquired from an existing handle.
TypedElementFramework
void ReleaseElementId ( [FTypedElementId](API\Runtime\TypedElementFramework\Elements\Framework\FTypedElementId) & InOutElementId )
[]
UTypedElementRegistry::SetDataStorageCompatibility
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
void SetDataStorageCompatibility ( [ITypedElementDataStorageCompatibilityInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-) * Storage )
[]
UTypedElementRegistry::SetDataStorage
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
void SetDataStorage ( [ITypedElementDataStorageInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_1) * Storage )
[]
UTypedElementRegistry::SetDataStorageUi
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
void SetDataStorageUi ( [ITypedElementDataStorageUiInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2) * Storage )
[]
UTypedElementRegistry::UTypedElementRegistry
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
TypedElementFramework
UTypedElementRegistry()
[]
UTypedElementRegistry
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementRegistry.h
Registry of element types and their associated interfaces, along with the elements that represent their instances.
TypedElementFramework
class UTypedElementRegistry : public [UObject](API\Runtime\CoreUObject\UObject\UObject)
[]
ColumnDataResult
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageInterface.h
TypedElementFramework
struct ColumnDataResult
[ { "type": "void *", "name": "Data", "description": "Pointer to the column data. The type is guaranteed to match type described in Description." }, { "type": "constUScriptSt...", "name": "Description", "description": "Pointer to the structure that holds the description of the returned data." } ]
FTypedElementDataStorageColumn
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageInterface.h
Base for the data structures for a column.
TypedElementFramework
struct FTypedElementDataStorageColumn
[]
FTypedElementDataStorageTag
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageInterface.h
Base for the data structures that act as tags to rows. Tags should not have any data.
TypedElementFramework
struct FTypedElementDataStorageTag
[]
FTypedElementWidgetConstructor::ApplyArguments
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
Uses the type system to apply the provided arguments to constructor's properties. Overwrite this function if there are non-properties that can be configured through the arguments or if the configuration contains arguments that are too complex to initialize (fully) through the type system.
TypedElementFramework
virtual bool ApplyArguments ( TConstArrayView< [TypedElement::ColumnUtils::Argument](API\Runtime\TypedElementFramework\Elements\Framework\Argument) > Arguments )
[]
FTypedElementWidgetConstructor::CanBeReused
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
Whether or not an instance of this constructor can be reused. Setting this to true means that the Data Storage will avoid recreating new instances of the constructor and instead keeps reusing the created version. The default is 'false'. Override this function and set it to true if there's no internal state that could interfere with creating multiple widgets from the same constructor, e.g. data stored from passed in arguments.
TypedElementFramework
virtual bool CanBeReused() const
[]
FTypedElementWidgetConstructor::Construct
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
Constructs the widget according to the provided information. Information is collected by calling the below functions ApplyArguments, CreateWidget and AddColumns. It's recommended to overload those functions to build widgets according to a standard recipe and to reduce the amount of code needed. If a complexer situation is called for this function can also be directly overwritten.
TypedElementFramework
virtual [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > Construct ( TypedElementRowHandle Row, [ITypedElementDataStorageInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_1) * DataStorage, [ITypedElementDataStorageUiInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2) * DataStorageUi, TConstArrayView< [TypedElement::ColumnUtils::Argument](API\Runtime\TypedElementFramework\Elements\Framework\Argument) > Arguments )
[]
FTypedElementWidgetConstructor::FinalizeWidget
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
Last opportunity to configure anything in the widget or the row. This step can be needed to initialize widgets with data stored in columns.
TypedElementFramework
virtual bool FinalizeWidget ( [ITypedElementDataStorageInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_1) * DataStorage, [ITypedElementDataStorageUiInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_2) * DataStorageUi, TypedElementRowHandle Row, const [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > & Widget )
[]
FTypedElementWidgetConstructor::CreateWidget
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
Create a new instance of the target widget. This is a required function.
TypedElementFramework
virtual [TSharedPtr](API\Runtime\Core\Templates\TSharedPtr)< [SWidget](API\Runtime\SlateCore\Widgets\SWidget) > CreateWidget()
[]
FTypedElementWidgetConstructor::GetAdditionalColumnsList
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
Returns a list of additional columns the widget requires.
TypedElementFramework
virtual TConstArrayView< const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) * > GetAdditionalColumnsList() const
[]
FTypedElementWidgetConstructor::GetTypeInfo
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
Retrieves the type information for the constructor type.
TypedElementFramework
virtual const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) * GetTypeInfo() const
[]
FTypedElementWidgetConstructor::FTypedElementWidgetConstructor
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
TypedElementFramework
FTypedElementWidgetConstructor ( const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) * InTypeInfo )
[]
FTypedElementWidgetConstructor::FTypedElementWidgetConstructor
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
TypedElementFramework
FTypedElementWidgetConstructor ( EForceInit )
[]
FTypedElementWidgetConstructor::SetColumns
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
Set any values in columns if needed. The columns provided throughGetAdditionalColumnsList()will have already been created.
TypedElementFramework
virtual bool SetColumns ( [ITypedElementDataStorageInterface](API\Runtime\TypedElementFramework\Elements\Interfaces\ITypedElementDat-_1) * DataStorage, TypedElementRowHandle Row )
[]
FTypedElementWidgetConstructor::~FTypedElementWidgetConstructor
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
TypedElementFramework
virtual ~FTypedElementWidgetConstructor()
[]
FTypedElementWidgetConstructor
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementDataStorageUiInterface.h
Base class used to construct Typed Element widgets with. It's recommended to expose any construction variables as properties so they can either be set by a user or set using the passed in arguments. The Arguments can be directly used in case complex operations need to be done that prevent automatically setting construction variables. See below for the options to register a constructor with the Data Storage. For either registration case a new instance/copy of the constructor is created so arguments can be safely applied.
TypedElementFramework
struct FTypedElementWidgetConstructor
[ { "type": "constUScriptSt...", "name": "TypeInfo", "description": "" } ]
ICommonQueryContext::GetColumn
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h
TypedElementFramework
template<typename Column> const Column * GetColumn() const
[]
ICommonQueryContext::GetColumn
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h
Return the address of a immutable column matching the requested type or a nullptr if not found.
TypedElementFramework
const void * GetColumn ( const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) * ColumnType ) const
[]
ICommonQueryContext::GetColumns
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h
Get a list of columns or nullptrs if the column type wasn't found. Mutable addresses are returned and it's up to the caller to not change immutable addresses.
TypedElementFramework
void GetColumns ( [TArrayView](API\Runtime\Core\Containers\TArrayView)< char * > RetrievedAddresses, TConstArrayView< [TWeakObjectPtr](API\Runtime\Core\UObject\TWeakObjectPtr)< const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) >> ColumnTypes, TConstArrayView< [EQueryAccessType](API\Runtime\TypedElementFramework\Elements\Common\TypedElementData-_3) > AccessTypes )
[]
ICommonQueryContext::GetColumnsUnguarded
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h
Get a list of columns or nullptrs if the column type wasn't found. Mutable addresses are returned and it's up to the caller to not change immutable addresses. This version doesn't verify that the enough space is provided and it's up to the caller to guarantee the target addresses have enough space.
TypedElementFramework
void GetColumnsUnguarded ( int32 TypeCount, char ** RetrievedAddresses, const [TWeakObjectPtr](API\Runtime\Core\UObject\TWeakObjectPtr)< const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) > * ColumnTypes, const [EQueryAccessType](API\Runtime\TypedElementFramework\Elements\Common\TypedElementData-_3) * AccessTypes )
[]
ICommonQueryContext::GetMutableColumn
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h
Return the address of a mutable column matching the requested type or a nullptr if not found.
TypedElementFramework
void * GetMutableColumn ( const [UScriptStruct](API\Runtime\CoreUObject\UObject\UScriptStruct) * ColumnType )
[]
ICommonQueryContext::GetMutableColumn
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h
TypedElementFramework
template<typename Column> Column * GetMutableColumn()
[]
ICommonQueryContext::GetRowCount
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h
Returns the number rows in the batch.
TypedElementFramework
uint32 GetRowCount() const
[]
ICommonQueryContext::GetRowHandles
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h
Returns an immutable view that contains the row handles for all returned results. The returned size will be the same as the value returned byGetRowCount().
TypedElementFramework
TConstArrayView< [RowHandle](API\Runtime\TypedElementFramework\Elements\Common\RowHandle) > GetRowHandles() const
[]
ICommonQueryContext::~ICommonQueryContext
/Engine/Source/Runtime/TypedElementFramework/Public/Elements/Interfaces/TypedElementQueryStorageInterfaces.h
TypedElementFramework
virtual ~ICommonQueryContext()
[]